html, body {
  background-color: #FFCD4C;
  width: 100%;
  height: 100%;
}

body {
  overflow-x: hidden;
}

.loader {
  width: 100vw;
  height: 100vh;
  z-index: 700;
  position: fixed;
  background: #FFCD4C;
}

.loader img {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 360px;
}

.container {
  height: 100%;
  width: 100%;
  position: relative;
}

/* font */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;700&display=swap');

@font-face {
  font-family: 'GmarketSansMedium';
  src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansMedium.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'GmarketSansBold';
  src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansBold.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'GmarketSansLight';
  src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansLight.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

/* navgation style */
.navbar {
  position: fixed;
  width: 100%;
  height: 60px;
  top: 0;
  z-index: 150;
  transition: top 0.2s ease-in-out;
  background: rgba(0, 0, 0, .2);
}

.navbar.nav-up {
  top: -60px;
}

.nav-container {
  display: flex;
  width: 1440px;
  height: 100%;
  justify-content: center;
  align-items: center;
}

.nav-logo {
  display: flex;
  width: 140px;
  justify-content: flex-start;
  padding-top: 7px;
}

.nav-logo img {
  width: 100px;
}

.nav-menu-container {
  display: flex;
  width: 1300px;
  justify-content: flex-end;
}

.navbar-nav {
  display: flex;
  flex-direction: row;
  font-family: 'GmarketSansMedium';
  font-size: 15px;
}

.nav-item {
  display: flex;
  justify-content: center;
  padding: 0 0 0 20px;
}

.nav-blank {
  display: flex;
  align-items: center;
  padding: 0 0 0 20px;
}

.nav-link {
  color: #FFCD4C;
}

.nav-item.active .nav-link,
.nav-item:hover .nav-link {
  color: #5826E8;
}

/* fastgo*/
.test-fastgo {
  width: 80px;
  height: 80px;
  position: fixed;
  text-align: center;
  background-color: #5826E8;
  transform: skewX(10deg);
  overflow: hidden;
  z-index: 600;
  bottom: 5%;
  right: 3%;
  cursor: pointer;
}

.fastgo-box {
  width: 160px;
  height: 80px;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  transition: all .2s;
}

.fastgo-logo {
  width: 80px;
  transform: skewX(-10deg);
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fastgo-logo img {
  height: 50px;
}

.fastgo-text {
  font-size: 16px;
  font-family: 'GmarketSansMedium';
  width: 80px;
  margin: 0;
  color: #FFCD4C;
}

.fastgo-text span {
  font-family: 'GmarketSansBold';
}

.test-fastgo a {
  text-decoration: none;
  color: #FFCD4C;
}

.test-fastgo:hover .fastgo-box {
  transform: translateX(-50%);
}

@media (max-width: 1024px) {

  /* navgation style */
  .navbar {
    height: 50px;
  }

  .navbar.nav-up {
    top: -50px;
  }

  .nav-container {
    width: 768px;
  }

  .nav-logo {
    width: 120px;
  }

  .nav-logo img {
    width: 80px;
  }

  .nav-menu-container {
    width: 688px;
  }

  .navbar-nav {
    font-size: 14px;
  }

  .nav-item, .nav-blank {
    padding: 0 0 0 16px;
  }
}

@media (max-width: 768px) {
  .navbar {
    display: none;
  }

  .test-fastgo {
    display: none;
  }
}
