section.cta-section {
    position: relative;
    z-index: 1;
    margin: 3em 0;
    .section-bg {
        object-fit: cover;
        object-position: center center;
        min-height: 380px;
        @include medium-devices() {
            height: auto;
        }
    }
    .cta-content-wrapper {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        width: 100%;
        .inner-container {
            .cta-heading {
                .heading {
                    color: #FFF;
                    font-size: 2.5rem;
                    @include large-devices() {
                        font-weight: 600;
                        font-size: 38px;
                        line-height: 46px;
                    }
                }
            }
        }
    }
}