/* General */

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

:root {
    --pink: #f7caca;
    --pinky: #fc6675;
}

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

*{
  padding: 0;
  margin: 0;
}

@font-face
{
    font-family: 'miller';
    font-style: normal;
    src:url("../fonts/Miller.otf");
}


/* 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.8rem !important;
}

p{

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

a:hover{
  color: black;
}

.c-white{
  color: white;
}

.c-black{
  color: black;
}

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


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

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


.mayus{
  text-transform: uppercase;
}

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

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

.mini-width{
  width: 30%;
}

.half-width{
  width: 50%;
}

.flex{
display: flex;
}


/* Video */

#video{
  height: 70vh;
}

/* logo */

.logo{
  width: 30rem;
}

/* multistep */

.hidden {
  display: none;
}


/* legales */

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

/* Botones */

.btn-prm{
  text-decoration: none;
  background-color: var(--pinky);
  color: white;
  text-transform: capitalize;
  font-size: 1.8rem;
  padding: 1rem 5rem;
  border: 1px solid white;
  border-radius: .2rem;
  transition: .3s ease;
}

.btn-prm:hover{
  color:  var(--pinky);
  background-color: white;
  border: 1px solid white;
}


/* banner */

/* secciones */

.bg-lancome
{
  background: url('../img/lnc_landing.jpg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 160rem;
  padding: 20rem 40rem;
}

.block{
  height: 150rem;
}

.block-line{
  padding: 2rem 5rem;
  border: 2px solid black;
}

/* form */

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

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"]{

  background-color: white;
  border: 1px solid black;
  border-radius: 2px;
  appearance: none;
  -webkit-appearance: none;
  height: 2rem;
  width: 2rem;
}

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

form input[type="radio"]{

  background-color: white;
  border: 2px solid black;
  border-radius: 10px;
  appearance: none;
  -webkit-appearance: none;
  height: 2rem;
  width: 2rem;
}

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


form label img{
  width: 10rem;
  border-radius: 5px
}

.checkbox input[type="checkbox"]{

  background-color: var(--pinky);
  box-shadow: inset 0 0 2px ;
  border: 1px solid white;
  border-radius: 5px;
  appearance: none;
  -webkit-appearance: none;
  height: 2rem;
  width: 2rem;
}

.checkbox input[type="checkbox"]:checked{
  border: 1px solid white;
  background-color: white;
}

/* footer */


.icon img{
  width: 4rem;
  background-color: black;
  border-radius: 0.5rem;
  transition: .3s ease;
  margin:
}

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

/* Responsive */

@media (max-width: 1200px){


  .bg-lancome
  {
    padding: 50rem 20rem 30rem;
  }

  .block{
    height: 130rem;
  }

  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;
  }


}


@media (max-width: 992px){


  .bg-lancome
  {
    padding: 50rem 5rem 60rem;
  }

  .block{
    height: 100rem;
  }
}

@media (max-width: 720px){

  .banner{
    height:auto;
  }

  .text-end, .text-start{
    text-align: center !important;
  }

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

  .bg-lancome
  {
    padding: 20rem 5rem;
  }

}

@media (max-width: 554px){

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

  .logo{
    width: 20rem;
  }

  .section-footer{
    height: 30rem;
  }

  .half-width{
    width: 80%;
  }

  .btn-snd{
    font-size: 1rem;
    padding: 1rem 3rem;
  }

  .bg-lancome
  {
    padding: 30rem 5rem 20rem;
  }

}
