@import url("https://fonts.googleapis.com/css2?family=PT+Sans+Caption:wght@400;700&display=swap");
:root {
  --gap: 30px;
  --full: minmax(var(--gap), 1fr);
  --content: min(1320px, 100% - var(--gap) * 2);
  --breakout: minmax(0, 190px);
}
@media (max-width: 960px) {
  :root {
    --gap: 19px;
  }
}

* {
  line-height: 1.2em;
}
.service_page .main.lazyloaded{
  background-size: cover !important;
}
.service_page .main.lazyloaded .container{
  padding-bottom: 0;
}
div.service_page {
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  overflow-x: hidden;
}

div.service_page section {
  width: 100%;
  position: relative;
  display: grid;
  grid-template-columns: [full-start] var(--full) [breakout-start] var(--breakout) [content-start] var(--content) [content-end] var(--breakout) [breakout-end] var(--full) [full-end];
}
div.service_page section > * {
  grid-column: content;
}
div.service_page section .full {
  grid-column: full;
}
div.service_page section .breakout {
  grid-column: breakout;
}
div.service_page div.container {
  max-width: unset !important;
}
div.service_page div.container::after {
  display: none;
}
div.service_page div.container::before {
  display: none;
}

div.service_page h1 {
  font-weight: 700;
  font-size: 36px;
  line-height: 120%;
  color: #333;
  margin: unset;
}
@media (max-width: 960px) {
  div.service_page h1 {
    font-size: 23px;
  }
}

div.service_page h2 {
  font-weight: 700;
  font-size: 36px;
  line-height: 120%;
  color: #333;
  margin: unset;
}
@media (max-width: 960px) {
  div.service_page h2 {
    font-size: 18px;
  }
}

div.service_page h3 {
  font-weight: 700;
  font-size: 24px;
  line-height: 120%;
  color: #333;
  margin: unset;
}
@media (max-width: 960px) {
  div.service_page h3 {
    font-size: 16px;
  }
}

div.swiper {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  overflow: visible;
}
div.swiper div.swiper-wrapper {
  height: auto !important;
}
div.swiper div.swiper-slide {
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
div.swiper div.swiper-slide-visible {
  opacity: 1;
  pointer-events: auto;
}

div.swiper-navigation {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-auto-flow: column;
  grid-auto-columns: -webkit-max-content;
  grid-auto-columns: max-content;
  grid-gap: 8px;
}
@media (max-width: 960px) {
  div.swiper-navigation {
    grid-gap: 4px;
  }
}
div.swiper-navigation div.arrow {
  cursor: pointer;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  justify-items: center;
  width: 39px;
  height: 39px;
  border-radius: 999px;
  border: 1px solid #188B30;
}
@media (max-width: 960px) {
  div.swiper-navigation div.arrow {
    width: 30px;
    height: 30px;
  }
}
div.swiper-navigation div.arrow:first-child {
  -webkit-transform: scaleX(-1);
      -ms-transform: scaleX(-1);
          transform: scaleX(-1);
}
div.swiper-navigation div.arrow.swiper-button-disabled {
  pointer-events: none;
  opacity: 0.3;
}
div.swiper-navigation div.arrow:hover {
  background: #188B30;
}
div.swiper-navigation div.arrow:hover svg path {
  stroke: white;
}
div.swiper-navigation:has(div.swiper-button-lock) {
  display: none;
}

div.swiper-pagination-custom {
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  grid-auto-flow: column;
  grid-auto-columns: -webkit-max-content;
  grid-auto-columns: max-content;
  grid-gap: 7px;
  height: 10px;
  margin-top: 10px;
}
div.swiper-pagination-custom span.swiper-pagination-bullet {
  display: block;
  width: 7px;
  height: 7px;
  background: #c5c5c5;
  opacity: 1;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  margin: unset !important;
}
div.swiper-pagination-custom span.swiper-pagination-bullet-active {
  background: #398938;
  width: 10px;
  height: 10px;
}

button, a.button {
  cursor: pointer;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  justify-items: center;
  color: #fff;
  background: #188b30;
  border-radius: 999px;
  padding: 7px 20px;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  border: unset;
}
@media (max-width: 960px) {
  button, a.button {
    padding: 8px 26px;
    font-weight: 700;
    font-size: 13px;
  }
}

section.breadcrumbs {
  padding-top: 54px;
  padding-bottom: 15px;
}
@media (max-width: 960px) {
  section.breadcrumbs {
    padding-bottom: 20px;
  }
}
section.breadcrumbs div.container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
section.breadcrumbs img {
  opacity: 0.2;
  padding-left: 10px;
  padding-right: 8px;
}
section.breadcrumbs a {
  font-weight: 400;
  font-size: 12px;
  line-height: 108%;
  color: #666;
}
section.breadcrumbs span {
  font-weight: 400;
  font-size: 12px;
  line-height: 108%;
  color: #000;
}/*# sourceMappingURL=common.css.map */