@media screen and (width >= 992px) {
  /* ========= NAV ========= */
  nav#navbar {
    display: flex;
  }

  nav#hamburger {
    display: none;
  }

  /* nav#navbar .nav-links {
    display: none;
  } */

  /* ========= HERO ========= */

  #hero {
    background: url('../img/hero-bg.svg') no-repeat center center / cover;
    height: 100dvh;
    padding: 20px;
    scroll-snap-align: start;
  }

  #hero .hero-content {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 280px 0 0 52px;
    max-width: 650px;
  }

  #hero .hero-content h1 {
    font-size: 72px;
    font-weight: 700;
    line-height: 1.25;
    margin: 0 0 28px;
  }

  #hero .hero-content p {
    font-size: 18px;
    line-height: 1.4;
    padding-bottom: 24px;
  }

  /* ========= VISION ========= */
  #vision {
    background:
      linear-gradient(to right, #01021d 0%, #01021d00 45%),
      url('../img/vision-bg.svg') no-repeat center center / cover;
    height: 100dvh;
    padding: 20px;
  }

  #vision .vision-content {
    display: flex;
    flex-direction: column;
    margin: 164px 0 0 52px;
    max-width: 560px;
  }

  #vision .vision-content h2 {
    font-size: 72px;
    font-weight: 700;
    line-height: 1.25;
    margin: 0 0 28px;
  }

  #vision .vision-content p {
    font-size: 18px;
    font-weight: 300;
    line-height: 1.4;
    padding-bottom: 24px;
  }

  /* ========= SOLUTIONS ========= */
  #solutions {
    background: linear-gradient(135deg, #01013a 0%, #0c1c4c 100%);
    padding: 156px 0 64px;
    scroll-snap-align: start;
  }

  #solutions .solutions-content {
    padding-top: 0;
  }

  #solutions .solutions-content h2 {
    font-size: 72px;
    font-weight: 700;
    line-height: 1.25;
    margin: 0 0 32px;
    text-align: center;
  }

  #solutions .solutions-content p {
    font-size: 18px;
    font-weight: 300;
    line-height: 1.4;
    margin: auto;
    max-width: 800px;
    padding-bottom: 48px;
    text-align: center;
  }

  #solutions .solutions-content .solution-cards {
    align-items: stretch;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    margin: auto;
    max-width: 1440px;
    overflow: visible;
  }

  #solutions .solutions-content .card {
    border-radius: 16px;
    flex: 0 0 calc(25% - 24px);
    padding: 32px 24px;
    transition: all 0.25s ease-in-out;
  }

  #solutions .solutions-content .card:hover {
    transform: scale(1.05);
  }

  #solutions .solutions-content .card h3 {
    color: var(--color-downriver);
    font-size: 24px;
    font-weight: 600;
    line-height: 1.25;
    margin: 0;
    max-width: 80%;
  }

  /* ========= CONSULTATION ========= */
  #consultation {
    padding: 156px 0 64px;
    scroll-snap-align: start;
  }

  #consultation .consultation-content {
    padding-top: 0;
  }

  #consultation .consultation-content h2 {
    font-size: 72px;
    font-weight: 700;
    line-height: 1.25;
    margin: 0 0 32px;
    text-align: center;
  }

  #consultation .consultation-content p {
    font-size: 18px;
    font-weight: 300;
    line-height: 1.4;
    margin: auto;
    max-width: 750px;
    padding-bottom: 48px;
    text-align: center;
  }

  #consultation .consultation-content form {
    display: flex;
    flex-direction: column;
    gap: 48px;
    margin: auto;
    max-width: 800px;
  }

  #consultation .consultation-content form .submit-container {
    margin: auto;
    max-width: 700px;
    width: 700px;
  }

  /* ========= SHARED ========= */
  .mouse-animation {
    bottom: 36px;
    display: block;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    z-index: 9999;
  }

  .input-container {
    margin: 0 auto;
    max-width: 700px;
    position: relative;
    width: 100%;
  }

  .input-field {
    background-color: transparent;
    border: none;
    color: #3bdafa;
    font-size: 16px;
    outline: none;
    padding: 24px 0 8px;
    width: 100%;
  }

  .input-underline {
    background-color: #3d4eae;
    bottom: 0;
    height: 1px;
    left: 0;
    position: absolute;
    transition: background-color 0.3s;
    width: 100%;
  }

  .input-label {
    color: #3bdafa;
    font-size: 20px;
    font-weight: 200;
    left: 16px;
    letter-spacing: 0.6px;
    pointer-events: none;
    position: absolute;
    top: 12px;
    transition: all 0.3s ease;
  }

  .textarea-container {
    margin: 0 auto;
    max-width: 700px;
    position: relative;
    width: 100%;
  }

  .textarea-field {
    color: #3bdafa;
    font-size: 16px;
    height: 100px;
    line-height: 1.5;
    overflow-y: auto;
    padding: 24px 8px 8px 0;
    width: 100%;
  }

  .textarea-label {
    font-size: 20px;
    left: 16px;
    letter-spacing: 0.6px;
    top: 2px;
  }

  .custom-checkbox .label-text {
    font-size: 16px;
  }
}
