/* Banner Component CSS file */
/* ------------------------------------------------- */

section.banner {
    position: relative;
    width: 100%;
    height: 60svh;
    min-height: 300px;
    overflow: hidden;
}

section.banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

section.banner:before {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 66.69%, rgba(0, 0, 0, 0.70) 93.27%);
    background-blend-mode: multiply, normal;
    content: '';
    z-index: 1;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}