﻿#header {
    height: 60px;
    transition: all 1s;
    z-index: 1022;
    padding: 10px 0;
    background-color: #0000;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
}

    #header.header-transparent {
        background: none;
    }

    #header.header-scrolled {
        background-color: #0000008c;
        height: 60px;
        padding: 10px 0;
        box-shadow: 0 0 40px rgba(0,0,0,0.06);
        backdrop-filter: blur(5px);
    }

.header-logo-container {
    display: flex;
    align-items: center;
    font-size: 1.8rem;
    margin: 0;
    font-family: artinx;
    font-weight: normal;
}

    .header-logo-container a {
        color: white;
        transition: .5s ease all;
        letter-spacing: -.03rem;
    }

        .header-logo-container a:hover {
            color: #f7bc0a;
            letter-spacing: 0;
        }

.header-logo {
    padding: 0;
    position: relative;
    transition: .5s all ease;
    max-height: 5rem;
    filter: drop-shadow(1px 1px 3px rgba(0, 0, 0, 0.4));
    max-width: 20rem;
    transition: .7s ease all;
    position: relative;
    top: -.4rem;
}

.header-logo-scrolled {
    padding: 0;
    position: relative;
    transition: .5s all ease;
    transform: scale(0.85, 0.85);
    opacity: .7;
}

#header.header-scrolled .header-logo {
    max-height: 4rem;
    max-width: 18rem;
}

#main {
    margin-top: 80px;
}

@media (max-width:991.98px) {
    .header-logo {
        max-width: 16rem !important;
        top: -.075rem;
        filter: none;
    }
}

@media (max-width: 767.98px) {
    #header {
        height: 3rem;
        padding: 4px 0;
        background-color: white;
        border-bottom: 1px rgba(0,0,0,.07) solid;
        position: sticky;
        top: 0;
        left: 0;
        right: 0;
    }

        #header.header-scrolled {
            box-shadow: 0 0 .5rem rgba(0,0,0,0.15);
            height: 3rem;
            background-color: white;
            backdrop-filter: unset;
            padding: 0;
        }

    #header-container {
        width: 100%;
        padding-right: 15px;
        padding-left: 15px;
        margin-right: auto;
        margin-left: auto;
        height: 100%;
    }

    .header-logo {
        max-width: 17rem !important;
        top: -.075rem;
        filter: none;
    }
}

@media (min-width: 768px) {
    #header-container {
        width: 100%;
        padding-right: 15px;
        padding-left: 15px;
        margin-right: auto;
        margin-left: auto;
    }
}

@media (min-width: 1200px) {
    #header-container {
        max-width: 1160px;
    }
}

@media (min-width: 1400px) {
    #header-container {
        max-width: 1325px;
    }
}

@media (min-width: 1600px) {
    #header-container {
        max-width: 1335px;
    }
}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu, .nav-menu * {
    margin: 0;
    padding: 0;
    list-style: none;
}

    .nav-menu > ul > li {
        position: relative;
        white-space: nowrap;
        float: right;
        z-index: 99999;
    }

    .nav-menu a {
        display: block;
        position: relative;
        color: white;
        padding: 10px 12px;
        transition: 0.3s;
        font-size: .9rem;
        font-weight: normal;
    }

    .nav-menu .default > a, .nav-menu li:hover > a {
        color: #ff8100;
        text-decoration: none;
    }

    .nav-menu .active > a, .nav-menu li:hover > a {
        color: #f7bc0a;
        text-decoration: none;
    }

    .nav-menu a:hover {
        text-decoration: none;
        color: #e4bcee;
    }


    .nav-menu .drop-down ul {
        display: block;
        position: absolute;
        right: 0;
        top: calc(100% + 2px);
        z-index: 99;
        opacity: 0;
        visibility: hidden;
        padding: 5px 0;
        background: #212e46de;
        box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.25);
        transition: ease all 0.3s;
        min-width: 180px;
    }

    .nav-menu .drop-down:hover > ul {
        opacity: 1;
        top: calc(100% +0px);
        visibility: visible;
    }

    .nav-menu .drop-down li {
        min-width: 180px;
        position: relative;
    }

    .nav-menu .drop-down ul a {
        padding: 10px 20px;
        font-size: 14px;
        font-weight: 400;
        text-transform: none;
        color: #fff;
    }

        .nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
            color: #a2259a;
        }

    .nav-menu .drop-down {
        margin-left: .9rem;
    }

        .nav-menu .drop-down > a:after {
            font-family: bootstrap-icons;
            content: "\f282";
            line-height: 1rem;
            position: absolute;
            top: 0.85rem;
            left: -.6rem;
        }

        .nav-menu .drop-down .drop-down ul {
            top: 0;
            right: calc(100% - 0px);
        }

        .nav-menu .drop-down .drop-down:hover > ul {
            opacity: 1;
            top: 0;
            left: 100%;
        }

        .nav-menu .drop-down .drop-down > a {
            padding-left: 35px;
        }

            .nav-menu .drop-down .drop-down > a:after {
                content: "\ea9d";
                font-family: IcoFont;
                position: absolute;
                left: 15px;
            }

.nav-menu-home-icon {
    font-size: 1.2rem;
    line-height: 0;
}

