/* =========================================================
   COEZET HEADER - COMPLETE RESPONSIVE CSS
========================================================= */

:root {
    --cz-navy: #fff;
    --cz-navy-dark: #087a79;
    --cz-teal: #087a79;
    --cz-teal-dark: #066a6b;
    --cz-teal-hover: #128987;
    --cz-green: #55d871;
    --cz-yellow: #ffd12f;
    --cz-yellow-hover: #f4c11d;
    --cz-cream: #000;
    --cz-white: #ffffff;
    --cz-text: #26364a;
    --cz-muted: #6d7888;
    --cz-border: #e8ecef;
    --cz-container: 1440px;
}


/* =========================================================
   RESET
========================================================= */

.cz-header,
.cz-header *,
.cz-header *::before,
.cz-header *::after {
    box-sizing: border-box;
}

.cz-header {
    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 99999;

    font-family: "Poppins", sans-serif;

    background: var(--cz-teal-dark);

    box-shadow:
        0 2px 15px rgba(0, 0, 0, 0.08);
}

.cz-header a {
    text-decoration: none;
}

.cz-header button {
    font-family: inherit;
}


/* =========================================================
   CONTAINER
========================================================= */

.cz-container {
    width: 100%;

    max-width: var(--cz-container);

    margin: 0 auto;
}


/* =========================================================
   TOP UTILITY BAR
========================================================= */

.cz-topbar {
    height: 48px;

    background: var(--cz-teal-dark);
}

.cz-topbar-inner {
    height: 100%;

    display: flex;

    align-items: center;

    justify-content: flex-end;
}

.cz-utility-nav {
    height: 100%;

    display: flex;

    align-items: center;

    justify-content: flex-end;

    gap: 28px;
}

.cz-utility-nav a {
    display: inline-flex;

    align-items: center;

    height: 100%;

    color: white;

    font-size: 15px;

    font-weight: 400;

    white-space: nowrap;

    transition:
        color 0.25s ease;
}

.cz-utility-nav a:hover {
    color: white;
}


/* Search */

.cz-utility-nav .cz-search {
    width: 28px;

    justify-content: center;

    color: white;

    font-size: 17px;
}

.cz-search:hover {
    color: var(--cz-teal-dark);
}


/* =========================================================
   MAIN NAVIGATION BAR
========================================================= */

.cz-mainbar {
    padding: 10px 0;

    background: var(--cz-navy);
}

.cz-mainbar-inner {
    height: 100%;

    display: flex;

    align-items: center;
}


/* =========================================================
   LOGO
========================================================= */

.cz-logo {
    display: flex;

    align-items: center;

    flex-shrink: 0;

    line-height: 0;
}

.cz-logo img {
    display: block;

    width: 200px;

    max-width: 100%;

    height: auto;
}


/* =========================================================
   DESKTOP NAVIGATION
========================================================= */

.cz-desktop-nav {
    margin-left: auto;
}

.cz-main-menu {
    display: flex;

    align-items: center;

    gap: 2px;

    margin: 0;

    padding: 0;

    list-style: none;
}

.cz-main-menu > li {
    position: relative;
}

.cz-main-menu > li > a {
    min-height: 48px;

    padding: 10px 12px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--cz-text);

    font-size: 15px;

    font-weight: 500;

    line-height: 1.2;

    white-space: nowrap;

    transition:
        color 0.25s ease,
        background 0.25s ease;
}

.cz-main-menu > li > a:hover {
    color: var(--cz-green);
}


/* =========================================================
   MAIN NAV ARROW
========================================================= */

.cz-arrow {
    width: 7px;
    height: 7px;

    margin-left: 9px;

    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;

    transform: rotate(45deg);

    transition:
        transform 0.25s ease;
}

.cz-dropdown-item:hover > a .cz-arrow {
    transform: rotate(225deg);
}


/* =========================================================
   NORMAL DROPDOWNS
   About / Resources / News / Gallery
========================================================= */

.cz-dropdown {
    position: absolute;

    top: calc(100% + 1px);

    left: 0;

    min-width: 240px;

    padding: 10px;

    background: var(--cz-white);

    border-top:
        3px solid var(--cz-teal);

    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.16);

    opacity: 0;

    visibility: hidden;

    transform: translateY(8px);

    transition:
        opacity 0.22s ease,
        visibility 0.22s ease,
        transform 0.22s ease;

    z-index: 999999;
}

.cz-dropdown-item:hover > .cz-dropdown {
    opacity: 1;

    visibility: visible;

    transform: translateY(0);
}
/* =========================================================
   OUR INITIATIVES - NESTED DROPDOWN
========================================================= */

.cz-initiatives-item {
    position: relative;
}


/* Main initiatives dropdown */

