/* New Content CSS */

#header-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    opacity: 1;
    width: 100%;
    z-index: 10;
    visibility: visible;
    background: rgba(38, 37, 40, 0.9);
    box-shadow: 0 2px 6px 0 rgba(19, 19, 22, 0.08);
    animation: 0.95s ease 0s normal forwards 1 running headerSlideDown;
    -webkit-animation: 0.95s ease 0s normal forwards 1 running headerSlideDown;
    background: #fff;
    }
    
.tp-header-menu > nav > ul > li > a {
        color: black;
    }

.tp-header-bar button {
    color: black;
}

/* Style dropdown icons in menu */
.tp-header-menu nav ul li.has-dropdown > a i.fa-chevron-down {
    margin-left: 1px;
    font-size: 0.75em;
    transition: transform 0.3s ease;
    display: inline-block;
    /* vertical-align: top; */
    /* margin-top: 14px; */
}

.tp-header-menu nav ul li.has-dropdown:hover > a i.fa-chevron-down {
    transform: rotate(180deg);
}

.header-sticky.sticky-white-bg .tp-header-dropdown nav ul li.has-dropdown::after {
    display: none;
}


@media (max-width: 1200px) {
    .fa-chevron-down:before {
        display: none;
    }
}