/* ***** CTA PANEL ***** */

.cta-panel.panel {
    padding-top: 8vh;
    padding-bottom: 17vh;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-size: 100%;
    position: relative;
    overflow: hidden;
}
.cta-panel > * {
    position: relative;
    z-index: 5;
}
.cta-panel p, .cta-panel h2 {
    color: #FFF;
}
.cta-panel.blue {
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    background-image: url('https://www.saasacademy.com/hubfs/SaaS%20Academy%202024%20Website/images/cta-gradient-background-2.jpg'); */
}
.cta-panel.blue:after {
    content: '';
    width: 100%;
    height: 24vw;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 11;
    background: rgb(0,0,0);
    background: -moz-linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
    background: -webkit-linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
    background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#000000",GradientType=1);
    z-index: 1;
} 
.cta-panel.purple {
    background: rgb(61,27,99);
    background-image: none;
    background: -moz-linear-gradient(180deg, rgba(61,27,99,1) 0%, rgba(0,0,0,1) 100%);
    background: -webkit-linear-gradient(180deg, rgba(61,27,99,1) 0%, rgba(0,0,0,1) 100%);
    background: linear-gradient(180deg, rgba(61,27,99,1) 0%, rgba(0,0,0,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#3d1b63",endColorstr="#000000",GradientType=1); 
}
.cta-panel.purple:after {
    content: '';
    position: absolute;
    top: -34vh;
    left: 50vh;
    right: auto;
    margin: 0 auto;
    z-index: 4;
    width: 800px;
    height: 800px;
    border-radius: 400px;
    background: rgb(116,23,114);
    background: -moz-radial-gradient(circle, rgba(116,23,114,1) 0%, rgba(116,23,114,0) 60%);
    background: -webkit-radial-gradient(circle, rgba(116,23,114,1) 0%, rgba(116,23,114,0) 60%);
    background: radial-gradient(circle, rgba(116,23,114,1) 0%, rgba(116,23,114,0) 60%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#741772",endColorstr="#741772",GradientType=1);
}
