.newsletter-overlay{

    position:fixed;
    inset:0;
    background:rgba(0,0,0,.65);

    display:none;

    justify-content:center;
    align-items:center;

    z-index:99999;
}

.newsletter-popup{

    width:900px;
    max-width:95%;

    background:#fff;

    display:flex;

    position:relative;

    overflow:hidden;

    border-radius:4px;
}

.newsletter-left{

    width:45%;
}

.newsletter-left img{

    width:100%;
    height:100%;
    object-fit:cover;

    display:block;
}

.newsletter-right{

    width:55%;

    padding: 143px 45px 45px;

    display:flex;

    flex-direction:column;

    justify-content:center;
}

.newsletter-right h2{

    font-size:36px;

    margin-bottom:20px;
}

.newsletter-right p{

    font-size:18px;

    line-height:1.6;

    margin-bottom:30px;
}

.newsletter-close {
    position: absolute;
    top: -10px;
    right: 1px;
    background: none;
    border: none;
    font-size: 32px;
    cursor: pointer;
}
#newsletter-popup-overlay input.gform_button.button {
    border-radius: 0 !important;
    width: 200px;
    margin: auto;
    background: #000;
    color: #fff;
    height: 38px;
}
#newsletter-popup-overlay .gform-footer.gform_footer.left_label {
    padding: 0;
}
@media(max-width:768px){

    .newsletter-popup{

        flex-direction:column;
    }

    .newsletter-left,
    .newsletter-right{

        width:100%;
    }

    .newsletter-right{

        padding:25px;
    }

    .newsletter-right h2{

        font-size:28px;
    }

}