body.services-archive section.services {
  padding-top: calc(var(--hh) + 25px);
  padding-left: 0;
}
body.services-archive section.services .container {
  counter-reset: item-counter;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  body.services-archive section.services {
    flex-direction: column;
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  body.services-archive section.services {
    flex-direction: column;
    width: 100%;
  }
}
body.services-archive section.services h1 {
  font-size: min(max(28px, 3.6458333333vw), 58px);
  font-weight: 300;
  color: #171d4f;
  margin-bottom: 72px;
  font-family: "Ubuntu", s-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  body.services-archive section.services h1 {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media only screen and (max-width: 767px) {
  body.services-archive section.services h1 {
    padding-left: 20px;
    padding-right: 20px;
  }
}
body.services-archive section.services .service {
  counter-increment: item-counter;
  min-height: 458px;
  display: flex;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  body.services-archive section.services .service {
    flex-direction: column !important;
  }
}
@media only screen and (max-width: 767px) {
  body.services-archive section.services .service {
    flex-direction: column !important;
    min-height: unset;
  }
}
body.services-archive section.services .service:nth-child(even) .content {
  background-color: #4a972d;
}
body.services-archive section.services .service:nth-child(even) .content h2,
body.services-archive section.services .service:nth-child(even) .content p {
  color: #ffffff;
}
body.services-archive section.services .service:nth-child(odd) {
  flex-direction: row-reverse;
}
body.services-archive section.services .service:nth-child(odd) .content {
  background-color: #171d4f;
}
body.services-archive section.services .service:nth-child(odd) .content h2,
body.services-archive section.services .service:nth-child(odd) .content p {
  color: #ffffff;
}
body.services-archive section.services .service:nth-child(odd) .content button {
  background-color: #4a972d;
}
body.services-archive section.services .service .content {
  flex: 0 0 55%;
  padding: 47px 64px;
}
@media only screen and (min-width: 1025px) and (max-width: 1399px) {
  body.services-archive section.services .service .content {
    padding: 47px 64px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  body.services-archive section.services .service .content {
    padding: 30px 36px;
  }
}
@media only screen and (max-width: 767px) {
  body.services-archive section.services .service .content {
    padding: 20px 36px;
  }
}
body.services-archive section.services .service .content h2 {
  font-size: min(max(26px, 3.3854166667vw), 53px);
  font-family: "Ubuntu", s-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-weight: 300;
  display: flex;
  align-items: flex-end;
  margin-bottom: 30px;
  position: relative;
}
body.services-archive section.services .service .content h2::before {
  content: "0" counter(item-counter);
  top: 0;
  transform: translateX(-150%);
  position: absolute;
  font-size: min(max(16px, 2.0833333333vw), 26px);
}
body.services-archive section.services .service .content p {
  font-size: min(max(16px, 2.0833333333vw), 18px);
}
body.services-archive section.services .service .content button {
  font-family: "OpenSans", s-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  color: #ffffff;
  font-size: min(max(18px, 2.34375vw), 16px);
  padding: 14px 37px;
  border-radius: 25px;
  background-color: #171d4f;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 30px;
  border: 0;
  outline: 0;
  cursor: pointer;
}
body.services-archive section.services .service .image {
  flex: 0 0 45%;
  pointer-events: none;
  display: flex;
  aspect-ratio: 1;
}
body.services-archive section.services .service .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}