.masterplan {
    /*background-image: url("https://cdn.prod.website-files.com/678ac172f64486e52c4fb1fe/678ac172f64486e52c4fb9db_PJA%20MP%20Ariel%20Rendering%2005_M_rev002.webp");
    background-repeat: no-repeat;
    background-size: cover;
    height: 55vw;*/
    position: relative;
    overflow: hidden;
}

.pointer__wrap {
    background-color: var(--color-pearl);
    cursor: pointer;
    justify-content: center;
    width: 1px;
    height: 30px;
    padding-top: 3px;
    display: flex;
    position: absolute;
    bottom: 26.2vw;
    left: 70.1vw;
}
.pointer_outline {
    border: 1px solid var(--color-pearl);
    border-radius: 50px;
    padding: 0;
    position: absolute;
    bottom: 30px;
    will-change: transform, opacity;
    z-index: 1;
    min-width: 22px;
    min-height: 22px;
    max-width: 22px;
    max-height: 22px;
    background: var(--color-pearl);
}

@media (min-width: 768px) {
    .pointer_outline {
        padding: 5px;
        min-width: auto;
        min-height: auto;
        max-width: initial;
        max-height: initial;
        background: transparent;
    }
}

.pointer {
    z-index: 20;
    background-color: var(--color-pearl);
    border-radius: 30px;
    justify-content: center;
    align-items: center;
    display: flex;
    position: relative;
    overflow: hidden;
    width: auto;
    height: auto;
    transition: width 0.35s ease, height 0.35s ease;
    will-change: width, height, opacity;
}

@media (min-width: 768px) {
    .pointer {
        width: 10px;
        height: 10px;
    }
}

.pointer_txt {
    color: var(--color-black-rock);
    text-align: center;
    letter-spacing: 2px;
    text-transform: uppercase;
    /*white-space: nowrap;*/
    padding: 10px 15px;
    font-size: 12px;
    line-height: 12px;
    position: static;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.30s ease, visibility 0s linear 0.30s;
}

@media (hover: hover) and (pointer: fine) {
    .pointer__wrap:hover .pointer_outline {
        z-index: 5;
    }

    .pointer__wrap:hover .pointer {
        width: 230px;
        height: 32px;
    }

    .pointer__wrap:hover .pointer_txt {
        opacity: 1;
        visibility: visible;
    }
}

.pointer__wrap.__1 {
    bottom: 18vw;
    left: 41.7vw;
}

.map-title {
    position: absolute;
    justify-content: center;
    left: 0;
    right: 0;
    bottom: 8vw;
    font-size: 36px;
    color: #ffffff;
}