﻿.transfers-hero {
    /* background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('./../images/banners/limousine.jpeg') center/cover no-repeat; */
    color: var(--primary-white);
    padding: 100px 0;
    text-align: center;
}



.banner-container {
    position: relative;
    width: 100%;
    height: 600px; /* Adjust as needed */
    overflow: hidden;
}


.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-overlay {
    /*position: absolute;*/
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Adjust opacity as needed */
}

.banner-content {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    color: var(--primary-white);
    text-align: center;
}

    .banner-content h1 {
        font-size: 3rem;
        font-weight: 700;
        margin-bottom: 20px;
    }

    .banner-content > .container {
        margin-bottom: -100px;
    }

    .banner-content p {
        font-size: 1.2rem;
        margin-bottom: 0;
    }
