* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body, input {
  font-family: DMSans;
  font-size: 1.3rem;
}
@media only screen and (max-width: 768px) {
  body, input {
    font-size: 1.1rem;
  }
}
@media only screen and (max-width: 576px) {
  body, input {
    font-size: 1rem;
  }
}

h1 {
  font-size: 2.5rem;
  font-weight: 400;
}

h2, h3, h4 {
  font-size: 1.8rem;
  color: #d81e05;
}

input, textarea {
  outline: none;
  border: none;
  border-radius: 0;
  background-image: none;
  background-color: transparent;
  box-shadow: none;
}

button {
  background: none;
  color: inherit;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  outline: inherit;
}

a {
  color: inherit;
  text-decoration: none;
  font-style: italic;
}
a:hover {
  color: #d81e05;
}
a:active {
  text-decoration: underline;
}

ul li {
  list-style: none;
}

.text-bold {
  font-weight: 700;
}

.footer .legal, .footer .redes ul, .contacto, .beneficios, .banner .banner-wrapper {
  width: 90%;
  margin: auto;
  max-width: 1200px;
}

.navbar {
  width: 100%;
  position: relative;
  top: 0;
  background-color: #fff;
  z-index: 2;
}
.navbar .navbar-navigation {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  width: 100%;
  padding: 0.5rem 5%;
}
.navbar .navbar-navigation .navbar-logo {
  height: 1.5rem;
}
.navbar .navbar-navigation .navbar-logo-inter {
  height: 4rem;
}
@media only screen and (max-width: 576px) {
  .navbar .navbar-navigation .navbar-logo {
    height: 1rem;
  }
  .navbar .navbar-navigation .navbar-logo-inter {
    height: 3rem;
  }
}
@media only screen and (max-width: 370px) {
  .navbar .navbar-navigation .navbar-logo {
    height: 0.8rem;
  }
  .navbar .navbar-navigation .navbar-logo-inter {
    height: 2.5rem;
  }
}

.banner {
  background-color: #d81e05;
}
.banner .banner-wrapper {
  color: #fff;
  display: grid;
  gap: 2rem;
  align-items: center;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
  grid-template-areas: "text img";
}
.banner .banner-wrapper .banner-text {
  position: relative;
  grid-area: text;
  padding: 6rem 5% 3rem;
}
.banner .banner-wrapper .banner-text h1{
  font-size: 1.5rem;
}

.banner .banner-wrapper .banner-text p {
  margin-top: 1rem;
  font-size: 2.4rem;
}
.banner .banner-wrapper .banner-text p span{
  display: block;
}
.banner .banner-wrapper .banner-text .iconos {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
}
.banner .banner-wrapper .banner-text .iconos img {
  width: 60px;
}
.banner .banner-wrapper .banner-text::before {
  content: "";
  width: 60px;
  border-top: solid #fff 1px;
  position: absolute;
  top: 30px;
}
@media only screen and (max-width: 768px) {
  .banner .banner-wrapper .banner-text::before {
    top: 20px;
  }
}
.banner .banner-wrapper .banner-img {
  grid-area: img;
  margin-left: auto;
  width: 100%;
  border-top-left-radius: 40px;
  border-bottom-right-radius: 40px;
}
@media only screen and (max-width: 768px) {
  .banner .banner-wrapper {
    width: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .banner .banner-wrapper .banner-text, .banner .banner-wrapper .banner-img {
    width: 100%;
  }
  .banner .banner-wrapper .banner-text {
    padding: 2rem 5%;
  }
  .banner .banner-wrapper .banner-text .iconos {
    display: flex;
  }
  .banner .banner-wrapper .banner-img {
    border-top-left-radius: 0;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
  }
}

.beneficios {
  margin-top: 3rem;
  margin-bottom: 5rem;
}
.beneficios h2 {
  text-align: center;
  margin-bottom: 2rem;
}
.beneficios .beneficio {
  margin-bottom: 3rem;
}
.beneficios .beneficio h3 {
  font-weight: 700;
}
.beneficios .beneficio img {
  width: 7rem;
  transition: all 0.1s;
}
.beneficios .beneficio img:hover, .beneficios .beneficio img:focus {
  transform: scale(1.1);
}
.beneficios .beneficio img:active {
  transform: scale(0.9);
}
.beneficios .beneficio .color-red {
  color: #d81e05;
}
.beneficios .beneficio .color-gray {
  color: #777;
}
.beneficios .beneficio .detalles-beneficio {
  display: flex;
  align-items: center;
  max-width: 750px;
  margin: auto;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
}
.beneficios .beneficio .detalles-beneficio .detalles-beneficio-texto {
  color: #e46250;
}
.beneficios .beneficio + .beneficio {
  padding-top: 3rem;
  border-top: solid 1px #ddd;
}

.contacto h2 {
  text-align: center;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.contacto h4 {
  text-align: center;
  margin-top: 2rem;
  margin-bottom: 2rem;
  font-size: 1.3rem;
  font-weight: 400;
}

.contacto .contacto-form {
  display: flex;
  flex-direction: column;
  max-width: 600px;
  margin: auto;
  gap: 1.5rem;
}
.contacto .contacto-form div {
  position: relative;
}

.contacto .contacto-form div.respuestas {
  text-align: center;
}

.contacto .contacto-form div.respuesta {
  display: inline-flex;
  padding-right: 30px;;
}

.contacto .contacto-form div.respuesta:last-child {
  padding-right: 0px;;
}

.contacto .contacto-form div.respuesta input[type="radio"] {
  display: inline-block;
  margin-right: 0.3em;
  appearance: none;
  width: 15px;
  height: 15px;
  background-image: url("../imgs/checkbox.png");
  background-size: contain;
  border: none !important;
}

.contacto .contacto-form div.respuesta input[type="radio"]:checked {
  background-image: url("../imgs/checkbox-check.png");
}

.contacto .contacto-form div::before {
  content: "";
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 1.8rem;
  height: 1.8rem;
  display: inline-block;
  position: absolute;
  top: 7px;
  left: 10px;
  z-index: -1;
}
.contacto .contacto-form div#nombre::before {
  background-image: url("../imgs/icons/Formulario-icono-nombre_1.png");
}
.contacto .contacto-form div#telefono::before {
  background-image: url("../imgs/icons/Formulario-icono-telefono.png");
}
.contacto .contacto-form div#mail::before {
  background-image: url("../imgs/icons/Formulario-icono-mail.png");
}

