/* =========================================================
   LARGE DESKTOP
========================================================= */

@media (min-width: 1500px) {

  html {
    font-size: 11px;
  }

}

@media (min-width: 1800px) {

  html {
    font-size: 12px;
  }

}

@media (min-width: 2200px) {

  html {
    font-size: 13px;
  }

}



/* =========================================================
   LAPTOP
========================================================= */

@media (max-width: 1280px) {

  html {
    font-size: 9px;
  }

  .hero-inner {
    gap: 6rem;
  }

  .capital-vision {
    margin-bottom: -24rem;
  }

}



/* =========================================================
   TABLET
========================================================= */

@media (max-width: 992px) {

  .container {
    padding: 0 3rem;
  }


  /* -----------------
     HEADER
  ----------------- */

  .nav {
    display: none;
  }

  .menu-toggle,
  .mobile-home {
    display: block;
  }

  .navbar-inner {
    justify-content: space-between;
  }

  .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 18rem !important;
  }


  /* -----------------
     HERO
  ----------------- */

  .hero {
    min-height: auto;
    padding: 16rem 0 8rem;
    border-radius: 0 0 12rem 0;
  }

  .hero-inner {
    flex-direction: column;
    gap: 5rem;
    text-align: center;
  }

  .hero-content,
  .hero-media {
    width: 100%;
    flex: none;
  }

  .hero-media {
    justify-content: center;
  }

  .hero-media img {
    width: min(100%, 52rem);
  }

  .hero-content h1 {
    font-size: 4.8rem;
    line-height: 4.8rem;
  }


  /* -----------------
     ABOUT
  ----------------- */

  .about {
    margin-top: -18rem;
    padding-top: 24rem;
    padding-bottom: 8rem;
    border-radius: 0;
  }

  .about .wrap {
    max-width: 100%;
  }

  .about .wrap p {
    font-size: 2rem;
    line-height: 2.8rem;
  }


  /* -----------------
     STATS
  ----------------- */

  .content-stats {
    height: auto;
    padding: 3rem;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
  }

  .stat {
    width: calc(50% - 2rem);
    justify-content: center;
  }


  /* -----------------
     BENEFITS
  ----------------- */

  .benefits .wrap {
    flex-wrap: wrap;
    justify-content: center;
  }

  .benefit {
    width: calc(50% - 2rem);
  }


  /* -----------------
     BANNER
  ----------------- */

  .banner-content {
    aspect-ratio: auto;
    min-height: 42rem;
    padding: 5rem;

    background-image:
      linear-gradient(
        180deg,
        rgba(0,27,140,.92) 0%,
        rgba(0,27,140,.65) 100%
      ),
      url("images/img-banner.jpg");

    background-size: cover;
    background-position: center;
  }

  .banner-content .wrap {
    max-width: 100%;
  }


  /* -----------------
     CAPITAL
  ----------------- */

  .capital-top {
    grid-template-columns: 1fr;
    gap: 5rem;
  }

  .capital-content h2,
  .capital-content p {
    max-width: 100%;
  }

  .capital-vision {
    max-width: 60rem;
    width: 100%;
    margin: auto;
    margin-bottom: -14rem;
  }


  /* -----------------
     PILLARS
  ----------------- */

  .pillars-section {
    padding-top: 18rem;
  }

  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: -6rem;
  }


  /* -----------------
     WHY
  ----------------- */

  .why-section {
    padding-top: 12rem;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }


  /* -----------------
     VALOR
  ----------------- */

  .valor-top {
    grid-template-columns: 1fr;
  }

  .valor-content h2,
  .valor-content p {
    max-width: 100%;
  }

  .valor-section {
    background-size: cover;
  }


  /* -----------------
     CARTERA
  ----------------- */

  .cartera-grid {
    grid-template-columns: 1fr;
    margin-bottom: -6rem;
  }

  .cartera-wrap {
    margin-top: -10rem;
  }


  /* -----------------
     PROCESS
  ----------------- */

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 6rem 4rem;
  }

  .process-line {
    display: none;
  }


  /* -----------------
     CTA
  ----------------- */

  .cta-box {
    flex-direction: column;
    text-align: center;
    padding: 5rem 4rem;
    background-size: cover;
  }

  .cta-content,
  .cta-media {
    width: 100%;
    flex: none;
  }

  .cta-media {
    justify-content: center;
  }

  .cta-media img {
    width: min(100%, 28rem);
  }


  /* -----------------
     CONTACT
  ----------------- */

  .contact {
    padding-top: 14rem;
  }

  .contact-inner {
    flex-direction: column;
  }

  .contact-form {
    width: 100%;
  }


  /* -----------------
     FOOTER
  ----------------- */

  .footer-inner {
    flex-direction: column;
    gap: 4rem;
    align-items: center;
    text-align: center;
  }

  .footer-left {
    flex-direction: column;
    gap: 3rem;
  }

  .footer-right {
    align-items: center;
  }

}



/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

  html {
    font-size: 9px;
  }

  .container {
    padding: 2rem;
  }


  /* -----------------
     HERO
  ----------------- */

  .hero {
    padding-top: 14rem;
  }

  .hero-content h1 {
    font-size: 3.8rem;
    line-height: 4rem;
  }

  .hero-content p {
    font-size: 1.8rem;
    line-height: 2.8rem;
  }


  /* -----------------
     ABOUT
  ----------------- */

  .about {
    margin-top: -12rem;
    padding-top: 18rem;
  }

  .about .wrap h2,
  .section-title,
  .benefits .head h2,
  .capital-content h2,
  .valor-content h2,
  .cta-content h2 {
    font-size: 3rem;
    line-height: 3.6rem;
  }


  /* -----------------
     STATS
  ----------------- */

  .content-stats {
    flex-direction: column;
    align-items: stretch;
  }

  .stat {
    width: 100%;
    justify-content: flex-start;
  }


  /* -----------------
     BENEFITS
  ----------------- */

  .benefit {
    width: 100%;
  }


  /* -----------------
     PILLARS
  ----------------- */

  .pillars-grid {
    grid-template-columns: 1fr;
    margin-bottom: 0;
  }

  .pillar-card {
    min-height: auto;
  }

  .pillars-section {
    padding-bottom: 6rem;
  }

  .why-section {
    padding-top: 8rem;
  }


  /* -----------------
     PROCESS
  ----------------- */

  .process-grid {
    grid-template-columns: 1fr;
    gap: 5rem;
  }

  .process-number {
    width: 11rem;
    height: 11rem;
    font-size: 5rem;
  }


  /* -----------------
     CTA
  ----------------- */

  .cta-box {
    padding: 4rem 2.5rem;
  }


  /* -----------------
     CONTACT
  ----------------- */

  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-grid textarea,
  .btn-send {
    grid-column: span 1;
  }

}



/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

  html {
    font-size: 9px;
  }

  .hero-content h1 {
    font-size: 3.2rem;
    line-height: 3.4rem;
  }

  .hero {
    border-radius: 0 0 8rem 0;
  }

  .banner-content {
    padding: 4rem 3rem;
  }

  .capital-vision {
    margin-bottom: -8rem;
  }

  .pillars-section {
    padding-top: 12rem;
  }

  .cta-media img {
    width: 80%;
  }
  
  .footer-text {
    padding-left: 0;
    background-position: center top;
    padding-top: 6rem;
    }
    .footer-text .label {
    font-size: 1.4rem;
    line-height: 1.8rem;
    }
   .footer-text .info {
   font-size: 1.8rem;
   line-height: 2.4rem;
   }

}