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

body {
  font-family: "Manrope", sans-serif;
  background: white;
  color: #091526;
}
body .hero::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background: url(../images/bg\ \(1\)\ 8.png);
  width: 90px;
  height: 130%;
}
body .hero::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  background: url(../images/bg\ \(1\)\ 7.png);
  width: 180px;
  height: 130%;
}
body .hero__container {
  padding-top: 30px;
  height: 100%;
}
body .hero__container--menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  body .hero__container--menu {
    flex-direction: column;
    gap: 20px;
  }
}
body .hero__container--menu .menu--logo {
  position: relative;
}
body .hero__container--menu .menu--logo::after {
  content: "";
  position: absolute;
  background: url(../images/powered-black.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 120px;
  height: 25px;
  bottom: -35%;
  right: -30%;
}
@media screen and (max-width: 767px) {
  body .hero__container--menu .menu--logo::after {
    bottom: -60%;
  }
}
body .hero__container--menu .menu--logo img {
  height: 60px;
}
@media screen and (max-width: 767px) {
  body .hero__container--menu .menu--logo img {
    height: 40px;
  }
}
body .hero__container--menu .menu--links {
  display: flex;
  gap: 40px;
}
body .hero__container--menu .menu--links a {
  color: #091526;
  text-decoration: none;
}
body .hero__container--menu .menu--links a:last-of-type {
  text-decoration: underline;
}
body .hero__container--title {
  text-align: center;
  margin-top: 30px;
}
body .hero__container--title h3:nth-of-type(1) {
  font-size: 50px;
  font-weight: bold;
}
body .hero__container--title h3:nth-of-type(2) {
  font-size: 30px;
  font-weight: bold;
  margin-top: 20px;
}
body .hero__container--title .linea {
  text-align: center;
  margin: 0 auto;
  height: 5px;
  width: 50%;
  background: #406BE7;
}
body .hero__container--content {
  margin-top: 100px;
  padding-top: 100px;
  padding-bottom: 100px;
  background: #0F1927;
  color: white;
  position: relative;
}
body .hero__container--content::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100px;
  background: rgb(0, 0, 0);
  background: -moz-linear-gradient(180deg, rgba(0, 0, 0, 0) 33%, rgb(15, 25, 39) 75%);
  background: -webkit-linear-gradient(180deg, rgba(0, 0, 0, 0) 33%, rgb(15, 25, 39) 75%);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 33%, rgb(15, 25, 39) 75%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#0f1927",GradientType=1);
  top: -100px;
  left: 0;
}
body .hero__container--content::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100px;
  background: rgb(0, 0, 0);
  background: -moz-linear-gradient(0deg, rgba(0, 0, 0, 0) 33%, rgb(15, 25, 39) 75%);
  background: -webkit-linear-gradient(0deg, rgba(0, 0, 0, 0) 33%, rgb(15, 25, 39) 75%);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0) 33%, rgb(15, 25, 39) 75%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#0f1927",GradientType=1);
  bottom: -100px;
  left: 0;
}
body .hero__container--content .content img {
  width: 100%;
}
body .hero__container--content .content p {
  font-size: 20px;
  margin-bottom: 50px;
}
body .hero__container--content .content a {
  border-radius: 70px;
  background: #406BE7;
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 45px;
  font-weight: bold;
}
body .trans {
  margin-top: 150px;
  position: relative;
}
body .trans::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background: url(../images/bg\ \(1\)\ 8.png);
  width: 90px;
  height: 100%;
}
body .trans::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  background: url(../images/bg\ \(1\)\ 7.png);
  width: 180px;
  height: 130%;
}
body .trans__container--title {
  font-size: 40px;
  font-weight: bold;
  text-align: center;
}
body .trans__container--content {
  margin-top: 100px;
}
body .trans__container--content .content--img {
  display: flex;
  justify-content: center;
  width: 100%;
  height: 100%;
  cursor: pointer;
  position: relative;
  transition: all 0.1s linear;
}
body .trans__container--content .content--img img {
  max-width: 1000px;
  height: 100%;
  width: 100%;
}
body .trans__container--content .content--img:hover .popup {
  transform: scale(1);
}
body .trans__container--content .content--img .popup {
  position: absolute;
  width: 400px;
  color: white;
  border-radius: 8px;
  padding: 20px;
  font-size: 14px;
  transform: scale(0);
  transition: all 1s linear;
}
@media screen and (max-width: 767px) {
  body .trans__container--content .content--img .popup {
    display: none;
  }
}
body .trans__container--content .content--img .popup.red {
  background: #E84040;
  top: 5%;
  left: 3%;
  transform-origin: 100% 100%;
}
body .trans__container--content .content--img .popup.green {
  border-radius: 8px;
  background: #1AAB54;
  top: 20%;
  right: 0;
  transform-origin: 0% 100%;
}
body .trans__container--content .content--img .popup.blue {
  background-color: #213C9A;
  bottom: 0;
  right: 0;
  transform-origin: 0% 0%;
}
body .trans__container--content .content--img .popup.orange {
  background-color: #F5800F;
  bottom: 10%;
  left: 3%;
  transform-origin: 100% 0%;
}
body .recursos {
  margin-top: 100px;
  position: relative;
}
body .recursos::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background: url(../images/bg\ \(1\)\ 8.png);
  width: 90px;
  height: 100%;
}
body .recursos::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  background: url(../images/bg\ \(1\)\ 7.png);
  width: 180px;
  height: 130%;
}
body .recursos__container--content .content--video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  body .recursos__container--content .content--info {
    margin-top: 30px;
  }
}
body .recursos__container--content .content--info .info--title {
  font-size: 30px;
  font-weight: bold;
}
body .recursos__container--content .content--info .info--text {
  margin-top: 20px;
  font-size: 16px;
  min-height: 250px;
}
body .recursos__container--content .content--info .info--btns {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}
body .recursos__container--content .content--info .info--btns button {
  background: none;
  border: none;
  border-radius: 15px;
  background: #091526;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  width: 120px;
  height: 70px;
}
body .recursos__container--content .content--info .info--btns button:hover {
  background: linear-gradient(90deg, #CB0F79 0%, #8E26C8 100%);
}
body .recursos__container--content .content--info .info--btns button.active {
  border-radius: 15px;
  background: linear-gradient(90deg, #CB0F79 0%, #8E26C8 100%);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}
body .recursos__container--content .content--info .info--btns button svg {
  height: 40px;
}
body .descubre {
  margin-top: 100px;
  position: relative;
}
body .descubre::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background: url(../images/bg\ \(1\)\ 8.png);
  width: 90px;
  height: 100%;
}
body .descubre::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  background: url(../images/bg\ \(1\)\ 7.png);
  width: 180px;
  height: 130%;
}
body .descubre__container {
  text-wrap: balance;
}
body .descubre__container--title {
  font-size: 30px;
  font-weight: bold;
}
body .descubre__container--content {
  margin-top: 50px;
}
body .descubre__container--content .content--text {
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  body .descubre__container--content .content--text {
    font-size: 15px;
  }
}
body .descubre__container--content .content--text .row {
  display: flex;
  align-items: flex-start;
  flex-wrap: nowrap;
  margin-bottom: 20px;
}
body .descubre__container--content .content--text .row .ico {
  width: 30px;
}
body .descubre__container--content .content--text .row .ico img {
  width: 20px;
}
body .descubre__container--content .content--text .row p {
  margin: 0;
}
@media screen and (max-width: 767px) {
  body .descubre__container--content .content--text .row p {
    width: 90%;
  }
}
body .descubre__container--content .content--logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 25px;
}
body .descubre__container--content .content--logos .logo {
  border-radius: 20px;
  background: #406BE7;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  padding: 4px;
  height: 120px;
}
body .descubre__container--content .content--logos .logo:hover {
  background: #67F293;
}
body .descubre__container--content .content--logos .logo .logo-bg {
  border-radius: 20px;
  background: #406BE7;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
body .descubre__container--content .content--logos .logo .logo-bg a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
body .descubre__container--content .content--logos .logo .logo-bg img {
  width: 80%;
}
body .descubre__container--text {
  margin-top: 100px;
}
body .descubre__container--text p {
  color: #091526;
  text-align: center;
  font-size: 20px;
  font-style: italic;
  font-weight: bold;
  letter-spacing: 0.875px;
}
body .paso {
  margin-top: 150px;
  position: relative;
}
body .paso::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background: url(../images/bg\ \(1\)\ 8.png);
  width: 90px;
  height: 100%;
}
body .paso::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  background: url(../images/bg\ \(1\)\ 7.png);
  width: 180px;
  height: 130%;
}
body .paso__container--title {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 20px;
}
body .paso__container .line {
  height: 5px;
  background: #406BE7;
  width: 100%;
  transform: translateX(-60%);
  margin-bottom: 20px;
}
body .paso__container--subtitle {
  font-size: 20px;
}
body .paso__container--content {
  position: relative;
  margin-top: 100px;
}
body .paso__container--content .content {
  margin-bottom: 100px;
  width: 50%;
}
@media screen and (max-width: 767px) {
  body .paso__container--content .content {
    width: 100%;
  }
}
body .paso__container--content .content:nth-of-type(2) {
  transform: translateX(20%);
}
@media screen and (max-width: 767px) {
  body .paso__container--content .content:nth-of-type(2) {
    transform: translate(0);
  }
}
body .paso__container--content .content:nth-of-type(3) {
  transform: translateX(40%);
}
@media screen and (max-width: 767px) {
  body .paso__container--content .content:nth-of-type(3) {
    transform: translate(0);
  }
}
body .paso__container--content .content .title {
  display: flex;
  align-items: baseline;
  position: relative;
  margin-bottom: 20px;
}
body .paso__container--content .content .title .number {
  font-size: 100px;
  font-weight: bold;
  background: #67F293;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 90px;
  position: absolute;
  left: -4%;
  bottom: 0;
  z-index: -1;
}
body .paso__container--content .content .title .text {
  font-size: 40px;
  font-weight: bold;
  line-height: 40px;
}
body .interesar {
  margin-top: 100px;
  background: #091526;
  position: relative;
}
body .interesar::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background: url(../images/bg\ \(1\)\ 8.png);
  width: 90px;
  height: 100%;
}
body .interesar::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  background: url(../images/bg\ \(1\)\ 7.png);
  width: 180px;
  height: 130%;
}
body .interesar__container--btn {
  width: 200px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  font-weight: bold;
  flex-shrink: 0;
  border-radius: 78px;
  background: var(--aws, linear-gradient(90deg, #CB0F79 0%, #8E26C8 100%));
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}
body .interesar__container--btn a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}
body .interesar__container--content {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
body .interesar__container--content .content--aws {
  height: 180px;
  border-radius: 40px;
  overflow: hidden;
  padding: 0;
}
body .interesar__container--content .content--aws video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
body .interesar__container--content .content--info {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  body .interesar__container--content .content--info {
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
  }
}
body .interesar__container--content .content--info .line {
  width: 3px;
  height: 150px;
  background: white;
  margin: 0 20px;
}
@media screen and (max-width: 767px) {
  body .interesar__container--content .content--info .line {
    display: none;
  }
}
body .interesar__container--content .content--info p {
  margin-left: 20px;
}
@media screen and (max-width: 767px) {
  body .interesar__container--content .content--info p {
    margin: 0;
  }
}
body .contacto {
  margin-top: 100px;
  position: relative;
}
body .contacto::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background: url(../images/bg\ \(1\)\ 8.png);
  width: 90px;
  height: 100%;
}
body .contacto::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  background: url(../images/bg\ \(1\)\ 7.png);
  width: 180px;
  height: 130%;
}
body .contacto__container--content .content--text .text--title {
  font-size: 30px;
  font-weight: bold;
  margin-top: 40px;
}
body .contacto__container--content .content--text .text--btn {
  margin-top: 40px;
}
body .contacto__container--content .content--text .text--btn a {
  border-radius: 78px;
  background: #406BE7;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  width: 200px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  font-weight: bold;
}
body .contacto__container--content .content--text .info {
  margin-top: 70px;
}
body .contacto__container--content .content--text .info .title {
  font-size: 30px;
  padding: 30px;
  font-weight: bold;
}
body .contacto__container--content .content--text .info .content {
  border-radius: 30px;
  border: 2px solid #67F293;
  padding: 30px;
  position: relative;
}
body .contacto__container--content .content--text .info .content .ico {
  position: absolute;
  top: -7%;
  left: -4%;
  background: #67F293;
  font-weight: bold;
  font-size: 30px;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}
