/*@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Hebrew:wght@400;500;600;700&display=swap');*/

.center-map {
    direction: rtl;
    background-color: #ededed;
    /*font-family: 'Noto Sans Hebrew', sans-serif;*/
    padding: 0px 20px 0px;
    box-sizing: border-box;
}

.center-map__side-panel {
    display: none;
}

.center-map__content {
    width: 100%;
}

.center-map__inner {
    width: 100%;
}

.center-map__badge {
    margin-bottom: 24px;
}

.center-map__title-row {
    display: block;
}

.center-map__frame-wrap {
    width: calc(100% + 40px);
    margin-inline-start: -20px;
    margin-top: 32px;
    line-height: 0;
    background: #d8d8d8;
    position: relative;
    overflow: hidden;
}

.center-map__frame {
    width: 100%;
    aspect-ratio: 1100 / 1000;
    min-height: 320px;
    border: 0;
    display: block;
}

.center-map__frame-wrap:not(.center-map__frame-wrap--has-image) .center-map__frame {
    filter: grayscale(1);
    transition: filter 0.35s ease;
}

.center-map__frame-wrap:not(.center-map__frame-wrap--has-image):hover .center-map__frame,
.center-map__frame-wrap:not(.center-map__frame-wrap--has-image):focus-within .center-map__frame {
    filter: grayscale(0);
}

.center-map__frame-wrap--has-image .center-map__frame {
    opacity: 0;
    transition: opacity 0.35s ease;
}

.center-map__image-cover {
    position: absolute;
    inset: 0;
    z-index: 2;
    cursor: pointer;
    opacity: 1;
    transition: opacity 0.45s ease, visibility 0.45s ease;
}

.center-map__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.center-map__frame-wrap--has-image:hover .center-map__frame,
.center-map__frame-wrap--has-image:focus-within .center-map__frame {
    opacity: 1;
}

.center-map__frame-wrap--has-image:hover .center-map__image-cover,
.center-map__frame-wrap--has-image:focus-within .center-map__image-cover {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

@media (min-width: 1025px) {
    .center-map {
        display: flex;
        flex-direction: row;
        align-items: stretch;
        padding: 0;
    }

    .center-map__side-panel {
        display: block;
        flex: 0 0 191px;
        width: 191px;
        border-left: 1px solid #8d8d8d;
        background-color: #ededed;
        position: relative;
    }

    .center-map__section-num {
        position: absolute;
        top: 88px;
        left: 0;
        width: 100%;
        font-size: 22px;
        font-weight: 500;
        color: #949494;
        letter-spacing: 0.04em;
        text-align: center;
        white-space: nowrap;
    }

    .center-map__section-num::after {
        content: '';
        position: absolute;
        top: 0;
        left: -2px;
        width: 3px;
        height: 152px;
        background-color: #282828;
        border-radius: 2px;
    }

    .center-map__content {
        flex: 1 1 auto;
        min-width: 0;
    }

    .center-map__inner {
        padding: 88px 66px 30px;
        min-height: 240px;
        box-sizing: border-box;
    }

    .center-map__badge {
        margin-bottom: 22px;
        font-size: 16px;
        padding: 6px 40px;
    }

    .center-map__title {
        margin: 0;
        max-width: 560px;
        font-size: 44px;
        line-height: 1.1;
    }

    .center-map__frame-wrap {
        margin: 0;
        width: 100%;
        background-color: #3b3b3b;
    }

    .center-map__frame {
        width: 100%;
        aspect-ratio: 1720 / 780;
        min-height: 780px;
    }
}
