.mcw-cta-section {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
}

.mcw-cta-section .mcw-background {
    overflow: hidden;
    background: linear-gradient(135deg, #00267E 0%, #092D94 50%, #101828 100%);

    .cta-image img {
        height: 100%;
        object-fit: cover;
    }
}

.mcw-cta-section .mcw-overflow {
    overflow: visible;
    background: linear-gradient(135deg, #00267E 0%, #092D94 50%, #101828 100%);

    .cta-image img {
        height: auto;
        border-bottom-right-radius: 50px;
        border-top-right-radius: 50px;
    }
}

.mcw-cta-section .mcw-gradient {
    background: linear-gradient(var(--mcw-angle, 135deg),
            var(--mcw-color-1, var(--mcw-color-2, var(--mcw-color-3, #00267E))),
            var(--mcw-color-2, var(--mcw-color-3, var(--mcw-color-1, #092D94))),
            var(--mcw-color-3, var(--mcw-color-2, var(--mcw-color-1, #101828))));

    .cta-content {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        width: 100% !important;
    }

    .cta-image {
        display: none;
    }
}

.mcw-cta-section .mcw-gradient.cta-wrapper::before {
    content: none !important;
}

.mcw-cta-section .bottom-shadow {
    position: relative;
}

.mcw-cta-section .bottom-shadow::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    background-image: url("../images/bottom-shadow.png");
    background-repeat: no-repeat;
    background-position: bottom left;
    background-size: auto;
    pointer-events: none;
    z-index: 0;
    height: 100%;
    width: 100%;
    border-radius: 50px;
    opacity: 0.56;
}

.mcw-cta-section .cta-wrapper {
    display: flex;
    position: relative;
    padding: 60px 40px;
    border-radius: 50px;
    color: rgba(250, 250, 250, 1);
}

.mcw-cta-section .cta-wrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background-image: var(--mcw-cta-overlay-image, none);
    background-repeat: no-repeat;
    background-position: var(--mcw-cta-overlay-position, right center);
    background-size: var(--mcw-cta-overlay-size, cover);
    opacity: 1;
    pointer-events: none;
    z-index: 0;
}

.mcw-cta-section .cta-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: start;
    z-index: 1;
}

.mcw-cta-section .cta-image {
    border-radius: 50px;
}

.mcw-cta-section .cta-image img {
    position: absolute;
    right: 0;
    bottom: 0;
}

.mcw-cta-section .cta-title {
    font-family: Geist;
    font-weight: 400;
    font-size: 34px;
    line-height: 43px;
}

.mcw-cta-section .cta-description {
    font-family: Geist;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: -0.3%;
    margin-top: 20px;
    color: #C1DEFF;
}

.mcw-cta-section .mcw-cta-button-wrapper {
    box-sizing: border-box;
    position: relative;
    margin-top: 40px;
    background: #fff;
    border-radius: 100px;
    /* border: 1px solid rgba(250, 250, 250, 0.3); */
    color: #101828;
    outline: none;
}

.mcw-cta-section .mcw-cta-button {
    padding: 28px 40px;
    color: #101828 !important;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    transition: all .2s ease-out;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.mcw-cta-section .mcw-cta-button-wrapper svg {
    position: relative;
    z-index: 2;
}

.mcw-cta-section .mcw-cta-button-wrapper::before {
    content: "";
    background-image: url('../images/button-bg.webp');
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    opacity: 0;
    transition: all .2s ease-out;
    border-radius: 100px;
}

.mcw-cta-section .mcw-cta-button-wrapper:hover::before {
    opacity: 1;
    transition: all .2s ease-out;
}

.mcw-cta-section .mcw-cta-button-wrapper:hover svg path {
    fill: #fff;
    transition: all .2s ease-out;
}

.mcw-cta-section .mcw-cta-button-wrapper:hover .mcw-cta-button {
    color: #fff !important;
    transition: all .2s ease-out;
}

@media (max-width: 1366px) {
    .mcw-cta-section .cta-title {
        font-size: 32px;
        line-height: 38px;
    }

    .mcw-cta-section .cta-description {
        font-size: 17px;
        line-height: 25px;
    }
}

@media (max-width: 1024px) {
    .mcw-cta-section .cta-image {
        display: none;
    }

    .mcw-cta-section .cta-wrapper::before {
        background-image: url("../images/cta-bg-dots.webp") !important;
        background-position: bottom left !important;
        background-size: 90% 60%;
    }

    .mcw-cta-section .cta-wrapper {
        padding: 40px;
        width: 100% !important;
    }

    .mcw-cta-section .cta-content {
        width: 100% !important;
    }
}

@media (max-width: 767px) {
    .mcw-cta-section .cta-wrapper {
        padding: 30px;
    }

    .mcw-cta-section .cta-content {
        text-align: center;
        align-items: center;
    }

    .mcw-cta-section .mcw-cta-button {
        padding: 22px 40px;
        gap: 10px;
    }

    .mcw-cta-section .mcw-cta-button-wrapper {
        width: 100%;
    }

    .mcw-cta-section .cta-wrapper::before {
        background-size: 718px 238px !important;
        background-position-x: 0% !important;
        background-position-y: 80% !important;
    }

    .mcw-cta-section .cta-description {
        font-size: 16px;
        line-height: 23px;
    }
}