
.popup{
    position: fixed;
    top:50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
	z-index: 999;
	font-family: 'Poppins', sans-serif;
}
.content-box{
    position: relative;
    width: 600px;
    height: 400px;
    background: #fff;
    border-radius: 20px;
    display: flex;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.content-box .imgbx::before{
    content: '';
    position: absolute;

}
.content-box .imgbx{
    position: relative;
    width: 300px;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url(../images/nfl.png);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 20px;
    border-radius: 20px 0 0 20px;
}

.content-box .imgbx img{
    position: relative;
    max-width: 250px;
    z-index: 1;
}

.content-box .content{
    position: relative;
    width: 300px;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 30px;
}
.content-box .content h1{
    color: #fd1d1d;
    line-height: 0.1em;
    font-weight: 600;
    font-size: 1.5em;
}

.content-box .content h2{
    color: #971bea;
    font-size: 4em;
}

.content-box .content h2 span{
    color: #333;
    font-size: 0.75em;
    text-transform: uppercase;
    padding-bottom: 230px;
}

.content-box .content p{
    color: #333;
    font-weight: 300;
}

.content-box .content a{
    display: inline-block;
    text-decoration: none;
    padding: 10px 20px;
    background: #ff4d54;
    color: #fff;
    border-radius: 10px;
    margin-top: 20px;
}

.close{
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: #f3f3f3 url(../images/close.png);
    background-repeat: no-repeat;
    background-size: 20px;
    background-position: center;
    border-radius: 50%;
    z-index: 10;
}

/* Responsive */

@media (max-width: 767px){
    .content-box{
        width: 300px;
        height: auto;
        flex-direction: column;
    }
    .content-box .imgbx{
        height: 200px;
        transform: translate(Y-50px);
    }
    .content-box .content{
        height: auto;
        text-align: center;
        padding: 20px;
        padding-top: 0;
    }
    .close{
        position: absolute;
        top: -50px;
        right: -10px;
        background: #f3f3f3 url(../images/close.png);
        background-repeat: no-repeat;
        background-size: 20px;
        background-position: center;
        border-radius: 50%;
        z-index: 10;
    }
}