.solution-banner{
    position: relative;
    padding: 60px 0px 80px 0px;
    z-index: 1;
    background-repeat: no-repeat;
    background-size: cover;
    margin-bottom: 80px;
}
.solution-banner .row{
    align-items: center;
}
.solution-banner:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: linear-gradient(90deg, rgba(26, 66, 81, 0.90) 51.42%, rgba(26, 66, 81, 0.00) 100%);
    backdrop-filter: blur(12px);
    z-index: -1;
}

.solution-banner-left *{
    color: #fff;
}

.solution-banner-left{
    width: 45%;
    padding: 0px 15px;
}
.solution-banner-left h3{
    font-size: 32px;
    line-height: 48px;
}
.solution-banner-left h3 span{
    color: var(--secondary-color);
}
.solution-banner-right{
    width: 55%;
    padding: 0px 15px;
}

.solution-banner-image img{
    border: 1px solid #5EC5EA;
    border-radius: 16px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media only screen and (max-width:1399px){
    
}
@media only screen and (max-width:1199px){
    .solution-banner-left {
        width: 50%;
    }
    .solution-banner-right {
        width: 50%;
    }
}
@media only screen and (max-width:991px){
    .solution-banner-left {
        width: 100%;
    }
    .solution-banner-right {
        width: 100%;
        margin-top: 40px;
    }
    .solution-banner {
        padding: 60px 0px 60px 0px;
        margin-bottom: 60px;
    }
  
}
@media only screen and (max-width:767px){
    .solution-banner {
        padding: 40px 0px 40px 0px;
        margin-bottom: 40px;
    }
   
}