.contact-page {
    color: white;
    padding: 180px 53px 180px 180px;
    min-height: 100vh;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gapper
{
    flex: 1 0 80px;
}

.contact-page .contact-info {
    width: 388px;
    line-height: 1.2;
}

.contact-page .contact-info h2 {
    font-size: var(--font-size-mid-title);
    font-weight: 600;
    margin-bottom: 20px;
}

.contact-page .contact-info p {
    font-size: var(--font-size-mid-title);
    margin-bottom: 20px;
}

.contact-page .contact-map {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 0 1 740px;
}

.contact-page .map-frame {
    width: 100%;
    height: auto;
    aspect-ratio: 2.09375;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    box-sizing: border-box;
    z-index: 1;
}
.contact-page .map-frame::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 6px; /* border thickness */
    background: linear-gradient(135deg, #B69375, #504133);
    -webkit-mask: linear-gradient(#fff 0 0) content-box,  linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box,  linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    -webkit-mask-composite: exclude;
    mask-composite: exclude;
    z-index: 2;
    pointer-events: none;
    border-radius: 0;
}

.contact-page .map-frame iframe
{
    width: 92%;
    height: 85%;
}

.contact-page .map-button {
    margin-top: 20px;
    color: white;
    font-size: var(--font-size-mid-title);
    text-decoration: none;
}
