/* color palette from <https://github.com/vuejs/theme> */
:root {
  --mv-white: #ffffff;
  --mv-white-soft: #f8f8f8;
  --mv-white-mute: #f2f2f2;

  --mv-gray: #F2F2F0;
  --mv-strong-gray: #5e5e5ab2;

  --mv-black: #181818;
  --mv-black-soft: #222222;
  --mv-black-mute: #282828;

  --mv-light-purple: #D671D5;
  --mv-purple: #A471D6;
  --mv-light-green: #ace7e7;
  --mv-green: #71D5D6;
  --mv-light-brown: #d6a571;
  --mv-brown: #a18d6c;

  --mv-text-light-1: var(--mr-green);
  --mv-text-light-2: rgba(60, 60, 60, 0.66);
  --mv-text-dark-1: var(--mr-white);
  --mv-text-dark-2: rgba(235, 235, 235, 0.64);

  --header-height: 3.5rem;

  /*========== Font and typography ==========*/
  --body-font: 'PlusJakartaSans', sans-serif;
  --biggest-font-size: 2rem;
  --h1-font-size: 1.5rem;
  --h2-font-size: 1.25rem;
  --h3-font-size: 1rem;
  --normal-font-size: .938rem;
  --small-font-size: .813rem;
  --smaller-font-size: .75rem;

  /*========== Font weight ==========*/
  --font-medium: 500;
  --font-semi-bold: 600;
  --font-black: 900;

  /*========== Margenes Bottom ==========*/
  --mb-0-25: .25rem;
  --mb-0-5: .5rem;
  --mb-0-75: .75rem;
  --mb-1: 1rem;
  --mb-1-5: 1.5rem;
  --mb-2: 2rem;
  --mb-2-5: 2.5rem;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}

/* semantic color variables for this project */
:root {
  --color-background: var(--mv-white);
  --color-background-soft: var(--mv-white-soft);
  --color-background-mute: var(--mv-white-mute);

  --color-border: var(--mv-green);
  --color-border-hover: var(--mv-light-green);

  --color-heading: var(--mv-text-light-1);
  --color-text: var(--mv-text-light-1);

  --section-gap: 160px;
}

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

/*=============== HEADER ===============*/
.containerHead{
  max-width: 968px;
  margin-left: var(--mb-1-5);
  margin-right: var(--mb-1-5);
}
.header{
  width: 100%;
  background: var(--mv-white); 
  position: sticky;
  top: 0;
  z-index: var(--z-fixed);
}

.textBold{
  font-weight: bold;
  display: inline-block;
}

