* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

:root {
    --primary: #009d4c;
    --black: #000;
    --white: #fff;
    --text: #54575e;
    --header: #28241f;
    --grey: #ebebeba3;
    --grey-text: #acb3b3;
    --secondary: #85a6a6;
    --border: #d0d0d0;
}

html {
    scroll-behavior: smooth;
}

@font-face {
    font-display: swap;
    font-family: "Open Sans";
    font-style: normal;
    font-weight: 300;
    src: url("../fonts/open-sans-v40-latin-300.woff2") format("woff2"),
        url("../fonts/open-sans-v40-latin-300.ttf") format("truetype");
}
@font-face {
    font-display: swap;
    font-family: "Open Sans";
    font-style: normal;
    font-weight: 400;
    src: url("../fonts/open-sans-v40-latin-regular.woff2") format("woff2"),
        url("../fonts/open-sans-v40-latin-regular.ttf") format("truetype");
}
@font-face {
    font-display: swap;
    font-family: "Open Sans";
    font-style: normal;
    font-weight: 500;
    src: url("../fonts/open-sans-v40-latin-500.woff2") format("woff2"),
        url("../fonts/open-sans-v40-latin-500.ttf") format("truetype");
}
@font-face {
    font-display: swap;
    font-family: "Open Sans";
    font-style: normal;
    font-weight: 600;
    src: url("../fonts/open-sans-v40-latin-600.woff2") format("woff2"),
        url("../fonts/open-sans-v40-latin-600.ttf") format("truetype");
}
@font-face {
    font-display: swap;
    font-family: "Open Sans";
    font-style: normal;
    font-weight: 700;
    src: url("../fonts/open-sans-v40-latin-700.woff2") format("woff2"),
        url("../fonts/open-sans-v40-latin-700.ttf") format("truetype");
}

body {
    font-family: "Open Sans";
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: clip;
}

.lenis.lenis-smooth iframe {
    pointer-events: none;
}

.container {
    max-width: 1280px;
    padding: 0 1rem;
    margin: 0 auto;
}

/* hide scrollbar */
/* For all browsers */
.hidden-scrollbar {
    overflow: auto;
    -ms-overflow-style: none; /* Internet Explorer and Edge */
    scrollbar-width: none; /* Firefox */
}

.hidden-scrollbar::-webkit-scrollbar {
    display: none; /* Safari and Chrome */
}

.mobile_header_wrapper,
.desktop_header_wrapper {
    background-color: var(--white);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    border-bottom: 0.2px solid var(--grey);
    z-index: 9999;
}

.mobile_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 10px;
    padding-bottom: 10px;
}

.mobile_header-cta {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mobile_header-cta > #mobile-search {
    height: 40px;
    width: 40px;
    border: none;
}

.mobile_header-cta > #mobile-search,
.desktop_navigation_wrapper > .cta > .action {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--grey);
    border-radius: 2px;
}

.desktop_header_wrapper {
    display: none;
    height: 70px;
    z-index: 9999;
}

.desktop_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header_navigation > ul {
    display: flex;
    align-items: center;
    color: var(--text);
}

.header_navigation > ul > li {
    list-style: none;
    height: 70px;
}

.desktop_navigation_wrapper > .cta {
    display: flex;
    align-items: center;
    gap: 13px;
}

.desktop_navigation_wrapper > .cta > .action {
    height: 50px;
    width: 50px;
}

.desktop_navigation_wrapper > .cta > #submit_rfp {
    background-color: var(--primary);
    color: var(--white);
    padding: 15px 30px;
    border: none;
    cursor: pointer;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.desktop_navigation_wrapper > .cta > #search {
    border: none;
    cursor: pointer;
}

.desktop_navigation_wrapper > .cta > .action {
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--grey);
    border-radius: 2px;
}

.desktop_navigation_wrapper {
    display: flex;
    align-items: center;
    gap: 5rem;
}

.desktop_menu_drop_down > span {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    height: 70px;
    position: relative;
    justify-content: center;
}

