body {
    background: #fff;
    color: #000;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 14px;
    line-height: 1.42857143;
    margin: 0 0 68px;
}

a:link {
    text-decoration: none;
    font-family: 'Roboto', sans-serif !important;
    font-size: 18px !important;
    font-weight: 400 !important;
}

a:visited {
        color: #000;
}

ul {
    font-family: "Aptos", "Segoe UI", sans-serif !important;
    font-size: 11pt !important;
    font-weight: 400 !important;
    margin: 15px 0px;
    padding: 0;
    list-style: disc;
}

/* footer {
  position: fixed;
  bottom: 0;
  width: 94.75vw;
  background: #000;
  color: #fff;
  padding: 10px 50px;
} */

hr {
    width: 100%;
    border-top: 1px solid #b3b3b3;
}

/* Home Page */

/* Navbar styles */

.navbar,
.static-top.navbar-dark {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* padding: 0.5em 2em; */
    height: 100px;
    background-color: blue; /*#f0eee8;*/
    -webkit-box-shadow: none;
    box-shadow: none;
    z-index: 20;
}

.nav-ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.homeBtn {
    display: flex;
    color: #000;
    font-size: 1.5em;
    font-weight: 700;
}

#logo {
    width: 28px;
    height: 28px;
    margin-right: 0.5em;
}

.loginBtn {
    display: flex !important;
    justify-content: center;
    align-items: center;
    height: 47px;
    width: 121px;
    border-radius: 65px;
    background-color: #001489;
    color: #fff !important;
    font-size: 18px;
}

    .loginBtn:visited {
        color: #fff;
    }

.header-container {
    display: flex;
    justify-content: space-between;
    margin: 3% 10%;
    width: 100%;
}

/* Header styles */

.header {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 350px;
    background-color: #f0eee8;
}

#header-title {
    font-size: 4.5em;
    font-weight: 700;
    font-family: 'Patient Discharge/Header 1', 'Poppins', sans-serif;
    font-style: normal;
    margin: 0;
    margin-bottom: 48px;
}

#search-input-home {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
    width: 50vw;
    max-width: 900px;
    border-radius: 8px;
    background-color: var(--portalThemeColor7);
    color: var(--portalThemeOnColor7);
    font-size: 18px;
    border: none;
    box-shadow: 0px 0.3px 0.9px rgba(0, 0, 0, 0.1), 0px 1.6px 3.6px rgba(0, 0, 0, 0.13);
    padding-left: 60px;
}

    #search-input-home::placeholder {
        color: var(--portalThemeOnColor7) !important;
    }

#header-subtitle {
    font-size: 1.5em;
    font-weight: 400;
    font-style: normal;
    margin: 0;
    color: #505254;
    margin-bottom: 88px;
}

.searchContainer {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 64px;
}

#searchIcon {
    position: absolute !important;
    width: 28px;
    height: 28px;
    margin-left: 20px;
}

@media only screen and (max-width: 900px) {
    .header {
        height: 300px;
    }

    #search-input-home {
        font-size: 1em;
        width: 70vw;
    }

    #header-title {
        font-size: 2.5em;
    }

    #header-subtitle {
        font-size: 1em;
        margin: 0 10%;
    }
}

@media only screen and (max-width: 450px) {
    .header {
        height: 300px;
    }

    #search-input-home {
        font-size: 1em;
    }

    #header-title {
        font-size: 2.5em;
    }

    #header-subtitle {
        font-size: 1em;
        margin: 0 5%;
    }
}



/* Topic Styles */

#topic-container-header {
    margin-top: 88px;
    margin-left: 20%;
    margin-bottom: 0;
    font-weight: 700;
    font-size: 50px;
    line-height: 55px;
}

.topicsContainer {
    display: flex;
    /* flex-direction: row; */
    justify-content: center;
    /* align-items: center;
  height: 100%;
  background-color: #fff; */
    flex-wrap: wrap;
    /* margin-inline: auto; */
    margin: 40px 20% 112px;
}

.topic {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    height: 100%;
    background-color: #fff;
    border: 2px solid #0e51cb;
    border-radius: 8px;
    flex-basis: 31%;
    height: auto;
    min-height: 253px;
    margin: 0.5em;
    cursor: pointer;
}

    .topic:focus,
    .topic:hover {
        color: #fff;
        background-color: #0e51cb;
    }

.topicTitle {
    font-size: 24px;
    line-height: 32px;
    font-weight: 700;
}

a:not(.btn):hover {
    text-decoration: none;
}

.topic:hover > .topicTitle,
.topic:focus > .topicTitle {
    color: #fff;
}

