/* General */

html {
  box-sizing: border-box;
  font-size: 62.5%;
  /** Reset para REMS - 62.5% = 10px de 16px **/
}


body
{
    font-family:"singulier-regular", Helvetica, Arial, sans-serif;
    color: var(--bs-dark);
}

*{
  padding: 0;
  margin: 0;
}

@font-face
{
    font-family: 'singulier-regular';
    font-style: normal;
    src:url("../fonts/singulier-regular.ttf");
}

@font-face
{
    font-family: 'singulier-bold';
    font-style: normal;
    font-weight: bolder;
    src:url("../fonts/singulier-bold.ttf");
}


/* Texto */

h1 {
    font-size: 3.5rem !important;
}
h2 {
    font-size: 3.3rem !important;
}
h3 {
    font-size: 3.1rem !important;
}
h4 {
    font-size: 2.6rem !important;
}

h5{
    font-size: 2.1rem !important;
}

h6{
    font-size: 1.5rem !important;
}

p{

  font-size: 1.5rem !important;
  font-family: 'singulier-regular' !important;
  margin-bottom: 0;
}
a{
  text-decoration:none;
  color: black;
  cursor:pointer;
}

a:hover{
  color: white;
}

.mega-text{
  font-size: 5rem !important;
}

.extra-text{
  font-size: 4rem !important;
}

.sub-text{
  font-size: 2.5rem !important;
}

.c-black{
  color: black;
}


.c-black:hover{
  color: black;
}

.c-white{
  color: white;
}


.b-white{
  background-color: white;
}

.b-blue{
  background-color: #203864;
}

.white-opacity{
  margin-top: -85px;
  background-color: rgba(255,255,255,0.5);
  padding: 3rem 0;
}

.b-black{
  background-color: black;
}

.b-blue{
  background-color: #203864;
}

.mayus{
  text-transform: uppercase;
}

.letter-cap{
  text-transform: capitalize;
}


.font-bold{
  font-family: "singulier-bold", Helvetica, Arial, sans-serif;
}

.shadow-letter{
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.mini-width{
  width: 30%;
}

.half-width{
  width: 50%;
}

.flex{
display: flex;
}

.pos-relative{
  position: relative;
}

.overflow{
  overflow: hidden;
}

.f-height{
  height: 100%;
}

hr{
    border:solid 2px #fffFFF;
    width: 50%;
}


/* Video */

#video{
  height: 70vh;
}

/* logo */

.logo{
  width: 60rem;
}

/* multistep */

.hidden {
  display: none;
}

.display{
  display: block;
}

/* legales */

.legales{
  margin: 2rem auto;
  border-radius: 1px;
  text-decoration: underline !important;
}

.legal-mini{
  margin: 2rem auto;
  border-radius: 1px;
  font-size:1.3rem !important;
}

/* Botones */

.btn-prm{
  text-decoration: none;
  background-color:black;
  color: white;
  text-transform: uppercase;
  font-size: 1.8rem;
  padding: 1rem 5rem;
  width: 20rem;
  border: 1px solid white;
  border-radius: .2rem;
  transition: .3s ease;
}

.btn-prm:hover{
  color:  black;
  background-color: white;
  border: 1px solid black;
}

.btn-snd{
  text-decoration: none;
  color: white;
  text-transform: capitalize;
  font-size:2.8rem;
  padding: 1rem 5rem;
  margin: 2rem 0rem;
  border: 1px solid white;
  border-radius: .2rem;
  transition: .3s ease;
}

.btn-snd:hover{
  color:  black;
  background-color: white;
  border: 1px solid black;
}

.block{
  border: 1px solid #203864;
  padding: 2rem 10rem;
  color: #203864;
}

.block:hover{
  color: #203864;
}



/* banner */

/* secciones */

section{
  padding: 0;
  margin: 0;
}
.ysl-fondo{
  background-image: url('../img/fondo-ysl.png');
  background-color: rgba(255,255,255,0.6);
  background-blend-mode: lighten;
  background-size:contain;
  background-position: center;
  background-repeat: no-repeat;
  height: 100%;
}

.section-extra{
  height: 100vh;
}

/* form */

label{
  cursor: pointer;
}

