.home-services-heading {
  display: flex;
  margin-bottom: 40px;
  justify-content: space-between;
  align-items: flex-end;
}
.home-services-heading-left {
  max-width: 815px;
}
.home-services {
  padding-bottom: 35px;
  padding-top: 87px;
  background: #e7e0d0;
  border-top: 1px solid rgba(100, 115, 79, 0.15);
}
.home-services-heading-right {
  display: flex;
  gap: 24px;
}
.services-buttons-row {
  display: flex;
  align-items: center;
  gap: 30px;
}
.services-list-item {
  margin-left: 10px;
  margin-right: 10px;
  overflow: hidden;
  position: relative;
  color: white;
}
.services-list-item::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 20px;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
}
.services-list-item img {
  aspect-ratio: 0.95/1;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  object-fit: cover;
}
.services-list {
  display: flex;
}
.services-list-item-content {
  position: absolute;
  width: calc(100% - 90px);
  left: 45px;
  top: 45px;
  z-index: 3;
  height: calc(100% - 90px);
}
.services-list-item-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}
.services-list-item-upper h3 {
  margin-bottom: 16px;
}
.services-list-item .subtitle {
  font-size: 14px;
}
.services-list .slick-list {
  padding-right: 90px !important;
}
@media only screen and (max-width: 1200px) {
  .home-services-heading-left {
    max-width: 600px;
  }
}
@media only screen and (max-width: 991px) {
  .home-services-heading-right {
    margin-top: 30px;
    display: flex;
    justify-content: flex-end;
    padding-right: 15px;
  }
}
@media only screen and (max-width: 575px) {
  .services-list-item-content {
    left: 15px;
    top: 15px;
    bottom: 15px;
    right: 15px;
    width: calc(100% - 30px);
    height: calc(100% - 30px);
  }
  .services-list .slick-list {
    padding-right: 30px !important;
  }
  .home-services-heading-right {
    justify-content: center;
  }
}
