.overlay-pop {
    position: relative;
}

.overlay-pop::before {
    content: "";
    position: fixed;
    width: 100vw;
    height: 100%;
    background: linear-gradient(45deg, #0e179477 10%, #0e179477 50%, #0e179477 90%);
    z-index: 999999;
    inset: 0;
}

.pop-up {
    width: 50%;
    position: fixed;
    left: 50%;
    top: 50%;
    z-index: 9999999999;
    background: #fff;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    padding: 50px 0 0 0;
    height: 400px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.pop-up .msg {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
}
.pop-up h2 {
    color: #000;
    font-size: 50px;
}
.pop-up img {
    width: 150px;
    margin-top: 20px;
}
@media (max-width: 768px) {
    .pop-up {
        width: 93%;
    }
    .pop-up h2 {
        font-size: 30px;
    }
}
