.home-banner {
  position: relative;
  background: url(../../assets/resources/bg/slider-bg.jpg);
  background-size: cover;
  min-height: 400px;
  padding: 70px 0px 0px 0px;
  overflow: hidden;
  margin-top: -84px;
}

.slider-bg-animation {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  width: 60%;
  height: 100vh;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  max-height: 100vh;
  overflow: hidden;
}

.banner-left-column{
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.banner-image-wrapper{
  padding: 20px;
  position: relative;
}
.banner-image-wrapper::before,.banner-image-wrapper::after{
  content: '';
  position: absolute;
  background-color: var(--bs-orange);
  max-width: 330px;
  max-height: 330px;
  width: 50%;
  height: 50%;
  border-radius: 2px;
}
.banner-image-wrapper::before{
  left: 0;
  top: 0;
}
.banner-image-wrapper::after{
  right: 0;
  bottom: 0;
}
.banner-item-img{
  position: relative;
  z-index: 1;
  box-shadow: 0px 2px 10px 0px #010739;
  overflow: hidden;
}
.banner-item-img img{
  width: 100%;
  -webkit-animation: zoomin 30s ease;
  animation: zoomin 30s ease;
  animation-delay: 120ms;
  animation-fill-mode: forwards;
}
.banner-heading {
  font-family: "Lato", sans-serif;
  font-weight: bold;
  line-height: normal;
  color: var(--white);
  margin-bottom: 10px;
  text-transform: uppercase;
}
 
.banner-welcome-text{
  font-size:42px;
  font-family: 'Lato',sans-serif;
  font-style: normal;
  font-weight: 300;
  color:var(--white);
  letter-spacing: 1px;
  line-height: normal;
  margin-bottom: 30px;
  }
.banner-high-title {
  font-family: "Lato", sans-serif;
  font-weight: 300;
  color: var(--white);
}

.banner-desc {
  font-family: "Lato", sans-serif;
  font-weight: 300;
  color: var(--white);
  margin-top: 30px;
}

.owl-banner>.owl-dots {
  text-align: center;
}

.owl-banner>.owl-dots button {
  width: 10px;
  height: 10px;
  border-radius: 16px;
  background-color: #fff !important;
  margin-right: 8px;
  opacity: 0.3;
  margin-bottom: 10px;
}

.owl-banner>.owl-dots .owl-dot.active {
  opacity: 0.9;
}


.banner-content {
  position: relative;
  z-index: 2;
}

.banner-left {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 15px;
}

.banner-item {
  position: relative;
}
.banner-content .btn-orange-light:hover{
  background-color: var(--white);
  color: var(--primary);
}
/* Zoom in Keyframes */


@keyframes zoomin {
  0% { 
    transform: scale(1)
  }
  25% {
    transform: scale(1.02)
  }
  50% {
    transform: scale(1.05)
  }
  75% {
    transform: scale(1.08)
  }
  100% {
    transform: scale(1.10)
  }
} 

@media screen and (min-width:200px) {
  .banner-high-title {
    font-size: 20px;
  }

  .banner-high-title p {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 8px;
  }

  .banner-content {
    text-align: center;
  }

  .banner-heading {
    font-size: 24px;
  }

  .banner-desc {
    font-size: 18px;
  }
  .owl-banner-wrapper{
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

@media screen and (min-width:1025px) {
  .banner-high-title {
    font-size: 20px;
  }

  .banner-content {
    text-align: left;
  }

  .banner-heading {
    font-size: 46px;
  }

  .banner-desc {
    font-size: 24px;
  }
  .owl-banner-wrapper{
    padding-top: 80px;
    padding-bottom: 50px;
  }
}