.input-img {
  width: 20rem;
  height: 20rem;
}

form input[type="email"], form input[type=text],form input[type="date"]
{
  text-transform: capitalize;
  font-size: 2rem;
  border: 2px solid black;
  border-radius: 0;
}

form input[type=text]{
  padding: 1rem 2rem;
  margin: 2rem 0rem;
}

form input[type=date]{
  padding: 1rem 2rem;
  margin: 2rem 0rem;

}

form input[type="email"]{
  padding: 1rem 2rem;
  margin: 2rem 0rem;
}

form input[type="checkbox"]{
  -webkit-appearance: none;
  background-color: white;
  border: 1px solid black;
  border-radius: 2px;
  appearance: none;
  height: 2rem;
  width: 2rem;
  transition: .3s ease-in-out;
}

form input[type="checkbox"]:checked{
  border: 1px solid black;
  border-radius: 5px;
  background-color:black;
}

form input[type="radio"]{
  -webkit-appearance: none;
  left: 165px;
  top: 15px;
  background-color: white;
  border: 2px solid black;
  border-radius: 10px;
  appearance: none;
  height: 1.5rem;
  width: 1.5rem;
}

form input[type="radio"]:checked{
  border: 1px solid white;
  background-color: black;
}

.retail img{
  height: fit-content;
}


.retail-special img{

  height: fit-content;
}


/* animate */

  .fade {
    visibility: hidden; /* Ocultar inicialmente */
  }
  .fade-visible {
    visibility: visible; /* Mostrar cuando la animación se desencadena */
    animation: fade-in-left 2s ease-in-out forwards; /* Añadir animación */
  }

  @keyframes fade-in-left {
    from {
      opacity: 0;
      transform: translateX(-20px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

/* footer */


.rrss img{
  width: 5rem;
  transition: .3s ease;
  padding: 0.5rem;
  background-color: black;

}

.rrss img:hover{
  transform: scale(1.2, 1.2);
}

/* Responsive */

@media (max-width: 1000px){

  .white-opacity{
    margin-top: -50px;
    padding: 2rem 0;
  }

  .extra-text{
    font-size: 2rem !important;
  }

  .sub-text{
    font-size: 1.5rem !important;
  }


}


@media (max-width: 992px){

  h1 {
      font-size: 3rem !important;
  }
  h2 {
      font-size: 2.8rem !important;
  }
  h3 {
      font-size: 2.3rem !important;
  }
  h4 {
      font-size: 1.8rem !important;
  }


  p{

    font-size: 1rem !important;
  }

  .white-opacity{
    margin-top: -50px;
    padding: 2rem 0;
  }

  .extra-text{
    font-size: 2.5rem !important;
  }

  .sub-text{
    font-size: 1.5rem !important;
  }

  .hidden {
    display: block;
  }

  .display{
    display: none;
  }

}

@media (max-width: 720px){

  .input-img {
    width: 10rem;
    height: 10rem;
  }

  form input[type="radio"]{
    left: 70px;
    top: 15px;
  }


  p{
    font-size: 1.2rem !important;
    margin-bottom: 0;
  }


    .mega-text{
      font-size: 3rem !important;
    }

    .white-opacity{
      margin-top: 0;
      background-color: #203864;
      padding: 1.5rem 0;
    }

}

@media (max-width: 554px){


  h1 {
      font-size: 2rem !important;
  }

  h2{
    font-size: 1.8rem !important;
  }

  h3{
      font-size: 1.6rem !important;
  }

  h4 {
      font-size: 1.4rem !important;
  }

  h5 {
      font-size: 1.2rem !important;
  }

  h6 {
      font-size: 1rem !important;
  }

 .mega-text{
   font-size: 2.5rem !important;
      }

  .sub-text{
    font-size: 1.3rem !important;
  }

  .btn-snd{
    font-size:1.8rem;
  }

  form input[type="email"], form input[type=text],form input[type="date"]
  {
    font-size: 1.3rem;
  }

.f-height{
  height:70vh;
}

.retail img{
  height: 6rem;
}


.retail-special img{
  height: 10rem;
}



}

@media (max-width: 420px){
  .f-height{
    height:100%;
  }
}