/*=============== NAV ===============*/
.nav{
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
  
.nav__logo{
  display: flex;
  align-items: center;
  column-gap: .5rem;
  font-weight: var(--font-medium);
}

span{
  display: block;
}

span .elVi{
	color: var(--mv-green)
}

.nav__logo-img{
  width: 3.25rem;
}
  
  .nav__link,
  .nav__logo,
  .nav__toggle,
  .nav__close{
    color: var(--title-color);
  }
  
  .nav__toggle i{
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--mv-black);
  }
  
  .button--ghost{
    border: 2px solid;
    background-color: transparent;
    border-radius: 3rem;
    padding: .75rem 1.5rem;
  }

  .button--ghost:hover{
    background: var(--mv-green);
    color: var(--mv-white);
  }

  .bx-user-circle{
    font-size: xx-large;
    cursor: pointer;
    color: var(--mv-black);
  }


  @media screen and (max-width: 767px){
    .nav__menu{
      position: fixed;
      width: 100%;
      background: var(--mv-white);
      top: -150%;
      left: 0;
      padding: 3.5rem 0;
      transition: .4s;
      z-index: var(--z-fixed);
      border-radius: 0 0 1.5rem 1.5rem;
      border: 1px solid var(--mv-green);
    }

  }
  
  .nav__img{
    width: 80px;
    position: absolute;
    top: 5%;
    left: 5%;
  }
  
  .nav__close{
    font-size: 1.8rem;
    position: absolute;
    top: .5rem;
    right: .7rem;
    cursor: pointer;
  }
  
  .nav__list{
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 1.5rem;
  }
  
  .nav__link{
    text-transform: uppercase;
    font-weight: var(--font-black);
    transition: .4s;
  }
  .nav__link:hover{
    color: var(--text-color);
  }
  
  /* Show menu */
  .show-menu{
    top: 0;
  }

  /* Change background header */
  .scroll-header{
    background: var(--mv-white);
  }
  
  /* Active link */
  .active-link{
    position: relative;
  }
  
  .active-link::before{
    content: '';
    position: absolute;
    bottom: -.75rem;
    left: 45%;
    width: 5px;
    height: 5px;
    background-color: var(--mv-green);
    border-radius: 50%;
  }
   /*===============  BREAKPOINTS ===============*/
  /* For small devices */
  @media screen and (max-width: 320px){

  }
  /* For medium devices */

  @media screen and (min-width: 767px){
    .nav{
      height: calc(var(--header-height) + 1.5rem);
    }
    .nav__img,
    .nav__close,
    .nav__toggle{
      display: none;
    }
    .nav__list{
      flex-direction: row;
      column-gap: 2rem;
    }
    .nav__link{
      text-transform: initial;
      font-weight: initial;
    }

  }
  @media only screen and (min-width: 767px) and (max-width: 850px) {
    .nav__logo span{
      display: none;
    }
  }
  /* For large devices */
  @media screen and (min-width: 992px){
    .containerHead {
        margin-left: auto;
        margin-right: auto;
    }
  }
  @media screen and (min-width: 1200px){
  }

/*=======================================================  HOME SECTION =============================================*/
/*=============== HOME ===============*/
.home{
  background: var(--mv-gray);
  background: url(../img/landing/headLanding/bannernavidad.avif);
  background-size: cover;
  /* background-position: center; */
  min-height: 60vh;
  /* filter: brightness(0.65); */
}
.home__overlay{
  min-height: 60vh;
  background: rgb(0,0,0,0.45);
}  

.home__content{
  display: flex;
  color: var(--mv-white);
  flex-direction: row;
  justify-content: center;
  align-items: center;
  min-height: 60vh;
  gap: 3rem;
}

.home__img{
  padding: 1rem;
  height: 400px;
  justify-self: center;
  filter: drop-shadow(5px 0px 6px gray);
  display: none;
}

.buttonColection{ 
  background-color: var(--mv-light-purple);
  color: var(--mv-white);
  font-size: var(--small-font-size);
  padding: .25rem .5rem;
  border-radius: .25rem;
  border: none;
}

  .buttonColection:hover{
    background: var(--mv-green);
  }

  .home__data{
    padding: 1rem;
  }
  
  .home__subtitle{
    font-size: var(--h2-font-size);
    text-transform: uppercase;
    margin-bottom: var(--mb-1);
  }
  
  .home__title{
    font-size: var(--biggest-font-size);
    font-weight: var(--font-black);
    line-height: 109%;
    margin-bottom: var(--mb-1);
  }
  
  .home__description{
    margin-bottom: var(--mb-1);
    font-size: 1.25rem;
  }
  
  .home__buttons{
    display: flex;
    justify-content: space-between;
  }
  
  /*===============  BREAKPOINTS ===============*/
  /* For small devices */
  @media screen and (max-width: 320px){

    .home__buttons{
      flex-direction: column;
      width: max-content;
      row-gap: 1rem;
    }
  }
  /* For medium devices */
  @media screen and (min-width: 576px){

  }
  @media screen and (min-width: 767px){
    .home__data{
      /* padding: 5rem 1rem; */
    }
    .home__content{
      /* padding: 2rem 0 1rem; */
      /* grid-template-columns: repeat(2, 1fr);
      gap: 4rem; */
    }
    .home__img{
      height: 300px;
      margin-bottom: -15px;
      display: block;
    }

  }
  /* For large devices */
  @media screen and (min-width: 992px){
    .container {
        margin-left: auto;
        margin-right: auto;
    }
    .home__content{
      /* padding-top: 9rem; */
      /* gap: 3rem; */
    }
    .home__img{
      height: 420px;
      margin-bottom: -15px;
    }

    .home__title{
      margin-bottom: var(--mb-1-5);
    }
    .home__description{
      margin-bottom: var(--mb-2-5);
      padding-right: 2rem;
    }
  }
  @media screen and (min-width: 1200px){
    .home__img{
      height: 420px;
      margin-bottom: -15px;
    }
  }

  /*=============== ofert ===============*/


