.banner-hero h2 {
    color: white;
    margin-bottom: 2rem;
}

.homepage-features img {
    transform: scale(1);
    transition: 250ms ease;
    mix-blend-mode: multiply;
    width: 100%;
    height: 100%;
    position: absolute;
    object-fit: cover;
}
.homepage-features .banner1,
.homepage-features .banner2 {
    background: transparent;
    transition: background 250ms ease;
    overflow: hidden;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.homepage-features .banner1:hover,
.homepage-features .banner2:hover {
    background: #317cc5;

}
.homepage-features .banner1:hover img,
.homepage-features .banner2:hover img {
    transform: scale(1.1);
}
.homepage-features .banner_content {
    z-index: 1;
}

.bg-banner {
    margin-top: -15px !important;
    margin-bottom: -15px !important;
}
.bg-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
.bg-banner .banner_content {
    max-width: 1450px;
    margin: auto;
    align-items: start;
    position: relative;
    padding: 12rem 1rem;
}
.bg-banner .banner_content h2 {
    font-size: 1.75rem;
}
.bg-banner .banner_content h3 {
    font-size: 1rem;
    line-height: 1.5;
    max-width: 700px;
    margin-bottom: 1.5rem;
}
.bg-banner--right .banner_content {
    max-width: 600px !important;
    margin-left: auto !important;
    margin-right: 2rem;
}