.nav-action-btn .btn-group {
    float: left;
    border-radius: 1rem;
    overflow: hidden;
    background-color: #00000029;
    height: 2.5rem;
    border: 1px solid rgba(255,255,255,.15);
    backdrop-filter: blur(4px);
}

    .nav-action-btn .btn-group .btn {
        color: #f7bc0a;
        padding: .2rem;
        width: 8rem;
        display: flex;
        justify-content: center;
        align-items: center;
        font-weight: 600;
        border: 0;
        outline: none;
    }

        .nav-action-btn .btn-group .btn:hover {
            background-color: #e6e6e621;
            color: white;
        }

        .nav-action-btn .btn-group .btn i {
            margin: 0 .5rem;
            font-size: 1.5rem;
            display: flex;
            align-self: center;
        }

        .nav-action-btn .btn-group .btn span {
        }

.btn.btn-fit {
    padding: .2rem .5rem !important;
    width: fit-content !important;
}

.nav-action-btn .btn:focus {
    box-shadow: none;
}

@media (min-width: 200px) {
    .nav-menu {
        width: 40rem;
    }
}

@media (max-width: 1199px) {
    .nav-menu {
        width: 26rem;
    }

        .nav-menu a {
            padding: 8px;
        }
}

@media (max-width: 767px) {
    .nav-menu {
        width: unset;
    }
}

@media (max-width: 1366px) {
    .nav-menu .drop-down .drop-down ul {
        left: -90%;
    }

    .nav-menu .drop-down .drop-down:hover > ul {
        left: -100%;
    }

    .nav-menu .drop-down .drop-down > a:after {
        content: "\ea9d";
    }
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    bottom: 0;
    z-index: 9999;
    overflow-y: auto;
    right: -20rem;
    width: 85%;
    padding-top: 18px;
    background: white none repeat scroll 0% 0%;
    transition: 0.4s;
    border-left: 0;
    max-width: 20rem;
    backdrop-filter: blur(5px);
}

    .mobile-nav * {
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .mobile-nav a {
        display: block;
        position: relative;
        color: navy;
        padding: .5rem 1rem;
        font-weight: 600;
    }

        .mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
            color: #f7bc0a;
            text-decoration: none;
        }

    .mobile-nav .drop-down > a:after {
        font-family: bootstrap-icons;
        content: "\f282";
        padding-right: 10px;
        position: absolute;
        left: 15px;
    }

    .mobile-nav .active.drop-down > a:after {
        font-family: bootstrap-icons;
        content: "\f282";
    }

    .mobile-nav .drop-down > a {
        padding-left: 35px;
    }

    .mobile-nav .drop-down ul {
        display: none;
        overflow: hidden;
    }

    .mobile-nav .drop-down li {
        padding-left: 20px;
    }

.mobile-nav-toggle {
    position: fixed;
    left: 1rem;
    top: .66rem;
    z-index: 1069;
    border: 0;
    background: none;
    font-size: 24px;
    transition: all 0.4s;
    outline: none !important;
    line-height: 1;
    cursor: pointer;
    text-align: right;
}

    .mobile-nav-toggle i {
        color: gray;
    }

.mobile-nav-overly {
    width: 100%;
    height: 100%;
    z-index: 1065;
    top: 0;
    left: 0;
    position: fixed;
    overflow: hidden;
    display: none;
    background-color: #0000006b;
    backdrop-filter: blur(4px);
}

.mobile-nav-active {
    overflow: hidden;
}

    .mobile-nav-active .mobile-nav {
        right: 0;
        box-shadow: 0 0 .5rem .5rem rgba(0,0,0,.2);
    }

    .mobile-nav-active .mobile-nav-toggle i {
        color: white;
        font-size: 2rem;
    }

.mobile-nav-action-btn .btn-group {
    margin: 1rem .5rem;
    border-radius: 1.5rem;
    background-color: #66607d29;
    overflow: hidden;
    width: calc(100% - 1rem);
    outline: 0;
    border: 0;
    box-shadow: none;
}

    .mobile-nav-action-btn .btn-group .btn {
        color: navy;
        padding: .25rem 0;
        width: 50%;
        outline: 0;
        border: 0;
        box-shadow: none;
        border: 1px solid white;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: nowrap;
    }

        .mobile-nav-action-btn .btn-group .btn:hover {
            background-color: rgba(230, 230, 230, 0.13);
            color: white;
        }

        .mobile-nav-action-btn .btn-group .btn i {
            padding: 0 .33rem;
            font-size: 1.5rem;
            position: relative;
            top: 2px;
        }

        .mobile-nav-action-btn .btn-group .btn span {
            position: relative;
            font-size: .9rem;
            text-overflow: ellipsis;
            overflow: hidden;
            white-space: nowrap;
        }


.slider-logo-container {
    font-family: artinx;
    font-size: 1.6rem;
    color: white;
    transition: .5s ease all;
}

.mobile-nav-version-holder {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    color: royalblue;
    opacity: .3;
    font-size: .8rem;
    display: none;
    justify-content: center;
}

@media screen and (max-width: 991px) {
    .mobile-nav-version-holder {
        display: flex;
    }

    .mobile-nav-toggle {
        top: 1rem;
    }

        .mobile-nav-toggle i {
            color: white;
        }
}

@media screen and (max-width: 767px) {

    .mobile-nav-toggle {
        top: .66rem;
    }

        .mobile-nav-toggle i {
            color: gray;
        }
}
