@media (min-width: 768px) {
    /* width */
    ::-webkit-scrollbar {
        width: 5px;
    }

    /* Track */
    ::-webkit-scrollbar-track {
        background: #000;
    }

    /* Handle */
    ::-webkit-scrollbar-thumb {
        background: #ff3372;
        /*border-radius: 100px;*/
    }

    /* Handle on hover */
    ::-webkit-scrollbar-thumb:hover {
        background: #f4bf33;
    }
}

#banner_carousel {
    position: absolute;
    top: 0;
    z-index: -1;
    height: 100%;
    width: 100%;
}

#banner_carousel .carousel-inner {
    height: 100%;
}

#banner_carousel .carousel-inner img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    object-position: bottom;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.brand-icon {
    width: 10%;
    height: auto;
}