/** Star Vertical Card Section CSS Property **/
.vertical-scrolling-cards {
  padding: var(--padding-tb-small) 0;
}

.vertical-scrolling-cards .vertical-cards-wrapper {
  margin-bottom: 30px;
  transform: none !important;
}

.vertical-scrolling-cards .vertical-card {
  border-radius: 20px;
  z-index: 1;
  overflow: hidden;
  transition: transform 0.5s ease-out;
}

/* .vertical-scrolling-cards .vertical-card figure {
  height: 450px;
} */

.vertical-scrolling-cards .vertical-card figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.vertical-scrolling-cards .vertical-cards {
  list-style: none;
}

.vertical-scrolling-cards .card-content-box {
  padding: 10px 10px 60px 60px;
}

.vertical-scrolling-cards .vertical-cards h3 {
  margin-bottom: 1px solid var(--dark-color);
}

.vertical-scrolling-cards .vertical-cards h3 {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 0.6px solid var(--dark-color);
}

.vertical-scrolling-cards .cards-dots {
  display: flex;
  column-gap: 20px;
  align-items: center;
}

.vertical-scrolling-cards .cards-dots li {
  color: var(--dark-color);
}

.vertical-scrolling-cards .cards-dots li:not(.cards-dots .active) {
  font-size: 30px;
}

.vertical-scrolling-cards .vertical-cards-wrapper>a {
  position: absolute;
  inset: 0;
}

.vertical-scrolling-cards figure {
  text-align: right;
}

.vertical-scrolling-cards .pin-spacer {
  margin-bottom: 30px !important;
}

@media only screen and (max-width: 991px) {
  .vertical-scrolling-cards .card-content-box {
    padding: 60px;
    padding-bottom: 0;
  }

  .vertical-scrolling-cards figure {
    width: 40%;
    margin-left: auto;
  }
}

@media only screen and (max-width: 576px) {
  .vertical-scrolling-cards .card-content-box {
    padding: 30px;
    padding-bottom: 0;
  }

  .vertical-scrolling-cards figure {
    width: 50%;
  }
}

/** End Vertical Cars Section CSS Property **/

/** Start Vertical Slider CSS Property **/
.vertical-slider {
  padding: var(--padding-tb-medium) 0;
}

/* .vertical-slider .slider-item {
    position: relative;
  } */
.vertical-slider .slider-item a {
  position: absolute;
  inset: 0;
}

.vertical-slider .slider-title h3 {
  color: var(--royal-blue-color);
}

.vertical-slider .slider-image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
}

.vertical-slider .slider-list {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  overflow: hidden;
}

.vertical-slider .slider-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.vertical-slider .slider-item.active {
  opacity: 1;
}

.vertical-slider .pagination {
  display: flex;
  justify-content: center;
  column-gap: 10px;
  margin-top: 30px;
}

.vertical-slider .pagination-btn {
  width: 20px;
  height: 20px;
  text-align: center;
  color: var(--dark-color);
}

.vertical-slider .pagination-btn:before {
  content: "\2022";
  font-size: var(--large-text);
}

.vertical-slider .pagination-btn.active:before {
  content: attr(data-index);
  font-size: var(--body-text);
}

.vertical-slider .slider-meta {
  position: relative;
  margin-top: 20px;
}

.vertical-slider .slider-item.active .slider-meta:before,
.vertical-slider .slider-item.active .slider-meta:after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: var(--plum-color);
  position: absolute;
  left: 0;
  bottom: 0;
  /* transition: opacity 0.5s ease; */
}

/* .vertical-progress-bar {
    position: relative;
  }
  .progress-bar-line {
    position: absolute;
    bottom: 10px;
    left: 0;
    height: 3px;
    background-color: var(--royal-blue-color);
    width: 0%;
    transition: width 0.5s ease;
    z-index: 10;
  }
  .progress-bar-line {
    position: absolute;
    bottom: 10px;
    left: 0;
    height: 3px;
    background-color: var(--royal-blue-color);
    width: 100%;
    transition: width 0.5s ease;
    z-index: 10;
  } */
.vertical-slider .slider-item.active .slider-meta:after {
  background: var(--royal-blue-color);
  animation: linewidth 5s infinite;
}

@keyframes linewidth {
  to {
    width: 0px;
  }

  from {
    width: 40px;
  }
}

/** End Vertical Slider CSS Property **/

/** Start Horizontal Slider CSS Property Section CSS Property **/
.work-new-sec {
  padding-top: var(--padding-tb-medium);
  padding-bottom: var(--padding-tb-small);
  background: linear-gradient(180deg, #FFF4F0 0%, #FFF4F0 63.76%, #FFFFFF 88.73%);
}

.work-new-sec :where(p, li) {
  color: var(--dark-color);
}

.work-new-sec .row {
  margin-bottom: var(--space-48);
  text-align: center;
}

.work-new-sec h2 {
  margin-bottom: 0;
}

@media (min-width:992px) {
  .work-new-sec .row {
    text-align: left;
  }

  .work-new-sec h2 {
    margin-bottom: 1rem;
  }

  .work-new-sec .row [class*="col-"]:last-child:not(:first-child) {
    padding-left: 3rem;
    padding-right: 4rem;
  }
}

.work-item-new {
  position: relative;
  border: 1px solid transparent;
  background: var(--gradient-border);
  padding: 1.5rem;
  border-radius: 1.5rem;
  background-color: var(--white-color);
  transition: var(--td);
  overflow: hidden;
  z-index: 1;
}

.work-item-new::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 10px;
  height: 10px;
  background: var(--gradient-04);
  filter: blur(40px);
  border-radius: 50%;
  opacity: 0;
  transition: var(--td);
  z-index: -1;
  pointer-events: none;
}

.work-item-new:hover:after {
  border-radius: 0;
  width: 100%;
  height: 100%;
  opacity: 0.2;
}

.work-item-new:hover {
  background: var(--gradient-border-hover);
  /* box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.15); */
}

.work-item-new a.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.work-item-new figure {
  position: relative;
  width: 100%;
  /* height: 234px; */
  aspect-ratio: 14 / 6;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: clamp(1rem, 3vw, 1.5rem);
}

.work-item-new figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.5s ease-in-out;
}

.work-item-new:hover figure img {
  transform: scale(1.1);
}

.work-item-new h5 {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 0.6px solid var(--dark-color);
}

.work-item-new:hover h5 {
  color: var(--royal-blue-color);
  border-color: var(--royal-blue-color);
}

.work-slider-new .owl-dots {
  margin-top: var(--space-48) !important;
}

.work-slider-new .owl-dots .owl-dot {
  margin: 0 8px;
}

.work-slider-new .owl-dots .owl-dot span {
  width: 8px !important;
  height: 8px !important;
  margin: 0 !important;
  background: var(--dark-color) !important;
}

.work-slider-new .owl-dots .owl-dot:hover span,
.work-slider-new .owl-dots .owl-dot.active span {
  background-color: var(--hot-pink-color) !important;
}

/** End Horizontal Slider CSS Property Section CSS Property **/