.mainContent {
  margin-top: 120px;
  gap: 40px;
}
.mainContent > svg {
  width: 70%;
  max-width: 350px;
}
.servicesTitle {
  font-size: 22px;
  font-weight: 600;
  color: var(--clrF);
  margin-top: -65px;
}
.serviceListItem {
  position: relative;
}
.serviceListItem::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #000000af;
  z-index: 5;
}
.serviceListItem picture {
  z-index: 1;
}
.serviceImg {
  width: 100%;
  height: auto;
  aspect-ratio: 4.2/3.1;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  max-height: 400px;
  background-color: #ffffff40;
}
.serviceInfoText {
  position: absolute;
  left: 50%;
  bottom: 30px;
  padding: 40px 60px;
  background-color: #ffffff1c;
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 26px;
  color: var(--clrF);
  width: 90%;
  z-index: 10;
  transform: translateX(-50%);
  text-align: center;
}
@media screen and (min-width: 768px) {
  .serviceListDiv {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}
@media screen and (min-width: 1100px) {
  .mainContent {
    margin-top: 150px;
  }
  .serviceListDiv {
    max-width: 1250px;
    margin: 25px auto 0;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 25px;
  }
}