i{
  font-size: xxx-large;
  color: var(--mv-green);
}
.ofert__container{
    padding-top: 1.5rem;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem 2rem;
  }

  .ofert__subtitle{
    text-align: center;
    font-size: var(--normal-font-size);
    color: var(--mv-strong-gray);
    margin-bottom: var(--mb-1);
  }
  
  .ofert__data{
    text-align: center;
  }

  .ofer__data.bxl-whatsapp{
    cursor: pointer;
  }
  
  .ofert__img{
    width: 120px;
    margin-bottom: var(--mb-0-75);
    transition: .3s;
  }
  
  .ofert__title{
    font-family: 'PlusJakartaSansBold';
    margin-bottom: var(--mb-0-25);
  }
  
  .ofert__data:hover .ofert__img{
    transform: translateY(-.5rem);
  }

 /*===============  BREAKPOINTS ===============*/
  /* For small devices */
  @media screen and (max-width: 320px){
    .ofert__container
    {
      grid-template-columns: .8fr;
      justify-content: center;
    }
  }

  @media screen and (max-width: 766px){
    .ofert_data_extra{
      grid-column-start: 1;
      grid-column-end: 3;
    }
  }
  /* For medium devices */
  @media screen and (min-width: 767px){
    .ofert__container{
      grid-template-columns: repeat(3, 200px);
      justify-content: center;
    }
  
  }
  /* For large devices */
  @media screen and (min-width: 992px){

    .container {
      margin-left: auto;
      margin-right: auto;
    }
    .ofert__container{
      column-gap: 8rem;
    }
    .ofert__img{
      width: 200px;
    }
  }
  
  @media screen and (min-width: 1200px){

  }

  /* <!--Productos--> */

.products__container{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}
  
.new__content__product{
  position: relative;
  background: var(--mv-gray);
  width: 242px;
  height: 330px;
  padding: 2rem 0 1.5rem 0;
  border-radius: .75rem;
  text-align: center;
  overflow: hidden;
}
  
.new__tag__product{
  position: absolute;
  top: 8%;
  left: 8%;
  background-color: var(--mv-light-purple);
  color: var(--mv-white);
  font-size: var(--small-font-size);
  padding: .25rem .5rem;
  border-radius: .25rem;
  z-index: 1;
}
  
.new__img__product {
  display: inline-block;
  width: 190px;
  margin-bottom: var(--mb-0-5);
  transition: .3s;
  mix-blend-mode: darken;
  aspect-ratio: 3/3;
  object-fit: contain;
}

.new__title__product {
  font-size: var(--normal-font-size);
  font-weight: var(--font-medium);
  margin-top: 0.7rem;
}

.new__subtitle__product{
  display: block;
  font-size: var(--small-font-size);
  margin-bottom: var(--mb-0-5);
}

.new__prices__product {
  display: inline-flex;
  align-items: center;
  column-gap: .5rem;
}

.new__price__product {
  font-weight: var(--font-medium);
  color: var(--title-color);
}

.new__discount__product {
  color: var(--mv-light-purple);
  font-size: var(--smaller-font-size);
  text-decoration: line-through;
  font-weight: var(--font-medium);
}

.new__button__product {
  display: inline-flex;
  padding: .5rem;
  border-radius: .25rem .25rem .75rem .25rem;
  position: absolute;
  bottom: 0;
  right: -3rem;

  background: var(--mv-light-purple);
  color: var(--mv-white);
  font-weight: var(--font-medium);
  transition: .3s;
  border: none;
  transition: all .2s ease-in-out; 
}

