#banner .item {
    position: relative;
    background-color: transparent;
}

#banner .item.video>a {
    display: block;
    height: 0;
}

#banner video {
    width: 100%;
    height: auto;
    object-position: center;
    object-fit: contain;
}

#banner .owl-carousel .owl-stage-outer {
    overflow: hidden;
}

#banner .owl-carousel .owl-dots {
    position: absolute;
    bottom: 2%;
    left: 50%;
    transform: translateX(-50%);
}

#banner .owl-carousel .owl-dots .owl-dot span {
    background-color: #fff;
    opacity: 0.55;
}

#banner .owl-carousel .owl-dots .owl-dot.active span,
#banner .owl-carousel .owl-dots .owl-dot:hover span {
    opacity: 1;
}

#product .product-link {
    display: inline-block;
    text-align: left;
}

#product .product-link:hover {
    text-decoration: none;
}

#product .product-link p {
    margin: 5px 20px 0;
    color: var(--black-color);
}

#product .item {
    position: relative;
    height: 100%;
    overflow: hidden;
}

#product .item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    opacity: 0.5;
    transition: all 0.25s;
    z-index: 0;
}

#product .product-link:hover .item::before {
    opacity: 0.6;
}

#product .item.justride::before {
    background-color: var(--red-color);
}

#product .item.casual::before {
    background-color: var(--casual-color);
}

#product .item.vintage::before {
    background-color: var(--vintage-color);
}

#product .item img {
    height: 100%;
    width: 100%;
    object-position: center;
    object-fit: cover;
}

#product .item .overlay-block {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    text-align: right;
    z-index: 1;
}

#product .item .overlay-block h4 {
    margin-bottom: 0;
    padding-right: 5%;
    font-size: 1.8rem;
    font-weight: 300;
    letter-spacing: 5px;
    white-space: nowrap;
    color: #fff;
    transition: all 0.25s;
}

#product .product-link:hover .item .overlay-block h4 {
    padding-right: 20%;
}

#product .item .overlay-block h3 {
    padding-right: 7%;
    font-family: 'Arial';
    font-size: 2.5rem;
    font-weight: 900;
    font-style: italic;
    letter-spacing: -1px;
    white-space: nowrap;
    text-transform: uppercase;
    color: #fff;
    transition: all 0.25s;
}

#product .item .overlay-block h3:lang(en) {
    padding-right: 8%;
    font-size: 3rem;
}

#product .product-link:hover .item .overlay-block h3 {
    padding-right: 5%;
}

@media (max-width: 991px) {
    #product .product-link {
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    #banner .owl-carousel .owl-dots {
        bottom: 1%;
    }

    #banner .owl-carousel .owl-dots .owl-dot span {
        width: 8px;
        height: 8px;
        margin: 5px 4px;
    }
}

@media (max-width: 400px) {
    #product .item .overlay-block h3:lang(en) {
        font-size: 2.5rem;
    }
}
