/* ================================= Header-section css ========================= */
.header-sticky {
    background-color: #24cbd3;
    padding: 8px 0;
}

.header-link {
    color: #cc161c !important;
}

.header-link a {
    color: #cc161c !important;
    text-decoration: underline;
}

.cosultant-btn {
    border: 1px solid white;
    border-radius: 50px;
    padding: 4px 25px 8px;
    color: #fff;
    display: inline-block;
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
}

.cosultant-btn:hover {
    border-color: #ffcc00;
    background-color: #ffcc00;
    color: #fff;
}

.header-logo.active {
    position: fixed;
    top: 0;
    width: 100%;
    left: 0;
    z-index: 99999;
    background-color: #fff;
}

.header-logo img {
    height: auto;
    width: 240px;
}


.header-menu ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    flex-wrap: wrap;
    column-gap: 16px;
}

.header-menu ul li {
    padding: 10px 0;
}

.header-menu ul li a {
    color: #1B1D1F;
    font-weight: 400;
    font-size: 16px;
    position: relative;
}

.header-menu ul li a::after {
    background-color: #24cbd3;
    content: ' ';
    height: 2px;
    left: 0;
    position: absolute;
    bottom: -10px;
    width: 0;
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
}

.header-menu ul li a.active::after {
    width: 100%;
}


.header-logo.active .logo-img {
    height: auto;
    width: 200px;
}

.header-menu ul li a:hover:after {
    width: 100%;
}

.fa-bars {
    font-size: 25px;
}

.dropdown-item {
    white-space: wrap;
}



/* ======================================= footer-css ==================================== */
.footer-section {
    background-color: #1a1c1d;
    padding: 60px 0;
}

.footer-text h4 {
    color: #24cbd3;
    font-weight: 400;
    font-size: 1.5em;
    margin: 0 0 1em 0;
}

.footer-text ul li a {
    border-bottom: 1px solid #26292a;
    padding: 12px 0;
    color: #cccccc;
    font-size: 18px;
    display: block;
}

.footer-text ul li a:hover {
    color: #24cbd3;
}

.footer-copyright {
    padding: 15px 0;
    background-color: #131415;
    color: #777777;
    font-size: 18px;
}

.footer-copyright a {
    color: #777777;
    font-size: 18px;
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
}

.footer-copyright a:hover {
    color: #fff;
}

.footer-copyright .social-media-icons {
    float: right;
}

.footer-copyright .social-media-icons li {
    display: inline-block;
    margin-right: 15px;
}

.footer-copyright em {
    font-style: italic;
}

.footer-copyright .container {
    text-align: center;
}

.footer-text .text-md-center {
    margin-right: 50px;
}

@media screen and (max-width:1260px) {
    .header-menu ul {
        gap: 20px;
    }

    .footer-text .text-md-center {
        margin-right: 0;
    }
}

@media screen and (min-width:991px) {
    .dropdown-menu {
        padding: 0;
        margin-top: 10px !important;
        min-width: 18rem !important;

    }

    .dropdownMenuButton:hover .dropdown-menu {
        display: block !important;
    }


    .dropdown-menu .dropdown-item {
        display: block;
        padding: 10px 15px;
        border-bottom: 1px solid #cacdcd;

    }

    .header-logo.active .header-menu {
        background-color: #fff;
    }

    .dropdown-menu .dropdown-item:hover {
        background-color: #1dcbd4;
    }

    .dropdown-menu .dropdown-item::after {
        display: none;
    }
}

@media screen and (max-width:991px) {
    .header-menu ul li {
        width: 100%;
        display: block;
    }

    .header-menu {
        padding: 60px 30px 30px;
        transition: all .5s;
        overflow: auto;
        background: #1a1c1d;
        height: 100vh;
    }

    .header-menu ul li a.active {
        color: #1dcbd4;
    }

    .header-main-menu {
        transform: translateX(-100%);
        width: 80%;
        position: fixed;
        left: 0;
        top: 0;
        height: 100%;
        z-index: 10000;
        background: #1a1c1d;
        overflow: hidden;
        -webkit-transform: translateX(-100%);
        -moz-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
        -o-transform: translateX(-100%);
    }

    .body.active .header-main-menu {
        transition: all .5s ease;
        transform: translateX(0);
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
        -webkit-transition: all .5s ease;
        -moz-transition: all .5s ease;
        -ms-transition: all .5s ease;
        -o-transition: all .5s ease;
    }

    .dropdown-item:focus,
    .dropdown-item:hover,
    .header-menu ul li a:hover {
        background-color: transparent;
        color: #1dcbd4 !important;
    }

    .header-menu ul li a {
        position: relative;
        display: block;
        color: #bfbfbf;
        padding-top: 10px;
        padding-bottom: 10px;
        border-bottom: 1px solid #26292a;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .body::after {
        content: "";
        position: fixed;
        left: 0;
        top: 0;
        z-index: 9999;
        width: 100%;
        height: 100%;
        display: none;
        background-color: rgba(0, 0, 0, 0.8);
    }

    .body.active:after {
        display: block;
    }

    .header-menu ul {
        gap: 0;
    }

    .header-menu ul li a::after {
        display: none;
    }

    .mobile-nav-trigger {
        display: block;
        font-size: 1.4em;
        color: #bfbfbf;
        position: absolute;
        right: 21px;
        top: 12px;
    }

    .header-menu ul li .dropdown-menu {
        position: unset !important;
        margin-top: 0 !important;
        transform: unset !important;
        background-color: transparent;
        box-shadow: none;
        border: 0;
        transition: all .5s;
        max-height: 0;
        -webkit-transition: all .5s;
        -moz-transition: all .5s;
        -ms-transition: all .5s;
        -o-transition: all .5s;
        display: block !important;
        opacity: 0;
        padding: 0;
    }

    .header-menu ul li .dropdown-menu.show {
        max-height: 800px;
        opacity: 1 !important;
    }


    .header-menu ul li a {
        background-color: transparent;
    }

    .body-translate {
        transition: all 0.5s ease;
        -webkit-transition: all 0.5s ease;
        -moz-transition: all 0.5s ease;
        -ms-transition: all 0.5s ease;
        -o-transition: all 0.5s ease;
    }

    .body.active .body-translate {
        transform: translateX(80%);
        -webkit-transform: translateX(80%);
        -moz-transform: translateX(80%);
        -ms-transform: translateX(80%);
        -o-transform: translateX(80%);
    }

    .footer-text {
        margin-bottom: 20px;
    }



}

@media screen and (max-width:768px) {
    .footer-text ul li a {

        font-size: 16px;
    }

    .footer-text h4 {
        font-size: 18px;
    }

    .footer-copyright {
        padding: 15px 0;
        background-color: #131415;
        color: #777777;
        font-size: 16px;
    }

    .footer-section {
        background-color: #1a1c1d;
        padding: 21px 0;
    }
}