﻿html {
    overflow-y: scroll;
}

body.modal-open {
    padding-right: 0 !important;
}

.modal {
    padding-right: 0 !important;
}

/* HEADER */
.header {
    position: sticky;
    top: 0;
    z-index: 1050;
    height: 10vh;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    padding-left: 0;
    width: 100%;
}

/* LOGO */
.logo-wrap {
    height: 100%;
    flex-shrink: 0;
}

    .logo-wrap img {
        height: 100%;
        width: auto;
        display: block;
    }

/* NAV WRAPPER */
.nav-area {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* DESKTOP MENU */
@media (min-width: 992px) {
    .navbar-collapse {
        justify-content: center !important;
    }

    .navbar-nav {
        gap: 28px;
        align-items: center;
    }
}

/* MENU LINKS */
.nav-link {
    font-weight: 600;
    font-size: 14px;
    color: #000 !important;
    text-transform: uppercase;
}

    .nav-link:hover {
        color: #062c49 !important;
    }

/* CTA BUTTON */
.btn-touch {
    background: #062c49;
    color: #fff;
    padding: 10px 26px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    white-space: nowrap;
}

    .btn-touch:hover {
        background: #041f33;
        color: #fff;
    }

/* RIGHT CTA */
.cta-wrap {
    margin-right: 8px;
}

/* OFFCANVAS */
.offcanvas {
    width: 280px;
}

/* DROPDOWN */
.dropdown-menu {
    border-radius: 8px;
    border: none;
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
    padding: 10px 0;
}

.dropdown-item {
    font-weight: 500;
    font-size: 14px;
    padding: 10px 20px;
}

    .dropdown-item:hover {
        background: #f2f6fa;
        color: #062c49;
    }

/* HOVER DROPDOWN (DESKTOP) */
@media (min-width: 992px) {
    .city-dropdown:hover > .dropdown-menu {
        display: block;
        margin-top: 0;
    }
}

/* MOBILE FIX */
@media (max-width: 991.98px) {

    .header {
        overflow-x: hidden;
    }

    .nav-area {
        justify-content: flex-end;
        padding-right: 12px;
    }

    .navbar-toggler {
        margin-left: auto;
    }
}

html, body {
    width: 100%;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
}
