.im-hero {
    height: 350px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url(assets/hero.jpg);
    position: relative;
    z-index: 1;
}

.im-hero h1 {
    h1 {
        font-size: 3rem;
        color: white;
        font-weight: bold;
        @media (min-width: 768px) {
        font-size: 80px;
        }
  
    }
}

.im-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 1;
    background-color: rgba(41,45,49,0.7);
}

.im-cta {
    background-color: #292D31;
    &.with-bg {
        background-image: url(assets/im-cta-bg.jpg);
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
        &::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
            opacity: 1;
            background-color: rgba(41,45,49,0.7);
        }
    }
}

.im-two-column.bg-gray {
    background-color: #f4f4f4;
}

.im-block {
    color: var(--site-color-secondary, #6c757d);
}
