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

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

    margin: 0 auto;
}

.terms__content {
    display: flex;
    flex-direction: column;
    row-gap: 12px;
}

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

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

.terms__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    row-gap: 8px;
	padding: 0 0 0 16px;
}

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

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