@media only screen and (max-width: 1500px) {
    .topicsContainer {
        margin: 3% 10%;
    }

    #topic-container-header {
        margin-left: 10%;
    }

    .home-topArticles-container {
        margin: 10% !important;
    }
}

@media only screen and (max-width: 1000px) {
    .topicsContainer {
        margin: 3% 7%;
    }

    #topic-container-header {
        margin-left: 7%;
    }

    .home-topArticles-container {
        margin: 7% !important;
    }

    .topic {
        flex-basis: 45%;
    }
}

@media only screen and (max-width: 600px) {
    .topic {
        flex-basis: 100%;
    }
}

/* Top Articles */

#featured-article-title {
    margin: 0;
    font-weight: 700;
    font-size: 50px;
}

.home-topArticles-container {
    display: flex;
    flex-direction: column;
    /* justify-content: space-evenly;
  align-items: center;
  height: 100%;
  background-color: #fff;
  flex-wrap: wrap;
  margin-inline: auto; */
    margin: 0 20% 112px;
}

.home-topArticles {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-row-gap: 48px;
    grid-column-gap: 48px;
    min-width: 300px;
    width: 100%;
    margin-inline: auto;
    text-align: left;
}

@media screen and (max-width: 1200px) {
    .home-topArticles {
        grid-template-columns: 1fr;
    }
}

.featured-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.fa-chevron-right {
    color: var(--portalThemeColor4);
    font-size: 2em;
}

.home-topArticles-header {
    width: 100%;
}

.top-article-h2 {
    font-size: 30px;
    font-weight: 700;
    font-style: normal;
    margin: 0;
    text-align: start;
}

.top-article-p {
    font-size: 1.5em;
    font-weight: 400;
    font-style: normal;
    margin: 0;
    color: #505254;
}

.featured-article-a {
    font-size: 30px;
    font-weight: 700;
    line-height: 34px;
}

    .featured-article-a:nth-child(even) {
        justify-self: end;
    }

    .featured-article-a:nth-child(odd) {
        justify-self: start;
    }
/* Accordion */

.top-articles {
    margin: 20px 20%;
}

.accordion {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    color: #444;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    max-height: 70px;
    border: none;
    text-align: left;
    outline: none;
    font-size: 1em;
    font-weight: 700;
    transition: 0.4s;
    border-bottom: 1px solid #eee;
}

    .active,
    .accordion:hover {
        background-color: #ccc;
    }

.card {
    padding: 0 18px;
    display: none;
    background-color: white;
    overflow: hidden;
}

.expand-btn {
    font-size: 2em;
    font-weight: 300;
}

@media only screen and (max-width: 900px) {
    .top-articles {
        margin: 20px 10%;
    }

    .top-article-h2 {
        font-size: 1.5em;
    }

    .top-article-p {
        font-size: 1em;
    }
}

/* Call to Action */

.cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 375px;
    background-color: #1d2a42;
}

.cta-header {
    color: #fff;
    font-size: 50px;
    margin-top: 88px;
    margin-bottom: 0;
    font-weight: 700;
    border-radius: 17.641px;
}

.cta-btn {
    background-color: #0e51cb;
    border-radius: 8px;
    padding: 10px 50px;
    color: #fff;
    margin-bottom: 88px;
    height: 86px;
    display: flex;
    align-items: center;
    font-size: 30px;
    width: 352px;
    justify-content: center;
    font-weight: 700;
}

    .cta-btn:hover,
    .cta-btn:focus {
        background-color: #fff;
    }

    .cta-btn:visited {
        color: #fff;
    }

@media only screen and (max-width: 900px) {
    .cta-header {
        margin: 10px 5%;
        text-align: center;
    }
}

/* Categories Page */

/* Search */

.categories-header {
    display: flex;
    align-items: center;
    height: 150px;
    background-color: #f0eee8;
}

#cat-search-input-home {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    width: 40vw;
    border-radius: 8px;
    background-color: var(--portalThemeColor7);
    color: var(--portalThemeOnColor7);
    font-size: 18px;
    border: none;
    box-shadow: 0px 0.3px 0.9px rgba(0, 0, 0, 0.1), 0px 1.6px 3.6px rgba(0, 0, 0, 0.13);
    padding-left: 60px;
}

    #cat-search-input-home::placeholder {
        color: var(--portalThemeOnColor7);
    }

#cat-searchIcon {
    position: absolute !important;
    width: 28px;
    height: 28px;
    margin-left: 1%;
}

.cat-searchContainer {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-left: 10%;
}

@media screen and (max-width: 900px) {
    #cat-search-input-home {
        width: 100%;
        padding-left: 40px;
        font-size: 14px;
    }

    .cat-searchContainer {
        width: 100%;
        margin: 0 5%;
        padding: 0;
    }
}

