.pristine-error {
  color: #cc0900 !important;
  margin-top: 0 !important;
}

.has-danger input, .has-danger textarea {
  border-color: #cc0900 !important;
}

/* ----------------------------------------------------------- */
/* == tingle v0.15.2 */
/* ----------------------------------------------------------- */
.tingle-modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1000;
  display: flex;
  visibility: hidden;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  background: rgba(0, 0, 0, 0.85);
  opacity: 0;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
}

/* confirm and alerts
-------------------------------------------------------------- */
.tingle-modal--confirm .tingle-modal-box {
  text-align: center;
}

/* modal
-------------------------------------------------------------- */
.tingle-modal--noOverlayClose {
  cursor: default;
}

.tingle-modal--noClose .tingle-modal__close {
  display: none;
}

.tingle-modal__close {
  position: fixed;
  top: 2.5rem;
  right: 2.5rem;
  z-index: 1000;
  padding: 0;
  width: 2rem;
  height: 2rem;
  border: none;
  background-color: transparent;
  color: #fff;
  cursor: pointer;
}

.tingle-modal__close svg * {
  fill: currentColor;
}

.tingle-modal__closeLabel {
  display: none;
}

.tingle-modal__close:hover {
  color: #fff;
}

.tingle-modal-box {
  position: relative;
  flex-shrink: 0;
  margin-top: auto;
  margin-bottom: auto;
  width: 60%;
  border-radius: 4px;
  background: #fff;
  opacity: 1;
  cursor: auto;
  will-change: transform, opacity;
}
.modal-image .tingle-modal-box {
  width: auto;
  max-width: 1264px;
}

.tingle-modal-box__content {
  padding: 2em;
}

.tingle-modal-box__footer {
  padding: 1.5rem 2rem;
  width: auto;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  background-color: #f5f5f5;
  cursor: auto;
}

.tingle-modal-box__footer::after {
  display: table;
  clear: both;
  content: "";
}

.tingle-modal-box__footer--sticky {
  position: fixed;
  bottom: -200px; /* TODO : find a better way */
  z-index: 10001;
  opacity: 1;
  transition: bottom 0.3s ease-in-out 0.3s;
}

/* state
-------------------------------------------------------------- */
.tingle-enabled {
  position: fixed;
  right: 0;
  left: 0;
  overflow: hidden;
}

.tingle-modal--visible .tingle-modal-box__footer {
  bottom: 0;
}

.tingle-enabled .tingle-content-wrapper {
  filter: blur(8px);
}

.tingle-modal--visible {
  visibility: visible;
  opacity: 1;
}

