#banner-image .container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #1a1a1a;
    height: 750px;
    padding: 0;
}

.banner-image {
    transition: opacity 200ms ease-in-out;
}

#heroImage {
    position: absolute; /* Absolute positioning */
    top: 0;
    left: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    object-fit: cover; /* Cover the container */
    transition: opacity 200ms ease-in-out; /* Fade transition */
}

.logo-cont {
    position: absolute;
    display: flex;
    top:0;
    bottom: 0;
    left: 0;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;

}

.logo-cont img {
    z-index: 2;
    width: 100%;
    max-width: 80%;
}

@media (max-width: 1024px) {
    .logo-cont img {
        display: none;
    }
}

@media (min-width: 1800px) {
    #banner-image .container {
        margin-top: 30px;
    }
}