/* Main */

/* Sidebar */

.search-categories-container {
    display: flex;
    background-color: #fff;
    margin: 0 15%;
    padding: 72px 0;
    gap: 64px;
}

.categories-container {
    display: flex;
    background-color: #fff;
    margin: 0 15%;
    padding: 72px 0;
}

.category-list-container {
    display: flex;
    flex-direction: column;
    width: 25%;
}

.category-list-item {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 32px;
}

    .category-list-item > a:hover {
        color: #0e51cb;
        text-decoration: none;
    }

.category-list-title {
    font-size: 1em;
    font-weight: 700;
}

.category-list-title-active {
    font-size: 1em;
    font-weight: 700;
    color: #0e51cb !important;
}

.list-icon {
    height: 20px;
    width: 20px;
}

.category-main {
    width: 65%;
    margin-left: 100px;
}

.category-list-a {
    margin: 0;
}

@media screen and (max-width: 900px) {
    .categories-container {
        flex-direction: column;
        margin: 0 5%;
    }

    .category-list-container {
        width: 100%;
        margin-bottom: 20px;
    }

    .category-main {
        width: 100%;
        margin-left: 0;
    }
}

#img-back-breadcrumb {
    margin-right: 16px;
}

#img-next-breadcrumb {
    margin: 0 16px;
}

/* Main Section */

.category-h1 {
    margin: 48px 0 0;
    font-size: 50px;
    line-height: 55px;
    font-weight: 700;
}

.category-h2 {
    font-size: 30px;
    font-weight: 700;
    margin: 0 0 16px;
}

.category-a {
    font-size: 18px;
}

    .category-a:hover {
        color: #0e51cb;
    }

.category-list-ul > li {
    padding: 16px 0;
}

/* Answers Page */

.answers-container {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    margin: 0 25%;
    padding: 2% 0;
}

.answer-title {
    font-size: 3em;
    font-weight: 700;
    margin: 48px 0 0;
}

.answer-p {
    font-size: 1.5em;
    font-weight: 400;
    margin-bottom: 56px;
    color: #505254;
}

/* List Styling */

.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .btn-group {
    z-index: 4;
    margin-left: -280px;
    border: none;
    width: 16px;
    /*margin-top: 10px;*/
}

#list-search-input {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 53px;
    width: 100%;
    border-radius: 8px;
    background-color: var(--portalThemeColor7);
    color: var(--portalThemeOnColor7);
    font-size: 18px !important;
    border: none;
    box-shadow: 0px 0.3px 0.9px rgba(0, 0, 0, 0.1), 0px 1.6px 3.6px rgba(0, 0, 0, 0.13);
    padding-left: 60px;
}

    #list-search-input::placeholder {
        color: var(--portalThemeOnColor7);
    }

.crmEntityFormView,
.entitylist,
.modal-content,
.popover-content {
    background-color: #f0eee8;
    color: #000000;
    border: 1px solid #f0eee8;
}

footer .footer-bottom {
    background: #007749;
    color: #fff;
}

body > footer > div {
    padding: 0;
}

footer .footer-bottom p {
    color: #fff;
}




.content-row {
    position: relative;
    background: white;
    padding: 40px 35px;
}

    .content-row * {
        z-index: 1;
    }

    .content-row,
    .content-row a,
    .content-row p,
    .content-row li {
        font-size: 14px;
    }

        .content-row p {
            color: rgba(0, 0, 0, 0.80);
            font-family: Verdana;
            font-weight: 400;
            line-height: 21px;
            word-wrap: break-word;
            margin: 15px 0;
        }

        .content-row a {
            color: #006EAD;
        }

        .content-row hr {
            border-color: #000;
        }

