:root {
    --popup-cms2-primary: var(--primary-color);
    --popup-cms2-icon-primary: var(--icon-filter-primary);
    --popup-cms2-font-size-text: var(--font-size-text);
    --popup-cms2-text-color: #3D3D3A;
}

#pop-up-cms2 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.pop-up-cms2__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 999;
}

.pop-up-cms2__content {
    position: relative;
    display: flex;
    width: 85%;
    max-width: 800px;
    background: #fff;
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.pop-up-cms2__close {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;

}

.pop-up-cms2__image {
    flex: 1;
    max-width: calc(45%- 24px);
}

.pop-up-cms2__image img {
    width: 100%;
    height: auto;
}

.pop-up-cms2__text__title {
    font-family: "Gilda Display", serif;
    font-weight: 400;
    font-size: 40px;
    text-transform: uppercase;
    line-height: 1.35em;
    margin-bottom: 16px;
}
.pop-up-cms2__text {
    flex: 2;
    padding: 0 24px;
    max-width: 55%;
    font-family: "Poppins", sans-serif;
    font-size: var(--popup-cms2-font-size-text);
    font-weight: 400;
    line-height: 1.75em;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    color: var(--popup-cms2-text-color);
}

.pop-up-cms2__text p {
    color: var(--popup-cms2-text-color);
}

#pop-up-cms2 .icon-button--booking {
    margin-right: 15px;
    display: flex;
    align-items: center;
}

#pop-up-cms2 .icon-button--booking .icon {
    position: relative;
    top: 0;
}

#pop-up-cms2 .icon-button--booking .icon img {
    width: 40px;
    filter: var(--popup-cms2-icon-primary);
}

#pop-up-cms2 .icon-button--booking .text {
    margin-left: 15px;
    margin-top: 5px;
}

#pop-up-cms2 .icon-button--booking .link-btn {
    display: inline-block;
    position: relative;
    text-transform: uppercase;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: var(--popup-cms2-text-color);
}

#pop-up-cms2 .icon-button--booking .link-btn:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background-color: var(--popup-cms2-primary);
    -webkit-transition: all ease 0.4s;
    transition: all ease 0.4s;
}

#pop-up-cms2 .icon-button--booking .link-btn:hover:before {
    width: 100%;
}


.invisible {
    display: none;
}

@media (max-width: 992px) {
    .pop-up-cms2__image {
        display: none;
    }
    .pop-up-cms2__text {
        max-width: 100%;
        padding: 32px 24px;
    }
}
