html, body {
    height: 100%;
    margin: 0;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

body > main {
    flex: 1 0 auto;
}

.gc-footer {
    background: #fff;
    /* background: f4fff0 */
    height: 53px;
    flex: 0 0 53px;
    display: flex;
    align-items: center;
    margin-top: 0;
}

.gc-footer-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.gc-footer-links {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    display: flex;
    align-items: center;
    gap: 16px;
}

.gc-footer-links li {
    color: #000 !important;
    font-size: 12px;
    font-weight: 600;
}

.gc-footer-divider {
    color: rgba(0,0,0,0.3) !important;
}

.gc-footer-social {
    display: flex;
    gap: 6px;
}

.gc-footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #0a1a33;
    color: #fff;
    font-size: 10px;
    text-decoration: none;
}

.gc-footer-social a:hover {
    background: #e6a545;
}

.gc-footer-contact-item {
    color: #000;
    font-size: 12px;
    font-weight: 400;
}
/* footer ends here */


/* header container: always full width, on every page */

header > .container {
    width: 100% !important;

    max-width: 100% !important;
}

header > .container > .row {
    margin-left: 0;

    margin-right: 0;
}



/* =========================================
   MOBILE NAV (hamburger menu)
   ========================================= */

.gc-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 36px;
    margin-top: 12px;
    margin-right: 5px;
    float: right;
    padding: 0;
    background: transparent;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
}

.gc-nav-toggle-bar {
    display: block;
    width: 20px;
    height: 2px;
    margin: 0 auto;
    background-color: #223D78;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.gc-nav-toggle.gc-open .gc-nav-toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.gc-nav-toggle.gc-open .gc-nav-toggle-bar:nth-child(2) {
    opacity: 0;
}
.gc-nav-toggle.gc-open .gc-nav-toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 767px) {

    .gc-nav-toggle {
        display: flex;
        margin-top: -2px;  /* updated */
    }

    .gc-nav-collapse {
        display: none;
        clear: both;
        width: 100%;
        max-height: 70vh;
        overflow-y: auto;
        border-top: 1px solid #eee;
    }

    .gc-nav-collapse.gc-open {
        display: block;
    }

    .gc-nav-collapse .navbar-header,
    .gc-nav-collapse .menu-left,
    .gc-nav-collapse .menu {
        float: none !important;
        width: 100%;
        margin: 0 !important;
    }

    .gc-nav-collapse .nav-tabs {
        display: block;
    }

    .gc-nav-collapse .nav-tabs > li {
        float: none;
        width: 100%;
    }

    .gc-nav-collapse .nav-tabs > li > a {
        display: block;
        padding: 12px 15px !important;
        border-bottom: 1px solid #f2f2f2;
    }

    /* dropdown submenus expand inline instead of floating.
       NOTE: this site shows/hides dropdowns with opacity+visibility
       (not display:none), so a closed dropdown still reserves its
       full height unless we collapse it here too */
    .gc-nav-collapse .dropdown-menu {
        position: static !important;
        float: none !important;
        width: 100% !important;
        margin: 0 !important;
        box-shadow: none !important;
        border: 0 !important;
        border-radius: 0 !important;
        background-color: #f7f7f7 !important;
        max-height: 0 !important;
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
        overflow: hidden !important;
        padding: 0 !important;
        transform: none !important;
        transition: max-height 0.25s ease, opacity 0.2s ease !important;
    }

    .gc-nav-collapse .dropdown-menu::before {
        display: none !important;
    }

    .gc-nav-collapse .dropdown.open > .dropdown-menu {
        max-height: 600px !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        padding: 8px 0 !important;
        position: relative !important;
        z-index: 991 !important;
    }

    .gc-nav-collapse .dropdown-menu > li > a {
        padding-left: 30px !important;
    }

    .gc-nav-collapse .dropdown-submenu > .dropdown-menu {
        position: static !important;
        left: auto !important;
        top: auto !important;
        float: none !important;
        width: 100% !important;
        margin: 0 !important;
        box-shadow: none !important;
        border: 0 !important;
        background-color: #eee !important;
        max-height: 0 !important;
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
        overflow: hidden !important;
        padding: 0 !important;
        transform: none !important;
        transition: max-height 0.25s ease, opacity 0.2s ease !important;
    }

    .gc-nav-collapse .dropdown-submenu.open > .dropdown-menu {
        max-height: 300px !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        padding: 4px 0 !important;
    }

    .gc-nav-collapse .dropdown-submenu > .dropdown-menu > li > a {
        padding-left: 45px !important;
    }

    .gc-nav-collapse .gc-search-item {
        width: 100%;
        padding: 10px 15px;
    }

    .gc-nav-collapse .gc-search-form {
        display: flex;
        width: 100%;
    }

    .gc-nav-collapse .gc-search-input {
        flex: 1 1 auto;
        width: auto;
        margin-left: -12px;
    }
}


/* =========================================
   FOOTER: wrap on narrow screens
   ========================================= */

/* =========================================
   FOOTER: wrap on narrow screens
   ========================================= */

@media (max-width: 700px) {

    .gc-footer {
        height: auto;
        flex: 0 0 auto;
        padding: 10px 0;
    }

    .gc-footer-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .gc-footer-contact-item {
        word-break: break-word;
    }

    .gc-footer-phone {
        white-space: nowrap;
    }

}