.column-center {
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.content-row .sub-block {
    padding: 40px !important;
    border-radius: 10px;
}

.content-row .col-xs-1, .content-row .col-sm-1, .content-row .col-md-1, .content-row .col-lg-1, .content-row .col-xs-2, .content-row .col-sm-2, .content-row .col-md-2, .content-row .col-lg-2, .content-row .col-xs-3, .content-row .col-sm-3, .content-row .col-md-3, .content-row .col-lg-3, .content-row .col-xs-4, .content-row .col-sm-4, .content-row .col-md-4, .content-row .col-lg-4, .content-row .col-xs-5, .content-row .col-sm-5, .content-row .col-md-5, .content-row .col-lg-5, .content-row .col-xs-6, .content-row .col-sm-6, .content-row .col-md-6, .content-row .col-lg-6, .content-row .col-xs-7, .content-row .col-sm-7, .content-row .col-md-7, .content-row .col-lg-7, .content-row .col-xs-8, .content-row .col-sm-8, .content-row .col-md-8, .content-row .col-lg-8, .content-row .col-xs-9, .content-row .col-sm-9, .content-row .col-md-9, .content-row .col-lg-9, .content-row .col-xs-10, .content-row .col-sm-10, .content-row .col-md-10, .content-row .col-lg-10, .content-row .col-xs-11, .content-row .col-sm-11, .content-row .col-md-11, .content-row .col-lg-11, .content-row .col-xs-12, .content-row .col-sm-12, .content-row .col-md-12, .content-row .col-lg-12 {
    padding: 10px 15px;
}

@media (max-width: 500px) {
    .content-row {
        padding: 20px 15px;
    }

        .content-row .sub-block {
            padding: 20px !important;
        }
}

p {
    font-family: 'Roboto', sans-serif !important;
    font-size: 18px !important;
    font-weight: 400 !important;
}

h1 {
    font-family: 'Roboto', sans-serif !important;
    font-size: 32px !important;
    font-weight: 700 !important;
    margin-left: 0px !important;
    margin-right: 0px !important;
}

h2 {
    font-family: 'Roboto', sans-serif !important;
    font-size: 28px !important;
    font-weight: 700 !important;
}

h3 {
    font-family: 'Roboto', sans-serif !important;
    font-size: 24px !important;
    font-weight: 700 !important;
}

.text-center {
    justify-content: center;
    text-align: center;
}

.stat_list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.stat {
    width: 280px;
    padding: 0;
}


    .stat .title {
        color: #007949;
        font-size: 18px;
        font-weight: 700;
        line-height: 24px;
        word-wrap: break-word;
        padding-bottom: 0%;
    }

    .stat .stat_body {
        position: relative;
        padding: 5px;
        text-align: left;
    }

.stat_list {
    width: 90%;
    margin: 0 auto;
    /*z-index: 10;
  margin-top: -80px;*/
    background: white;
}

.why_end_fw_card_list {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.why_end_fw_card {
    position: relative;
    width: 280px;
    height: 256.39px;
    clip-path: path('M 17.09,28 L 102.56,28 A 17.09,14 0,0,0 119.65,14 A 17.09,14 0,0,1 136.74,0 L 239.30,0 A 17.09,14 0,0,1 256.39,14 L 256.39,266 A 17.09,14 0,0,1 239.30,280 L 17.09,280 A 17.09,14 0,0,1 0,266 L 0,42 A 17.09,14 0,0,1 17.09,28 Z');
    -webkit-clip-path: path('M 17.09,28 L 102.56,28 A 17.09,14 0,0,0 119.65,14 A 17.09,14 0,0,1 136.74,0 L 239.30,0 A 17.09,14 0,0,1 256.39,14 L 256.39,266 A 17.09,14 0,0,1 239.30,280 L 17.09,280 A 17.09,14 0,0,1 0,266 L 0,42 A 17.09,14 0,0,1 17.09,28 Z');
    overflow: hidden;
    border-bottom-left-radius: 20px;
}


.efw_title {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 115px;
    font-family: 'Roboto', sans-serif !important;
    font-weight: 500;
    text-align: center;
    line-height: 17px;
    z-index: 2;
    padding-top: 13px;
    padding-left: 18px;
    text-align: left;
}

.efw-container {
    position: relative;
    width: 290px;
    height: 284.39px;
    background: white;
    border-radius: 20px;
    padding: 15px;
}


/*Why End Food Waste*/
.end_food_waste_cards {
    width: 100%;
    height: auto;
    aspect-ratio: 402 / 345; /* maintain original aspect ratio */
    object-fit: cover;
}


/*Our Story*/

#our-story {
    background: #007749;
    /*padding-bottom: 100px;*/
}

#Why-end-food-waste-home {
    background: white;
}


.menu_list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    width: 90%;
    margin: 0 auto;
    z-index: 10;
    margin-top: -70px;
    background: white;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

    .menu_list button {
        cursor: pointer;
        transition: background-color 0.3s, border 0.3s;
    }

        .menu_list button.active-button {
            text-decoration: underline;
            text-decoration-color: #007749;
            text-decoration-thickness: 4px;
            text-underline-offset: 10px;
            color: #007749;
        }

.tab-content {
    display: none;
    opacity: 0;
    width: 90%;
    transition: opacity 0.5s ease-in-out;
}

    .tab-content.active {
        display: block;
        opacity: 1;
    }

#Vision_Purpose_Work {
    z-index: 10;
    margin-top: -140px;
}

.card_list {
    display: flex;
    flex-wrap: wrap;
    gap: 70px;
}

