@import url('https://fonts.googleapis.com/css2?family=Palatino+Linotype:wght@400&display=swap');


.popup-overlay {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(20, 20, 20, 0.41);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 90000;
}

.popup-container {
    background: #006F74;
    color: white;
    max-width: 780px;
    max-height: 434px;
    min-height: 434px;
    width: 90%;
    border-radius: 6px;
    display: flex;
    flex-direction: row;
    box-shadow: rgba(19, 2, 2, 0.15) 0px 0px 30px;
    position: relative;
}

.popup-image {
    width: 50%;
    min-width: 300px;
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
    overflow: hidden;
}

.popup-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.popup-content {
    padding: 15px 20px 20px 20px;
    flex: 1;
    text-align: left;
    font-family: Rand, Helvetica, Arial, sans-serif;
}

.popup-content h2 {
    font-size: 30px;
    text-align: center;
    color: #ffffff;
    font-family: Palatino, 'Palatino Linotype', 'Palatino LT STD', 'Book Antiqua', Georgia, serif;
    font-weight: 400;
}

.popup-content p {
    font-size: 16px;
    margin-bottom: 10px;
    line-height: 1.1;
}
.popup-close-container{
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}
.popup-close {
    background: none;
    border: none;
    font-size: 36px;
    color: white;
    cursor: pointer;

}
.popup-box{
    padding: 0px 6px;
}

@media (max-width: 768px) {
    .popup-container {
        flex-direction: column;
        width: 90%;
        min-height: auto;
        height: 100%;
        max-height: 485px;
    }

    .popup-image {
        display: none;
        width: 100%;
        height: 200px;
        border-top-right-radius: 6px;
        border-bottom-left-radius: 0;
    }
}

