.im-hero {
    height: 300px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url(assets/hero.webp);
    position: relative;
    z-index: 1;
}

.im-hero h1 {
    h1 {
        color: white;
        font-weight: 600;
    }
}

.im-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 1;
    background-color: rgba(0,0,0,0.5);
}

.im-cta {
    background-color: var(--site-color-secondary, #242424);
}

.im-two-column.bg-gray {
    background-color: #f4f4f4;
}

.im-block {
    color: var(--site-color-secondary, #6c757d);
}

.tech-btn {
    border: 6px solid #FDB83A;
    border-radius: 0;
    color: white;
    font-weight: bold;
    padding:6px 12px;
    display:inline-block;
    text-decoration:none;
}

.tech-btn:hover {
        border-color: #fff;
        color: #fdb83a;
        text-decoration:underline;
    }