.cards {
    width: 320px;
}

    .cards .card_header {
        width: 314px;
        height: 174px;
        padding: 20px;
    }

        .cards .card_header img {
            max-width: 314px;
            ;
            height: 100%;
        }

    .cards .title {
        color: black;
        font-size: 20px !important;
        font-weight: 500;
        line-height: 32px;
        word-wrap: break-word;
        padding-bottom: 5px;
    }

    .cards .card_body {
        position: relative;
        padding: 20px;
        text-align: left;
    }

        .cards .card_body .p {
            font-size: 16px !important;
        }

        .cards .card_body img {
            width: 21.6px;
            height: 24px;
        }

.image-overlay img,
.image-left-overlay-upleft img,
.image-left-overlay-up img,
.image-right-overlay img {
    width: 100%;
}

.card_list_news {
    display: flex;
    flex-wrap: wrap;
    gap: 70px;
}

.card_news {
    width: 320px;
}

    .card_news .title {
        font-size: 18px !important;
        font-weight: bold !important;
    }


.card .card_header {
    width: 314px;
    height: 174px;
    padding: 20px;
}

    .card .card_header img {
        max-width: 314px;
        ;
        height: 100%;
    }

.card .title {
    color: black;
    font-size: 20px !important;
    font-weight: 500;
    line-height: 32px;
    word-wrap: break-word;
    padding-bottom: 15px;
}

.card .card_body {
    position: relative;
    background: #FBFBFB;
    padding: 20px;
    text-align: left;
}

    .card .card_body .p {
        font-size: 16px !important;
    }

    .card .card_body img {
        width: 21.6px;
        height: 24px;
    }

/*Signatory Cards*/
.signatory_card_list {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.signatory_card {
    width: 209px;
    height: 182px;
    border-radius: 30px;
    background: white;
}

    .signatory_card .card_header {
        width: 314px;
        height: 174px;
        padding: 20px;
    }

        .signatory_card .card_header img {
            max-width: 314px;
            ;
            height: 100%;
            border-radius: 10px;
        }

#our-signatories {
    background: #d3d3d3;
}




/*Home Service Offerings*/
.svc_card_list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.svc_card {
    width: 320px;
    text-align: justify;
}

    .svc_card .card_header {
        width: 290px;
        height: 200px;
        padding: 20px;
    }

        .svc_card .card_header img {
            width: 290px;
            ;
            height: 100%;
        }

    .svc_card .title {
        color: black;
        font-size: 18px !important;
        font-weight: bold !important;
        line-height: 32px;
        white-space: nowrap;
        padding-bottom: 10px;
        letter-spacing: -0.04em;
    }

    .svc_card .card_body {
        position: relative;
        background: #FBFBFB;
        width: 320px;
        text-align: justify;
        padding: 20px;
    }

        .svc_card .card_body .p {
            font-family: "Aptos", "Segoe UI", sans-serif !important;
            font-size: 16px !important;
            font-weight: 400;
            letter-spacing: 0%;
            text-align: justify;
            line-height: 100%;
        }

#svc_btn {
    font-family: "Aptos", "Segoe UI", sans-serif !important;
    width: fit-content;
    background-color: #007749;
    color: white;
    border-radius: 65px;
    height: 39.27px;
    padding: 6px 20px;
    font-size: 16px;
}

