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

body {
  font-family: "Space Grotesk", sans-serif;
  position: relative;
}
body .vermas {
  background: #FFEF34;
  position: absolute;
  left: 50%;
  top: 85vh;
  z-index: 9999999999;
  border-radius: 50%;
  padding: 10px;
  transform: translateX(-50%);
  animation: parpadeo 2s infinite;
}
@media only screen and (max-width: 767px) {
  body .vermas {
    display: none !important;
  }
}
body .vermas svg {
  fill: #30302D;
  height: 40px;
}
@keyframes parpadeo {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
body .hero {
  position: relative;
  background: #FFEF34;
  padding-bottom: 0;
  height: 70vh;
}
@media only screen and (max-width: 767px) {
  body .hero {
    height: 30vh;
  }
}
body .hero__container {
  position: relative;
}
body .hero__container .header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  width: 100%;
  padding: 40px 0;
}
@media only screen and (max-width: 767px) {
  body .hero__container .header {
    justify-content: center;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  body .hero__container .header {
    flex-direction: column;
  }
}
@media only screen and (max-width: 767px) {
  body .hero__container .header .hero__container--logo {
    display: flex;
    justify-content: center;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  body .hero__container .header .hero__container--logo {
    display: flex;
    justify-content: center;
  }
}
body .hero__container .header .hero__container--logo img {
  height: 40px;
}
body .hero__container .header .hamburger {
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
  cursor: pointer;
  display: none;
}
@media only screen and (max-width: 767px) {
  body .hero__container .header .hamburger {
    display: flex;
  }
}
body .hero__container .header .line {
  width: 25px;
  height: 3px;
  background-color: black;
  margin-bottom: 5px;
}
body .hero__container .header .hero__container--menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 70px;
  background: #FFEF34;
}
@media only screen and (max-width: 767px) {
  body .hero__container .header .hero__container--menu {
    display: none;
    position: absolute;
    top: 100%;
    flex-direction: column;
    justify-content: center;
    gap: 50px;
    z-index: 99999;
    padding-bottom: 20px;
  }
  body .hero__container .header .hero__container--menu.active {
    display: flex;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  body .hero__container .header .hero__container--menu {
    gap: 20px;
    margin-top: 30px;
    justify-content: center;
  }
}
body .hero__container .header .hero__container--menu a {
  text-decoration: none;
  color: #30302D;
}
body .hero__container .header .hero__container--menu a:last-of-type {
  font-weight: bold;
}
body .hero .hero__video {
  height: 100%;
  background: #FFEF34;
}
body .hero .hero__video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media only screen and (max-width: 767px) {
  body .hero .hero__video video {
    object-fit: contain;
  }
}
body .subhero {
  background-color: #30302D;
  margin-top: 100px;
}
@media only screen and (max-width: 767px) {
  body .subhero {
    padding: 20px;
  }
}
body .subhero__container {
  font-weight: bold;
  color: white;
  font-size: 40px;
  padding: 70px 0;
}
@media only screen and (max-width: 767px) {
  body .subhero__container {
    font-size: 30px;
  }
}
body .nosotros {
  margin-top: 50px;
  overflow: hidden;
}
body .nosotros__container--title {
  text-align: center;
  font-size: 60px;
  font-weight: bold;
  color: #30302D;
}
@media only screen and (max-width: 767px) {
  body .nosotros__container--title {
    font-size: 50px;
  }
}
body .nosotros__container--info {
  text-align: center;
  font-size: 30px;
  color: #30302D;
}
@media only screen and (max-width: 767px) {
  body .nosotros__container--info {
    font-size: 20px;
  }
}
body .nosotros__container--cards {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 70px;
}
@media only screen and (max-width: 767px) {
  body .nosotros__container--cards {
    flex-direction: column;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  body .nosotros__container--cards {
    flex-direction: column;
  }
}
body .nosotros__container--cards .card {
  padding: 40px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5019607843);
  border: none;
  flex: 1;
  border-radius: 20px;
}
body .nosotros__container--cards .card.purple {
  background-color: #776C97;
}
body .nosotros__container--cards .card.green {
  background-color: #107878;
}
body .nosotros__container--cards .card .header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
body .nosotros__container--cards .card .header .title {
  font-size: 30px;
  color: white;
  font-weight: bold;
}
body .nosotros__container--cards .card .header .ico img {
  height: 100px;
}
body .nosotros__container--cards .card .content {
  color: white;
  font-size: 20px;
}
body .evaluacion {
  background-color: #F2F2F2;
  padding-top: 50px;
  margin-top: 50px;
}
@media only screen and (max-width: 767px) {
  body .evaluacion {
    padding-left: 20px;
    padding-right: 20px;
  }
}
body .evaluacion__container--title {
  display: flex;
  align-items: flex-end;
  gap: 20px;
  justify-content: center;
}
body .evaluacion__container--title h3 {
  font-size: 55px;
  font-weight: bold;
  color: #30302D;
  display: block;
  line-height: 70px;
}
@media only screen and (max-width: 767px) {
  body .evaluacion__container--title h3 {
    font-size: 40px;
    display: initial;
    line-height: 55px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  body .evaluacion__container--title h3 {
    font-size: 40px;
    display: initial;
    line-height: 55px;
  }
}
body .evaluacion__container--title h3 img {
  height: 60px;
  margin-top: 25px;
}
@media only screen and (max-width: 767px) {
  body .evaluacion__container--title h3 img {
    height: 50px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  body .evaluacion__container--title h3 img {
    height: 50px;
  }
}
body .evaluacion__container--content {
  background: #FFEF34;
  padding: 40px 100px;
  border-radius: 20px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5019607843);
  margin-top: 70px;
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 100;
}
@media only screen and (max-width: 767px) {
  body .evaluacion__container--content {
    padding: 40px 20px;
  }
}
body .evaluacion__container--content .content--text .text--title {
  font-size: 30px;
  font-weight: bold;
}
body .evaluacion__container--content .content--text .text--info {
  margin-top: 50px;
}
body .evaluacion__container--content .content--text .text--info p {
  font-size: 20px;
}
body .evaluacion__container--content .content--icos .icos img {
  height: 300px;
}
@media (min-width: 768px) and (max-width: 1023px) {
  body .evaluacion__container--content .content--icos .icos img {
    height: 250px;
  }
}
body .conocer {
  padding-top: 200px;
  background-color: white;
  margin-top: -125px;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  body .conocer {
    padding-left: 20px;
    padding-right: 20px;
  }
}
body .conocer__container--title {
  font-size: 60px;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  body .conocer__container--title {
    font-size: 40px;
  }
}
body .conocer__container--content {
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
}
body .conocer__container--content .content p {
  font-size: 20px;
  position: relative;
  margin-bottom: 40px;
}
body .conocer__container--content .content p::before {
  content: "";
  position: absolute;
  top: 7%;
  left: -5%;
  background: url(../images/arrow.svg);
  background-size: cover;
  width: 20px;
  height: 20px;
  transform: rotate(-40deg);
}
@media only screen and (max-width: 767px) {
  body .conocer__container--content .content p::before {
    left: -7%;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  body .conocer__container--content .content p::before {
    left: -10%;
  }
}
body .servicio {
  margin-top: 50px;
  padding-top: 50px;
  background-color: #F2F2F2;
  padding-left: 20px;
  padding-right: 20px;
}
body .servicio__container--title {
  text-align: center;
  font-size: 40px;
}
body .servicio__container--content {
  margin-top: 50px;
  align-items: flex-end;
}
body .servicio__container--content .content--left p {
  font-size: 20px;
  position: relative;
  margin-bottom: 40px;
}
body .servicio__container--content .content--left p::before {
  content: "";
  position: absolute;
  top: 7%;
  left: -3%;
  background: url(../images/arrow.svg);
  background-size: cover;
  width: 20px;
  height: 20px;
  transform: rotate(-40deg);
}
@media only screen and (max-width: 767px) {
  body .servicio__container--content .content--left p::before {
    left: -7%;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  body .servicio__container--content .content--left p::before {
    left: -7%;
  }
}
body .servicio__container--content .content--right img {
  height: 250px;
}
body .servicio__container .title--nexa {
  background: #FFEF34;
  text-align: center;
  padding: 20px 0;
  font-size: 40px;
  font-weight: bold;
  border-radius: 20px 20px 0 0;
  border-left: 3px solid rgba(0, 0, 0, 0.1098039216);
  border-right: 3px solid rgba(0, 0, 0, 0.1098039216);
  border-top: 3px solid rgba(0, 0, 0, 0.1098039216);
}
@media only screen and (max-width: 767px) {
  body .nexa {
    padding-left: 20px;
    padding-right: 20px;
  }
}
body .nexa__container--text {
  border-left: 3px solid rgba(0, 0, 0, 0.1098039216);
  border-right: 3px solid rgba(0, 0, 0, 0.1098039216);
  border-bottom: 3px solid rgba(0, 0, 0, 0.1098039216);
  border-radius: 0 0 20px 20px;
  padding: 40px 80px;
  font-size: 20px;
}
@media only screen and (max-width: 767px) {
  body .nexa__container--text {
    padding: 40px 20px;
  }
}
body .nexa__container--text a {
  display: flex;
  justify-content: center;
  text-decoration: none;
  color: #30302D;
  background: #FFEF34;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
  width: 300px;
  margin: 0 auto;
  font-size: 30px;
  padding: 10px 30px;
  border-radius: 30px;
  margin-top: 30px;
  font-weight: bold;
  transition: all 0.2s linear;
}
@media only screen and (max-width: 767px) {
  body .nexa__container--text a {
    width: 250px;
    font-size: 20px;
  }
}
body .nexa__container--text a:hover {
  box-shadow: none;
}
body .nexa__container .link {
  margin-top: 50px;
  font-size: 30px;
  text-align: center;
}
body .nexa__container .link a {
  color: #107878;
  position: relative;
}
body .nexa__container .link a svg {
  fill: #107878;
  transform: rotate(-40deg);
}
body .protegemos {
  background: #F2F2F2;
  padding-top: 20px;
  margin-top: 50px;
  padding-left: 20px;
  padding-right: 20px;
}
body .protegemos__container .info {
  margin-top: 50px;
}
body .protegemos__container .info h3 {
  font-size: 60px;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  body .protegemos__container .info h3 {
    font-size: 45px;
  }
}
body .protegemos__container .info p {
  font-size: 20px;
  margin-top: 30px;
}
body .protegemos__container .info .purple {
  background-color: #776C97;
  color: white;
  padding: 10px 20px;
  margin-left: -20px;
  position: relative;
  z-index: 100;
}
body .caso {
  background-color: white;
  padding-top: 100px;
  margin-top: -50px;
  padding-bottom: 100px;
}
body .caso .contenedor {
  background-color: #107878;
}
body .caso .contenedor .caso__container--header {
  display: flex;
  justify-content: flex-start;
  gap: 100px;
  align-items: center;
  padding-top: 30px;
}
@media only screen and (max-width: 767px) {
  body .caso .contenedor .caso__container--header {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 20px;
  }
}
body .caso .contenedor .caso__container--header h3 {
  font-size: 60px;
  color: white;
  font-weight: bold;
}
body .caso .contenedor .caso__container--header a {
  border: 1px solid white;
  text-decoration: none;
  color: white;
  font-size: 25px;
  border-radius: 20px;
  display: flex;
  width: 300px;
  padding: 5px 20px;
  justify-content: space-between;
  align-items: center;
}
body .caso .contenedor .caso__container--header a img {
  height: 20px;
}
body .caso .contenedor p {
  font-size: 40px;
  color: white;
  padding-top: 20px;
  padding-bottom: 30px;
}
@media only screen and (max-width: 767px) {
  body .caso .contenedor p {
    font-size: 30px;
  }
}
body .contacto {
  background-color: #F2F2F2;
  padding-top: 100px;
  padding-bottom: 100px;
}
body .contacto__container--content .content--form .form--title {
  font-size: 40px;
}
body .contacto__container--content .content--form form {
  display: flex;
  flex-direction: column;
  margin-top: 50px;
}
body .contacto__container--content .content--form form label {
  width: 100%;
  margin-bottom: 20px;
}
body .contacto__container--content .content--form form label input {
  width: 100%;
  border: none;
  font-size: 20px;
  padding: 10px 20px;
  border-radius: 10px;
  box-shadow: 0px 5px 14px -1px rgba(0, 0, 16, 0.3803921569);
}
body .contacto__container--content .content--form form label button {
  height: 50px;
  width: 100%;
  max-width: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  border-radius: 10px;
  border: none;
  background: #FFEF34;
  box-shadow: 0px 5px 14px -1px rgba(0, 0, 16, 0.3803921569);
  flex: 1;
}
body .contacto__container--content .content--form form label button .inner {
  display: flex;
  align-items: center;
  gap: 20px;
  color: black;
}
body .contacto__container--content .content--form form .textarea {
  display: flex;
  gap: 30px;
}
@media only screen and (max-width: 767px) {
  body .contacto__container--content .content--form form .textarea {
    margin-bottom: 50px;
  }
}
body .contacto__container--content .content--form form .textarea input {
  resize: none;
  width: 100%;
  border: none;
  outline: none;
  box-shadow: none;
  border-radius: 10px;
  box-shadow: 0px 5px 14px -1px rgba(0, 0, 16, 0.3803921569);
  background-color: white;
  overflow: hidden;
  padding: 0 20px;
  padding-bottom: 150px;
  padding-top: 10px;
  font-size: 20px;
  flex: 0 0 60%;
}
body .contacto__container--content .content--form form .textarea input:focus {
  outline: none;
  border: none;
}
body .contacto__container--content .content--form form .textarea input:focus-visible {
  outline: none !important;
  border: none;
}
body .contacto__container--content .content--icos .icos {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  padding-bottom: 50px;
  gap: 50px;
}
@media only screen and (max-width: 767px) {
  body .contacto__container--content .content--icos .icos {
    padding-bottom: 10px;
  }
}
body .contacto__container--content .content--icos .icos img {
  object-fit: contain;
}
body .contacto__container--content .content--icos .icos img:first-of-type {
  height: 120px;
  margin-right: -100px;
}
@media (min-width: 768px) and (max-width: 1023px) {
  body .contacto__container--content .content--icos .icos img:first-of-type {
    margin-right: 0;
  }
}
@media only screen and (max-width: 767px) {
  body .contacto__container--content .content--icos .icos img:first-of-type {
    margin-right: 0;
  }
}
body .contacto__container--content .content--icos .icos img:nth-of-type(2) {
  height: 50px;
}
@media only screen and (max-width: 767px) {
  body .contacto__container--content .content--icos .icos img:nth-of-type(2) {
    height: 50px;
  }
}
body footer {
  background: #FFEF34;
  padding: 20px 0;
}
body footer .footer__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  body footer .footer__container {
    flex-direction: column;
  }
}
body footer .footer__container .link a {
  text-decoration: none;
  color: #30302D;
  font-size: 30px;
  font-weight: bold;
  position: relative;
}
body footer .footer__container .link a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -11%;
  background: url(../images/arrow.svg);
  background-size: cover;
  width: 20px;
  height: 20px;
  transform: rotate(-40deg) translate(50%, 0);
}
body footer .footer__container .rrss {
  display: flex;
  align-items: center;
  gap: 30px;
}
body footer .footer__container .rrss p {
  margin: 0;
  font-size: 25px;
}
@media only screen and (max-width: 767px) {
  body footer .footer__container .rrss p {
    font-size: 20px;
  }
}
body footer .footer__container .rrss svg {
  height: 30px;
}
@media only screen and (max-width: 767px) {
  body footer .footer__container .rrss svg {
    height: 20px;
  }
}

.spinner {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 9px solid;
  border-color: #dbdcef;
  border-right-color: #FFEF34;
  animation: spinner-d3wgkg 1s infinite linear;
  display: none;
  margin: 0 auto;
  margin-top: 20px;
}

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

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