.cta:before {
    height: 0.5px;
    width: calc(100% - 100px);
    background: rgba(239, 226, 203, 0.10);
    content: '';
    position: absolute;
    left: 50px;
    right: 50px;
    top: 0;
}

section.cta {
    display: flex;
    position: relative;
    padding: clamp(50px, 10vw, 100px) 0;
}

.cta-image img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

section.cta .wrap {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 4px 4px 8px 0px rgba(20, 20, 20, 0.10) inset;
}

.cta-container {
    position: relative;
    padding: clamp(50px, 10vw, 100px) clamp(25px, 5vw, 50px);
    text-align: center;
    z-index: 1;
}

section.cta .wrap:before {
    background: linear-gradient(0deg, rgba(80, 81, 38, 0.85) 0%, rgba(80, 81, 38, 0.85) 100%);
    mix-blend-mode: multiply;
    z-index: 1;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    position: absolute;
    content: '';
}

.cta-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(25px, 5vw, 50px);
    max-width: 800px;
    margin: auto;
}