/*Our Signatories*/
.logo-card {
    padding: 1rem;
    text-align: center;
    margin-bottom: 1rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .logo-card img {
        max-width: 100%;
        height: 80px;
        object-fit: contain;
        margin-bottom: 0.75rem;
    }

.logo-title {
    font-family: "Aptos", "Segoe UI", sans-serif !important;
    font-size: 16px;
    font-weight: 500;
    color: #3e3e3e;
}


.menu_list_sign {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    align-content: center;
    margin: 0 auto;
    background: white;
}

    .menu_list_sign button {
        cursor: pointer;
        border-radius: 0px;
        transition: background-color 0.3s, border 0.3s;
    }

        .menu_list_sign button.active-button {
            color: white;
            background: #000000;
        }

/*Footer*/
footer {
    position: relative;
    border-top: 10px solid #001489;
}

    footer .container {
        width: 100%;
        margin: 0;
    }

    footer .footer-bottom {
        padding: 65px 60px 230px;
    }

    footer .bt-ln-row {
        padding: 20px 8px 48px;
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        margin: auto;
        text-align: center;
        border-top: 1px solid rgba(255, 255, 255, 0.80);
        width: Calc(100% - 100px);
    }

        footer .bt-ln-row * {
            color: rgba(255, 255, 255, 0.70);
            font-size: 12px;
            font-family: Verdana;
            font-weight: 400;
            line-height: 24px;
            word-wrap: break-word;
        }

/*-----------*/
.unit-card-list {
    display: flex;
    gap: 60px 60px;
    flex-wrap: wrap;
}

.unit-card {
    padding: 0 0 0 21px;
}

    .unit-card h1 {
        color: white;
        font-size: 16px !important;
        font-family: Verdana;
        font-weight: 500;
        word-wrap: break-word;
        margin: 0 0 19.5px;
    }

    .unit-card p {
        color: white;
        font-size: 12px !important;
        font-family: Verdana;
        font-weight: 400;
        line-height: 24px;
        word-wrap: break-word;
        margin: 0 0 11px !Important;
    }

footer .socialmedia {
    text-align: center;
    margin-right: 52px;
}

    footer .socialmedia img.company_logo {
        min-width: 168px;
        max-width: 168px;
    }

        footer .socialmedia img.company_logo.gs1 {
            margin: -45px 0;
        }

footer .socialmedia-links {
    /**/
}

    footer .socialmedia-links .link-item {
        width: 30px;
        height: 30px;
        display: inline;
        padding: 11px;
    }

        footer .socialmedia-links .link-item:not(:last-child) {
            padding-right: 15px;
        }

.navbar-nav .nav-item.active > a {
    background-color: #007749 !important;
    color: white !important;
}

    .navbar-nav .nav-item.active > a:hover {
        background-color: #000B49; /* Darker green on hover */
        color: white !important;
    }

.img_container {
    position: relative;
    max-width: 1350px;
    width: 100%;
    padding: 20px;
    margin: 50px auto;
    background-color: #001489;
}

button {
    padding: 10px 20px;
    font-size: 18px;
    background: #ffffff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

    button.active {
        background: #007749;
        color: white;
    }

.filter_buttons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.filterable_cards {
    display: flex;
    margin-top: 25px;
    gap: 10px;
    flex-wrap: wrap;
}

.img_card {
    flex-grow: 1;
    flex-basis: 300px;
    background-color: white;
    padding: 3px;
    border-radius: 8px;
}

    .img_card.hide {
        display: none;
    }

    .img_card img {
        width: 100%;
        height: 210px;
        object-fit: cover;
        border-radius: 8px;
    }

.img_card_body {
    padding: 15px 20px 20px;
}

.img_card_title {
    font-size: 20px;
    font-weight: 500;
    color: #333;
}

.img_card_text {
    font-size: 18px;
    color: #333;
}

.first-words {
    font-size: 40px;
    padding-right: 10px;
}






* {
    box-sizing: border-box
}

body {
    font-family: Verdana, sans-serif;
    margin: 0
}

.mySlides {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
}

img {
    vertical-align: middle;
}

/* Slideshow container */
.slideshow-container {
    max-width: 1280px;
    position: relative;
    margin: auto;
    height: 600px; /* <--- ADJUST THIS TO THE EXACT HEIGHT OF YOUR IMAGES */
}

.mySlides.active-slide {
    opacity: 1; /* Fully visible */
    z-index: 20; /* Highest layer */
}

.mySlides.fading-in {
    opacity: 1;
    z-index: 15;
    /* Apply the transition ONLY when fading IN */
    transition: opacity 1.5s ease-in-out;
}

/* 3. Class for the image that has just finished being visible (lowest Z-index) */
.mySlides.fading-out {
    opacity: 0;
    z-index: 5;
    /* Apply the transition ONLY when fading OUT */
    transition: opacity 1.5s ease-in-out;
}

.fade {
    animation: none !important;
}

/* Next & previous buttons */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    z-index: 30;
    height: 40px;
    width: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    background: #000000;
    border-radius: 50%;
    font-weight: bold;
    font-size: 24px;
    transition: 0.6s ease;
    user-select: none;
    text-align: center;
    align-content: center;
}

/* Position the "next button" to the right */
.next {
    right: 0;
}

    /* On hover, add a black background color with a little bit see-through */
    .prev:hover, .next:hover {
        background-color: #ffb81c;
    }

/* The dots/bullets/indicators */
.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    z-index: 50;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.dots-container {
    margin-top: 10px;
}

.active, .dot:hover {
    background-color: #717171;
}

/* Fading animation */
.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
    .prev, .next, .text {
        font-size: 11px
    }
}

.stats_title {
    font-size: 24px !important;
}

.stat p {
    font-size: 18px !important;
    text-align: center;
}

