.image-slider .item {
  height: 100vh;
  position: relative;
}
.image-slider .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.image-slider .item .cover {
  padding: 75px 0;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: transparent;
  display: flex;
  align-items: center;
}
.image-slider .item .cover .header-content {
  position: relative;
  overflow: hidden;
}
.image-slider .item .cover .header-content .line {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  position: absolute;
  border: 9px solid #fff;
  -webkit-clip-path: polygon(0 0, 60% 0, 36% 100%, 0 100%);
  clip-path: polygon(0 0, 60% 0, 36% 100%, 0 100%);
}
.image-slider .item .cover .header-content h2 {
  font-weight: 300;
 /* font-size: 35px;*/
  color: #fff;
}
.image-slider .item .cover .header-content h1 {
  font-size: 56px;
  font-weight: 600;
  margin: 5px 0 20px;
  word-spacing: 3px;
  color: #fff;
}
.image-slider .item .cover .header-content h4 {
  font-size: 24px;
  font-weight: 300;
  line-height: 36px;
  color: #fff;
}
.image-slider .owl-item.active h1 {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInDown;
  animation-delay: 0.3s;
}
.image-slider .owl-item.active h2 {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInDown;
  animation-delay: 0.3s;
}
.image-slider .owl-item.active h4 {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInUp;
  animation-delay: 0.3s;
}
.image-slider .owl-item.active .transition-img {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInUp;
  animation-delay: 0.3s;
}
.image-slider .owl-item.active .transition-img-2 {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: bounceInRight;
  animation-delay: 0.3s;
}
.image-slider .owl-nav .owl-prev {
  position: absolute;
  left: 15px;
  top: 43%;
  opacity: 0;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  background: rgba(0, 0, 0, 0.5) !important;
  width: 40px;
  cursor: pointer;
  height: 40px;
  position: absolute;
  display: block;
  z-index: 1000;
  border-radius: 0;
}
.image-slider .owl-nav .owl-prev span {
  font-size: 1.6875rem;
  color: #fff;
}
.image-slider .owl-nav .owl-prev:focus {
  outline: 0;
}
.image-slider .owl-nav .owl-prev:hover {
  background: #000 !important;
}
.image-slider .owl-nav .owl-next {
  position: absolute;
  right: 15px;
  top: 43%;
  opacity: 0;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  background: rgba(0, 0, 0, 0.5) !important;
  width: 40px;
  cursor: pointer;
  height: 40px;
  position: absolute;
  display: block;
  z-index: 1000;
  border-radius: 0;
}
.image-slider .owl-nav .owl-next span {
  font-size: 1.6875rem;
  color: #fff;
}
.image-slider .owl-nav .owl-next:focus {
  outline: 0;
}
.image-slider .owl-nav .owl-next:hover {
  background: #000 !important;
}
.image-slider:hover .owl-prev {
  left: 0px;
  opacity: 1;
}
.image-slider:hover .owl-next {
  right: 0px;
  opacity: 1;
}
.image-slider .banner-item-img {
  width: 420px !important;
}

.image-slider .owl-dots {
  position: absolute;
  bottom: 50px;
    left: 95px;
}

.image-slider .owl-theme .owl-dots .owl-dot span {
  background: transparent;
  color: rgb(255 255 255 / 35%);
  position: relative;
  margin: 5px 12px;
  transition: 0.8s;
}
.image-slider .owl-theme .owl-dots .owl-dot span::before {
  content: '';
  height: 40px;
  width: 4px;
  background-color: transparent;
  position: absolute;
  bottom: -56px;
    left: 3px;
    border-top-right-radius: 20px;
    border-top-left-radius: 20px;
    transition: 0.8s;
}

.image-slider .owl-theme .owl-dots .active span::before {
  background-color: #FC5B0B;
}

.image-slider .owl-theme .owl-dots .active span {
  color: #FC5B0B;
}