#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(--font-size-text);
    font-weight: 400;
    line-height: 1.75em;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
}


.invisible {
    display: none;
}

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