section.popup {
    position: fixed;
    background-color: #fff;
    border: 1px solid #004F91;
    margin: auto;
    max-width: 80vw;
    max-height: 80vh;
    width: auto;
    height: auto;
    z-index: 1001;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%)
}

@media (max-width: 768px) {
    section.popup {
        max-height: 95vh;
        max-width: 95vw;
        width: 100%
    }
}

section.popup img {
    width: 100%;
    height: auto;
    object-fit: contain
}

section.popup .content-container {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%
}

section.popup h4, section.popup p {
    color: #004F91
}

section.popup .close-btn {
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: absolute;
    top: 0;
    right: 0;
    border-bottom: 1px solid #004F91;
    border-left: 1px solid #004F91;
    background-color: #fff
}

section.popup .close-btn svg {
    width: 1rem;
    height: 1rem;
    color: #004F91
}
