/*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;
} 

/*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: 14px;
  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: none;*/
}

#loader {
  position: absolute;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: #FEF3F7;
  display: flex;
  align-items: center;
  justify-content: center;
}
#content video{
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
}
/*splash*/
#content .splash{
  padding-top: 160px;
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 40px;
  animation: scale-in-center 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}
@keyframes scale-in-center {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  100% {

    transform: scale(1);
    opacity: 1;
  }
}
#content .splash a{
  display: block;
  position: absolute;
  z-index: 3;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  -webkit-tap-highlight-color: #ffc9dd80 !important;
}
#content .splash .tap-area{
  margin-top: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 50px;
}
#content .splash .tap-area img{
  animation: pulsate-bck 2s ease-in-out infinite both;
}
@keyframes pulsate-bck {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}
/*splash end*/
/*manu*/
#content .menu.active{
  padding-top: 80px;
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: start;
  flex-direction: column;
  gap: 40px;
  background: #fef3f7c4;
}
#content .menu.active .head-txt{
  animation: scale-in-center1 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) 1s both;
}
@keyframes scale-in-center1 {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  100% {

    transform: scale(1);
    opacity: 1;
  }
}
#content .menu.active .item-list{
  margin-top: 54px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 35px 85px;
}
#content .menu.active .item-list > span{
  display: inline-block;
  height: -webkit-fill-available;
  background: #ffb4ca;
  width: 1px;
  animation: scale-in-hor-center1 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) 1.5s both;
}
#content .menu.active .item-list div span.v-line{
  display: inline-block;
  width: -webkit-fill-available;
  background: #ffb4ca;
  height: 1px;
  animation: scale-in-hor-center 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) 1.5s both;
}
#content .menu.active .item-list a{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  border-radius: 25px;
  animation: pulsate-bck1 0.7s ease-in-out 0.5s both;
  margin-block: 15px;
}
#content .menu.active .item-list a.pink-hover{
  -webkit-tap-highlight-color: #ffc9dd80 !important;
}
#content .menu.active .item-list a.blue-hover{
  -webkit-tap-highlight-color: #C9EDFF80 !important;
}
#content .menu.active .item-list a.black-hover{
  -webkit-tap-highlight-color: #DFDFDF80 !important;
}