.contacto .contacto-form div#tiposeguro p,
.contacto .contacto-form div#horario p{
  text-align: center;
  margin-bottom: 1rem;;
}

.contacto .contacto-form input {
  width: 100%;
  font-size: 1.2rem;
  text-align: center;
  border: #aaa solid 1px;
  border-radius: 40px;
  padding: 10px;
  outline: none;
}
.contacto .contacto-form input::-moz-placeholder {
  color: #aaa;
}
.contacto .contacto-form input:-ms-input-placeholder {
  color: #aaa;
}
.contacto .contacto-form input::placeholder {
  color: #aaa;
}
.contacto .contacto-form input:hover {
  border-color: #777;
}
.contacto .contacto-form input:focus {
  border-color: #000;
}
.contacto .contacto-form button {
  margin-top: 1rem;
  width: 100%;
  transition: all 0.1s;
}
.contacto .contacto-form button img {
  height: 3.5rem;
  margin-left: 1.5rem;
}
.contacto .contacto-form button:hover, .contacto .contacto-form button:focus {
  transform: scale(1.1);
}
.contacto .contacto-form button:active {
  transform: scale(0.9);
}

.footer {
  margin-bottom: 1rem;
  margin-top: 5rem;
}
.footer .redes {
  background-color: #d81e05;
}
.footer .redes ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer .redes ul li {
  line-height: 0;
}
.footer .redes ul li img {
  display: inline-block;
  width: 100%;
  max-height: 55px;
}
.footer .redes ul li .red {
  color: #fff;
  font-size: 0.9rem;
  font-style: normal;
}
@media only screen and (max-width: 768px) {
  .footer .redes ul li .red {
    font-size: 0.8rem;
  }
}
@media only screen and (max-width: 576px) {
  .footer .redes ul li .red {
    font-size: 0.4rem;
  }
}
.footer .legal {
  margin-top: 1rem;
}
.footer .legal ul {
  display: flex;
  justify-content: space-between;
}
.footer .legal ul li {
  line-height: 0;
}
.footer .legal ul li img {
  display: inline-block;
  width: 100%;
  max-height: 55px;
}
.footer .legal p {
  margin-top: 1rem;
  font-size: 0.9rem;
  font-weight: 400;
  color: #aaa;
}
.footer .legal p + p {
  margin-top: 0.2rem;
}

.coberturas {
  position: fixed;
  bottom: -99vh;
  left: 0;
  width: 100%;
  transition: bottom 1s ease-in-out;
  z-index: 2;
  height: 100%;
  overflow-y: scroll;
  display: flex;
  justify-content: center;
  align-items: center;
  max-height: 98vh;
}
.coberturas .wrapper {
  position: relative;
  width: 90%;
  margin: auto;
  background-color: #f3f3f3;
  padding: 5rem 10%;
  border-radius: 50px;
}
.coberturas#coberturas-comercio-absoluto:target, .coberturas#coberturas-contratro-de-trabajo:target, .coberturas#coberturas-convenio-mercantil:target {
  bottom: 1vh;
}
.coberturas ul li {
  display: flex;
  gap: 0.5rem;
}
.coberturas ul li::before {
  content: "";
  background-image: url("../imgs/icons/Icono-check.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  min-width: 1rem;
  height: 1rem;
  display: inline-block;
  margin-top: 5px;
}
.coberturas ul p {
  margin-left: 1.5rem;
}
.coberturas h4 + ul {
  margin-top: 0.5rem;
}
.coberturas ul + h4 {
  margin-top: 2rem;
}
.coberturas ul + p {
  margin-top: 4rem;
}
.coberturas li + li {
  margin-top: 0.25rem;
}
.coberturas .icon-close {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 2.5rem;
  display: inline-block;
}
.coberturas .icon-close img {
  width: 100%;
}/*# sourceMappingURL=main.css.map */