/* Header and Footer specific CSS */

/* mtop-nav */
.mtop-nav {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background: #111111;
    border-bottom: 1px solid #222222;
    z-index: 1000;
}
.mtop-nav .container {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    left: 0;
}
.mtop-nav ul {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}
.mtop-nav ul li {
    display: inline-flex;
    margin-left: 20px;
    font-size: 13px;
}
.mtop-nav ul li:first-child {
    margin-left: 0px;
}
.wa-icon {
    border-bottom: 2px solid #0095EB;
    padding: 5px 0px;
    font-size: 12px !important;
    text-transform: none !important;
    color: #0095EB !important;
}
.wa-icon img {
    max-width: 20px;
    margin-right: 6px;
}
.mtop-nav ul li a {
    display: inline-flex;
    position: relative;
    width: auto;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 0.02em;
    align-items: center;
    color: #ffffff;
    transition: all 0.3s ease-in-out;
    white-space: nowrap;
}
.mtop-nav ul li a:hover,
.mtop-nav ul .active-nav a {
    color: #FF8C44;
}
.mtop-nav ul li a i {
    margin-right: 8px;
    color: #FF8C44;
}
.mnav-toggler {
    display: none;
}
@media screen and (max-width: 992px) {
    .mnav-toggler {
        position: absolute;
        left: 15px;
        width: 27px;
        height: 27px;
        display: inline-flex !important;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .mnav-toggler span {
        width: 90%;
        position: absolute;
        height: 2px;
        background-color: #ffffff;
        left: 0;
        transition: all 0.3s ease;
    }
    .mnav-toggler span:nth-child(1) {
        transform: translateY(-7px);
        width: 70%;
    }
    .mnav-toggler span:nth-child(3) {
        transform: translateY(7px);
        width: 70%;
    }
    .msite-nav {
        position: absolute !important;
        top: 100% !important;
        background: #1D1D1D !important;
        width: 250px !important;
        height: auto !important;
        padding: 20px 20px !important;
        animation: fadeIn 0.3s ease-in-out;
        display: none;
    }
    .msite-nav ul {
        width: 100% !important;
        display: block !important;
    }
    .msite-nav ul li {
        position: relative;
        display: block !important;
        width: 100% !important;
        margin: 0px !important;
    }
    .msite-nav ul li a {
        display: flex !important;
        width: 100% !important;
        padding: 15px 0px !important;
    }
}

/* Footer styles */
.site-footer {
    background: #0C0C0C !important;
    border: none !important;
}
.footer-content p {
    color: #999 !important;
    font-size: 14px !important;
}
.footer-content h3 {
    color: #FF8C44 !important;
    font-size: 15px !important;
    text-transform: uppercase !important;
    font-weight: 600 !important;
}
.footer-content a {
    color: #999 !important;
    font-weight: 500 !important;
    font-size: 13px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.02em !important;
}
.footer-content a:hover {
    color: #fff !important;
    transition: all 0.2s ease;
}
.footer-content ul li,
.sub-footer h4 {
    color: #999 !important;
}
.sub-footer {
    border-color: rgba(255, 255, 255, 0.2) !important;
}
