.cta-image {
   padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-image .image-desktop {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
    object-fit: cover;
}

.cta-image .image-mobile {
    display: none;
}

.cta-image .h2{
    color: #1B1C1D;
    margin-bottom: 16px;
}

.cta-image .subtitle-medium {
    color: var(--n-dark-grey);
    margin-bottom: 40px;
}

@media (max-width: 1919px) {
    .cta-image {
        padding: 80px 0;
    }
}

@media (max-width: 1439px) {
    .cta-image {
        padding: 60px 0;
    }

    .cta-image .subtitle-medium {
        margin-bottom: 32px;
    }
}

@media (max-width: 1279px) {
    .cta-image .image-mobile{
      position: absolute;
        width: 100%;
        height: 100%;
        margin: 0 -40px;
        display: block;
        z-index: -1;
        top: 0;
        object-fit: cover;
        object-position: top center;
    }


    .cta-image .image-desktop{
        display: none;
    }

    .cta-image {
        padding-top: 400px;
        text-align: center;
    }

  
}

@media (max-width: 577px) {
    .cta-image .image-mobile{
        width: calc(100% + 32px);

    }

}