header {
    max-width: 100vw;
    width: 100%;
    aspect-ratio: 2500 / 1167; 
    background-image: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)), url('../images/mt-landscape.avif');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    box-shadow: 0px 7px 20px color-mix(in srgb, black 30%, var(--background-primary));

    &, #navbar .navbar-container a {
        color: white;
    }
}

@media (max-width: 576px) {
    header {
        aspect-ratio: 8 / 13;
        background-image: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)), url('../images/mt-landscape.avif');
    }
}

#homepage-banner {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    .homepage-banner-text, .homepage-banner-text-sm {
        width: 90%;
        text-align: center;
        text-shadow: 0 0 10px #000;
    }
}

.homepage-service-container {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.homepage-service-svg {
    filter: brightness(115%);
    height: 200px;
}

.homepage-banner-text {
    font-size: 6rem;
    margin-bottom: 0;
}

.homepage-banner-text-sm {
    font-size: 3.75rem;
}

.homepage-text-details.service-name {
    font-size: 1.5rem;
    font-weight: 700;
}

.homepage-text-details.service-details {
    max-width: 300px;
}

@media (max-width: 1100px) {
    .homepage-banner-text {
        font-size: 5rem;
    }

    .homepage-banner-text-sm {
        font-size: 2.75rem;
    }
}

@media (max-width: 800px) {
    .homepage-banner-text {
        font-size: 3.5rem;
    }

    .homepage-banner-text-sm {
        font-size: 1.75rem;
    }
}

@media (max-width: 500px) {
    .homepage-banner-text {
        font-size: 2.5rem;
    }

    .homepage-banner-text-sm {
        font-size: 1.5rem;
        margin-bottom: 70px;
    }
}

.homepage-section {
    padding: 30px 0;
    margin: 30px 0;
    align-items: center;
}

.homepage-section img {
    width: 100%;
    max-width: 400px;
    max-height: 500px;
    border-radius: 5px;
    box-shadow: 0px 10px 20px color-mix(in srgb, black 30%, var(--background-primary));
}

.homepage-section .img-container.top-section-img {
    display: flex;
    justify-content: center;
}

.img-container {
    padding: 1.5rem !important;
}

.homepage-banner-text-sm {
    margin-bottom: 0;
}

.homepage-section .text-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 15px;

    @media (max-width: 767px) {
        align-items: center;
        text-align: center;
    }

    .homepage-text-header {
        font-size: 2.5rem;
        font-weight: 700;
    }

    .homepage-section-header {
        font-size: 3rem;
        text-align: center;
    }

    .homepage-text-details {
        font-size: 1.25rem;
    }

    .homepage-text-cta .btn {
        padding: 15px 20px;
        font-size: 1.25rem;
    }
}

/* PARTNER CONTAINER */
.cta-container {
    .cta-btn {
        text-align: center;
    }

    .btn {
        /* background-color: #f2f9ff !important;
        color: #14203b !important; */
        width: fit-content;
        margin: auto;
        padding: 10px 15px;
    }

    @media (max-width: 550px) {
        .btn {
            font-size: 0.85rem;
        }
    }
}

.homepage-section.contact {
    margin: 50px;
    text-align: center;
    justify-content: center;
    align-items: center;
}