.section__rent__page {
    margin-bottom: 80px;
}

p {
    margin: 0;
}

.rent__banner-img {
    width: 100%;
    margin: 20px 0 30px;
}

.rent__banner__title {
    color: #0C121C;
    font-size: 38px;
    font-style: normal;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.rent__banner__sub__title {
    color: #0C121C;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 20px;
}

.section__rent__page-bg {
    padding: 50px 0;
    background: #F8F9F9;
}

.rent__banner__info__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    align-items: center;
}

.rent__banner__info__box {
    color: #0C121C;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
}

/* --info__content-- */

.rent__info__title {
    color: #0C121C;
    font-size: 38px;
    font-style: normal;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 42px;
    margin-bottom: 50px;
}

.rent__info__sub-title {
    color: #0C121C;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px;
    margin-bottom: 50px;
}

.rent__info__content__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

.rent__info__content-img {
    width: 100%;
    margin-bottom: 30px;
}

.rent__info__content-title {
    color: #0C121C;
    font-size: 16px;
    font-style: normal;
    font-weight: bold;
    margin-bottom: 30px;
}

.rent__info__content-text {
    color: #0C121C;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 20px;
}

/* -END-info__content-- */

/* --select car-- */

.rent__select__car__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 20px;
    background-color: #fff;
}

.rent__select__car__box {
    width: 100%;
    max-width: 278px;
    display: flex;
    background-color: #FFF;
    flex-direction: column;
    justify-content: space-between;

}

.rent__select__car-img {
    width: 100%;
    object-fit: cover;
    height: 136px;
    margin-bottom: 30px;
}

.rent__select__car-title {
    color: #0C121C;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    padding-left: 1px;
    margin-bottom: 30px;
}

.rent__select__car_firts_box{ 
    display: flex;
    gap: 20px;
}

.rent__select__car__parameters__wrapper {
    display: flex;
    flex-wrap: wrap;
    column-gap: 20px;
    row-gap: 10px;
    margin-bottom: 30px;
    flex-direction: column;
}

.rent__select__car__parameters__box {
    display: flex;
    align-items: center;
    gap: 10px;

}

.rent__select__car__parameters__box>svg {
    width: 100%;
    height: 100%;
    max-width: 20px;
    max-height: 20px;
}

.rent__select__car__parameters {
    color: #0C121C;
    font-size: 14px;
    font-weight: 300;
    line-height: 20px;
}

.rent__select__car-btn {
    width: 100%;
    max-width: 180px;
    color: #FFF;
    text-align: center;
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    background: #0C121C;
    display: block;
    padding: 15px;
    height: 50px;
}

.rent__select__car-btn:hover {
    color: #FFF;

    opacity: 80%;
}

/* -END-select car-- */

/* ----accordion-- */

.rent_accordion-tab {
    display: none;
    border-top: none;
    background-color: #fff;
    padding: 40px 30px;
}

.rent_accordion-title {
    cursor: pointer;
    position: relative;
    height: 60px;
    display: flex;
    align-items: center;
    padding: 20px;
    transition: background-color 0.3s ease;
}

.rent_accordion-title.active {
    background: #E9ECEC;
}

.rent_accordion-title:hover {
    text-decoration: underline;
}

.rent_accordion-title>p {
    color: #0C121C;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
}

.rent_accordion-tab {
    color: #0C121C;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 20px;
}

.rent_accordion-title:after {
    content: "+";
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    right: 10px;
    transition: all 0.3s ease;
    font-size: 24px;
}

.rent_accordion-title.active:after {
    content: "-";
}

.rent_accordion-item {
    border-bottom: 1px solid #E9ECEC;
}

/* -END---accordion-- */

.section__rent__page__bottom {
    padding: 10px;
    background: #F8F9F9;
}

@media (max-width: 991px) {
    .rent__banner__info__wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .rent__info__content__wrapper {
        grid-template-columns: 1fr;
    }

    .rent__banner__info__wrapper {
        grid-template-columns: 1fr;
    }

    .rent__select__car__wrapper {
        grid-template-columns: 1fr 1fr;
    }

}

@media (max-width: 768px) {

    .rent__select__car__wrapper {
        grid-template-columns: 1fr;
    }

    .rent__select__car__box {
        max-width: 100%;

    }

    .rent__select__car-img {
        height: auto;
    }

    .rent__info__title,
    .rent__banner__title {
        font-size: 26px;
        line-height: 30px;
    }

    .rent_accordion-title:hover {
        text-decoration: none;
    }

}