/*main*/
/* width */
::-webkit-scrollbar {
  height: 0px;
}
/* Track */
::-webkit-scrollbar-track {
}
/* Handle */
::-webkit-scrollbar-thumb {
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
}
body,
html {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  overflow-y: auto;
  background-color: #FEF3F7;
  font-family: sans-serif;
  scroll-behavior: smooth;
  overflow: hidden;
  font-family: 'Euclid Circular B', sans-serif;
  width: 657px;
  height: 1100px;
}
/*home*/
h1,h2,h3,h4,h5,h6{
  margin-bottom: 0;
  font-family: sans-serif;
}
a {
  cursor: pointer;
  text-decoration: none;
  transition: 0.3s ease-in-out !important;
}
a:hover {
  text-decoration: none;
  transition: 0.3s ease-in-out !important;
}
p {
  margin-bottom: 0px;
  font-size: 11.5px;
  font-family: sans-serif;
}
input:focus, textarea:focus {
  outline: 0;
  box-shadow: none !important;
}
button{
  box-shadow: none !important;
  border: none;
}
button:focus {
  box-shadow: none !important;
  outline: 0;
}
#content {
  display: block;
  height: 1100px;
}
#loader {
  position: absolute;
  left: 0;
  top: 0;
  width: 657px;
  height: 1100px;
  background: #FEF3F7;
  display: flex;
  align-items: center;
  justify-content: center;
}
#content video{
  width: 657px;
  height: auto;
  position: absolute;
  z-index: 1;
}
/*splash*/
#content .splash{
  padding-top: 70px;
  position: relative;
  z-index: 2;
  width: 657px;
  height: 1100px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 41px;
}
.logo{
  width: 185px;
  height: 79px;
  background-image: url('../img/logo.png');
  background-position: center center;
  background-size: cover;
  background-origin: content-box;
  background-repeat: no-repeat;
  animation: scale-in-hor-centers 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
  overflow: hidden;
  transition: all 0.3s;
}
@keyframes scale-in-hor-centers {
  0% {
    width: 0;
    opacity: 1;
  }
  100% {
    width: 185px;
    opacity: 1;
  }
}
#content .splash img:nth-child(2){
  animation: scale-in-center 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
  width: 85%;
}
@keyframes scale-in-center {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
#content .splash .tap-area{
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 41px;
  margin-bottom: 255px;
}
#content .splash .tap-area img{
  animation: pulsate-bck 2s ease-in-out infinite both;
  width: auto;
}
@keyframes pulsate-bck {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}
/*splash end*/
/*manu*/
#content .menu{
  padding-top: 41px;
  position: relative;
  z-index: 2;
  width: 657px;
  height: 1100px;
  display: flex;
  align-items: center;
  justify-content: start;
  flex-direction: column;
  gap: 8px;
  background: #fef3f7c4;
  background-image: url('../img/item-bg.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
#content .menu .head-txt{
  animation: scale-in-center1 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) 1s both;
  width: 75%;
}
@keyframes scale-in-center1 {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
#content .menu .item-list{
  margin-top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
#content .menu .item-list a{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border-radius: 21px;
  animation: pulsate-bck1 0.7s ease-in-out 0.5s both;
  margin-block: 12px;
  -webkit-tap-highlight-color: transparent !important;
  filter: brightness(1);
}
#content .menu .item-list a:nth-child(1){
  transform: translate(61px, -79px) !important;
  position: relative;
  z-index: 55;
}
#content .menu .item-list a:nth-child(2){
  transform: translate(-72px, 51px) !important;
}
#content .menu .item-list a:nth-child(1) img{
  animation: slide-in-bck-left1 0.6s cubic-bezier(0.175, 0.885, 0.320, 1.275) 1s both;
  width: 296px;
}
@keyframes slide-in-bck-left1 {
  0% {
    transform: scale(1.5) translateX(-328px);
    opacity: 0;
  }
  100% {
   transform: scale(1) translateX(0);
   opacity: 1;
 }
}
#content .menu .item-list a:nth-child(2) img{
  animation: slide-in-bck-left2 0.6s cubic-bezier(0.175, 0.885, 0.320, 1.275) 1s both;
  width: 331px;
}
@keyframes slide-in-bck-left2 {
  0% {
    transform: scale(1.5) translateX(328px);
    opacity: 0;
  }
  100% {
   transform: scale(1) translateX(0);
   opacity: 1;
 }
}
#content .menu .item-list a:focus-visible,
#content .menu .item-list a:focus,
#content .menu .item-list a:active,
#content .menu .item-list a:hover{
  outline: none;
  filter: brightness(1.3);
}
@keyframes pulsate-bck1 {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes scale-in-hor-center {
  0% {
    transform: scaleX(0);
    opacity: 1;
  }
  100% {
    transform: scaleX(1);
    opacity: 1;
  }
}
@keyframes scale-in-hor-center1 {
  0% {
    transform: scaleY(0);
    opacity: 1;
  }
  100% {
    transform: scaleY(1);
    opacity: 1;
  }
}
/*manu end*/
/*product options*/
#content .product-set{
  padding-top: 0;
  position: relative;
  z-index: 2;
  width: 657px;
  height: 1100px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-direction: column;
  gap: 74px;
  margin-top: auto;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
#content #section3.product-set{
  padding-top: 0px;
  gap: 0;
}
#content .product-set.serum-sec{
  gap: 99px;
}
#content .product-set .head-txt{
  animation: scale-in-center1 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) 0.2s both;
  width: 100%;
}
@keyframes scale-in-center1 {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
#content .product-set .header{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px 16px;
  width: 95%;
  position: absolute;
  top: 0;
  z-index: 3;
  left: 50%;
  transform: translateX(-50%);
}
#content .product-set .header > ul{
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
}
#content .product-set .header > ul li a{
  display: inline-block;
}
#content .product-set .prod-img{
  display: flex;
  width: 657px;
  align-items: flex-start;
  justify-content: center;
  position: relative;
  height: 35%;
}
#content .product-set .prod-img .sets-list .product-img{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) !important;
  padding-top: 0;
}
#content .product-set .prod-img .sets-list{
  position: relative;
  width: fit-content;
  animation: scale-in-center1 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) 0.6s both;
  z-index: auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: 0;
}
#content .product-set .prod-img .sets-list a{
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
}
#content .product-set .prod-img .sets-list a span{
  display: inline-block;
  animation: scale-in-center 0.5s cubic-bezier(0.175, 0.885, 0.320, 1.275) 1s both;
}
@keyframes scale-in-center {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
#content .product-set .prod-img .sets-list a:nth-child(2) span{
  animation: scale-in-center1 0.4s cubic-bezier(0.175, 0.885, 0.320, 1.275) 1.1s both;
}
@keyframes scale-in-center1 {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
#content .product-set .prod-img .sets-list a:nth-child(3) span{
  animation: scale-in-center2 0.6s cubic-bezier(0.175, 0.885, 0.320, 1.275) 1.3s both;
}
@keyframes scale-in-center2 {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
#content .product-set .prod-img .sets-list a:nth-child(4) span{
  animation: scale-in-center3 0.7s cubic-bezier(0.175, 0.885, 0.320, 1.275) 1.2s both;
}
@keyframes scale-in-center3 {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
#content .product-set .prod-img .sets-list a img{
  width: 62%;
}
#content .product-set .prod-img .sets-list a:nth-child(1) {
  transform: translate(358px, 0px);
}
#content .product-set .prod-img .sets-list a:nth-child(2) {
transform: translate(-89px, 0px);
}
#content .product-set .prod-img .sets-list a:nth-child(3) {transform: translate(290px, 47px);}
@keyframes pulsate-bck1 {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes scale-in-hor-center {
  0% {
    transform: scaleX(0);
    opacity: 1;
  }
  100% {
    transform: scaleX(1);
    opacity: 1;
  }
}
@keyframes scale-in-hor-center1 {
  0% {
    transform: scaleY(0);
    opacity: 1;
  }
  100% {
    transform: scaleY(1);
    opacity: 1;
  }
}
#content .product-set .footer{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 25px;
  width: 95%;
  position: absolute;
  bottom: 0;
  z-index: 3;
  left: 50%;
  transform: translateX(-50%);
}
#content .product-set .footer > ul{
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
}
#content .product-set .footer > ul li a{
  display: inline-block;
}
#content .product-set .detail-area{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-direction: column;
  width: 90%;
  margin-bottom: 353px;
}
#content .product-set .detail-area.how-to-sec{
  gap: 0;
  margin-bottom: 123px;
  width: 80%;
}
#content .product-set .detail-area .card{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 21px;
  width: 100%;
}
#content .product-set .detail-area.how-to-sec .card{
  margin-top: -33px;
}
#content .product-set .detail-area.benefit-sec{
  gap: 0;
  flex-direction: row;
  margin-bottom: 0;
  margin-top: 36px;
}
#content .product-set .detail-area .card .video-area{
  min-width: 214px;
  min-height: 214px;
  max-width: 214px;
  max-height: 214px;
  border-radius: 50%;
  border: 1px solid #F4DFA5;
  overflow: hidden;
  animation: slide-in-bck-left3 0.6s cubic-bezier(0.175, 0.885, 0.320, 1.275) 1s both;
}
#content .product-set .detail-area .card:nth-child(2) .video-area{
  animation: slide-in-bck-left4 0.8s cubic-bezier(0.175, 0.885, 0.320, 1.275) 1.2s both;
}
#content .product-set .detail-area .card .video-area video{
  position: unset;
  transform: scale(1.2);
}
#content .product-set .detail-area .card p{
  animation: slide-in-bck-left4 0.6s cubic-bezier(0.250, 0.460, 0.450, 0.940) 1.2s both;
  font-size: 27px;
  line-height: 39px;
  color: #fff;
  font-weight: 400;
  font-family: 'Euclid Circular B';
  text-align: center;
  text-transform: capitalize;
  margin: 0;
}
#content .product-set .detail-area .card:nth-child(2) p{
  animation: slide-in-bck-left3 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) 1.1s both;
}
#content .product-set .detail-area .card p span{
  font-weight: 600;
  color: #F1DCA2;
}
@keyframes slide-in-bck-left3 {
  0% {
    transform: scale(1.5) translateX(-328px);
    opacity: 0;
  }
  100% {
   transform: scale(1) translateX(0);
   opacity: 1;
 }
}
@keyframes slide-in-bck-left4 {
  0% {
    transform: scale(1.5) translateX(328px);
    opacity: 0;
  }
  100% {
   transform: scale(1) translateX(0);
   opacity: 1;
 }
}
#content .product-set .detail-area.benefit-sec .feature-list{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 107px;
  gap: 11px;
  animation: puff-in-ver 0.7s cubic-bezier(0.470, 0.000, 0.745, 0.715) 0.5s both;
}
#content .product-set .detail-area.benefit-sec .feature-list img{
  opacity: 0;
  position: relative;
  top: -82px;
  transition: all 0.3s;
  width: -webkit-fill-available;
}
#content .product-set .detail-area.benefit-sec .feature-list > div{
  width: 90px;
  height: 90px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}
