.home-banner {
  overflow: hidden;
}
.home-banner .page-center{
  padding: 0rem 15px;
  position: relative;
}
.home-banner .cb-slideshow {
  padding-bottom: 1rem;
  margin: 0;
}
.home-banner {
  background-size: cover;
  height: 500px;
}
.home-banner .banner-text {
  padding-top: 50px;
  max-width: 770px;
}
.home-banner .cb-slideshow li {
  list-style-type: none;
}
.home-banner .cb-slideshow li span {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  color: transparent;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: none;
  opacity: 0;
  z-index: 0;
  -webkit-backface-visibility: hidden;
  -webkit-animation: imageAnimation 24s linear infinite 0s;
  -moz-animation: imageAnimation 24s linear infinite 0s;
  -o-animation: imageAnimation 24s linear infinite 0s;
  -ms-animation: imageAnimation 24s linear infinite 0s;
  animation: imageAnimation 24s linear infinite 0s;
}
.home-banner .cb-slideshow li:nth-child(2) span {
  -webkit-animation-delay: 6s;
  -moz-animation-delay: 6s;
  -o-animation-delay: 6s;
  -ms-animation-delay: 6s;
  animation-delay: 6s;
}
.home-banner .cb-slideshow li:nth-child(3) span {
  -webkit-animation-delay: 12s;
  -moz-animation-delay: 12s;
  -o-animation-delay: 12s;
  -ms-animation-delay: 12s;
  animation-delay: 12s;
}
.home-banner .cb-slideshow li:nth-child(4) span {
  -webkit-animation-delay: 18s;
  -moz-animation-delay: 18s;
  -o-animation-delay: 18s;
  -ms-animation-delay: 18s;
  animation-delay: 18s;
}
/* Animation for the slideshow images */
@-webkit-keyframes imageAnimation { 
  0% { opacity: 0;
    -webkit-animation-timing-function: ease-in; }
  13% { opacity: 1;
    -webkit-animation-timing-function: ease-out; }
  25% { opacity: 1 }
  33% { opacity: 0 }
  100% { opacity: 0 }
}
@-moz-keyframes imageAnimation { 
  0% { opacity: 0;
    -moz-animation-timing-function: ease-in; }
  13% { opacity: 1;
    -moz-animation-timing-function: ease-out; }
  25% { opacity: 1 }
  33% { opacity: 0 }
  100% { opacity: 0 }
}
@-o-keyframes imageAnimation { 
  0% { opacity: 0;
    -o-animation-timing-function: ease-in; }
  13% { opacity: 1;
    -o-animation-timing-function: ease-out; }
  25% { opacity: 1 }
  33% { opacity: 0 }
  100% { opacity: 0 }
}
@-ms-keyframes imageAnimation { 
  0% { opacity: 0;
    -ms-animation-timing-function: ease-in; }
  13% { opacity: 1;
    -ms-animation-timing-function: ease-out; }
  25% { opacity: 1 }
  33% { opacity: 0 }
  100% { opacity: 0 }
}
@keyframes imageAnimation { 
  0% { opacity: 0;
    animation-timing-function: ease-in; }
  13% { opacity: 1;
    animation-timing-function: ease-out; }
  25% { opacity: 1 }
  33% { opacity: 0 }
  100% { opacity: 0 }
}

.home-banner .banner-text h1,
.home-banner .banner-text h4{
  color: #fff;
}
.home-banner .banner-text h1 {
  margin-bottom: 16px;
}
.home-banner-wrapper:after {
  content: '';

  background-size: contain;
  display: block;
  height: 98px;
  margin-top: -97px;
}
@media (min-width: 768px) {
  .home-banner {
    background: #5B4B9F;
    height: 720px;
    position: relative;
  }
  .home-banner .banner-text {
    padding-top: 180px;
  }
  .home-banner-wrapper:after {
    height: 250px;
    margin-top: -180px;
    background-size: contain !important;
    position: relative; 
  }
}
@media (min-width: 992px) {
  .home-banner .banner-text h1 {
    font-size: 65px;  
    color: #fff;
  }
  .home-banner .banner-text h4 {
    color: #fff;
  }
}
@media (min-width: 1200px) {
  .home-banner-wrapper:after {
    margin-top: -140px;
  }
}
@media (min-width: 1920px) {
  .home-banner-wrapper:after {
    background-size: cover !important;
    height: 350px;
    margin-top: -76px;
  }
}
@media (max-width: 767px) {
  .home-banner .cb-slideshow {
    display: none;
  }
  .home-banner .page-center {
    padding: 0 15px;
  }
}