
/* section-map */
.section-map {
    --height-block: 45rem;
}
.section-map .section__bg {
    position: relative;
}
.section-map__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.section-map__bg img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.section-map__wrapper {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: var(--height-block);
}
.section-map__btns {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--offset-extrasmall);
}
.section-map__btns .button {
    --btn-width: 15rem;
}

.section-map__descr:not(:first-child) {
    padding-top: var(--offset-big);
}
.section-map__btns:not(:first-child) {
    padding-top: 3rem;
}

@media screen and (max-width: 1023.5px) {
    .section-map {
        --height-block: 30rem;
    }
    .section-map__descr br {
        display: none;
    }
    .section-map__btns {
        width: 100%;
    }
    .section-map__btns .button {
        --size-btn: 3.5rem;

        font-size: 1rem;
        line-height: 1.5;
        font-weight: var(--font-semibold);
    }
    .section-map__descr:not(:first-child) {
        padding-top: var(--offset-secondary);
    }
    .section-map__btns:not(:first-child) {
        padding-top: var(--offset-main);
    }
}
@media screen and (max-width: 767px) {
    .section-map__bg img {
        object-fit: cover;
    }
}
@media screen and (max-width: 575px) {
    .section-map__btns .button {
        width: 100%;
    }
}