.contact-area {
    display: flex;
    gap: 10px;
}

.contact-area-col {
    display: flex;
    flex-direction: column;
    width: calc(50% - 0px);
}

.contact-area-col > .page-breadcrumb {
    margin-bottom: 15px;
}

.info-label {
    font-size: 16px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--text-color);
    opacity: 0.8;
    margin-bottom: 5px;
}

.info-value {
    font-size: 16px;
    color: var(--text-color);
    padding-bottom: 20px;
    margin-bottom: 20px;
    margin-right: 30px;
    border-bottom: 1px solid var(--border-color);
}

a.info-value:hover {
    color: var(--gold-color);
}

.map {
    width: 100%;
    height: 400px;
    background-color: var(--beige-color);
    border: 1px solid var(--border-color);
    margin-top: 10px;
}

.social-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 5px;
}

.social-row > a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--text-color);
    transition: .2s ease background-color;
}

.social-row > a > svg {
    width: 22px;
    height: 22px;
    fill: var(--text-color);
    transition: .2s ease fill;
    pointer-events: none;
}

.social-row > a:hover {
    background-color: var(--text-color);
}

.social-row > a:hover > svg {
    fill: white;
}

@media screen and (max-width: 1200px) {

}

@media screen and (max-width: 950px) {
    .contact-area {
        flex-direction: column;
        gap: 60px
    }

    .contact-area-col {
        width: 100%;
    }
}