.content-container {
    padding: 162px 0 50px;
    overflow: hidden;
    display: flex;
    position: relative;
}

.content-wrap {
    padding: 100px 50px;
    z-index: 1;
    position: relative;
    max-width: 576px;
    margin: auto;
    text-align: center;
    align-items: center;
    gap: 50px;
    display: flex;
    flex-direction: column;
}

.background-image img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content-container .wrap {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    min-height: clamp(410px, 82vw, 820px);
    display: flex;
    align-items: center;
}

.background-image:after {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 5px;
    background: var(--black);
    background-blend-mode: multiply, normal;
    backdrop-filter: blur(5px);
    content: '';
    opacity: 0.75;
}

.content-wrap h1 {
    text-transform: capitalize;
}