.mainAreaCarsInfo {
    max-width: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    margin-top: 32px;
    margin-bottom: 32px;
}

.inMainAreaCarsInfo {
    max-width: 1242px;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.breadInfoCars {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
}



.descCarText p {
    margin: 0 0 10px;
}

.descCarText p:last-child {
    margin-bottom: 0;
}

.itemBread {
    border-radius: 4px;
    background: #E6E6E6;
    display: flex;
    padding: 6px 8px 8px 8px;
    justify-content: center;
    align-items: center;
    gap: 1px;
    box-sizing: border-box;
}

.itemBread:hover {
    background: #b9b9b9;
}

.nameCategory {
    color: #282828;
}

.stickyBlock {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: sticky;
    top: 100px;
}

.textBread {
    color: #282828;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.blockAreaCarsList {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.areaTitleCars {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.titleCarsList {
    color: #282828;
    font-family: "Montserrat Alternates";
    font-size: 36px;
    font-style: normal;
    font-weight: 600;
    line-height: 48px;
}

.descCarsList {
    color: #282828;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}

.itemsCarsData {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.itemElementCar {
    display: flex;
    gap: 16px;

    border-radius: 16px;
    background: #FFF;
    box-shadow: 0 1px 4px 1px rgba(0, 0, 0, 0.12);
}

.itemElementCar:hover .titleCarName {
    color: #E34F13;
}

.itemElementCar:hover .imageCar img {
    transform: scale(1.03);
    transition: 0.24s;
}

.imageCar {
    display: flex;
    width: 262px;
    max-height: 197px;
    border-radius: 16px;
    overflow: hidden;
}

.imageCar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.blockParamsCar {
    width: 100%;
    padding: 18.5px 12px 18.5px 0px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 12px;

    width: 80%;
}

.titleCarName {
    color: #282828;
    font-family: "Montserrat Alternates";
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;

}

.descCarsItem {
    color: #282828;
    font-family: Montserrat;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;

}

.blockParamsCarCard {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.paramCarItem {
    box-shadow: 0 2px 3px 0 #DADADA;
    border-radius: 4px;
    border: 1px solid #DADADA;
    padding: 2px 4px;
    color: #282828;
    color: #282828;
    font-family: Montserrat;
    font-size: 12px;
}

.nc-pagination {
    margin: 30px 0;
}

.nc-pagination .page-numbers {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.nc-pagination .page-numbers a,
.nc-pagination .page-numbers span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    font-family: Montserrat;
    padding: 10px;
    border: 1px solid #e6e6e6;
    border-radius: 10px;
    box-sizing: border-box;
    text-decoration: none;
    font-weight: 600;
}

.nc-pagination .page-numbers .current {
    background: #E34F13;
    border-color: #E34F13;
    color: #fff;
}

.nc-pagination .page-numbers a:hover {
    border-color: #E34F13;
}

.nc-pagination .page-numbers .dots {
    border: 0;
    min-width: auto;
}

@media screen and (max-width: 1280px) {
    .mainAreaCarsInfo {
        padding: 0 16px;
        box-sizing: border-box;

    }

    .titleCarsList {

        font-size: clamp(20px, 5vw, 36px);

    }
}

@media screen and (max-width: 780px) {
    .mainAreaCarsInfo {
        padding: 0 16px;
        box-sizing: border-box;

    }

    .itemElementCar {
        display: flex;
        gap: 16px;
        border-radius: 16px;
        background: #FFF;
        box-shadow: 0 1px 4px 1px rgba(0, 0, 0, 0.12);
        flex-direction: column;
    }

    .imageCar {
        display: flex;
        width: 100%;
        max-height: inherit;
        border-radius: 16px;
        overflow: hidden;
    }

    .titleCarName {
        color: #282828;
        font-family: "Montserrat Alternates";
        font-size: 22px;
    }

    .blockParamsCar {
        width: 100%;
        padding: 12px;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        gap: 12px;
        width: 80%;
        padding-top: 0;
    }

    .breadInfoCars {
        display: flex;
        gap: 10px;
        margin-bottom: 16px;
        flex-direction: column;
    }
}