.cta_modal {
    background: #373737b5;
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    display: none;
    pointer-events: none;
    transition: all 0.3s ease-in-out;
    z-index: 999;
}

.cta_modal.active {
    opacity: 1;
    pointer-events: all;
}

.cta_modal_container {
    display: flex;
    align-items: center;
    gap: 23px;
    background-color: #fff;
    position: relative;
    max-height: 90vh;
    max-width: 90vw;
    overflow: hidden;
}

.cta_modal_content {
    text-align: center;
    padding: 77px 38px 55px 0;
    position: relative;
    z-index: 1;
}

@media screen and (max-width: 768px) {
    .cta_modal_content {
        padding: 22px;
        /* background-color: #06060691;
        color: #dfdfdf; */
    }
}

.cta_modal_image {
    overflow: hidden;
}

@media screen and (max-width: 990px) {
    .cta_modal_image {
        max-width: 400px;
    }
}

@media screen and (max-width: 768px) {
    .cta_modal_image {
        position: absolute;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        right: 0;
        bottom: 0;
        max-width: 100%;
        display: none;
    }
}

.cta_modal_image img {
    height: 100%;
    width: 100%;
    display: block;
}

.cta_modal_content > p {
    font-family: Montserrat;
    text-align: center;
    margin: 16px 0;
    line-height: 1;
}

.cta_modal_content > p:nth-child(1) {
    font-size: 20px;
    font-weight: 500;
    margin: 0;
}

@media screen and (min-width: 480px) {
    .cta_modal_content > p:nth-child(1) {
        font-size: 30px;
    }
}

@media screen and (min-width: 1200px) {
    .cta_modal_content > p:nth-child(1) {
        font-size: 46px;
    }
}

.cta_modal_content > p:nth-child(2) {
    color: rgba(213, 180, 62, 1);
    font-weight: 700;
    font-size: 30px;
    text-transform: uppercase;
    margin: 16px 0;
}

@media screen and (min-width: 480px) {
    .cta_modal_content > p:nth-child(2) {
        font-size: 40px;
    }
}

@media screen and (min-width: 1200px) {
    .cta_modal_content > p:nth-child(2) {
        font-size: 54px;
    }
}

.cta_modal_content > p:nth-child(3) {
    font-size: 24px;
}

@media screen and (min-width: 480px) {
    .cta_modal_content > p:nth-child(3) {
        font-size: 34px;
    }
}

@media screen and (min-width: 1200px) {
    .cta_modal_content > p:nth-child(3) {
        font-size: 34px;
    }
}

.cta_modal_content > p:nth-child(4) {
    font-size: 12px;
    display: flex;
    justify-content: center;
}

@media screen and (min-width: 1200px) {
    .cta_modal_content > p:nth-child(4) {
        font-size: 28px;
    }
}

.cta_modal_content > p:nth-child(4) > span {
    display: flex;
    align-items: center;
}

.cta_modal_content > p:nth-child(4) > span:nth-child(1n+2)::before {
    content: "";
    display: block;
    background-color: rgba(242, 216, 121, 1);
    border-radius: 50%;
    width: 15px;
    height: 15px;
    margin: 0 12px 0 18px;
}

.cta_modal_content > .tell {
    font-family: Montserrat;
    text-align: center;
    margin: auto;
    font-size: 28px;
    text-transform: uppercase;
    font-weight: 700;
    background: rgba(242, 216, 121, 1);
    padding: 15px 30px;
    color: rgba(51, 51, 51, 1);
    text-decoration: none;
    margin-top: 30px;
    display: inline-block;
}

@media screen and (min-width: 1200px) {
    .cta_modal_content > .tell {
        font-size: 40px;
        margin-top: 45px;
    }
}

.cta_modal_content > p:nth-child(6) {
    font-size: 20px;
    font-weight: 500;
    margin-top: 30px;
}

@media screen and (min-width: 1200px) {
    .cta_modal_content > p:nth-child(6) {
        font-size: 30px;
        margin-top: 46px;
    }
}

#cta_modal_close {
    background-color: transparent;
    border: 0;
    outline: 0;
    position: absolute;
    right: 33px;
    top: 33px;
    cursor: pointer;
    z-index: 2;
}

@media screen and (max-width: 768px) {
    #cta_modal_close {
        right: 12px;
        top: 12px;
        padding: 10px;
    }

    #cta_modal_close path {
        /* stroke: #fff; */
    }
}