.home-services .images {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 24px;
}
.home-services .images > div {
  grid-area: auto;
}
.home-services .images > img:nth-child(1) {
  height: 220px;
}
.home-services .images > img:nth-child(2) {
  display: none;
}
@media (min-width: 768px) {
  .home-services .images {
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
  }
  .home-services .images > img:nth-child(1) {
    height: 100%;
    grid-area: 1/1/2/5;
  }
  .home-services .images > img:nth-child(2) {
    display: block;
    grid-area: 1/5/2/13;
  }
}
.home-services .images img {
  width: 100%;
  height: 332px;
  object-fit: cover;
  object-position: center;
  border-radius: 20px;
}
.home-services .service {
  display: flex;
  border-bottom: 1px solid #EEEEEE;
  padding: 24px 0;
  position: relative;
}
@media (min-width: 992px) {
  .home-services .service {
    padding: 48px 0;
  }
}
.home-services .service:hover .icon {
  background-color: #61BB46;
}
.home-services .service:hover .icon svg {
  color: white;
}
.home-services .service .row {
  align-items: center;
  position: relative;
}
.home-services .service .icon-wrapper {
  display: flex;
  justify-content: start;
}
@media (min-width: 992px) {
  .home-services .service .icon-wrapper {
    justify-content: end;
  }
}
.home-services .service .icon-wrapper .icon {
  display: none;
}
@media (min-width: 992px) {
  .home-services .service .icon-wrapper .icon {
    height: 56px;
    width: 56px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
  }
}
.home-services .service .icon-wrapper .icon svg {
  height: 20px;
  width: 20px;
}
.home-services .service:last-child {
  border-bottom: none;
}