
body {
    font-family: "Heebo", sans-serif;
    color: #000;
    background: #fff;
    line-height: initial;
    direction: rtl;
}

img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}
.wrapper {
    overflow: hidden;
    width: 100%;
    min-height: 100%;
}

.section-map {
    background-image:url(../img/bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 24px 3vw;
}
.wrap-map {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.map-title {
    color: #D60707;
    font-weight: 700;
    font-size: 3vw;
    margin-left: -20px;
}
@media (min-width: 2000px) {
    .map-title {
        font-size: 50px;
    }
}
.map {
    position: relative;
    display: inline-block;
}
.map-img {
    /* max-width: 460px; */
    max-height: 96vh;
}
.map-pin {
    background-image: url(../img/location-pin.svg);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: clamp(2.5rem, 1.6667rem + 1.7361vw, 3.75rem);
    line-height: 1;
    text-align: center;
    font-weight: 700;
    font-size: clamp(1rem, 0.75rem + 0.5208vw, 1.375rem);
    padding-top: clamp(2.5rem, 1.6667rem + 1.7361vw, 3.75rem);
    min-width: clamp(2.5rem, 1.6667rem + 1.7361vw, 3.75rem);
    cursor: pointer;
    position: absolute;
    z-index: 1;
}
.map-pin:hover,
.map-pin.active {
    background-image: url(../img/location-pin-active.svg);
}


body.modal-open {
    width: 100%;
    height: 100vh;
    overflow: hidden;
}
.modal-backdrop.show {
    display: none;
}
.modal {
    pointer-events: none;
}
.modal-content {
    border: none;
    box-shadow: none;
    border-radius: 0;
}
.modal-dialog {
    margin-right: calc(3vw + 3vw + 50%);
    margin-left: 3vw;
    width: 450px;
    pointer-events: auto;
    padding: 20px 0;
}
.modal-header {
    border: none;
    border-radius: 0;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background: url(../img/modal-header.jpg) no-repeat center;
    background-size: cover;
    padding: 8px 32px 8px clamp(11.25rem, 9.5833rem + 3.4722vw, 13.75rem);
    position: relative;
}
.modal-header .btn-close {
    display: none;
}
.modal-title {
    margin: 0;
    font-weight: 700;
    font-size: clamp(2.25rem, 1.6667rem + 1.2153vw, 2.125rem);
    line-height: 1;
    font-weight: 700;
    text-align: start;
    color: #fff;
}
.modal-img {
    position: absolute;
    pointer-events: none;
    left: 4px;
    bottom: -20%;
    transform: rotate(-7deg);
    width: clamp(10.25rem, 7.5833rem + 3.4722vw, 10.75rem);
    height: clamp(10.25rem, 7.5833rem + 3.4722vw, 10.75rem);
    box-shadow: 0 4px 4px 0 rgba(0,0,0,.25);
    border: 8px solid #fff;
}
.modal-img img {
    width: 100%;
    object-fit: cover;
    min-height: 100%;
}
.modal-body {
    line-height: 1.2;
    padding: 40px 32px 32px 32px;
    font-size: clamp(1.375rem, -1.25rem + 1.9167vw, 1.5rem);
}
.modal-body p {
    margin-bottom: 16px;
}
.modal-body ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.modal-body li {
    list-style: none;
    padding: 0;
    margin: 0;
}


@media (max-width: 1199px) {
    .section-map {
        background-image:url(../img/bg-mob.jpg);
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .map-title {
        position: absolute;
        top: 60px;
        right: 36px;
        z-index: 1;
        pointer-events: none;
        font-size: 44px;
        line-height: 1;
    }
    .map {
        margin: 0 auto;
        transform: translateX(-5%);
    }
    .map-img {
        max-width: 360px;
        max-height: none;
    }
    .map-pin {
        font-size: 23px;
    }
    .modal-backdrop.show {
        display: block;
        background: #101820;
        opacity: 0.3;
    }
    .modal {
        pointer-events: auto;
    }
    .modal-dialog {
    margin-right: auto;
    margin-left: auto;
}
.modal-header .btn-close {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    background-color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    margin-top: -16px;
    margin-right: -16px;
    opacity: 1;
}
}
@media (max-width: 767px) {
    .wrap-map {
        padding-right: 0;
        align-items: flex-start;
        justify-content: flex-start;
        width: 100%;
    }
    .map-title {
        font-size: 32px;
        position: static;
        top: auto;
        right: auto;
    }
    .map-img {
        max-width: 220px;
    }
    .map-pin {
        font-size: 18px;
    }
    .modal-dialog {
        padding: 60px 0;
        width: 436px;
        max-width: 85%;
    }
    .modal-title {
        font-size: 2rem;
    }
    .modal-img {
        width: 140px;
        height: 140px;
        border-width: 4px;
    }
    .modal-header {
        padding-left: 140px;
        padding-right: 20px;
    }
    .modal-body {
        padding: 50px 20px 20px;
    }
}



