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

body {
  font-family: "Inter", sans-serif;
  background: url(../images/bg-full.jpg);
  background-size: cover;
}
body .header {
  padding-top: 50px;
  height: 80vh;
  background: url("../images/hero.png");
  background-size: cover;
  position: relative;
}
@media only screen and (max-width: 767px) {
  body .header {
    padding-left: 10px;
    height: 35vh;
    background-position: 100%;
  }
}
body .header::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(25, 14, 58);
  background: -moz-linear-gradient(90deg, rgb(25, 14, 58) 0%, rgba(178, 178, 178, 0) 100%);
  background: -webkit-linear-gradient(90deg, rgb(25, 14, 58) 0%, rgba(178, 178, 178, 0) 100%);
  background: linear-gradient(90deg, rgb(25, 14, 58) 0%, rgba(178, 178, 178, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#190e3a",endColorstr="#b2b2b2",GradientType=1);
  z-index: 1;
}
body .header::before {
  display: none;
  content: "";
  position: absolute;
  width: 200px;
  height: 300px;
  right: 10%;
  bottom: 0;
  background: url(../images/Recurso\ 12.png);
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 200;
}
@media only screen and (max-width: 767px) {
  body .header::before {
    display: none;
  }
}
body .header__container {
  position: relative;
  z-index: 10;
  height: 100%;
}
body .header__container--logo img {
  height: 50px;
}
@media only screen and (max-width: 767px) {
  body .header__container--logo img {
    height: 30px;
  }
}
body .header__container--content {
  height: 100%;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  margin-top: 30px;
}
body .header__container--content h2 {
  color: white;
  font-weight: bold;
  font-size: 100px;
  margin-left: -10px;
  margin-bottom: 0;
}
body .header__container--content h2:nth-of-type(1) {
  background-color: #EE2E24;
  z-index: 2;
  position: relative;
}
body .header__container--content h2:nth-of-type(1)::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: -100%;
  background-color: #EE2E24;
  z-index: -1;
}
@media only screen and (max-width: 767px) {
  body .header__container--content h2 {
    font-size: 48px;
    line-height: 45px;
  }
}
body .icos {
  margin-top: 100px;
  position: relative;
}
body .icos::before {
  content: "";
  position: absolute;
  background: #52C5D6;
  width: 10%;
  height: 10px;
  left: 0;
  top: 50%;
}
body .icos::after {
  content: "";
  position: absolute;
  background: #52C5D6;
  width: 10%;
  height: 10px;
  right: 0;
  top: 50%;
}
body .icos__container {
  display: flex;
  align-items: flex-start;
  justify-content: space-around;
}
@media only screen and (max-width: 767px) {
  body .icos__container {
    flex-direction: column;
    align-items: center;
    gap: 100px;
  }
}
body .icos__container .ico {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
body .icos__container .ico .svg {
  margin-bottom: 10px;
}
body .icos__container .ico .svg svg {
  height: 65px;
}
body .icos__container .ico .ico__title {
  color: #52C5D6;
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: bold;
}
body .icos__container .ico .ico__info {
  color: white;
  font-size: 16px;
  font-weight: bold;
}
body .icos__container .ico .ico__info h4 {
  font-size: 20px;
  margin: 0;
}
body .icos__container .ico .ico__info p {
  font-size: 16px;
  margin: 0;
}
body .icos__container .ico .ico__info a {
  color: #52C5D6;
  font-weight: bold;
  text-decoration: none;
}
body .contacto {
  margin-top: 70px;
  padding-bottom: 100px;
}
@media only screen and (max-width: 767px) {
  body .contacto {
    padding: 0 10px;
  }
}
body .contacto__container {
  background: rgba(254, 254, 254, 0.17);
  border-radius: 13px;
  padding: 60px;
}
body .contacto__container--title {
  font-size: 20px;
  color: white;
}
body .contacto__container--form {
  margin-top: 40px;
}
body .contacto__container--form form label {
  margin-bottom: 20px;
}
body .contacto__container--form form label p {
  color: white;
  font-size: 20px;
  margin: 0;
  margin-bottom: 10px;
}
body .contacto__container--form form label input {
  border: none;
  outline: none;
  padding: 15px 10px;
  width: 100%;
  background: none;
  border-bottom: 1px solid white;
  color: white;
}
body .contacto__container--form form label .input__radio {
  display: flex;
  margin-top: 25px;
  color: white;
}
body .contacto__container--form form label .input__radio input {
  width: 15px;
  margin-right: 5px;
}
body .contacto__container--form form label .input__radio input:nth-of-type(2) {
  margin-left: 20px;
}
body .contacto__container--form form input[type=submit] {
  background-color: #EE2E24;
  color: white;
  height: 50px;
  width: 50%;
  border: none;
  margin-top: 30px;
  transition: all 0.3s linear;
  font-weight: bold;
}
body .contacto__container--form form input[type=submit]:hover {
  background-color: #9a1d16;
}
@media only screen and (max-width: 767px) {
  body .contacto__container--form form input[type=submit] {
    width: 95%;
    margin: 0 auto;
    margin-top: 30px;
  }
}
body .contacto__container--form form .translado {
  margin-top: 30px;
  padding: 0;
}
@media only screen and (max-width: 767px) {
  body .contacto__container--form form .translado {
    padding: 0 10px;
  }
}
body .contacto__container--form form .translado p {
  font-style: italic;
  color: grey;
}
@media only screen and (max-width: 767px) {
  body .info {
    margin-top: 80px;
  }
}
body .info__container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
@media only screen and (max-width: 767px) {
  body .info__container {
    flex-direction: column;
  }
}
body .info__container--text {
  color: white;
  font-size: 30px;
  font-weight: bold;
  margin-left: 50px;
}
@media only screen and (max-width: 767px) {
  body .info__container--text {
    margin-left: 0;
    margin-top: 50px;
    font-size: 22px;
  }
}
body .divisor {
  width: 50%;
  height: 1px;
  background: grey;
  text-align: center;
  margin: 0 auto;
  margin-top: 100px;
}
@media only screen and (max-width: 767px) {
  body .divisor {
    margin-top: 50px;
  }
}
body .footer {
  margin-top: 100px;
  padding-bottom: 100px;
}
@media only screen and (max-width: 767px) {
  body .footer {
    margin-top: 50px;
  }
}
body .footer__container {
  font-size: 30px;
  color: #52C5D6;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  body .footer__container {
    font-size: 22px;
    text-align: left;
  }
}

.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 */
