#feature-menu {
    background-color: #191919;
    position: relative;
}

#feature-menu a {
    text-decoration: initial;
}

#feature-menu .slick-list {
    margin: 0 20px !important;
    padding: 0px !important;
    overflow: hidden;
}

#feature-menu > div {
    display: flex;
    align-items: center;
    justify-content: center;
}

.multiple-items {
    height: 60px;
    width: calc(100% - 80px);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 0 20px;
}

#feature-menu .feature-slide-item {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    cursor: pointer;
    color: #fff;
    padding: 0 35px;
    line-height: 1.3;
    border-bottom: 4px solid #404040;
    font-size: calc(0.1875vw + 14.4px);
}

#feature-menu.fixed .feature-slide-item {
    border-bottom: 4px solid #333;
}

#feature-menu .feature-slide-item:hover {
    color: rgb(130, 190, 15);
    border-bottom: 4px solid rgb(130, 190, 15);
}

#feature-menu .feature-slide-item.current-page {
    color: rgb(130, 190, 15);
    border-bottom: 4px solid rgb(130, 190, 15);
}

#feature-menu .link.slick-arrow {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000;
    width: 20px;
    height: 22px;
    background-color: rgb(130, 190, 15);
}

#feature-menu .link.slick-arrow:hover {
    background-color: #fff;
}

#feature-menu .fa-angle-right {
    font-size: 18px;
    font-weight: 900;
}

#feature-menu .fa-angle-left {
    font-size: 18px;
    font-weight: 900;
}

#feature-menu.fixed {
    position: fixed;
    top: 60px;
    width: 100%;
    z-index: 49;
    background-color: #333;
}

@media screen and (max-width: 1217px) {
    #feature-menu.fixed {
        top: 49px;
    }
}

@media (max-width: 1024px) {
    .multiple-items {
        width: calc(100% - 103px);
        height: 80px;
    }
}

@media (max-width: 991px) {
    #feature-menu .feature-slide-item {
        height: 65px;
    }
}

@media (max-width: 767px) {
    .multiple-items {
        height: 66px;
    }

    #feature-menu .feature-slide-item {
        height: 50px;
        padding: 0 0;
    }
}

@media (max-width: 320px) {
    .multiple-items {
        height: 45px;
    }
}