#pum-14228 {
    position: fixed;
}

.state-popup {
    display: flex;
    justify-content: center;
    gap: 1rem;
    align-items: center;
}

.state-popup p {
    display: flex;
    gap: 1rem;
}
.state-popup h3, .state-popup p {
    margin-bottom: 0 !important;
}


.pum-theme-13796 .pum-container {
    width: 90% !important;
    max-width: 800px !important;
}

.popup-row {
    display: flex;
    gap: 5px;
}

.popup-col-md-6 {
    width: 50%;
}

.popup-content h3 {
    text-align: center;
    font-size: 32px;
    padding: 18px;
    margin-bottom: 0 !important;
}

.popup-card-wrapper {
    width: 100%;
    min-height: 150px;
    height: 80vh;
    max-height: 600px;
    position: relative;
    overflow: hidden;
}

.popup-card-wrapper a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
}

.popup-card-wrapper .popup-content-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: all 0.3s ease-in-out;
    filter: brightness(0.5);
    transform: scale(1.1);
}

.popup-card-wrapper:hover .popup-content-background {
    transform: scale(1);
    filter: brightness(1);
    transition: all 0.3s ease-in-out;
}

.popup-card-wrapper .popup-content-text {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    padding: 18px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.popup-card-wrapper .popup-content-text h3 {
    margin-bottom: 10px;
    font-size: 42px;

}

.popup-card-wrapper .popup-content-text p {
    margin-bottom: 0;
    bottom: 0;
    padding: 18px;
    position: absolute;
    font-size: 18px;
    font-weight: 100;
    line-height: 1.2;
}

.popup-card-wrapper .popup-content-text a {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    padding: 18px;
}   

.pum-theme-13726 .pum-container, .pum-theme-state-popup .pum-container {
    padding: 18px 50px !important;
}

@media (max-width: 768px) {
    .state-popup {
        text-align: center;
        flex-direction: column;
    }

    .state-popup p {
        justify-content: center;
    }

    .popup-card-wrapper {
        max-height: 400px;
    }

    .popup-content h3 {
        font-size: 24px;
    }

    .popup-card-wrapper .popup-content-text h3 {
        font-size: 24px;
    }

    .popup-card-wrapper .popup-content-text p {
        font-size: 12px;
    }
    
}