/**
* Template Name: Kafika
*/


/*--------------------------------------------------------------

# Header -3

--------------------------------------------------------------*/
.header-three{
    background-color: var(--tertiary-color);
}
.header-three.sticked {
    position: fixed;
    -webkit-box-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
            box-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
    background-color: var(--tertiary-color);
    -webkit-animation: fadeInDown 1s ease-in-out;
    -moz-animation: fadeInDown 1s ease-in-out;
    top: 0;
    left: 0;
    -webkit-transition: 0.09s;
    -o-transition: 0.09s;
    transition: 0.09s;
}

.navbar-light .navbar-toggler-icon {
    background-image: url(../img/manu-close-icon.svg);
    width: 40px;
    height: 40px;
}

.navbar-light .collapsed .navbar-toggler-icon {
    background-image: url(../img/menu-icon.svg);
    width: 40px;
    height: 40px;
}

.navbar-light .navbar-toggler {
    border: none;
}

.navbar-toggler:focus {
    -webkit-box-shadow: none;
            box-shadow: none;
}

.header-three .container-fluid {
    max-width: 1590px;
}

.header-three a.navbar-brand {
    padding: 0px 60px 0px 0px;
    margin: 0;
}

.header-three .navbar-nav .nav-item .nav-link {

    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 19px;
    color: #535353;
}

.header-three .navbar {
    padding: 15px 0;
}

.navbar-light .navbar-toggler {
    border-color: rgba(0, 0, 0, 0.1);
}

.navbar-toggler {
    padding: 2px 7px;
    font-size: 18px;
}

.header-three div#navbarSupportedContent {
    background-color: #FAF4ED;
}

.header-three a.nav-link {
    margin-right: 50px;
}

.header-three .navbar-nav .nav-item .nav-link:hover,
.header-three .navbar-nav .nav-item .nav-link.active {
    color: #534930;
}

.header-three a.phone-btn {
    width: 38px;
    height: 38px;
    margin-left: 20px;
    border-radius: 100px;
    position: relative;
}

.header-three a.phone-btn img {
    border: 1px solid #B28E6A;
    border-radius: 100%;
}

.header-three .header-social-icons img {
    max-width: 18px;
    max-height: 18px;
    -webkit-transition: all .6s ease;
    -o-transition: all .6s ease;
    transition: all .6s ease;
}

.header-three .header-social-icons a:hover img {
    -webkit-filter: grayscale(100%) brightness(0.5);
            filter: grayscale(100%) brightness(0.5);

}

.header-three .header-social-icons {
    gap: 25px;
}

.header-three .dropdown-menu {
    background-color: #534930;
}

.header-three .dropdown-item {
    color: #FFF;
}

.header-three .dropdown-item:focus,
.header-three .dropdown-item:hover {
    color: #ffffff;
    background-color: #B28E6A;
}

.dropdown-toggle::after {
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    border: none;
    vertical-align: middle;
}



@-webkit-keyframes fadeInDown {

    from {

        opacity: 0;

        -webkit-transform: translate3d(0, -100%, 0);

        transform: translate3d(0, -100%, 0);

    }

    to {

        opacity: 1;

        -webkit-transform: translate3d(0, 0, 0);

        transform: translate3d(0, 0, 0);

    }

}



@keyframes fadeInDown {

    from {

        opacity: 0;

        -webkit-transform: translate3d(0, -100%, 0);

        transform: translate3d(0, -100%, 0);

    }

    to {

        opacity: 1;

        -webkit-transform: translate3d(0, 0, 0);

        transform: translate3d(0, 0, 0);

    }

}

/******************* responsive ********************/

@media (max-width: 1399.98px) {

    .header-three a.nav-link {
        margin: 0 30px 0 0;
    }
}

@media (max-width: 1199.98px) {

    .header-three a.nav-link {
        margin: 0 20px 0 0;
    }

    .header-three .navbar-nav .nav-item .nav-link {
        font-size: 14px;
        line-height: 17px;
    }

    .header-three .header-social-icons {
        gap: 20px;
    }

    .header-three a.navbar-brand img {
        max-width: 140px;
    }
}

@media (max-width: 991.98px) {

    .header-three div#navbarSupportedContent {
        padding: 20px 0px 15px 0px;
        width: 100%;
    }
}