.cards__heading {
  text-align: center;
  width: 100%;
  max-width: 924px;
  margin: 0 auto;
}
.cards__heading h3 {
  font-size: 18px;
  margin-bottom: 20px;
}
.cards__heading h2 {
  margin-bottom: 12px;
}
.cards__items {
  display: flex;
  gap: 17px;
  margin-top: 50px;
}
.cards__items-inner-container h2 {
  font-size: 24px;
  margin-top: 25px;
  margin-bottom: 22px;
}
.cards__items-inner-container img {
  width: 100%;
  display: block;
  border-radius: 17px;
}
.cards__items-inner-container {
  background-color: #f6f6f6;
  border-radius: 20px;
  padding: 20px;
  transition: all .5s ease;
  position: relative;
  height: 100%;
}
.cards__items-inner-container a {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
}
.cards__items-inner-container:hover {
  background-color: #fff;
  box-shadow: 8.33px 20px 120.02px 0px #00000033;
}
.cards__items > div {
  width: 100%;
  height: initial;
}
span.cards__items-icon img {
  width: 100%;
  border-radius: 50%;
}
span.cards__items-icon {
  background-color: #fff;
  border: 5px solid #f6f6f6;
  border-radius: 50%;
  position: absolute;
  width: 55px;
  bottom: -14px;
  left: -4px;
}
.cards__items-image {
  position: relative;
}
{# 
span.cards__items-icon img {
  filter: grayscale(1);
  transition: all .3s ease;
}
#}
.cards__items-inner-container:hover span.cards__items-icon img {
  filter: grayscale(0);
}
@media(max-width: 767px) {
  .cards__items {
    flex-direction: column;
  }
  .cards__items-container {
    padding: 0 10px;
  }
  .cards ul.slick-dots {
    margin: 0;
    list-style: none;
    display: flex !important;
    justify-content: center;
    text-align: center;
    padding: 0;
  }
  .cards ul.slick-dots button {
    padding: 0 !important;
    text-align: center;
    color: transparent;
    margin: 0 4px !important;
    height: 15px !important;
    width: 15px !important;
    border-radius: 50%;
  }
  .cards ul.slick-dots li.slick-active button {
    background-color: #000;
    border-color: #000;
  }
}