.maintenance-popup-con {
    position: fixed;
    width: 100vw;
    height: 100vh;
    border: 1px solid black;
    background-color: rgba(0, 0, 0, .5);
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
}

.maintenance-popup-imgCon {
    aspect-ratio: 1265 / 825;
    width: 50%;
    position: relative;
}

.popup-exit-btnCon {
    border-radius: 50%;
    border: 2px solid black;
    background-color: rgba(0, 160, 233, 0);
    position: absolute;
    aspect-ratio: 1 / 1;
    width: 5.3%;
    right: 3.9%;
    top: 3.2%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

/* .popup-exit-btnCon:hover {
    background-color: rgba(0, 160, 233, .5);
} */
@media (hover: hover) {
  .popup-exit-btnCon:hover {
    background-color: rgba(0, 160, 233, .5);
  }
}

.popup-exit-btnCon > svg {
    aspect-ratio: 1 / 1;
    width: 70%;
}

.maintenance-popup-imgCon > img {
    display: block;
    width: 100%;
    height: 100%;
}

@media screen and (max-width: 750px){
    .maintenance-popup-imgCon {
        width: 90%;
    }
}