:root{
    --gap: 30px;
}

.newsletter-auswahl::before{
    position: absolute;
    top: 0;
    left:0;
    bottom:0;
    right: 0;
    content: "";
    background-color: rgba(0,0,0,0.4);
}

.newsletter-auswahl{
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* .newsletter-auswahl .wrapper{
    width: 1400px;
    max-width: 100%;
    margin: auto;
} */

.newsletter-auswahl .newsletter{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: var(--gap);
}

.newsletter-auswahl .right,
.newsletter-auswahl .left{
    position: relative;
    z-index: 1;
    max-width: 100%;
    margin:auto;
}

.newsletter-auswahl .right{
    background-color: #fff;
    padding: var(--gap);
    border-radius: 10px;
    filter: drop-shadow(3px 2px 13px rgba(0, 0, 0, 0.2));
}

.newsletter-auswahl .left{
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.newsletter-auswahl .left h2{
    color: #fff;
}

.newsletter-auswahl .titleText{
    text-align: left;
    max-width: 100%;
}

.newsletter-auswahl .titleText .description{
    margin: unset;
}

.newsletter-auswahl p{
    text-align: left;
    margin-bottom: 0px;
}

.newsletter-auswahl h2{
    font-size: 35px;
}

@media only screen and (max-width: 1399.98px) {
    .frm_forms{
        width: auto;
    }
}

@media only screen and (max-width: 1199.98px) {
    .newsletter-auswahl .newsletter{
        flex-direction: column;
        flex-wrap: wrap;
    }

    .frm_forms{
        width: 550px;
    }

    .newsletter-auswahl .left,
    .newsletter-auswahl .right{
        width: calc(550px + var(--gap) * 2);
    }

    .newsletter-auswahl .left{
        margin-bottom: calc( var(--gap) * 2 );
    }

    .newsletter-auswahl .titleText,
    .newsletter-auswahl p{
        text-align: center;
    }
}

@media only screen and (max-width: 650.98px) {
	.newsletter-auswahl .right{
        padding: calc(var(--gap) / 2);
    }

    #frm_form_2_container{
        padding: 0!important;
    }
}