.service-card {
    background-color: var(--bg-lightgrey);
    border-radius: 10px;
    padding: 1.4rem 2rem;
    min-height: 295px;
    margin-bottom: 1.5rem;
}
.service-card .icon {
    height: 64px;
    margin-bottom: 1.25rem;
}
.service-card .title {
    margin-bottom: 0.5rem;
    font-size: 18px;
    font-weight: bold;
}

.flex {
    display: flex;
}

.home-banner {
    /* background-image: url('../images/home_banner.jpg'); */
    /* background-attachment: fixed; */
    position: relative;
    padding: 0 !important;
    height: 100%;
}

.container-video {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.home-banner .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    left: 0;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(
        to bottom, rgba(21, 20, 33, 1), rgba(21, 20, 33, 0.69), rgba(21, 20, 33, 0.69), rgba(21, 20, 33, 1)
    );
}