

/* TABLET */
@media (max-width: 1024px) {

  .page-wrapper {
    margin: 90px 24px;
    padding: 45px 35px;
  }

  h1 {
    font-size: 30px;
  }

  h2 {
    font-size: 20px;
  }
}


/* MOBILE */
@media (max-width: 768px) {

  /* NAVBAR */
  .nav-container {
    padding: 12px 16px;
  }

  .nav-logo img {
    height: 42px;
  }

  .menu-button {
    font-size: 24px;
  }

  .nav-menu {
    width: 92%;
    right: 4%;
    top: 70px;
  }

  /* PAGE CONTENT  */
  .page-wrapper {
    margin: 90px 14px;
    padding: 26px 20px;
  }

  h1 {
    font-size: 24px;
    line-height: 1.3;
  }

  h2 {
    font-size: 18px;
    margin-top: 30px;
  }

  p,
  li {
    font-size: 14px;
    line-height: 1.6;
  }

  ul {
    padding-left: 18px;
  }

  /* CONTACT SECTION */
  .contact-section {
    padding: 60px 18px;
  }

  .contact-container {
    flex-direction: column;
    gap: 35px;
  }

  .contact-left,
  .contact-form-card {
    width: 100%;
  }

  .contact-left h2 {
    font-size: 28px;
  }

  .row {
    flex-direction: column;
  }

  .contact-btn {
    width: 100%;
  }

  /* SOCIAL ICONS  */
  .social-links {
    display: flex;
    gap: 18px;
  }

  .social-links img {
    width: 36px;
    height: 36px;
  }

  /* FOOTER */
  .footer {
    padding: 60px 20px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-col.brand img {
    height: 60px;
  }

  .footer-col h4 {
    font-size: 18px;
  }

  .footer-col a {
    font-size: 14px;
  }

  .subscribe input,
  .subscribe button {
    width: 100%;
  }

  footer {
    font-size: 13px;
    margin: 30px 10px 10px;
    text-align: center;
  }
}


/* SMALL MOBILE  */
@media (max-width: 480px) {

  h1 {
    font-size: 22px;
  }

  h2 {
    font-size: 17px;
  }

  .contact-left h2 {
    font-size: 25px;
  }

  .social-links img {
    width: 32px;
    height: 32px;
  }
}
