
#services {
  padding: 5rem 0;
}
#services .container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
#services .container > div {
  width: 50%;
}
#services .container > div:first-of-type > div {
  display: flex;
  flex-direction: column;
}
#services .container > div:first-of-type > div > * {
  margin-bottom: 2rem;
}
#services .container > div:first-of-type > div span {
  font-weight: 400;
}
#services .container > div:first-of-type > div h3 {
  font-size: var(--h3);
  margin-bottom: 0.5rem;
}
#services .container > div:first-of-type > div p {
  font-size: 0.85rem;
  max-width: 400px;
  color: var(--paragraph);
}
#services .container > .image__container {
  position: relative;
  height: 30rem;
}
#services .container .image__container img {
  object-fit: cover;
  border-radius: 12px;
  position: absolute;
}
.circular__img1 {
  width: 48%;
  height: 70%;
  top: 0;
  left: 0;
}
.circular__img2 {
  width: 48%;
  height: 70%;
  bottom: 0;
  right: 0;
}

@media screen and (max-width: 1050px) {
  #services {
    padding: 3rem 0;
  }
  #services .container > .image__container {
    height: 26rem;
  }
  .circular__img1 {
    width: 48%;
    height: 50%;
  }
  .circular__img2 {
    width: 48%;
    height: 50%;
  }
}
@media screen and (max-width: 500px) {
  #services {
    padding: 2rem 0;
  }
  #services .container {
    flex-direction: column;
    align-items: center;
  }
  #services .container > div {
    width: 100%;
    margin-bottom: 2rem;
  }
  #services .container > div:first-of-type > div > * {
    margin-bottom: 1rem;
  }
  #services .container > .image__container {
    position: relative;
    width: 100%;
    height: 18rem;
    overflow: hidden;
  }
  .circular__img1 {
    width: 48%;
    height: 48%;
    top: 0;
    left: 0;
  }
  .circular__img2 {
    width: 48%;
    height: 48%;
    bottom: 0;
    right: 0;
  }
}
