/* Created by Content Blocks */
.bg-image-element {
    position: relative;
}

@media (max-width: 992px) {
    .bg-image-element {
        height: 500px;
    }
}

@media (min-width: 992px) {
    .bg-image-element {
        height: 700px;
    }
}

.hero-image {
    position: relative;
    height: 100%;
    background: black;
}

.hero-text {
    position: absolute;
    width: 100%;
    max-width: 1140px;
    top: 50%;
    transform: translate(-50%, calc(-50% - 50px));
}

@media (max-width: 992px) {
    .hero-text h2 {
        font-size: 1.75rem;
    }
    .hero-text {
        margin-left: 3rem;
        padding-right: 10rem;
    }
}

@media (min-width: 992px) {
    .hero-text h2 {
        font-size: 3rem;
    }
}

.hero-text * {
    color: white;
}

.hero-image img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    user-select: none;
    -webkit-user-drag: none;
    opacity: .65;
}

.icon-banner {
    transform: translateY(-50%);
}

@media (max-width: 992px) {
    .banner-item img {
        /*filter: brightness(0) invert(1);*/
        margin: 15px;
    }
}