body .contacto__container--content .content--text .info .content p {
  font-weight: bold;
}
body .contacto__container--content .content--form form {
  border-radius: 60px;
  background: #F0F2F5;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  padding: 40px 70px;
}
@media screen and (max-width: 767px) {
  body .contacto__container--content .content--form form {
    padding: 40px 20px;
  }
}
body .contacto__container--content .content--form form h3 {
  font-size: 35px;
  font-weight: bold;
  margin-bottom: 45px;
}
body .contacto__container--content .content--form form input {
  background: none;
  border: none;
  border-bottom: 2px solid #091526;
  width: 100%;
  font-size: 20px;
  color: #091526;
  margin-bottom: 40px;
  padding: 10px 0;
  outline: none;
}
body .contacto__container--content .content--form form input::placeholder {
  color: #091526;
}
body .contacto__container--content .content--form form #inputSubmit {
  border-radius: 78px;
  background: #406BE7;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  border: none;
  width: 200px;
  transition: all 0.2s linear;
  font-weight: bold;
  font-size: 18px;
  color: white;
}
body .contacto__container--content .content--form form #inputSubmit:hover {
  background: #757575;
}
body .conoce {
  margin-top: 150px;
  position: relative;
}
body .conoce::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background: url(../images/bg\ \(1\)\ 8.png);
  width: 90px;
  height: 100%;
}
body .conoce::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  background: url(../images/bg\ \(1\)\ 7.png);
  width: 180px;
  height: 100%;
}
@media screen and (max-width: 767px) {
  body .conoce {
    margin-top: 50px;
  }
}
body .conoce__container--title {
  font-size: 45px;
  font-weight: bold;
  margin-bottom: 20px;
}
body .conoce__container .line {
  height: 5px;
  background: #406BE7;
  width: 100%;
  transform: translateX(-20%);
  margin-bottom: 20px;
}
body .conoce__container--content .content--logos {
  display: flex;
  align-items: center;
  gap: 50px;
}
@media screen and (max-width: 767px) {
  body .conoce__container--content .content--logos {
    flex-direction: column;
  }
}
body .conoce__container--content .content--logos .logo {
  border-radius: 20px;
  background: #091526;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
}
body .conoce__container--content .content--logos .logo img {
  height: 70px;
}
body .conoce__container--content .content--info {
  margin-top: 50px;
}
body .conoce__container--content .content--info .info--title {
  background: #406BE7;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 40px;
}
body .conoce__container--content .content--info p {
  font-size: 20px;
  margin-top: 20px;
}
body .conoce__container--content .content--info a {
  border-radius: 70px;
  background: #406BE7;
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 45px;
  font-weight: bold;
  margin-top: 40px;
}
body footer {
  margin-top: 100px;
}
body .footer__container {
  display: flex;
  justify-content: flex-end;
  padding: 30px 0;
}
@media screen and (max-width: 767px) {
  body .footer__container {
    justify-content: center;
  }
}
body .footer__container img {
  height: 40px;
}

.swal2-confirm {
  border-radius: 70px !important;
  background: linear-gradient(90deg, #CC0E77 0%, #8C26CA 100%) !important;
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 45px;
  font-weight: bold;
  box-shadow: none;
}
.swal2-confirm:active {
  box-shadow: none;
}
.swal2-confirm:focus {
  box-shadow: none !important;
}

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

@keyframes spinner-d3wgkg {
  to {
    transform: rotate(1turn);
  }
}

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