.header_navigation > ul > li > a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text);
    height: 70px;
    position: relative;
    justify-content: center;
}

.header_navigation > ul > li > a,
.desktop_menu_drop_down > span {
    padding: 0 10px;
}

.header_navigation > ul > li > a::before,
.desktop_menu_drop_down > span::before {
    content: "";
    position: absolute;
    height: 3px;
    width: 100%;
    background-color: var(--primary);
    bottom: 0;
    transform: scale(0);
    transition: transform 0.2s cubic-bezier(0.25, 1, 0.5, 1);
    transform-origin: center;
}

.header_navigation > ul > li > a:hover::before,
.desktop_menu_drop_down:hover > span:before {
    transform: scale(1);
}

.footer_wrapper {
    background-color: #272727;
    padding: 2rem 0;
}

.sub_footer-wrapper {
    background-color: #0f1115;
    padding: 2rem 0;
    color: var(--white);
}

.sub_footer {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 2rem;
}

.sub_footer > .left {
    color: var(--grey-text);
    font-size: 0.875rem;
    text-align: center;
    line-height: 24px;
}

.sub_footer > .left > .entity_name {
    color: var(--secondary);
}

.sub_footer > .left > a {
    color: var(--white);
    font-weight: 600;
    text-decoration: none;
}

.sub_footer > .right {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.social_item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid var(--secondary);
    padding: 10px 15px;
    border-radius: 22.92px;
    font-size: 14px;
    text-decoration: none;
    color: var(--white);
}

.contact_details {
    border-bottom: 0.8px solid rgba(255, 255, 255, 0.14);
    padding-top: 1rem;
    padding-bottom: 1rem;
    max-width: 85%;
}

.contact_details > p,
.footer_address > p {
    font-size: 0.875em;
    font-weight: 600;
    color: var(--secondary);
    text-transform: uppercase;
    padding-bottom: 0.2rem;
}

.contact_details > a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--white);
    margin-top: 0.5rem;
    font-size: 0.938rem;
}

.left_footer {
    border-bottom: 0.8px solid rgba(255, 255, 255, 0.14);
    padding-bottom: 2rem;
}

.footer_address {
    padding-top: 1rem;
}
.footer_address > a {
    text-decoration: none;
    color: var(--white);
    margin-top: 0.5rem;
    display: inline-block;
    font-size: 0.938rem;
}

.footer_links_wrapper,
.news_letter_wrapper {
    margin-top: 1.7rem;
}

