@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
}

body {
  background-color: #a788ac;
}

header {
  width: 100%;
  height: 30rem;
}

.contenedor__icono {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  opacity: 0.8;
  height: 4.46rem;
  background-color: #111010;
}

.icono {
  width: 10rem;
  margin: auto;
}

.contenedor__nav {
  background-image: url("img/chico.jpg");
  background-repeat: no-repeat;
  /* Do not repeat the image */
  background-size: cover;
  /* Resize the background image to cover the entire container */
  width: 100%;
  height: 30rem;
  margin-bottom: 0.2%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.subcontenedor__nav {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

nav {
  height: 3rem;
  border-radius: 3px;
  display: block;
}

.lista__navegacion {
  list-style: none;
  background-color: #111010;
  opacity: 0.8;
  font-size: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: 100%;
  height: 4.46rem;
}

.nav__li {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 20%;
  margin: 2%;
  position: relative;
  font-size: 1.5rem;
  font-family: FuturaStd-Bold, Arial, Helvetica, sans-serif;
}

.nav__li__a {
  text-decoration: none;
  color: #fdf9f9;
  margin: auto;
}

.contenedor__itemSeguros {
  margin: 1px;
  padding: 3px;
  background-color: ivory;
  opacity: 1;
  text-align: center;
  z-index: 1;
  border-radius: 8px;
  position: absolute;
  top: 35px;
  margin-left: 25%;
}

.itemSeguros {
  background-color: white;
  color: black;
  opacity: 1;
  margin: 5px;
  padding: 1px;
  border-radius: 8px;
}

.itemSeguros a {
  text-decoration: none;
  color: black;
  opacity: 1;
}

.contenedor__titulo {
  font-family: FuturaStd-Bold, Arial, Helvetica, sans-serif;
  font-size: 2rem;
  color: white;
  background-color: rgba(29, 4, 4, 0.14);
  border-radius: 5px;
  border: white solid 2px;
  width: 95%;
  text-align: center;
  float: bottom center;
  bottom: 30%;
  text-transform: uppercase;
  margin-right: 2.5%;
  margin-left: 2.5%;
  margin-top: 14%;
  margin-bottom: 4%;
  padding: 3%;
}

.título1 {
  text-align: center;
  margin: 4rem;
  font-family: FuturaStd-Bold, Arial, Helvetica, sans-serif;
  font-weight: 300;
  font-size: 1.7rem;
  text-transform: uppercase;
}

#subtitulo1::before {
  content: " 1 ";
  color: #005a8e;
  font-weight: 600;
}

#subtitulo2::before {
  content: " 2 ";
  color: #005a8e;
  font-weight: 600;
}

#subtitulo3::before {
  content: " 3 ";
  color: #005a8e;
  font-weight: 600;
}

.títuloSecundario {
  text-align: center;
  margin: 7% auto;
  font-family: FuturaStd-Bold, Arial, Helvetica, sans-serif;
  font-weight: 300;
  font-size: 1.1rem;
  text-transform: uppercase;
}

.label__form, .label__form1, select, .input__form, .input__form1 {
  margin: 2%;
  padding: 1%;
  text-align: center;
  font-family: FuturaStd-Bold, Arial, Helvetica, sans-serif;
  line-height: 1.2;
  font-weight: 300;
  font-size: 100%;
  width: 90%;
}

.label__form1.label-required::before {
  content: " * ";
  color: #cc1f00;
}

.label__form::before {
  content: " * ";
  color: #cc1f00;
}

select {
  margin: 4.5%;
  text-align: center;
}

#botonCotizar, #botonSiguiente, #botonEnviar {
  margin: 10% auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.1rem;
  border-radius: 8px;
  border: solid 1.5px black;
}

.contenedor__form {
  margin: 1%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  width: 100%;
}

