.pop-container-BG{
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pop-container{
    border: 3px solid #fff;
    max-width: 550px;
    width: 70%;
    
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);

    background: #ef753de0;
    padding: 35px 40px 15px;
    border-radius: 20px;
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.5) ;
    display: flex;
    flex-direction: column;
}

.pop-title{
    font-size: 24px;
    margin: 0 auto 15px ;
    color: #EF753D;
    text-align: center;
    letter-spacing: 1px;
    background-color: #ffffff;
    border-radius: 20px;
    padding: 8px 25px 9px;
    align-items: center;
    font-weight: 600;
}
.pop-content{
    color: #ffffff;
    padding-bottom: 20px ;
    font-size: 17px;
    line-height: 30px;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.close-pop{
    position: absolute;
    top: 15px;
    right: 14px;
    border:none;
    background: none;
    cursor: pointer;
    padding: 0;
    transition: all .1s ease-in-out;
}
.close-pop:hover{
    /* transform: scale(1.02); */
    opacity: 0.75;
}

@media screen and (max-width: 800px) {
    .pop-container{
        padding: 25px 30px 10px;
    }
    .pop-title{
        margin: 0 auto 12px;
        font-size: 20px;
        padding: 4px 22px 5px;
    }
    .pop-content {
        font-size: 14.5px;
        line-height: 24px;
        padding-bottom: 16px;
        font-weight: 400;
        /* text-align: justify; */
    }
}