/* Banner Anniversaty */
.screenPopUp {
    position: fixed;
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
    min-height: 100Vh;
    z-index: 90;
    display: none;
    justify-content: center;
    align-items: center;
}

.showPopUp {
    pointer-events: auto;
    display: flex;
}

.blockscreenPopUp {
    width: 600px;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.screenPopUpImg {
    display: block;
}

.responsivescreenPopUpImg {
    display: none;
}

.closeBtn {
    position: absolute;
    width: 30px;
    height: 30px;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    padding: 0;
}

.closeBtn:hover {
    cursor: pointer;
}

.closeBtn img {
    filter: invert(54%) sepia(100%) saturate(546%) hue-rotate(355deg) brightness(103%) contrast(101%);
}
/* Banner Anniversaty */

.blockscreenPopUpWhite {
    display: flex;
    background: white;
    width: 50%;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.screenPopUpImgWhite {
    width: 45%;
}

.screenPopUpImgWhite img {
    display: block;
}

.screenPopUpText {
    width: 55%;
    text-align: center;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.screenPopUpText img {
    width: 75px;
}

.screenPopUpText h2 {
    color: #002F84;
    font-weight: 900;
    font-size: 2em;
}

.screenPopUpText h3 {
    color: #002F84;
    font-size: 1.7em;
    font-weight: 400;
    margin: 0;
}

.closeBtnBlue {
    position: absolute;
    width: 30px;
    height: 30px;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    padding: 0;
}

.closeBtnBlue:hover {
    cursor: pointer;
}

/* .closeBtnBlue img {
    filter: invert(14%) sepia(46%) saturate(4327%) hue-rotate(210deg) brightness(94%) contrast(109%);
} */

.screenPopUpImgWhiteDesktop {
    display: block;
}

.screenPopUpImgWhiteMobile {
    display: none;
}

@media screen and (max-width: 1024px) {
    
    .blockscreenPopUpWhite {
        flex-direction: column;
        width: 80%;
    }

    .screenPopUpImgWhite {
        width: 100%;
        height: auto;
        overflow: hidden;
        border-radius: 10px;
    }

    .screenPopUpText {
        width: 100%;
        padding: 30px;
    }

    .screenPopUpText img {
        width: 50px;
    }

    .screenPopUpText h2 {
        font-size: 1.5em;
    }

    .screenPopUpText h3 {
        font-size: 1.2em;
    }

    .screenPopUpImgWhiteDesktop {
        display: none;
    }

    .screenPopUpImgWhiteMobile {
        display: block;
    }
}