.main-popup-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    backdrop-filter: blur(5px);
    background-color: rgba(0, 0, 0, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.popup-warpper {
    position: relative;
    /* width: min(800px, 90%); */
    height: auto;
}

.main-popup-image {
    /* width: 100%; */
    width: 500px;
    height: auto;
    /* border-radius: 10px; */
    object-fit: cover;
    -o-object-fit: cover;
}

button.main-popup-close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    background: none;
    padding: none;
    display: block;
    cursor: pointer;
    border-radius: 999px;
    border: 2px solid white;
    padding: 0.5rem;
}

.popup-close-icon {
    width: 16px;
    height: 16px;
    position: relative;
    background: transparent;
    display: block;
}

.popup-close-icon::before,
.popup-close-icon::after {
    content: '';
    position: absolute;
    top: calc(50% - 1px);
    left: 0;
    translate: 0 calc(0.5px - 50%);
    width: 100%;
    height: 2px;
    background: #fff;
    transform: rotate(45deg);
    transform-origin: center;
    transition: all 0.2s ease-in-out;
}

.popup-close-icon::after {
    transform: rotate(-45deg);
}

button.main-popup-close:focus {
    outline: none;
    border: none;
}

@media screen and (max-width: 1200px) {
        .main-popup-image {
        /* width: 100%; */
        max-width: 300px;
    }
}