.tingle-modal--visible .tingle-modal-box {
  animation: scale 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

.tingle-modal--overflow {
  overflow-y: scroll;
  padding-top: 8vh;
}

/* btn
-------------------------------------------------------------- */
.tingle-btn {
  display: inline-block;
  margin: 0 0.5rem;
  padding: 1rem 2rem;
  border: none;
  background-color: grey;
  box-shadow: none;
  color: #fff;
  vertical-align: middle;
  text-decoration: none;
  font-size: inherit;
  font-family: inherit;
  line-height: normal;
  cursor: pointer;
  transition: background-color 0.4s ease;
}

.tingle-btn--primary {
  background-color: #3498db;
}

.tingle-btn--danger {
  background-color: #e74c3c;
}

.tingle-btn--default {
  background-color: #34495e;
}

.tingle-btn--pull-left {
  float: left;
}

.tingle-btn--pull-right {
  float: right;
}

/* responsive
-------------------------------------------------------------- */
@media (max-width: 540px) {
  .tingle-modal {
    top: 0px;
    display: block;
    padding-top: 60px;
    width: 100%;
  }
  .tingle-modal-box {
    width: auto;
    border-radius: 0;
  }
  .tingle-modal-box__content {
    overflow-y: scroll;
  }
  .tingle-modal--noClose {
    top: 0;
  }
  .tingle-modal--noOverlayClose {
    padding-top: 0;
  }
  .tingle-modal-box__footer .tingle-btn {
    display: block;
    float: none;
    margin-bottom: 1rem;
    width: 100%;
  }
  .tingle-modal__close {
    top: 0;
    right: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 60px;
    border: none;
    background-color: #78B478;
    box-shadow: none;
    color: #fff;
  }
  .tingle-modal__closeLabel {
    display: inline-block;
    vertical-align: middle;
    font-size: 1.6rem;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  }
  .tingle-modal__closeIcon {
    display: inline-block;
    margin-right: 0.8rem;
    width: 1.6rem;
    vertical-align: middle;
    font-size: 0;
  }
}
@supports (-webkit-backdrop-filter: blur(12px)) or (backdrop-filter: blur(12px)) {
  .tingle-modal:before {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    content: "";
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    pointer-events: none;
  }
  .tingle-enabled .tingle-content-wrapper {
    filter: none;
  }
}
/* animations
-------------------------------------------------------------- */
@keyframes scale {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
/* Custom
-------------------------------------------------------------- */
.tingle-modal-box--wide .tingle-modal-box {
  max-width: 60em;
  width: auto;
}
.tingle-modal-box--wide .tingle-modal-box__content {
  padding: 1em;
}
.tingle-modal-box--wide embed {
  width: 80vw;
  max-width: 58em;
  height: 57vw;
}
@media (min-width: ) {
  .tingle-modal-box--wide embed {
    height: 90vh;
  }
}

.tingle-modal-box__content form button::before {
  background-color: #78B478;
}
.tingle-modal-box__content form button:hover {
  color: #fff;
}

.tns-outer {
  padding: 0 !important;
  position: relative;
}
.tns-outer [hidden] {
  display: none !important;
}
.tns-outer [aria-controls], .tns-outer [data-action] {
  cursor: pointer;
}

.tns-slider {
  -webkit-transition: all 0s;
  -moz-transition: all 0s;
  transition: all 0s;
}
.tns-slider > .tns-item {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.tns-horizontal.tns-subpixel {
  white-space: nowrap;
}
.tns-horizontal.tns-subpixel > .tns-item {
  display: inline-block;
  vertical-align: top;
  white-space: normal;
}
.tns-horizontal.tns-no-subpixel.tns-carousel > .tns-item {
  margin-right: -100%;
}
.tns-horizontal.tns-no-subpixel:after {
  content: "";
  display: table;
  clear: both;
}
.tns-horizontal.tns-no-subpixel > .tns-item {
  float: left;
}

.tns-no-calc {
  position: relative;
  left: 0;
}

.tns-gallery {
  position: relative;
  left: 0;
  min-height: 1px;
}
.tns-gallery > .tns-item {
  position: absolute;
  left: -100%;
  -webkit-transition: transform 0s, opacity 0s;
  -moz-transition: transform 0s, opacity 0s;
  transition: transform 0s, opacity 0s;
}
.tns-gallery > .tns-slide-active {
  position: relative;
  left: auto !important;
}
.tns-gallery > .tns-moving {
  -webkit-transition: all 0.25s;
  -moz-transition: all 0.25s;
  transition: all 0.25s;
}

.tns-autowidth {
  display: inline-block;
}

.tns-lazy-img {
  -webkit-transition: opacity 0.6s;
  -moz-transition: opacity 0.6s;
  transition: opacity 0.6s;
  opacity: 0.6;
}
.tns-lazy-img.tns-complete {
  opacity: 1;
}

.tns-ah {
  -webkit-transition: height 0s;
  -moz-transition: height 0s;
  transition: height 0s;
}

.tns-ovh {
  overflow: hidden;
}

.tns-visually-hidden {
  position: absolute;
  left: -10000em;
}

.tns-transparent {
  opacity: 0;
  visibility: hidden;
}

.tns-fadeIn {
  opacity: 1;
  filter: alpha(opacity=100);
  z-index: 0;
}

.tns-normal, .tns-fadeOut {
  opacity: 0;
  filter: alpha(opacity=0);
  z-index: -1;
}

.tns-vpfix {
  white-space: nowrap;
}
.tns-vpfix > div, .tns-vpfix > li {
  display: inline-block;
}

.tns-t-subp2 {
  margin: 0 auto;
  width: 310px;
  position: relative;
  height: 10px;
  overflow: hidden;
}

.tns-t-ct {
  width: 2333.3333333%;
  width: -webkit-calc(100% * 70 / 3);
  width: -moz-calc(100% * 70 / 3);
  width: 2333.3333333333%;
  position: absolute;
  right: 0;
}
.tns-t-ct::after {
  content: "";
  display: table;
  clear: both;
}
.tns-t-ct > div {
  width: 1.4285714%;
  width: -webkit-calc(100% / 70);
  width: -moz-calc(100% / 70);
  width: 1.4285714286%;
  height: 10px;
  float: left;
}

.tns-controls {
  text-align: center;
}
.tns-controls button {
  padding: 0;
  overflow: hidden;
  text-indent: 200%;
  white-space: nowrap;
  background-repeat: no-repeat;
  width: 28px;
  height: 50px;
  background-size: 100%;
  transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  margin: 1em;
}
.tns-controls button:hover {
  opacity: 0.64;
}
.tns-controls button:first-child {
  background-image: url(../img/arrow-prev.png);
}
.tns-controls button:last-child {
  background-image: url(../img/arrow-next.png);
}
@media (min-width: 40rem) {
  .tns-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin-top: -25px;
  }
  .tns-controls button {
    position: absolute;
    margin: 0;
    width: 28px;
    height: 50px;
  }
  .tns-controls button:first-child {
    left: 0;
  }
  .tns-controls button:last-child {
    right: 0;
  }
}

.dots, .sitemap-list {
  list-style: none;
}
.dots li, .sitemap-list li {
  padding-left: 12px;
  margin-top: 2px;
  position: relative;
}
.dots li::before, .sitemap-list li::before {
  content: "";
  height: 6px;
  width: 6px;
  border-radius: 6px;
  background-color: #78B478;
  position: absolute;
  top: 10px;
  left: 0;
}
.dots ul, .sitemap-list ul {
  list-style: none;
  margin-top: 0;
}

.sitemap-list {
  max-width: 22em;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
}

.tick {
  list-style: none;
}
.tick li {
  padding-left: 24px;
  margin-top: 1px;
  position: relative;
  font-size: 0.938rem;
  font-family: "Open Sans", sans-serif;
}
.tick li::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 12px;
  border: solid #78B478;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
  position: absolute;
  top: 6px;
  left: 2px;
}
.tick.tick--secondary li::before {
  border-color: #0A2832;
}
.tick.tick--white li::before {
  border-color: #fff;
}
.tick.ib li {
  margin-left: 1em;
  margin-right: 1em;
  font-weight: 700;
}

.card.card--service {
  width: 100%;
  height: 100%;
  min-height: 400px;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 4rem 2rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  flex-shrink: 0;
  border-radius: 1.5rem;
  position: relative;
  transition: 1s ease-out;
  background-size: 111%;
}
@media (max-width: 55rem) {
  .card.card--service {
    min-height: 375px;
  }
}
.card.card--service::before, .card.card--service::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 1.5rem;
  transition: opacity 0.4s ease-in-out;
}
.card.card--service::before {
  background: linear-gradient(180deg, rgba(20, 20, 20, 0) 0%, rgba(20, 20, 20, 0.45) 50%, rgba(20, 20, 20, 0.9) 90%);
  opacity: 1;
  z-index: 1;
}
.card.card--service::after {
  background: linear-gradient(180deg, rgba(20, 20, 20, 0.31) 0%, rgba(20, 20, 20, 0.67) 50%, rgba(20, 20, 20, 0.9) 90%);
  opacity: 0;
  z-index: 2;
}
.card.card--service > * {
  position: relative;
  z-index: 3;
}
.card.card--service h4 {
  color: #fff;
  font-family: "Mada", sans-serif;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding-right: 4rem;
}
.card.card--service h4 .hover--arrow {
  position: absolute;
  content: "";
  width: 40px;
  height: 40px;
  background-color: #78B478;
  display: block;
  transition: 0.4s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  right: 0;
}
.card.card--service h4 .hover--arrow svg {
  transition: 0.4s ease-in-out;
}
.card.card--service p {
  color: #fff;
  font-family: "Open Sans", sans-serif;
  font-size: 0.938rem;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  opacity: 0;
  max-height: 0;
  margin: 0;
  padding: 0;
  transition: opacity 1s ease-out, max-height 1s ease-out;
  overflow: hidden;
}
.card.card--service:hover {
  background-size: 120%;
}
.card.card--service:hover::before {
  opacity: 0;
}
.card.card--service:hover::after {
  opacity: 1;
}
.card.card--service:hover h4 .hover--arrow {
  background-color: #0A2832;
}
.card.card--service:hover h4 .hover--arrow svg {
  transform: rotate(-45deg);
  transition: 0.4s ease-in-out;
}
.card.card--service:hover p {
  opacity: 1;
  max-height: 400px;
  padding: 1rem 0 0 0;
}
.card.card--service.bg-garden-watering-system {
  background-image: url("../img/webp/bg-garden-watering-system.webp");
}
html:not(.webp) .card.card--service.bg-garden-watering-system {
  background-image: url("../img/bg-garden-watering-system.jpg");
}
.card.card--service.bg-commercial-landscape-irrigation-systems {
  background-image: url("../img/webp/bg-commercial-landscape-irrigation-systems.webp");
}
html:not(.webp) .card.card--service.bg-commercial-landscape-irrigation-systems {
  background-image: url("../img/bg-commercial-landscape-irrigation-systems.jpg");
}
.card.card--service.bg-horticultural-irrigation-systems {
  background-image: url("../img/webp/bg-horticultural-irrigation-systems.webp");
}
html:not(.webp) .card.card--service.bg-horticultural-irrigation-systems {
  background-image: url("../img/bg-horticultural-irrigation-systems.jpg");
}
.card.card--service.bg-sports-irrigation-systems {
  background-image: url("../img/webp/bg-sports-irrigation-systems.webp");
}
html:not(.webp) .card.card--service.bg-sports-irrigation-systems {
  background-image: url("../img/bg-sports-irrigation-systems.jpg");
}

