@media (max-width: 1199px) {
  /* navigation style start */
  .nav-primary {
    gap: 16px;
  }
  .nav-link {
    padding: 22.5px 0px;
  }
  .nav-secondary {
    gap: 15px;
  }

  /* contact style start */
  .cta-left-col {
    flex: 0 1 500px;
  }
}
@media (max-width: 1024px) {
  /* common & reuseable component styles */
  .btn {
    padding: 11px 14px;
    font-size: 16px;
    line-height: 20px;
  }
  .section-space {
    margin-bottom: 60px;
  }
  .section-py {
    padding: 40px 0px;
  }
  .title {
    margin-bottom: 20px;
  }
  .title-start {
    align-items: center;
    text-align: center;
  }
  :where(h1),
  section h1 {
    font-size: 36px;
    line-height: 48px;
    max-width: 100%;
  }
  :where(h2) {
    font-size: 30px;
  }
  .sub_title {
    font-size: 20px;
  }
  :where(h3, .h3) {
    font-size: 20px;
  }

  /* navigation style start */
  .header-inner {
    padding: 17px 0px;
  }

  .header-nav {
    position: fixed;
    top: 69px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #f3f9f5;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 32px;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    overflow-y: auto;
  }

  .nav-primary {
    flex-direction: column;
    width: 100%;
    align-items: flex-start;
    background-color: transparent;
    border: none;
    border-radius: 0px;
    gap: 0;
    flex: 0 0 auto;
  }

  .nav-primary .nav-item {
    display: flex;
    width: 100%;
    border-radius: 0px;
  }

  .nav-primary .nav-item .nav-link {
    display: flex;
    width: 100%;
    border-radius: 0px;
    max-width: 100%;
    padding: 16px 0px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }

  .nav-secondary {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    gap: 16px;
  }

  .nav-secondary li {
    width: 100%;
    background-color: transparent;
    border: none;
  }

  .nav-secondary li a {
    padding: 0px;
    width: 100%;
    text-align: start;
  }
  .nav-secondary li:last-child {
    width: 130px;
    max-width: 100%;
  }
  .nav-secondary li:last-child a {
    padding: 10px 12px;
    width: auto;
    text-align: start;
    display: inline-flex;
  }

  .nav-secondary li a:hover {
    background-color: transparent;
    color: #000000;
  }

  .header-nav.active {
    transform: translateX(0);
  }

  .menu-toggle {
    display: flex;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 24px;
    position: relative;
    z-index: 100;
  }

  .menu-toggle .icon-bar {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #6aa87c;
    position: absolute;
    left: 0;
    transition: all 0.3s ease-in-out;
  }

  .menu-toggle .icon-bar:nth-child(1) {
    top: 0;
  }

  .menu-toggle .icon-bar:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
  }

  .menu-toggle .icon-bar:nth-child(3) {
    bottom: 0;
  }

  .menu-toggle.active .icon-bar:nth-child(1) {
    transform: rotate(45deg);
    top: 11px;
  }

  .menu-toggle.active .icon-bar:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active .icon-bar:nth-child(3) {
    transform: rotate(-45deg);
    bottom: 11px;
  }
  /* hero style start */

  .main-hero__wrapper {
    padding: 40px 0 0 0;
    flex-direction: column;
    gap: 24px;
    position: static;
  }
  .main-hero__content {
    max-width: 100%;
    gap: 20px;
  }
  .main-hero__text {
    gap: 16px;
  }

  .main-hero__image {
    position: static;
    max-width: 100%;
    height: 100%;
  }

  /* how We support styles start */

  .support-grid-container {
    grid-template-columns: 1fr;
  }

  /* feature style start */
  .features-grid-container {
    grid-template-columns: repeat(2, 1fr);
  }

  /* privacy style start */
  .privacy-heading {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
  }
  .privacy-sub-heading,
  .privacy-heading-left {
    flex: 0 0 auto;
  }
  .privacy-sub-heading {
    text-align: center;
    max-width: 800px;
  }
  .privacy-grid-container {
    grid-template-columns: repeat(2, 1fr);
  }

  /* join movement style start */
  .movement-title {
    align-items: start;
    text-align: start;
    margin-bottom: 0;
  }
  .movement-col {
    gap: 20px;
  }

  /* contact style start */
  .cta-grid {
    flex-direction: column;
    gap: 20px;
    padding: 40px;
  }
  .cta-left-col {
    flex: 0 0 auto;
    max-width: 100%;
  }
  .cta-right-col {
    flex: 0 0 auto;
    gap: 20px;
    max-width: 100%;
  }
  .cta-title {
    max-width: 700px;
    margin-bottom: 0;
  }
  .envelope-link {
    justify-content: center;
    margin: 0px;
  }
}
@media (max-width: 767px) {
  /* common & reuseable component styles */
  .btn {
    padding: 9px 14px;
    font-size: 14px;
    line-height: 18px;
  }

  :where(h1),
  section h1 {
    font-size: 30px;
    line-height: 40px;
    max-width: 100%;
  }
  :where(h2) {
    font-size: 26px;
  }
  .text-lg {
    font-size: 16px;
    line-height: 24px;
  }

  /* hero style start */
  .main-hero__wrapper {
    padding: 30px 0 0 0;
  }
  .main-hero__description {
    font-size: 16px;
    line-height: 24px;
  }

  /* Introducing style start */

  .about-intro__content {
    flex-direction: column;
    gap: 20px;
  }
  .about-intro__image,
  .about-intro__text {
    flex: 0 0 auto;
    max-width: 100%;
  }
  .about-intro__description {
    font-size: 16px;
    line-height: 24px;
  }

  /* feature style start */

  .features-card {
    padding: 15px;
    gap: 12px;
  }
  .feature-content {
    gap: 10px;
  }
  .feature-card-title {
    font-size: 18px;
  }

  /* about style start */
  .about-card {
    gap: 15px;
  }
  .quote-box {
    font-size: 16px;
    line-height: 24px;
    padding: 16px 45px;
  }
  .quote-box::before {
    top: 16px;
    left: 16px;
  }
  .quote-box::after {
    bottom: 16px;
    right: 16px;
  }
  /* privacy style start */
  .privacy-grid-container,
  .features-grid-container {
    gap: 16px;
  }
  .privacy-card,
  .privacy-content {
    gap: 8px;
  }
  /* join movement style start */
  .movement-title {
    align-items: start;
    text-align: start;
    margin-bottom: 0;
  }
  .movement-col {
    gap: 16px;
  }

  /* contact style start */
  .cta-grid {
    flex-direction: column;
    padding: 20px;
  }
  .cta-right-col {
    gap: 16px;
  }
  .cta-title {
    max-width: 100%;
    margin-bottom: 0;
  }

  /* footer style start */ /*top*/
  .footer {
    padding: 22px 0px;
  }
  .footer-top {
    flex-direction: column;
    gap: 16px;
    padding-bottom: 16px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    padding-top: 16px;
  }
  .footer-widget {
    gap: 22px;
  }
}

