/* HEADER CSS */
#header {
    position: absolute;
    left: 0;
    right: 0;
}
.inner-pg #header {
    position: relative;
    height: 110px;
}
#header a {
    color: #000;
}
#header a:hover {
    text-decoration: underline;
    text-underline-offset: 7.5px;
}
#header-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 90px;
}
.nav-menu, .nav-menu * {
    list-style: none;
    padding-inline-start: 0px;
    justify-content: space-evenly;
    padding: 2.5px;
    background-color: #b2cf77;
    border-radius: 25px;
    background-color: #b2cf77;
    border-radius: 25px;
}
.nav-menu > ul {
    margin-bottom: 0;
}
.nav-menu > ul > li {
    position: relative;
    margin-right: 0px;
    white-space: nowrap;
    float: left;
}
.nav-menu a {
    padding: 0 25px;
    color: #000;
    transition: 0.3s;
    text-decoration: none;
    font-size: 20px;
    font-weight: 700;
    z-index: 1;
}
.nav-menu a:hover, .nav-menu a.active {
    font-weight: 700;
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 7.5px;
}
.sticky {
    position: fixed !important;
    top: 0 !important;
    background-color: #b2cf77;
    width: 100%;
    z-index: 999;
    box-shadow: 3px 3px 9px #12412e;
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    bottom: 0;
    z-index: 9999;
    overflow-y: auto;
    left: -275px;
    width: 275px;
    padding-top: 18px;
    background: #b2cf77;
    transition: 0.4s;
}

.mobile-nav * {
    margin: 0;
    padding: 0;
    list-style: none;
}

.mobile-nav a, .mobile-nav span {
    display: block;
    position: relative;
    color: #000 !important;
    padding: 10px 20px;
    font-size: 20px !important;
    font-weight: 700 !important;
    transition: 0.3s;
    text-transform: capitalize;
    text-underline-offset: 5px;
}

.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 5px;
    font-weight: 700;
}

.mobile-nav .get-started a {
    background: #eb5d1e;
    color: #fff;
    border-radius: 50px;
    margin: 15px;
    padding: 10px 25px;
}

.mobile-nav .get-started a:hover {
    background: #ee7843;
    color: #fff;
}

.mobile-nav .drop-down > a:after, .mobile-nav .drop-down span:after {
    content: "\ea99";
    font-family: IcoFont;
    padding-left: 10px;
    position: absolute;
    right: 15px;
}

.mobile-nav .active.drop-down > a:after, .mobile-nav .active.drop-down span:after {
    content: "\eaa0";
}

.mobile-nav .drop-down  {
    padding-right: 35px;
}

.mobile-nav .drop-down ul {
    display: none;
    overflow: hidden;
}

.mobile-nav .drop-down li {
    padding-left: 20px;
}

.mobile-nav-toggle {
    position: fixed;
    right: 2px;
    top: 30px;
    z-index: 9998;
    border: 0;
    background: none;
    font-size: 15px;
    transition: all 0.4s;
    outline: none !important;
    line-height: 1;
    cursor: pointer;
    text-align: right;
}

.mobile-nav-toggle i {
    color: #fff;
    background-color: #b2cf77;
    border: 1px solid #fff;
    padding: 5px;
}

.mobile-nav-overly {
    width: 100%;
    height: 100%;
    z-index: 9997;
    top: 0;
    left: 0;
    position: fixed;
    background: #b2cf77;
    opacity: 1;
    overflow: hidden;
    display: none;
}

.mobile-nav-active {
    overflow: hidden;
}

.mobile-nav-active .mobile-nav {
    left: 0;
}

.mobile-nav-active .mobile-nav-toggle {
    top: 20px;
}

.mobile-nav-active .mobile-nav-toggle i {
    color: #fff;
    background-color: transparent;
}
/* HEADER CSS END */