header {
    height: calc(35vh + 84px);
    width: 100%;
    overflow: hidden;
    position: relative;
}

.container-hero {
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center;
    position: absolute;
    left: 0;
    top: 0;
}

.img-your-ride {
    position: absolute;
    bottom: 5%;
    left: 2%;
    transition: all 0.7s;
}

.img-your-ride:hover {
    scale: 1.1;
}

.hero-main-title {
    position: absolute;
    z-index: 1;
    top: 24%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
}

.hero-main-text {
    font-size: 46px;
    text-wrap: nowrap;
    text-shadow: 20px 12px #000000;
}

.hero-main-info {
    position: absolute;
    z-index: 1;
    bottom: 10%;
    right: 2%;
    width: 100%;
}

.hero-info-text {
    font-size: 20px;
    text-wrap: nowrap;
    text-shadow: 4px 4px #000000;
}

.img-hero-product {
    position: absolute;
    bottom: 25%;
    left: 50%;
    width: auto;
    height: 9rem;
    z-index: 2;
    transform: translateX(-50%);
    transition: all 0.7s;
}

.img-hero-product:hover {
    scale: 1.1;
}

.img-responsive-size {
    height: 4rem;
}

@media (min-width: 576px) {
    .img-responsive-size {
        height: 8rem;
    }
    .hero-main-title {
        top: 25%;
    }
    .hero-main-text {
        font-size: 7rem;
    }
}

@media (min-width: 768px) {
    .hero-main-text {
        font-size: 5rem;
    }
    .img-hero-product {
        bottom: 10%;
        height: 12rem;
    }
}

@media (min-width: 992px) {
    .hero-main-title {
        top: 16%;
    }
    .hero-main-text {
        font-size: 7rem;
    }
    .img-hero-product {
        bottom: 12%;
        height: 15rem;
    }
}

.btn-filter {
    font-size: 12px;
    letter-spacing: 1px;
    background-color: var(--brand-dark);
    color: #ffffff;
    border: 0;
}

#search-store-input {
    color: #cccccc;
    background-color: #3e3e3e !important;
}

#search-store-input:focus {
    background-color: #3e3e3e !important;
    color: #cccccc;
}

#search-store-input::placeholder {
    color: #838383 !important;
}

.category-dropdown {
    background: #3e3e3e !important;
    max-height: 200px;
    min-width: 360px;
    overflow: auto;
    padding: 0px;
}
.category-dropdown-item {
    color: #ffffff;
    padding: 10px 12px;
    font-size: 14px;
    border-bottom: 2px solid #00000045;
    cursor: pointer;
}

.order-dropdown {
    background: #3e3e3e !important;
    max-height: 200px;
    min-width: 360px;
    overflow: auto;
    padding: 0px;
}
.order-dropdown-item {
    color: #ffffff;
    padding: 10px 12px;
    font-size: 14px;
    border-bottom: 2px solid #00000045;
    cursor: pointer;
}

#store-filter-toolbar {
    position: sticky;
    top: 84px;
    z-index: 999;
}
