.contact-page {
    overflow-x: hidden;
}

.contact-page::-webkit-scrollbar {
    width: 8px;
}

.contact-page::-webkit-scrollbar-track {
    background: #030708;
}

.contact-page::-webkit-scrollbar-thumb {
    border-radius: 8px;
    background: #9e6329;
}

.hero-map-button {
    display: grid;
    grid-template-columns: 48px 1fr auto;
    align-items: center;
    gap: 20px;
    width: min(100%, 560px);
    min-height: 88px;
    margin-top: 28px;
    padding: 15px 22px;
    border: 1px solid rgba(240, 199, 131, 0.58);
    color: #f0c783;
    background: rgba(3, 9, 11, 0.64);
    text-decoration: none;
    backdrop-filter: blur(6px);
    transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.map-pin-icon {
    width: 42px;
    height: 50px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.25;
}

.map-button-copy {
    display: block;
    min-width: 0;
}

.map-button-copy strong,
.map-button-copy small {
    display: block;
}

.map-button-copy strong {
    font-family: "Marcellus", serif;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 2.2px;
    text-transform: uppercase;
}

.map-button-copy small {
    margin-top: 5px;
    color: rgba(255, 248, 238, 0.58);
    font-family: "Marcellus", serif;
    font-size: 12px;
    letter-spacing: 0.2px;
}

.map-button-arrow {
    font-family: "Marcellus", serif;
    font-size: 27px;
    font-weight: 300;
} 
@media (max-width: 520px) {
    .hero-map-button {
        grid-template-columns: 39px 1fr auto;
        gap: 13px;
        width: 100%;
        min-height: 78px;
        margin-top: 22px;
        padding: 13px 15px;
    }

    .map-pin-icon {
        width: 35px;
        height: 43px;
    }

    .map-button-copy strong {
        font-size: 12px;
        letter-spacing: 1.5px;
    }

    .map-button-copy small {
        font-size: 10px;
    }

    .map-button-arrow {
        font-size: 22px;
    }
}
