.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 999;
    backdrop-filter: blur(15px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.5s;
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: initial;
    transition: all 0.5s;
}



.popup-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1500;
    transform: scale(0);
    transition: all 0.5s;
}

.popup-screen.active {
    transform: scale(1);
    transition: all 0.5s;
}

.popup-screen .popup-box {
    position: relative;
    width: 850px;
}

.popup-screen .popup-box .close-btn {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 60px;
    height: 60px;
    background: #3A4775;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    font-size: 25px;
    cursor: pointer;
}


.popup-screen .popup-box .background-sec {
    position: relative;
    width: 100%;
}

.popup-screen .popup-box .background-sec img {
    position: relative;
    width: 100%;
    background: #fff;
    border-radius: 13px;
    box-shadow: 10px 20px 35px rgba(0, 0, 0, 0.5);
}

.popup-screen .popup-box .video-sec {
    position: absolute;
    top: 34px;
    left: 0;
    width: 100%;
    height: 100%;
}

.popup-screen .popup-box .video-sec iframe {
    position: relative;
    width: 100%;
    height: 445px;
}


/* ================== Responsive Start ================== */


@media (max-width: 991px) {
    .popup-screen .popup-box {
        width: 600px;
    }

    .popup-screen .popup-box .video-sec {
        top: 24px;
    }

    .popup-screen .popup-box .video-sec iframe {
        height: 311px;
    }

    .popup-screen .popup-box .close-btn {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .popup-screen .popup-box {
        width: 470px;
    }

    .popup-screen .popup-box .video-sec {
        top: 20px;
    }

    .popup-screen .popup-box .video-sec iframe {
        height: 244px;
    }
}

@media (max-width: 525px) {
    .popup-screen .popup-box {
        width: 328px;
    }

    .popup-screen .popup-box .video-sec {
        top: 13px;
    }

    .popup-screen .popup-box .video-sec iframe {
        height: 170px;
    }
}


@media (max-width: 399px) {
    .popup-screen .popup-box {
        width: 300px;
    }

    .popup-screen .popup-box .close-btn {
        top: -15px;
        right: -15px;
        width: 30px;
        height: 30px;
        font-size: 15px;
    }

    .popup-screen .popup-box .background-sec img {
        border-radius: 10px;
    }

    .popup-screen .popup-box .video-sec {
        top: 12px;
    }

    .popup-screen .popup-box .video-sec iframe {
        height: 156px;
    }
}


/* ================== Responsive End ================== */