#topBar {
    background-color: #161616;
    color: #ffffff;
    font-size: 13px;
    padding: 8px 0;
    width: 100%;
    z-index: 999;
}

#topBar a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

#topBar a:hover {
    color: #a0a0a0;
    opacity: 1;
}

#topBar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    width: 100%;
    max-width: 100%;
    padding-left: 25px !important;
    padding-right: 25px !important;
}

#topBar .container:before,
#topBar .container:after {
    display: none !important;
}

#topBar .topBar-features, #topBar .topBar-contact {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
}

#topBar .topBar-features .item, #topBar .topBar-contact .item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-right: 25px;
    line-height: 1;
}
@media (max-width: 1025px) {
    #topBar .topBar-features:not(.slick-initialized) .item:not(:first-child) {
        display: none !important;
    }
}

@media (min-width: 1200px) and (max-width: 1500px) {
    #topBar {
        font-size: 11.5px;
    }

    #topBar .topBar-features .item,
    #topBar .topBar-contact .item {
        gap: 6px;
        margin-right: 14px;
    }

    #topBar .topBar-contact .item {
        margin-right: 0;
        margin-left: 14px;
    }

    #topBar .item img,
    #topBar .item svg.topbar-icon {
        width: 15px;
        height: 15px;
    }
}

#topBar .topBar-contact .item {
    margin-right: 0;
    margin-left: 25px;
}

#topBar .item img,
#topBar .item svg.topbar-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    opacity: 0.8;
}

#topBar .item svg.topbar-icon {
    fill: currentColor;
}

#topBar .item svg.topbar-icon[fill="none"] {
    fill: none;
    stroke: currentColor;
}

#topBar .item img {
    filter: brightness(0) invert(1);
}

#topBar .slick-slide {
    display: flex !important;
    justify-content: center;
}

#topBar .f-button {
    display: flex !important;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 10;
    padding: 0;
    width: 26px;
    height: 26px;
    border-radius: 0;
    transition: all 0.3s ease;
    opacity: 0.5;
}

#topBar .f-button:hover {
    background: transparent;
    opacity: 1;
}

#topBar .f-button svg {
    width: 15px;
    height: 15px;
    fill: none;
    stroke: #ffffff;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: all 0.3s ease;
}

#topBar .f-button:hover svg {
    stroke: #ffffff;
}

#topBar .is-prev {
    left: 8px;
}

#topBar .is-next {
    right: 8px;
}

#topBar .f-button::before, #topBar .f-button::after {
    display: none !important;
    content: none !important;
}

@media (min-width: 1026px) and (max-width: 1199px) {
    #topBar .topBar-contact {
        display: none;
    }
}

@media (max-width: 1025px) {
    #topBar .topBar-contact {
        display: none;
    }

    #topBar .container {
        display: block;
        padding-left: 0;
        padding-right: 0;
    }

    #topBar .topBar-features {
        width: 100%;
        display: block;
    }

    #topBar .topBar-features .item {
        margin-right: 0;
        justify-content: center;
        width: 100%;
    }
}


