.section_banner_get-a-quote {
    height: 100vh;
    justify-content: center;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: luminosity;
    background-image: url('../media/jpg/get-a-quote-banner.jpg');
}


.container_banner_get-a-quote {
    padding: 3vw 6vw;
    display: flex;
    gap: 2vw;
    justify-content: center;
    height: 100vh;
}

.get-a-quote-banner-text {
    max-width: 80%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    justify-content: center;
    text-align: center;
}

.get-a-quote-banner-text h1 {
    font-size: 2.5rem;
    line-height: 1;
    color: var(--white);
    z-index: 2;
}

.buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    z-index: 2;
}

@media (max-width: 900px) {
    .section_banner_get-a-quote,
    .container_banner_get-a-quote {
        height: 40vh;
    }
}