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

body {
  font-family: "Inter", sans-serif;
  background-color: #F0F0F0;
}
body .hero {
  height: 50vh;
  position: relative;
}
@media only screen and (max-width: 767px) {
  body .hero {
    height: 30vh;
    padding: 0 20px;
  }
}
body .hero::after {
  content: "";
  background: url(../images/hero-bg.png);
  height: 100%;
  width: 50vw;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  border-radius: 0 0 0 200px;
}
@media only screen and (max-width: 767px) {
  body .hero::after {
    width: 100vw;
    border-radius: 0;
  }
}
body .hero__container {
  height: 100%;
}
body .hero__container--content {
  display: flex;
  flex-wrap: nowrap;
  height: 100%;
  position: relative;
  z-index: 10;
}
@media only screen and (max-width: 767px) {
  body .hero__container--content {
    flex-direction: column;
    padding-top: 50px;
  }
}
body .hero__container--content .content-left {
  display: flex;
  align-items: center;
  position: relative;
}
@media only screen and (max-width: 767px) {
  body .hero__container--content .content-left {
    justify-content: center;
    align-items: center;
  }
}
body .hero__container--content .content-left::after {
  content: "";
  position: absolute;
  width: 100px;
  height: 300px;
  background: url(../images/Group1218.png);
  background-size: contain;
  background-repeat: no-repeat;
  right: -10%;
  top: 0;
}
@media only screen and (max-width: 767px) {
  body .hero__container--content .content-left::after {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  body .hero__container--content .content-left .content {
    margin-top: 0;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
body .hero__container--content .content-left .content img {
  height: 30px;
}
body .hero__container--content .content-left .content img:nth-of-type(1) {
  height: 30px;
}
body .hero__container--content .content-left .content img:nth-of-type(2) {
  height: 200px;
}
@media only screen and (max-width: 767px) {
  body .hero__container--content .content-left .content img {
    height: 20px;
  }
}
body .hero__container--content .content-left .content h2 {
  font-size: 100px;
  font-weight: bold;
  margin: 0;
}
@media only screen and (max-width: 767px) {
  body .hero__container--content .content-left .content h2 {
    font-size: 50px;
  }
}
body .hero__container--content .content-left .content h4 {
  font-size: 40px;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  body .hero__container--content .content-left .content h4 {
    font-size: 25px;
  }
}
body .hero__container--content .content-left .content .divisor {
  height: 10px;
  width: 200px;
  background-color: #EE2E24;
  margin-top: 30px;
}
@media only screen and (max-width: 767px) {
  body .hero__container--content .content-left .content .divisor {
    display: none;
  }
}
body .hero__container--content .content-right {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}
body .hero__container--content .content-right::after {
  content: "";
  position: absolute;
  width: 100px;
  height: 300px;
  background: url(../images/Recurso13.png);
  background-size: contain;
  background-repeat: no-repeat;
  right: 0%;
  bottom: -10%;
}
@media only screen and (max-width: 767px) {
  body .hero__container--content .content-right::after {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  body .hero__container--content .content-right {
    justify-content: flex-start;
  }
}
body .hero__container--content .content-right .content {
  margin-top: -80px;
  margin-right: -100px;
}
@media only screen and (max-width: 767px) {
  body .hero__container--content .content-right .content {
    margin: 0;
    background-color: black;
  }
}
body .hero__container--content .content-right .content h3 {
  font-size: 90px;
  font-weight: bold;
  color: white;
  margin: 0;
}
@media only screen and (max-width: 767px) {
  body .hero__container--content .content-right .content h3 {
    font-size: 16px;
    margin: 0;
    padding: 10px 15px;
  }
}
body .hero__container--content .content-right .content h4 {
  font-size: 60px;
  font-weight: bold;
  color: white;
}
@media only screen and (max-width: 767px) {
  body .hero__container--content .content-right .content h4 {
    font-size: 30px;
    display: none;
  }
}
body .info {
  margin-top: 50px;
}
body .info__container p {
  font-size: 20px;
}
@media only screen and (max-width: 767px) {
  body .info__container p {
    font-size: 20px;
  }
}
body .info__container p span {
  color: #EE2E24;
  font-weight: bold;
}
body .encuesta {
  font-size: 20px;
  padding-bottom: 100px;
}
body .encuesta__container form {
  display: flex;
  flex-direction: column;
}
body .encuesta__container form h3 {
  font-size: 20px;
  font-weight: bold;
  color: #EE2E24;
}
body .encuesta__container form label {
  margin-bottom: 30px;
}
body .encuesta__container form label p {
  font-size: 20px;
}
body .encuesta__container form label span {
  color: #EE2E24;
  font-weight: bold;
}
body .encuesta__container form .varias label {
  width: 100%;
}
body .encuesta__container form .varias label .inputs {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 5px;
}
@media only screen and (max-width: 767px) {
  body .encuesta__container form .varias label .inputs {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
}
body .encuesta__container form textarea {
  border: none;
  resize: none;
  width: 100%;
  outline: none;
  border-radius: 0px 50px 0 0;
  height: 200px;
}
body .encuesta__container form .input__submit input {
  background: #EE2E24;
  color: white;
  font-weight: bold;
  border: none;
  padding: 5px 40px;
  transition: all 0.2s linear;
}
body .encuesta__container form .input__submit input:hover {
  background: #9a1009;
}

.label-info input {
  border: none;
  outline: none;
}

.spinner {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  padding: 1.1px;
  background: conic-gradient(rgba(0, 0, 0, 0) 10%, #ee2e24) content-box;
  -webkit-mask: repeating-conic-gradient(rgba(0, 0, 0, 0) 0deg, #000 1deg 20deg, rgba(0, 0, 0, 0) 21deg 36deg), radial-gradient(farthest-side, rgba(0, 0, 0, 0) calc(100% - 9px), #000 calc(100% - 9px));
  -webkit-mask-composite: destination-in;
  mask-composite: intersect;
  animation: spinner-d55elj 1s infinite steps(10);
  margin: 0 auto;
  display: none;
}

@keyframes spinner-d55elj {
  to {
    transform: rotate(1turn);
  }
}
.swal2-confirm {
  background-color: #EE2E24 !important;
  font-weight: bold;
  border: none !important;
  outline: none;
}
.swal2-confirm:focus {
  box-shadow: none !important;
}

/*# sourceMappingURL=styles.css.map */
