@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;300;400;500;600;700&family=Noto+Sans+Thai:wght@100;300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap");
:root {
  --ic-darkpink: #e12d5e;
  --ic-rosypink: #ff638b;
  --ic-white: #ffffff;
  --ic-grey: #707070;
  --ic-black: #000000;
  --ic-lightblue: #a5d2ea;
  --ic-darkblue: #5688d9;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

a {
  text-decoration: none !important;
}

body {
  font-family: "Montserrat", "Noto Sans Thai", sans-serif !important;
}

.w-full {
  width: 100%;
}

.font-playfair {
  font-family: "Playfair Display", serif !important;
  letter-spacing: 3.6px;
}

.desktop-menu {
  position: fixed;
  width: 100%;
  z-index: 10;
}
.desktop-menu__wrapper {
  max-width: 1440px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 113px;
  margin-left: auto;
  margin-right: auto;
  color: var(--ic-white);
  z-index: 11;
}
.desktop-menu__wrapper .logo {
  flex: 1 0 220px;
  z-index: 10;
}
.desktop-menu__wrapper .switch {
  display: flex;
  flex: 1 0 220px;
  justify-content: flex-end;
  -moz-column-gap: 13px;
       column-gap: 13px;
  z-index: 10;
}
.desktop-menu__wrapper .switch a {
  font-size: 12px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid var(--ic-white);
  border-radius: 100%;
  color: var(--ic-white);
}
.desktop-menu__wrapper .switch a.active {
  background-color: var(--ic-darkpink);
  border: 1px solid var(--ic-darkpink);
}
.desktop-menu__wrapper .menu {
  display: flex;
  align-items: center;
  -moz-column-gap: 11px;
       column-gap: 11px;
  z-index: 10;
}
.desktop-menu__wrapper .menu span {
  font-size: 12px;
}
.desktop-menu__wrapper .menu .burger-icon {
  cursor: pointer;
}
.desktop-menu__wrapper .menu .burger-icon .line {
  width: 54px;
  height: 2px;
  background-color: var(--ic-white);
  border-radius: 3px;
}
.desktop-menu__wrapper .menu .burger-icon .line:not(:first-child) {
  margin-top: 3px;
}
.desktop-menu__list {
  position: absolute;
  top: -30em;
  width: 100%;
  height: 329px;
  background-color: rgba(0, 0, 0, 0.8);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  color: var(--ic-white);
  z-index: 1;
  transition: 0.5s;
}
.desktop-menu__list .list-menu {
  max-width: 1440px;
  display: flex;
  justify-content: space-between;
  padding: 80px 113px 24px 113px;
  transition: all 0.5s ease-in;
  margin: 0 auto;
}
.desktop-menu__list .list-menu ul {
  list-style: none;
  padding-left: 0;
  text-transform: uppercase;
  line-height: 1.5;
  cursor: pointer;
}
.desktop-menu__list .list-menu ul.menu {
  padding-top: 50px;
}
.desktop-menu__list .list-menu ul li.sub-menu {
  color: var(--ic-grey);
  padding-left: 30px;
}
.desktop-menu__list .list-menu ul li.sub-menu:hover {
  color: var(--ic-white);
}
.desktop-menu__list .list-menu .online-chanel {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.desktop-menu img {
  width: 29px;
}

.mobile-menu {
  position: fixed;
  width: 100%;
  z-index: 99;
}
.mobile-menu__wrapper {
  display: flex;
  justify-content: space-between;
  padding: 48px 28px 0px 28px;
  overflow-y: auto;
}
.mobile-menu__wrapper .logo {
  z-index: 10;
}
.mobile-menu__wrapper .logo img {
  width: 40%;
}
.mobile-menu__wrapper .menu {
  display: flex;
  align-items: center;
  -moz-column-gap: 11px;
       column-gap: 11px;
  z-index: 10;
}
.mobile-menu__wrapper .menu .burger-icon {
  cursor: pointer;
}
.mobile-menu__wrapper .menu .burger-icon .line {
  width: 24px;
  height: 2px;
  background-color: var(--ic-white);
  border-radius: 3px;
}
.mobile-menu__wrapper .menu .burger-icon .line:not(:first-child) {
  margin-top: 3px;
}
.mobile-menu__list {
  position: fixed;
  top: 0;
  right: -30em;
  width: 304px;
  height: 100%;
  z-index: 11;
  background-color: rgba(0, 0, 0, 0.8);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  color: var(--ic-white);
  display: flex;
  padding: 80px 53px 10px 53px;
  transition: 0.5s;
  overflow-y: auto;
}
.mobile-menu__list .custom-btn-close {
  position: absolute;
  top: 40px;
  right: 40px;
}
.mobile-menu__list ul {
  list-style: none;
  padding-left: 0;
  text-transform: uppercase;
  line-height: 1.5;
  margin-bottom: 0;
  cursor: pointer;
}
.mobile-menu__list ul li {
  margin-bottom: 5px;
}
.mobile-menu__list ul li.sub-menu {
  color: var(--ic-grey);
  padding-left: 30px;
  margin-bottom: 5px;
}
.mobile-menu__list ul li.sub-menu:hover {
  color: var(--ic-white);
}
.mobile-menu__list .switch {
  display: flex;
  -moz-column-gap: 13px;
       column-gap: 13px;
  margin-top: 24px;
  z-index: 10;
}
.mobile-menu__list .switch a {
  font-size: 12px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid var(--ic-white);
  border-radius: 100%;
  color: var(--ic-white);
}
.mobile-menu__list .switch a.active {
  background-color: var(--ic-darkpink);
  border: 1px solid var(--ic-darkpink);
}
.mobile-menu__list .online-chanel {
  position: absolute;
  bottom: -22rem;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 39px 10px;
  background-color: rgba(202, 202, 202, 0.4);
  -webkit-backdrop-filter: blur(30px);
          backdrop-filter: blur(30px);
}

.backdrop {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.5);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  z-index: 50;
  transition: 1;
}

.home {
  padding-top: 90px;
  background-color: var(--ic-grey);
}
.home .bg-slide {
  z-index: 0;
}
.home .bg-slide .carousel {
  position: absolute;
  top: 0;
  z-index: 0;
  max-height: 1416px;
}
.home .bg-slide .carousel img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.home .bg-slide .carousel .carousel-indicators {
  flex-direction: column;
  bottom: auto;
  top: 30%;
  left: auto;
  right: 44px;
  width: 14px;
  margin: 0;
  transform: translateY(-50%);
}
.home .bg-slide .carousel .carousel-indicators button {
  cursor: pointer;
  z-index: 99;
  width: 10px;
  height: 10px;
  border: 1px solid var(--ic-white);
  background-color: transparent;
  margin-bottom: 12px;
}
.home .bg-slide .carousel .carousel-indicators button.active {
  background-color: var(--ic-white);
}
.home section.cover {
  text-align: center;
  position: relative;
  padding-bottom: 12vw;
}
.home section.cover::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 66%;
  height: 2px;
  background-color: var(--ic-white);
}
.home section.cover img {
  width: 170px;
}
.home section.cover h1 {
  margin-top: 15vw;
  color: var(--ic-darkpink);
  font-size: 48px;
  font-weight: normal;
  letter-spacing: 3.6px;
}
.home section.cover p {
  font-family: "Noto Sans Thai", sans-serif;
  font-size: 24px;
  font-weight: normal;
  color: var(--ic-white);
  line-height: 1.58;
}
.home section.cover button {
  width: 267px;
  margin-top: 5vw;
  padding: 12px 79px 12px 80px;
  color: var(--ic-white);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  background-color: transparent;
  border: 1px solid var(--ic-white);
  font-size: 20px;
}
.home section.cover .carousel-indicators {
  flex-direction: column;
  position: absolute;
  bottom: auto;
  top: 45%;
  left: auto;
  right: 44px;
  margin: 0;
  transform: translateY(-50%);
}
.home section.cover .carousel-indicators button {
  padding: 0px;
  margin: 5px;
  cursor: pointer;
  z-index: 99;
  width: 10px;
  height: 10px;
  border: 1px solid var(--ic-white);
  background-color: transparent;
  margin-bottom: 12px;
}
.home section.cover .carousel-indicators button.active {
  background-color: var(--ic-white);
}
.home section.about {
  color: var(--ic-white);
  margin-top: 90px;
  padding: 30px;
  position: relative;
}
.home section.about .desc {
  max-width: 558px;
  width: 100%;
  padding: 42px 34px;
  background-color: rgba(0, 0, 0, 0.3);
  justify-self: flex-end;
}
.home section.about .desc h2 {
  font-size: 52px;
  font-weight: normal;
  line-height: 0.92;
  letter-spacing: 3.9px;
  margin-bottom: 24px;
}
.home section.about .desc h4 {
  font-size: 30px;
  font-weight: 500;
  line-height: 1.27;
  letter-spacing: normal;
}
.home section.about .desc span {
  font-size: 20px;
  font-weight: normal;
  line-height: 1.5;
}
.home section.about .desc p {
  font-size: 25px;
  font-weight: 300;
  line-height: 1.2;
  margin-top: 45px;
}
.home section.about .menu-list ul > li {
  position: relative;
  list-style: none;
  font-size: 50px;
  font-weight: normal;
  letter-spacing: 3.75px;
}
.home section.about .menu-list ul > li.active {
  color: var(--ic-darkpink);
}
.home section.about .menu-list ul > li.active::before {
  background-color: var(--ic-darkpink);
  border: 1px solid var(--ic-darkpink);
}
.home section.about .menu-list ul > li::before {
  position: absolute;
  top: 50%;
  left: -60px;
  content: "";
  width: 48px;
  height: 48px;
  border-radius: 100%;
  border: 1px solid var(--ic-white);
  transform: translateY(-50%);
}
@media screen and (max-width: 425px) {
  .home section.about .menu-list {
    justify-self: center;
  }
}
@media screen and (max-width: 425px) {
  .home section.about {
    grid-template-columns: 1fr;
  }
}
.home section.banner {
  margin-top: 48px;
}
.home section.banner .banner__menu {
  font-size: 24px;
  font-weight: normal;
  letter-spacing: 2.4px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  background-color: var(--ic-black);
  height: 64px;
  overflow-x: auto;
}
.home section.banner .banner__menu__list {
  display: flex;
  gap: 67px;
}
.home section.banner .banner__menu__list a {
  font-size: 24px;
  color: var(--ic-white);
}
.home section.banner .banner__menu__list a.active {
  color: var(--ic-darkpink);
}
.home section.banner .banner__menu .line {
  width: 267px;
  height: 3px;
  background-color: var(--ic-white);
}
.home section.banner .banner__image img {
  width: 100%;
}
.home section.collection {
  background-color: var(--ic-black);
  color: var(--ic-white);
  padding: 96px 0 48px 0;
}
.home section.collection h2 {
  font-size: 50px;
  font-weight: normal;
  letter-spacing: 3.75px;
  margin-bottom: 93px;
}
.home section.collection .img-mobile {
  width: 50%;
  align-self: center;
  margin-bottom: 30%;
}
.home section.collection h3 {
  font-size: 24px;
  font-weight: 300;
  line-height: 1.33;
  letter-spacing: 1.2px;
}
.home section.collection .collection__content {
  display: flex;
  align-self: center;
  gap: 24px;
  margin-bottom: 48px;
}
.home section.collection .collection__content__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 365px;
  width: 100%;
  text-align: center;
}
.home section.collection .collection__content__item h5 {
  font-size: 24px;
  font-weight: 300;
  margin-bottom: 48px;
  line-height: 1.33;
}
.home section.collection .collection__content__item img {
  margin-bottom: 48px;
}
.home section.collection .collection__content__item span.title {
  font-size: 24px;
  font-weight: 300;
  line-height: 1.33;
}
.home section.collection .collection__content__item span.desc {
  font-size: 24px;
  color: var(--ic-lightblue);
}
.home section.collection .collection__content__item img.logo {
  margin-top: -50px;
}
@media screen and (max-width: 1170px) {
  .home section.collection .collection__content {
    align-self: auto;
  }
}
.home section.customization {
  background-color: var(--ic-black);
}
.home section.customization .customization__header {
  background-color: var(--ic-darkblue);
  width: 100%;
  height: 64px;
}
.home section.customization .customization__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 792px;
  padding-top: 96px;
  background-image: url("/assets/images/product-powder.png");
  background-repeat: no-repeat;
  background-size: cover;
  color: var(--ic-white);
}
.home section.customization .customization__content h2 {
  font-size: 50px;
  font-weight: normal;
  letter-spacing: 3.75px;
  margin-bottom: 17px;
}
.home section.customization .customization__content button {
  width: 267px;
  padding: 12px 0px 12px 0px;
  border: 1px solid var(--ic-black);
  background-color: var(--ic-white);
  font-size: 20px;
  font-weight: 500;
}
.home section.video-banner {
  background-color: var(--ic-black);
  padding: 96px 113px;
  color: var(--ic-white);
}
.home section.video-banner .video-banner__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.home section.video-banner .video-banner__content button {
  padding: 12px 78px;
  border: 1px solid var(--ic-white);
  background-color: var(--ic-black);
  color: var(--ic-white);
  margin-bottom: 41px;
  text-transform: uppercase;
}
.home section.video-banner .video-banner__content .video-panel {
  position: relative;
}
.home section.video-banner .video-banner__content .video-panel .product-on-video {
  width: 20%;
  position: absolute;
  right: 7px;
  bottom: -13px;
}
.home section.video-banner h2 {
  font-size: 50px;
  font-weight: normal;
  line-height: normal;
  letter-spacing: 3.75px;
  margin-bottom: 48px;
}
.home section.video-banner h3 {
  font-size: 48px;
  font-weight: normal;
  line-height: 1;
}
.home section.video-banner p {
  font-size: 28px;
  font-weight: 300;
  line-height: 1.14;
}
.home section.video-banner .video {
  margin-bottom: 48px;
}
.home section.consult {
  background-color: var(--ic-black);
  position: relative;
  height: 1000px;
}
.home section.consult .consult__header-line {
  height: 133px;
  background-color: var(--ic-darkpink);
}
.home section.consult .consult__content-top {
  display: flex;
  justify-content: space-between;
  color: var(--ic-white);
  padding: 134px 113px 0 113px;
}
.home section.consult .consult__content-top ul > li {
  width: 200px;
  list-style: none;
  border-bottom: 1px solid var(--ic-white);
  padding: 10px 0;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 2.4px;
}
.home section.consult .consult__content-top ul > li:hover {
  color: var(--ic-darkpink);
}
.home section.consult .consult__content-top .text-right {
  width: 186px;
  text-align: center;
}
.home section.consult .consult__content-top .text-right h3 {
  color: var(--ic-darkpink);
  font-size: 48px;
}
.home section.consult .consult__content-top .text-right p {
  width: 84px;
  margin: 0 auto;
  font-size: 24px;
}
.home section.consult .consult__content-bottom {
  position: absolute;
  top: 80%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  flex-direction: column;
  z-index: 5;
  color: var(--ic-white);
  text-align: center;
}
.home section.consult .consult__content-bottom h4 {
  font-size: 24px;
  font-weight: 300;
  letter-spacing: 2.4px;
}
.home section.consult .consult__content-bottom h2 {
  color: var(--ic-darkpink);
  font-size: calc(10vw + 6px);
  letter-spacing: 11.25px;
}
.home section.consult .consult__content-bottom h3 {
  font-size: 48px;
  font-weight: bold;
}
.home section.consult .consult__content-bottom p {
  font-size: 24px;
  line-height: 1.58;
}
.home section.consult .girl-image {
  width: 770px;
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
  z-index: 0;
}
.home section.product {
  padding: 96px 113px;
  background-color: var(--ic-white);
}
.home section.product .product__content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.home section.product .product__content h2 {
  text-transform: uppercase;
  font-size: 48px;
  letter-spacing: 3.6px;
}
.home section.product .product__content h3 {
  font-size: 48px;
  font-weight: bold;
}
.home section.product .product__content button {
  padding: 12px 78px;
  background-color: var(--ic-white);
  border: 1px solid var(--ic-black);
  margin-top: 24px;
  margin-bottom: 46px;
  font-size: 20px;
  text-transform: uppercase;
}
.home section.product .product__content .prev-arrow {
  position: absolute;
  top: 40%;
  transform: translateX(-40%);
  left: -10px;
  border: none;
  background-color: transparent;
  border-radius: 100%;
  width: 40px;
  height: 40px;
}
.home section.product .product__content .next-arrow {
  position: absolute;
  top: 40%;
  transform: translateX(20%);
  right: -10px;
  border: none;
  background-color: transparent;
  border-radius: 100%;
  width: 40px;
  height: 40px;
}
.home section.product .product__content__item {
  width: 100%;
  display: flex;
  position: relative;
  -moz-column-gap: 25px;
       column-gap: 25px;
  overflow-x: hidden;
}
.home section.product .product__content__item .slick-list {
  width: 100%;
}
.home section.product .product__content__item .slick-list .slick-track {
  display: flex;
  gap: 10px;
}
.home section.product .product__content__item__detail {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.home section.product .product__content__item__detail span.title {
  border-top: 1px solid var(--ic-black);
  border-bottom: 1px solid var(--ic-black);
  padding: 12px 0;
  font-size: 24px;
  text-align: center;
}
.home section.product .product__content__item__detail span.desc {
  font-size: 24px;
  opacity: 0.4;
  padding: 24px 0px;
}
.home section.product .product__content__item__detail span.price {
  font-size: 48px;
  font-weight: bold;
}
.home section.product .product__content__item__detail button {
  width: 174px;
  color: var(--ic-white);
  background-color: var(--ic-darkpink);
  padding: 12px 0;
  margin-top: 12px;
  border: 1px solid var(--ic-darkpink);
  border-radius: 24px;
  text-transform: uppercase;
}
.home section.now-or-never .now-or-never__header-line {
  display: flex;
  align-items: center;
  text-align: center;
  background-color: var(--ic-black);
  height: 171px;
}
.home section.now-or-never .now-or-never__header-line__content {
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 87px;
       column-gap: 87px;
}
.home section.now-or-never .now-or-never__header-line__content .line {
  width: 267px;
  height: 3px;
  background-color: var(--ic-white);
}
@media screen and (max-width: 600px) {
  .home section.now-or-never .now-or-never__header-line__content .line {
    width: 30px;
  }
}
.home section.now-or-never .now-or-never__header-line__content .text {
  color: var(--ic-white);
}
.home section.now-or-never .now-or-never__header-line__content .text h4 {
  color: var(--ic-darkpink);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 2.4px;
}
.home section.now-or-never .now-or-never__header-line__content .text p {
  font-size: 24px;
  font-weight: 500;
}
@media screen and (max-width: 1180px) {
  .home section.about .desc {
    padding: 40px;
  }
}
@media screen and (max-width: 1024px) {
  .home section.cover {
    padding-bottom: 6vw;
  }
  .home section.cover h1 {
    margin-top: 10vw;
  }
  .home section.cover button {
    margin-top: 3vw;
  }
  .home section.about {
    margin-top: 0px;
    padding-top: 20px;
    padding-bottom: 18px;
    gap: 100px;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .home section.about .desc {
    padding: 13px 30px 13px 30px;
  }
  .home section.about .desc p {
    margin-top: 1rem;
  }
  .home section.banner {
    margin-top: 0px;
  }
  .home section.banner .banner__menu {
    justify-content: flex-start;
  }
  .home section.consult .consult__content-top {
    padding: 134px 10px 0 10px;
  }
  .home section.consult .girl-image {
    left: 55%;
  }
}
@media screen and (max-width: 820px) {
  .home section.consult .girl-image {
    width: 600px;
  }
}
@media screen and (max-width: 768px) {
  .home section.about {
    padding-top: 40px;
  }
  .home section.about .desc {
    padding: 40px 24px 40px 24px;
  }
  .home section.about .menu-list {
    justify-self: center;
    padding-top: 10px;
  }
  .home section.about .menu-list ul > li {
    padding-left: 30px;
  }
  .home section.about .menu-list ul > li::before {
    left: -40px;
    border-radius: 100%;
  }
  .home section.banner {
    margin-top: 0px;
  }
  .home section.consult {
    background-color: var(--ic-black);
    position: relative;
    height: 570px;
  }
  .home section.consult .consult__header-line {
    height: 40px;
  }
  .home section.consult .consult__content-top {
    display: flex;
    justify-content: space-between;
    color: var(--ic-white);
    padding: 35px 10px 0 10px;
  }
  .home section.consult .consult__content-top ul {
    padding-left: 0;
  }
  .home section.consult .consult__content-top ul > li {
    width: 100px;
    font-size: 8px;
  }
  .home section.consult .consult__content-top .text-right {
    padding-left: 100px;
  }
  .home section.consult .consult__content-top .text-right h3 {
    font-size: 24px;
  }
  .home section.consult .consult__content-top .text-right p {
    font-size: 11px;
  }
  .home section.consult .consult__content-bottom h4 {
    font-size: 12px;
  }
  .home section.consult .consult__content-bottom h3 {
    font-size: 18px;
  }
  .home section.consult .consult__content-bottom p {
    font-size: 14px;
  }
  .home section.consult .girl-image {
    width: 460px;
    left: 50%;
  }
}
@media screen and (max-width: 767px) {
  .home section.collection .collection__content {
    align-self: center;
    flex-direction: column;
    gap: 100px;
  }
}
@media screen and (max-width: 600px) {
  .home section.video-banner {
    padding: 96px 60px;
  }
  .home section.video-banner .video-banner__content .video-panel .product-on-video {
    bottom: 6px;
  }
  .home section.now-or-never .container {
    padding: 0 !important;
  }
  .home section.now-or-never .now-or-never__header-line__content {
    justify-content: space-between;
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
}
@media screen and (max-width: 425px) {
  .home section.cover {
    padding: 20px 36px 36px 36px;
  }
  .home section.cover::after {
    width: 0;
  }
  .home section.cover h1 {
    margin-top: 165px;
  }
  .home section.cover button {
    margin-top: 71px;
  }
  .home section.about {
    background-image: url("/assets/images/bg-moblie.png");
    background-repeat: no-repeat;
    padding-top: 174px;
    gap: 47px;
  }
  .home section.about .desc {
    padding: 40px 24px 40px 24px;
  }
  .home section.about .menu-list ul > li {
    font-size: 22px;
  }
  .home section.about .menu-list ul > li::before {
    width: 22px;
    height: 22px;
    border-radius: 100%;
  }
  .home section.banner {
    margin-top: 0px;
  }
  .home section.banner .banner__menu__list {
    gap: 24px;
  }
  .home section.banner .banner__menu__list a {
    font-size: 13px;
  }
  .home section.collection {
    background-color: var(--ic-black);
    color: var(--ic-white);
    padding: 96px 0 48px 0;
  }
  .home section.collection h2 {
    font-size: 25px;
    font-weight: bold;
    margin-bottom: 93px;
  }
  .home section.collection h3 {
    font-size: 12px;
  }
  .home section.collection .collection__content {
    justify-content: center;
    gap: 24px;
  }
  .home section.collection .collection__content__item img {
    width: 80% !important;
  }
  .home section.collection .collection__content__item img.logo {
    width: 30% !important;
  }
  .home section.collection .collection__content span.title {
    font-size: 20px;
  }
  .home section.collection .collection__content span.desc {
    font-size: 20px;
  }
  .home section.customization .customization__content h2 {
    font-size: 28px;
  }
  .home section.customization .customization__content button {
    width: 144px;
    padding: 8px 0px 8px 0px;
    font-size: 10px;
  }
  .home section.video-banner {
    background-color: var(--ic-black);
    padding: 96px 20px;
    color: var(--ic-white);
  }
  .home section.video-banner .video-banner__content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .home section.video-banner .video-banner__content button {
    padding: 8px 22px;
    font-size: 12px;
  }
  .home section.video-banner .video-banner__content .video-panel .product-on-video {
    bottom: 20px;
  }
  .home section.video-banner h2 {
    font-size: 40px;
  }
  .home section.video-banner h3 {
    font-size: 20px;
  }
  .home section.video-banner p {
    font-size: 14px;
    text-align: center;
    margin-top: 12px;
  }
  .home section.video-banner .video {
    margin-bottom: 48px;
  }
  .home section.consult {
    background-color: var(--ic-black);
    position: relative;
    height: 570px;
  }
  .home section.consult .consult__header-line {
    height: 40px;
  }
  .home section.consult .consult__content-top {
    display: flex;
    justify-content: space-between;
    color: var(--ic-white);
    padding: 35px 10px 0 10px;
  }
  .home section.consult .consult__content-top ul {
    padding-left: 0;
  }
  .home section.consult .consult__content-top ul > li {
    width: 100px;
    font-size: 8px;
  }
  .home section.consult .consult__content-top .text-right {
    padding-left: 100px;
  }
  .home section.consult .consult__content-top .text-right h3 {
    font-size: 24px;
  }
  .home section.consult .consult__content-top .text-right p {
    font-size: 11px;
  }
  .home section.consult .consult__content-bottom h4 {
    font-size: 12px;
  }
  .home section.consult .consult__content-bottom h3 {
    font-size: 18px;
  }
  .home section.consult .consult__content-bottom p {
    font-size: 14px;
  }
  .home section.consult .girl-image {
    width: 350px;
    left: 47%;
  }
  .home section.product {
    padding: 96px 30px;
  }
  .home section.product .product__content h2 {
    font-size: 30px;
  }
  .home section.product .product__content h3 {
    font-size: 25px;
  }
  .home section.product .product__content button {
    padding: 8px 22px;
    font-size: 12px;
  }
  .home section.product .product__content__item__detail button {
    font-size: 20px;
  }
  .home section.now-or-never .now-or-never__header-line {
    height: 74px;
    align-items: center;
  }
  .home section.now-or-never .now-or-never__header-line__content {
    padding-top: 15px;
  }
  .home section.now-or-never .now-or-never__header-line__content .text h4 {
    font-size: 20px;
  }
  .home section.now-or-never .now-or-never__header-line__content .text p {
    font-size: 15px;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 425px) {
  .home section.cover {
    padding: 20px 36px 36px 36px;
  }
  .home section.cover::after {
    width: 0;
  }
  .home section.cover h1 {
    margin-top: 135px;
  }
  .home section.cover p {
    margin-top: 20px;
  }
  .home section.cover button {
    margin-top: 30px;
  }
  .home section.about {
    margin-top: -8px;
  }
  .home section.about .desc h2 {
    font-size: 50px;
  }
  .home section.about .desc h4 {
    font-size: 20px;
  }
  .home section.about .desc span {
    font-size: 14px;
  }
  .home section.about .desc p {
    font-size: 18px;
  }
}
@media screen and (max-width: 320px) {
  .home section.cover {
    padding-bottom: 10vw;
  }
  .home section.cover img {
    width: 120px;
  }
  .home section.cover h1 {
    margin-top: 15vw;
    color: var(--ic-darkpink);
    font-size: 38px;
  }
  .home section.cover p {
    font-size: 18px;
  }
  .home section.cover button {
    width: 167px;
    margin-top: 5vw;
    padding: 10px 20px 10px 20px;
    color: var(--ic-white);
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    background-color: transparent;
    border: 1px solid var(--ic-white);
    font-size: 18px;
  }
  .home section.about {
    padding-top: 50px;
  }
  .home section.about .desc {
    max-width: 558px;
    width: 100%;
    padding: 42px 34px;
    background-color: rgba(0, 0, 0, 0.3);
    justify-self: flex-end;
  }
  .home section.about .desc h2 {
    font-size: 40px;
  }
  .home section.about .desc h4 {
    font-size: 18px;
  }
  .home section.about .desc span {
    font-size: 14px;
  }
  .home section.about .desc p {
    font-size: 16px;
  }
  .home section.about .menu-list ul > li::before {
    position: absolute;
    top: 50%;
    left: -30px;
  }
  .home section.consult .consult__content-top .text-right {
    padding-left: 50px;
  }
  .home section.consult .girl-image {
    width: 280px;
    left: 47%;
  }
  .home section.product .product__content__item__detail span.desc {
    padding: 24px 10px;
  }
}

.reveal {
  position: relative;
  transform: translateY(100px);
  opacity: 0;
  transition: 1.5s all ease;
}
.reveal.active {
  transform: translateY(0);
  opacity: 1;
}

.fade-up {
  bottom: -80px;
  opacity: 0;
  transition: 1.5s all ease;
}
.fade-up.active {
  bottom: 0;
  opacity: 1;
}

.footer {
  background-color: var(--ic-black);
  border-bottom: 60px solid var(--ic-darkpink);
}
.footer__content {
  display: flex;
  justify-content: center;
  padding: 96px 0 24px 0;
}
.footer__content .logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--ic-white);
  row-gap: 12px;
}
.footer__content .logo img {
  width: 267px;
}
.footer__content .logo small {
  font-size: 12px;
}
.footer__content .menu-list {
  text-transform: uppercase;
  margin-top: 48px;
  color: var(--ic-white);
  font-size: 24px;
}
.footer__content .menu-list .sub-menu {
  font-size: 16px;
  color: var(--ic-grey);
}
@media screen and (max-width: 768px) {
  .footer__content .menu-list .sub-menu {
    text-align: center;
    font-size: 12px;
  }
}
.footer__content .menu-list ul li {
  list-style: none;
}
@media screen and (max-width: 768px) {
  .footer__content .menu-list {
    text-align: center;
    font-size: 16px;
    padding: 0px 50px;
  }
}
.footer__content .contract {
  margin-top: 50px;
  color: var(--ic-white);
}
@media screen and (max-width: 768px) {
  .footer__content .contract {
    text-align: center;
  }
}/*# sourceMappingURL=main.css.map */