.ftr {
    width: 100%;
    box-sizing: border-box;
    background: #007749;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

@media (max-width: 768px) {
    .ftr {
        grid-template-columns: 1fr;
    }
}


/* Adjust the navigation menu font size */
.navbar .nav > li > a {
    font-size: 20px !important; /* Change 18px to your preferred size */
    font-weight: bold; /* Optional: Makes it bolder for better visibility */
}

/* Adjust the font size for the mobile/collapsed menu */
.navbar .nav li a {
    font-size: 20px;
    font-weight: bold;
    margin: auto;
}

/* Remove left spacing from the navigation container 
.custom-container {
    margin-left: 0 !important;
    padding-left: 0 !important;
    max-width: none !important; /* Ensures the container can touch the edge 
    width: 100% !important;     /* Forces it to span the full width 
}

 Ensure the logo itself doesn't have default internal padding 
.navbar-brand {
    padding-left: 0 !important;
    margin-left: 0 !important;
}



Target the header container that holds both the logo and the menu 
.custom-container, 
.navbar-header-container {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important; /* Keeps them grouped to the left 
    gap: 15px !important; /* ADJUST THIS: Increase or decrease for the gap between logo and menu 
}

 Ensure the navbar div doesn't have forced margins
#navbar.navbar-collapse {
    margin-left: 0 !important;
    display: flex !important;  Ensures menu items inside also behave well
    width: max-content !important;
}

Remove any default right margin from the logo 
.navbar-brand {
    margin-right: 0 !important;
    padding-right: 0 !important;
}*/


/* Update the main navbar container */
.navbar {
    display: flex;
    flex-wrap: nowrap; /* Prevent the entire bar from wrapping */
    align-items: center;
    justify-content: space-between;
    height: 100px;
    background-color: #fff; /* Changed from blue to white per your HTML inline style */
    padding: 0 20px;
}

/* Fix the collapse container */
#navbar.navbar-collapse {
    flex-grow: 1; /* Allows the menu to take up available space */
    display: flex !important; /* Overrides Bootstrap hidden state on desktop */
    justify-content: flex-end; /* Pushes menu items to the right */
    width: auto !important; /* REMOVE max-content - this was the main issue */
    margin-left: 20px !important;
}

/* Ensure the list stays horizontal */
.weblinks {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important; /* Keeps links on one line */
    list-style: none;
    margin: 0;
    padding: 0;
}

    .weblinks > li {
        white-space: nowrap; /* Prevents text inside links from wrapping */
    }

/* Hide specific items on smaller desktops to prevent overcrowding */
@media (max-width: 1200px) {
    /* Example: Hide the 5th item and beyond if the screen is under 1200px */
    .weblinks > li:nth-child(n+6):not(.dropdown) {
        /*display: none;*/
    }
}

/* Ensure mobile toggler works correctly */
@media (max-width: 991px) {
    #navbar.navbar-collapse.collapse:not(.show) {
        /*display: none !important;*/ /* Let Bootstrap handle the toggle on mobile */
    }

    .weblinks {
        flex-direction: column !important; /* Stack vertically on mobile */
    }
}


.map-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-top: 56.25%;
    border-radius: 10px;
}

    .map-container iframe {
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        width: 100%;
        height: 100%;
        border: none;
    }




/* Header |//------------------------------------------------------------------------------------------------*/
.navbar.static-top {
    z-index: 1000;
}

.page_corner_image {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
}

    .page_corner_image img {
        max-height: 600px;
    }

@media(max-width: 980px) {
    .page_corner_image {
        position: absolute;
        top: 0;
        right: 0;
        z-index: 1;
    }

        .page_corner_image img {
            max-height: 400px;
        }
}

@media(max-width: 766px) {
    .page_corner_image {
        position: absolute;
        top: 0;
        right: 0;
        z-index: 1;
    }

        .page_corner_image img {
            max-height: 150px;
        }
}

@media(max-width: 700px) {
    .page_corner_image {
        display: none;
    }
}

.navbar .container {
    width: 100%;
}

.navbar-collapse .menu-bar {
    background: #F9F9F9;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 11px;
    position: absolute;
    top: 10px;
    right: 35px;
    padding: 10px;
}

.navbar-brand {
    height: auto !important;
    padding: 0;
}

    .navbar-brand img {
        width: auto;
        height: 140px;
    }

.navbar-collapse.collapse.show {
    overflow: visible;
}

    .navbar-collapse.collapse.show .menu-bar {
        left: 0px;
    }

.nav.navbar-nav.weblinks {
    max-width: 100%;
}

.nav > li > a:hover {
    background-color: #c4d7ed;
    color: #0056b3;
    border-radius: 5px;
    text-decoration: none !important;
}