.footer_links_wrapper > h4,
.news_letter_wrapper > h4 {
    font-size: 1.3rem;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 0.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer_links_wrapper > h4::before,
.news_letter_wrapper > h4::before {
    content: "";
    height: 6.87px;
    width: 16.04px;
    background-color: var(--primary);
    display: inline-block;
    border-radius: 10px;
}

.footer_links_wrapper > ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer_links_wrapper > ul > li {
    list-style-type: none;
}

.footer_links_wrapper > ul > li > a {
    text-decoration: none;
    color: var(--grey-text);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.news_letter_wrapper > p {
    font-size: 0.875rem;
    color: var(--grey-text);
    line-height: 22.92px;
    max-width: 222.71px;
}

.news_letter_wrapper > form {
    border: 1px solid var(--secondary);
    display: flex;
    max-width: 13.875rem;
    margin-top: 1rem;
    border-radius: 19.1px;
    height: 2.5rem;
}

.news_letter_wrapper > form > input {
    background-color: transparent;
    border: none;
    outline: none;
    height: 100%;
    width: 100%;
    padding: 0 10px;
    color: var(--white);
}

.news_letter_wrapper > form > button {
    background-color: var(--secondary);
    height: 100%;
    border: none;
    padding-left: 10px;
    padding-right: 10px;
    border-top-right-radius: 19.1px;
    border-bottom-right-radius: 19.1px;
}

/* mega menu section */
.mega_menu {
    position: absolute;
    left: 0;
    top: 4.4rem;
    right: 0;
    display: none;
}

/* service mega menu starts */
.services_mega-menu,
.insight_mega-menu,
.about_mega-menu {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-bottom: 0.5px solid var(--grey);
}

.desktop_menu_drop_down:hover > .mega_menu {
    display: block;
}

.services_mega-menu-right {
    grid-column: span 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 2rem 3rem;
    gap: 30px;
}

.services_mega-menu-left,
.insight_mega-menu-left {
    background-color: var(--black);
    padding: 2rem;
}

.services_mega-menu-left > p,
.insight_mega-menu-left > p {
    text-transform: uppercase;
    font-size: 0.875;
    line-height: 30px;
    color: var(--white);
    margin-bottom: 1.5rem;
    padding: 0 0.7rem;
}

.mega_menu_featured-insight {
    list-style: none;
}

.mega_menu_featured-insight a {
    text-decoration: none;
    color: var(--white);
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 1.5rem;
    padding: 0.5rem 0.7rem;
    transition: 0.3s all ease;
    border-radius: 5px;
}

.mega_menu_featured-insight a:hover {
    background-color: rgba(255, 255, 255, 0.14);
    transform: scale(1.04);
}

.mega_menu_featured-insight a > strong {
    font-size: 1.25rem;
    line-height: 24.2px;
    font-weight: 400;
}

.mega_menu_featured-insight a > span {
    font-size: 0.875rem;
    line-height: 21.96px;
    color: var(--grey-text);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    white-space: normal;
}

.services_mega-menu-right {
    background-color: var(--white);
}

.services_mega-menu-right strong {
    font-weight: 700;
    font-size: 1.125rem;
    text-transform: uppercase;
    color: var(--primary);
}

.services_mega-menu-right ul {
    list-style-type: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

.services_mega-menu-right ul a {
    text-decoration: none;
    color: var(--black);
    font-size: 0.875rem;
    line-height: 32px;
    white-space: nowrap;
}

.more_service-btn {
    color: var(--primary);
    font-size: 0.75rem;
    margin-top: 1.5rem;
    display: inline-block;
}

/* insight mega menu */
.insight_mega-menu-right {
    background-color: var(--white);
    grid-column: span 2;
    padding: 2rem 3rem;
}

.insight_mega-menu-right > p {
    text-transform: uppercase;
    color: var(--primary);
    font-size: 1.125rem;
    line-height: 32px;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.insight_mega-menu-right > div {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.insight_mega-menu-item {
    border: 1px solid var(--border);
    padding: 2rem 1rem;
    text-decoration: none;
}

.insight_mega-menu-item > span:not(:nth-child(2)) {
    font-weight: 700;
    color: black;
    font-size: 0.75rem;
}

.insight_mega-menu-item-img {
    width: 191px;
    height: 153px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: block;
    margin: 1rem 0;
}

.insight_mega-menu-right > a {
    color: var(--primary);
    font-weight: 700;
    line-height: 32px;
    display: inline-block;
    margin-top: 1rem;
}

/* about mega menu */
.about_mega-menu-left {
    background-color: var(--black);
    padding: 2rem;
    color: var(--white);
}

.about_mega-menu-left > p {
    text-transform: uppercase;
    font-size: 0.875;
    line-height: 30px;
    margin-bottom: 34px;
}

.about_mega-menu-left > section > p {
    font-size: 0.875rem;
    line-height: 21.96px;
}

.about_mega-menu-left > section > a {
    color: var(--white);
    font-weight: 0.875rem;
    font-weight: 700;
    display: inline-block;
    margin-top: 2rem;
    text-decoration: none;
}

.about_mega-menu-right {
    grid-column: span 2;
    padding: 2rem 3rem;
    background-color: var(--white);
    padding-top: 70px;
}

.about_mega-menu-right > div {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.about_mega-menu-item {
    border: 1px solid var(--border);
    padding: 2rem 1rem;
    text-decoration: none;
    color: var(--black);
    display: flex;
    flex-direction: column;

}

.about_mega-menu-item-img {
    width: 191px;
    height: 153px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: block;
    margin: auto 0 1rem 0;
}

.about_mega-menu-item span:first-child {
    font-weight: 700;
    display: block;
    font-size: 0.75rem;
    padding-bottom: 1rem;
}

.about_mega-menu-item span:nth-child(2) {
    font-size: 0.75rem;
    line-height: 20px;
    letter-spacing: -0.36px;
    display: inline-block;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
    white-space: normal;
}

.btn-link {
    position: relative;
}

.btn-link::after {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    opacity: 0;
    transition: linear 0.35s;
}

.btn-link.btn-link_black:hover::after {
    width: 100%;
    opacity: 1;
    right: 0;
    background-color: #efefef23;
}

.btn-link.btn-link_green:hover::after {
    width: 100%;
    opacity: 1;
    right: 0;
    background-color: #00482323;
}

.flex-list {
    list-style-type: none;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.see-all-services-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid black;
    background-color: white;
    margin-top: 1rem;
    padding: 1rem;
    color: black;
    text-align: white;
    text-decoration: none;
}

/* search header drop down */
.header_search-wrapper {
    background-color: var(--black);
    min-height: 372px;
    position: fixed;
    width: 100%;
    z-index: 9999;
    top: 0;
    padding-block: 43px;
    transform: translateY(-100%);
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.header_search-active {
    transform: translateY(0);
}

.header_search-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header_search-top > button {
    background-color: var(--primary);
    color: var(--white);
    border: none;
    height: 30px;
    width: 30px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.header_search-top > img {
    width: 12rem;
    aspect-ratio: 1/1;
}

.header_search-bottom {
    max-width: 954px;
    margin: 71px auto 0 auto;
    display: flex;
    align-items: center;
    height: 60px;
}

.header_search-bottom > input {
    flex: 1;
    height: 100%;
    outline: none;
    padding: 10px 15px;
    font-size: 1rem;
    border: none;
}

.header_search-bottom > button {
    background-color: var(--primary);
    color: var(--white);
    cursor: pointer;
    border: none;
    height: 100%;
    aspect-ratio: 1/1;
}

.link-to-left {
    transition: all linear 0.2s;
    width: fit-content;
}
.link-to-left:hover, .link-to-left:hover *:last-child {
    color: var(--primary);
}
.link-to-left:hover *:last-child {
    transform: translateX(3px);
    transition: all linear 0.2s;
}

/* mobile menu section */
.mobile_menu-dropdown {
    background-color: var(--white);
    position: fixed;
    border-top: 1px solid #e3e3e3;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    display: none;
    grid-template-rows: 0fr;
}

.mobile_menu-dropdown > ul {
    overflow-y: hidden;
}

.mobile_menu-dropdown-active {
    display: grid;
    animation: slidein 0.5s forwards;
}

.mobile_menu-dropdown-hidden {
    animation: slideout 0.5s forwards;
}

@keyframes slidein {
    0% {
        display: none;
    }
    50% {
        display: grid;
    }
    100% {
        grid-template-rows: 1fr;
    }
}

@keyframes slideout {
    0% {
        grid-template-rows: 1fr;
        display: grid;
    }
    50% {
        grid-template-rows: 0fr;
    }
    100% {
        display: none;
    }
}

.mobile_menu-dropdown ul {
    list-style: none;
}

.mobile_menu-dropdown ul li > span {
    border-bottom: 1px solid #e3e3e3;
    display: block;
    padding-block: 15px;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile_menu_accordion_wrapper {
    display: grid;
    grid-template-rows: 0fr;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.active_mobile_menu_accordion {
    grid-template-rows: 1fr;
}

.mobile_menu_accordion-content {
    background-color: #f5f5f5;
    overflow: hidden;
}

.mobile_about_us-text {
    font-size: 0.875rem;
    color: var(--text);
    line-height: 24px;
}

.mobile_about_us-text > p {
    margin-block: 10px;
}

.mobile_about_us-text > a {
    text-decoration: none;
    display: inline-block;
    margin-block: 10px;
    color: var(--primary);
    font-weight: 600;
}

.mobile_menu_accordion_item {
    width: 100%;
    padding: 1rem;
}

.mobile_menu_accordion_item > ul {
    margin-top: 1rem;
}

.mobile_menu_accordion_item li a {
    text-decoration: none;
    color: var(--text);
    font-size: 0.875rem;
    display: inline-block;
    margin-bottom: 10px;
    position: relative;
}

.mobile_menu_accordion_item li a::after {
    content: "";
    position: absolute;
    height: 1px;
    transform: scale(0);
    transition: transform 0.2s cubic-bezier(0.25, 1, 0.5, 1);
    transform-origin: left;
    background-color: var(--text);
    bottom: 0;
    width: 100%;
    left: 0;
}

.mobile_menu_accordion_item li a:hover::after {
    transform: scale(1);
}

.mobile_menu_max-height {
    max-height: 20rem;
    overflow-y: scroll;
    scroll-padding: 1rem;
}

.mobile_menu-insight {
    padding-inline: 1rem;
}

.mobile_menu-insight > p {
    font-size: 1rem;
    text-transform: uppercase;
    padding-block: 1rem;
}

.mobile_menu-insight > ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile_menu-insight > ul li a {
    text-decoration: none;
    font-size: 0.875rem;
    display: block;
    margin-bottom: 0.7rem;
    color: var(--black);
    border-bottom: 1px solid #e3e3e3;
    padding-bottom: 10px;
    transition: all 0.3s linear;
}

.mobile_menu-insight > ul li a:hover {
    text-decoration: underline;
    background-color: var(--grey);
}

.mobile_menu-insight > ul li a > strong {
    display: block;
    line-height: 18px;
}

.mobile_menu-insight > ul li a > span {
    font-weight: 300;
}

.mobile_menu-link a {
    text-decoration: none;
    font-size: 1rem;
    padding: 15px 1rem;
    display: block;
    border-bottom: 1px solid #e3e3e3;
    color: var(--black);
}

@media (min-width: 600px) {
    .sub_footer {
        gap: 1rem;
    }
    .sub_footer > .right {
        grid-template-columns: repeat(4, 1fr);
    }
    .social_item {
        padding: 5px 15px;
    }

    .right_footer {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(222.71px, 1fr));
    }
}

@media (min-width: 1024px) {
    .container,
    .container_desktop-only {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .container_desktop-only {
        max-width: 1280px;
        margin: 0 auto;
    }

    .footer_wrapper {
        padding: 0;
    }

    .footer_items {
        display: flex;
        gap: 0.5rem;
    }

    .left_footer {
        border-right: 0.8px solid rgba(255, 255, 255, 0.14);
        border-bottom: 0;
        padding-right: 20px;
    }

    .news_letter_wrapper,
    .footer_links_wrapper {
        margin-top: 0;
    }
    .right_footer {
        display: flex;
        justify-content: space-between;
        flex-basis: 100%;
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .left_footer,
    .right_footer {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
}

@media (min-width: 1250px) {
    .mobile_header_wrapper {
        display: none;
    }
    .desktop_header_wrapper {
        display: block;
    }
    .sub_footer {
        flex-direction: row-reverse;
        gap: 0;
        align-items: center;
    }
}
.insight-bordered-container {
    width: 100%;
    color: var(--black);
    padding: 0.7rem;
    cursor: pointer;
    border: 1px solid #D1D0D0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}
.insight-left-section {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}
.insight-title {
    color: #000;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: -0.36px;
}
.insight-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 2rem;
}
.insight-tabs-mobile {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
    margin: 2rem 0;
    gap: 0.5rem;
}

.insight-tabs-mobile .item {
    margin: 0.3rem 0;
}
.insight-tabs a, .insight-tabs-mobile a {
    text-decoration: none;
}
