#services {
  font-family: "Geologica", sans-serif;
}
#services h2.section-title {
  width: 50%;
}
@media (max-width: 575px) {
  #services h2.section-title {
    width: 70%;
  }
}
#services .service-item {
  position: relative;
  margin-bottom: 30px;
  min-height: 273px;
  display: flex;
  flex-wrap: wrap;
  background-color: #F6F6F6;
  border-radius: 44px;
  justify-content: space-between;
  align-items: center;
  padding: 25px;
  transition: all 0.8s ease;
}
@media (max-width: 991px) {
  #services .service-item {
    padding: 20px 0;
  }
}
@media (max-width: 768px) {
  #services .service-item {
    height: auto;
  }
}
#services .service-item.last::before {
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("../images/leaf1.svg");
  width: 165px;
  height: 135px;
  z-index: -1;
  right: -97px;
  bottom: -35px;
}
#services .service-item.last .leaf2 {
  background-image: url("../images/leaf2.svg");
  width: 98px;
  height: 151px;
  z-index: -1;
  right: -11px;
  bottom: -99px;
  position: absolute;
}
#services .service-item:hover {
  background-color: #204685;
  color: white;
  transition: all 0.8s ease;
}
#services .service-item:hover .service-title {
  color: #FFFFFF;
}
#services .service-item:hover .service-content {
  color: #FFFFFF;
}
#services .service-item:hover .service-icon {
  filter: brightness(0) invert(1);
}
#services .service-item:hover .service-content ul li::before {
  background-color: #FFFFFF;
}
#services .service-item .service-left-part {
  padding-left: 60px;
  display: flex;
  align-items: center;
}
@media (max-width: 880px) {
  #services .service-item .service-left-part {
    flex-direction: column;
    text-align: center;
  }
}
@media (max-width: 768px) {
  #services .service-item .service-left-part {
    width: 100%;
    padding: 20px 0;
  }
}
#services .service-item .service-left-part h3 {
  max-width: 250px;
  margin-left: 25px;
  font-size: 30px;
  font-weight: bold;
  color: #41B339;
  padding-top: 8px;
}
@media (max-width: 768px) {
  #services .service-item .service-left-part h3 {
    max-width: 100%;
  }
}
#services .service-item .service-content {
  font-size: 20px;
  color: #204685;
  text-align: left;
}
@media (max-width: 880px) {
  #services .service-item .service-content {
    padding: 0 20px;
  }
}
@media (max-width: 768px) {
  #services .service-item .service-content {
    width: 100%;
    padding: 20px;
  }
}