.new__icon__product {
  font-size: 1.25rem;
  color: var(--mv-white);
}

.new__content__product:hover .new__img__product{
  /* transform: translateY(-.5rem); */
  transform: scale(1.2);
  z-index: 2;
}

.new__content__product:hover .new__button__product{
  right: 0;
}

.subSectionNew{
  margin-top: 4.5rem;   
  max-height: 100vh;
  display: inline-flex;
  width: 100vw;
}

.imgSubSection{
  width: 40%;
  min-height: 40vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background: url(../img/landing/new/collagenavidad.png);
  background-position: center;
  background-size: contain;
}

.imgSubSection video{
  flex-grow: 1;
  max-height: 40vh;
}

.contentSubsection{
  width: 60%;
  background-color: var(--mv-white-mute);
  height: auto;
  background: url(../img/landing/new/sudaderafullprintnavidad.jpeg);
  background-size: cover;
  position: relative;
}
.contentSubsectionOverlay{
  min-height: auto;
  background: rgb(0,0,0,0.5);
}

.newSubsectionInfo{
  color: var(--mv-white-soft);
  min-height: 40vh;
  padding: 2rem;
  border-radius: 0.75rem;
  text-align: center;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.newSubsectionInfo p{
  margin-bottom: 1rem;
}

.newSubsectionPlayVideo{
  position: absolute;
  bottom: 8%;
  right: 8%;
  cursor: pointer;
  color: var(--mv-white);
  font-size: var(--small-font-size);
  padding: .25rem .5rem;
  border-radius: .25rem;
  z-index: 1;
  display: none;
}
.newSubsectionPlayVideo i{
  color: var(--mv-white);
}
.newSubsectionPlayVideo i:hover{
  color: var(--mv-green);
}

@media screen and (max-width: 500px) {
  .new__content__product{
    width: 200px;
  }
}

@media screen and (max-width: 652px) {
  .contentSubsection{
    flex-grow: 1;
  }
  .newSubsectionPlayVideo{
    display: block;
  }
  .imgSubSection{
    width: 1px;
  }
}



  @media screen and (min-width: 992px) {

    .products__container {
        margin-left: auto;
        margin-right: auto;
        padding: 0;
    }
    .new__content__product{
      width: 310px;
      height: 410px;
      border-radius: 1rem;
      padding: 2rem 0;
    }
    .new__img__product{
      width: 250px;
    }
    .new__img__product,
    .new__subtitle__product {
      margin-bottom: var(--mb-1);
    }
    .new__title__product {
      font-size: var(--h3-font-size);
    }

  }


/*=============== NEW ARRIVALS ===============*/

  .products__container_destacados{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
    color: var(--mv-white);
    max-width: 968px;
    padding-left: var(--mb-1-5);
    padding-right: var(--mb-1-5);
    margin: auto;
  }

  .new__container{
      padding-top: 1rem;
    } 
  
  .new__img{
    width: 120px;
    margin-bottom: var(--mb-0-5);
    transition: .3s;
  }
  
  .new__content{
    position: relative;
    /* background: var(--mv-gray); */
    width: 100%;
    height: 250px;;
    /* padding: 2rem 0 1.5rem 0; */
    border-radius: .75rem;
    text-align: center;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .contentImage1{
    background: url('../img/landing/basics/sombreros.jpg');
    background-repeat: no-repeat;
    background-size: cover;
  }

  .contentImage2{
    background: url('../img/landing/basics/barbiejacket.jpeg');
    background-repeat: no-repeat;
    background-size: cover;
  }

  .basicsOverlay{
    background: rgb(0,0,0,0.45);
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;  
  }
  
  .new__tag{ 
    background-color: var(--mv-light-purple);
    color: var(--mv-white);
    font-size: var(--small-font-size);
    padding: .25rem .5rem;
    border-radius: .25rem;
    border: none;
  }

  .new__tag:hover{
    background: var(--mv-green);
  }
  
  .new__title{
    font-size: var(--normal-font-size);
    font-weight: var(--font-medium);
  }
  
  .new__subtitle{
    display: block;
    font-size: var(--h1-font-size);
    font-weight: bold;
    margin-bottom: var(--mb-0-5);
  }
  
  .new__prices{
    display: inline-flex;
    align-items: center;
    column-gap: .5rem;
  }
  
  .new__price{
    font-weight: var(--font-medium);
    color: var(--title-color);
  }
  
  .new__destacados{
    color: var(--mv-light-purple);
    font-size: var(--smaller-font-size);
    text-decoration: line-through;
    font-weight: var(--font-medium);
  }
  /* .button{
    display: inline-block;
    background: var(--mv-light-purple);
    color: var(--mv-white);
    padding: 1rem 1.75rem;
    border-radius: 0.5rem;
    font-weight: var(--font-medium);
    transition: .3s;
  } */
  .new__button{
    display: inline-flex;
    padding: .5rem;
    border-radius: .25rem .25rem .75rem .25rem;
    position: absolute;
    bottom: 0;
    right: -3rem;
  }
  
  .new__icon{
    font-size: 1.25rem;
  }
  
  .new__content:hover .new__img{
    transform: translateY(-.5rem);
  }
  
  .new__content:hover .new__button{
    right: 0;
  }

  @media screen and (max-width: 576px){
    .newSubsectionInfo p {
      font-size: var(--mb-0-75)
    }
    .new__subtitle {
      font-size: 1.1rem;
    }

    
  }

  @media screen and (min-width: 992px) {

    .container {
        margin-left: auto;
        margin-right: auto;
    }
    .new__content{
      width: 49%;
      border-radius: 1rem;
      /* padding: 2rem 0; */
    }
    .new__img{
      width: 150px;
    }
    .new__img,
    .new__subtitle{
      margin-bottom: var(--mb-1);
    }
    .new__title{
      font-size: var(--h2-font-size);
    }
  }

/*=============== DISCOUNT ===============*/
  .discount__container{
    background: var(--mv-gray);
    border-radius: 1rem;
    background: url('../img/landing/temporadaActual/sudaderashoddiesnoopy.jpeg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    min-height: 50vh;
    height: auto;
    position: relative;
  }
  
  .discount__data{
    border-radius: 1rem;
    background: rgb(0,0,0,0.4);
    min-height: 50vh;
    height: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;  
    color: var(--mv-white-soft);
  }

  .discount__data a{
    margin-top: 1rem;
  }
  
  .discount__title{
    font-size: var(--h2-font-size);
    margin-bottom: var(--mb-2);
    padding: 10px;
    text-align: center;
  }

  .discount__title .new__subtitle{
    font-size: var(--h1-font-size);
  }

  
  .discount__img{
    width: 200px;
    justify-self: center;
  }

@media screen and (min-width: 767px){
    .discount__container{
        margin: auto;
        max-width: 968px;
        border-radius: 3rem;
        min-height: 40vh;
        height: auto;
    }
    .discount__img{
        width: 250px;
        order: -1;
    }
    .discount__data{
      border-radius: 3rem;
    }

    .discount__title{
      font-size: 2rem;

      & span{
        font-size: 1.5rem;
      }

    }
}


@media screen and (min-width: 992px){
  .container {
    margin-left: auto;
    margin-right: auto;
  }

  .discount__container {
    column-gap: 7rem;
  }
}

/*=============== FOOTER ===============*/
.footer{
  position: relative;
  overflow: hidden;
}
.footer__logo span{
color: var(--mv-green)
}
.footer__img-one,
.footer__img-two{
  position: absolute;
  transition: .3s;
}

.footer__img-one{
  width: 100px;
  top: 8rem;
  right: -2rem;
}

.footer__img-two{
  width: 150px;
  bottom: 4rem;
  right: 4rem;
}

.footer__img-one:hover,
.footer__img-two:hover{
  transform: translateY(-.5rem);
}

.footer__container{
  row-gap: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-top: 1px solid var(--mv-gray);
  padding-top: 1rem;
}

.footer__logo{
  display: flex;
  align-items: center;
  column-gap: .5rem;
  margin-bottom: var(--mb-1);
  font-weight: var(--font-medium);
  color: var(--title-color);
}

.footer__logo-img{
  width: 20px;
}

.footer__description{
  margin-bottom: var(--mb-2-5);
}

.footer__social{
  display: flex;
  column-gap: .75rem;
}

.footer__social-link{
  display: inline-flex;
  background: var(--mv-green);
  padding: .25rem;
  border-radius: .25rem;
}

.footer__social-link i{
  color: var(--mv-white);
  font-size: 1.5rem;
}

.footer__social-link:hover{
  background: var(--mv-light-purple);
}

.footer__title{
  font-size: var(--h3-font-size);
  margin-bottom: var(--mb-1);
}

.footer__links{
  display: grid;
  row-gap: .35rem;
}

.footer__link{
  font-size: var(--small-font-size);
  color: var(--text-color);
  transition: .3s;
}

.footer__link:hover{
  color: var(--title-color);
}

.footer__copy{
  display: block;
  text-align: center;
  font-size: var(--smaller-font-size);
  margin-top: 0.5rem;
}


@media screen and (min-width: 767px){
.footer__container{
    grid-template-columns: repeat(4, 1fr);
    justify-items: center;
    column-gap: 1rem;
  }
  .footer__img-two{
    right: initial;
    bottom: 0;
    left: 15%;
  }
}

/* For large devices */
@media screen and (min-width: 992px){
  .container {
    margin-left: auto;
    margin-right: auto;
  }
  .footer__copy{
    margin-top: 1rem;
  }
}

@media screen and (min-width: 1200px){
  .footer__img-one{
    width: 120px;
  }
  .footer__img-two{
    width: 180px;
    top: 30%;
    left: -3%;
  }
  .footer__img-one{
    top: 6rem;
  }
}

/*=============== SCROLL UP ===============*/
.scrollup{
  position: fixed;
  background: var(--mv-light-purple);
  right: 1rem;
  bottom: -20%;
  display: inline-flex;
  padding: .3rem;
  border-radius: .25rem;
  z-index: var(--z-tooltip);
  opacity: .8;
  transition: .4s; 
  animation: floating 2s ease-in-out infinite;
}

.scrollup__icon{
  font-size: 1.25rem;
  color: var(--mv-white);
}

.scrollup:hover{
  background: var(--mv-purple);
  opacity: 1;
}

/* Show Scroll Up*/
.show-scroll{
  bottom: 3rem;
}

/* float whats app */
.float{
	position:fixed;
	width:60px;
	height:60px;
	bottom:40px;
	right:55px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
  font-size:30px;
	box-shadow: 2px 2px 3px #999;
  z-index:100;
}

.my-float{
	margin:auto;
  line-height: 60px;
  color: white;
}


@media screen and (max-width: 767px){
  .float{
    display: none;
  }
}

@media screen and (min-width: 767px){
  .socialNavigation{
    visibility:hidden;
  }
}

/* //social media */
.socialNavigation {
  position: sticky;
  bottom: 3%;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 5px;
}

.menuToggle {
  position: relative;
  width: 50px;
  height: 50px;
  background-color: var(--mv-light-purple);
  border-radius: 70px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
}

.menuToggle::before {
  content: '+';
  position: absolute;
  font-size: 2.8em;
  font-weight: 550;
  color: var(--mv-white-mute);
  transition: 1.5s;
  bottom: 0%;
}

.menuToggle.active::before {
  transform: rotate(315deg);
  left: 15%;
}

.menu {
  position: absolute;
  width: 30px;
  height: 30px;
  background: #fff;
  border-radius: 70px;
  z-index: -1;
  transition: transform 0.5s, width 0.5s, height 0.5s;
  transition-delay: 1s, 0.5s, 0.5s;
  transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
}

.menu ul{
  padding: 0;
}

.menuToggle.active~.menu {
  width: 200px;
  height: 50px;
    z-index: 1;
  transform: translateY(-70px);
  transition-delay: 0s, 0.5s, 0.5s;
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
}

.menu::before {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  background: #fff;
  left: calc(50% - 8px);
  bottom: 4px;
  transform: rotate(45deg);
  border-radius: 2px;
  transition: 0.5s;
}

.menuToggle.active~.menu::before {
  transition-delay: 0.5s;
  bottom: -6px;
}

.menu ul {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  gap: 30px;
}

.menu ul li {
  list-style: none;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-30px);
  transition: 0.25s;
  transition-delay: calc(0s + var(--i));
}

.menuToggle.active~.menu ul li {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
  transition-delay: calc(0.75s + var(--i));
}

.menu ul li a {
  display: block;
  font-size: 2.2em;
}


/* Tooltip */
[data-tooltip] {
  position: relative;
  cursor: pointer;
}
[data-tooltip]:before,
[data-tooltip]:after {
  line-height: 1;
  font-size: .9em;
  pointer-events: none;
  position: absolute;
  box-sizing: border-box;
  display: none;
  opacity: 0;
}
[data-tooltip]:before {
  content: "";
  border: 5px solid transparent;
  z-index: 100;
}
[data-tooltip]:after {
  content: attr(data-tooltip);
  text-align: center;
  min-width: 3em;
  max-width: 21em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 9px 14px;
  border-radius: 18px;
  background: #71D5D6;
  color: #FFFFFF;
  z-index: 99;
}
[data-tooltip]:hover:before,
[data-tooltip]:hover:after {
  display: block;
  opacity: 1;
}
[data-tooltip]:not([data-flow])::before,
[data-tooltip][data-flow="top"]::before {
  bottom: 100%;
  border-bottom-width: 0;
  border-top-color: #71D5D6;
}
[data-tooltip]:not([data-flow])::after,
[data-tooltip][data-flow="top"]::after {
  bottom: calc(100% + 5px);
}
[data-tooltip]:not([data-flow])::before, [tooltip]:not([data-flow])::after,
[data-tooltip][data-flow="top"]::before,
[data-tooltip][data-flow="top"]::after {
  left: 50%;
  -webkit-transform: translate(-50%, -4px);
          transform: translate(-50%, -4px);
}
[data-tooltip][data-flow="bottom"]::before {
  top: 100%;
  border-top-width: 0;
  border-bottom-color: #71D5D6;
}
[data-tooltip][data-flow="bottom"]::after {
  top: calc(100% + 5px);
}
[data-tooltip][data-flow="bottom"]::before, [data-tooltip][data-flow="bottom"]::after {
  left: 50%;
  -webkit-transform: translate(-50%, 8px);
          transform: translate(-50%, 8px);
}
[data-tooltip][data-flow="left"]::before {
  top: 50%;
  border-right-width: 0;
  border-left-color: #71D5D6;
  left: calc(0em - 5px);
  -webkit-transform: translate(-8px, -50%);
          transform: translate(-8px, -50%);
}
[data-tooltip][data-flow="left"]::after {
  top: 50%;
  right: calc(100% + 5px);
  -webkit-transform: translate(-8px, -50%);
          transform: translate(-8px, -50%);
}
[data-tooltip][data-flow="right"]::before {
  top: 50%;
  border-left-width: 0;
  border-right-color: #71D5D6;
  right: calc(0em - 5px);
  -webkit-transform: translate(8px, -50%);
          transform: translate(8px, -50%);
}
[data-tooltip][data-flow="right"]::after {
  top: 50%;
  left: calc(100% + 5px);
  -webkit-transform: translate(8px, -50%);
          transform: translate(8px, -50%);
}
[data-tooltip=""]::after, [data-tooltip=""]::before {
  display: none !important;
}