/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

.cta {
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.cta__bg {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0.4;
    mix-blend-mode: multiply; 
    -o-object-position: right; 
       object-position: right;    
}

.cta__bg--overlay {
    opacity: 1;
}

.cta__custom_bg{
    display: block;
    width: 100%;
    height: 100%;    
    position: absolute;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, rgba(7,11,151,1)),to(rgba(4,149,241,1)));
    background: -o-linear-gradient(top, rgba(7,11,151,1) 10%,rgba(4,149,241,1) 100%);
    background: linear-gradient(180deg, rgba(7,11,151,1) 10%,rgba(4,149,241,1) 100%);
    opacity: 0.95;
    z-index: -1;
}

.cta__custom_bg::after{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.8;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, rgba(7,11,151,0.2)),to(rgba(4,149,241,1)));
    background: -o-linear-gradient(top, rgba(7,11,151,0.2) 60%,rgba(4,149,241,1) 100%);
    background: linear-gradient(180deg, rgba(7,11,151,0.2) 60%,rgba(4,149,241,1) 100%);
    
}

.cta__wrapper {
    position: relative;
    z-index: 1;
    color: #fff;
    padding: 136px 0;
    text-align: center;
}

.cta__wrapper::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%) scale(0.5);
        -ms-transform: translate(-50%, -50%) scale(0.5);
            transform: translate(-50%, -50%) scale(0.5);
    width: 632px;
    height: 632px;
    border-radius: 50%;
    background: -o-linear-gradient(315deg,  rgba(4,70,241,1) 0%,rgba(130,204,250,1) 100%);
    background: linear-gradient(135deg,  rgba(4,70,241,1) 0%,rgba(130,204,250,1) 100%); 
    z-index: -1;
    opacity: 0.65;
    transition: all ease 600ms;
}

.cta__wrapper.animate::after {
    transform: translate(-50%, -50%) scale(1);
}

.cta__text .sub-heading,
.cta__text h2 {
    color: #fff;
}

.cta__text .sub-heading::before {
    color: #82CCFA;
}

@media (min-width: 768px) {
    .cta__bg {
        -o-object-position: center;
           object-position: center;
    }
    
    .cta__bg--overlay {
        opacity: 1;
        -o-object-position: center;
           object-position: center;
    }

    .cta__wrapper {
        padding: 70px 0;
    }
    
    .cta__wrapper::after {
        width: 664px;
        height: 664px;
    }

    .cta__text {
        margin: 0 auto;
        max-width: 548px;
    }

    .cta__custom_bg{
        display: block;
        width: 100%;
        height: 100%;        
        position: absolute;
        background: -o-linear-gradient(45deg, rgba(7,11,151,1) 10%,rgba(4,149,241,1) 100%);
        background: linear-gradient(45deg, rgba(7,11,151,1) 10%,rgba(4,149,241,1) 100%);
        opacity: 0.95;
        z-index: -1;
    }

    .cta__custom_bg::after{
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        opacity: 0.8;
        background: -o-linear-gradient(45deg, rgba(7,11,151,0.2) 60%,rgba(4,149,241,1) 100%);
        background: linear-gradient(45deg, rgba(7,11,151,0.2) 60%,rgba(4,149,241,1) 100%);
        
    }

}

@media (min-width: 1200px) {
    .cta__bg {
        -o-object-position: center;
           object-position: center;
    }
    
    .cta__bg--overlay {
        opacity: 1;
        -o-object-position: center;
           object-position: center;
    }

    .cta__wrapper {
        padding: 95px 0;
    }
    
    .cta__wrapper::after {
        width: 832px;
        height: 832px;
    }

    .cta__text {
        margin: 0 auto;
        max-width: 616px;
    }

}



