/*clases*/
:root {
  --main-color: #00ffc0;
  --active-color: #2745ac;
  --back-color: #101c3b;
  --white-color: #ffffff;
}

/*clases*/

body {
  background-color: var(--back-color);
  font-family: "Roboto", sans-serif;
  color: var(--white-color);
}

/* navbar */
.navbar-toggler {
  border: 1px solid var(--white-color);
}
.navbar-toggler .navbar-toggler-icon {
  background-image: url("../img/descarga.svg");
}
.navbar {
  background-color: rgba(16, 28, 59, 0.33);
  backdrop-filter: blur(24px);
  box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.33);
}

.navbar-brand img {
  height: 90px;
}

.navbar-nav .nav-item .nav-link {
  color: var(--white-color);
}
.navbar-nav .nav-item .nav-link.active,
.navbar-nav .nav-item .nav-link:hover {
  color: var(--main-color);
}

/* main */
.bg-main {
  background-image: url("../img/main.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.main-wrap {
  height: 100vh;
}

.main-wrap p {
  font-size: 2rem;
  font-weight: 300;
  text-transform: uppercase;
}

.main-wrap h1 {
  font-size: 4rem;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--back-color);
  background-color: var(--white-color);
  padding: 15px 35px;
}

.main-wrap h2 {
  font-size: 3rem;
  font-weight: 900;
  text-transform: uppercase;
}

.main-wrap img {
  width: 256px;
}

/* c5 */
.global-padding {
  padding-top: 100px;
  padding-bottom: 100px;
}
.img-wrap {
  position: relative;
}
.img-wrap img {
  display: block;
  position: relative;
  width: 80%;
  margin: 0 auto;
}
.custom-bg-white {
  background-color: var(--white-color);
}

.invert-style {
  color: var(--back-color);
  background-color: var(--white-color);
  padding: 15px 35px;
  display: inline-block;
  font-weight: 900;
}
.custom-padding {
  padding-top: 100px;
  padding-bottom: 100px;
}

/* pilares */
.custom-bg-light {
  background-color: var(--active-color);
  padding: 30px;
  border-radius: 24px;
  width: 100%;
}
.pilar-title {
  color: var(--back-color);
  font-weight: 900;
  background-color: var(--white-color);
  border-radius: 24px;
  padding: 30px;
}

.custom-grid {
  background-color: var(--back-color);
  border-radius: 24px;
  color: var(--white-color);
  padding: 30px;
}

.custom-grid p {
  margin: 0 5px;
}

.custom-grid strong {
  font-size: 3em;
  line-height: normal;
}

.custom-grid span {
  font-size: 1.5em;
}

.custom-flex {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.custom-flex-2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.parent {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.div3 {
  grid-row-start: 2;
}

.div4 {
  grid-row-start: 2;
}

.div5 {
  grid-row-start: 3;
}

.div6 {
  grid-row-start: 3;
}

.div7 {
  grid-row-start: 4;
}

.div8 {
  grid-row-start: 4;
}

.div9 {
  grid-column: span 2 / span 2;
  grid-row-start: 5;
}

.invert-style-blue {
  color: var(--white-color);
  background-color: var(--back-color);
  padding: 15px 35px;
  display: inline-block;
  font-weight: 900;
}

.text-blue {
  color: var(--back-color);
}

.text-big {
  font-size: 2.5em;
}

.custom-img-wrap {
  position: relative;
}
.custom-img-wrap img {
  position: relative;
  margin: 0 auto 20px auto;
  width: 100%;
  border-radius: 24px;
}

.text-medium {
  font-size: 1.5em;
}

.custom-detail {
  margin-bottom: 30px;
}
.custom-detail p {
  font-size: 1.5em;
  text-align: center;
}

@media all and (max-width: 1199px) {
  .custom-img-wrap img {
    display: inline-block;
    margin: 2%;
    width: 45%;
  }
}
@media all and (max-width: 991px) {
  .custom-img-wrap img {
    width: 95%;
  }
  .parent {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 8px;
  }
  .div2 {
    grid-row-start: 2;
  }
  .div3 {
    grid-row-start: 3;
  }
  .div4 {
    grid-row-start: 4;
  }
  .div5 {
    grid-row-start: 5;
  }
  .div6 {
    grid-row-start: 6;
  }
  .div7 {
    grid-row-start: 7;
  }
  .div8 {
    grid-row-start: 8;
  }
  .div9 {
    grid-column: auto;
    grid-row-start: 9;
  }
}

.custom-number p {
  text-align: center;
  font-size: 3em;
  font-weight: 900;
  color: var(--back-color);
  background-color: var(--white-color);
  padding: 30px;
  border-radius: 50px;
}
.custom-gap {
  gap: 20px;
}

@media all and (max-width: 767px) {
  .custom-number p {
    padding: 10px;
  }
}

.img-desktop {
  display: block;
}
.img-mobile {
  display: none;
}

@media all and (max-width: 991px) {
  .img-desktop {
    display: none;
  }
  .img-mobile {
    display: block;
  }
}

/* descarga */
.download-link {
  position: relative;
}
.download-link span {
  position: relative;
  display: inline-block;
  z-index: 3;
  top: 50%;
  left: 50%;
  background-color: var(--active-color);
  color: var(--white-color);
  padding: 15px 35px;
  border-radius: 50px;
  font-weight: 900;
  text-transform: uppercase;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.download-link:hover span {
  background-color: var(--main-color);
  color: var(--back-color);
}

footer .custom-link {
  text-decoration: none;
  color: var(--main-color);
}

.footer-socials {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 20px;
  list-style-type: none;
}

.footer-socials li a {
  color: var(--main-color);
  font-size: 2em;
}

.img-wrap-2 {
  position: relative;
}
.img-wrap-2 img {
  display: block;
  position: relative;
  width: 60%;
  margin: 0 auto;
}
