header {
    height: 100vh;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.container-hero {
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center;
    position: absolute;
    left: 0;
    top: 0;
}
.reveal {
    margin-bottom: -100px;
    opacity: 0;
    transition:
        margin-bottom 0.7s ease,
        opacity 0.7s ease;
}
.reveal-rise-up {
    margin-bottom: 0px;
    opacity: 1;
}

.min-w-vw-100{
    min-width: 100vw;
}

.min-h-vw-100{
    min-height: 100vw;
}


.img-bike-image-dark {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 50%;
}

.img-your-ride {
    position: absolute;
    bottom: 36%;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.7s;
}
.img-your-ride:hover {
    scale: calc(1.1);
    transition: all 0.7s;
}
#page-cover {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--brand-darker);
    z-index: 1000;
}
.video-docker {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.video-docker video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
}

.video-cover-gradient {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(17, 17, 20, 1) 0%,
        rgba(17, 17, 20, 0.5) 30%,
        rgba(17, 17, 20, 0.5) 95%
    );
}

#category-best-product {
    /* box-shadow: 0px 0px 100px 50px rgba(34, 34, 34, 1); */
    overflow: hidden;
}
#category-best-product .back-best-seller{
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right;
    z-index: 1;
}
.product-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5vh 0;
    overflow: hidden;
}

.product-slider-viewport {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    padding: 67px 0px 14px 0px;
    width: calc(100% - (100vw / 4));
}

/* .product-slider-viewport::before,
.product-slider-viewport::after{
    content: "";
    position: absolute;
    top: 0;
    width: 20vw;
    height: 100%;
    z-index: 6;
    pointer-events: none;
}

.product-slider-viewport::before{
    left: 0;
    background: linear-gradient(to right, rgba(34, 34, 34, 1) 50%, rgba(34, 34, 34, 0) 100%);
}

.product-slider-viewport::after{
    right: 0;
    background: linear-gradient(to left, rgba(34, 34, 34, 1) 50%, rgba(34, 34, 34, 0) 100%);
} */

.product-slider {
    display: flex;
    gap: 40px;
    transition: transform 2s ease;
    will-change: transform;
}

.product-item {
    background-color: var(--brand-gray);
    border-radius: 24px;
    padding: 20px;
    min-width: calc(100vw / 4 - 40px);
    height: calc(16vw - 70px);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
}

.product-item img {
    height: 130%;
    margin-top: -40%;
}

.product-item .product-name {
    position: absolute;
    border-radius: 0px 0px 24px 24px;
    padding: 10px 0px;
    left: 0px;
    bottom: 0px;
    width: 100%;
    text-align: center;
    margin-top: 10px;
    background-color: #ff0000;
    color: #fff;
    font-size: 34px;
    margin-bottom:0px;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    padding: 0px 20px;
    background: rgba(0, 0, 0, 0);
    color: var(--brand-gray);
    border: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: color 0.3s;
    font-size: 3rem;
}

.slider-arrow:hover {
    color: #fff;
}

.slider-arrow-left {
    left: 7vw;
}

.slider-arrow-right {
    right: 7vw;
}

#best-seller-bar-text{
    padding: 25px 0px;
    background-color: #ff0000;
    text-align: center;
}

#best-seller-bar-text img{
    height: 40px;
}

.col-function-meet-style .back-flag-grey{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

@media (max-width: 768px) {
    .brand-your-ride{
        padding: 20px 0px;
    }

    #best-seller-bar-text img{
        height: 30px;
    }

    .product-slider-viewport {
        width: calc(100% - 20px);
    }

    .product-slider {
        gap: 20px;
    }
    .product-item {
        min-width: calc(100vw / 2 - 30px);
        width: calc(100vw / 2 - 30px);
        height: calc(100vw / 3 - 20px);
    }

    .slider-arrow {
        color: #9b9b9b;
        font-size: 2rem;
    }

    .slider-arrow-left {
        left: 0px;
    }

    .slider-arrow-right {
        right: 0px;
    }
}

/* Animations */
.reveal-component {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.reveal-component.active-component {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Class */
.img-responsive-size {
    width: auto;
    height: 10rem;
}

@media (max-width: 576px) {

    .product-item .product-name {
        font-size: 14px;
        text-align: center;
    }

    .product-item img {
        height: 250%;
        margin-top: -56%;
    }

    .product-item {
        min-width: calc(100vw / 2 - 30px);
        width: calc(100vw / 2 - 30px);
        height: calc(100vw / 4 - 30px);
    }

}

@media (min-width: 576px) {
    /* sm */
    .img-responsive-size {
        width: auto;
        height: 16rem;
    }

    .product-item .product-name {
        font-size: 18px;
    }
}

@media (min-width: 768px) {
    /* md */
    .img-responsive-size {
        width: auto;
        height: 16rem;
    }
}

@media (min-width: 992px) {
    /* lg */
    .img-responsive-size {
        width: auto;
        height: 16rem;
    }
}
/* End Responsive Class */
