/* rent section */
.rent {
    padding: 40px 0 80px;
}

.rent__container {
    max-width: 907px;
    display: flex;
    flex-direction: column;
    row-gap: 24px;

    margin: 0 auto;
}

.rent__title {
    color: #171616;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    line-height: 160%;
    text-transform: uppercase;
}

.rent__text {
    color: #171616;
    font-size: 16px;
    font-weight: 500;
    line-height: 160%;
}

.rent__text-title {
    color: #171616;
    font-size: 16px;
    font-weight: 500;
    line-height: 160%;
    text-transform: uppercase;
}

.rent__text-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    row-gap: 32px;
}

.rent__text-list-item {
    position: relative;
    color: #171616;
    font-size: 16px;
    font-weight: 500;
    line-height: 160%;
}

.rent__delivery {
    display: flex;
    align-items: flex-start;
    column-gap: 12px;
}

.rent__delivery-icon {
    width: 32px;
    height: 16px;
    margin: 8px 0;
}

.rent__delivery-text {
    color: #171616;
    font-size: 16px;
    font-weight: 700;
    line-height: 160%;
}

.rent__warning {
    color: #BF8550;
    font-size: 16px;
    font-weight: 600;
    line-height: 160%;
}

@media (max-width: 767px) {
    .rent {
        padding: 24px 0 60px;
    }
}