.banner-content h2{
    position: relative;
    color: white !important;
    z-index: 1;
}
.background{
    overflow: hidden;
    position: relative;
    height: 200px;
}
.banner-content{
    justify-items: center;
    width: max-content;
    margin: auto;
    align-items: center;
}
.paralax{
  width: 100%;
  transition: all 4s cubic-bezier(0, 0, 0, 1)
}
.background-icons{
    overflow: hidden;
    position: absolute;
 /* 
  animation: slide 240s linear infinite, v-slide 50s linear infinite; */
}
.background-icons i{
    z-index: 0;
    font-size: 1.5rem;
    color: #32809e;
    position: absolute;
    
}

@keyframes spin {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }

  
@keyframes slide {
    0% {
      left: -100%;
    }
    50%{
        left: 0%;
    }
    100% {
        left: -100%;
    }
  }
    
@keyframes v-slide {
    0% {
      top: -50%;
    }
    50%{
        top: 0%;
    }
    100% {
        top: -50%;
    }
  }
  
  
 

        .case-studies-carousel{
        box-shadow: none !important;
    }
