.overlay {
    position:fixed;
    height: 100vh;
    inset: 0;
    background: rgba(0, 0, 0, .75);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    padding: 20px;
}

.popup {

    width: 1080px;
    max-width: 95%;

    display: flex;

    background: #6f5d47;

    border-radius: 20px;

    overflow: hidden;

    border: 2px solid #d7b25c;

    box-shadow: 0 25px 70px rgba(0, 0, 0, .45);

    position: relative;

    animation: popup .4s ease;

}

@keyframes popup {

    from {
        transform: translateY(-40px) scale(.85);
        opacity: 0;
    }

    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }

}

.close {
    position: absolute;
    top: -4px;
    right: 14px;
    font-size: 34px;
    cursor: pointer;
    color: #fff;
    z-index: 9;
}

.left {

    width: 50%;
    min-height: 550px;

}

.left img {

    width: 100%;
    height: 100%;
    object-fit: cover;

}

.background {
    position: relative;
    background: linear-gradient(hsla(33, 22%, 36%, .9), hsla(33, 22%, 36%, .9)), url("imgs/popup-bg.webp") center center;
    background-size: cover;
    overflow: hidden;
}

.background>* {
    position: relative;
    z-index: 1;
}

.right {


    width: 55%;

    padding: 20px;

    color: white;

    display: flex;

    flex-direction: column;

    justify-content: center;

}

.badge {

    display: inline-block;

    background: #e8b969;

    padding: 8px 20px;

    border-radius: 40px;

    font-size: 13px;

    font-weight: 600;

    margin-bottom: 20px;

    width: max-content;

}

.contact-wrapper {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 8px;
}

.contact {
    display: flex;
    align-items: center;
    gap: 16px
}

.right.background h2 {
    /* font-family: 'Marcellus, serif'; */
    line-height: 1em;
    font-size: 30px;
    color: #fff;
    margin-top: 0;
    margin-bottom: 10px;
}

h3 {

    font-weight: 400;

    margin-bottom: 15px;

    color: #fff;

}

.desc {
    font-size: 14px;

    line-height: 1.5;

    margin-bottom: 15px;

    color: #ececec;

}

.info p {
    font-size: 16px;
}

.buttons {

    display: flex;

    gap: 15px;

}

.btn {

    padding: 15px 28px;

    text-decoration: none;

    border-radius: 8px;

    font-weight: 600;

    transition: .3s;

    text-align: center;

}

.primary {

    background: #e8b969;

    color: #fff;

}

.primary:hover {

    background: #be9940;

}

.secondary {

    border: 2px solid #e8b969;

    color: #fff;

}

.secondary:hover {

    background: #d7b25c;

}

@media(max-width:768px) {

    .popup {

        flex-direction: column;

    }

    .left,
    .right {

        width: 100%;

    }

    .left {

        height: 260px;
        min-height: 260px;

    }

    .right {

        padding: 30px;

    }

    h1 {

        font-size: 32px;

    }

    .buttons {

        flex-direction: column;

    }

}

@media (max-width: 650px) {
    .left {
        display: none
    }
}