@import url("https://use.typekit.net/wzo5qko.css");
:root {
    --black-color: #282828;
    --gold-color: rgb(255, 222, 0);
    --ff: "Century Gothic", sans serif;
    --white-color: #fff;
    --ftitle: "arial", sans serif;
}

.pop-up-close {
    position: absolute;
    z-index: 20;
    top: 0;
    right: 0;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 0 !important;
    background-color: rgba(255, 255, 255, 0.5) !important;
    cursor: pointer;
}

.pop-up-close::after, .pop-up-close::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40%;
    height: 1px;
    background-color: var(--black-color);
    transition: transform 0.3s ease-in-out;
}

.pop-up-close::before {
    transform: translateX(-50%) rotate(45deg);
}

.pop-up-close::after {
    transform: translateX(-50%) rotate(-45deg);
}

.pop-up-close:hover::before, .pop-up-close:hover::after {
    transform: translateX(-50%) rotate(0deg);
}

.immoval-btn {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    padding: 0.7rem 1.5rem;
    text-decoration: none;
    background-color: var(--gold-color);
    color: var(--black-color);
    cursor: pointer;
    font-weight: bolder;
    font-weight: 900;
    border-radius: 3rem;
    font-size: 1.3rem;
}

.immoval-btn-yellow {
    align-self: flex-end;
}

.immoval-pop-up > * {
    margin: 0;
    padding: 0;
    color: var(--white-color);
    text-align: center;
}

.immoval-pop-up, .immoval-pop-up-image {

    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    width: 100vw;
    height: 100vh;

    overflow: hidden;

    margin: 0 auto;
    padding: .5rem;
    
    place-items: center;
    z-index: 200;
    font-family: var(--ff);
    background-color: rgba(0, 0, 0, 0.4);
    
    display: none;
}

.immoval-pop-up a {
    text-decoration: none;
}

.immoval-pop-up.shown {
    display: grid;
}

.immoval-pop-up .pop-up, .immoval-pop-up-image-inner {
    width: 95vw;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
    border: 0.4rem solid var(--white-color);
    box-shadow: 1px 2px 0.3rem rgba(0, 0, 0, 0.3);
}

.immoval-pop-up .pop-up-close_js {
    position: relative;
    display: flex;
}

.immoval-pop-up .pop-up-content {
    width: 100%;
    height: inherit;
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    background-color: rgba(0, 0, 0, 0.4);
}

.immoval-pop-up .pop-up-content-logo {
    width: 282px;
    height: 110px;
    margin: 0 auto;
}

.immoval-pop-up .pop-up-content-logo img {
    width: 100%;
}

.immoval-pop-up .pop-up-content-title h2 {
    font-size: 2.3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    line-height: 1!important;
    font-family: var(--ff);
    font-weight: 900;
}

.immoval-pop-up .pop-up-content-title h2 span {
    color: var(--white-color);
}

.immoval-pop-up .pop-up-content-title h2 span:last-of-type {
    color: var(--gold-color) !important;
}

.immoval-pop-up .pop-up-content-content p {
    font-size: 1.3rem;
    color: var(--white-color);
    text-align: center;
}

.immoval-pop-up .pop-up-content-content p > * {
    font-family: "Century Gothic", "sans-serif";
}

.immoval-pop-up .pop-up-content-btns {
    display: grid;
    place-items: center;
}

.immoval-pop-up .pop-up-content-btns > a {
    background-color: #997f48!important;
    text-transform: uppercase;
}

/* POP UP - IMAGE */

.immoval-pop-up-image.shown {
    display: grid;
}

.immoval-pop-up-image .pop-up {
    position: relative;
}

.immoval-pop-up-image .pop-up-mask img {
    width: 100%;
    height: 100%;
    display: block;
}

@media screen and (min-width: 750px) {

    .immoval-pop-up .pop-up, .immoval-pop-up-image-inner {
        width: 500px;
        height: 500px;
        overflow: hidden;
    }

    .immoval-pop-up .pop-up-content-logo {
        width: 330px;
        height: auto;
    }

    .immoval-pop-up .pop-up-content {
        padding: 4rem 2rem;
    }

    .immoval-pop-up .pop-up-content-text {
        display: grid;
        place-items: center;
    }
        
    .immoval-pop-up .pop-up-content-text > p {
        margin-bottom: 0;
        font-size: 1.2rem;
    }

    .immoval-pop-up .pop-up-content-title h2 {
        font-size: 2.9rem;
        line-height: 1.4 !important;
    }

    .immoval-pop-up .pop-up-content-content p {
        font-size: 2rem;
        line-height: 1.3;
    }

    .immoval-btn {
        padding: .7rem 2rem;
    }
}