.cards-slider {
  margin: 120px auto 160px;
  max-width: 1264px;
  padding: 0 32px;
}

.cards-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 48px;
}

.cards-swiper {
  overflow: unset;
}

.card-slide {
  padding: 24px;
  width: 384px;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  transition: ease 0.3s;
  height: unset;
}

.card-icon {
  transition: ease 0.3s;
  border: 1px solid #E5E7EB;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-title {
  transition: ease 0.3s;
  margin: 24px 0 12px;
}

.card-desc {
  transition: ease 0.3s;
  font-family: Medium;
  line-height: 1.5;
  color: #6B7280;
}

.card-slide.swiper-slide-active {
  background-color: #155EEF;
}
.card-slide.swiper-slide-active .card-icon {
  background: white;
}
.card-slide.swiper-slide-active .card-icon img {
  filter: brightness(0) saturate(100%) invert(40%) sepia(104%) saturate(1884%) hue-rotate(214deg) brightness(105%) contrast(104%);
}
.card-slide.swiper-slide-active .card-title, .card-slide.swiper-slide-active .card-desc {
  color: white;
}

.card-slide:hover {
  background-color: #155EEF;
  cursor: pointer;
}
.card-slide:hover .card-icon {
  background: white;
}
.card-slide:hover .card-icon img {
  filter: brightness(0) saturate(100%) invert(40%) sepia(104%) saturate(1884%) hue-rotate(214deg) brightness(105%) contrast(104%);
}
.card-slide:hover .card-title, .card-slide:hover .card-desc {
  color: white;
}

.swiper-navs {
  width: 104px;
  height: 48px;
  position: relative;
}

.swiper-button-prev {
  left: unset;
  top: 0;
  margin-top: unset;
}

.swiper-button-next {
  right: 0;
  top: 0;
  margin-top: unset;
}

.swiper-button-prev:after, .swiper-button-next:after {
  display: none;
}

.swiper-nav {
  width: 48px;
  height: 48px;
  border: 1px solid #D1D5DB;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.swiper-nav svg {
  height: 10px;
  width: 6px;
}

.swiper-button-prev svg {
  transform: rotate(180deg);
}

@media (max-width: 768px) {
  .cards-slider {
    padding: 0 16px;
    margin: 64px 0;
  }
  .swiper-navs {
    width: 72px;
    min-width: 72px;
    height: 32px;
  }
  .swiper-nav {
    width: 32px;
    height: 32px;
  }
  .cards-head {
    margin-bottom: 24px;
    align-items: flex-end;
  }
  .card-slide {
    width: 100%;
  }
  .card-slide:first-child {
    background-color: transparent;
  }
  .card-slide:first-child .card-icon {
    background: white;
  }
  .card-slide:first-child .card-icon img {
    filter: unset;
  }
  .card-slide:first-child .card-title {
    color: #030712;
  }
  .card-slide:first-child .card-desc {
    color: #6B7280;
    font-size: 16px !important;
    transition: unset;
  }
  .card-slide:hover {
    background-color: white;
  }
  .card-slide:hover .card-icon {
    background: white;
  }
  .card-slide:hover .card-icon img {
    filter: unset;
  }
  .card-slide:hover .card-title, .card-slide:hover .card-desc {
    color: #030712;
  }
  .card-slide.card-slide.swiper-slide-active {
    background-color: white;
  }
  .card-slide.card-slide.swiper-slide-active .card-icon {
    background: white;
  }
  .card-slide.card-slide.swiper-slide-active .card-icon img {
    filter: unset;
  }
  .card-slide.card-slide.swiper-slide-active .card-title, .card-slide.card-slide.swiper-slide-active .card-desc {
    color: #030712;
  }
}