header {
    padding: 1rem 0px 0px;
}

.logo {
    max-width: 100px;
    display: block;
}

.logo img {
    width: 100%;
}

nav a.navMenu {
    display: inline-block;
    padding: 1rem 1.5rem;
    font-size: 1.067rem;
    font-weight: 500;
    color: #2B3B3A;
    transition: all 0.3s;
}

nav a.navMenu:hover,
nav a.navMenu.active {
    color: #2E6DFE;
}

nav a.contactBtn {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    margin-left: 1rem;
    background-color: #2E6DFE;
    color: #fff;
    border-radius: 50px;
    font-size: 1.067rem;
    border: 2px solid #2e6dfe;
    transition: all 0.3s;
    font-weight: 500;
    position: relative;
    z-index: 999;
}

nav a.contactBtn:hover {
    background-color: #fff;
    color: #2E6DFE;
}

.menuBtn,
.menuBtn:hover,
.menuBtn:focus {
    width: 46px;
    height: 46px;
    background-color: #2E6DFE;
    color: #fff;
    border-radius: 0.5rem;
    font-size: 1.5rem;
    display: none !important;
}

.navHeader {
    padding: 1rem;
    background-color: #f8fafa;
    display: none;
}

.navHeader img {
    max-width: 60px;
}

.navHeader a {
    font-size: 3rem;
    color: #484F5F;
    line-height: 1;
    display: inline-block !important;
    width: unset;
}

.specialP {
    line-height: 1.4;
    margin-bottom: 5px;
}


/* Media  Query */

@media screen and (max-width: 992px) {
    header .row .col-9.col-xs-6 {
        text-align: right;
    }
    .navHeader {
        display: flex;
    }
    .menuBtn,
    .menuBtn:hover,
    .menuBtn:focus {
        display: flex !important;
        margin: 0px 0px 0px auto;
    }
    .nav-wrapper {
        position: fixed;
        top: 0;
        right: -110%;
        width: 100%;
        height: 100%;
        z-index: 999;
        background-color: rgba(0, 0, 0, 0.7);
    }
    nav {
        width: 300px;
        flex-wrap: wrap;
        position: absolute;
        right: 0;
        top: 0;
        background-color: #fff;
        height: 100%;
    }
    nav.d-flex {
        display: block !important;
    }
    nav a {
        width: 100%;
        text-align: left;
    }
    nav a.contactBtn {
        display: inline-block;
        padding: 1rem 1.5rem;
        font-size: 1.067rem;
        font-weight: 500;
        color: #2B3B3A;
        transition: all 0.3s;
        margin-left: 0px;
        background-color: transparent;
        border: unset;
        border-radius: unset;
    }
}