body {
    background-color: #F1F0ED;
}












/* ДЛЯ СТРАНИЦЫ construction-progress.html (Ход строительства) */
.all__months {
    display: flex;
    flex-direction: column;
    gap: 42px;
}

.month {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 150px;
    width: 100%;
    height: 400px;
}

.month:nth-child(even) {
    grid-template-columns: 2fr 1fr;
}

.month:nth-child(even) .info {
    grid-column: 2;
}

.month:nth-child(even) .month__image {
    grid-column: 1;
    grid-row: 1;
}

.month__image {
    height: inherit;
}

.month__image>a {
    display: inline;
}

.month__image>a>img {
    object-fit: cover;
}

.info {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 42px;
}

.info>.title {
    font-family: Wix Madefor Display;
    font-weight: 600;
    font-size: 24px;
    line-height: 130%;
    letter-spacing: 0%;
    text-transform: none;
    color: #629E00;
}

.info>.container__image {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.info>.container__image>.section-image__month {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #E8E6E2;
    height: 45px;
    max-width: 600px;
    width: 100%;
    padding: 0 16px;
    border-radius: 8px;
}


@media (max-width: 1440px) {
    .all__months {
        gap: 32px;
    }

    .month {
        height: 350px;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
    }

    .month:nth-child(even) {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 1040px) {
    .month {
        height: fit-content;
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .info {
        gap: 24px;
    }

    .month:nth-child(even) {
        grid-template-columns: 1fr;
    }

    .month:nth-child(even) .info {
        grid-column: auto;
    }

    .month:nth-child(even) .month__image {
        grid-column: auto;
        grid-row: auto;
    }

    .info {
        height: max-content;
        width: 100%;
    }

    .info>.container__image>.section-image__month {
        max-width: 100%;
    }

    .month__image {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .month {
        gap: 16px;
    }

    .info {
        gap: 20px;
    }
}

/* ДЛЯ СТРАНИЦЫ construction-progress.html (Ход строительства) */





.sides-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.limit-height {
    align-items: start;
    height: 600px;
}

.side-blok {
    display: flex;
    flex-direction: column;
    gap: 32px;
    width: 45%;
    height: -webkit-fill-available;
}

.side-blok>img {
    object-fit: cover;
    flex: 1;
}

.side-blok>button {
    min-width: 100%;
}

.blok__info {
    display: flex;
    flex-direction: column;
    background: #E8E6E2;
    border-radius: 20px;
    padding: 24px;
    gap: 16px;
}

.blok__info:last-of-type {
    gap: 16px;
}

.blok__info>.info__title {
    padding-bottom: 16px;
    border-bottom: 1px solid #A9A8A6;
}

.blok__info>.info__elements {
    display: flex;
    align-items: center;
    gap: 4px;
}

.blok__info>.info__elements>.element {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 4px 0;
    width: 100%;
}

@media (max-width: 1440px) {
    .side-blok {
        width: 100%;
        gap: 24px;
    }

    .limit-height {
        height: 550px;
    }
}

@media (max-width: 1024px) {
    .sides-container {
        flex-direction: column;
    }

    .img__cont {
        height: 400px !important;
    }

    .limit-height {
        height: fit-content;
    }
}

@media (max-width: 768px) {
    .img__cont {
        height: 360px !important;
    }
}




.card-choice {
    position: relative;
    border-radius: 20px;
    background: #FFF;
    width: 55%;
    padding: 20px;
}

.card-choice>img {
    object-fit: cover;
}

.line-tab {
    position: absolute;
    top: 32px;
    right: 32px;
    display: flex;
    gap: 12px;
}

.line-scroll {
    position: absolute;
    bottom: 16px;
    right: 16px;
}

.tab {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 40px;
    border-radius: 8px;
    background: #F1F0ED;
}

.tab:nth-of-type(1) {
    border: 1px solid #629E00;
}

.card-selection {
    display: flex;
    flex-direction: column;
    gap: 32px;
    width: 35%;
}

.card-selection>button {
    min-width: 100%;
}

.element>select {
    width: fit-content;
    height: 47px;
    padding: 8px 24px;
    border: none;
    border-radius: 8px;

    font-family: Wix Madefor Display;
    font-weight: 600;
    font-size: 24px;
    line-height: 130%;
    letter-spacing: 0%;
    color: #629E00;
}

.element>option {
    border: none;
}

.element>select:focus {
    outline: none;
}

.display-on {
    display: none;
}

@media (max-width: 1440px) {
    .line-tab {
        display: none;
    }
}

@media (max-width: 1024px) {
    .card-choice {
        height: 450px;
        width: 100%;
    }

    .card-selection {
        width: 100%;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .card-choice {
        height: 400px;
        /* overflow-x: scroll; */
    }

    .display-on {
        display: block;
    }
}

.floor-location-svg {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floor-location-svg.visible {
    display: block;
}

.floor-location-svg .svg-plan{
    fill: var(--accent);
    opacity: .7;
}


.room {
    height: 100%;
}

.room>img {
    object-fit: contain;
}

.selection__btn {
    display: flex;
    gap: 30px;
}

.selection__btn>button {
    width: 100%;
}

@media (max-width: 1440px) {
    .last-height {
        height: 460px !important;
    }

    .room {
        width: 100%;
        justify-content: space-between;
    }
}

@media (max-width: 1024px) {
    .last-height {
        height: fit-content !important;
    }

    .card-height {
        height: 460px !important;
    }
}

@media (max-width: 768px) {
    .card-height {
        height: 350px !important;
    }

    .selection__btn {
        flex-direction: column;
        gap: 10px;
    }
}






/* Текста */
.h3 {
    font-family: Wix Madefor Display;
    font-weight: 600;
    font-size: 24px;
    line-height: 130%;
    letter-spacing: 0%;
    color: #161616;
}

.green {
    color: #629E00 !important;
}

.dark {
    color: #4D4A47 !important;
}

.btn {
    font-family: Wix Madefor Display;
    font-weight: 500;
    font-size: 18px;
    line-height: 160%;
    letter-spacing: 0%;
    color: #A9A8A6;
}

@media (max-width: 1440px) {
    .h3 {
        font-size: 20px;
    }

    .btn {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .h3 {
        font-size: 18px;
    }

    .btn {
        font-size: 15px;
    }
}

/* 
img {
    border-radius: 20px;
} */

