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

body {
  font-family: "Poppins", sans-serif;
}
body .hero {
  background: rgb(0, 149, 211);
  background: linear-gradient(90deg, rgb(0, 149, 211) 0%, rgb(109, 179, 63) 100%);
  height: 90vh;
  position: relative;
}
body .hero::after {
  content: "";
  position: absolute;
  background: url(../images/mundo-hero.png);
  background-size: cover;
  width: 550px;
  height: 550px;
  bottom: -15%;
  right: 0%;
  z-index: 99999;
}
@media (max-width: 767px) {
  body .hero::after {
    opacity: 40%;
  }
}
body .hero__container--header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  body .hero__container--header {
    flex-direction: column;
  }
}
body .hero__container--header .header--logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
body .hero__container--header .header--logos img {
  height: 100px;
}
@media (max-width: 767px) {
  body .hero__container--header .header--logos img {
    height: 70px;
  }
}
body .hero__container--header .header--logos img:nth-of-type(2) {
  height: 30px;
}
@media (max-width: 767px) {
  body .hero__container--header .header--logos img:nth-of-type(2) {
    height: 20px;
  }
}
body .hero__container--header .header--logos span {
  color: white;
  font-weight: 300;
  font-size: 50px;
}
body .hero__container--header .header--menu {
  display: flex;
  align-items: center;
  gap: 20px;
}
body .hero__container--header .header--menu a {
  color: white;
  text-decoration: none;
  font-size: 20px;
  transition: all 0.3s linear;
}
body .hero__container--header .header--menu a:hover {
  opacity: 70%;
}
body .hero__container--content {
  padding-top: 80px;
}
body .hero__container--content .content--title {
  font-size: 70px;
  line-height: 80px;
  color: white;
  font-weight: bold;
}
@media (max-width: 767px) {
  body .hero__container--content .content--title {
    font-size: 45px;
    line-height: 45px;
  }
}
body .hero__container--content .content--subtitle {
  color: white;
  font-size: 40px;
  line-height: 40px;
  font-weight: 300;
  margin-top: 20px;
}
body .custom-shape-divider-bottom-1686022360 {
  background: rgb(0, 149, 211);
  background: linear-gradient(90deg, rgb(0, 149, 211) 0%, rgb(109, 179, 63) 100%);
  transform: rotate(180deg) translateY(40%) rotateY(180deg);
  position: relative;
  z-index: -1;
  overflow: hidden;
}
body .custom-shape-divider-bottom-1686022360 svg {
  fill: white;
  height: 200px;
}
body .camino {
  margin-top: 100px;
  overflow: hidden;
}
@media (max-width: 767px) {
  body .camino {
    margin-top: 0;
  }
}
body .camino__container--title {
  text-align: center;
}
body .camino__container--title h3 {
  font-weight: bold;
  font-size: 40px;
}
body .camino__container--title p {
  font-size: 25px;
}
body .camino__container--content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 50px;
}
@media (max-width: 767px) {
  body .camino__container--content {
    display: flex;
    flex-direction: column;
  }
}
body .camino__container--content .box {
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.233);
  text-align: center;
  position: relative;
  height: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
}
body .camino__container--content .box::after {
  content: "";
  position: absolute;
  background: linear-gradient(90deg, #1091BE 0%, #349D93 100%);
  height: 10px;
  bottom: 0;
  left: 0;
  width: 100%;
}
body .camino__container--content .box--title {
  font-size: 35px;
  font-weight: bold;
  padding-top: 10px;
}
@media (max-width: 767px) {
  body .camino__container--content .box--title {
    font-size: 30px;
  }
}
body .camino__container--content .box--info {
  font-size: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
}
@media (max-width: 767px) {
  body .camino__container--content .box--info {
    font-size: 18px;
  }
}
body .transformacion {
  margin-top: 100px;
  background: rgb(0, 149, 211);
  background: linear-gradient(90deg, rgb(0, 149, 211) 0%, rgb(109, 179, 63) 100%);
}
body .transformacion__container--title {
  text-align: center;
  padding-top: 50px;
}
body .transformacion__container--title h2 {
  font-weight: bold;
  font-size: 60px;
  line-height: 65px;
  color: white;
}
@media (max-width: 767px) {
  body .transformacion__container--title h2 {
    font-size: 40px;
    line-height: 45px;
  }
}
body .transformacion__container--title p {
  font-size: 25px;
  color: white;
  margin-top: 30px;
}
body .transformacion__container--content {
  border-radius: 15px;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  padding-top: 50px;
  padding-bottom: 50px;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.43);
  transform: translateY(15%);
}
@media (max-width: 767px) {
  body .transformacion__container--content {
    flex-direction: column;
  }
}
body .transformacion__container--content .content {
  text-align: center;
  width: 25%;
}
@media (max-width: 767px) {
  body .transformacion__container--content .content {
    width: 80%;
  }
}
body .transformacion__container--content .content .num {
  font-size: 90px;
  font-weight: bold;
}
body .transformacion__container--content .content:nth-of-type(1) .num {
  color: #1893B5;
}
body .transformacion__container--content .content:nth-of-type(2) .num {
  color: #379F8F;
}
body .transformacion__container--content .content:nth-of-type(3) .num {
  color: #50A870;
}
body .transformacion__container--content .content .info {
  font-weight: bold;
  font-size: 25px;
}
body .nube {
  margin-top: 120px;
  overflow: hidden;
}
@media (max-width: 767px) {
  body .nube {
    margin-top: 150px;
  }
}
body .nube__container--title {
  text-align: center;
}
body .nube__container--title p {
  font-size: 35px;
  line-height: 40px;
}
body .nube__container--title p span {
  font-size: 40px;
  font-weight: bold;
}
@media (max-width: 767px) {
  body .nube__container--title p {
    font-size: 30px;
  }
  body .nube__container--title p span {
    font-size: 35px;
  }
}
body .nube__container--content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 70px;
}
@media (max-width: 767px) {
  body .nube__container--content {
    display: flex;
    flex-direction: column;
  }
}
body .nube__container--content .box {
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.233);
  position: relative;
  height: 160px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0 20px;
}
@media (max-width: 767px) {
  body .nube__container--content .box {
    height: 180px;
  }
}
body .nube__container--content .box:nth-of-type(5) {
  grid-column: 1/span 2;
  justify-self: center;
  width: 50%;
}
@media (max-width: 767px) {
  body .nube__container--content .box:nth-of-type(5) {
    width: 100%;
  }
}
body .nube__container--content .box::after {
  content: "";
  position: absolute;
  background: linear-gradient(90deg, #1091BE 0%, #349D93 100%);
  height: 10px;
  bottom: 0;
  left: 0;
  width: 100%;
}
body .nube__container--content .box--title {
  font-size: 20px;
  font-weight: bold;
  padding-top: 20px;
}
body .nube__container--content .box--info {
  font-size: 16px;
  padding-top: 10px;
  padding-bottom: 10px;
}
body .caso {
  background: url(../images/Group\ 1211\ \(1\).png);
  background-size: cover;
  text-align: center;
  margin-top: 100px;
}
body .caso__container--title {
  font-size: 60px;
  font-weight: bold;
  color: white;
  text-align: center;
  padding-top: 50px;
}
@media (max-width: 767px) {
  body .caso__container--title {
    font-size: 40px;
  }
}
body .caso__container--btn {
  text-align: center;
  padding-bottom: 50px;
}
body .caso__container--btn a {
  text-decoration: none;
  background-color: white;
  border-radius: 60px;
  color: #42A382;
  width: 200px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin: 0 auto;
  margin-top: 50px;
  font-size: 20px;
}
body .somos {
  margin-top: 100px;
}
body .somos__container--title h3 {
  font-size: 60px;
  font-weight: bold;
  text-align: center;
}
@media (max-width: 767px) {
  body .somos__container--title h3 {
    font-size: 40px;
  }
}
body .somos__container--title p {
  font-size: 25px;
  text-align: center;
}
@media (max-width: 767px) {
  body .somos__container--title p {
    font-size: 20px;
  }
}
body .somos__container--content {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  margin-top: 60px;
}
@media (max-width: 767px) {
  body .somos__container--content {
    flex-wrap: wrap;
    gap: 15px;
  }
}
body .somos__container--content .item {
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
body .somos__container--content .item .item--title {
  font-size: 80px;
  position: relative;
  width: fit-content;
  margin: 0 auto;
}
body .somos__container--content .item .item--info {
  font-size: 20px;
  padding-top: 20px;
  padding-bottom: 20px;
  width: 60%;
  margin: 0 auto;
  font-weight: bold;
}
body .somos__container--content .item--btn a {
  text-decoration: none;
  border: 2px solid blue;
  width: 240px;
  height: 45px;
  font-size: 20px;
  border-radius: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
body .somos__container--content .item:nth-of-type(1) .item--title::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: #CCF023;
  border-radius: 50%;
  left: -50%;
  top: 50%;
  transform: translate(0, -50%);
}
body .somos__container--content .item:nth-of-type(1) .item--btn a {
  color: #CCF023;
  border: 3px solid #CCF023;
  font-weight: bold;
}
body .somos__container--content .item:nth-of-type(2) .item--title::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: #AD23F0;
  border-radius: 50%;
  left: -25%;
  top: 50%;
  transform: translate(0, -50%);
}
body .somos__container--content .item:nth-of-type(2) .item--btn a {
  color: #AD23F0;
  border: 3px solid #AD23F0;
  font-weight: bold;
}
body .somos__container--content .item:nth-of-type(3) .item--title::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: #279AED;
  border-radius: 50%;
  left: -20%;
  top: 50%;
  transform: translate(0, -50%);
}
body .somos__container--content .item:nth-of-type(3) .item--btn a {
  color: #279AED;
  border: 3px solid #279AED;
  font-weight: bold;
}
body .somos__container--content .item:nth-of-type(4) .item--title::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: #27ED7A;
  border-radius: 50%;
  left: -20%;
  top: 50%;
  transform: translate(0, -50%);
}
body .somos__container--content .item:nth-of-type(4) .item--btn a {
  color: #27ED7A;
  border: 3px solid #27ED7A;
  font-weight: bold;
}
body .contacto-shape {
  background: linear-gradient(90deg, rgb(0, 149, 211) 0%, rgb(109, 179, 63) 100%);
  margin-top: 100px;
}
body .contacto-shape svg {
  fill: white;
  width: 100%;
  height: 50px;
}
@media (max-width: 767px) {
  body .contacto-shape {
    display: none;
  }
}
body .contacto {
  background: rgb(0, 149, 211);
  background: linear-gradient(90deg, rgb(0, 149, 211) 0%, rgb(109, 179, 63) 100%);
  padding-bottom: 100px;
  position: relative;
}
@media (max-width: 767px) {
  body .contacto {
    margin-top: 100px;
  }
}
body .contacto::after {
  content: "";
  position: absolute;
  background: url(../images/logo-a.png);
  background-size: contain;
  width: 75px;
  height: 100px;
  background-repeat: no-repeat;
  bottom: 1%;
  right: 2%;
}
body .contacto__container {
  display: flex;
  grid-template-columns: 1fr 1fr;
  padding-top: 50px;
}
@media (max-width: 767px) {
  body .contacto__container {
    flex-direction: column;
  }
}
body .contacto__container .left--content .title {
  color: white;
  font-weight: bold;
  font-size: 40px;
  width: 90%;
}
@media (max-width: 767px) {
  body .contacto__container .left--content .title {
    width: 100%;
  }
}
body .contacto__container .left--content form {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
}
body .contacto__container .left--content form input {
  border-radius: 10px;
  background-color: white;
  border: none;
  margin-bottom: 20px;
  font-size: 24px;
  padding: 10px 20px;
  width: 90%;
}
body .contacto__container .left--content form input::placeholder {
  color: #238C98;
}
@media (max-width: 767px) {
  body .contacto__container .left--content form input {
    width: 100%;
  }
}
body .contacto__container .left--content form button {
  border-radius: 10px;
  background-color: white;
  border: none;
  margin-bottom: 20px;
  font-size: 24px;
  padding: 20px 40px;
  width: 90%;
  height: 150px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  transition: all 0.3s linear;
}
@media (max-width: 767px) {
  body .contacto__container .left--content form button {
    width: 100%;
  }
}
body .contacto__container .left--content form button:hover {
  opacity: 50%;
}
body .contacto__container .left--content form button .inner {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #238C98;
}
body .contacto__container .left--content form button .inner svg {
  fill: #238C98;
}
body .contacto__container .right--content .title {
  color: white;
  font-weight: bold;
  font-size: 40px;
}
body .contacto__container .right--content .info {
  margin-top: 30px;
  color: white;
}
body .contacto__container .right--content .info h3 {
  font-size: 25px;
  font-weight: bold;
}
body .contacto__container .right--content .info p {
  color: white;
  font-size: 20px;
  font-weight: 300;
  margin: 0;
}
body .contacto__container .right--content .info a {
  color: white;
  text-decoration: none;
  font-size: 20px;
  font-weight: 300;
}