.gap-faq {
  gap: 3rem;
}
.gap-faq > * {
  flex-basis: calc(50% - 1.5rem);
}
@media (max-width: 55rem) {
  .gap-faq {
    gap: 1.5rem;
  }
  .gap-faq > * {
    flex-basis: 100%;
  }
}

.faq.js-enabled details .content {
  height: 0;
  transition: height 0.3s ease-in-out;
}
.faq details {
  overflow: hidden;
  position: relative;
}
.faq details[open] summary {
  margin-bottom: 1rem;
}
.faq details[open] summary h2 {
  color: #78B478;
}
.faq details[open] .content {
  height: auto;
}
.faq details .content {
  overflow: hidden;
  margin: 0;
}
.faq details .content * + * {
  margin-top: 0.75rem;
}
.faq summary {
  user-select: none;
  outline: none;
  padding-right: 2rem;
  position: relative;
  cursor: pointer;
  transition: 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary:hover h2 {
  color: #78B478;
}
.faq summary h2 {
  transition: 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.flex > .faq {
  flex-grow: 1;
}

.faq--arrow details:not(:last-child) {
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}
.faq--arrow details:not(:first-child) {
  margin-top: 2rem;
}
.faq--arrow details[open] summary {
  margin-bottom: 1rem;
}
.faq--arrow details[open] summary svg {
  transform: rotate(180deg);
}
.faq--arrow details[open] summary circle,
.faq--arrow details[open] summary path {
  stroke: #78B478;
}
.faq--arrow summary:hover circle,
.faq--arrow summary:hover path {
  stroke: #78B478;
}
.faq--arrow summary svg,
.faq--arrow summary circle,
.faq--arrow summary path {
  transition: 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.faq--arrow summary svg {
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -12px;
}

.faq--plus details {
  padding: 1.5rem 2rem;
  min-height: 82px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  transition: all 0.4s ease-in-out;
  border-radius: 96px;
  border: 1px solid #0A2832;
}
.faq--plus details p {
  color: #282828;
}
.faq--plus details:not(:first-child) {
  margin-top: 1.5rem;
}
.faq--plus details[open] {
  border-radius: 48px;
}
.faq--plus details[open] summary {
  color: #78B478;
  padding: 0 0 1.5rem 0;
  margin-bottom: 0 !important;
  padding-right: 2rem;
}
.faq--plus details[open] summary::after {
  content: "-";
}
.faq--plus details[open] summary span, .faq--plus details[open] summary::after {
  color: #78B478;
}
.faq--plus details[open] summary h2::after {
  transform: rotate(225deg);
}
.faq--plus details .content {
  overflow: hidden;
  margin: 0;
  opacity: 0;
  height: 0;
  transition: height 0.4s ease-in-out, opacity 0.4s ease-in-out;
}
.faq--plus details .content * + * {
  margin-top: 0.75rem;
}
.faq--plus summary {
  padding-right: 0;
  text-overflow: ellipsis;
  line-height: 2;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  position: relative;
  width: 100%;
  height: 100%;
  color: #282828;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #0A2832;
  font-family: "Open Sans", sans-serif;
  font-size: 0.938rem;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0.5px;
  padding-right: 2rem;
}
@media (max-width: 55rem) {
  .faq--plus summary {
    gap: 2rem;
    font-size: 0.75rem;
    line-height: 1.2;
  }
}
.faq--plus summary::after {
  position: absolute;
  content: "+";
  color: #0A2832;
  font-family: "Open Sans", sans-serif;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.5px;
  right: 0;
}
.faq--plus summary span {
  transition: 0.4s ease-out;
}

.icon::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: contain;
  z-index: 1;
}

.icon--lg::before {
  height: 64px;
  width: 64px;
}

.icon--communication::before {
  background-image: url(../img/icons/communication.svg);
}

.icon--quality::before {
  background-image: url(../img/icons/quality.svg);
}

.icon--service::before {
  background-image: url(../img/icons/service.svg);
}

.icon-block > * {
  margin-top: 1.25rem;
}

.icon--horizontal {
  position: relative;
}
.icon--horizontal::before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.icon--horizontal.icon--lg {
  padding-left: calc(64px + 1.5rem);
}

.side-contact-button {
  position: fixed;
  right: 0.5rem;
  bottom: 0.5rem;
  z-index: 3;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  border: none;
  padding: 0 !important;
  background-color: #78B478;
  background-image: url(../img/icon-envelope-lg.png);
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 24px;
  text-indent: 150px;
  font-size: 0;
  overflow: hidden;
  box-shadow: 2px 2px 4px 1px rgba(0, 0, 0, 0.4);
}
@media (min-width: 55rem) {
  .side-contact-button {
    right: 1.5rem;
    bottom: 1.5rem;
    height: 64px;
    width: 64px;
    background-size: 40px;
  }
}

else .side-contact-button {
  top: 190px;
  position: fixed;
  right: -3.875em;
  transform: rotate(270deg);
  z-index: 3;
  font-size: 1em;
  padding: 1em 1.5em;
  box-shadow: 0px 0px 4px 1px rgba(0, 0, 0, 0.15);
}
@media (min-width: 960px) {
  else .side-contact-button {
    top: 225px;
  }
}

.side-contact {
  display: none;
}

.tingle-modal {
  overflow: auto;
}
.tingle-modal input, .tingle-modal textarea {
  border-color: #f5f5f5;
  line-height: 1;
}

.tingle-modal-box {
  max-width: 34em;
}
.tingle-modal-box form > div {
  margin-top: 0.5em;
}
.tingle-modal-box form > div:last-child {
  margin-top: 1.5em;
}

@media (min-width: 40rem) {
  .carousel .tns-outer {
    padding-left: 36px !important;
    padding-right: 36px !important;
  }
}
@media (min-width: 87.5rem) {
  .carousel #js_carousel-sectors .tns-outer {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

.carousel--usp {
  max-width: 1000px;
}
.carousel--usp li {
  width: 380px;
  max-width: calc(100vw - 2em);
}
.carousel--usp li.carousel--usp__wide {
  width: 420px;
}
.carousel--usp h2 {
  font-weight: 700;
  letter-spacing: 0.15px;
}
.carousel--usp h2 + p {
  margin-top: 1rem;
  line-height: 1.5;
  letter-spacing: 0.1px;
  max-width: 30ch;
}
@media (min-width: 460px) {
  .carousel--usp .tns-ovh {
    position: relative;
  }
  .carousel--usp .tns-ovh::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    opacity: 0.5;
    background-image: linear-gradient(to right, #fff 0%, #fff calc(50% - 170px), transparent calc(50% - 169px), transparent calc(50% + 169px), #fff calc(50% + 170px));
  }
  .carousel--usp li {
    max-width: 380px;
  }
  .carousel--usp li.carousel--usp__wide {
    max-width: 420px;
  }
}

.carousel--vert-mid .tns-carousel {
  display: flex;
}
.carousel--vert-mid .tns-item {
  display: flex !important;
  flex-direction: column;
  justify-content: center;
}

.carousel--gallery .tns-controls {
  margin-top: 0 !important;
}
.carousel--gallery .tns-controls button {
  width: 36px;
  height: 36px;
  background-color: #78B478;
  border-radius: 50%;
  background-size: 10px !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
}
.carousel--gallery .tns-controls button:first-child {
  left: 1rem;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="44" viewBox="0 0 24 44" fill="none"><path d="M22 2L2 22L22 42" stroke="white" stroke-width="2.5" stroke-linecap="square"/></svg>');
}
.carousel--gallery .tns-controls button:last-child {
  right: 1rem;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="44" viewBox="0 0 24 44" fill="none"><path d="M2 42L22 22L2 2" stroke="white" stroke-width="2.5" stroke-linecap="square"/></svg>');
}
.carousel--gallery figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  height: 450px !important;
}

.carousel-google-testimonials {
  margin-top: 3rem;
}
.carousel-google-testimonials blockquote {
  text-align: center;
  margin: 0 10px;
  line-height: 1.5rem;
}
.carousel-google-testimonials blockquote cite {
  font-weight: 400;
  margin-top: 0;
}
.carousel-google-testimonials blockquote cite > span {
  display: block;
  font-size: 0.875rem;
}
.carousel-google-testimonials blockquote .google {
  display: inline-block;
  font-weight: 800;
  color: #4285f4;
}
.carousel-google-testimonials blockquote .google span:nth-child(1), .carousel-google-testimonials blockquote .google span:nth-child(4) {
  color: #ea4335;
}
.carousel-google-testimonials blockquote .google span:nth-child(2) {
  color: #fbbc05;
}
.carousel-google-testimonials blockquote .google span:nth-child(3) {
  color: #34a853;
}
.carousel-google-testimonials blockquote .summary {
  max-height: 6rem;
  overflow: hidden;
  position: relative;
  margin-top: 1rem;
  font-size: 0.875rem;
}
.carousel-google-testimonials blockquote p {
  font-size: 0.875rem;
  text-wrap: pretty;
}
.carousel-google-testimonials blockquote.bq-google--show .summary {
  max-height: 100em;
}
.carousel-google-testimonials .read-more {
  color: #909090;
  color: rgba(20, 20, 20, 0.5);
  font-size: 0.875rem;
  display: block;
  cursor: pointer;
  margin-top: 0.5rem;
}
.carousel-google-testimonials .read-more:hover {
  text-decoration: underline;
}
.carousel-google-testimonials .tns-controls button {
  width: 21px;
  height: 35px;
}
@media (min-width: 40rem) {
  .carousel-google-testimonials {
    padding: 0 60px;
  }
  .carousel-google-testimonials .tns-controls button {
    width: 20px;
    height: 35px;
  }
  .carousel-google-testimonials .tns-controls button:first-child {
    left: -60px;
  }
  .carousel-google-testimonials .tns-controls button:last-child {
    right: -60px;
  }
}
@media (min-width: 55rem) {
  .carousel-google-testimonials {
    padding: 0 100px;
    margin-top: 3rem;
  }
  .carousel-google-testimonials .tns-controls button {
    width: 20px;
    height: 35px;
  }
  .carousel-google-testimonials .tns-controls button:first-child {
    left: -100px;
  }
  .carousel-google-testimonials .tns-controls button:last-child {
    right: -100px;
  }
}

.carousel-usp {
  padding: 0px;
}
@media (min-width: 40rem) {
  .carousel-usp {
    padding: 40px 0px;
  }
}
.carousel-usp div.usp div {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.carousel-usp div.usp div figure {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
}
.carousel-usp div.usp div figure > svg {
  width: 43.5px;
  height: 48px;
}
.carousel-usp div.usp div h4 {
  color: #0A2832;
  text-align: center;
  font-family: "Mada", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 1.5rem;
}
.carousel-usp div.usp div h4:after {
  content: "";
  width: 200px;
  height: 2px;
  background-color: #78B478;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}
.carousel-usp div.usp div p {
  color: rgba(10, 40, 50, 0.75);
  text-align: center;
  font-family: "Open Sans", sans-serif;
  font-size: 0.938rem;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  margin-left: auto;
  margin-right: auto;
}
.carousel-usp div.usp div p .no-wrap {
  display: block;
}
.carousel-usp .tns-controls {
  display: block !important;
}
.carousel-usp .tns-controls button {
  width: 17.857px;
  height: 40px;
  top: -15px;
  opacity: 1;
  transition: 0.2s ease-in-out;
}
.carousel-usp .tns-controls button:first-child {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="22" height="44" viewBox="0 0 22 44" fill="none"><path d="M19.8571 42L2 22L19.8571 2" stroke="%230A2832" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/></svg>');
}
.carousel-usp .tns-controls button:last-child {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="22" height="44" viewBox="0 0 22 44" fill="none"><path d="M2.14294 2L20.0001 22L2.14295 42" stroke="%230A2832" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/></svg>');
}
.carousel-usp .tns-controls button:hover {
  opacity: 0.75;
  transition: 0.2s ease-in-out;
}
@media (min-width: 40rem) {
  .carousel-usp {
    padding: 50px 60px;
  }
  .carousel-usp .tns-controls button:first-child {
    left: -60px;
  }
  .carousel-usp .tns-controls button:last-child {
    right: -60px;
  }
}
@media (min-width: 55rem) {
  .carousel-usp {
    padding: 0px 100px;
  }
  .carousel-usp .tns-controls button:first-child {
    left: -100px;
  }
  .carousel-usp .tns-controls button:last-child {
    right: -100px;
  }
}

.carousel-testimonials {
  padding-bottom: 82px !important;
}
@media (max-width: 55rem) {
  .carousel-testimonials {
    padding-bottom: 32px !important;
  }
}
.carousel-testimonials #js_carousel-testimonials {
  display: inline-flex;
}
.carousel-testimonials .testimonial {
  width: 100%;
  height: 100%;
  border: 1px solid #fff;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 1.5rem;
}
@media (min-width: 55rem) {
  .carousel-testimonials .testimonial {
    align-items: flex-start;
    justify-content: space-between;
    padding: 4rem;
  }
}
@media (min-width: 960px) {
  .carousel-testimonials .testimonial {
    height: 100%;
  }
}
.carousel-testimonials .testimonial p {
  overflow: hidden;
  color: #fff;
  font-family: "Open Sans", sans-serif;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.5px;
}
.carousel-testimonials .testimonial p .button--cta span {
  font-size: 0.875rem;
  color: #fff;
}
.carousel-testimonials .testimonial p .button--cta span::after {
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="7" height="10" viewBox="0 0 7 10" fill="none"><path d="M2 8L5 5L2 2" stroke="white" stroke-width="2" stroke-linecap="square"/></svg>');
}
.carousel-testimonials .testimonial .info-bar {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  margin-top: 2rem;
}
.carousel-testimonials .testimonial .info-bar .info-initials {
  display: flex;
  width: 56px;
  height: 56px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 96px;
  background-color: #78B478;
}
.carousel-testimonials .testimonial .info-bar .info-initials.color-primary {
  background-color: #78B478;
}
.carousel-testimonials .testimonial .info-bar .info-initials.color-tertiary {
  background-color: #0A5064;
}
.carousel-testimonials .testimonial .info-bar .info-initials.color-grey-alt {
  background-color: #1E8C96;
}
.carousel-testimonials .testimonial .info-bar .info-initials span {
  color: #fff;
  font-family: "Open Sans", sans-serif;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.5px;
}
.carousel-testimonials .testimonial .info-bar .info-content {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.carousel-testimonials .testimonial .info-bar .info-content figure {
  display: inline-flex;
  gap: 0.25rem;
}
.carousel-testimonials .testimonial .info-bar cite {
  color: #fff;
  font-family: "Open Sans", sans-serif;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.5px;
  margin-top: 0;
}
.carousel-testimonials .tns-controls {
  top: auto;
  bottom: -32px;
  margin-top: 0;
  position: relative;
}
@media (min-width: 40rem) {
  .carousel-testimonials .tns-controls {
    bottom: -64px;
  }
}
.carousel-testimonials .tns-controls button {
  width: 11px;
  height: 18px;
  background-size: contain;
  z-index: 10;
}
.carousel-testimonials .tns-controls button:first-child {
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="11" height="18" viewBox="0 0 11 18" fill="none"><path d="M10 1L2 9L10 17" stroke="white" stroke-width="2" stroke-linecap="round"/></svg>');
  background-position: left center;
}
.carousel-testimonials .tns-controls button:last-child {
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="11" height="18" viewBox="0 0 11 18" fill="none"><path d="M1 17L9 9L0.999999 1" stroke="white" stroke-width="2" stroke-linecap="round"/></svg>');
  background-position: right center;
}
.carousel-testimonials .tns-nav {
  width: 100%;
  max-width: 84rem;
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: row;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  padding: 0rem 3rem;
}
@media (min-width: 40rem) {
  .carousel-testimonials .tns-nav {
    bottom: -82px;
    padding: 0;
  }
}
.carousel-testimonials .tns-nav button {
  counter-increment: slideCount;
  width: 12px;
  height: 12px;
  position: relative;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  transition: 0.2s ease-in-out;
}
.carousel-testimonials .tns-nav button.tns-nav-active {
  width: 18px;
  height: 18px;
  background-color: #fff;
  transition: 0.2s ease-in-out;
}

.bg-black .carousel-testimonials .testimonial {
  border: 1px solid #fff;
}
.bg-black .carousel-testimonials .testimonial .info-bar * {
  color: #fff;
}
.bg-black .carousel-testimonials .tns-nav button {
  background-color: rgba(255, 255, 255, 0.5);
}
.bg-black .carousel-testimonials .tns-nav button.tns-nav-active {
  background-color: #fff;
}
.bg-black .carousel-testimonials .tns-controls button:first-child {
  background-image: url("../img/arrow-prev-white.svg");
}
.bg-black .carousel-testimonials .tns-controls button:last-child {
  background-image: url("../img/arrow-next-white.svg");
}

.image-block {
  height: 100%;
  position: relative;
}
.image-block picture {
  position: absolute;
  width: 100%;
  height: 100%;
}
@media (max-width: 55rem) {
  .image-block picture {
    position: relative;
  }
}
.image-block picture img {
  object-fit: cover;
  height: 100%;
  border-radius: 1.5rem;
}
@media (max-width: 55rem) {
  .image-block picture img {
    max-height: 400px;
  }
}

.object-fit img {
  object-fit: cover;
}

.object-contain img {
  object-fit: contain;
}

.copyright {
  position: relative;
  padding: 2rem 0 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.copyright::before {
  position: absolute;
  border-top: 1px solid #FFFBFE;
  content: "";
  top: 0;
  left: 50%;
  transform: translate(-50%);
  width: 100%;
  height: 1px;
  display: block;
  opacity: 0.25;
}

.dbwd {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.dbwd p,
.dbwd figure {
  display: inline-block;
  vertical-align: top;
}
.dbwd p {
  color: #EEE;
  font-family: "Open Sans", sans-serif;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1px;
}
.dbwd img {
  display: block;
}

.cta-bar {
  background-color: #78B478;
  color: #fff;
  padding: 2rem 0;
}
.cta-bar > .container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer {
  background-color: #0A2832;
  color: #fff;
  padding-top: 3rem;
}
.footer figure {
  display: flex;
  gap: 1.5rem 3rem;
}
@media (max-width: 55rem) {
  .footer figure {
    flex-direction: column;
  }
}
.footer figure figcaption {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.footer figure figcaption p {
  color: #fff;
  text-align: left;
  font-family: "Open Sans", sans-serif;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.5px;
}
.footer figure figcaption p:last-child {
  margin-top: 0.5rem;
}
.footer figure figcaption p .link {
  text-decoration: none;
}
.footer figure figcaption p .link:hover {
  color: #78B478;
}
.footer figure .socialmedia {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}
@media (max-width: 55rem) {
  .footer figure .socialmedia {
    justify-content: flex-start;
  }
}
.footer figure .socialmedia .linkedin {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #fff;
  text-indent: 200%;
  overflow: hidden;
  display: block;
  position: relative;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" xmlns:xlink="http://www.w3.org/1999/xlink" width="512" height="512" x="0" y="0" viewBox="0 0 100 100" style="enable-background:new 0 0 512 512" xml:space="preserve"><g><path d="M90 90V60.7c0-14.4-3.1-25.4-19.9-25.4-8.1 0-13.5 4.4-15.7 8.6h-.2v-7.3H38.3V90h16.6V63.5c0-7 1.3-13.7 9.9-13.7 8.5 0 8.6 7.9 8.6 14.1v26H90zM11.3 36.6h16.6V90H11.3zM19.6 10c-5.3 0-9.6 4.3-9.6 9.6s4.3 9.7 9.6 9.7 9.6-4.4 9.6-9.7-4.3-9.6-9.6-9.6z" fill="%23ffffff" opacity="1" data-original="%23000000"></path></g></svg>');
  background-size: 22px;
  background-position: center center;
  background-repeat: no-repeat;
}
.footer figure .socialmedia .linkedin:hover {
  background-color: #78B478;
  border: 1px solid #78B478;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" xmlns:xlink="http://www.w3.org/1999/xlink" width="512" height="512" x="0" y="0" viewBox="0 0 100 100" style="enable-background:new 0 0 512 512" xml:space="preserve" class=""><g><path d="M90 90V60.7c0-14.4-3.1-25.4-19.9-25.4-8.1 0-13.5 4.4-15.7 8.6h-.2v-7.3H38.3V90h16.6V63.5c0-7 1.3-13.7 9.9-13.7 8.5 0 8.6 7.9 8.6 14.1v26H90zM11.3 36.6h16.6V90H11.3zM19.6 10c-5.3 0-9.6 4.3-9.6 9.6s4.3 9.7 9.6 9.7 9.6-4.4 9.6-9.7-4.3-9.6-9.6-9.6z" fill="%230a2832" opacity="1" data-original="%23000000" class=""></path></g></svg>');
}
.footer .footer-nav {
  padding-top: 3rem;
  display: flex;
  justify-content: space-between;
  margin-bottom: 3rem;
}
@media (max-width: 55rem) {
  .footer .footer-nav {
    flex-direction: column;
    gap: 1rem;
  }
}
.footer .footer-nav .h3 {
  color: #fff;
  font-family: "Mada", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  line-height: 36px;
  letter-spacing: 0.25px;
  text-transform: capitalize;
}
.footer .footer-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer .footer-nav ul li {
  color: #fff;
  text-align: left;
  font-family: "Open Sans", sans-serif;
  font-size: 0.688rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.5px;
}
.footer .footer-nav ul li a:hover {
  color: #78B478;
}
.footer .footer-nav .nav-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (max-width: 55rem) {
  .footer .footer-nav .nav-col {
    flex-basis: auto !important;
  }
}
.footer .footer-nav .nav-col:nth-child(1) {
  flex-basis: 86px;
}
.footer .footer-nav .nav-col:nth-child(2) {
  flex-basis: 247px;
}
.footer .footer-nav .nav-col:nth-child(3) {
  flex-basis: 244px;
}
.footer .footer-nav .nav-col:nth-child(4) {
  flex-basis: 172px;
}
.footer .footer-nav .nav-col:nth-child(5) {
  flex-basis: 185px;
}
@media (min-width: 55rem) {
  .footer p {
    color: var(--Off-White, #FFFBFE);
    font-family: "Open Sans", sans-serif;
    font-size: 0.75rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 1px;
  }
}

.footer__logo {
  display: inline-block;
  margin-right: 0.75rem;
}

/*# sourceMappingURL=style.css.map */
