.map-txt {
    background: var(--violet);
}

.map-txt--container {
    padding: 40px;
    max-width: 1280px;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

@media screen and (min-width: 992px) {
    .map-txt--container {
        padding: 80px 40px;
    }
}

@media screen and (min-width: 1024px) {
    .map-txt--container {
        flex-direction: row;
        gap: clamp(40px, 8.33vw, 120px);
        align-items: flex-start;
    }
}

@media screen and (min-width: 1360px) {
    .map-txt--container {
        padding-inline: 0;
    }
}

.map-txt--content {
    flex: 1;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 28px;
    width: 100%;
}

.map-txt--content h2,
.map-txt--content p {
    color: white;
}

.map-txt--content p {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 17px;
}

@media screen and (min-width: 992px) {
    .map-txt--content p {
        font-size: 17px;
        line-height: normal;
    }
}

.map-txt--content h2 {
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px;
}

@media screen and (min-width: 992px) {
    .map-txt--content h2 {
        font-size: 70px;
        line-height: 70px;
    }
}

.map-txt--content h2 em {
    font-family: var(--play);
    font-style: italic;
}

.map-txt--content a {
    padding: 12px 16px;
    border-radius: 4px;
    background: white;
    border: 1px solid white;
    color: var(--violet);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

@media screen and (min-width: 992px) {
    .map-txt--content a {
        padding: 16px 28px;
        font-size: 18px;
        line-height: normal;
    }
}

.map-txt--content a:hover {
    background: transparent;
    color: white;
}

.map-txt--map {
    width: 100%;
    height: clamp(318px, 88.33vw, 450px);
    border-radius: 4px;
    border: 1px solid var(--violet);
}

@media screen and (min-width: 992px) {
    .map-txt--map {
        height: 496px;
    }
}

@media screen and (min-width: 1024px) {
    .map-txt--map {
        max-width: 706px;
    }
}

.map-txt--panel {
    display: none;
}

@media screen and (max-width: 767px) {
    .map-txt--panel:not([hidden]) {
        display: block;
        background: white;
        padding: 16px 20px;
        border: 0.5px solid var(--violet);
        border-radius: 4px;
    }
}

@media screen and (max-width: 767px) {
    .map-txt .leaflet-popup {
        display: none;
    }
}

.map-txt .leaflet-popup-content-wrapper {
    background: white;
    box-shadow: none;
    border: 0.5px solid var(--violet);
    border-radius: 4px;
}

.map-txt .map-popup {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.map-txt .map-popup img {
    width: 40px;
    -o-object-fit: contain;
    object-fit: contain;
    position: absolute;
    right: 0;
    top: 0;
}

.map-txt .map-popup h4 {
    color: var(--violet);
    font-family: var(--play);
    font-size: 20px;
    font-style: italic;
    font-weight: 700;
    line-height: 20px;
    padding-right: 48px;
}

.map-txt .map-popup p,
.map-txt .map-popup a {
    margin: 0;
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 400;
    line-height: 17px;
    color: var(--violet);
}

@media screen and (min-width: 992px) {

    .map-txt .map-popup p,
    .map-txt .map-popup a {
        font-size: 17px;
        line-height: 22px;
    }
}

.map-txt .map-popup .site {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-top: 8px;
}

.map-txt .map-popup .site::after {
    content: "";
    width: 24px;
    height: 24px;
    background: url("../images/chevron.svg") no-repeat center;
    background-size: contain;
}

/*# sourceMappingURL=style.css.map */