@-webkit-keyframes video_animation {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
    opacity: 0;
  }
}
@keyframes video_animation {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
    opacity: 0;
  }
}

.header_slider_item {
  position: relative;
  z-index: 1;
}
.header_slider_item::before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  top: 0;
  inset-inline-end: 50%;
  inset-inline-start: auto;
  background: rgba(22, 34, 45, 0.6);
  -webkit-filter: blur(100px);
  filter: blur(100px);
  z-index: 1;
}

.header_slider > .swiper-pagination-bullets {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  gap: 1rem;
  height: auto;
  color: white;
  opacity: 1;
  background: none;
  inset-inline-start: 75%;
  bottom: 50px;
  width: auto;
  inset-inline-end: auto;
}
.header_slider .swiper-pagination-bullet {
  position: relative;
  display: inline-block;
  width: 20px;
  height: auto;
  opacity: 1;
  border: none;
  border-radius: 0;
  margin: 0 !important;
  background-color: transparent;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  text-align: end;
}
.header_slider .swiper-pagination-bullet:before {
  position: absolute;
  content: '';
  width: 0px;
  height: 1px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 20px;
  z-index: 1;
  background-color: #ffffff;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.header_slider .swiper-pagination-bullet-active {
  width: 120px;
}
.header_slider .swiper-pagination-bullet-active:before {
  width: 100px;
}

.header_slider .transform-left {
  position: relative;
  -webkit-transition: 1s cubic-bezier(0.5, 0.5, 0, 1);
  -o-transition: 1s cubic-bezier(0.5, 0.5, 0, 1);
  transition: 1s cubic-bezier(0.5, 0.5, 0, 1);
  -webkit-transition-delay: 1s;
  -o-transition-delay: 1s;
  transition-delay: 1s;
  -webkit-clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
  clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
}

.header_slider .swiper-slide-active .transform-left {
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.header_slider .transform-center {
  opacity: 0;
  -webkit-transition: opacity 1000ms ease 1s, -webkit-transform 1000ms ease 1s;
  transition: opacity 1000ms ease 1s, -webkit-transform 1000ms ease 1s;
  -o-transition: opacity 1000ms ease 1s, transform 1000ms ease 1s;
  transition: opacity 1000ms ease 1s, transform 1000ms ease 1s;
  transition: opacity 1000ms ease 1s, transform 1000ms ease 1s,
    -webkit-transform 1000ms ease 1s;
  -webkit-transform: scale(0.7);
  -ms-transform: scale(0.7);
  transform: scale(0.7);
}
.header_slider .swiper-slide-active .transform-center {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}



.Article_all_design::before {
  content: '';
  position: absolute;
  width: 30px;
  height: 60px;
  inset-inline-end: 0;
  top: 0;
  border: 1px solid #404040;
}

.Article_all_design::after {
  content: '';
  position: absolute;
  width: 60px;
  height: 30px;
  inset-inline-end: 0;
  top: 0;
  border: 1px solid #404040;
}

.swiper-wrapper.marquee-swiper {
  -webkit-transition-timing-function: linear;
  -o-transition-timing-function: linear;
  transition-timing-function: linear;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

/* Individual slides */
.swiper-slide.marquee-swiper {
  width: auto !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.video-one-bg {
  background-image: url(../../Image/design/video-bg-01.jpg);
  background-position: center center;
  background-size: cover;
  
}
.play_video_btn {
  background-color: #ffffff2e;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}

.play_video_btn::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: inherit;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  -webkit-animation: video_animation 2.5s ease infinite;
  animation: video_animation 2.5s ease infinite;
}

.group_slide_img .slide_img {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.8s ease;
}

.group_slide_img .slide_img.active {
  opacity: 1;
  pointer-events: auto;
}

.number_design::after {
  content: '';
  position: absolute;
  width: 1px;
  height: 100%;
  background-color: #969696;
  left: 50%;
  margin-top: 25px;
}

.item_slide.active {
  color: var(--theme-primary);
}

.item_slide.active .number_design::after {
  background-color: var(--theme-primary);
}

@media (max-width: 48rem) {
  .support_cart_article {
    width: 100%;
  }
}

@media (min-width: 48rem) and (max-width: 64rem) {
  .support_cart_article {
    width: 50%;
    margin-left: calc(50% - 10px);
  }

  .pbmit-contentbox {
    width: auto;
    -webkit-box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.08);
    box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.08);
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: 0.75s ease-in !important;
    -o-transition: 0.75s ease-in !important;
    transition: 0.75s ease-in !important;
  }
}

@media (max-width: 64rem) {
  .swiper-pagination {
    display: none !important;
  }

  .header_slider_item::before {
    inset-inline-end: 30%;
  }
}

@media (min-width: 64rem) {
  .support_cart_article {
    width: calc(25% - 17px);
    -webkit-transition: 0.7s;
    -o-transition: 0.7s;
    transition: 0.7s;
  }
  .support_cart_article.active {
    margin-left: calc(25% - 10px);
    -webkit-transition: 0.9s;
    -o-transition: 0.9s;
    transition: 0.9s;
  }
  .pbmit-contentbox {
    width: auto;
    -webkit-box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.08);
    box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.08);
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: 0.75s ease-in !important;
    -o-transition: 0.75s ease-in !important;
    transition: 0.75s ease-in !important;
  }
    .support_cart_article.active .pbmit-contentbox {
    opacity: 1;
    visibility: visible;
    -webkit-transition: 0.35s;
    -o-transition: 0.35s;
    transition: 0.35s;
  }
}

