:root {
    --bg-btn-primary: #011781;
    --bg-btn-primary-light: #233aaa;
}

.header-section {
    position: relative;
    height: 37.5rem;
    z-index: 1;
}

.header-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
}

.header-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.container-header-description {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
}

.header-description {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    text-align: center;
    transform: translateY(-30px);
    opacity: 0;
    animation: slideDownFadeIn 1s ease forwards;
    color: var(--color-light);
}

.header-description h1 {
    color: var(--color-light);
}

.header-description p {
    font-weight: var(--fw-medium);
    font-size: var(--fs-h4);
}

@keyframes slideDownFadeIn {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-item {
    display: flex;
    gap: .5rem;
}

.info-item svg {
    color: var(--bg-btn-primary);
    margin-top: .25rem;
}

.section-contacts {
    position: relative;
    margin-top: -6rem;
    margin-bottom: 4rem;
    z-index: 2;
}

.row-contacts {
    grid-template-columns: repeat(2, 1fr);
}

.col-contacts {
    background-color: var(--color-light);
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
    padding: 2rem 1.5rem;
    border-radius: .5rem;
}

.col-contacts h2 {
    margin-bottom: 1rem;
    font-size: 1.563rem;
}

.col-contacts h3 {
    font-size: 1.25rem;
}

.row-our-location h2 {
    margin-bottom: .5rem;
}

.row-contact-actions {
    grid-template-columns: repeat(auto-fit, minmax(225px, 1fr));
}

.col-contact-actions {
    display: flex;
    flex-direction: column;
    gap: .9rem;
    padding: 1.5rem;
    border-radius: .5rem;
    align-items: center;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
    text-align: center;
    color: var(--bg-btn-primary);
    font-weight: var(--fw-medium);
}

.col-contact-actions p {
    font-size: 1rem;
}

.col-contact-actions a {
    padding: .5rem 1rem;
    background-color: var(--bg-btn-primary);
    color: var(--color-light);
    border-radius: .3rem;
    min-width: 136.5px;
    margin-top: auto;
    font-weight: var(--fw-semibold);
    font-size: 1rem;
}

@media (max-width: 768px) {
    .row-contacts {
        grid-template-columns: 1fr;
    }
}