.centered-footer-cta-section{
    position: relative;
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding-bottom: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
    overflow: hidden;
    background-image: var(--d-gradient);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.centered-footer-cta-section.with-radius{
    border-radius: 0 0 48px 48px;
}

.centered-footer-cta-section .cta-content{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 100%;
    max-width: 700px;
}

.centered-footer-cta-section .cta-content .main-h3{
    color: var(--d-white);
    text-align: center;
}

.centered-footer-cta-section .cta-content .main-h3 a{
    color: var(--light-blue);
    text-decoration: underline;
    transition: 0.2s;
}

@media (hover:hover){
    .centered-footer-cta-section .cta-content .main-h3 a:hover{
        color: var(--d-accent);
    }
}

.centered-footer-cta-section .cta-content .cta-subtitle{
    color: var(--d-light-grey);
    text-align: center;
    font-family: Manrope;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px; /* 133.333% */
}

.centered-footer-cta-section .line-with-dot{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.centered-footer-cta-section .line-with-dot .line{
    width: 1px;
    height: 120px;
    background: linear-gradient(180deg, rgba(157, 199, 255, 0) 0%, #9DC7FF 100%);
    margin-left: 1px;
}

.centered-footer-cta-section .line-with-dot .dot{
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #9CC7FE;
    position: relative;
    left: 0.5px;
}

.centered-footer-cta-section .left-image, 
.centered-footer-cta-section .right-image{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    aspect-ratio: 510 / 446;
    width: 510px;
    height: auto;
}

.centered-footer-cta-section .left-image{
    left: 0;
}

.centered-footer-cta-section .right-image{
    right: 0;
}

@media (max-width: 1919px) {
    .centered-footer-cta-section{
        padding-bottom: 100px;
    }

    .centered-footer-cta-section .cta-content{
        max-width: 560px;
    }

    .centered-footer-cta-section .cta-content .cta-subtitle{
        font-size: 20px;
    }

    .centered-footer-cta-section .line-with-dot .line{
        height: 80px;
    }

    .centered-footer-cta-section .left-image, 
    .centered-footer-cta-section .right-image{
        aspect-ratio: 366 / 320;
        width: 366px;
    }
}

@media (max-width: 1439px) {
    .centered-footer-cta-section{
        padding-bottom: 80px;
        gap: 40px;
    }

    .centered-footer-cta-section.with-radius{
        border-radius: 0 0 40px 40px;
    }

    .centered-footer-cta-section .cta-content{
        max-width: 520px;
    }

    .centered-footer-cta-section .line-with-dot .line{
        height: 60px;
    }

    .centered-footer-cta-section .left-image, 
    .centered-footer-cta-section .right-image{
        aspect-ratio: 320 / 280;
        width: 320px;
    }
}

@media (max-width: 1279px) {
    .centered-footer-cta-section{
        padding-bottom: 68px;
        gap: 32px;
    }

    .centered-footer-cta-section .cta-content{
        max-width: 520px;
    }

    .centered-footer-cta-section .left-image, 
    .centered-footer-cta-section .right-image{
        aspect-ratio: 274 / 240;
        width: 274px;
    }
}

@media (max-width: 1079px) {
    .centered-footer-cta-section{
        padding-bottom: 60px;
    }

    .centered-footer-cta-section.with-radius{
        border-radius: 0 0 32px 32px;
    }

    .centered-footer-cta-section .left-image, 
    .centered-footer-cta-section .right-image{
        display: none;
    }
}

@media (max-width: 577px) {
    .centered-footer-cta-section{
        padding: 0 20px 80px;
        gap: 40px;
    }

    .centered-footer-cta-section.with-radius{
        border-radius: 0 0 20px 20px;
    }

    .centered-footer-cta-section .cta-content{
        max-width: unset;
    }

    .centered-footer-cta-section .cta-content .cta-subtitle, 
    .centered-footer-cta-section .line-with-dot{
        display: none;
    }

    .centered-footer-cta-section .custom-button.white{
        background-color: var(--bright-blue);
        color: var(--n-white);
    }

    .centered-footer-cta-section .custom-button.white path{
        fill: var(--bright-blue);
    }

    .centered-footer-cta-section .custom-button.white rect,
    .centered-footer-cta-section .custom-button.white:active rect{
        fill: var(--n-white);
    }

    .centered-footer-cta-section .custom-button.white:active{
        background: var(--n-very-dark-accent);
        color: var(--n-white);
    }

    .centered-footer-cta-section .custom-button.white:active path{
        fill: var(--n-very-dark-accent);
    }
}