/* CTA Section */
section.technologies-cta-section {
    background: radial-gradient(80% 80% at 50% 50%, rgba(212, 119, 79, 0.1) 0%, rgba(212, 119, 79, 0) 60%), radial-gradient(60% 50% at 0% 0%, rgba(74, 121, 152, 0.12) 0%, rgba(74, 121, 152, 0) 50%), radial-gradient(60% 50% at 100% 100%, rgba(74, 121, 152, 0.12) 0%, rgba(74, 121, 152, 0) 50%), linear-gradient(125.91deg, #0D2233 0%, #152F3D 50%, #0D2233 100%);
}

.technologies-cta-section .container {
    align-items: center;
    justify-content: center;
    gap: 18px;
    text-align: center;
}

.technologies-cta-section .cta-logo {
    max-width: 240px;
}

.technologies-cta-section h2 {
    font-size: 52px;
    line-height: 56px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--white);
    margin-top: 22px;
}

.technologies-cta-section .section-description {
    max-width: 454px;
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    color: var(--jagged-ice);
}

.technologies-cta-section .cta-container {
    gap: 24px;
    margin-top: 22px;
    justify-content: center;
}

@media only screen and (max-width: 768px) {
    .technologies-cta-section .container {
            gap: 14px;
    }

    .technologies-cta-section h2 {
        font-size: 28px;
        line-height: 30px;
        text-transform: unset;
        margin-top: 8px;
    }

    .technologies-cta-section .section-description {
        font-size: 14px;
        line-height: 22px;
    }

    .technologies-cta-section .cta-container {
        flex-direction: column;
        gap: 10px;
        margin-top: 14px;
    }
}