.custom-slider,
.custom-slider .slide {
  min-width: 100vw;
}
.custom-slider-container {
  width: 100%;
  position: relative;
}
.custom-slider {
  display: flex;
  overflow-y: hidden;
  overflow-x: scroll;
  width: 100vw;
  max-width: 100vw;
  -ms-overflow-style: none;
  scrollbar-width: none;
  height: 185px;
}
.custom-slider::-webkit-scrollbar {
  display: none;
}
.custom-slider .slide {
  position: relative;
}
.custom-slider .slide,
.custom-slider .slide-card,
.slide-card .slide-right {
  height: 100%;
  width: 100%;
}
.slide-card {
  position: relative;
  background: #d2ffef;
  padding: 10px 10px 0 10px;
}
.slide-card::before {
  border-radius: 16px;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  content: "";
  background: url("/wp-content/themes/bionic/images/home-services-decor-1.svg");
  background-repeat: repeat-y;
  background-position: top right;
  background-size: 173px 97px;
}
.slide-card::after {
  border-radius: 16px;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  content: "";
  background: url("/wp-content/themes/bionic/images/home-services-decor-1.svg");
  background-repeat: no-repeat;
  background-position: -100px -40px;
  background-size: 173px 97px;
}
.slide-content.container {
  position: relative;  
  height: 100%;
}
.slide-content.container::before {
  border-radius: 16px;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  content: "";
  background: url("/wp-content/themes/bionic/images/home-services-decor-curve-top.svg");
  background-repeat: no-repeat;
  background-position: right 100%;
  background-size: 250px;
}
.slide-content.container::after {
  border-radius: 16px;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  content: "";
  background: url("/wp-content/themes/bionic/images/home-services-decor-curve-bottom.svg");
  background-repeat: no-repeat;
  background-size: 210px;
  background-position: right top;
}
.slide-card img {
  height: 70%;
  object-fit: cover;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}
.slide-card .slide-right {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.slide-card .slide-right .description {
  margin: 0;
}
.slide-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.slide-buttons,
.slider-btn {
  align-items: center;
  display: flex;
}
.slide-info h3 {
  font-weight: 600;
  font-size: 16px;
  line-height: 18px;
  color: #080a0c;
  font-family: "Inter", sans-serif;
  font-style: normal;
}
.slide-info .price {
  font-weight: 700;
  font-size: 16px;
  line-height: 18px;
  color: #039be5;
  margin: 0;
  padding: 0;
  font-family: "Inter", sans-serif;
  font-style: normal;
}
.slide-buttons {
  gap: clamp(25px, 7vw, 50px);
  height: 40px;
  margin-bottom: 10px;
}
.slider-btn {
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  opacity: 0.65;
  height: 30px;
  color: #000;
  background: #fff;
  box-shadow: 0 6px 28px rgba(143, 155, 171, 0.4);
  justify-content: center;
  transition: 0.2s ease-in-out;
  transform: rotate(-45deg);
  aspect-ratio: 1;
}
.slider-btn.next .inner,
.slider-btn.prev .inner {
  transform: rotate(45deg);
}
.l-btn__third.learn-more {
  background: rgba(240, 250, 255, 0.58);
  max-width: max-content;
  margin: 0 auto 0 0;
  height: 100%;
  padding: 5px 25px;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .custom-slider {
    height: 250px;
  }
  .slide-info h3 {
    max-width: 55%;
  }
  .slide-card .description {
    /* display: none; */
    max-width: 55%;
    overflow: scroll;
    max-height: 150px;
  }
}
