#header {
    background: #5221BD;
    transition: all 0.5s;
    z-index: 997;
    min-height: 70px !important;
    height: 80px !important;
    border-bottom: 1px solid whitesmoke;
}
#header.fixed-top {
    background: #5221BD;
}
#header .logo {
    font-size: 30px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}
#header .logo a {
    color: #fff;
}
#header .logo img {
    display: block;
    margin: 0 auto;
    max-height: 120px;
}
.scrolled-offset {
    margin-top: 80px;
}
.register-icon {
    display: block;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #FFEE32;
    color: #000;
    padding-top: 12px;
}
.register-icon:hover {
    background-color: rgba(0, 0, 0, 0.7);
    color: #FFEE32;
}
.register-icon i {
    display: block;
    text-align: center;
}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation
*/
.navbar {
    padding: 0;
}
.navbar ul {
    margin: 5px 0 0 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}
.navbar li {
    position: relative;
}
.navbar > ul > li {
    margin-left: 3vw;
    min-width: 125px;
}
.navbar a,
.navbar a:focus {
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: space-between;
    padding: 10px;
    font-size: 15px;
    font-weight: 900;
    color: #000;
    background-color: #FFFFFF;
    border-radius: 10px;
    white-space: nowrap;
    transition: 0.3s;
    text-decoration: none;
}
.navbar a span {
    display: block;
    align-items: center;
    text-align: center;
    margin: 0 auto;
}
.navbar a i,
.navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-right: 7px;
}
.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
    background: #FFEE32;
    color: #000;
}
.navbar .dropdown ul {
    display: block;
    position: absolute;
    right: 0;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    border-radius: 10px;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0 0 30px rgba(127, 137, 161, 0.25);
    transition: 0.5s;
}
.navbar .dropdown ul li {
    min-width: 200px;
}
.navbar .dropdown ul a {
    padding: 10px 20px;
    color: #191919;
}
.navbar .dropdown ul a {
    padding: 10px 20px;
    color: #191919;
}
.navbar .dropdown ul a i {
    font-size: 12px;
}
.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
    color: #000;
    font-weight: 900;
    text-decoration: 1px solid #000;
}
.navbar .dropdown:hover > ul {
    opacity: 1;
    top: calc(100% + 8px);
    visibility: visible;
}
.navbar .dropdown .dropdown ul {
    top: 0;
    right: calc(100% - 30px);
    visibility: hidden;
}
.navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    right: 100%;
    visibility: visible;
}
@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        right: -90%;
    }
    .navbar .dropdown .dropdown:hover>ul {
        right: -100%;
    }
}
/**
* Mobile Navigation
*/
.mobile-nav-toggle {
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}
.mobile-nav-toggle.bi-x {
    color: #5221BD;
}
@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }
    .navbar ul {
        display: none;
    }
}
.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    transition: 0.3s;
    z-index: 999;
}
.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
}
.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
}
.navbar-mobile a,
.navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 15px;
    color: #191919;
}
.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
    color: #5221BD;
    background: none;
}
.navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #fff;
    box-shadow: 0 0 30px rgba(127, 137, 161, 0.25);
}
.navbar-mobile .dropdown ul li {
    min-width: 200px;
}
.navbar-mobile .dropdown ul a {
    padding: 10px 20px;
}
.navbar-mobile .dropdown ul a i {
    font-size: 12px;
}
.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
    color: #5221BD;
}
.navbar-mobile .dropdown>.dropdown-active {
    display: block;
}