@media(min-width: 700px) {
    .navbar-collapse .menu-bar {
        max-width: Calc(100% - 275px);
        margin-right: 0;
    }

    .navbar-collapse.collapse {
        display: block;
        /* position: relative; */
    }

        .navbar-collapse.collapse.show .menu-bar {
            left: auto;
        }

    .navbar-nav > li {
        float: left;
    }


    .nav-item:has(> .loginBtn) {
        display: flex;
    }

        .nav-item:has(> .loginBtn) a {
            margin: auto 10px !important;
        }
}

@media(max-width: 700px) {
    .navbar-collapse .menu-bar {
        position: relative;
    }

    .navbar-collapse.collapse:not(.show) .menu-bar {
        display: none;
    }

    #navbar.navbar-collapse {
        background: transparent !important;
    }
}

@media (min-width: 700px) and (max-width: 1450px) {
    .navbar-collapse .menu-bar {
        padding-right: 107px;
    }

    .navbar-collapse.collapse:not(.show) .menu-bar {
        max-height: 69px;
        /*overflow: hidden;*/
    }

    .navbar .divider-vertical {
        margin: 15px 4px !important;
    }

    .navbar-collapse.collapse:not(.show) .nav.navbar-nav {
        height: 222px;
        overflow: hidden;
    }

    .navbar-collapse.collapse:not(.show) .navbar-nav > li {
        margin-bottom: 10000vh;
    }

    .dropdown.open .dropdown-menu {
        position: absolute;
    }

    .nav.navbar-nav.weblinks {
        margin: 0;
    }

        .nav.navbar-nav.weblinks li a {
            padding: 15px;
        }


    .navbar-toggler {
        position: absolute;
        right: 35px;
        z-index: 1;
        top: 20px;
        border-radius: 5px;
        display: flex !important;
    }

        .navbar-toggle .icon-bar {
            display: inline-block;
            border: 2px solid #fff;
            margin: 5px 3px;
            width: 0px;
            height: 0px;
        }

            .navbar-toggle .icon-bar + .icon-bar {
                margin-top: 5px;
            }
}


:root {
  --primary-color: #001489; /* Customize your brand color here */
  --text-color:black;
  --bg-hover: #f8fbff;
}

.custom-faq-section {
  max-width: 850px;
  margin: 60px auto;
  padding: 0 20px;
}

.faq-header {
  text-align: center;
  margin-bottom: 40px;
}

.faq-header h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: var(--text-color);
}

.faq-underline {
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    margin: 0 auto;
    border-radius: 2px;
    }

.faq-accordion {
    border-top: 1px solid #eaeaea;
    }

.faq-item {
    border-bottom: 1px solid #eaeaea;
    }

.faq-question {
    background-color: #007749;
    color: white;
    width: 100%;
    padding: 24px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
    text-align: left;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-color);
    transition: all 0.2s ease;
}

.faq-question:hover {
  color: var(--primary-color);
  background-color: var(--bg-hover);
}

/* The Animated Icon */
.icon {
  position: relative;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.icon::before, .icon::after {
  content: '';
  position: absolute;
  background-color: currentColor;
  transition: transform 0.3s ease;
}

/* Horizontal line */
.icon::before {
  width: 100%;
  height: 2px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

/* Vertical line */
.icon::after {
  width: 2px;
  height: 100%;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

/* Rotate vertical line to hide it when active (forming a minus sign) */
.faq-item.active .icon::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

.faq-item.active .icon::before {
  transform: translateY(-50%) rotate(180deg);
}

/* Answer Slide Animation */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background-color: #fff;
}

.faq-item.active .faq-answer {
  /* Set this to a very large number to accommodate long text */
  max-height: 2000px; 
  /* Switch to a different timing function when opening for better feel */
  transition: max-height 1s ease-in-out; 
}

.answer-content {
  padding: 0 10px 30px 10px;
  line-height: 1.6;
  color: #007749;
  font-size: 1.05rem;
}

.faq-item.active .faq-answer {
  max-height: 500px; /* Adjust if answers are very long */
}

.reference-section {
    max-width: 850px;
    margin: 20px auto 60px; /* Aligns with FAQ width */
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    border-top: 1px solid #eee;
}

.reference-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #007749;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.reference-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.reference-list li {
    display: flex;
    margin-bottom: 10px;
    font-size: 0.9rem;
    line-height: 1.5;
    color: #007749;
}

.ref-number {
    font-weight: bold;
    margin-right: 10px;
    color: #001489; /* Matches your FAQ primary color */
    flex-shrink: 0;
}

.ref-text a {
    color: #007749;
    text-decoration: none;
    margin-left: 5px;
}

.ref-text a:hover {
    text-decoration: underline;
}

/* Mobile adjustments */
@media (max-width: 600px) {
    .reference-section {
        margin: 10px 15px;
        padding: 15px;
    }
}