.deployment_cta {
    display: flex;
    height: 670px;
}

.deployment_cta__left {
    background-color: #F3F8FF;
    padding: 28px 40px;
    border-radius: 20px;
    width: 49%;
    margin-right: 1%;
    position: relative;
    overflow: hidden;
}

.deployment_cta__right {
    background-color: #F3F8FF;
    padding: 28px 40px;
    border-radius: 20px;
    width: 49%;
    position: relative;
    overflow: hidden;
}

.deployment_cta_title {
    font-weight: 700;
    font-size: 32px;
    line-height: 1.1;
}

.deployment_cta_text {
    font-weight: 500;
    font-size: 16px;
}

.background_img_dep {
    position: absolute;
    bottom: -170px;
    transform: scale(1.15) rotate(5deg);
    left: -15px;
    mask-image: linear-gradient(black, transparent);
    z-index: 1;
}

.background_img_dep_2 {
    position: absolute;
    bottom: -40%;
    transform: scale(0.9);
    left: -35px;
    mask-image: linear-gradient(black, transparent);
    z-index: 1;
}

.button-space {
    position: absolute;
    width: 90%;
    z-index: 1;
    bottom: 20px;
}

.deployment_cta_button {
    width: 70%;
}

.pink_button {
    background-color: #E70491;
    color: white !important;
    padding: 15px 20px;
    border-radius: 10px;
    width: 100%;
    height: 50px;
    justify-content: center;
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
}

.white_button {
    background-color: #F3F8FF;
    color: #0075FF !important;
    padding: 15px 20px;
    border-radius: 10px;
    height: 50px;
    width: 100%;
    justify-content: center;
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 700;
    border: 1px solid #0075FF;
    text-decoration: none;
}

@media (max-width: 767px) {
    .deployment_cta {
        flex-direction: column;
        height: auto;
        gap: 15px;
        padding: 0 15px;
    }

    .deployment_cta__left,
    .deployment_cta__right {
        width: 100% !important;
        padding: 30px 20px;
        min-height: 380px;
        margin-right: 0 !important;
        border-radius: 15px;
        display: flex;
        flex-direction: column;
    }

    .deployment_cta_title {
        font-size: 24px;
        line-height: 1.2;
        margin-bottom: 10px;
    }

    .deployment_cta_text {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 20px;
    }

    .background_img_dep,
    .background_img_dep_2 {
        opacity: 0.2;
        bottom: -20px;
        left: 0;
        transform: scale(1);
    }

    .button-space {
        position: relative;
        bottom: auto;
        width: 100%;
        margin-top: auto;
    }

    .pink_button,
    .white_button {
        height: 55px;
        font-size: 15px;
    }
}