.pop-up-widget{
    position: fixed;
    top: calc(50% - 250px);
    left: calc(50% - 570px);
    width: 1140px;
    height: 500px;
    display: grid;
    grid-template-columns: 50% 50%;
    grid-template-rows: 100%;
    align-items: center;
    z-index: 9999999;
    border-radius: 16px;
    transform: scale(0);
    overflow: hidden;

    transition: all 0.3s ease .2s;
}

.pop-up-widget img{
    margin: auto;
}

.pop-up-overlay{
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 999999;
    transform: scale(0);

    transition: all 0.3s ease;
}

body.pop-up-active .pop-up-overlay{
    transform: scale(1);
}

body.pop-up-active .pop-up-widget{
    transform: scale(1);
}

.pop-up-close{
    position: absolute;
    top: 8px;
    right: 8px;
    cursor: pointer;
}

.pop-up-content{
    padding: 100px 50px;
}

.pop-up-content h2{
    font-size: 28px;
    font-weight: 4000;
    margin-bottom: 20px;
}

.pop-up-content p{
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 20px;
}

@media (max-width: 1200px){
    .pop-up-widget{
        width: 90%;
        left: 5%;
    }

    .pop-up-content h2{
        font-size: 24px;
    }

    .pop-up-content p{
        font-size: 18px;
    }

    .pop-up-content{
        padding: 30px;
    }

    .pop-up-widget .primary_cta{
        height: 36px;
        font-size: 16px;
    }
}


@media (max-width: 880px){
    .pop-up-widget{
        grid-template-columns: 100%;
        grid-template-rows: 300px 1fr;
        height: 80%;
        top: 10%;
    }

    .pop-up-widget img:first-child{
        max-width: 50%;
        min-width: 300px;
        max-height: 300px;
        margin: 0px auto;
    }
}