.cz-initiatives-dropdown {
    min-width: 285px;
}


/* =========================================================
   SUBMENU ITEM
========================================================= */

.cz-submenu-item {
    position: relative;
}


/* Parent submenu link */

.cz-submenu-item > a {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    width: 100%;
}

.cz-submenu-arrow {
    display: block !important;

    width: 8px !important;
    height: 8px !important;

    min-width: 8px;
    min-height: 8px;

    margin-left: auto;

    border-top: 2px solid #087a79 !important;
    border-right: 2px solid #087a79 !important;

    background: transparent !important;

    transform: rotate(45deg) !important;

    opacity: 1 !important;
    visibility: visible !important;

    flex-shrink: 0;
}

/* Rotate arrow on hover */

.cz-submenu-item:hover > a .cz-submenu-arrow {
    transform: rotate(45deg) translate(2px, -2px);

    color: var(--cz-teal-dark);
}


/* =========================================================
   NESTED SUBMENU
========================================================= */

.cz-submenu {
    position: absolute;

    top: -10px;

    left: calc(100% + 5px);

    min-width: 285px;

    padding: 10px;

    background: var(--cz-white);

    border-top: 3px solid var(--cz-teal);

    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.16);

    border-radius: 0 0 5px 5px;

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

    transform: translateX(8px);

    transition:
        opacity 0.22s ease,
        visibility 0.22s ease,
        transform 0.22s ease;

    z-index: 1000000;
}


/* =========================================================
   SHOW SUBMENU ON HOVER
========================================================= */

.cz-submenu-item:hover > .cz-submenu {
    opacity: 1;

    visibility: visible;

    pointer-events: auto;

    transform: translateX(0);
}


/* =========================================================
   SUBMENU LINKS
========================================================= */

.cz-submenu a {
    display: block;

    width: 100%;

    padding: 10px 12px;

    color: var(--cz-text);

    font-size: 13px;

    font-weight: 400;

    line-height: 1.45;

    border-radius: 5px;

    transition:
        color 0.2s ease,
        background 0.2s ease,
        padding-left 0.2s ease;
}


.cz-submenu a:hover {
    color: var(--cz-teal-dark);

    background: #edf7f6;

    padding-left: 16px;
}


/* =========================================================
   KEEP SUBMENU OPEN WHEN MOVING FROM PARENT TO SUBMENU
========================================================= */

.cz-submenu-item::after {
    content: "";

    position: absolute;

    top: 0;

    right: -8px;

    width: 8px;

    height: 100%;
}

.cz-dropdown a {
    display: block;

    padding: 10px 12px;

    color: var(--cz-text);

    font-size: 14px;

    font-weight: 400;

    line-height: 1.4;

    border-radius: 5px;

    transition:
        color 0.2s ease,
        background 0.2s ease;
}

.cz-dropdown a:hover {
    color: var(--cz-teal-dark);

    background: #edf7f6;
}


.cz-mega-item {
    position: relative !important;
}
/* =========================================================
   DONATE
========================================================= */

.cz-donate {
    margin-left: 10px;
}

.cz-donate > a {
    min-height: 52px !important;

    padding:
        12px 25px !important;

    background: var(--cz-yellow);

    color: #111 !important;

    border-radius: 5px;

    font-size: 16px !important;

    font-weight: 600 !important;

    transition:
        background 0.25s ease,
        transform 0.25s ease;
}

.cz-donate > a:hover {
    background: var(--cz-yellow-hover);

    color: #111 !important;

    transform: translateY(-1px);
}


/* =========================================================
   MOBILE MENU BUTTON
========================================================= */

.cz-mobile-button {
    display: none;

    width: 44px;

    height: 44px;

    margin-left: auto;

    padding: 0;

    align-items: center;

    justify-content: center;

    flex-direction: column;

    gap: 5px;

    border:
        1px solid rgba(255, 255, 255, 0.2);

    border-radius: 6px;

    background: #066a6b;

    cursor: pointer;
}

.cz-mobile-button span {
    width: 21px;

    height: 2px;

    display: block;

    background: var(--cz-white);

    transition:
        transform 0.25s ease,
        opacity 0.25s ease;
}


/* Hamburger → X */

.cz-mobile-button.active span:nth-child(1) {
    transform:
        translateY(7px)
        rotate(45deg);
}

.cz-mobile-button.active span:nth-child(2) {
    opacity: 0;
}

.cz-mobile-button.active span:nth-child(3) {
    transform:
        translateY(-7px)
        rotate(-45deg);
}


/* =========================================================
   MOBILE MENU
========================================================= */

