﻿

.logo-section {
    padding: 1.25rem 0;
    text-align: center;
}

    .logo-section img {
        max-height: 3.75rem;
        width: auto;
    }

.companies-section {
    padding: 0;
}




.company-card {
    position: relative;
    height: 26.25rem;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.company-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

    .company-background::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.6) 100%);
    }

    .company-background .cover-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.company-content {
    position: relative;
    z-index: 2;
    color: var(--text-white);
    padding: 0 10%;
    width: 100%;
}

    .company-content .preheadline {
        font-size: 0.85rem;
        font-weight: 500;
        margin-bottom: 0.625rem;
        letter-spacing: 0.031rem;
    }

    .company-content .h3 {
        font-size: 2.2rem;
        font-weight: 800;
        text-transform: uppercase;
        margin: 0 0 0.938rem 0;
        letter-spacing: 0.063rem;
    }

    .company-content p:not(.preheadline) {
        font-size: 1.05rem;
        line-height: 1.5;
        margin-bottom: 1.563rem;
        max-width: 85%;
    }

    .company-content .btn-primary {
        display: inline-block;
        background-color: var(--secondary-color);
        color: var(--neutral-color-dark);
        text-transform: uppercase;
        font-weight: 700;
        font-size: 0.85rem;
        padding: 0.625rem 1.5rem;
        border-radius: 1.25rem;
        text-decoration: none;
        border: none;
        transition: opacity 0.2s ease-in-out;
    }

        .company-content .btn-primary:hover {
            opacity: 0.9;
        }

.contact-section {
    padding: 3.75rem 0 5rem 0;
    max-width: 71.25rem;
    margin: 0 auto;
}

    .contact-section .h2 {
        font-size: 2rem;
        font-weight: 800;
        color: var(--primary-color);
        text-transform: uppercase;
        margin-bottom: 0.625rem;
    }

    .contact-section p.text-center {
        font-size: 1rem;
        color: var(--text-muted);
        margin-bottom: 3.125rem;
        max-width: 37.5rem;
        margin-left: auto;
        margin-right: auto;
    }

    .contact-section .row {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0;
    }

    .contact-section .col-lg-4,
    .contact-section .col-md-6 {
        flex: 0 0 40%;
        max-width: 40%;
        padding: 0 0.938rem;
    }

@media (max-width: 48rem) {
    .contact-section .col-lg-4,
    .contact-section .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 2.5rem;
    }
}

.contact-card {
    text-align: left;
}

.contact-logo {
    margin-bottom: 1.25rem;
}

    .contact-logo img {
        max-height: 2.813rem;
        width: auto;
    }

.phone-numbers {
    margin-top: 0.938rem;
}

.phone-item {
    margin-bottom: 0.938rem;
    font-size: 0.95rem;
}

.phone-label {
    font-weight: 700;
    color: var(--text-dark);
    display: block;
}

.phone-number {
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: 500;
    display: inline-block;
    margin-top: 0.125rem;
}

    .phone-number:hover {
        color: var(--primary-color-dark);
    }
