/* =========================
   TABLETS
========================= */

@media (max-width: 992px) {
  section {
    padding: 60px 20px;
  }

  .advisor-container {
    gap: 50px;
  }

  .process-wide {
    width: 100%;
  }
}

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

@media (max-width: 768px) {
  /* Typography */

  section h2 {
    font-size: 1.9rem;
  }

  header h1 {
    font-size: 2rem;
  }

  header p {
    font-size: 1rem;
  }

  .cta-highlight {
    font-size: 1.2rem;
  }

  /* Advisor */

  .advisor-container {
    flex-wrap: wrap;

    gap: 40px;
  }

  .advisor-bubble {
    padding: 40px 30px;

    border-radius: 50px;

    max-width: 100%;
  }

  .advisor-bubble h2 {
    font-size: 1.7rem;
  }

  .advisor-image img {
    max-width: 220px;
  }

  /* Cards */

  .card {
    padding: 28px;
  }

  /* ===  ABOUT SECTION MOBILE */

  @media screen and (max-width: 768px) {
    .about-card {
      display: flex !important;

      flex-direction: column !important;

      align-items: center !important;

      text-align: center;

      padding: 36px 24px !important;

      gap: 28px !important;
    }

    .about-content {
      width: 100%;

      text-align: right !important;
    }

    .about-image {
      width: 100%;

      display: flex;

      justify-content: center;
    }

    .about-image img {
      width: 180px !important;

      max-width: 70vw;

      height: auto;

      border-radius: 28px;
    }
  }

  /* Contact */

  .contact-form {
    padding: 35px 25px;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 16px;
  }

  /* Buttons */

  .btn,
  .btn-small {
    width: 100%;

    text-align: center;
  }
}

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

@media (max-width: 480px) {
  header {
    padding: 60px 20px;
  }

  section {
    padding: 50px 16px;
  }

  .advisor-bubble {
    padding: 35px 24px;
  }

  .advisor-bubble h2 {
    font-size: 1.5rem;
  }

  .card {
    border-radius: 26px;
  }

  .process-box {
    padding: 35px 28px;
  }

  .contact-form {
    border-radius: 30px;
  }
}
.about-card {
  flex-direction: column;

  text-align: center;
}

.about-content {
  text-align: right;
}
