/* ==========================================
   NAVBAR
========================================== */

.navbar {

    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    height: 106px;

    /* padding:0 70px; */
    margin-right: 0;
    display: grid;
    grid-template-columns: 1fr auto 1fr;

    align-items: center;

    background: rgba(0, 0, 0, .35);
    backdrop-filter: blur(8px);

    z-index: 9999;
    transition: .35s;
    /* overflow: hidden; */
    overflow: visible;
}

.navbar.scrolled {

    background: #000;
}

/* ==========================================
   LEFT
========================================== */

.navbar-left {

    width: auto;
    max-width: 520px;

    justify-self: end;

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

    gap: 18px;

    margin-right: 0;

}

.navbar-left a {

    text-align: center;
}

/* ==========================================
   CENTER
========================================== */

.navbar-center {

    width: 180px;

    display: flex;
    justify-content: center;
    align-items: center;
}

.navbar-logo {

    display: flex;
    justify-content: center;
    align-items: center;
}

.navbar-logo img {

    width: 115px;
    display: block;
}

/* ==========================================
   RIGHT
========================================== */

.navbar-right {

    width: auto;
    max-width: 620px;

    justify-self: start;

    display: grid;
    grid-template-columns: repeat(3, 1fr) auto;

    gap: 18px;

    margin-left: 0;

    align-items: center;

}

.navbar-right a {

    text-align: center;
}

/* ==========================================
   LOCATION SWITCHER
========================================== */

.loc-switch {

    position: relative;

    display: flex;

    align-items: center;

    justify-content: center;

    height: 106px;

}

.loc-switch-btn {

    display: flex;

    align-items: center;

    justify-content: center;

    height: 106px;

    padding: 0 4px;

    background: none;

    border: none;

    color: #fff;

    font-size: 18px;

    font-weight: 700;

    letter-spacing: 1.8px;

    white-space: nowrap;

    cursor: pointer;

    transition: .3s;

}

.loc-switch-btn:hover,
.loc-switch:hover .loc-switch-btn,
.loc-switch:focus-within .loc-switch-btn {

    color: #C92327;

}

.loc-switch-dropdown {

    position: absolute;

    top: 100%;

    right: 0;

    min-width: 140px;

    background: #000;

    border: 1px solid rgba(255, 255, 255, .12);

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

    transform: translateY(-6px);

    transition: .2s;

    z-index: 10002;

}

.loc-switch:hover .loc-switch-dropdown,
.loc-switch:focus-within .loc-switch-dropdown {

    opacity: 1;

    visibility: visible;

    pointer-events: auto;

    transform: translateY(0);

}

.loc-switch-dropdown .loc-link {

    display: flex;

    align-items: center;

    justify-content: center;

    height: 48px !important;

    padding: 0 16px;

    color: #fff;

    text-decoration: none;

    font-size: 15px;

    font-weight: 700;

    letter-spacing: 1.4px;

    white-space: nowrap;

    transition: .3s;

}

.loc-switch-dropdown .loc-link:hover,
.loc-switch-dropdown .loc-link.loc-current {

    color: #C92327;

}

.loc-switch-dropdown .loc-link.loc-current::after {

    display: none;

}

.mobile-loc-switch {

    display: flex;

    flex-direction: column;

    border-bottom: 2px solid rgba(255, 255, 255, .18);

}

.mobile-loc-label {

    display: flex;

    justify-content: center;

    align-items: center;

    height: 40px;

    color: rgba(255, 255, 255, .45);

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 2px;

}

.mobile-loc-switch .loc-link {

    height: 52px;

    display: flex;

    justify-content: center;

    align-items: center;

    color: #fff;

    text-decoration: none;

    font-size: 17px;

    font-weight: 700;

    letter-spacing: 1.4px;

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

}

.mobile-loc-switch .loc-link:hover,
.mobile-loc-switch .loc-link.loc-current {

    color: #C92327;

}

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

.navbar a {

    position: relative;

    display: flex;

    align-items: center;

    justify-content: center;

    height: 106px;

    color: #fff;

    text-decoration: none;

    font-size: 18px;

    font-weight: 700;

    letter-spacing: 1.8px;

    white-space: nowrap;

    transition: .3s;

}

.navbar a:hover {

    color: #C92327;
}

.navbar a.active {

    color: #C92327;
}

.navbar a.active:not(.navbar-logo)::after {

    content: "";

    position: absolute;

    left: 50%;

    transform: translateX(-50%);

    bottom: 18px;

    width: 22px;

    height: 2px;

    background: #C92327;

    border-radius: 10px;

}



.book-link {

    color: #C92327 !important;
}

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

.navbar-toggle {

    display: none;

    width: 42px;
    height: 42px;

    background: none;
    border: none;

    color: #fff;

    font-size: 32px;

    cursor: pointer;

    z-index: 10001;
}

@media (max-width:767px) {

    .navbar {

        height: 74px;

        display: flex;

        justify-content: space-between;

        align-items: center;

        padding: 0 0px;
    }

    .navbar-left,
    .navbar-right {

        display: none;
    }

    .navbar-center {

        width: auto;
    }

    .navbar-logo img {

        width: 70px;
    }

    .navbar-toggle {

        display: flex;

        justify-content: center;

        align-items: center;
    }

}

.mobile-menu {

    position: fixed;

    top: 74px;
    left: 0;

    width: 100%;

    background: #000;

    display: flex;

    flex-direction: column;

    transform: translateY(-120%);

    transition: .35s;

    z-index: 9998;
}

.mobile-menu.active {

    transform: translateY(0);
}

.mobile-menu a {

    height: 60px;

    display: flex;

    justify-content: center;

    align-items: center;

    color: #fff;

    text-decoration: none;

    font-size: 17px;

    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.mobile-menu a:hover {

    color: #C92327;
}

/* ==========================================
   NOTEBOOK
========================================== */

@media (min-width:1024px) and (max-width:1365px) {

    .navbar {

        height: 90px;

        padding: 0 0px;

        grid-template-columns: 1fr auto 1fr;
    }

    .navbar-left {

        max-width: 420px;
        margin-right: 35px;
    }

    .navbar-right {

        max-width: 500px;
        margin-left: 35px;
    }

    .navbar a {

        height: 90px;

        font-size: 15px;

        letter-spacing: 1px;
    }

    .loc-switch,
    .loc-switch-btn {

        height: 90px;

        font-size: 15px;

        letter-spacing: 1px;
    }

    .navbar-logo img {

        width: 90px;
    }

}

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

@media (min-width:768px) and (max-width:1023px) {

    .navbar {

        height: 80px;

        padding: 0 0px;

        grid-template-columns: 1fr auto 1fr;
    }

    .navbar-left {

        max-width: 290px;
        margin-right: 20px;
    }

    .navbar-right {

        max-width: 360px;
        margin-left: 20px;
    }

    .navbar a {

        height: 80px;

        font-size: 13px;

        letter-spacing: .3px;
    }

    .loc-switch,
    .loc-switch-btn {

        height: 80px;

        font-size: 13px;

        letter-spacing: .3px;
    }

    .navbar-logo img {

        width: 80px;
    }

}