.full-width-cta {
    position: relative;
    z-index: 2;
}

.full-width-cta::before {
    content: '';
    position: absolute;
    width: 148px;
    height: 21px;
    top: -1px;
    left: 0;
    background-color: #FFFFFF;
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
    z-index: 2;
}

.full-width-cta::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -1px;
    width: 148px;
    height: 20px;
    background: #EBEDF4;
    clip-path: polygon(12% 0%, 100% 0%, 100% 100%, 0% 100%);
    z-index: 1;
}

.bg-light-blue-top-siblings.full-width-cta::before {
    background: var(--c-light-blue);
}
.bg-blue-top-siblings.full-width-cta::before {
    background: var(--c-blue);
}
.bg-dark-blue-top-siblings.full-width-cta::before {
    background: var(--c-dark-blue);
}

.full-width-cta__bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.full-width-cta__wrap {
    position: relative;
    z-index: 1;
    color: #FFFFFF;
    background: rgba(7,14,43,0.6);
    padding: 60px 0;
}

.full-width-cta__wrap .btn-tertiary-blue {
    color: #FFFFFF;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.40) 0%, rgba(255, 255, 255, 0.40) 100%);
    background-position: 0 100%;
    background-repeat: repeat-x;
    background-size: 3px 2px;
    transition: background-size .0s;
    border-radius: 0;
    word-break: break-word;
    text-decoration: none;
}

.full-width-cta__wrap p a:not(.btn) {
    color: var(--white);
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.40) 0%, rgba(255, 255, 255, 0.40) 100%);
    background-position: 0 100%;
    background-repeat: repeat-x;
    background-size: 3px 2px;
    transition: background-size .0s;
    border-radius: 0;
    word-break: break-word;
    text-decoration: none;
}

.full-width-cta__wrap h2,
.full-width-cta__wrap h3,
.full-width-cta__wrap h4,
.full-width-cta__wrap h5,
.full-width-cta__wrap .sub-title,
.full-width-cta__wrap h5 {
    color: #FFFFFF;
}

.full-width-cta__wrap .btn-secondary {
    background: #FFFFFF;
    color: #394C93;
}

.full-width-cta__wrap .sub-title::before,
.full-width-cta__wrap h5::before {
    background: linear-gradient(to right,  rgba(255,255,255,1) 0%,rgba(255,255,255,0.75) 25%,rgba(255,255,255,0) 100%);
    opacity: 0.7;
}

.full-width-cta__wrap .text-center .sub-title::after,
.full-width-cta__wrap h5::after {
    background: linear-gradient(to right,  rgba(255,255,255,0) 0%,rgba(255,255,255,0.75) 100%); 
    opacity: 0.7;
}

.full-width-cta.inner-cta::after {
    background: #394C93;
}

.bg-light-blue-siblings.full-width-cta::after {
    background: var(--c-light-blue);
}
.bg-blue-siblings.full-width-cta::after {
    background: var(--c-blue);
}
.bg-dark-blue-siblings.full-width-cta::after {
    background: var(--c-dark-blue);
}

@media (min-width: 768px) {
    .full-width-cta__wrap {
        padding: 100px 0;
    }

    .full-width-cta::before {
        width: 550px;
        height: 30px;
        clip-path: polygon(0 0, 100% 0, 95% 100%, 0% 100%);
    }
    
    .full-width-cta::after {
        width: 550px;
        height: 30px;
        clip-path: polygon(5% 0%, 100% 0%, 100% 100%, 0% 100%);
    }
    
}

@media (min-width: 1200px) {

    .full-width-cta::before {
        width: 1400px;
        height: 40px;
        clip-path: polygon(0 0, 100% 0, 97% 100%, 0% 100%);
    }
    
    .full-width-cta::after {
        width: 1400px;
        height: 40px;
        clip-path: polygon(3% 0%, 100% 0%, 100% 100%, 0% 100%);
    }
    
    .full-width-cta__wrap {
        padding: 140px 0;
    }

    .full-width-cta__wrap h2 {
        padding-bottom: 25px;
    }

    .full-width-cta__wrap .btn-secondary:hover {
        background: #7582B4;
        color: #FFFFFF;
    }

    .full-width-cta__wrap p a:not(.btn):hover {
        background: linear-gradient(to bottom, rgba(255,255,255, 0.40) 0%, rgba(255,255,255, 0.40) 100%);
        background-repeat: repeat-x;
        background-size: 2px 30px;
        background-position: 0 100%;
        color: #ffffff;
        transition: background-size .3s;
    }

    .full-width-cta__wrap .btn-tertiary-blue:hover {
        color: #f2f6ff;
        background: transparent;
        border-color: rgba(237, 241, 255, 0.25);
    }

}


