.section-bg {
    width: 100%;
    position: absolute;
    height: 46vh;
    background-size: cover;
    background-position: center;
    background-image: linear-gradient(96.24deg, rgba(0, 0, 0, 0.7) 17.59%, rgba(0, 0, 0, 0) 47.72%), image-set(url(../images/section-bg.webp) 1x, url(../images/section-bg.webp) 2x);
    z-index: -1;
}

section {
    margin-top: 70px;
}

.sect-cen {
    width: var(--width);
    height: calc(46vh - 70px);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sect-cen h2 {
    color: #fff;
    font-size: 35px;
    transform: translateY(-50%);
}

.sect-cen h2 a {
    color: #fff;
}

.sect-cen h2 a:hover {
    text-decoration: underline;
}

@media screen and (max-width:769px) {
    .section-bg {
        height: 60vh;
    }

    section {
        margin: 0;
    }

    .sect-cen h2 {
        transform: translateY(0);
        font-size: 1.792rem;
        padding: 0 .64rem;
    }
}