#content .menu.active .item-list a:focus-visible,
#content .menu.active .item-list a:focus,
#content .menu.active .item-list a:active,
#content .menu.active .item-list a:hover{
  outline: none;
}
#content .menu.active .item-list a.pink-hover:focus-visible,
#content .menu.active .item-list a.pink-hover:focus,
#content .menu.active .item-list a.pink-hover:active,
#content .menu.active .item-list a.pink-hover:hover{
  background: #ffc9dd80 !important;
}
#content .menu.active .item-list a.blue-hover:focus-visible,
#content .menu.active .item-list a.blue-hover:focus,
#content .menu.active .item-list a.blue-hover:active,
#content .menu.active .item-list a.blue-hover:hover{
  background: #C9EDFF80 !important;
}
#content .menu.active .item-list a.black-hover:focus-visible,
#content .menu.active .item-list a.black-hover:focus,
#content .menu.active .item-list a.black-hover:active,
#content .menu.active .item-list a.black-hover:hover{
  background: #DFDFDF80 !important;
}
@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: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  gap: 40px;
}
#content .product-set.blue-f{
  background: #fef3f7c4;
}
#content .product-set .head-txt{
  animation: scale-in-center1 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) 0.2s both;
  padding-top: 120px;
}
@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: 50px 30px;
  width: 90%;
  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 .menu-area{
  width: 100vw;
  height: 102vh;
  position: absolute;
  top: -5px;
  bottom: -5px;
  background: #000000CC;
  backdrop-filter: blur(15px);
  padding-top: 50px;
  padding-inline: 70px;
  display: none;
}
#content .product-set .header .menu-area .menu-area-inner{
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  gap: 180px;
}
#content .product-set .header .menu-area .menu-area-inner > ul{
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  width: 92%;
  justify-content: space-between;
  flex-direction: column;
  gap: 110px;
}
#content .product-set .header.header-v > ul{
  justify-content: center;
}
#content .product-set .header .menu-area .menu-area-inner > ul.back-icons{
  flex-direction: row;
}
#content .product-set .header .menu-area .menu-area-inner > ul li a{
  font-size: 70px;
  color: #fff;
  text-transform: uppercase;
  line-height: 1;
  font-family: 'Nexa Text-Trial';
  display: inline-block;
}
#content .product-set .prod-img{
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 65%;
}
#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: absolute;
  width: 100%;
  height: 100%;
  animation: scale-in-center1 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) 0.6s both;
  z-index: auto;
}
#content .product-set .prod-img .sets-list a{
  display: inline-block;
  position: absolute;
}
#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: -webkit-fill-available;
  animation: shake-vertical 30s cubic-bezier(0.455, 0.030, 0.515, 0.955) infinite both;
}
@keyframes shake-vertical {
  0%,
  100% {
    transform: translateY(0);
  }
  10%,
  30%,
  50%,
  70% {
    transform: translateY(-8px);
  }
  20%,
  40%,
  60% {
    transform: translateY(8px);
  }
  80% {
    transform: translateY(6.4px);
  }
  90% {
    transform: translateY(-6.4px);
  }
}
#content .product-set .prod-img .sets-list a:nth-child(2) img{
  animation: shake-vertical1 40s cubic-bezier(0.455, 0.030, 0.515, 0.955) infinite both;
}
@keyframes shake-vertical1 {
  0%,
  100% {
    transform: translateY(0);
  }
  10%,
  30%,
  50%,
  70% {
    transform: translateY(15px);
  }
  20%,
  40%,
  60% {
    transform: translateY(-5px);
  }
  80% {
    transform: translateY(3.4px);
  }
  90% {
    transform: translateY(-10.4px);
  }
}
#content .product-set .prod-img .sets-list a:nth-child(3) img{
  animation: shake-vertical2 25s cubic-bezier(0.455, 0.030, 0.515, 0.955) infinite reverse both;
}
@keyframes shake-vertical2 {
  0%,
  100% {
    transform: translateY(10px);
  }
  10%,
  30%,
  50%,
  70% {
    transform: translateY(-10px);
  }
  20%,
  40%,
  60% {
    transform: translateY(15px);
  }
  80% {
    transform: translateY(5px);
  }
  90% {
    transform: translateY(-5.4px);
  }
}
#content .product-set .prod-img .sets-list a:nth-child(4) img{
  animation: shake-vertical3 30s cubic-bezier(0.455, 0.030, 0.515, 0.955) infinite both;
}
@keyframes shake-vertical3 {
  0%,
  100% {
    transform: translateY(10px);
  }
  10%,
  30%,
  50%,
  70% {
    transform: translateY(-5px);
  }
  20%,
  40%,
  60% {
    transform: translateY(5px);
  }
  80% {
    transform: translateY(15px);
  }
  90% {
    transform: translateY(-5.4px);
  }
}
#content .product-set .bottom-slider{
  display: flex;
  align-items: center;
  justify-content: start;
  width: 100%;
  background: #FFFFFF73;
  margin-top: 50px;
  padding-block: 30px;
  scroll-behavior: smooth;
  position: relative;
  z-index: 6;
}
#content .product-set .bottom-slider:before{
  content: "";
  width: 340px;
  height: 62px;
  background-image: url('../img/maricle.png');
  position: absolute;
  left: 50%;
  top: -60px;
  transform: translate(-50%,0%);
}
#content .product-set .bottom-slider ul{
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: start;
  height: -webkit-fill-available;
  margin: 0;
  padding: 0;
  padding-inline: 30px;
  gap: 40px;
  overflow-x: auto;
}
#content .product-set .bottom-slider ul li a{
  display: inline-block;
}
#content .product-set .bottom-slider ul li a{
  display: inline-block;
}
#content .product-set .bottom-slider ul li a img{
  width: 245px;
  height: auto;
}
#content .product-set .bottom-slider ul li a.pink-hover{
  -webkit-tap-highlight-color: #ffc9dd80 !important;
}
#content .product-set .bottom-slider ul li a.blue-hover{
  -webkit-tap-highlight-color: #C9EDFF80 !important;
}
#content .product-set .bottom-slider ul li a.black-hover{
  -webkit-tap-highlight-color: #DFDFDF80 !important;
}

#content .product-set .bottom-slider ul li a:focus-visible,
#content .product-set .bottom-slider ul li a:focus,
#content .product-set .bottom-slider ul li a:active,
#content .product-set .bottom-slider ul li a:hover{
  outline: none;
}
#content .product-set .bottom-slider ul li a.pink-hover:focus-visible,
#content .product-set .bottom-slider ul li a.pink-hover:focus,
#content .product-set .bottom-slider ul li a.pink-hover:active,
#content .product-set .bottom-slider ul li a.pink-hover:hover{
  background: #ffc9dd80 !important;
}
#content .product-set .bottom-slider ul li a.blue-hover:focus-visible,
#content .product-set .bottom-slider ul li a.blue-hover:focus,
#content .product-set .bottom-slider ul li a.blue-hover:active,
#content .product-set .bottom-slider ul li a.blue-hover:hover{
  background: #C9EDFF80 !important;
}
#content .product-set .bottom-slider ul li a.black-hover:focus-visible,
#content .product-set .bottom-slider ul li a.black-hover:focus,
#content .product-set .bottom-slider ul li a.black-hover:active,
#content .product-set .bottom-slider ul li a.black-hover:hover{
  background: #DFDFDF80 !important;
}

@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;
  }
}
