.products-wrapper {
    height: 100%;
    background-color: #0f1935;
    display: flex;
}

.products-wrapper .product {
    padding: 10px 30px;
}

.products-wrapper .product a {
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    font-stretch: normal;
    font-style: normal;
    line-height: 2;
    letter-spacing: normal;
    text-align: left;
    color: #fff;
    transition: all .1s ease-in-out;

}

.active {
    border-bottom: 4px solid var(--borderBottom);
}

.products-wrapper .product:hover {
    border-bottom: 4px solid var(--borderBottom);
    transition: all .1s ease-in-out;
}

@media (max-width: 1366px) {
    .products-wrapper .product a {
        font-size: 12px;
    }
}