#content .product-set .detail-area.benefit-sec .feature-list > div.softness{
  background-image: url(../img/cream-features/softness.png);
}
#content .product-set .detail-area.benefit-sec .feature-list > div.shine{
  background-image: url(../img/cream-features/shine.png);
}
#content .product-set .detail-area.benefit-sec .feature-list > div.knots{
  background-image: url(../img/cream-features/knots.png);
}
#content .product-set .detail-area.benefit-sec .feature-list > div.fly-aways{
  background-image: url(../img/cream-features/fly-aways.png);
}
#content .product-set .detail-area.benefit-sec .feature-list > div.frizz{
  background-image: url(../img/cream-features/frizz.png);
}
#content .product-set .detail-area.benefit-sec .feature-list:hover > div.softness{
  background-image: url(../img/cream-features/softness-hover.png);
}
#content .product-set .detail-area.benefit-sec .feature-list:hover img{
  opacity: 1;
  top: 0;
}
#content .product-set .detail-area.benefit-sec .feature-list:hover > div.shine{
  background-image: url(../img/cream-features/shine-hover.png);
}
#content .product-set .detail-area.benefit-sec .feature-list:hover > div.knots{
  background-image: url(../img/cream-features/knots-hover.png);
}
#content .product-set .detail-area.benefit-sec .feature-list:hover > div.fly-aways{
  background-image: url(../img/cream-features/fly-aways-hover.png);
}
#content .product-set .detail-area.benefit-sec .feature-list:hover > div.frizz{
  background-image: url(../img/cream-features/frizz-hover.png);
}
@keyframes puff-in-ver {
  0% {
    transform: scaleY(1.2);
    filter: blur(4px);
    opacity: 0;
  }
  100% {
    transform: scaleY(1);
    filter: blur(0px);
    opacity: 1;
  }
}