/**
 * Homepage mobile layer — isolated from desktop.
 * EVERY rule must stay inside @media (max-width: 1200px).
 * Designed at 320px; larger widths within the shell only get additive tweaks.
 * Loaded only from index.php, after responsive.css / custom-responsive.css.
 */

@media screen and (max-width: 1200px) {
  /* ------------------------------------------------------------------ */
  /* 1. Shell / overflow / gutters (320px-first)                        */
  /* ------------------------------------------------------------------ */
  body.home-page {
    overflow-x: hidden;
    min-width: 320px;
  }

  body.home-page .wrapper {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
  }

  body.home-page .content-width {
    width: 100%;
    max-width: 100%;
    padding-left: 16px;
    padding-right: 16px;
    box-sizing: border-box;
  }

  body.home-page img,
  body.home-page video,
  body.home-page iframe,
  body.home-page svg {
    max-width: 100%;
  }

  body.home-page .section1 {
    height: auto !important;
    width: 100%;
  }

  /* ------------------------------------------------------------------ */
  /* 2. Mobile header + overlay menu                                    */
  /* ------------------------------------------------------------------ */
  body.home-page .mobile-header {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 10px 16px;
    box-sizing: border-box;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.96);
    transform: translateY(0);
    transition: transform 0.28s ease;
    will-change: transform;
  }

  body.home-page .mobile-header.is-hidden {
    transform: translateY(-100%);
    pointer-events: none;
  }

  body.home-page .section1 {
    padding-top: 52px;
  }

  body.home-page .section1 .mobile-header .header-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
  }

  body.home-page .section1 .mobile-header .header-row .column-header {
    max-width: none;
    flex: 1 1 auto;
    min-width: 0;
  }

  body.home-page .section1 .mobile-header .header-row .column-header .logo {
    width: auto;
    max-width: 88px;
    margin: 0 auto;
  }

  body.home-page .section1 .mobile-header .header-row .column-header .logo img {
    max-width: 100%;
    width: auto;
    height: 22px;
    display: block;
    margin: 0 auto;
  }

  body.home-page .section1 .mobile-header .header-row .column-header:last-child {
    display: flex;
    justify-content: flex-end;
  }

  body.home-page .mobile-header #Layer_1,
  body.home-page .mobile-header .fishleft svg {
    width: 22px;
    height: 22px;
  }

  body.home-page .mobile-header .left_icon .menu-toggle i {
    font-size: 22px;
    line-height: 1;
  }

  body.home-page .overlay nav {
    top: 42%;
    font-size: 22px;
  }

  body.home-page .overlay ul {
    max-width: 90%;
  }

  body.home-page .overlay ul li {
    max-width: 100%;
    flex: 100%;
    padding: 8px 0;
  }

  body.home-page .overlay ul li a {
    font-size: 20px;
    word-break: break-word;
  }

  body.home-page #overlay .toggle-close {
    top: 28px;
    right: 14px;
    font-size: 22px;
  }

  body.home-page .menu-social-box {
    right: 16px;
    max-width: calc(100% - 32px);
  }

  body.home-page .menu-social-box .greatplace img {
    width: 3.2em;
  }

  /* ------------------------------------------------------------------ */
  /* 3. Mobile intro / hero                                             */
  /* ------------------------------------------------------------------ */
  body.home-page .mobile-intro {
    display: block;
    position: relative;
    float: none;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  body.home-page .mobile-intro video {
    width: 100%;
    height: auto;
    min-height: 0;
    float: none;
    display: block;
    object-fit: cover;
  }

  body.home-page .mobile-particle-slider {
    width: 100%;
    max-width: 100%;
    padding: 0 16px;
    box-sizing: border-box;
  }

  body.home-page #home-mobile-slider {
    width: 100%;
  }

  body.home-page #home-mobile-slider .item picture {
    position: relative;
    height: auto;
    min-height: 160px;
    max-height: 220px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  body.home-page #home-mobile-slider.owl-carousel .owl-item img {
    width: auto;
    max-width: min(220px, 70vw);
    height: auto;
    margin: 0 auto;
  }

  body.home-page .mobile-slider-button {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 8px 16px 20px;
    width: 100%;
    box-sizing: border-box;
  }

  body.home-page .mobile-slider-button .default-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    max-width: 100%;
    margin: 0 auto;
    transform: none;
    -webkit-transform: none;
    letter-spacing: 1.5px;
  }

  body.home-page .mobile-slider-button .default-button .button-background .left,
  body.home-page .mobile-slider-button .default-button .button-background .right {
    width: 36px;
    -webkit-transform: none;
    transform: none;
  }

  body.home-page .mobile-slider-button .default-button .button-background .left:before,
  body.home-page .mobile-slider-button .default-button .button-background .right:before {
    width: 36px;
    height: 36px;
  }

  body.home-page .mobile-slider-button .default-button .text {
    font-size: 11px;
    line-height: 1.2;
    letter-spacing: 1.5px;
    white-space: nowrap;
    padding: 0 28px 0 12px;
  }

  body.home-page .mobile-slider-button .default-button .plus-icon {
    width: 14px;
    height: 14px;
    right: 10px;
  }

  /* ------------------------------------------------------------------ */
  /* 4. Purpose                                                         */
  /* ------------------------------------------------------------------ */
  body.home-page .our-purpose-section {
    margin-top: 0;
    padding: 36px 0 40px;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
  }

  body.home-page .our-purpose-section.home-wrapper {
    margin-top: 0;
  }

  body.home-page .our-purpose-section .content-width {
    padding-left: 16px;
    padding-right: 16px;
  }

  body.home-page .our-purpose-section .text-left {
    text-align: center;
    float: none;
    width: 100%;
  }

  body.home-page .our-purpose-section .content-width h1 {
    font-size: 26px;
    line-height: 34px;
    margin-bottom: 16px;
    word-wrap: break-word;
    text-align: center;
  }

  body.home-page .our-purpose-section p {
    font-size: 15px;
    line-height: 24px;
    color: #141414;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 34em;
  }

  body.home-page .our-purpose-section .default-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto 0;
    height: 36px;
    transform: none;
    -webkit-transform: none;
    letter-spacing: 1.5px;
  }

  body.home-page .our-purpose-section .default-button .button-background .left,
  body.home-page .our-purpose-section .default-button .button-background .right {
    width: 36px;
    -webkit-transform: none;
    transform: none;
  }

  body.home-page .our-purpose-section .default-button .button-background .left:before,
  body.home-page .our-purpose-section .default-button .button-background .right:before {
    width: 36px;
    height: 36px;
  }

  body.home-page .our-purpose-section .default-button .text {
    font-size: 11px;
    letter-spacing: 1.5px;
    white-space: nowrap;
    padding: 0 28px 0 12px;
  }

  /* Desktop sticky services — hide in mobile shell; carousel replaces it */
  body.home-page .home_service_section {
    display: none !important;
  }

  /* Sticky title line-height (index.php sticky_title h2) — mobile only */
  body.home-page .home_service_section .sticky_title h2 {
    line-height: 1.15;
  }

  /* ------------------------------------------------------------------ */
  /* 5. Strategy carousel (mobile block)                                */
  /* Flow: heading → image → content → CTA → dots                       */
  /* ------------------------------------------------------------------ */
  body.home-page .bussiness-strategy-section-mobile {
    display: block !important;
    height: auto !important;
    min-height: 0;
    padding: 48px 0 56px;
    overflow: hidden;
  }

  body.home-page .bussiness-strategy-section-mobile .content-width {
    padding-left: 16px;
    padding-right: 16px;
  }

  body.home-page .bussiness-strategy-section-mobile h6 {
    margin: 0 0 24px;
    padding: 0;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 1.5px;
    text-align: center;
  }

  body.home-page .bussiness-strategy-section-mobile .bussiness-scroller {
    padding-bottom: 0;
  }

  body.home-page #home-service-mobile .owl-item .item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  body.home-page .bussiness-strategy-section-mobile .carousel-heading {
    order: 1;
    font-size: 24px;
    line-height: 1.15;
    margin: 0 0 16px;
    padding: 0;
    color: #fff;
    font-weight: 600;
    text-align: center;
    width: 100%;
  }

  body.home-page #home-service-mobile .owl-item .item picture {
    order: 2;
    display: block;
    width: 100%;
    margin: 0 0 20px;
  }

  body.home-page .bussiness-strategy-section-mobile .bussiness-scroller .owl-carousel .owl-item img {
    height: 28vh;
    min-height: 160px;
    max-height: 240px;
    object-fit: cover;
    opacity: 1;
    width: 100%;
  }

  body.home-page .bussiness-strategy-section-mobile .bussiness-scroller .carousel-caption {
    order: 3;
    margin: 0;
    padding: 0 4px;
    text-align: center;
    width: 100%;
    position: relative;
    z-index: 1;
  }

  body.home-page .bussiness-strategy-section-mobile .bussiness-scroller .carousel-caption p {
    font-size: 14px;
    line-height: 22px;
    padding-bottom: 24px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  body.home-page .bussiness-strategy-section-mobile .carousel-caption .default-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    height: 36px;
    transform: none;
    -webkit-transform: none;
    letter-spacing: 1.5px;
  }

  body.home-page .bussiness-strategy-section-mobile .carousel-caption .default-button .button-background .left,
  body.home-page .bussiness-strategy-section-mobile .carousel-caption .default-button .button-background .right {
    width: 36px;
    -webkit-transform: none;
    transform: none;
  }

  body.home-page .bussiness-strategy-section-mobile .carousel-caption .default-button .button-background .left:before,
  body.home-page .bussiness-strategy-section-mobile .carousel-caption .default-button .button-background .right:before {
    width: 36px;
    height: 36px;
  }

  body.home-page .bussiness-strategy-section-mobile .carousel-caption .default-button .text {
    font-size: 11px;
    letter-spacing: 1.5px;
    white-space: nowrap;
    padding: 0 28px 0 12px;
  }

  body.home-page .bussiness-strategy-section-mobile .owl-dots {
    position: static !important;
    top: auto !important;
    right: auto !important;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 28px;
    padding: 0;
  }

  body.home-page .bussiness-strategy-section-mobile .owl-carousel button.owl-dot {
    margin: 0 6px;
  }

  /* ------------------------------------------------------------------ */
  /* 6. Video band                                                      */
  /* ------------------------------------------------------------------ */
  body.home-page .video-custom-play {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    line-height: 0;
  }

  body.home-page .video-custom-play video,
  body.home-page .video-custom-play .client-video {
    width: 100% !important;
    height: auto !important;
    max-width: 100%;
    display: block;
  }

  body.home-page .video-custom-play .video-play-icon {
    transform: scale(0.75);
  }

  /* ------------------------------------------------------------------ */
  /* 7. Mutual firm / process                                           */
  /* ------------------------------------------------------------------ */
  body.home-page .mutual-firm-work {
    padding: 48px 0;
    text-align: center;
  }

  body.home-page .mutual-firm-work .content-width {
    padding-left: 16px;
    padding-right: 16px;
  }

  body.home-page .mutual-firm-work .custom-row {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  body.home-page .mutual-firm-work .custom-row .column-50 {
    max-width: 100%;
    flex: 0 0 100%;
    width: 100%;
    padding: 0;
  }

  body.home-page .mutual-firm-work .custom-row .column-50:first-child {
    text-align: center;
    padding-bottom: 0;
  }

  body.home-page .mutual-firm-work img {
    max-width: 100%;
    width: 100%;
    height: auto;
  }

  body.home-page .mutual-firm-work .mobile-show-title {
    display: block;
    text-align: center;
    font-weight: 600;
    line-height: 24px;
    padding-bottom: 20px;
    font-size: 14px;
  }

  body.home-page .mutual-firm-work h6:not(.mobile-show-title) {
    display: none;
  }

  body.home-page .mutual-firm-work p {
    font-size: 15px;
    line-height: 24px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  body.home-page .mutual-firm-work .default-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto 0;
    height: 36px;
    transform: none;
    -webkit-transform: none;
    letter-spacing: 1.5px;
  }

  body.home-page .mutual-firm-work .default-button .button-background .left,
  body.home-page .mutual-firm-work .default-button .button-background .right {
    width: 36px;
    -webkit-transform: none;
    transform: none;
  }

  body.home-page .mutual-firm-work .default-button .button-background .left:before,
  body.home-page .mutual-firm-work .default-button .button-background .right:before {
    width: 36px;
    height: 36px;
  }

  body.home-page .mutual-firm-work .default-button .text {
    font-size: 11px;
    letter-spacing: 1.5px;
    white-space: nowrap;
    padding: 0 28px 0 12px;
  }

  /* ------------------------------------------------------------------ */
  /* 8. Partner logos                                                   */
  /* ------------------------------------------------------------------ */
  body.home-page .partner_logo_section {
    width: 100%;
    overflow: hidden;
    padding-left: 0;
    padding-right: 0;
  }

  body.home-page .partner_logo_section .container {
    width: 100%;
    max-width: 100%;
    padding-left: 16px;
    padding-right: 16px;
    box-sizing: border-box;
  }

  body.home-page .partner_logo_section .header-text h6 {
    font-size: 13px;
    letter-spacing: 1.5px;
    text-align: center;
  }

  body.home-page .project_marquee1.mr-one {
    padding-bottom: 28px;
  }

  body.home-page .partner_logo_section .marquee_img img {
    max-width: 100px;
    height: auto;
  }

  /* ------------------------------------------------------------------ */
  /* 9. Stats + testimonials                                            */
  /* ------------------------------------------------------------------ */
  body.home-page .client-testi-sec.black-theme-section {
    padding: 56px 0;
  }

  body.home-page .client-testi-sec .content-width {
    padding-left: 16px;
    padding-right: 16px;
  }

  body.home-page .why-with-uswork {
    padding: 0 0 24px;
    margin: 0 0 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  }

  body.home-page .why-with-uswork h6 {
    font-size: 13px;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    text-align: center;
  }

  body.home-page .why-with-uswork .counter-wrapper {
    display: flex;
    flex-direction: column;
    margin: 0;
    gap: 0;
  }

  body.home-page .why-with-uswork .counter-wrapper .slide-item {
    max-width: 100%;
    flex: 0 0 100%;
    width: 100%;
    padding: 16px 0;
    border-right: 0;
    box-sizing: border-box;
    text-align: center;
  }

  body.home-page .why-with-uswork .counter-wrapper .slide-item span {
    font-size: 36px;
  }

  body.home-page .why-with-uswork .counter-wrapper .slide-item h5 {
    max-width: 100%;
    font-size: 14px;
    line-height: 20px;
    word-break: break-word;
    color: #8d8d8d;
  }

  body.home-page .client-review-section {
    margin: 0;
    padding: 32px 0 0;
    text-align: center;
  }

  body.home-page .client-review-section p {
    font-size: 14px;
    line-height: 22px;
    text-align: center;
  }

  body.home-page .client-review-section h3 {
    font-size: 20px;
    text-align: center;
  }

  body.home-page .client-review-section img {
    max-width: 100%;
    height: auto;
  }

  body.home-page .testimonial-desc {
    min-height: 0;
  }

  body.home-page #popups,
  body.home-page .test_video {
    max-width: 100%;
  }

  /* ------------------------------------------------------------------ */
  /* 10. Thoughts / perspective                                         */
  /* ------------------------------------------------------------------ */
  body.home-page .our-thoughts-perspective {
    padding: 40px 0 !important;
  }

  body.home-page .our-thoughts-perspective .content-width {
    padding-left: 16px;
    padding-right: 16px;
  }

  body.home-page .our-thoughts-perspective h6 {
    font-size: 13px;
    letter-spacing: 1.5px;
    line-height: 20px;
    text-align: center;
  }

  body.home-page .our-thoughts-perspective .custom-row.pSection {
    display: flex;
    flex-direction: column;
    gap: 28px;
    padding-top: 16px;
  }

  body.home-page .our-thoughts-perspective .custom-row .column-50 {
    max-width: 100%;
    flex: 0 0 100%;
    width: 100%;
  }

  body.home-page .our-thoughts-perspective .cards {
    max-width: 100%;
    margin: 0;
    padding: 0;
  }

  body.home-page .our-thoughts-perspective .cards .blog-img {
    margin-top: 0;
    min-height: 0;
    overflow: hidden;
  }

  body.home-page .our-thoughts-perspective .cards .blog-img img {
    width: 100%;
    height: auto;
    display: block;
  }

  body.home-page .our-thoughts-perspective h3,
  body.home-page .our-thoughts-perspective .cards h3 {
    font-size: 16px;
    line-height: 24px;
    position: relative;
    top: 0;
    text-align: center;
    color: #000;
    background: none;
    transform: none;
    word-wrap: break-word;
  }

  body.home-page .our-thoughts-perspective .cards .card-body {
    text-align: center;
  }

  body.home-page .our-thoughts-perspective .custom-row.subscribe-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 28px;
  }

  body.home-page .our-thoughts-perspective .subscribe-form .default-button {
    max-width: 100%;
  }

  body.home-page .our-thoughts-perspective .subscribe-form .default-button .text {
    font-size: 12px;
    white-space: normal;
  }

  body.home-page #popup2_wrapper {
    width: min(90vw, 320px) !important;
    left: 50% !important;
    transform: translateX(-50%);
    max-width: calc(100vw - 32px);
  }

  body.home-page div#popup2 {
    min-width: 0;
    width: 100%;
    box-sizing: border-box;
    padding: 20px 16px;
  }

  body.home-page #popup2 .g-recaptcha {
    transform: scale(0.85);
    transform-origin: left top;
    max-width: 100%;
  }

  /* ------------------------------------------------------------------ */
  /* 11. Footer (home)                                                  */
  /* ------------------------------------------------------------------ */
  body.home-page .site-footer {
    padding: 48px 0 32px;
    overflow: hidden;
  }

  body.home-page .site-footer .content-width {
    padding-left: 16px;
    padding-right: 16px;
  }

  body.home-page .greatplace-footer {
    padding: 0 16px;
    margin: 0 0 24px;
    justify-content: flex-start;
  }

  body.home-page .greatplace-footer img {
    width: auto;
    max-width: 72px;
    height: auto;
  }

  body.home-page .site-footer .custom-row.f-row,
  body.home-page .site-footer .custom-row.gap_row {
    display: flex;
    flex-direction: column;
    gap: 28px;
  }

  body.home-page .site-footer .custom-row .column-50 {
    max-width: 100%;
    flex: 0 0 100%;
    width: 100%;
    margin: 0;
  }

  body.home-page .site-footer .column-50.order_1 {
    order: 1;
  }

  body.home-page .site-footer .column-50.order_2 {
    order: 2;
  }

  body.home-page .site-footer h3 {
    font-size: 22px;
    line-height: 30px;
  }

  body.home-page .site-footer .texttypo {
    margin-bottom: 16px;
  }

  body.home-page .site-footer .social-menu {
    margin: 16px 0 0;
    flex-wrap: wrap;
    gap: 12px;
  }

  body.home-page .site-footer .social-menu li a {
    height: 24px;
    font-size: 22px;
  }

  body.home-page ul.social-menu.social_footer li a .twitter-x {
    height: 16px;
    width: 14px;
  }

  body.home-page .site-footer .get-in-touch {
    margin-bottom: 20px;
  }

  body.home-page .site-footer .get-in-touch h3,
  body.home-page .site-footer .location h3 {
    margin-bottom: 4px;
    font-size: 14px;
  }

  body.home-page .site-footer .get-in-touch a {
    font-size: 18px !important;
    line-height: 1.4;
    margin-bottom: 6px;
    word-break: break-word;
  }

  body.home-page .location .nav-tab {
    padding: 8px 0 24px;
  }

  body.home-page .copyright {
    flex-direction: column;
    padding-top: 24px;
    gap: 12px;
  }

  body.home-page .copyright-text1,
  body.home-page .copyright-text {
    max-width: 100%;
    margin: 0;
    padding-left: 0;
    font-size: 12px;
    line-height: 18px;
  }

  body.home-page .copyright {
    margin-top: 0 !important;
  }

  /* ------------------------------------------------------------------ */
  /* Nested: larger phones within mobile shell                          */
  /* ------------------------------------------------------------------ */
  @media screen and (min-width: 481px) {
    body.home-page .content-width,
    body.home-page .our-purpose-section .content-width,
    body.home-page .mutual-firm-work .content-width,
    body.home-page .bussiness-strategy-section-mobile .content-width,
    body.home-page .client-testi-sec .content-width,
    body.home-page .our-thoughts-perspective .content-width,
    body.home-page .site-footer .content-width {
      padding-left: 24px;
      padding-right: 24px;
    }

    body.home-page .our-purpose-section .content-width h1 {
      font-size: 30px;
      line-height: 38px;
    }

    body.home-page .our-purpose-section p {
      font-size: 16px;
      line-height: 26px;
    }

    body.home-page .bussiness-strategy-section-mobile .carousel-heading {
      font-size: 28px;
    }

    body.home-page .section1 .mobile-header .header-row .column-header .logo {
      max-width: 100px;
    }

    body.home-page .section1 .mobile-header .header-row .column-header .logo img {
      height: 24px;
    }

    body.home-page #home-mobile-slider.owl-carousel .owl-item img {
      max-width: min(260px, 75vw);
    }

    body.home-page .why-with-uswork .counter-wrapper {
      flex-direction: row;
      flex-wrap: wrap;
    }

    body.home-page .why-with-uswork .counter-wrapper .slide-item {
      flex: 0 0 50%;
      max-width: 50%;
      padding: 16px 12px 16px 0;
    }
  }

  /* ------------------------------------------------------------------ */
  /* Nested: tablet band inside mobile shell                            */
  /* ------------------------------------------------------------------ */
  @media screen and (min-width: 768px) {
    body.home-page .content-width,
    body.home-page .our-purpose-section .content-width,
    body.home-page .mutual-firm-work .content-width,
    body.home-page .bussiness-strategy-section-mobile .content-width,
    body.home-page .client-testi-sec .content-width,
    body.home-page .our-thoughts-perspective .content-width,
    body.home-page .site-footer .content-width {
      padding-left: 32px;
      padding-right: 32px;
    }

    body.home-page .mobile-header {
      padding: 12px 24px;
    }

    body.home-page .section1 {
      padding-top: 56px;
    }

    body.home-page .our-purpose-section {
      padding: 60px 0 70px;
    }

    body.home-page .our-purpose-section .content-width h1 {
      font-size: 36px;
      line-height: 46px;
    }

    body.home-page .our-purpose-section p {
      font-size: 18px;
      line-height: 30px;
    }

    body.home-page .bussiness-strategy-section-mobile {
      padding: 70px 0;
    }

    body.home-page .bussiness-strategy-section-mobile .carousel-heading {
      font-size: 32px;
    }

    body.home-page .bussiness-strategy-section-mobile .bussiness-scroller .owl-carousel .owl-item img {
      height: 36vh;
      max-height: 320px;
    }

    body.home-page .mutual-firm-work {
      padding: 70px 0;
    }

    body.home-page .mutual-firm-work img {
      max-width: 80%;
    }

    body.home-page .why-with-uswork .counter-wrapper .slide-item {
      flex: 0 0 25%;
      max-width: 25%;
    }

    body.home-page .our-thoughts-perspective .custom-row.pSection {
      flex-direction: row;
      gap: 24px;
    }

    body.home-page .our-thoughts-perspective .custom-row .column-50 {
      flex: 0 0 calc(50% - 12px);
      max-width: calc(50% - 12px);
    }

    body.home-page .site-footer .custom-row.f-row,
    body.home-page .site-footer .custom-row.gap_row {
      flex-direction: row;
      flex-wrap: wrap;
    }

    body.home-page .site-footer .custom-row .column-50 {
      flex: 0 0 48%;
      max-width: 48%;
    }

    body.home-page .overlay nav {
      font-size: 28px;
    }
  }
}
