/*
|--------------------------------------------------------------------------
| Contact Page
|--------------------------------------------------------------------------
*/

/*
|--------------------------------------------------------------------------
| Address
|--------------------------------------------------------------------------
*/

.contact-address {
    background: var(--white);
    padding-top: var(--space-2xl);
    padding-bottom: 0;
}

.contact-address-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-address-intro {
    font-size: var(--text-xl);
    color: var(--gray-400);
    margin-bottom: var(--space-lg);
    line-height: 1.75;
}

.contact-address-block {
    font-style: normal;
    font-size: var(--text-lg);
    line-height: 1.8;
    color: var(--blue-900);
}

.contact-address-block strong {
    font-weight: 700;
}

/*
|--------------------------------------------------------------------------
| Google Map
|--------------------------------------------------------------------------
*/

.contact-map-section {
    background: var(--white);
    padding: 0;
}

.contact-map-intro {
    font-size: var(--text-xl);
    color: var(--gray-400);
    text-align: center;
    padding: var(--space-3xl) var(--space-2xl) var(--space-xl);
    line-height: 1.75;
}

.contact-map-container {
    width: 100%;
    overflow: hidden;
}

.contact-map {
    display: block;
    width: 100%;
    height: 480px;
}

/*
|--------------------------------------------------------------------------
| Responsive — Contact
|--------------------------------------------------------------------------
*/

@media (max-width: 640px) {
    .contact-map {
        height: 320px;
    }
}