.hero-section,
.hero-content {
    display: flex;
    justify-content: center;
}

.hero-section {
    background-image: url("../images/floauto-hero-img.jpg");
    background-size: cover;
    background-position: left;
    min-height: 550px;
    margin-top: -128px;
    width: 100%;
    position: relative;
    align-items: flex-end;
    padding-bottom: 24px;
}

.hero-section::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.hero-section .hero-content {
    position: relative;
    z-index: 10;
    align-items: center;
    flex-direction: column;
}

.hero-section .hero-content h1 {
    font-weight: 900;
    font-size: 32px;
    text-transform: uppercase;
    margin-top: 16px;
}

.filter-section .filter-form-label {
    color: var(--text-gray-dark);
}

.filters-contact-info {
    display: none;
}

.contact-info-list {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
}

.contact-info-list li {
    flex: 1;
    min-width: 0;
}

.contact-info-list .info-item {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 16px;
    border-radius: 16px;
    background-color: #272727;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
}

.contact-info-list .info-item.phone-no {
    font-size: 20px;
}

.contact-info-list .info-item:not(.phone-no) img,
.contact-info-list .info-item img {
    width: 24px;
    height: 24px;
}

@media (min-width: 2000px) {
    .hero-section {
        min-height: 650px;
        background-position: center;
    }
}

@media (max-width: 800px) {
    .hero-section {
        background-image: url("../images/floauto-hero-image-mobile.jpg");
        background-position: right bottom;
    }
    .hero-section .hero-content {
        display: none;
        min-height: 460px;
    }

    .hero-section:after {
        background-color: rgba(0, 0, 0, 0.2);
    }

    .filters-contact-info {
        display: block;
    }

    .contact-info-list .info-item .phone-no {
        font-size: 16px;
    }
}

@media (max-width: 630px) {
    .phone-no-text {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-section {
        min-height: 400px;
    }
}