@-webkit-keyframes FadeInDown {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes FadeInDown {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@-webkit-keyframes FromBottomTop {
  0% {
    -webkit-transform: translateY(10%);
            transform: translateY(10%);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes FromBottomTop {
  0% {
    -webkit-transform: translateY(10%);
            transform: translateY(10%);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

form {
  -webkit-animation: FadeInDown 5s;
          animation: FadeInDown 5s;
  -webkit-animation: FromBottomTop 2s;
          animation: FromBottomTop 2s;
  width: 40%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 2% auto;
  border: 1px solid #e8ddda;
  border-radius: 8px;
  -webkit-box-shadow: 0px 3px 15px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 3px 15px rgba(0, 0, 0, 0.2);
  padding: 5%;
}

.contenedor__seguros, .contenedor__seguros__checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.subcontenedor__seguros {
  -webkit-animation: FadeInDown 5s;
          animation: FadeInDown 5s;
  -webkit-animation: FromBottomTop 2s;
          animation: FromBottomTop 2s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 10rem;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  margin: 5%;
  border: 1px solid #e8ddda;
  border-radius: 8px;
  -webkit-box-shadow: 0px 3px 15px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 3px 15px rgba(0, 0, 0, 0.2);
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.subcontenedor__seguros:hover {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.subcontenedor__seguros {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 20%;
}

.subcontenedor__seguros__titulo {
  padding: 10%;
  height: 40%;
  text-align: center;
  color: white;
  background-color: #5f5ce4;
  border-radius: 8px 8px 0 0;
  width: 100%;
}

.subcontenedor__seguros__lista {
  padding-top: 5%;
}

.seguro__li {
  list-style-type: none;
  color: green;
  font-weight: 500;
  margin: 3%;
  line-height: 30px;
  text-align: left;
  padding: 2%;
}

.seguro__li__opcional {
  list-style-type: none;
  color: #a00d0d;
  font-weight: 500;
  margin: 3%;
  line-height: 30px;
  text-align: left;
  padding: 2%;
  text-decoration: line-through;
}

.seguro__li::before {
  content: "🗸";
}

.form-check {
  font-size: 1.5rem;
  font-weight: 600;
}

.contenedor__boton {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}

.contenedor1 {
  width: 70%;
  margin-left: 15%;
  margin-right: 15%;
  margin-bottom: 2%;
  border: 1px solid #e8ddda;
  border-radius: 8px;
  -webkit-box-shadow: 0px 3px 15px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 3px 15px rgba(0, 0, 0, 0.2);
  padding: 1%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.modal {
  display: none;
  /* Hidden by default */
  position: fixed;
  /* Stay in place */
  z-index: 10;
  /* Sit on top */
  left: 0;
  top: 0;
  width: 100%;
  /* Full width */
  height: 100%;
  /* Full height */
  overflow: auto;
  /* Enable scroll if needed */
  background-color: black;
  /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4);
  /* Black w/ opacity */
}

.modal2 {
  display: none;
  /* Hidden by default */
  position: fixed;
  /* Stay in place */
  z-index: 11;
  /* Sit on top */
  left: 0;
  top: 0;
  width: 100%;
  /* Full width */
  height: 100%;
  /* Full height */
  overflow: auto;
  /* Enable scroll if needed */
  background-color: black;
  /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4);
  /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content {
  background-color: #fefefe;
  margin: 15% auto;
  /* 15% from the top and centered */
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  /* Could be more or less, depending on screen size */
  font-size: 15px;
  line-height: 1.5;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  padding-bottom: 5%;
}

/* The Close Button */
.close, .close2 {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  -ms-flex-item-align: end;
      align-self: flex-end;
  margin-bottom: 3%;
}

.close:hover, .close2:hover,
.close:focus, .close2:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

#contactoMensaje {
  height: 8rem;
  text-align: left;
}

.input__form, .input__form1, #Género, #Estado-civil, #Uso, #Combustible, #Pago {
  border-radius: 8px;
  border: solid 1px grey;
}

footer {
  background: #226085;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  border-radius: 3px;
  padding-top: 5%;
}

footer .p__footer {
  text-align: center;
  font-family: FuturaStd-Bold, Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  color: white;
  margin-top: 5%;
}

footer .img__footer {
  width: 30%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  margin: auto;
}

footer .img__footer .img__footer--img {
  width: 3rem;
  margin: 20%;
}

.email__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: auto;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.label__footer {
  text-align: center;
  font-family: FuturaStd-Bold, Arial, Helvetica, sans-serif;
  font-weight: 300;
  font-size: 1rem;
  color: #cabfbf;
  margin-bottom: 1.8%;
}

.input__footer {
  border-radius: 5px;
  width: 20%;
  height: 2.5rem;
  margin: auto;
  margin-bottom: 5rem;
  font-size: 1rem;
  text-align: center;
}

.contenedor__textoFooter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-line-pack: center;
      align-content: center;
}

.textoFooter {
  font-weight: 600;
  font-size: 18px;
  text-align: center;
}

/*celular*/
@media only screen and (max-width: 400px) {
  .título1 {
    font-size: 1.7rem;
  }
  .contenedor__seguros, .contenedor__seguros__checkbox {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .subcontenedor__seguros, #formulario1, #formulario2, #formulario3 {
    width: 20rem;
    margin: 5% auto;
    opacity: 1;
    background-color: #fefefe;
  }
  .nav__li {
    width: 100%;
  }
  .nav__li__a {
    margin: 0% 0% 0% 55%;
  }
  .form-check {
    text-align: left;
    margin: 5% 15%;
    font-size: 1.5rem;
  }
  .contenedor__form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

/*tablet*/
@media only screen and (min-width: 401px) and (max-width: 960px) {
  .título1 {
    font-size: 1.7rem;
  }
  .contenedor__seguros, .contenedor__seguros__checkbox {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .subcontenedor__seguros, #formulario1, #formulario2, #formulario3 {
    width: 20rem;
    margin: 5% auto;
    opacity: 1;
  }
  .nav__li {
    width: 100%;
  }
  .nav__li__a {
    margin: 0% 0% 0% 55%;
  }
  .form-check {
    text-align: left;
    margin: 5% 15%;
    font-size: 1.5rem;
  }
  .contenedor__form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
/*# sourceMappingURL=style.css.map */