.cz-mobile-menu {
    display: none;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1199px) {

    .cz-container {
        padding-left: 25px;

        padding-right: 25px;
    }

    .cz-logo img {
        width: 215px;
    }

    .cz-main-menu > li > a {
        padding-left: 8px;

        padding-right: 8px;

        font-size: 13px;
    }

    .cz-utility-nav {
        gap: 20px;
    }

    .cz-utility-nav a {
        font-size: 14px;
    }

    .cz-donate {
        margin-left: 5px;
    }

    .cz-donate > a {
        padding-left: 18px !important;

        padding-right: 18px !important;
    }
}


/* =========================================================
   TABLET / MOBILE
========================================================= */

@media (max-width: 1024px) {

    /* Hide desktop utility bar */

    .cz-topbar {
        display: none;
    }


    /* Main header */

    .cz-mainbar {
        height: 78px;
    }

    .cz-mainbar-inner {
        padding-left: 24px;

        padding-right: 24px;
    }


    /* Logo */

    .cz-logo img {
        width: 190px;
    }


    /* Desktop navigation off */

    .cz-desktop-nav {
        display: none;
    }


    /* Hamburger */

    .cz-mobile-button {
        display: flex;
    }


    /* =====================================================
       MOBILE MENU PANEL
    ====================================================== */

    .cz-mobile-menu {
        position: absolute;

        top: 78px;

        left: 0;

        width: 100%;

        max-height:
            calc(100vh - 78px);

        display: block;

        overflow-y: auto;

        background: #066a6b;

        opacity: 0;

        visibility: hidden;

        transform:
            translateY(-10px);

        transition:
            opacity 0.25s ease,
            visibility 0.25s ease,
            transform 0.25s ease;
    }

    .cz-mobile-menu.active {
        opacity: 1;

        visibility: visible;

        transform:
            translateY(0);
    }


    /* Mobile content */

    .cz-mobile-content {
        padding:
            20px 25px 25px;
    }


    /* =====================================================
       MOBILE UTILITY
    ====================================================== */

    .cz-mobile-utility {
        display: grid;

        grid-template-columns:
            repeat(2, 1fr);

        gap:
            5px 20px;
    }

    .cz-mobile-utility a {
        padding: 10px 0;

        color:
            rgba(255, 255, 255, 0.85);

        font-size: 13px;

        line-height: 1.4;
    }

    .cz-mobile-utility a:hover {
        color: #fff;
    }


    /* Divider */

    .cz-mobile-line {
        height: 1px;

        margin:
            15px 0;

        background:
            rgba(255, 255, 255, 0.12);
    }


    /* =====================================================
       MOBILE NAV
    ====================================================== */

    .cz-mobile-nav > a,
    .cz-mobile-nav > .cz-mobile-group > button {
        width: 100%;

        min-height: 48px;

        padding:
            12px 0;

        display: flex;

        align-items: center;

        justify-content: space-between;

        background: transparent;

        border: 0;

        border-bottom:
            1px solid rgba(255, 255, 255, 0.10);

        color: var(--cz-white);

        font-family: inherit;

        font-size: 14px;

        font-weight: 500;

        line-height: 1.4;

        text-align: left;

        cursor: pointer;
    }

    .cz-mobile-nav > a:hover {
        color: var(--cz-green);
    }


    /* Mobile group */

    .cz-mobile-group {
        width: 100%;
    }


    /* Main plus */

    .cz-plus {
        width: 25px;

        height: 25px;

        display: flex;

        align-items: center;

        justify-content: center;

        flex-shrink: 0;

        color:
            rgba(255, 255, 255, 0.8);

        font-size: 21px;

        font-weight: 300;

        line-height: 1;

        transition:
            transform 0.25s ease,
            color 0.25s ease;
    }

    .cz-mobile-group.active > button .cz-plus {
        transform: rotate(45deg);

        color: var(--cz-green);
    }


    /* =====================================================
       MAIN MOBILE SUBMENU
    ====================================================== */

    .cz-mobile-submenu {
        display: none;

        padding:
            5px 0 8px 15px;

        border-left:
            1px solid rgba(85, 216, 113, 0.35);
    }

    .cz-mobile-group.active
    > .cz-mobile-submenu {
        display: block;
    }


    /* Normal submenu links */

    .cz-mobile-submenu > a {
        display: block;

        padding:
            8px 5px;

        color:
            rgba(255, 255, 255, 0.75);

        font-size: 13px;

        line-height: 1.5;
    }

    .cz-mobile-submenu > a:hover {
        color: #fff;
    }


    /* =====================================================
       NESTED MOBILE MENU
    ====================================================== */

    .cz-mobile-nested-group {
        width: 100%;
    }


    /* Nested button */

    .cz-mobile-nested-group > button {
        width: 100%;

        min-height: 44px;

        padding:
            9px 5px;

        display: flex;

        align-items: center;

        justify-content: space-between;

        background: transparent;

        border: 0;

        color:
            rgba(255, 255, 255, 0.82);

        font-family: inherit;

        font-size: 13px;

        font-weight: 500;

        line-height: 1.45;

        text-align: left;

        cursor: pointer;
    }

    .cz-mobile-nested-group > button:hover {
        color: #fff;
    }


    /* Nested plus */

    .cz-nested-plus {
        width: 25px;

        height: 25px;

        display: flex;

        align-items: center;

        justify-content: center;

        flex-shrink: 0;

        margin-left: 10px;

        color:
            rgba(255, 255, 255, 0.7);

        font-size: 20px;

        font-weight: 300;

        line-height: 1;

        transition:
            transform 0.25s ease,
            color 0.25s ease;
    }

    .cz-mobile-nested-group.active
    .cz-nested-plus {
        transform: rotate(45deg);

        color: var(--cz-green);
    }


    /* Nested submenu */

    .cz-mobile-nested-submenu {
        display: none;

        margin-left: 5px;

        padding:
            3px 0 8px 14px;

        border-left:
            1px solid rgba(85, 216, 113, 0.30);
    }

    .cz-mobile-nested-group.active
    .cz-mobile-nested-submenu {
        display: block;
    }


    /* Nested links */

    .cz-mobile-nested-submenu a {
        display: block;

        padding:
            8px 6px;

        color:
            rgba(255, 255, 255, 0.68);

        font-size: 12.5px;

        line-height: 1.5;
    }

    .cz-mobile-nested-submenu a:hover {
        color: #fff;
    }


    /* Mobile section title */

    .cz-mobile-title {
        padding:
            12px 5px 5px;

        color: var(--cz-green);

        font-size: 10px;

        font-weight: 600;

        line-height: 1.4;

        text-transform: uppercase;

        letter-spacing: .5px;
    }


    /* =====================================================
       MOBILE DONATE
    ====================================================== */

    .cz-mobile-donate {
        min-height: 48px !important;

        margin-top: 20px;

        padding:
            12px !important;

        display: flex !important;

        align-items: center;

        justify-content: center !important;

        background:
            var(--cz-yellow) !important;

        color: #111 !important;

        border:
            0 !important;

        border-radius: 5px;

        font-weight: 600 !important;
    }

    .cz-mobile-donate:hover {
        background:
            var(--cz-yellow-hover) !important;

        color: #111 !important;
    }


    /* Prevent background scrolling */

    body.cz-menu-open {
        overflow: hidden;
    }


    /* =====================================================
       IMPORTANT:
       Hide desktop mega menu inside mobile
    ====================================================== */

    .cz-mobile-menu .cz-initiatives-menu {
        position: static;

        width: auto;

        display: block;

        padding: 0;

        background: transparent;

        border: 0;

        border-radius: 0;

        box-shadow: none;

        opacity: 1;

        visibility: visible;

        transform: none;
    }

    .cz-mobile-menu .cz-initiatives-left {
        width: auto;

        padding: 0;

        background: transparent;

        border-radius: 0;
    }

    .cz-mobile-menu .cz-initiative-parent {
        position: static;
    }

    .cz-mobile-menu .cz-initiative-parent > button,
    .cz-mobile-menu .cz-initiative-simple,
    .cz-mobile-menu .cz-initiative-submenu {
        all: unset;
    }

    .cz-mobile-menu
    .cz-initiative-submenu {
        display: none;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .cz-mainbar {
        height: 72px;
    }

    .cz-mainbar-inner {
        padding-left: 16px;

        padding-right: 16px;
    }

    .cz-logo img {
        width: 165px;
    }

    .cz-mobile-button {
        width: 42px;

        height: 42px;
    }

    .cz-mobile-menu {
        top: 72px;

        max-height:
            calc(100vh - 72px);
    }

    .cz-mobile-content {
        padding:
            15px 16px 20px;
    }

    .cz-mobile-utility {
        grid-template-columns: 1fr;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .cz-mainbar {
        height: 68px;
    }

    .cz-mainbar-inner {
        padding-left: 14px;

        padding-right: 14px;
    }

    .cz-logo img {
        width: 145px;
    }

    .cz-mobile-button {
        width: 40px;

        height: 40px;
    }

    .cz-mobile-menu {
        top: 68px;

        max-height:
            calc(100vh - 68px);
    }

    .cz-mobile-content {
        padding:
            12px 14px 18px;
    }

    .cz-mobile-nav > a,
    .cz-mobile-nav > .cz-mobile-group > button {
        min-height: 46px;

        font-size: 13.5px;
    }

    .cz-mobile-nested-group > button {
        font-size: 12.5px;
    }

    .cz-mobile-nested-submenu a {
        font-size: 12px;
    }
}