.city {
    padding-top: 50px;
}

.city__wrapper {
    max-width: 1310px;
    padding: 0 15px;
    margin: 0 auto;
}

.city-img img {
    max-width: auto;
    width: 100%;
    object-fit: cover;
    object-position: top;
    height: 418px;
}

.city__content-wrapper {
    padding-top: 40px;
    max-width: 840px;
    width: 100%;
    margin: 0 auto;
}

.city__title {
    font-weight: 700;
    font-size: 36px;
    line-height: 51px;
    margin: 0;
    margin-bottom: 24px;
}

.city__description {
    font-weight: 300;
    font-size: 18px;
    line-height: 24px;
}

.city__body > p {
    font-weight: 300;
    font-size: 16px;
    line-height: 156%;
    color: #121212;
}

.city__benefits-title {
    margin-bottom: 0;
    font-weight: 300;
    font-size: 24px;
    line-height: 31px;
}
.city__benefits-list,
.city__price-list {
    padding-left: 40px;
    padding-top: 40px;
    max-width: 660px;
    width: 100%;
    list-style-type: disc;
}

.city__benefits-item,
.city__price-item {
    font-weight: 300;
    font-size: 18px;
    line-height: 23px;
}

.city__benefits-item:not(:last-child),
.city__price-item:not(:last-child) {
    margin-bottom: 8px;
}

.city__object-list {
    grid-template-columns: repeat(3, 360px);
    justify-content: center;
}

.city__object {
    margin-bottom: 56px;
}

.city__object-title {
    text-align: center;
}

.city__order {
    display: flex;
    padding: 50px;
    justify-content: space-between;
    align-items: center;
    height: 160px;
    background-color: var(--accent);
}

.city__order-title {
    font-weight: 300;
    font-size: 18px;
    line-height: 23px;
}

.city__order-button {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 240px;
    width: 100%;
    height: 60px;
    border-radius: 57px;
    background-color: #121212;
    color: var(--accent);
    font-size: 16px;
    line-height: 21px;
}

@media screen and (max-width: 1200px) {
    .city__object-list {
        gap: 30px;
        grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
        justify-content: center;
    }
}

@media screen and (max-width: 991px) {
    .city__object-list {
        grid-template: 1fr / repeat(2, 1fr);
    }
}

@media screen and (max-width: 911px) {
    .city__order {
        flex-direction: column;
        justify-content: space-evenly;
        text-align: center;
        padding: 0 40px 10px;
    }
    .city__order-title {
        margin: 0;
    }
    .city__object-list .block__item-img,
    .city__object-list .block__item-title {
        height: 100%;
    }
}

@media screen and (max-width: 767px) {
    .city__object-list {
        grid-template: 1fr / 500px;
    }
}

@media screen and (max-width: 650px) {
    .city__object-list {
        grid-template: 500px / 1fr;
    }
}