@media (max-width: 576px) {
  /* common & reuseable component styles */

  .section-space {
    margin-bottom: 40px;
  }
  /* navigation style start */
  .header-logo {
    max-width: 150px;
  }
  .header-logo img {
    max-width: 150px;
  }
  .header-nav {
    top: 64px;
  }

  /* how We support styles start */

  .support-card-subgrid {
    flex-direction: column;
  }
  .support-card-content {
    border-right: none;
    border-bottom: 1px solid #353535;
    width: 100%;
    min-height: auto;
    gap: 10px;
  }
  .companies-card-icon {
    width: 30px;
    height: 30px;
  }
  .companies-card-icon img {
    max-width: 15px;
    max-height: 15px;
  }
  /* feature style start */
  .features-grid-container {
    grid-template-columns: 1fr;
  }
  .feature-img img {
    max-width: 100px;
  }

  /* about style start */
  .about-grid-container {
    gap: 20px;
    grid-template-columns: 1fr;
  }

  /* feature style start */
  .privacy-grid-container {
    grid-template-columns: 1fr;
  }

  /* join movement style start */
  .movement-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }
  .movement-title,
  .movement-buttons {
    align-items: center;
    margin-bottom: 0;
  }

  /* contact style start */

  .cta-btns {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 15px;
  }

  /* footer style start */ /*top*/

  .footer-middle {
    gap: 10px;
    flex-direction: column;
  }
  .social-links {
    gap: 10px;
  }
  .social-links a img {
    max-width: 20px;
  }
  .footer-widget {
    flex-direction: column;
    gap: 10px;
  }
  .rights-para {
    font-size: 14px;
  }
}
