.services {
  padding: 3rem 0;
}
.services-container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.services .service {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.services .service-img {
  background-color: var(--clr-gray-dark);
  border-radius: 25px;
  height: 230px;
  display: flex;
  overflow: hidden;
}
.services .service-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.services .service-content div {
  position: relative;
}
.services .service-content div svg {
  position: absolute;
  width: 50%;
  height: 50%;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
  fill: var(--clr-text);
  opacity: 0.2;
}
.services .service-content h3 {
  font-family: var(--font-secondary);
  color: var(--clr-primary);
  font-size: 24px;
  margin-bottom: 0.5rem;
}
.services .service-content p {
  line-height: 1.5;
  margin-bottom: 0.5rem;
}
.services .service:nth-child(2n) {
  flex-direction: column-reverse;
}
.services .service:nth-child(2n) .service-content div svg {
  right: 50%;
}
@media screen and (min-width: 768px) {
  .services {
    padding: 5rem 0;
  }
  .services .service {
    flex-direction: row;
    gap: 2rem;
  }
  .services .service-img {
    flex: 1;
    height: 400px;
  }
  .services .service-content {
    flex: 1;
    display: flex;
    align-items: center;
  }
  .services .service-content div svg {
    top: 70%;
    right: -25%;
    transform: translate(0%, 0%);
  }
  .services .service-content p {
    max-width: 400px;
  }
  .services .service:nth-child(2n) {
    flex-direction: row;
  }
  .services .service:nth-child(2n) .service-content {
    justify-content: flex-end;
  }
  .services .service:nth-child(2n) .service-content div svg {
    left: -25%;
  }
}

.contact {
  background-image: url("../images/country-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-color: var(--clr-primary);
  color: var(--clr-white);
  padding: 3rem 0;
}
.contact-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.contact-content h3 {
  margin-bottom: 1rem;
  font-size: 26px;
}
.contact-content p {
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .contact {
    padding: 5rem 0;
  }
  .contact-content h3 {
    font-size: 32px;
  }
}/*# sourceMappingURL=services.css.map */