.bannerTop{
    width: 100%;
    height: 560px;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 0;
    background-color: black;
}
.imgBanner{
    width: 100%;
    height: 100%;
}
.imgBanner img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(60%);
}
.infoPage{
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: 58px;
    background-color: rgba(128, 128, 128, 0.5);
    display: flex;
    align-items: center;
    box-sizing: border-box;
    padding-left: 198px;
    padding-right: 198px;
    color: white;
    font-family: "Open Sans";
}

.contentFilters{
    margin-top: 500px;
    width: 75%;
    height: 76px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.filter{
    margin-right: 18px;
}
.filter select{
    width: 190px;
    height: 42px;
    padding-left: 12px;
    box-sizing: border-box;
    font-size: 16px;
    color: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(0, 0, 0, 0.1);
    cursor: pointer;
}
.filter select:focus{
    outline: none;
}

.contentCars{
    margin-top: 48px;
    width: 75%;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    font-family: "Open Sans";
}
.car{
    width: 100%;
    background-color: #f9f9f9;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 18px;
    aspect-ratio: 38 / 47;
    max-width: 377px;
    margin-bottom: 34px;
}
.imgCar{
    width: 100%;
    aspect-ratio: 4 / 3;
}
.imgCar img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.nameCar{
    margin-top: 18px;
    font-size: 18px;
    color: #232323;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s;
}
.nameCar:hover{
    color: #FF0000;
}
.divisionCar{
    width: 98px;
    height: 1px;
    background-color: black;
    margin-top: 40px;
}
.priceCar{
    margin-top: 16px;
    font-size: 16px;
    font-weight: 600;
}
.infosCar{
    margin-top: auto;
    width: 100%;
    height: 42px;
    display: flex;
    align-items: center;
    background-color: #f4f4f4;
}
.infoCar{
    width: 100%;
    border-right: 1px solid #dfdfdf;
    height: 100%;
    color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}
.infosCar .infoCar:last-child{
    border: 0px;
}

@media screen and (max-width: 980px){
    .bannerTop{
        position: relative;
        height: 1260px;
    }
    .infoPage{
        bottom: 0px;
        height: 120px;
        font-size: 34px;
        padding-left: 48px;
    }

    .contentFilters{
        margin-top: 98px;
        width: 95%;
        height: 138px;
    }
    .filter select{
        width: 340px;
        height: 98px;
        font-size: 34px;
        padding-left: 26px;
    }
    .contentCars{
        width: 100%;
    }
    .car{
        aspect-ratio: auto;
        max-width: none;
        margin: 0px;
        margin-bottom: 68px;
    }
    .nameCar{
        font-size: 46px;
        margin-top: 32px;
    }
    .divisionCar{
        width: 192px;
        height: 3px;
        margin-top: 98px;
    }
    .priceCar{
        margin-top: 30px;
        font-size: 42px;
    }
    .infosCar{
        margin-top: 32px;
        height: 86px;
    }
    .infoCar{
        border-width: 2px;
        font-size: 30px;
    }
}