/* HEADER CSS START */
/* Desktop Navigation */
#header {
    position: absolute;
    left: 0;
    right: 0;
    z-index: 2;
}
.navbar-brand {
    margin-left: 0px;
    height: auto;
    float: left;
}
.nav-menu {
    background-image: linear-gradient(to right, #4a1e1c 70%, #fff 30%);
    border-radius: 50px;
}
.navbar-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
}
.navbar-nav li {
    padding: 0 15px;
}
.navbar-nav li:first-child, .navbar-nav li:last-child {
    padding-left: 0;
}
.navbar-nav li:last-child {
    padding-right: 10px;
}
.navbar-nav li.phone {
    background-color: #fff;
    display: flex;
    padding: 5px;
}
.navbar-nav li.phone:before {
    content: url(../images/Call-Us-Now.png);
    display:block;
    width: 62px;
    height: 59px;
    float: left;
    margin-right: 10px;
}
.nav-menu a {
    text-align: left;
    position: relative;
    color: #fff;
    transition: 0.3s;
    text-decoration: none;
    font-size: 18px;
    letter-spacing: inherit;
}
.nav-menu a:hover {
    text-decoration: underline;
    text-underline-offset: 5px;
}
/* Mobile Navigation */

.mobile-nav {
    position: fixed;
    top: 0;
    bottom: 0;
    z-index: 9999;
    overflow-y: auto;
    left: -300px;
    width: 300px;
    padding-top: 18px;
    background: #7a95b0;
    transition: 0.4s;
}

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

.mobile-nav a {
    display: block;
    position: relative;
    color: white;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 400;
    transition: 0.3s;
    text-decoration: none;
}

.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}
.mobile-nav-toggle {
    position: fixed;
    right: 10px;
    top: 15px;
    z-index: 9998;
    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: #7a95b0;
    padding: 10px;
}

.mobile-nav-overly {
    width: 100%;
    height: 100%;
    z-index: 9997;
    top: 0;
    left: 0;
    position: fixed;
    background: #7a95b0;
    opacity: .5;
    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;
}

/* STICKy NAVIGATION */

.sticky {
    position: fixed !important;
    top: 0 !important;
    width: 100%;
    background-color: #000 !important;
    background-image: none !important;
    z-index: 1;
    box-shadow: 0 1px 15px #000;
    z-index: 3 !important;
}
.sticky .nav-menu a {
    color: #fff;
}
.sticky + .content {
    padding-top: 102px;
}


/* HEADER CSS END */