.hero-slider .swiper-slide .slide-inner .slide-bx {
  position: relative;
  height: 100%;
}
.hero-slider .swiper-slide .slide-inner .slide-bx .line {
  content: "";
  display: flex;
  width: 70%;
  height: 45%;
  left: 15%;
  top: 35%;
  position: absolute;
  border: 12px solid rgba(255, 255, 255, 0.5);
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  z-index: 8;
  transform: translate(-20%, -30%);
  text-align: center;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.hero-slider .swiper-slide .slide-inner .slide-bx .line2 {
  content: "";
  display: inline-block;
  width: 100%;
  height: 45%;
  right: 15%;
  top: 35%;
  position: absolute;
  border: 12px solid rgba(255, 255, 255, 0.5);
  -webkit-clip-path: polygon(88% 0%, 1000% 0, 100% 100%, 43% 100%);
  clip-path: polygon(88% 0%, 1000% 0, 100% 100%, 43% 100%);
  z-index: 10;
}
.hero-slider .swiper-slide .slide-inner .slide-bx .image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100% !important;
  z-index: 9;
  background-size: 65% !important;
}
.hero-slider .swiper-slide .slide-inner .slide-bx .slide-title, .hero-slider .swiper-slide .slide-inner .slide-bx .slide-btns {
  z-index: 11;
}
.hero-slider .swiper-slide .svg-wrapper {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  margin: 0 auto;
  width: 500px;
}
.hero-slider .swiper-slide .shape1,
.hero-slider .swiper-slide .shape2 {
  stroke-dasharray: 1120;
  stroke-width: 20px;
  fill: transparent;
  stroke: #19f6e8;
  border-bottom: 10px solid black;
  transition-timing-function: linear;
  transition: stroke-dashoffset 8s, stroke-dasharray 8s;
}
.hero-slider .swiper-slide .shape1, .hero-slider .swiper-slide .shape1.animate__ombtnOut {
  stroke-dashoffset: 1120;
}
.hero-slider .swiper-slide .shape2, .hero-slider .swiper-slide .shape2.animate__ombtnOut {
  stroke-dashoffset: -1120;
}
.hero-slider .swiper-slide .text {
  font-family: "Roboto Condensed";
  font-size: 22px;
  line-height: 32px;
  letter-spacing: 8px;
  color: #fff;
  top: -48px;
  position: relative;
}
.hero-slider .swiper-slide .svg-wrapper.animate__ombtn .shape1,
.hero-slider .swiper-slide .svg-wrapper.animate__ombtn .shape2 {
  stroke-dashoffset: 0;
  stroke-dasharray: 1120;
}

.swiper-slide {
  position: relative;
}

.border-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid transparent;
  animation: slideBorder 4s linear forwards;
}

@keyframes slideBorder {
  0% {
    width: 0;
    height: 0;
    border-color: transparent;
  }
  25% {
    width: 100%;
    height: 0;
    border-color: transparent;
  }
  50% {
    width: 100%;
    height: 100%;
    border-color: transparent;
  }
  75% {
    width: 0;
    height: 100%;
    border-color: transparent;
  }
  100% {
    width: 0;
    height: 0;
    border-color: transparent;
  }
}
.border-animation.active {
  animation: none;
  border-color: red; /* Change to your desired border color */
}

@media (min-width: 1400px) and (max-width: 1499px) {
  .hero-slider .swiper-slide .slide-inner .slide-bx .line2 {
    height: 40%;
    right: 9%;
    top: 35%;
  }
  .hero-slider .swiper-slide .slide-inner .slide-bx .image {
    background-size: 80% !important;
  }
}
@media (min-width: 1600px) and (max-width: 1699px) {
  .hero-slider .swiper-slide .slide-inner .slide-bx .line {
    height: 38%;
    left: 10%;
    top: 35%;
  }
  .hero-slider .swiper-slide .slide-inner .slide-bx .image {
    background-size: 80% !important;
  }
}
@keyframes fadeInIn {
  0% {
    opacity: 0;
    transform: scale(3);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.animate__fadeInIn {
  animation-name: fadeInIn;
}
@keyframes fadeOutOut {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  to {
    opacity: 0;
    transform: scale(3);
  }
}
.animate__fadeOutOut {
  animation-name: fadeOutOut;
}/*# sourceMappingURL=animateStyle.css.map */