body.casos .header {
  background: url(../images/casos-hero.png);
  background-size: cover;
  background-repeat: no-repeat;
  height: 70vh;
  position: relative;
}
@media (max-width: 767px) {
  body.casos .header {
    background-position: 90%;
  }
}
body.casos .header::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgb(0, 149, 211) 5%, rgb(109, 179, 63) 50%, rgba(109, 179, 63, 0.2974439776) 100%, rgba(109, 179, 63, 0) 100%);
  z-index: 10;
}
@media (max-width: 767px) {
  body.casos .header::after {
    background: linear-gradient(90deg, rgb(0, 149, 211) 0%, rgb(109, 179, 63) 100%);
    opacity: 65%;
  }
}
body.casos .header__content {
  height: 100%;
}
body.casos .header__content--logos {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 5px;
  position: relative;
  z-index: 100;
}
@media (max-width: 767px) {
  body.casos .header__content--logos {
    justify-content: center;
  }
}
body.casos .header__content--logos img {
  height: 150px;
}
@media (max-width: 767px) {
  body.casos .header__content--logos img {
    height: 70px;
  }
}
body.casos .header__content--logos img:nth-of-type(2) {
  height: 50px;
}
@media (max-width: 767px) {
  body.casos .header__content--logos img:nth-of-type(2) {
    height: 20px;
  }
}
body.casos .header__content--logos span {
  color: white;
  font-weight: 300;
  font-size: 60px;
}
body.casos .custom-shape-casos {
  transform: rotate(180deg) translateY(100%) rotateY(180deg);
  position: relative;
  z-index: 999999999;
  overflow: hidden;
}
body.casos .custom-shape-casos svg {
  fill: white;
  height: 200px;
}
@media (max-width: 767px) {
  body.casos .custom-shape-casos {
    display: none;
  }
}
body.casos .content {
  margin-top: -100px;
}
@media (max-width: 767px) {
  body.casos .content {
    margin-top: 100px;
  }
}
body.casos .content .title {
  font-size: 40px;
  font-weight: bold;
  color: #CCF023;
  margin-bottom: 30px;
}
body.casos .content .info {
  margin-bottom: 50px;
  font-size: 18px;
}
body.casos .content .info .subtitle {
  font-weight: bold;
  font-size: 20px;
}
body.casos .contacto-shape {
  background: rgb(206, 240, 72);
  background: linear-gradient(90deg, rgb(206, 240, 72) 0%, rgb(146, 236, 121) 100%, rgba(109, 179, 63, 0) 100%);
}
body.casos .footer {
  background: rgb(206, 240, 72);
  background: linear-gradient(90deg, rgb(206, 240, 72) 0%, rgb(146, 236, 121) 100%, rgba(109, 179, 63, 0) 100%);
  padding-top: 100px;
  padding-bottom: 100px;
  position: relative;
}
body.casos .footer::after {
  content: "";
  position: absolute;
  background: url(../images/logo-a2.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 65px;
  height: 79px;
  bottom: 5%;
  right: 5%;
}
body.casos .footer__container .title {
  font-size: 50px;
  font-weight: bold;
}
body.casos .footer__container .text ul {
  margin: 0;
  padding: 20px;
}
body.casos .footer__container .text ul li {
  font-size: 20px;
}

.swal2-confirm {
  background-color: #50A870 !important;
}
.swal2-confirm:focus {
  box-shadow: none !important;
}

.custom-loader {
  display: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: conic-gradient(rgba(0, 0, 0, 0) 10%, #6db33f);
  -webkit-mask: radial-gradient(farthest-side, rgba(0, 0, 0, 0) calc(100% - 8px), #000 0);
  animation: s3 1s infinite linear;
}

@keyframes s3 {
  to {
    transform: rotate(1turn);
  }
}

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