.services-banner-block {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    min-height: 412px;
}

.banner-img-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}




.services-banner-block .small-title {
    display: inline-block;
    margin-bottom: 16px;
    position: relative;
    padding-bottom: 6px;
    color: #000;
    text-align: center;
    font-size: 19px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px; 
}

.services-banner-block .small-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(131deg, #544FF8 70.42%, #2EB6AE 102.7%);
}

.services-banner-block .main-headline {
   color: #000;
    text-align: center;
    font-size: 48px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    letter-spacing: 2px;
}

.services-banner-block .paragraph {
    color: #000;
    text-align: center;
    font-size: 19px !important;
    font-style: normal;
    font-weight: 400;
    line-height: 26px !important;
    margin: 16px 0 0 0;
}

.services-banner-block .cta-button {
    align-items: center;
    justify-content: center;
    text-decoration: none;
    display: inline-flex;
    padding: 10px 20px;
    gap: 12px;
    border-radius: 12px;
    background: #242424;
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 160%; 
    margin-top: 32px;
}

.services-banner-block .cta-button:hover {
    background: linear-gradient(131deg, #544FF8 70.42%, #2EB6AE 102.7%);
}

.services-banner-block .cta-button img {
    width: 10px;
    height: 10px; 

}
.services-banner-block .cta-button:hover img{
    transform: scale(1.2);
}



/* Breakpoints */
@media (max-width: 991.98px) { 
    .services-banner-block .main-headline {
        font-size: 44px;
    }
     .services-banner-block .paragraph{
         font-size: 18px;
    }

     .services-banner-block .small-title {
        font-size: 18px;
    }
}
@media (max-width: 767.98px) {
    .services-banner-block .paragraph{
         font-size: 14px !important;
    }
    .services-banner-block .paragraph br
    {
        display: none;
    }
    .services-banner-block .main-headline {
        font-size: 40px;
    }
    .services-banner-block {
        min-height: 412px;
    }
   
    .services-banner-block .cta-button{
        font-size: 14px;
    }
}

