/*  ==========================================================================
    Switch Reclamebureau
    Rendementsweg 2Q
    3641 SK Mijdrecht
    0297 - 525580
    ==========================================================================  */
/*  ===== Reset =====  */
*, html {
  /* Auto Calc Padding */
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /* Smooth Font */
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  -o-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
  padding: 0;
  outline: none;
  word-break: break-word;
}

header, header *, main, main *, footer, footer * {
  display: block;
  float: left;
  width: 100%;
}

a, span, strong, li, sub, sup, br, em, del {
  display: inline-block;
  width: auto;
  float: none;
}

script,
style {
  display: none;
}

a, a:visited, a:hover {
  text-decoration: none;
}

ul {
  list-style-type: none;
}

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

textarea {
  resize: vertical;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  border-radius: 0px;
}

select::-ms-expand { /* for IE 11 */
  display: none;
  border: none;
  border-radius: 0px;
}

input[type=date]::-webkit-inner-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  display: none;
}

::-webkit-input-placeholder,
:-moz-placeholder,
::-moz-placeholder,
:-ms-input-placeholder {
  color: #E2E2E2;
}

.flexslider {
  display: block;
  float: left;
  width: 100%;
  border-radius: 0px;
  margin: 0px;
  padding: 0px;
  border: none;
}

.flex-control-nav {
  display: none;
}

/**
 * Owl Carousel v2.2.0
 * Copyright 2013-2016 David Deutsch
 * Licensed under MIT (https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE)
 */
/*
 *  Owl Carousel - Core
 */
.owl-carousel, .owl-carousel .owl-item {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}

.owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
}

.owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

.owl-item img {
  display: block;
  width: 100%;
  -webkit-transform-style: preserve-3d;
}

.owl-nav.disabled,
.owl-dots.disabled {
  display: none;
}

.owl-nav .owl-prev,
.owl-nav .owl-next,
.owl-dot {
  cursor: pointer;
  cursor: hand;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel.owl-loaded {
  display: block;
}

.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}

.owl-carousel.owl-hidden {
  opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}

.owl-carousel.owl-drag .owl-item {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel.owl-grab {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.owl-carousel.owl-rtl {
  direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
  float: right;
}

/* No Js */
.no-js {
  display: block;
}

/*
 *  Owl Carousel - Animate Plugin
 */
.animated {
  -webkit-animation-duration: 1000ms;
  animation-duration: 1000ms;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.owl-animated-in {
  z-index: 0;
}

.owl-animated-out {
  z-index: 1;
}

.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  -webkit-transition: height 500ms ease-in-out;
  transition: height 500ms ease-in-out;
}

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-item .owl-lazy {
  opacity: 0;
  -webkit-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}

.owl-item img.owl-lazy {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

/*
 * 	Owl Carousel - Video Plugin
 */
.owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}

.owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: -webkit-transform 100ms ease;
  -webkit-transition: -webkit-transform 100ms ease;
  transition: transform 100ms ease;
  transition: transform 100ms ease, -webkit-transform 100ms ease;
}

.owl-video-play-icon:hover {
  -webkit-transform: scale(1.3, 1.3);
  transform: scale(1.3, 1.3);
}

.owl-video-playing .owl-video-tn,
.owl-video-playing .owl-video-play-icon {
  display: none;
}

.owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}

.owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}

/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.2
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2017 Daniel Eden
 */
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

.animated.bounceIn, .animated.bounceOut, .animated.flipOutX, .animated.flipOutY {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
}

@-webkit-keyframes bounce {
  20%, 53%, 80%, from, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
@keyframes bounce {
  20%, 53%, 80%, from, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

@-webkit-keyframes flash {
  50%, from, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
@keyframes flash {
  50%, from, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}

@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

@-webkit-keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}

@-webkit-keyframes shake {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
@keyframes shake {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}

@-webkit-keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.headShake {
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-name: headShake;
  animation-name: headShake;
}

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}

@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}

@-webkit-keyframes wobble {
  from {
    -webkit-transform: none;
    transform: none;
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes wobble {
  from {
    -webkit-transform: none;
    transform: none;
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

@-webkit-keyframes jello {
  11.1%, from, to {
    -webkit-transform: none;
    transform: none;
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.39062deg) skewY(0.39062deg);
    transform: skewX(0.39062deg) skewY(0.39062deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.19531deg) skewY(-0.19531deg);
    transform: skewX(-0.19531deg) skewY(-0.19531deg);
  }
}
@keyframes jello {
  11.1%, from, to {
    -webkit-transform: none;
    transform: none;
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.39062deg) skewY(0.39062deg);
    transform: skewX(0.39062deg) skewY(0.39062deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.19531deg) skewY(-0.19531deg);
    transform: skewX(-0.19531deg) skewY(-0.19531deg);
  }
}
.jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  transform-origin: center;
}

@-webkit-keyframes bounceIn {
  20%, 40%, 60%, 80%, from, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes bounceIn {
  20%, 40%, 60%, 80%, from, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
  60%, 75%, 90%, from, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes bounceInDown {
  60%, 75%, 90%, from, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
  60%, 75%, 90%, from, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes bounceInLeft {
  60%, 75%, 90%, from, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
  60%, 75%, 90%, from, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes bounceInRight {
  60%, 75%, 90%, from, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
  60%, 75%, 90%, from, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInUp {
  60%, 75%, 90%, from, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.bounceOut {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

@-webkit-keyframes flip {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
@keyframes flip {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}

@-webkit-keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}

@-webkit-keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.flipOutX {
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
.flipOutY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}

@-webkit-keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

@-webkit-keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}

@-webkit-keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}

@-webkit-keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}

@-webkit-keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
@keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}

@-webkit-keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}

@-webkit-keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}

@-webkit-keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
@keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.hinge {
  -webkit-animation-name: hinge;
  animation-name: hinge;
}

@-webkit-keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }
  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }
  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.jackInTheBox {
  -webkit-animation-name: jackInTheBox;
  animation-name: jackInTheBox;
}

@-webkit-keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}

@-webkit-keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
@keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}

@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

@-webkit-keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}

@-webkit-keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}

@-webkit-keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}

@-webkit-keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}

@-webkit-keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
@keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
}

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}
.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
}

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}
.zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
}

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
}

@-webkit-keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

@-webkit-keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}

@-webkit-keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}

@-webkit-keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}

:root {
  --color-1: #4b4b4d;
  --color-2: #ffffff;
  --color-3: #f0f0ef;
  --color-4: #bcbcbc;
  --color-5: #676767;
  --color-6: #00703c;
  --color-7: #76bf42;
  --color-8: #ffde00;
  --color-9: #ccab00;
  --color-10: #005f2d;
}

.dotdotdot--1 {
  display: -webkit-box !important;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.dotdotdot--2 {
  display: -webkit-box !important;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.dotdotdot--3 {
  display: -webkit-box !important;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.dotdotdot--4 {
  display: -webkit-box !important;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.dotdotdot--5 {
  display: -webkit-box !important;
  -webkit-line-clamp: 5;
  line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.dotdotdot--6 {
  display: -webkit-box !important;
  -webkit-line-clamp: 6;
  line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.dotdotdot--7 {
  display: -webkit-box !important;
  -webkit-line-clamp: 7;
  line-clamp: 7;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.dotdotdot--8 {
  display: -webkit-box !important;
  -webkit-line-clamp: 8;
  line-clamp: 8;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.dotdotdot--9 {
  display: -webkit-box !important;
  -webkit-line-clamp: 9;
  line-clamp: 9;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.dotdotdot--10 {
  display: -webkit-box !important;
  -webkit-line-clamp: 10;
  line-clamp: 10;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.dotdotdot--11 {
  display: -webkit-box !important;
  -webkit-line-clamp: 11;
  line-clamp: 11;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.dotdotdot--12 {
  display: -webkit-box !important;
  -webkit-line-clamp: 12;
  line-clamp: 12;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: "Fira Sans", sans-serif;
  font-size: 16px;
  letter-spacing: 0px;
  line-height: 20px;
  font-weight: 300;
  color: #4b4b4d;
}
body.menu-open {
  position: fixed;
}
body.search-open {
  overflow: hidden;
  position: fixed;
}

h1,
h2,
h3,
p {
  margin: 0 0 20px 0;
  padding: 0px;
}

h1,
h2 {
  font-size: 32px;
  line-height: 36px;
  font-weight: 700;
  text-transform: uppercase;
}

h3 {
  text-transform: uppercase;
  font-size: 24px;
  line-height: 28px;
  font-weight: 700;
  color: #00703c;
}

strong {
  font-weight: 400;
}

p strong {
  font-weight: 400;
}
p img {
  float: none;
  display: inline;
}
p.uppercase {
  text-transform: uppercase;
}
p.dotdotdot {
  opacity: 0;
  -webkit-transition: 0.5s all ease-in-out;
  transition: 0.5s all ease-in-out;
}
p.dotdotdot.loaded {
  opacity: 1;
}
p a,
p a:visited a:active,
p a:focus {
  color: #00703c;
  display: inline-block;
  -webkit-transition: all ease-in-out 0.5s;
  transition: all ease-in-out 0.5s;
}
p a:hover {
  color: rgba(0, 112, 60, 0.6);
}
p i {
  width: auto;
  float: none;
  display: inline;
}
p em {
  width: auto;
  float: none;
  display: inline;
}

ul {
  margin: 0 0 20px 0;
}
ul li {
  width: 100%;
  padding: 0 0 0 24px;
  position: relative;
  text-align: left;
}
ul li:not(:last-child) {
  margin: 0 0 5px 0;
}
ul li:before {
  content: "\f45c";
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
  color: #00703c;
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 100%;
  font-size: 4px;
  line-height: 20px;
  text-align: center;
}
ul li a,
ul li a:visited a:active,
ul li a:focus {
  color: #00703c;
  display: inline-block;
  -webkit-transition: all ease-in-out 0.5s;
  transition: all ease-in-out 0.5s;
}
ul li a:hover {
  color: rgba(0, 112, 60, 0.6);
}

img {
  width: 100%;
  height: auto;
}

figure {
  margin: 0;
}

.slider {
  opacity: 0;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  overflow: hidden;
  height: 0px;
}
.slider.owl-loaded {
  opacity: 1;
  height: auto;
}
.slider .owl-nav {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  z-index: 1;
  min-height: 50px;
  pointer-events: none;
}
.slider .owl-nav .owl-prev,
.slider .owl-nav .owl-next {
  position: absolute;
  left: 40px;
  top: 0;
  height: 50px;
  line-height: 50px;
  text-align: center;
  padding: 0 20px;
  text-transform: uppercase;
  max-width: 280px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  font-weight: 400;
  font-size: 16px;
  max-width: 70px;
  background: transparent;
  color: #ffffff;
  text-align: center;
  overflow: hidden;
  border: none;
  pointer-events: auto;
}
.slider .owl-nav .owl-prev::before,
.slider .owl-nav .owl-next::before {
  content: "";
  position: absolute;
  top: -15px;
  right: -50px;
  width: 100px;
  height: 100px;
  border-radius: 6px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  background: #ffde00;
  -webkit-transition: all ease-in-out 0.5s;
  transition: all ease-in-out 0.5s;
}
.slider .owl-nav .owl-prev::after,
.slider .owl-nav .owl-next::after {
  content: "\f053";
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
  text-align: right;
  color: #00703c;
  position: absolute;
  right: 20px;
  top: 0;
  height: 100%;
  line-height: 20px;
  font-size: 100%;
  width: 50px;
  height: 50px;
  line-height: 50px;
  -webkit-transition: all ease-in-out 0.5s;
  transition: all ease-in-out 0.5s;
}
.slider .owl-nav .owl-prev:hover,
.slider .owl-nav .owl-next:hover {
  color: #ffffff;
}
.slider .owl-nav .owl-prev:hover::before,
.slider .owl-nav .owl-next:hover::before {
  background: #00703c;
}
.slider .owl-nav .owl-prev:hover::after,
.slider .owl-nav .owl-next:hover::after {
  color: #ffffff;
}
.slider .owl-nav .owl-next {
  left: auto;
  right: 40px;
}
.slider .owl-nav .owl-next::before {
  content: "";
  top: auto;
  bottom: -15px;
  right: auto;
  left: -50px;
}
.slider .owl-nav .owl-next::after {
  content: "\f054";
  text-align: left;
  left: 20px;
  right: auto;
}

.btn {
  display: block;
  float: left;
  width: 100%;
  height: 50px;
  line-height: 50px;
  text-align: center;
  margin: 0 0 20px 0;
  padding: 0 20px;
  text-transform: uppercase;
  max-width: 280px;
  position: relative;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  -webkit-transition: all 250ms ease;
  transition: all 250ms ease;
  font-weight: 400;
}
.btn:hover {
  cursor: pointer;
}
.btn.btn-color {
  background: #ffde00;
  color: #ffffff;
  text-align: center;
}
.btn.btn-color:hover {
  background: #00703c;
}
.btn.btn-border {
  background: transparent;
  border: 1px solid #ffffff;
  color: #ffffff;
}
.btn.btn-border:hover {
  background: rgba(0, 112, 60, 0.6);
}
.btn.btn-gradient {
  background: #00703c;
  color: #ffffff;
  background: -webkit-gradient(linear, left top, right top, color-stop(50%, #00703c), color-stop(50%, #ffde00));
  background: linear-gradient(to right, #00703c 50%, #ffde00 50%);
  background-size: 200% 100%;
  background-position: left bottom;
  text-align: left;
  overflow: hidden;
  z-index: 1;
}
.btn.btn-gradient:hover {
  background-position: right bottom;
  color: #00703c;
}
.btn.btn-gradient:hover::before {
  right: 200px;
}
@media only screen and (max-width: 479px) {
  .btn.btn-gradient:hover::before {
    right: 160px;
  }
}
.btn.btn-gradient::before {
  content: "";
  position: absolute;
  top: -15px;
  right: -50px;
  width: 100px;
  height: 100px;
  border-radius: 6px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  background: #ffde00;
  z-index: -1;
  -webkit-transition: all 250ms ease;
  transition: all 250ms ease;
}
.btn.btn-gradient::after {
  content: "\f054";
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
  font-size: 16px;
  text-align: center;
  color: #00703c;
  background: transparent;
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  line-height: 20px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  -webkit-transition: all 250ms ease;
  transition: all 250ms ease;
}
.btn.btn-gradient.btn-download::after {
  content: "\f019";
}
.btn.btn-gradient.btn-archive::after {
  content: "\f187";
}
.btn.btn-gradient.btn-youtube::after {
  content: "\f04b";
}
.btn.btn-small {
  position: absolute;
  left: auto;
  right: 0;
  top: -35px;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  width: 70px;
  overflow: hidden;
  margin: 0;
  text-indent: 9999px;
  -webkit-transition: inherit;
  transition: inherit;
}
.btn.btn-small::before {
  content: "";
  position: absolute;
  top: -15px;
  right: -50px;
  width: 100px;
  height: 100px;
  border-radius: 6px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  background: #ffde00;
  z-index: -1;
  -webkit-transition: inherit;
  transition: inherit;
}
.btn.btn-small::after {
  content: "\f054";
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
  font-size: 16px;
  text-align: center;
  color: #00703c;
  background: transparent;
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  line-height: 20px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  -webkit-transition: inherit;
  transition: inherit;
  text-indent: 0px;
}
.btn.btn-small:hover {
  color: #ffffff;
}
.btn.btn-small:hover::before {
  background: #00703c;
}
.btn.btn-small:hover::after {
  color: #ffffff;
}
.btn.btn-small.btn-prev::after {
  content: "\f053";
}
.btn.btn-small.btn-next::after {
  content: "\f054";
}
.btn.btn-small.btn-search::after {
  content: "\f002";
}
.btn.btn-small.btn-inverse {
  background: #00703c;
}
.btn.btn-small.btn-inverse:hover {
  background: #ffde00;
}

form {
  margin: 0 0 20px 0;
}
form label {
  display: none !important;
}
form input:-webkit-autofill {
  -webkit-text-fill-color: #4b4b4d;
}
form input {
  border: none;
  margin: 0 0 2px 0;
  padding: 15px 20px;
  font-family: "Fira Sans", sans-serif;
  font-size: 16px;
  line-height: 20px;
  font-weight: 300;
  color: #4b4b4d;
}
form input#wpforms-field_hp {
  display: none;
}
form input.wpforms-error::-webkit-input-placeholder {
  color: #cc0000;
  opacity: 1;
  font-weight: 400;
}
form input.wpforms-error::-moz-placeholder {
  color: #cc0000;
  opacity: 1;
  font-weight: 400;
}
form input.wpforms-error:-ms-input-placeholder {
  color: #cc0000;
  opacity: 1;
  font-weight: 400;
}
form input.wpforms-error::-ms-input-placeholder {
  color: #cc0000;
  opacity: 1;
  font-weight: 400;
}
form input.wpforms-error::placeholder {
  color: #cc0000;
  opacity: 1;
  font-weight: 400;
}
form input[type=submit] {
  font-weight: 400;
}
form .select {
  position: relative;
}
form .select select {
  border: none;
  margin: 0 0 2px 0;
  padding: 13px 20px;
  font-family: "Fira Sans", sans-serif;
  font-size: 16px;
  line-height: 20px;
  font-weight: 300;
  background: #ffffff;
  color: #bcbcbc;
}
form .select select#wpforms-field_hp {
  display: none;
}
form .select select.wpforms-error {
  color: #00703c;
}
form .select:after {
  content: "\f078";
  font-family: "Font Awesome 5 Pro";
  position: absolute;
  top: 0;
  right: 0;
  height: 46px;
  width: 46px;
  background: #ffde00;
  color: #00703c;
  text-align: center;
  line-height: 46px;
  pointer-events: none;
  -webkit-transition: all ease-in-out 0.5s;
  transition: all ease-in-out 0.5s;
  font-weight: 400;
}
form .select:hover:after {
  background: #00703c;
  color: #ffffff;
}
form textarea {
  border: none;
  margin: 0 0 2px 0;
  padding: 13px 20px;
  font-family: "Fira Sans", sans-serif;
  font-size: 16px;
  line-height: 20px;
  font-weight: 300;
  color: #4b4b4d;
  resize: vertical;
}
form textarea.wpforms-error::-webkit-input-placeholder {
  color: #00703c;
  opacity: 1;
  font-weight: 400;
}
form textarea.wpforms-error::-moz-placeholder {
  color: #00703c;
  opacity: 1;
  font-weight: 400;
}
form textarea.wpforms-error:-ms-input-placeholder {
  color: #00703c;
  opacity: 1;
  font-weight: 400;
}
form textarea.wpforms-error::-ms-input-placeholder {
  color: #00703c;
  opacity: 1;
  font-weight: 400;
}
form textarea.wpforms-error::placeholder {
  color: #00703c;
  opacity: 1;
  font-weight: 400;
}
form button {
  font-size: 16px;
  line-height: 20px;
  border: none;
  margin: 38px 0 20px 0 !important;
}

.wpforms-field.expert {
  height: 0;
  overflow: hidden;
}

.form-container.full form .left-container {
  width: calc(50% - 20px);
  margin: 0 40px 0 0;
}
@media only screen and (max-width: 799px) {
  .form-container.full form .left-container {
    width: 100%;
  }
}
.form-container.full form .right-container {
  width: calc(50% - 20px);
}
@media only screen and (max-width: 799px) {
  .form-container.full form .right-container {
    width: 100%;
  }
}

::-moz-selection {
  background: #ccc;
  text-shadow: none;
}

::selection {
  background: #ccc;
  text-shadow: none;
}

::-webkit-input-placeholder {
  /* Microsoft Edge */
  color: #bcbcbc;
  opacity: 1;
}

::-moz-placeholder {
  /* Microsoft Edge */
  color: #bcbcbc;
  opacity: 1;
}

:-ms-input-placeholder {
  /* Microsoft Edge */
  color: #bcbcbc;
  opacity: 1;
}

::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #bcbcbc;
  opacity: 1;
}

::placeholder {
  /* Microsoft Edge */
  color: #bcbcbc;
  opacity: 1;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
}

/* ===== grid ===== */
/* main */
main.sidebar {
  max-width: 1280px;
  margin: 60px auto 0 auto;
  float: none;
  padding: 0 0px;
  position: relative;
  height: 100%;
  overflow: hidden;
}
@media only screen and (max-width: 1599px) {
  main.sidebar {
    max-width: 1440px;
  }
}
@media only screen and (max-width: 1439px) {
  main.sidebar {
    max-width: 1280px;
  }
}
@media only screen and (max-width: 1279px) {
  main.sidebar {
    max-width: 1120px;
  }
}
@media only screen and (max-width: 1119px) {
  main.sidebar {
    max-width: 960px;
  }
}
@media only screen and (max-width: 959px) {
  main.sidebar {
    max-width: 800px;
  }
}
@media only screen and (max-width: 799px) {
  main.sidebar {
    max-width: 640px;
  }
}
@media only screen and (max-width: 639px) {
  main.sidebar {
    max-width: 480px;
  }
}
@media only screen and (max-width: 479px) {
  main.sidebar {
    max-width: 320px;
  }
}
main.sidebar > article {
  width: calc(100% - 360px);
}
@media only screen and (max-width: 959px) {
  main.sidebar > article {
    width: 100%;
  }
}
main.sidebar aside {
  float: right;
  width: 360px;
  margin: 0 0 20px 0;
  overflow: hidden;
}
@media only screen and (max-width: 959px) {
  main.sidebar aside {
    width: 320px;
    float: none;
    margin: 0 auto;
    overflow: hidden;
  }
}

.sidebar-container {
  background: #f0f0ef;
}

/* article */
/* row */
.row {
  width: 100%;
  position: relative;
}
.row.no-gutter .wrapper {
  padding: 0;
}

.row.full-width .wrapper {
  max-width: 100%;
  overflow: hidden;
}

/* wrapper */
.wrapper {
  max-width: 1600px;
  margin: 0 auto;
  float: none;
  padding: 0 40px;
  position: relative;
  height: 100%;
}
@media only screen and (max-width: 479px) {
  .wrapper {
    padding: 0 20px;
  }
}
.wrapper:after {
  clear: both;
  content: "";
  display: block;
}
@media only screen and (max-width: 1599px) {
  .wrapper {
    max-width: 1440px;
  }
}
@media only screen and (max-width: 1439px) {
  .wrapper {
    max-width: 1280px;
  }
}
@media only screen and (max-width: 1279px) {
  .wrapper {
    max-width: 1120px;
  }
}
@media only screen and (max-width: 1119px) {
  .wrapper {
    max-width: 960px;
  }
}
@media only screen and (max-width: 959px) {
  .wrapper {
    max-width: 800px;
  }
}
@media only screen and (max-width: 799px) {
  .wrapper {
    max-width: 640px;
  }
}
@media only screen and (max-width: 639px) {
  .wrapper {
    max-width: 480px;
  }
}
@media only screen and (max-width: 479px) {
  .wrapper {
    max-width: 100%;
  }
}

/* inner row */
.inner-row {
  width: calc(100% + 40px);
  margin: 0 -40px 0 0;
}

/* col */
[class*=col-] {
  padding: 0 40px 0 0;
}

[class*=col-].clear {
  clear: both;
}

.col-1-1 {
  width: 100%;
}

.col-3-4 {
  width: 75%;
}

.col-2-3 {
  width: 66.66%;
}

.col-1-2 {
  width: 50%;
}

.col-1-3 {
  width: 33.33%;
}

.col-1-4 {
  width: 25%;
}

.col-1-8 {
  width: 12.5%;
}

/* module */
.module {
  position: relative;
}
.module.small {
  max-width: 640px;
  position: relative;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}
.module.medium {
  max-width: 960px;
  position: relative;
  float: none;
  margin: 0 auto;
}
.module.large {
  max-width: 1280px;
  position: relative;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}

/* ===== content ===== */
ul {
  display: inline-block;
  width: 100%;
}
ul li {
  display: inline-block;
  width: 100%;
}

.otgs-development-site-front-end {
  display: none;
}

/* ===== main ===== */
header {
  max-height: 120px;
  -webkit-transition: max-height ease-in-out 0.25s;
  transition: max-height ease-in-out 0.25s;
  z-index: 10;
  position: relative;
  margin: 0 auto;
  float: none;
}
header section {
  padding-top: 0 !important;
}
header .wpml-ls-item {
  width: 24px !important;
}
header.mobile {
  overflow: hidden;
}
header.mobile .row.menu .search-button-container {
  margin: 0 70px 0 0;
}
header.mobile.active {
  overflow: visible !important;
}
header.mobile.active .row.menu {
  background: #ffffff;
}
header.mobile.active .row.menu .search-button-container a::after {
  color: #00703c !important;
}
header.mobile.active .row.menu .search-button-container a:hover::after {
  color: rgba(0, 112, 60, 0.6) !important;
}
header.mobile.active .row.menu .logo-container a img {
  opacity: 0;
  visibility: hidden;
}
header.mobile.active .row.menu .logo-container a img.alternative {
  opacity: 1;
  visibility: visible;
}
@media only screen and (max-width: 479px) {
  header.mobile.active .row.menu .logo-container {
    height: 50px;
    margin: 35px 0;
  }
}
header.search {
  overflow: visible !important;
}
header.search .row.menu {
  background: #ffffff;
}
header.search .row.menu nav.desktop {
  opacity: 0 !important;
  visibility: hidden;
}
header.search .row.menu .search-button-container {
  opacity: 0;
  visibility: hidden;
}
header.search .row.menu .search-button-container a::after {
  color: #00703c !important;
}
header.search .row.menu .search-button-container a:hover::after {
  color: rgba(0, 112, 60, 0.6) !important;
}
header.search .row.menu .logo-container a img {
  opacity: 0;
  visibility: hidden;
}
header.search .row.menu .logo-container a img.alternative {
  opacity: 1;
  visibility: visible;
}
@media only screen and (max-width: 479px) {
  header.search .row.menu .logo-container {
    height: 50px;
    margin: 35px 0;
  }
}
header.active {
  max-height: 2000px;
}
@media only screen and (max-width: 1119px) {
  header.active .row.mobile {
    visibility: visible;
    z-index: 1;
    overflow-x: hidden;
    opacity: 1;
    display: block;
  }
}
header .row.search {
  position: fixed;
  top: 120px;
  left: 0px;
  width: 100%;
  height: calc(100vh - 120px);
  background-color: #f0f0ef;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  opacity: 0;
  visibility: hidden;
}
header .row.search.open {
  opacity: 1;
  z-index: 999;
  display: block;
  visibility: visible;
}
header .row.search .wrapper {
  pointer-events: none;
  position: relative;
}
header .row.search .wrapper .close {
  display: block;
  position: absolute;
  right: 90px;
  top: -80px;
  width: 40px;
  height: 40px;
  margin: 5px;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  z-index: 1;
  pointer-events: auto;
}
@media only screen and (max-width: 1119px) {
  header .row.search .wrapper .close {
    display: none;
  }
}
header .row.search .wrapper .close span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: #00703c;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  pointer-events: none;
}
header .row.search .wrapper .close span:nth-child(1) {
  top: 13px;
  width: 0%;
  left: 50%;
}
header .row.search .wrapper .close span:nth-child(2) {
  top: 19px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
header .row.search .wrapper .close span:nth-child(3) {
  top: 19px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
header .row.search .wrapper .close span:nth-child(4) {
  top: 19px;
  width: 0%;
  left: 50%;
}
header .row.search .wrapper .close:hover {
  cursor: pointer;
}
header .row.search .wrapper .close:hover span {
  background: rgba(0, 112, 60, 0.6);
}
header .row.search .wrapper form {
  position: absolute;
  width: 50%;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  pointer-events: auto;
  overflow: hidden;
}
@media only screen and (max-width: 1119px) {
  header .row.search .wrapper form {
    width: 280px;
  }
}
header .row.search .wrapper form .searchinput-container {
  width: calc(100% - 120px);
}
@media only screen and (max-width: 1119px) {
  header .row.search .wrapper form .searchinput-container {
    width: calc(100% - 70px);
  }
}
header .row.search .wrapper form .searchinput-container .searchinput {
  margin: 0;
  height: 80px;
  padding: 0 40px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
@media only screen and (max-width: 1119px) {
  header .row.search .wrapper form .searchinput-container .searchinput {
    height: 50px;
    padding: 0 20px;
  }
}
header .row.search .wrapper form .searchsubmit-container {
  width: 120px;
  position: relative;
  background: #ffffff;
}
header .row.search .wrapper form .searchsubmit-container::before {
  content: "";
  position: absolute;
  top: -24px;
  right: -80px;
  width: 160px;
  height: 160px;
  border-radius: 6px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  background: #ffde00;
  z-index: 0;
  -webkit-transition: 0.5s all ease-in-out;
  transition: 0.5s all ease-in-out;
}
@media only screen and (max-width: 1119px) {
  header .row.search .wrapper form .searchsubmit-container::before {
    top: -15px;
    right: -50px;
    width: 100px;
    height: 100px;
  }
}
@media only screen and (max-width: 1119px) {
  header .row.search .wrapper form .searchsubmit-container {
    width: 70px;
  }
}
header .row.search .wrapper form .searchsubmit-container .searchsubmit {
  margin: 0;
  width: 120px;
  height: 80px;
  background: transparent;
  position: relative;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
@media only screen and (max-width: 1119px) {
  header .row.search .wrapper form .searchsubmit-container .searchsubmit {
    width: 70px;
    height: 50px;
  }
}
header .row.search .wrapper form .searchsubmit-container .searchsubmit:hover {
  cursor: pointer;
}
header .row.search .wrapper form .searchsubmit-container::after {
  content: "\f002";
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
  font-size: 32px;
  color: #00703c;
  position: absolute;
  right: 0;
  top: 0;
  width: 80px;
  height: 80px;
  text-align: center;
  line-height: 80px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  pointer-events: none;
}
@media only screen and (max-width: 1119px) {
  header .row.search .wrapper form .searchsubmit-container::after {
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 16px;
  }
}
header .row.search .wrapper form .searchsubmit-container:hover {
  cursor: pointer;
}
header .row.search .wrapper form .searchsubmit-container:hover::before {
  background: #00703c;
}
header .row.search .wrapper form .searchsubmit-container:hover::after {
  color: #ffffff;
}
header .row.menu {
  -webkit-transition: 0.5s all ease-in-out;
  transition: 0.5s all ease-in-out;
}
header .row.menu .module {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
header .row.menu.scroll {
  background: #ffffff;
}
header .row.menu .logo-container {
  width: 244px;
  height: 60px;
  margin: 30px 40px 30px 0;
  position: relative;
  z-index: 2;
  -ms-flex-negative: 1;
      flex-shrink: 1;
}
@media only screen and (max-width: 1279px) {
  header .row.menu .logo-container {
    width: 196px;
    height: 48px;
  }
}
@media only screen and (max-width: 479px) {
  header .row.menu .logo-container {
    width: 156px;
    height: 32px;
    margin: 35px 0;
  }
}
header .row.menu .logo-container a {
  display: block;
  float: left;
  width: 100%;
  height: 100%;
  text-indent: -999999px;
  text-align: left;
}
header .row.menu .logo-container a img {
  height: 100%;
  width: auto;
  opacity: 1;
  visibility: visible;
  -webkit-transition: 0.5s all ease-in-out;
  transition: 0.5s all ease-in-out;
}
header .row.menu .logo-container a img.alternative {
  opacity: 0;
  visibility: hidden;
  position: relative;
  top: -60px;
  margin-left: 32px;
}
@media only screen and (max-width: 1279px) {
  header .row.menu .logo-container a img.alternative {
    top: -45px;
  }
}
@media only screen and (max-width: 479px) {
  header .row.menu .logo-container a img.alternative {
    top: -55px;
  }
}
header .row.menu nav.desktop {
  width: auto;
  float: left;
  margin: 0 auto 0 0;
  height: 120px;
  opacity: 1;
}
@media only screen and (max-width: 1119px) {
  header .row.menu nav.desktop {
    display: none;
    opacity: 0;
  }
}
header .row.menu nav.desktop > .menu-container,
header .row.menu nav.desktop > .menu {
  width: auto;
}
header .row.menu nav.desktop > .menu-container ul,
header .row.menu nav.desktop > .menu ul {
  width: auto;
  padding: 0px;
}
header .row.menu nav.desktop > .menu-container ul li,
header .row.menu nav.desktop > .menu ul li {
  display: block;
  float: left;
  width: auto;
  position: relative;
  padding: 0;
  margin: 0;
  position: relative;
  text-decoration: none;
  list-style-type: none;
  -webkit-transition: background-color ease-in-out 0.25s;
  transition: background-color ease-in-out 0.25s;
}
header .row.menu nav.desktop > .menu-container ul li:before,
header .row.menu nav.desktop > .menu ul li:before {
  display: none;
}
header .row.menu nav.desktop > .menu-container ul li a,
header .row.menu nav.desktop > .menu ul li a {
  z-index: 1;
  display: block;
  float: left;
  height: 120px;
  line-height: 120px;
  padding: 0px 20px;
  text-align: center;
  color: #ffffff;
  font-weight: 400;
  text-transform: uppercase;
  position: relative;
}
header .row.menu nav.desktop > .menu-container ul li a:hover,
header .row.menu nav.desktop > .menu ul li a:hover {
  color: rgba(255, 255, 255, 0.6);
}
header .row.menu nav.desktop > .menu-container ul li.current-menu-item a:after, header .row.menu nav.desktop > .menu-container ul li.current-page-parent a:after, header .row.menu nav.desktop > .menu-container ul li.current-page-ancestor a:after,
header .row.menu nav.desktop > .menu ul li.current-menu-item a:after,
header .row.menu nav.desktop > .menu ul li.current-page-parent a:after,
header .row.menu nav.desktop > .menu ul li.current-page-ancestor a:after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
header .row.menu nav.desktop > .menu-container ul li.menu-item-has-children,
header .row.menu nav.desktop > .menu ul li.menu-item-has-children {
  position: relative;
  z-index: 1;
}
header .row.menu nav.desktop > .menu-container ul li.menu-item-has-children ul,
header .row.menu nav.desktop > .menu ul li.menu-item-has-children ul {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 100%;
  left: 0;
  width: 200px;
  -webkit-transform: translateY(-50px);
          transform: translateY(-50px);
  z-index: -1;
  -webkit-transition: all ease-in-out 0.25s, visibility 0s linear 0.3s, z-index 0s linear 0.01s;
  transition: all ease-in-out 0.25s, visibility 0s linear 0.3s, z-index 0s linear 0.01s;
  width: 200px;
  left: 50%;
  margin: 0 0 0 -100px;
  padding: 10px 20px;
  background: #ffffff;
  border-radius: 5px;
  -webkit-box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.4);
          box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.4);
}
header .row.menu nav.desktop > .menu-container ul li.menu-item-has-children ul::before,
header .row.menu nav.desktop > .menu ul li.menu-item-has-children ul::before {
  content: "\f0d8";
  position: absolute;
  top: -10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 50px;
  height: 20px;
  font-family: "Font Awesome 5 Pro";
  font-size: 64px;
  font-weight: 900;
  line-height: 20px;
  color: #ffffff;
  text-align: center;
}
header .row.menu nav.desktop > .menu-container ul li.menu-item-has-children ul li,
header .row.menu nav.desktop > .menu ul li.menu-item-has-children ul li {
  width: 100%;
}
header .row.menu nav.desktop > .menu-container ul li.menu-item-has-children ul li a,
header .row.menu nav.desktop > .menu ul li.menu-item-has-children ul li a {
  margin: 0;
  width: 100%;
  text-align: left;
  color: #4b4b4d;
  font-weight: 400;
  padding: 0 0;
  height: 50px;
  line-height: 50px;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
header .row.menu nav.desktop > .menu-container ul li.menu-item-has-children ul li a:after,
header .row.menu nav.desktop > .menu ul li.menu-item-has-children ul li a:after {
  content: "";
  width: 100%;
  height: 1px;
  background: #f0f0ef;
  bottom: 0;
  left: 0;
  position: absolute;
}
header .row.menu nav.desktop > .menu-container ul li.menu-item-has-children ul li a:hover,
header .row.menu nav.desktop > .menu ul li.menu-item-has-children ul li a:hover {
  color: rgba(75, 75, 77, 0.6);
}
header .row.menu nav.desktop > .menu-container ul li.menu-item-has-children ul li:last-child a::after,
header .row.menu nav.desktop > .menu ul li.menu-item-has-children ul li:last-child a::after {
  display: none;
}
header .row.menu nav.desktop > .menu-container ul li.menu-item-has-children ul li.current-menu-item a, header .row.menu nav.desktop > .menu-container ul li.menu-item-has-children ul li.current-page-parent a, header .row.menu nav.desktop > .menu-container ul li.menu-item-has-children ul li.current-page-ancestor a,
header .row.menu nav.desktop > .menu ul li.menu-item-has-children ul li.current-menu-item a,
header .row.menu nav.desktop > .menu ul li.menu-item-has-children ul li.current-page-parent a,
header .row.menu nav.desktop > .menu ul li.menu-item-has-children ul li.current-page-ancestor a {
  color: #76bf42;
}
header .row.menu nav.desktop > .menu-container ul li.menu-item-has-children.menu-item-12961 ul, header .row.menu nav.desktop > .menu-container ul li.menu-item-has-children.menu-item-5421 ul,
header .row.menu nav.desktop > .menu ul li.menu-item-has-children.menu-item-12961 ul,
header .row.menu nav.desktop > .menu ul li.menu-item-has-children.menu-item-5421 ul {
  width: 500px;
  margin: 0 0 0 -250px;
}
header .row.menu nav.desktop > .menu-container ul li.menu-item-has-children.menu-item-12961 ul::after, header .row.menu nav.desktop > .menu-container ul li.menu-item-has-children.menu-item-5421 ul::after,
header .row.menu nav.desktop > .menu ul li.menu-item-has-children.menu-item-12961 ul::after,
header .row.menu nav.desktop > .menu ul li.menu-item-has-children.menu-item-5421 ul::after {
  content: "";
  position: absolute;
  top: -100px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 500px;
  height: 100px;
  font-family: "Font Awesome 5 Pro";
  font-size: 64px;
  font-weight: 900;
  line-height: 20px;
  color: #ffffff;
  text-align: center;
  background: transparent;
  z-index: 0;
}
header .row.menu nav.desktop > .menu-container ul li.menu-item-has-children.menu-item-12961 ul li, header .row.menu nav.desktop > .menu-container ul li.menu-item-has-children.menu-item-5421 ul li,
header .row.menu nav.desktop > .menu ul li.menu-item-has-children.menu-item-12961 ul li,
header .row.menu nav.desktop > .menu ul li.menu-item-has-children.menu-item-5421 ul li {
  width: calc(50% - 20px);
}
header .row.menu nav.desktop > .menu-container ul li.menu-item-has-children.menu-item-12961 ul li:nth-child(odd), header .row.menu nav.desktop > .menu-container ul li.menu-item-has-children.menu-item-5421 ul li:nth-child(odd),
header .row.menu nav.desktop > .menu ul li.menu-item-has-children.menu-item-12961 ul li:nth-child(odd),
header .row.menu nav.desktop > .menu ul li.menu-item-has-children.menu-item-5421 ul li:nth-child(odd) {
  margin: 0 40px 0 0;
}
header .row.menu nav.desktop > .menu-container ul li.menu-item-has-children.menu-item-12961 ul li a, header .row.menu nav.desktop > .menu-container ul li.menu-item-has-children.menu-item-5421 ul li a,
header .row.menu nav.desktop > .menu ul li.menu-item-has-children.menu-item-12961 ul li a,
header .row.menu nav.desktop > .menu ul li.menu-item-has-children.menu-item-5421 ul li a {
  padding: 0 0 0 40px;
}
header .row.menu nav.desktop > .menu-container ul li.menu-item-has-children.menu-item-12961 ul li a:before, header .row.menu nav.desktop > .menu-container ul li.menu-item-has-children.menu-item-5421 ul li a:before,
header .row.menu nav.desktop > .menu ul li.menu-item-has-children.menu-item-12961 ul li a:before,
header .row.menu nav.desktop > .menu ul li.menu-item-has-children.menu-item-5421 ul li a:before {
  content: "";
  width: 26px;
  height: 24px;
  top: 13px;
  left: 0;
  position: absolute;
  color: #00703c;
}
header .row.menu nav.desktop > .menu-container ul li.menu-item-has-children.menu-item-12961 ul li.pontons a:before, header .row.menu nav.desktop > .menu-container ul li.menu-item-has-children.menu-item-5421 ul li.pontons a:before,
header .row.menu nav.desktop > .menu ul li.menu-item-has-children.menu-item-12961 ul li.pontons a:before,
header .row.menu nav.desktop > .menu ul li.menu-item-has-children.menu-item-5421 ul li.pontons a:before {
  background: url(../img/svg/pontons.svg) no-repeat center center;
}
header .row.menu nav.desktop > .menu-container ul li.menu-item-has-children.menu-item-12961 ul li.fundering a:before, header .row.menu nav.desktop > .menu-container ul li.menu-item-has-children.menu-item-5421 ul li.fundering a:before,
header .row.menu nav.desktop > .menu ul li.menu-item-has-children.menu-item-12961 ul li.fundering a:before,
header .row.menu nav.desktop > .menu ul li.menu-item-has-children.menu-item-5421 ul li.fundering a:before {
  background: url(../img/svg/fundering.svg) no-repeat center center;
}
header .row.menu nav.desktop > .menu-container ul li.menu-item-has-children.menu-item-12961 ul li.kranen a:before, header .row.menu nav.desktop > .menu-container ul li.menu-item-has-children.menu-item-5421 ul li.kranen a:before,
header .row.menu nav.desktop > .menu ul li.menu-item-has-children.menu-item-12961 ul li.kranen a:before,
header .row.menu nav.desktop > .menu ul li.menu-item-has-children.menu-item-5421 ul li.kranen a:before {
  background: url(../img/svg/kranen.svg) no-repeat center center;
}
header .row.menu nav.desktop > .menu-container ul li.menu-item-has-children.menu-item-12961 ul li.rijplaten a:before, header .row.menu nav.desktop > .menu-container ul li.menu-item-has-children.menu-item-5421 ul li.rijplaten a:before,
header .row.menu nav.desktop > .menu ul li.menu-item-has-children.menu-item-12961 ul li.rijplaten a:before,
header .row.menu nav.desktop > .menu ul li.menu-item-has-children.menu-item-5421 ul li.rijplaten a:before {
  background: url(../img/svg/rijplaten.svg) no-repeat center center;
}
header .row.menu nav.desktop > .menu-container ul li.menu-item-has-children.menu-item-12961 ul li.schotten a:before, header .row.menu nav.desktop > .menu-container ul li.menu-item-has-children.menu-item-5421 ul li.schotten a:before,
header .row.menu nav.desktop > .menu ul li.menu-item-has-children.menu-item-12961 ul li.schotten a:before,
header .row.menu nav.desktop > .menu ul li.menu-item-has-children.menu-item-5421 ul li.schotten a:before {
  background: url(../img/svg/schotten.svg) no-repeat center center;
}
header .row.menu nav.desktop > .menu-container ul li.menu-item-has-children.menu-item-12961 ul li.infra a:before, header .row.menu nav.desktop > .menu-container ul li.menu-item-has-children.menu-item-5421 ul li.infra a:before,
header .row.menu nav.desktop > .menu ul li.menu-item-has-children.menu-item-12961 ul li.infra a:before,
header .row.menu nav.desktop > .menu ul li.menu-item-has-children.menu-item-5421 ul li.infra a:before {
  background: url(../img/svg/infra.svg) no-repeat center center;
}
header .row.menu nav.desktop > .menu-container ul li.menu-item-has-children.menu-item-12961 ul li.grond-milieu a:before, header .row.menu nav.desktop > .menu-container ul li.menu-item-has-children.menu-item-5421 ul li.grond-milieu a:before,
header .row.menu nav.desktop > .menu ul li.menu-item-has-children.menu-item-12961 ul li.grond-milieu a:before,
header .row.menu nav.desktop > .menu ul li.menu-item-has-children.menu-item-5421 ul li.grond-milieu a:before {
  background: url(../img/svg/grond-milieu.svg) no-repeat center center;
}
header .row.menu nav.desktop > .menu-container ul li.menu-item-has-children.menu-item-12961 ul li.geluidsschermen a:before, header .row.menu nav.desktop > .menu-container ul li.menu-item-has-children.menu-item-5421 ul li.geluidsschermen a:before,
header .row.menu nav.desktop > .menu ul li.menu-item-has-children.menu-item-12961 ul li.geluidsschermen a:before,
header .row.menu nav.desktop > .menu ul li.menu-item-has-children.menu-item-5421 ul li.geluidsschermen a:before {
  background: url(../img/svg/geluidsschermen.svg) no-repeat center center;
}
header .row.menu nav.desktop > .menu-container ul li.menu-item-has-children.menu-item-12961 ul li.bruggen a:before, header .row.menu nav.desktop > .menu-container ul li.menu-item-has-children.menu-item-5421 ul li.bruggen a:before,
header .row.menu nav.desktop > .menu ul li.menu-item-has-children.menu-item-12961 ul li.bruggen a:before,
header .row.menu nav.desktop > .menu ul li.menu-item-has-children.menu-item-5421 ul li.bruggen a:before {
  background: url(../img/svg/bruggen.svg) no-repeat center center;
}
header .row.menu nav.desktop > .menu-container ul li.menu-item-has-children.menu-item-12961 ul li.transport a:before, header .row.menu nav.desktop > .menu-container ul li.menu-item-has-children.menu-item-5421 ul li.transport a:before,
header .row.menu nav.desktop > .menu ul li.menu-item-has-children.menu-item-12961 ul li.transport a:before,
header .row.menu nav.desktop > .menu ul li.menu-item-has-children.menu-item-5421 ul li.transport a:before {
  background: url(../img/svg/transport.svg) no-repeat center center;
}
header .row.menu nav.desktop > .menu-container ul li.menu-item-has-children.menu-item-12961 ul li.prefab-kelders a:before, header .row.menu nav.desktop > .menu-container ul li.menu-item-has-children.menu-item-5421 ul li.prefab-kelders a:before,
header .row.menu nav.desktop > .menu ul li.menu-item-has-children.menu-item-12961 ul li.prefab-kelders a:before,
header .row.menu nav.desktop > .menu ul li.menu-item-has-children.menu-item-5421 ul li.prefab-kelders a:before {
  background: url(../img/svg/prefab-kelders.svg) no-repeat center center;
}
header .row.menu nav.desktop > .menu-container ul li.menu-item-has-children.menu-item-12961 ul li.calamiteiten a:before, header .row.menu nav.desktop > .menu-container ul li.menu-item-has-children.menu-item-5421 ul li.calamiteiten a:before,
header .row.menu nav.desktop > .menu ul li.menu-item-has-children.menu-item-12961 ul li.calamiteiten a:before,
header .row.menu nav.desktop > .menu ul li.menu-item-has-children.menu-item-5421 ul li.calamiteiten a:before {
  background: url(../img/svg/calamiteiten.svg) no-repeat center center;
}
header .row.menu nav.desktop > .menu-container ul li.menu-item-has-children.menu-item-12961 ul li.datacenters a:before, header .row.menu nav.desktop > .menu-container ul li.menu-item-has-children.menu-item-5421 ul li.datacenters a:before,
header .row.menu nav.desktop > .menu ul li.menu-item-has-children.menu-item-12961 ul li.datacenters a:before,
header .row.menu nav.desktop > .menu ul li.menu-item-has-children.menu-item-5421 ul li.datacenters a:before {
  background: url(../img/svg/datacenters.svg) no-repeat center center;
}
header .row.menu nav.desktop > .menu-container ul li.menu-item-has-children.menu-item-12961 ul li:last-child:nth-child(odd) a:after, header .row.menu nav.desktop > .menu-container ul li.menu-item-has-children.menu-item-5421 ul li:last-child:nth-child(odd) a:after,
header .row.menu nav.desktop > .menu ul li.menu-item-has-children.menu-item-12961 ul li:last-child:nth-child(odd) a:after,
header .row.menu nav.desktop > .menu ul li.menu-item-has-children.menu-item-5421 ul li:last-child:nth-child(odd) a:after {
  display: none;
}
header .row.menu nav.desktop > .menu-container ul li.menu-item-has-children.menu-item-12961 ul li:nth-last-child(2):nth-child(odd) a:after, header .row.menu nav.desktop > .menu-container ul li.menu-item-has-children.menu-item-5421 ul li:nth-last-child(2):nth-child(odd) a:after,
header .row.menu nav.desktop > .menu ul li.menu-item-has-children.menu-item-12961 ul li:nth-last-child(2):nth-child(odd) a:after,
header .row.menu nav.desktop > .menu ul li.menu-item-has-children.menu-item-5421 ul li:nth-last-child(2):nth-child(odd) a:after {
  display: none;
}
header .row.menu nav.desktop > .menu-container ul li.menu-item-has-children:hover ul,
header .row.menu nav.desktop > .menu ul li.menu-item-has-children:hover ul {
  visibility: visible;
  opacity: 1;
  z-index: -1;
  -webkit-transform: translateY(0%);
          transform: translateY(0%);
  -webkit-transition-delay: 0s, 0s, 0.3s;
          transition-delay: 0s, 0s, 0.3s; /* this removes the transition delay so the menu will be visible while the other styles transition */
  cursor: pointer;
  pointer-events: auto;
}
header .row.menu .language-container {
  width: 100px;
  justify-self: flex-end;
  -ms-flex-item-align: center;
      align-self: center;
}
header .row.menu .language-container ul {
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
}
header .row.menu .language-container ul li {
  padding: 0;
  margin: 0;
}
header .row.menu .language-container ul li::before {
  content: none;
}
header .row.menu .language-container ul li a {
  z-index: 1;
  display: block;
  float: left;
  height: 120px;
  line-height: 120px;
  padding: 0px;
  text-align: center;
  color: #ffffff;
  font-weight: 400;
  text-transform: uppercase;
  position: relative;
}
header .row.menu .language-container ul li a:hover {
  color: rgba(255, 255, 255, 0.6);
}
header .row.menu .language-container ul li a.wpml-ls-current-language {
  font-weight: bold;
}
header .row.menu .language-container ul li.wpml-ls-current-language a {
  font-weight: 900;
  text-decoration: underline;
}
header .row.menu .search-button-container {
  width: 50px;
  justify-self: flex-end;
  opacity: 1;
  -webkit-transition: 0.5s all ease-in-out;
  transition: 0.5s all ease-in-out;
}
@media only screen and (max-width: 1119px) {
  header .row.menu .search-button-container {
    display: none;
  }
}
header .row.menu .search-button-container a {
  z-index: 1;
  display: block;
  float: left;
  height: 50px;
  width: 50px;
  margin: 35px 0 35px 10px;
  position: relative;
}
header .row.menu .search-button-container a::after {
  content: "\f002";
  font-family: "Font Awesome 5 Pro";
  font-size: 24px;
  font-weight: 400;
  color: #ffffff;
  background: transparent;
  position: absolute;
  left: 0;
  top: 0;
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
header .row.menu .search-button-container a:hover::after {
  color: rgba(255, 255, 255, 0.6);
}
header .row.menu .menu-button {
  display: none;
  position: absolute;
  right: 0;
  top: 20px;
  width: 40px;
  height: 40px;
  margin: 16px 32px 16px 16px;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
  pointer-events: auto;
}
@media only screen and (max-width: 1119px) {
  header .row.menu .menu-button {
    display: block;
  }
}
header .row.menu .menu-button span {
  pointer-events: none;
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: #ffffff;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
header .row.menu .menu-button span:nth-child(1) {
  top: 6px;
}
header .row.menu .menu-button span:nth-child(2), header .row.menu .menu-button span:nth-child(3) {
  top: 19px;
}
header .row.menu .menu-button span:nth-child(4) {
  top: 32px;
}
header .row.menu .menu-button:hover {
  cursor: pointer;
}
header .row.menu .menu-button:hover span {
  background: rgba(255, 255, 255, 0.6);
}
header .row.menu .menu-button.active span {
  background: #f0f0ef;
}
header .row.menu .menu-button.active span:nth-child(1) {
  top: 13px;
  width: 0%;
  left: 50%;
}
header .row.menu .menu-button.active span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
header .row.menu .menu-button.active span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
header .row.menu .menu-button.active span:nth-child(4) {
  top: 19px;
  width: 0%;
  left: 50%;
}
header .row.menu .menu-button.active:hover span {
  background: rgba(240, 240, 239, 0.6);
}
header .row.menu .menu-button.search {
  top: 20px;
}
header .row.menu .menu-button.search span {
  background: #00703c;
}
header .row.menu .menu-button.search span:nth-child(1) {
  top: 13px;
  width: 0%;
  left: 50%;
}
header .row.menu .menu-button.search span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
header .row.menu .menu-button.search span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
header .row.menu .menu-button.search span:nth-child(4) {
  top: 19px;
  width: 0%;
  left: 50%;
}
header .row.menu .menu-button.search:hover span {
  background: rgba(0, 112, 60, 0.6);
}
header .row.mobile {
  position: fixed;
  top: 120px;
  left: 0px;
  width: 100%;
  height: calc(100vh - 120px);
  background-color: #f0f0ef;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  overflow: scroll;
  opacity: 0;
  display: none;
}
header .row.mobile nav.mobile {
  width: 100%;
}
header .row.mobile nav.mobile .menu-container {
  width: 100%;
}
header .row.mobile nav.mobile .menu-container ul {
  width: 100%;
  margin: 40px 0 0 0;
  padding: 0;
  width: 100%;
  max-width: 280px;
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
header .row.mobile nav.mobile .menu-container ul li {
  display: block;
  float: left;
  padding: 0;
  position: relative;
  text-decoration: none;
  list-style-type: none;
  -webkit-transition: background-color ease-in-out 0.25s;
  transition: background-color ease-in-out 0.25s;
  margin: 0;
}
header .row.mobile nav.mobile .menu-container ul li:not(:first-of-type) {
  margin: 10px 0 0 0;
}
header .row.mobile nav.mobile .menu-container ul li a {
  height: 50px;
  padding: 0 20px;
  width: 100%;
  line-height: 50px;
  text-align: center;
  background: transparent;
  background: #ffffff;
  color: #4b4b4d;
  text-transform: uppercase;
  text-align: left;
  position: relative;
  -webkit-transition: 0.5s all ease-in-out, 0.25s color ease-in-out;
  transition: 0.5s all ease-in-out, 0.25s color ease-in-out;
}
header .row.mobile nav.mobile .menu-container ul li a::after {
  content: attr(title);
  position: absolute;
  top: 0;
  left: 0px;
  padding: 0 20px;
  width: 100%;
  height: 100%;
  color: transparent;
  font-weight: 400;
}
header .row.mobile nav.mobile .menu-container ul li:before {
  display: none;
}
header .row.mobile nav.mobile .menu-container ul li.current-menu-item > a, header .row.mobile nav.mobile .menu-container ul li.current-page-parent > a, header .row.mobile nav.mobile .menu-container ul li.current-page-ancestor > a {
  background: #00703c;
  color: #ffffff;
  font-weight: 400;
}
header .row.mobile nav.mobile .menu-container ul li.active > a {
  background: #00703c;
  color: transparent;
}
header .row.mobile nav.mobile .menu-container ul li.active > a::after {
  color: #ffffff;
}
header .row.mobile nav.mobile .menu-container ul li.menu-item-has-children {
  position: relative;
  z-index: 1;
}
header .row.mobile nav.mobile .menu-container ul li.menu-item-has-children .open-sub {
  position: absolute;
  top: 0;
  right: 0;
  width: 70px;
  height: 50px;
  background: transparent;
  overflow: hidden;
}
header .row.mobile nav.mobile .menu-container ul li.menu-item-has-children .open-sub::before {
  content: "";
  position: absolute;
  top: -15px;
  right: -50px;
  width: 100px;
  height: 100px;
  border-radius: 6px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  background: #ffde00;
  -webkit-transition: all ease-in-out 0.5s;
  transition: all ease-in-out 0.5s;
}
header .row.mobile nav.mobile .menu-container ul li.menu-item-has-children .open-sub::after {
  content: "\f078";
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
  text-align: center;
  color: #00703c;
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  line-height: 20px;
  font-size: 100%;
  width: 50px;
  height: 50px;
  line-height: 50px;
  -webkit-transition: all ease-in-out 0.5s;
  transition: all ease-in-out 0.5s;
}
header .row.mobile nav.mobile .menu-container ul li.menu-item-has-children .open-sub.active:after {
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}
header .row.mobile nav.mobile .menu-container ul li.menu-item-has-children .open-sub:hover {
  cursor: pointer;
}
header .row.mobile nav.mobile .menu-container ul li.menu-item-has-children ul {
  width: 100%;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  display: none;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
header .row.mobile nav.mobile .menu-container ul li.menu-item-has-children ul li {
  margin: 0;
}
header .row.mobile nav.mobile .menu-container ul li.menu-item-has-children ul li:first-of-type {
  margin: 10px 0 0 0;
}
header .row.mobile nav.mobile .menu-container ul li.menu-item-has-children ul li a {
  margin: 0;
  width: 100%;
  text-align: left;
  background: #ffffff;
  color: #4b4b4d;
  padding: 0 20px;
  height: 50px;
  line-height: 50px;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  margin: 0 0 1px 0;
}
header .row.mobile nav.mobile .menu-container ul li.menu-item-has-children ul li:last-of-type a {
  margin: 0;
}
header .row.mobile nav.mobile .menu-container ul li.menu-item-has-children ul li.current-menu-item a, header .row.mobile nav.mobile .menu-container ul li.menu-item-has-children ul li.current-page-parent a, header .row.mobile nav.mobile .menu-container ul li.menu-item-has-children ul li.current-page-ancestor a {
  color: #76bf42;
}
header .row.mobile nav.mobile .menu-container ul li.menu-item-has-children ul.active {
  max-height: 2000px;
  display: inline-block;
}
header .row.mobile nav.mobile .search-button-container {
  position: relative;
  left: 50%;
  width: 280px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  margin: 10px 0 40px 0;
}
header .row.mobile nav.mobile .search-button-container a::after {
  content: "\f002";
  font-weight: 400;
}

#CybotCookiebotDialog label {
  display: block !important;
}
#CybotCookiebotDialog li.CookieCard::before {
  content: none;
}

.card-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2rem;
}
.card-container .card {
  width: 100%;
  max-width: 350px;
}

.card {
  --_animation_distance: 90px;
  --_animation_half_distance: calc(var(--_animation_distance) / 2);
  --_animation_duration: 250ms;
  --_animation_ease: ease;
  --_background_color: var(--color-2);
  background-color: var(--_background_color);
  --_text_color: var(--color-1);
  --_accent_color: var(--color-8);
  --_accent_color_dark: var(--color-9);
  --_accent_color_text: var(--color-6);
}
.card.pinned {
  --_accent_color: var(--color-6);
  --_accent_color_dark: var(--color-10);
  --_accent_color_text: var(--color-2);
}
.card a {
  display: block;
  float: left;
  width: 100%;
  position: relative;
}
.card a .date-container {
  position: absolute;
  left: -10px;
  top: -10px;
  width: 112px;
  height: 80px;
  -webkit-transition: all var(--_animation_duration) var(--_animation_ease);
  transition: all var(--_animation_duration) var(--_animation_ease);
  font-weight: 400;
  font-size: 16px;
  background: transparent;
  color: var(--_accent_color_text);
  overflow: hidden;
  z-index: 2;
  opacity: 1;
}
.card a .date-container::before {
  content: "";
  position: absolute;
  bottom: -24px;
  left: -80px;
  width: 160px;
  height: 160px;
  border-radius: 6px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  background: var(--_accent_color);
  -webkit-transition: all var(--_animation_duration) var(--_animation_ease);
  transition: all var(--_animation_duration) var(--_animation_ease);
}
.card a .date-container p {
  position: relative;
  display: block;
  text-align: center;
  padding: 17px 0;
  width: 80px;
  height: 80px;
  font-size: 28px;
  line-height: 28px;
  color: var(--_accent_color_text);
  font-weight: 500;
  -webkit-transition: all var(--_animation_duration) var(--_animation_ease);
  transition: all var(--_animation_duration) var(--_animation_ease);
}
.card a .date-container p span {
  display: block;
  float: left;
  width: 100%;
  font-size: 18px;
  line-height: 18px;
  text-transform: uppercase;
  font-weight: 400;
}
.card a .date-container img,
.card a .date-container svg {
  position: absolute;
  left: 1rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 2.5rem;
  height: 2.5rem;
  -o-object-fit: contain;
     object-fit: contain;
}
.card a .date-container img path,
.card a .date-container svg path {
  fill: var(--_accent_color_text);
}
.card a .date-container img {
  left: 0.5rem;
  width: 3.5rem;
  height: 3.5rem;
}
.card a .module {
  background: var(--_background_color);
  margin: 0 0 0 0;
  overflow: hidden;
  padding-bottom: var(--_content_height);
}
.card a .module span.label {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  padding: 0.25rem 0.5rem;
  background: var(--_accent_color);
  color: var(--_accent_color_text);
  font-size: 0.75rem;
  line-height: 1.2;
  font-weight: 500;
  z-index: 2;
}
.card a .module .image-container {
  height: auto;
  width: 100%;
  position: relative;
  overflow: hidden;
  aspect-ratio: 1/1;
  -webkit-transition: all var(--_animation_duration) var(--_animation_ease);
  transition: all var(--_animation_duration) var(--_animation_ease);
}
.card a .module .image-container:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left bottom, right top, from(rgba(75, 75, 77, 0)), to(rgba(75, 75, 77, 0.05)));
  background: linear-gradient(to top right, rgba(75, 75, 77, 0) 0%, rgba(75, 75, 77, 0.05) 100%);
  z-index: 1;
}
.card a .module .image-container img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.card a .module .image-container.video {
  position: relative;
}
.card a .module .image-container.video .image-conainer:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  height: 100px;
  width: 100px;
  background: url(../img/play-icon.png);
  background-size: cover;
  z-index: 1;
}
.card a .module .content-container {
  padding: 40px;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: auto;
  background-color: var(--_background_color);
  color: var(--_text_color);
  -webkit-transform: translateY(calc(var(--_content_height) * -1));
          transform: translateY(calc(var(--_content_height) * -1));
  -webkit-transition: all var(--_animation_duration) var(--_animation_ease);
  transition: all var(--_animation_duration) var(--_animation_ease);
  z-index: 1;
}
@media only screen and (max-width: 479px) {
  .card a .module .content-container {
    padding: 40px;
  }
}
.card a .module .content-container > * {
  opacity: 0;
  -webkit-transition: all var(--_animation_duration) var(--_animation_ease);
  transition: all var(--_animation_duration) var(--_animation_ease);
  z-index: 1;
}
.card a .module .content-container :first-child {
  opacity: 1;
}
.card a .module .content-container h3 {
  text-align: center;
}
.card a .module .content-container h3 + p {
  opacity: 0;
}
.card a .module .content-container p {
  text-align: center;
  min-height: 80px;
  max-height: 80px;
  margin: 0 0 40px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.card a .module .content-container p strong {
  width: 100%;
  text-transform: uppercase;
  margin: 0 0 0px 0;
}
.card a .module .content-container p img.emoji {
  display: none !important;
}
.card a .module .button-container .btn {
  margin-bottom: 0;
}
.card a .module .button-container .btn:not(.btn-small) {
  opacity: 0;
  -webkit-transition: all var(--_animation_duration) var(--_animation_ease);
  transition: all var(--_animation_duration) var(--_animation_ease);
}
.card a .module .button-container .btn.btn-small {
  top: auto;
  bottom: -15px;
  -webkit-transform: translateY(calc(var(--_content_height) * -1));
          transform: translateY(calc(var(--_content_height) * -1));
  z-index: 1;
  -webkit-transition: all var(--_animation_duration) var(--_animation_ease);
  transition: all var(--_animation_duration) var(--_animation_ease);
}
.card a:hover .image-container {
  -webkit-transform: translateY(calc(var(--_animation_half_distance) * -1)) scale(1.05);
          transform: translateY(calc(var(--_animation_half_distance) * -1)) scale(1.05);
  -webkit-filter: blur(4px) brightness(0.75);
          filter: blur(4px) brightness(0.75);
}
.card a:hover .content-container {
  -webkit-transform: translateY(calc(var(--_content_height_full) * -1));
          transform: translateY(calc(var(--_content_height_full) * -1));
}
.card a:hover .content-container > * {
  opacity: 1 !important;
}
.card a:hover .button-container .btn {
  opacity: 1 !important;
}
.card a:hover .button-container .btn.btn-small {
  -webkit-transform: translateY(calc(var(--_content_height_full) * -1));
          transform: translateY(calc(var(--_content_height_full) * -1));
}
.card a:hover .button-container .btn.btn-small::before {
  background: #00703c;
}
.card a:hover .button-container .btn.btn-small::after {
  color: #ffffff;
}
.card.has-icon a::before {
  content: "";
  position: absolute;
  top: 60px;
  left: -6px;
  width: 20px;
  height: 20px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  background: var(--_accent_color_dark);
  -webkit-transition: all var(--_animation_duration) var(--_animation_ease);
  transition: all var(--_animation_duration) var(--_animation_ease);
}
@media screen and (min-width: 732px) {
  .card.highlight {
    grid-column: span 2;
    max-width: 732px;
  }
  .card.highlight a .date-container, .card.highlight a::before {
    display: none;
  }
  .card.highlight .module {
    padding-bottom: 0;
  }
  .card.highlight .image-container {
    aspect-ratio: 4/3 !important;
  }
  .card.highlight .image-container:after {
    content: "";
    position: absolute;
    top: 5%;
    left: -30%;
    width: 100%;
    height: 120%;
    border-radius: 20px;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    background: transparent;
    background: -webkit-gradient(linear, left top, right top, color-stop(20%, rgba(0, 112, 60, 0.6)), to(rgba(255, 222, 0, 0.6)));
    background: linear-gradient(to right, rgba(0, 112, 60, 0.6) 20%, rgba(255, 222, 0, 0.6) 100%);
    z-index: 1;
  }
  .card.highlight .content-container {
    position: absolute;
    top: 0 !important;
    bottom: 0;
    left: 0;
    right: 0;
    height: auto;
    -webkit-transform: none !important;
            transform: none !important;
    background-color: transparent !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    text-align: left;
  }
  .card.highlight .content-container h3 {
    text-align: left !important;
    color: white;
  }
  .card.highlight .content-container .button-container {
    width: 280px;
  }
  .card.highlight .content-container .button-container,
  .card.highlight .content-container .btn {
    opacity: 1 !important;
  }
  .card.highlight .btn.btn-small {
    display: none !important;
  }
  .card.highlight:hover .image-container {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
    -webkit-filter: blur(4px) brightness(0.75);
            filter: blur(4px) brightness(0.75);
  }
  .card.highlight:hover .content-container > * {
    opacity: 1 !important;
  }
}

.row.hero {
  height: 100vh;
  width: 100%;
  position: relative;
  z-index: 0;
  margin: -120px 0 0 0;
  padding-top: 0;
}
@media only screen and (max-width: 1439px) {
  .row.hero {
    margin: -120px 0 40px 0;
  }
}
.row.hero:before {
  content: "";
  position: absolute;
  bottom: -340px;
  left: 50%;
  margin-left: -5000px;
  width: 10000px;
  height: 500px;
  background: #ffffff;
  z-index: 1;
  -webkit-transform: rotate(-5deg);
          transform: rotate(-5deg);
  -webkit-transform-origin: 50% 50% 0;
          transform-origin: 50% 50% 0;
}
@media only screen and (max-width: 1439px) {
  .row.hero:before {
    bottom: -420px;
  }
}
.row.hero:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background: #ffde00;
  background: -webkit-gradient(linear, left top, right bottom, color-stop(10%, rgba(0, 112, 60, 0.6)), color-stop(50%, rgba(118, 191, 66, 0.4)), color-stop(90%, rgba(255, 222, 0, 0.2)));
  background: linear-gradient(to bottom right, rgba(0, 112, 60, 0.6) 10%, rgba(118, 191, 66, 0.4) 50%, rgba(255, 222, 0, 0.2) 90%);
}
.row.hero .background-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  z-index: 0;
  overflow: hidden;
}
.row.hero .video-container {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 0;
  overflow: hidden;
}
@media only screen and (max-width: 799px) {
  .row.hero .video-container {
    display: none !important;
  }
}
.row.hero .video-container #video-iframe {
  width: 100vw;
  height: 56.25vw;
  min-height: 100vh;
  min-width: 177.77vh;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: -999;
}
.row.hero .hero-slider .owl-stage-outer .image-container {
  position: relative;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  width: 100vw;
  min-height: 100vh;
  z-index: 1;
}
.row.hero .hero-slider .wrapper {
  max-width: 1600px;
  margin: 0 auto;
  float: none;
  padding: 0 40px;
  position: relative;
  height: 100%;
}
@media only screen and (max-width: 959px) {
  .row.hero .hero-slider .wrapper {
    padding: 0 20px;
  }
}
.row.hero .hero-slider .wrapper:after {
  clear: both;
  content: "";
  display: block;
}
@media only screen and (max-width: 1599px) {
  .row.hero .hero-slider .wrapper {
    max-width: 1440px;
  }
}
@media only screen and (max-width: 1439px) {
  .row.hero .hero-slider .wrapper {
    max-width: 1280px;
  }
}
@media only screen and (max-width: 1279px) {
  .row.hero .hero-slider .wrapper {
    max-width: 1120px;
  }
}
@media only screen and (max-width: 1119px) {
  .row.hero .hero-slider .wrapper {
    max-width: 960px;
  }
}
@media only screen and (max-width: 959px) {
  .row.hero .hero-slider .wrapper {
    max-width: 800px;
  }
}
@media only screen and (max-width: 799px) {
  .row.hero .hero-slider .wrapper {
    max-width: 640px;
  }
}
@media only screen and (max-width: 639px) {
  .row.hero .hero-slider .wrapper {
    max-width: 480px;
  }
}
@media only screen and (max-width: 479px) {
  .row.hero .hero-slider .wrapper {
    max-width: 320px;
  }
}
.row.hero .hero-slider .owl-nav {
  max-width: 1600px;
  margin: 0px 0 0 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  margin: -65px 0 0 0;
}
@media only screen and (max-width: 959px) {
  .row.hero .hero-slider .owl-nav {
    margin: -25px 0 0 0;
  }
}
@media only screen and (max-width: 639px) {
  .row.hero .hero-slider .owl-nav {
    display: none;
  }
}
@media only screen and (max-width: 1599px) {
  .row.hero .hero-slider .owl-nav {
    max-width: 1440px;
  }
}
@media only screen and (max-width: 1439px) {
  .row.hero .hero-slider .owl-nav {
    max-width: 1280px;
  }
}
@media only screen and (max-width: 1279px) {
  .row.hero .hero-slider .owl-nav {
    max-width: 1120px;
  }
}
@media only screen and (max-width: 1119px) {
  .row.hero .hero-slider .owl-nav {
    max-width: 960px;
  }
}
@media only screen and (max-width: 959px) {
  .row.hero .hero-slider .owl-nav {
    max-width: 800px;
  }
}
@media only screen and (max-width: 799px) {
  .row.hero .hero-slider .owl-nav {
    max-width: 640px;
  }
}
@media only screen and (max-width: 639px) {
  .row.hero .hero-slider .owl-nav {
    max-width: 480px;
  }
}
@media only screen and (max-width: 479px) {
  .row.hero .hero-slider .owl-nav {
    max-width: 320px;
  }
}
.row.hero .hero-slider .owl-nav .owl-prev {
  left: auto;
  right: 114px;
}
@media only screen and (max-width: 959px) {
  .row.hero .hero-slider .owl-nav .owl-prev {
    right: 94px;
  }
}
.row.hero .hero-slider .owl-nav .owl-next {
  right: 40px;
}
@media only screen and (max-width: 959px) {
  .row.hero .hero-slider .owl-nav .owl-next {
    right: 20px;
  }
}
.row.hero .content-container {
  display: none;
  width: auto;
  position: absolute;
  left: 40px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
  margin: -40px 0 0 0;
  min-width: 280px;
}
@media only screen and (max-width: 1439px) {
  .row.hero .content-container {
    margin: 0;
  }
}
@media only screen and (max-width: 479px) {
  .row.hero .content-container {
    left: 20px;
    max-width: 320px;
  }
}
.row.hero .content-container::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 88px;
  width: 480px;
  height: 6px;
  background: #ffde00;
}
@media only screen and (max-width: 959px) {
  .row.hero .content-container::after {
    width: 280px;
  }
}
@media only screen and (max-width: 639px) {
  .row.hero .content-container::after {
    width: 280px;
  }
}
.row.hero .content-container .type-wrap {
  height: 140px;
  margin: 0 0 66px 0;
}
@media only screen and (max-width: 1119px) {
  .row.hero .content-container .type-wrap {
    height: 100px;
  }
}
@media only screen and (max-width: 959px) {
  .row.hero .content-container .type-wrap {
    height: 75px;
  }
}
@media only screen and (max-width: 639px) {
  .row.hero .content-container .type-wrap {
    height: 160px;
  }
}
.row.hero .content-container .type-wrap p#typed {
  color: #ffffff;
  width: auto;
  float: none;
  display: inline;
  margin: 0;
  font-size: 64px;
  line-height: 70px;
  font-weight: 700;
  text-transform: uppercase;
}
@media only screen and (max-width: 1119px) {
  .row.hero .content-container .type-wrap p#typed {
    font-size: 40px;
    line-height: 44px;
  }
}
@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.row.hero .content-container .type-wrap .typed-cursor {
  color: #ffffff;
  opacity: 1;
  -webkit-animation: blink 1s infinite;
          animation: blink 1s infinite;
  bottom: 0;
  font-size: 64px;
  line-height: 70px;
  font-weight: 300;
}
@media only screen and (max-width: 959px) {
  .row.hero .content-container .type-wrap .typed-cursor {
    font-size: 32px;
    line-height: 36px;
  }
}
.row.hero .content-container .button-container {
  clear: both;
}
.row.hero .content-container .button-container .btn {
  left: 0;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  margin: 0;
}
.row.hero .logo-container {
  position: absolute;
  bottom: 40px;
  left: 50%;
  margin-left: -120px;
  width: 240px;
  height: 240px;
  z-index: 1;
}
@media only screen and (max-width: 1439px) {
  .row.hero .logo-container {
    margin-left: -80px;
    width: 160px;
    height: 160px;
    bottom: 0px;
  }
}
.row.welcome {
  position: relative;
  z-index: 0;
  margin: 0 0 60px 0;
}
.row.welcome .col-1-1 .module {
  max-width: 800px;
  float: none;
  margin: 0 auto;
}
.row.welcome .col-1-1 .module h1 {
  text-align: center;
}
.row.welcome .col-1-1 .module p {
  text-align: center;
}

.row.news-social-intro {
  background: #ffde00;
  background: -webkit-gradient(linear, left top, right bottom, color-stop(50%, #76bf42), to(#00703c));
  background: linear-gradient(to bottom right, #76bf42 50%, #00703c 100%);
  margin: 0;
  z-index: 0;
  overflow: hidden;
  position: relative;
}
.row.news-social-intro:before {
  content: "";
  position: absolute;
  bottom: calc(100% - 20px);
  right: 0;
  width: 200%;
  height: 500px;
  background: #ffffff;
  -webkit-transform: rotate(-5deg);
          transform: rotate(-5deg);
  -webkit-transform-origin: 100% 0% 0;
          transform-origin: 100% 0% 0;
}
.row.news-social-intro:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40px;
  background: #ffffff;
  z-index: -1;
}
.row.news-social-intro .col-1-4 a {
  display: block;
  float: left;
  width: 100%;
}
.row.news-social-intro .col-1-4 a .module {
  background: #ffffff;
  margin: 40px 0 0 0;
}
.row.news-social-intro .col-1-4 a .module .image-container {
  height: 100%;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.row.news-social-intro .col-1-4 a .module .image-container:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left bottom, right top, from(rgba(75, 75, 77, 0)), to(rgba(75, 75, 77, 0.05)));
  background: linear-gradient(to top right, rgba(75, 75, 77, 0) 0%, rgba(75, 75, 77, 0.05) 100%);
  z-index: 1;
}
.row.news-social-intro .col-1-4 a .module .image-container .image-ratio {
  padding-top: 100%;
  background-size: cover;
  -moz-background-size: cover;
  background-position: center;
  position: relative;
  top: 0;
  -webkit-transition: 0.5s all ease-in-out;
  transition: 0.5s all ease-in-out;
}
.row.news-social-intro .col-1-4 a .module .image-container.video {
  position: relative;
}
.row.news-social-intro .col-1-4 a .module .image-container.video .image-ratio:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  height: 100px;
  width: 100px;
  background: url(../img/play-icon.png);
  background-size: cover;
  z-index: 1;
}
.row.news-social-intro .col-1-4 a .module .content-container {
  padding: 40px;
  position: relative;
  background: #f0f0ef;
  margin: 0px 0 0 0;
  height: 160px;
  overflow: hidden;
  -webkit-transition: 0.5s all ease-in-out;
  transition: 0.5s all ease-in-out;
  z-index: 1;
}
@media only screen and (max-width: 479px) {
  .row.news-social-intro .col-1-4 a .module .content-container {
    padding: 40px;
  }
}
.row.news-social-intro .col-1-4 a .module .content-container p {
  text-align: center;
  min-height: 80px;
  max-height: 80px;
  margin: 0 0 40px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #4b4b4d;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.row.news-social-intro .col-1-4 a .module .content-container p img.emoji {
  display: none !important;
}
.row.news-social-intro .col-1-4 a .module .button-container {
  position: relative;
  z-index: 1;
}
.row.news-social-intro .col-1-4 a .module .button-container .btn.btn-small {
  top: auto;
  bottom: 145px;
  -webkit-transition: 500ms all ease-in-out;
  transition: 500ms all ease-in-out;
}
.row.news-social-intro .col-1-4 a .module:hover .image-container .image-ratio {
  top: -45px;
}
.row.news-social-intro .col-1-4 a .module:hover .content-container {
  margin: -90px 0 0 0;
  height: 250px;
}
.row.news-social-intro .col-1-4 a .module:hover .button-container .btn.btn-small {
  top: auto;
  bottom: 235px;
}
.row.news-social-intro .col-1-4 a .module:hover .button-container .btn.btn-small::before {
  background: #00703c;
}
.row.news-social-intro .col-1-4 a .module:hover .button-container .btn.btn-small::after {
  color: #ffffff;
}
.row.news-social-intro .col-1-4:nth-of-type(1), .row.news-social-intro .col-1-4:nth-of-type(2) {
  width: 100%;
  grid-column: span 2;
}
.row.news-social-intro .col-1-4:nth-of-type(1) a .module, .row.news-social-intro .col-1-4:nth-of-type(2) a .module {
  margin: 0;
}
.row.news-social-intro .col-1-4:nth-of-type(1) a .module .image-container .image-ratio, .row.news-social-intro .col-1-4:nth-of-type(2) a .module .image-container .image-ratio {
  padding-top: 75%;
}
.row.news-social-intro .col-1-4:nth-of-type(1) a .module .image-container:after, .row.news-social-intro .col-1-4:nth-of-type(2) a .module .image-container:after {
  content: "";
  position: absolute;
  top: 5%;
  left: -30%;
  width: 100%;
  height: 120%;
  border-radius: 20px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  background: transparent;
  background: -webkit-gradient(linear, left top, right top, color-stop(20%, rgba(0, 112, 60, 0.6)), to(rgba(255, 222, 0, 0.6)));
  background: linear-gradient(to right, rgba(0, 112, 60, 0.6) 20%, rgba(255, 222, 0, 0.6) 100%);
  z-index: 1;
}
.row.news-social-intro .col-1-4:nth-of-type(1) a .module .content-container, .row.news-social-intro .col-1-4:nth-of-type(2) a .module .content-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 40px;
  background: transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: left;
  margin: 0;
  z-index: 1;
}
.row.news-social-intro .col-1-4:nth-of-type(1) a .module .content-container p, .row.news-social-intro .col-1-4:nth-of-type(2) a .module .content-container p {
  font-size: 32px;
  line-height: 36px;
  font-weight: 700;
  color: #ffffff;
  width: 100%;
  text-transform: uppercase;
  margin: 0;
  min-height: 0px;
  max-height: 144px;
  overflow: hidden;
  text-align: left;
  display: block;
}
@media only screen and (max-width: 639px) {
  .row.news-social-intro .col-1-4:nth-of-type(1) a .module .content-container p, .row.news-social-intro .col-1-4:nth-of-type(2) a .module .content-container p {
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
    max-height: 100px;
  }
}
.row.news-social-intro .col-1-4:nth-of-type(1) a .module .content-container .button-container .btn, .row.news-social-intro .col-1-4:nth-of-type(2) a .module .content-container .button-container .btn {
  margin: 20px 0 0 0;
  left: 0;
  -webkit-transform: translate(0);
          transform: translate(0);
  z-index: 1;
}
.row.news-social-intro .col-1-4:nth-of-type(1) a .module > .button-container, .row.news-social-intro .col-1-4:nth-of-type(2) a .module > .button-container {
  display: none;
}
.row.news-social-intro .col-1-4:nth-of-type(1) a:hover .image-container .image-ratio, .row.news-social-intro .col-1-4:nth-of-type(2) a:hover .image-container .image-ratio {
  top: 0px;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
@media only screen and (max-width: 1439px) {
  .row.news-social-intro .col-1-4 {
    width: 33.33%;
  }
  .row.news-social-intro .col-1-4:nth-child(6) {
    display: none;
  }
}
@media only screen and (max-width: 959px) {
  .row.news-social-intro .col-1-4 {
    width: 50%;
  }
  .row.news-social-intro .col-1-4:nth-child(1) {
    width: 100%;
  }
  .row.news-social-intro .col-1-4:nth-child(2) {
    margin: 40px 0 0 0;
  }
  .row.news-social-intro .col-1-4:nth-child(2) a .module {
    margin: 0;
  }
  .row.news-social-intro .col-1-4:nth-child(2) a .module .image-container .image-ratio {
    padding-top: 100%;
  }
  .row.news-social-intro .col-1-4:nth-child(2) a .module .image-container:after {
    display: none;
  }
  .row.news-social-intro .col-1-4:nth-child(2) a .module .content-container {
    position: relative;
    top: auto;
    left: auto;
    height: 160px;
    padding: 40px;
    background: transparent;
    display: block;
    text-align: center;
    margin: 0;
    background: #f0f0ef;
  }
  .row.news-social-intro .col-1-4:nth-child(2) a .module .content-container p {
    min-height: 80px;
    max-height: 80px;
    margin: 0 0 40px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    color: #4b4b4d;
    font-size: 16px;
    line-height: 20px;
    font-weight: 300;
    width: 100%;
    text-transform: none;
    text-align: center;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  .row.news-social-intro .col-1-4:nth-child(2) a .module .content-container .button-container .btn {
    margin: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .row.news-social-intro .col-1-4:nth-child(2) a .module > .button-container {
    display: block;
  }
  .row.news-social-intro .col-1-4:nth-child(2) a:hover .content-container {
    margin: -90px 0 0 0;
    height: 250px;
  }
}
@media only screen and (max-width: 799px) {
  .row.news-social-intro .col-1-4:nth-child(n+2) {
    margin: 40px 0 0 0;
  }
  .row.news-social-intro .col-1-4:nth-child(n+2) a .module {
    margin: 0;
  }
  .row.news-social-intro .col-1-4:nth-child(n+2) a .module .content-container {
    position: relative;
    top: auto;
    left: auto;
    height: 160px;
    padding: 40px 20px;
    background: transparent;
    display: block;
    text-align: center;
    margin: 0;
    background: #f0f0ef;
  }
  .row.news-social-intro .col-1-4:nth-child(n+2) a .module .content-container p {
    min-height: 80px;
    max-height: 80px;
    margin: 0 0 40px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    color: #4b4b4d;
    font-size: 16px;
    line-height: 20px;
    font-weight: 300;
    width: 100%;
    text-transform: none;
    text-align: center;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  .row.news-social-intro .col-1-4:nth-child(n+2) a .module .content-container .button-container .btn {
    margin: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .row.news-social-intro .col-1-4:nth-child(n+2) a .module > .button-container {
    display: block;
  }
  .row.news-social-intro .col-1-4:nth-child(n+2) a:hover .content-container {
    margin: -90px 0 0 0;
    height: 250px;
  }
}
@media only screen and (max-width: 639px) {
  .row.news-social-intro .col-1-4 {
    width: 100%;
  }
  .row.news-social-intro .col-1-4:nth-child(n+1) {
    margin: 40px 0 0 0;
  }
  .row.news-social-intro .col-1-4:nth-child(n+1) a .module {
    margin: 0;
  }
  .row.news-social-intro .col-1-4:nth-child(n+1) a .module .image-container:after {
    display: none;
  }
  .row.news-social-intro .col-1-4:nth-child(n+1) a .module .content-container {
    position: relative;
    top: auto;
    left: auto;
    height: 160px;
    padding: 40px;
    background: transparent;
    display: block;
    text-align: center;
    margin: 0;
    background: #f0f0ef;
  }
  .row.news-social-intro .col-1-4:nth-child(n+1) a .module .content-container p {
    min-height: 80px;
    max-height: 80px;
    margin: 0 0 40px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    color: #4b4b4d;
    font-size: 16px;
    line-height: 20px;
    font-weight: 300;
    width: 100%;
    text-transform: none;
    text-align: center;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  .row.news-social-intro .col-1-4:nth-child(n+1) a .module .content-container .button-container .btn {
    margin: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .row.news-social-intro .col-1-4:nth-child(n+1) a .module > .button-container {
    display: block;
  }
  .row.news-social-intro .col-1-4:nth-child(n+1) a:hover .content-container {
    margin: -90px 0 0 0;
    height: 250px;
  }
  .row.news-social-intro .col-1-4:nth-child(1) {
    margin-top: 0;
  }
  .row.news-social-intro .col-1-4:nth-child(2) {
    width: 100%;
  }
  .row.news-social-intro .col-1-4:nth-child(4) {
    display: none;
  }
  .row.news-social-intro .col-1-4:nth-child(5) {
    display: none;
  }
}
@media only screen and (max-width: 479px) {
  .row.news-social-intro .col-1-4 {
    width: 100%;
  }
  .row.news-social-intro .col-1-4:nth-child(n+1) a .module .content-container {
    padding: 40px 20px;
  }
}

.row.projects-intro {
  padding: 80px 0 0 0;
  background: #ffffff;
}
@media only screen and (max-width: 639px) {
  .row.projects-intro {
    padding: 40px 0 0 0;
  }
}
.row.projects-intro .col-1-1 .module h3 {
  font-size: 32px;
  line-height: 36px;
  text-align: center;
  margin: 0 0 80px 0;
}
@media only screen and (max-width: 639px) {
  .row.projects-intro .col-1-1 .module h3 {
    margin: 0 0 40px 0;
  }
}
.row.projects-intro .col-1-1 .module p {
  text-align: center;
}
.row.projects-intro .projects-container {
  position: relative;
}
.row.projects-intro .projects-container a {
  display: block;
  float: left;
  width: 33.3333333333%;
  position: relative;
  overflow: hidden;
}
.row.projects-intro .projects-container a::before {
  content: "";
  position: absolute;
  bottom: -5px;
  right: -5px;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right bottom, color-stop(50%, rgba(0, 112, 60, 0)), to(rgba(0, 112, 60, 0.6)));
  background: linear-gradient(to right bottom, rgba(0, 112, 60, 0) 50%, rgba(0, 112, 60, 0.6) 100%);
  z-index: 1;
}
.row.projects-intro .projects-container a:nth-child(2), .row.projects-intro .projects-container a:nth-child(3), .row.projects-intro .projects-container a:nth-child(5), .row.projects-intro .projects-container a:nth-child(6), .row.projects-intro .projects-container a:nth-child(8), .row.projects-intro .projects-container a:nth-child(9) {
  width: 16.6666666667%;
  width: 16.6666666667%;
}
.row.projects-intro .projects-container a:nth-child(7) {
  margin-top: -16.6666666667%;
}
@media only screen and (max-width: 1279px) {
  .row.projects-intro .projects-container a:nth-child(1), .row.projects-intro .projects-container a:nth-child(2), .row.projects-intro .projects-container a:nth-child(3), .row.projects-intro .projects-container a:nth-child(4), .row.projects-intro .projects-container a:nth-child(5), .row.projects-intro .projects-container a:nth-child(6), .row.projects-intro .projects-container a:nth-child(7), .row.projects-intro .projects-container a:nth-child(8), .row.projects-intro .projects-container a:nth-child(9) {
    width: 50%;
    margin: 0;
  }
  .row.projects-intro .projects-container a:nth-child(2), .row.projects-intro .projects-container a:nth-child(3) {
    width: 25%;
  }
  .row.projects-intro .projects-container a:nth-child(5), .row.projects-intro .projects-container a:nth-child(6) {
    width: 25%;
    margin-top: -25%;
  }
  .row.projects-intro .projects-container a:nth-child(6) {
    width: 25%;
    margin-left: 25%;
  }
  .row.projects-intro .projects-container a:nth-child(7), .row.projects-intro .projects-container a:nth-child(8), .row.projects-intro .projects-container a:nth-child(9) {
    display: none;
  }
}
@media only screen and (max-width: 799px) {
  .row.projects-intro .projects-container a:nth-child(1), .row.projects-intro .projects-container a:nth-child(2), .row.projects-intro .projects-container a:nth-child(3), .row.projects-intro .projects-container a:nth-child(4), .row.projects-intro .projects-container a:nth-child(5), .row.projects-intro .projects-container a:nth-child(6), .row.projects-intro .projects-container a:nth-child(7), .row.projects-intro .projects-container a:nth-child(8), .row.projects-intro .projects-container a:nth-child(9) {
    width: 100%;
    margin: 0;
  }
  .row.projects-intro .projects-container a:nth-child(1) {
    width: 66.6666666667%;
  }
  .row.projects-intro .projects-container a:nth-child(2), .row.projects-intro .projects-container a:nth-child(3) {
    width: 33.3333333333%;
  }
  .row.projects-intro .projects-container a:nth-child(4) {
    width: 66.6666666667%;
    float: right;
  }
  .row.projects-intro .projects-container a:nth-child(5), .row.projects-intro .projects-container a:nth-child(6) {
    float: left;
    width: 33.3333333333%;
  }
}
@media only screen and (max-width: 639px) {
  .row.projects-intro .projects-container a:nth-child(1), .row.projects-intro .projects-container a:nth-child(2), .row.projects-intro .projects-container a:nth-child(3), .row.projects-intro .projects-container a:nth-child(4), .row.projects-intro .projects-container a:nth-child(5), .row.projects-intro .projects-container a:nth-child(6), .row.projects-intro .projects-container a:nth-child(7), .row.projects-intro .projects-container a:nth-child(8), .row.projects-intro .projects-container a:nth-child(9) {
    width: 100%;
    margin: 0;
  }
  .row.projects-intro .projects-container a:nth-child(2), .row.projects-intro .projects-container a:nth-child(3) {
    width: 50%;
  }
  .row.projects-intro .projects-container a:nth-child(5), .row.projects-intro .projects-container a:nth-child(6) {
    width: 50%;
  }
}
@media only screen and (max-width: 479px) {
  .row.projects-intro .projects-container a:nth-child(1), .row.projects-intro .projects-container a:nth-child(2), .row.projects-intro .projects-container a:nth-child(3) {
    width: 100%;
    margin: 0;
  }
  .row.projects-intro .projects-container a:nth-child(4), .row.projects-intro .projects-container a:nth-child(5), .row.projects-intro .projects-container a:nth-child(6) {
    display: none;
  }
}
.row.projects-intro .projects-container a .image-container {
  height: 100%;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.row.projects-intro .projects-container a .image-container:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left bottom, right top, from(rgba(75, 75, 77, 0)), to(rgba(75, 75, 77, 0.05)));
  background: linear-gradient(to top right, rgba(75, 75, 77, 0) 0%, rgba(75, 75, 77, 0.05) 100%);
  z-index: 1;
}
.row.projects-intro .projects-container a .image-container .image-ratio {
  padding-top: 100%;
  background-size: cover;
  -moz-background-size: cover;
  background-position: center;
  position: relative;
  top: 0;
  -webkit-transition: 0.5s all ease-in-out;
  transition: 0.5s all ease-in-out;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.row.projects-intro .projects-container a .content-container {
  position: absolute;
  bottom: 40px;
  left: 40px;
  background: rgba(0, 112, 60, 0.8);
  width: calc(100% - 80px);
  height: calc(100% - 80px);
  opacity: 0;
  -webkit-transition: 0.5s all ease-in-out;
  transition: 0.5s all ease-in-out;
  padding: 40px;
  z-index: 1;
}
@media only screen and (max-width: 1599px) {
  .row.projects-intro .projects-container a .content-container {
    bottom: 20px;
    left: 20px;
    width: calc(100% - 40px);
    height: calc(100% - 40px);
    padding: 20px;
  }
}
@media only screen and (max-width: 479px) {
  .row.projects-intro .projects-container a .content-container {
    opacity: 1;
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: 50px;
    padding: 0 80px 0 20px;
  }
}
.row.projects-intro .projects-container a .content-container p {
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 24px;
  line-height: 28px;
  min-height: calc(28px * 4);
  max-height: calc(28px * 4);
  margin: 0;
}
@media only screen and (max-width: 1919px) {
  .row.projects-intro .projects-container a .content-container p {
    font-size: 16px;
    line-height: 20px;
    min-height: calc(20px * 4);
    max-height: calc(20px * 4);
  }
}
@media only screen and (max-width: 479px) {
  .row.projects-intro .projects-container a .content-container p {
    line-height: 50px;
    min-height: 50px;
    max-height: 50px;
  }
}
.row.projects-intro .projects-container a .content-container .button-container .btn.btn-small {
  top: auto;
  bottom: 0px;
}
.row.projects-intro .projects-container a .content-container .button-container .btn.btn-small:hover::before {
  background: #00703c;
}
.row.projects-intro .projects-container a .content-container .button-container .btn.btn-small:hover::after {
  color: #ffffff;
}
.row.projects-intro .projects-container a:nth-child(1) .content-container, .row.projects-intro .projects-container a:nth-child(4) .content-container, .row.projects-intro .projects-container a:nth-child(7) .content-container {
  width: calc(50% - 80px);
  height: calc(50% - 80px);
}
@media only screen and (max-width: 1599px) {
  .row.projects-intro .projects-container a:nth-child(1) .content-container, .row.projects-intro .projects-container a:nth-child(4) .content-container, .row.projects-intro .projects-container a:nth-child(7) .content-container {
    width: calc(50% - 40px);
    height: calc(50% - 40px);
  }
}
@media only screen and (max-width: 479px) {
  .row.projects-intro .projects-container a:nth-child(1) .content-container, .row.projects-intro .projects-container a:nth-child(4) .content-container, .row.projects-intro .projects-container a:nth-child(7) .content-container {
    width: 100%;
    height: 50px;
  }
}
.row.projects-intro .projects-container a:hover .image-container .image-ratio {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
.row.projects-intro .projects-container a:hover .content-container {
  opacity: 1;
}

.row.vacatures-intro {
  padding: 80px 0;
  background: #ffffff;
}
@media only screen and (max-width: 639px) {
  .row.vacatures-intro {
    padding: 40px 0 0 0;
  }
}
.row.vacatures-intro .inner-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media only screen and (max-width: 1439px) {
  .row.vacatures-intro .inner-row .col-1-4 {
    width: 33.3333333333%;
  }
}
@media only screen and (max-width: 1119px) {
  .row.vacatures-intro .inner-row .col-1-4 {
    width: 50%;
  }
}
@media only screen and (max-width: 799px) {
  .row.vacatures-intro .inner-row .col-1-4 {
    width: 100%;
  }
}
.row.vacatures-intro .inner-row .col-1-4 .module {
  position: relative;
  height: 100%;
}
.row.vacatures-intro .inner-row .col-1-4 .module .left-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.row.vacatures-intro .inner-row .col-1-4 .module .left-container .content-container {
  position: relative;
}
.row.vacatures-intro .inner-row .col-1-4 .module .left-container .content-container::after {
  content: "";
  position: absolute;
  top: -14px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 30px;
  height: 30px;
  background: url(../img/emblem.png);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.row.vacatures-intro .inner-row .col-1-4 .module .left-container .content-container p {
  margin: 0;
  font-size: 24px;
  line-height: 36px;
  color: #00703c;
  font-style: italic;
  font-weight: 400;
  text-align: center;
  padding: 40px 0;
  margin: 0 0 40px 0;
  position: relative;
}
.row.vacatures-intro .inner-row .col-1-4 .module .left-container .content-container p::before, .row.vacatures-intro .inner-row .col-1-4 .module .left-container .content-container p::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background: #76bf42;
}
.row.vacatures-intro .inner-row .col-1-4 .module .left-container .content-container p::after {
  top: auto;
  bottom: 0;
}
.row.vacatures-intro .inner-row .col-1-4 .module .left-container .content-container .button-container .btn {
  margin: 0;
}
.row.vacatures-intro .inner-row .col-1-4 .module .right-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  position: relative;
}
.row.vacatures-intro .inner-row .col-1-4 .module .right-container .image-container {
  max-height: 280px;
}
.row.vacatures-intro .inner-row .col-1-4 .module .right-container .image-container img {
  position: relative;
  max-height: 280px;
  width: auto;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.row.children-intro {
  background: #ffde00;
  background: -webkit-gradient(linear, left top, right bottom, color-stop(50%, #76bf42), to(#00703c));
  background: linear-gradient(to bottom right, #76bf42 50%, #00703c 100%);
  margin: -40px 0 0 0;
  z-index: 0;
  overflow: hidden;
  position: relative;
}
.row.children-intro:before {
  content: "";
  position: absolute;
  bottom: calc(100% - 60px);
  right: 0;
  width: 200%;
  height: 500px;
  background: #ffffff;
  -webkit-transform: rotate(-5deg);
          transform: rotate(-5deg);
  -webkit-transform-origin: 100% 0% 0;
          transform-origin: 100% 0% 0;
}
.row.children-intro:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40px;
  background: #f0f0ef;
  z-index: -1;
}
.row.children-intro.has-form {
  padding: 0 0 40px 0;
}
.row.children-intro.has-form:after {
  height: 80px;
  bottom: 0px;
}
.row.children-intro .card-container .col-1-4 {
  width: 100%;
  padding: 0;
}
.row.children-intro .card-container .col-1-4 a {
  display: block;
  float: left;
  width: 100%;
}
.row.children-intro .card-container .col-1-4 a .module {
  background: #ffffff;
}
.row.children-intro .card-container .col-1-4 a .module.icon::before {
  content: "";
  position: absolute;
  top: 60px;
  left: -6px;
  width: 20px;
  height: 20px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  background: #ccab00;
  -webkit-transition: all ease-in-out 0.5s;
  transition: all ease-in-out 0.5s;
}
.row.children-intro .card-container .col-1-4 a .module .image-container {
  height: 100%;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.row.children-intro .card-container .col-1-4 a .module .image-container:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left bottom, right top, from(rgba(75, 75, 77, 0)), to(rgba(75, 75, 77, 0.05)));
  background: linear-gradient(to top right, rgba(75, 75, 77, 0) 0%, rgba(75, 75, 77, 0.05) 100%);
  z-index: 1;
}
.row.children-intro .card-container .col-1-4 a .module .image-container .image-ratio {
  padding-top: 100%;
  background-size: cover;
  -moz-background-size: cover;
  background-position: center;
  position: relative;
  top: 0;
  -webkit-transition: 0.5s all ease-in-out;
  transition: 0.5s all ease-in-out;
}
.row.children-intro .card-container .col-1-4 a .module .image-container.video {
  position: relative;
}
.row.children-intro .card-container .col-1-4 a .module .image-container.video .image-ratio:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  height: 100px;
  width: 100px;
  background: url(../img/play-icon.png);
  background-size: cover;
  z-index: 1;
}
.row.children-intro .card-container .col-1-4 a .module .icon-container {
  position: absolute;
  left: -10px;
  top: -10px;
  width: 112px;
  height: 80px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  font-weight: 400;
  font-size: 16px;
  background: transparent;
  color: #ffffff;
  overflow: hidden;
  z-index: 1;
}
.row.children-intro .card-container .col-1-4 a .module .icon-container::before {
  content: "";
  position: absolute;
  bottom: -24px;
  left: -80px;
  width: 160px;
  height: 160px;
  border-radius: 6px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  background: #ffde00;
  -webkit-transition: all ease-in-out 0.5s;
  transition: all ease-in-out 0.5s;
}
.row.children-intro .card-container .col-1-4 a .module .icon-container i {
  position: relative;
  display: block;
  float: none;
  margin: 0 0 -2px 0;
  color: #00703c;
  width: 80px;
  height: 80px;
  padding: 20px 18px;
  -webkit-transition: all ease-in-out 0.5s;
  transition: all ease-in-out 0.5s;
  fill: currentColor;
}
.row.children-intro .card-container .col-1-4 a .module .icon-container i svg {
  position: relative;
  left: 50%;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  width: 100%;
  height: 100%;
}
.row.children-intro .card-container .col-1-4 a .module .content-container {
  padding: 40px;
  position: relative;
  background: #ffffff;
  margin: 0px 0 0 0;
  height: 136px;
  overflow: hidden;
  -webkit-transition: 0.5s all ease-in-out;
  transition: 0.5s all ease-in-out;
  z-index: 1;
}
@media only screen and (max-width: 479px) {
  .row.children-intro .card-container .col-1-4 a .module .content-container {
    padding: 40px 20px;
  }
}
.row.children-intro .card-container .col-1-4 a .module .content-container h3 {
  text-align: center;
  -webkit-transition: 0.5s all ease-in-out;
  transition: 0.5s all ease-in-out;
  min-height: 56px;
  max-height: 56px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.row.children-intro .card-container .col-1-4 a .module .content-container h3.loaded {
  opacity: 1;
}
.row.children-intro .card-container .col-1-4 a .module .content-container p {
  text-align: center;
  min-height: 85px;
  max-height: 85px;
  overflow: hidden;
  margin: 0 0 40px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #4b4b4d;
  opacity: 0;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.row.children-intro .card-container .col-1-4 a .module .content-container p strong {
  width: 100%;
  text-transform: uppercase;
  margin: 0 0 5px 0;
}
.row.children-intro .card-container .col-1-4 a .module .content-container p img.emoji {
  display: none !important;
}
.row.children-intro .card-container .col-1-4 a .module .content-container .button-container {
  opacity: 0;
  -webkit-transition: 0.5s all ease-in-out;
  transition: 0.5s all ease-in-out;
}
.row.children-intro .card-container .col-1-4 a .module .button-container .btn.btn-small {
  top: auto;
  bottom: 122px;
  z-index: 1;
}
.row.children-intro .card-container .col-1-4 a .module:hover .image-container .image-ratio {
  top: -95px;
}
.row.children-intro .card-container .col-1-4 a .module:hover .content-container {
  margin: -195px 0 0 0;
  height: 331px;
}
.row.children-intro .card-container .col-1-4 a .module:hover .content-container p {
  opacity: 1;
}
.row.children-intro .card-container .col-1-4 a .module:hover .content-container .button-container {
  opacity: 1;
}
.row.children-intro .card-container .col-1-4 a .module:hover .button-container .btn.btn-small {
  top: auto;
  bottom: 312px;
}
.row.children-intro .card-container .col-1-4 a .module:hover .button-container .btn.btn-small::before {
  background: #00703c;
}
.row.children-intro .card-container .col-1-4 a .module:hover .button-container .btn.btn-small::after {
  color: #ffffff;
}
.row.children-intro .card-container .col-1-4:last-of-type .module {
  background: #ffffff;
  height: 100%;
}
.row.children-intro .card-container .col-1-4:last-of-type .module .content-container {
  padding: 40px;
  position: relative;
  background: #00703c;
  -webkit-transition: 0.5s all ease-in-out;
  transition: 0.5s all ease-in-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
  height: 100%;
}
@media only screen and (max-width: 479px) {
  .row.children-intro .card-container .col-1-4:last-of-type .module .content-container {
    padding: 40px 20px;
  }
}
.row.children-intro .card-container .col-1-4:last-of-type .module .content-container h3 {
  color: #ffffff;
  text-align: center;
  margin: 0;
  font-size: 32px;
  line-height: 36px;
  z-index: 1;
}
.row.children-intro .card-container .col-1-4:last-of-type .module .content-container p {
  font-size: 32px;
  line-height: 36px;
  color: #ffffff;
  text-align: center;
  margin: 0;
  text-transform: uppercase;
  margin: 0 0 86px 0;
  z-index: 1;
}
@media only screen and (max-width: 799px) {
  .row.children-intro .card-container .col-1-4:last-of-type .module .content-container p {
    margin: 0 0 40px 0;
  }
}
.row.children-intro .card-container .col-1-4:last-of-type .module .content-container .button-overlay {
  position: absolute;
  bottom: 86px;
  left: 50%;
  max-width: 280px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media only screen and (max-width: 799px) {
  .row.children-intro .card-container .col-1-4:last-of-type .module .content-container .button-overlay {
    position: relative;
    bottom: 0;
  }
}
.row.children-intro .card-container .col-1-4:last-of-type .module .content-container .button-overlay .button-container {
  position: relative;
  width: 280px;
  max-width: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.row.children-intro .card-container .col-1-4:last-of-type .module .content-container .button-overlay .button-container:after {
  content: "";
  position: absolute;
  bottom: -490px;
  right: 576px;
  width: 800px;
  height: 800px;
  background: #ffffff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transform-origin: bottom right;
          transform-origin: bottom right;
  border-radius: 20px;
  background: transparent;
  background: -webkit-gradient(linear, left top, right top, color-stop(60%, #00703c), color-stop(80%, rgba(118, 191, 66, 0.4)), to(rgba(255, 222, 0, 0.4)));
  background: linear-gradient(to right, #00703c 60%, rgba(118, 191, 66, 0.4) 80%, rgba(255, 222, 0, 0.4) 100%);
  z-index: 0;
}
.row.children-intro .card-container .col-1-4:last-of-type .module .content-container .button-overlay .button-container .btn {
  margin: 0;
}
@media only screen and (max-width: 1439px) {
  .row.children-intro .card-container :nth-child(6),
  .row.children-intro .card-container :nth-child(7) {
    display: none;
  }
}
@media only screen and (max-width: 799px) {
  .row.children-intro .card-container :nth-child(4),
  .row.children-intro .card-container :nth-child(5) {
    display: none;
  }
}

.row.main-references {
  position: relative;
  z-index: 0;
  padding: 120px 0 80px 0;
  background: #bcbcbc;
  overflow: hidden;
  background-size: cover;
  background-position: center center;
}
.row.main-references:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 222, 0, 0.8)), to(rgba(255, 222, 0, 0.8)));
  background: linear-gradient(to bottom, rgba(255, 222, 0, 0.8) 0%, rgba(255, 222, 0, 0.8) 100%);
  z-index: -1;
}
.row.main-references .col-1-1 .module h3 {
  font-size: 32px;
  line-height: 40px;
  margin: 0 0 40px 0;
  text-align: center;
}
@media only screen and (max-width: 639px) {
  .row.main-references .col-1-1 .module h3 {
    font-size: 24px;
    line-height: 40px;
  }
}
.row.main-references .col-1-1 .module:before {
  content: "";
  position: absolute;
  top: 20px;
  left: 50%;
  width: 1600px;
  height: 1600px;
  margin-left: -2160px;
  border-radius: 20px;
  -webkit-transform-origin: center center;
          transform-origin: center center;
  -webkit-transform: translate(0%, -50%) rotate(45deg);
          transform: translate(0%, -50%) rotate(45deg);
  background: -webkit-gradient(linear, right top, left bottom, from(rgba(0, 112, 60, 0.6)), color-stop(25%, rgba(118, 191, 66, 0.6)), color-stop(50%, rgba(255, 222, 0, 0.6)));
  background: linear-gradient(to bottom left, rgba(0, 112, 60, 0.6) 0%, rgba(118, 191, 66, 0.6) 25%, rgba(255, 222, 0, 0.6) 50%);
  z-index: -1;
}
.row.main-references .col-1-1 .module:after {
  content: "";
  position: absolute;
  bottom: -20px;
  right: 50%;
  width: 1600px;
  height: 1600px;
  margin-right: -2160px;
  border-radius: 20px;
  -webkit-transform-origin: center center;
          transform-origin: center center;
  -webkit-transform: translate(0%, 50%) rotate(45deg);
          transform: translate(0%, 50%) rotate(45deg);
  background: transparent;
  background: -webkit-gradient(linear, left bottom, right top, from(rgba(0, 112, 60, 0.6)), color-stop(25%, rgba(118, 191, 66, 0.6)), color-stop(50%, rgba(255, 222, 0, 0.6)));
  background: linear-gradient(to top right, rgba(0, 112, 60, 0.6) 0%, rgba(118, 191, 66, 0.6) 25%, rgba(255, 222, 0, 0.6) 50%);
  z-index: -1;
}
.row.main-references .col-1-1 .module .references-slider {
  margin: 0;
  overflow: visible;
  padding: 0 110px;
}
@media only screen and (max-width: 799px) {
  .row.main-references .col-1-1 .module .references-slider {
    padding: 0;
  }
}
.row.main-references .col-1-1 .module .references-slider .owl-stage-outer {
  padding: 0 0 40px 0;
}
.row.main-references .col-1-1 .module .references-slider .owl-stage-outer .owl-stage {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: visible;
}
.row.main-references .col-1-1 .module .references-slider .owl-stage-outer .owl-stage .owl-item {
  overflow: visible;
}
.row.main-references .col-1-1 .module .references-slider .owl-stage-outer .owl-stage .owl-item .slide-container {
  background: #ffffff;
  height: 100%;
  padding: 40px;
  position: relative;
  overflow: visible;
}
.row.main-references .col-1-1 .module .references-slider .owl-stage-outer .owl-stage .owl-item .slide-container .content-container {
  margin: 0 0 40px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.row.main-references .col-1-1 .module .references-slider .owl-stage-outer .owl-stage .owl-item .slide-container .content-container p {
  margin: 0 0 60px 0;
  font-style: italic;
}
@media only screen and (max-width: 959px) {
  .row.main-references .col-1-1 .module .references-slider .owl-stage-outer .owl-stage .owl-item .slide-container .content-container p {
    margin: 0;
    text-align: center;
  }
}
.row.main-references .col-1-1 .module .references-slider .owl-stage-outer .owl-stage .owl-item .slide-container .name-container {
  position: absolute;
  bottom: 40px;
  left: 240px;
  width: calc(100% - 280px);
}
.row.main-references .col-1-1 .module .references-slider .owl-stage-outer .owl-stage .owl-item .slide-container .name-container p {
  margin: 0;
  font-weight: 400;
}
@media only screen and (max-width: 959px) {
  .row.main-references .col-1-1 .module .references-slider .owl-stage-outer .owl-stage .owl-item .slide-container .name-container {
    position: relative;
    bottom: auto;
    left: auto;
    margin: 0 0 120px 0;
    width: 100%;
  }
  .row.main-references .col-1-1 .module .references-slider .owl-stage-outer .owl-stage .owl-item .slide-container .name-container p {
    text-align: center;
  }
}
@media only screen and (max-width: 799px) {
  .row.main-references .col-1-1 .module .references-slider .owl-stage-outer .owl-stage .owl-item .slide-container .name-container {
    margin: 0 0 210px 0;
  }
}
.row.main-references .col-1-1 .module .references-slider .owl-stage-outer .owl-stage .owl-item .slide-container .image-container {
  position: absolute;
  bottom: -40px;
  left: 40px;
  width: 160px;
  height: auto;
}
.row.main-references .col-1-1 .module .references-slider .owl-stage-outer .owl-stage .owl-item .slide-container .image-container img {
  border-radius: 80px;
}
@media only screen and (max-width: 959px) {
  .row.main-references .col-1-1 .module .references-slider .owl-stage-outer .owl-stage .owl-item .slide-container .image-container {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    z-index: 1;
  }
}
.row.main-references .col-1-1 .module .references-slider .owl-nav {
  margin-top: 20px;
}
.row.main-references .col-1-1 .module .references-slider .owl-nav .owl-prev {
  left: 0;
}
.row.main-references .col-1-1 .module .references-slider .owl-nav .owl-next {
  right: 0;
}
@media only screen and (max-width: 799px) {
  .row.main-references .col-1-1 .module .references-slider .owl-nav {
    top: auto;
    bottom: 200px;
    -webkit-transform: translate(0);
            transform: translate(0);
  }
  .row.main-references .col-1-1 .module .references-slider .owl-nav .owl-prev {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    right: auto;
    margin: 0 0 0 -37px;
  }
  .row.main-references .col-1-1 .module .references-slider .owl-nav .owl-next {
    right: 50%;
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
    left: auto;
    margin: 0 -37px 0 0;
  }
}

.row.main-customers {
  padding: 20px 0;
}
.row.main-customers .customers-slider {
  position: relative;
}
.row.main-customers .customers-slider .owl-stage-outer .owl-stage .owl-item .slide-container a {
  display: block;
  float: left;
}
.row.main-diensten {
  position: relative;
  background-size: cover;
  background-position: center center;
  z-index: 0;
  padding: 80px 0 40px 0;
  background: #ffffff;
  z-index: -2;
}
@media only screen and (max-width: 799px) {
  .row.main-diensten {
    padding: 40px 0 0 0;
  }
}
.row.main-diensten .col-1-2 .module {
  background: #ffffff;
  margin: 0 0 40px 0;
}
@media only screen and (max-width: 1119px) {
  .row.main-diensten .col-1-2 .module {
    margin: 0 0 40px 0;
    padding: 0 0 40px 0;
  }
  .row.main-diensten .col-1-2 .module::after {
    content: "";
    width: 100%;
    height: 1px;
    background: #bcbcbc;
    position: absolute;
    left: 0;
    bottom: 0;
  }
}
@media only screen and (max-width: 639px) {
  .row.main-diensten .col-1-2 .module {
    padding: 0;
  }
}
.row.main-diensten .col-1-2 .module a {
  display: block;
  float: left;
  width: 100%;
  -webkit-transition: all ease-in-out 0.5s;
  transition: all ease-in-out 0.5s;
}
.row.main-diensten .col-1-2 .module a:hover .date-container {
  background: #ffde00;
}
.row.main-diensten .col-1-2 .module a:hover .date-container p {
  color: #ffffff;
}
.row.main-diensten .col-1-2 .module .date-container {
  width: 100px;
  height: 100px;
  background: #ffffff;
  border: 2px solid #00703c;
  border-bottom: 0px;
  margin: 0 40px 0 0;
  -webkit-transition: all ease-in-out 0.5s;
  transition: all ease-in-out 0.5s;
}
@media only screen and (max-width: 639px) {
  .row.main-diensten .col-1-2 .module .date-container {
    width: 100%;
  }
}
.row.main-diensten .col-1-2 .module .date-container p {
  color: #ffde00;
  margin: 0;
  text-align: center;
  text-transform: uppercase;
  -webkit-transition: all ease-in-out 0.5s;
  transition: all ease-in-out 0.5s;
}
.row.main-diensten .col-1-2 .module .date-container p.day {
  font-size: 32px;
  line-height: 32px;
  padding: 9px 0 0 0;
}
.row.main-diensten .col-1-2 .module .date-container p.month {
  padding: 0 0 7px 0;
}
.row.main-diensten .col-1-2 .module .date-container p.time {
  background: #00703c;
  color: #ffffff;
  line-height: 28px;
  padding: 1px 0;
  position: relative;
}
.row.main-diensten .col-1-2 .module .content-container {
  width: calc(100% - 140px);
  padding: 22px 0 22px 0;
}
.row.main-diensten .col-1-2 .module .content-container h3 {
  margin: 0 0 4px 0;
}
.row.main-diensten .col-1-2 .module .content-container p {
  margin: 0;
  color: #4b4b4d;
}
@media only screen and (max-width: 639px) {
  .row.main-diensten .col-1-2 .module .content-container {
    width: 100%;
    padding: 40px 0 40px 0;
  }
  .row.main-diensten .col-1-2 .module .content-container h3 {
    text-align: center;
  }
  .row.main-diensten .col-1-2 .module .content-container p {
    text-align: center;
  }
}
@media only screen and (max-width: 1119px) {
  .row.main-diensten .col-1-2:last-of-type .module {
    margin: 0;
  }
  .row.main-diensten .col-1-2:last-of-type .module::after {
    display: none;
  }
}
@media only screen and (max-width: 1119px) {
  .row.main-diensten .col-1-2 {
    width: 100%;
  }
}

.row.main-communication {
  position: relative;
  background-size: cover;
  background-position: center center;
  z-index: 0;
  padding: 80px 0 40px 0;
  background: #f0f0ef;
}
@media only screen and (max-width: 799px) {
  .row.main-communication {
    padding: 40px 0 0 0;
  }
}
.row.main-communication .col-1-1 .module {
  max-width: 800px;
  float: none;
  margin: 0 auto;
}
.row.main-communication .col-1-1 .module h2 {
  text-align: center;
}
.row.main-communication .col-1-1 .module p {
  text-align: center;
}
.row.main-communication .col-1-3 .module {
  background: #ffffff;
  margin: 0 0 40px 0;
}
.row.main-communication .col-1-3 .module .image-container i {
  width: 100px;
  height: 200px;
  color: #ffffff;
  font-size: 80px;
  text-align: center;
  line-height: 200px;
  border-radius: 50px;
  position: relative;
  left: 50%;
  margin-left: -50px;
}
.row.main-communication .col-1-3 .module.weekbrief .image-container {
  background: #00703c;
}
.row.main-communication .col-1-3 .module.samen-onderweg .image-container {
  background: #ffde00;
}
.row.main-communication .col-1-3 .module.livestream .image-container {
  background: #76bf42;
}
.row.main-communication .col-1-3 .module .content-container {
  padding: 40px 40px 20px 40px;
}
@media only screen and (max-width: 479px) {
  .row.main-communication .col-1-3 .module .content-container {
    padding: 40px 20px 20px 20px;
  }
}
.row.main-communication .col-1-3 .module .content-container h3 {
  text-align: center;
}
.row.main-communication .col-1-3 .module .content-container p {
  text-align: center;
}
@media only screen and (max-width: 1119px) {
  .row.main-communication .col-1-3 .module .content-container .button-container {
    width: 280px;
    float: left;
    position: relative;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
}
@media only screen and (max-width: 639px) {
  .row.main-communication .col-1-3 .module .content-container .button-container {
    width: 100%;
  }
}
@media only screen and (max-width: 1119px) {
  .row.main-communication .col-1-3 {
    width: 100%;
  }
}

.row.main-introduction.title {
  width: 100%;
  position: relative;
  z-index: 0;
  margin: -120px 0 -240px 0;
  padding: 200px 0 360px 0;
}
.row.main-introduction.title:before {
  content: "";
  position: absolute;
  bottom: -340px;
  left: 50%;
  margin-left: -5000px;
  width: 10000px;
  height: 500px;
  background: #ffffff;
  z-index: 1;
  -webkit-transform: rotate(-5deg);
          transform: rotate(-5deg);
  -webkit-transform-origin: 50% 50% 0;
          transform-origin: 50% 50% 0;
}
.row.main-introduction.title:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background: #ffde00;
  background: -webkit-gradient(linear, left top, right bottom, color-stop(10%, rgba(118, 191, 66, 0.4)), color-stop(50%, rgba(0, 112, 60, 0.4)), color-stop(90%, rgba(255, 222, 0, 0.4)));
  background: linear-gradient(to bottom right, rgba(118, 191, 66, 0.4) 10%, rgba(0, 112, 60, 0.4) 50%, rgba(255, 222, 0, 0.4) 90%);
  z-index: -1;
}
.row.main-introduction.title .background-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  z-index: 0;
  overflow: hidden;
  z-index: -1;
}
.row.main-introduction.title .col-1-1 {
  width: 100%;
}
.row.main-introduction.title .col-1-1 .module:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 600px;
  margin: -300px 0 0 -450px;
  border-radius: 20px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  z-index: 0;
  background: transparent;
  background: -webkit-gradient(linear, left bottom, right top, color-stop(30%, rgba(0, 112, 60, 0)), color-stop(70%, rgba(0, 112, 60, 0.6)), to(rgba(255, 222, 0, 0.6)));
  background: linear-gradient(to right top, rgba(0, 112, 60, 0) 30%, rgba(0, 112, 60, 0.6) 70%, rgba(255, 222, 0, 0.6) 100%);
}
@media only screen and (max-width: 639px) {
  .row.main-introduction.title .col-1-1 .module:after {
    margin: -300px 0 0 -500px;
  }
}
@media only screen and (max-width: 479px) {
  .row.main-introduction.title .col-1-1 .module:after {
    margin: -300px 0 0 -550px;
  }
}
.row.main-introduction.title .col-1-1 .module h1 {
  text-transform: uppercase;
  color: #ffffff;
  font-size: 40px;
  line-height: 44px;
  position: relative;
  text-align: center;
  margin: 0;
  z-index: 1;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.25);
}
@media only screen and (max-width: 479px) {
  .row.main-introduction.title .col-1-1 .module h1 {
    font-size: 24px;
    line-height: 28px;
  }
}
.row.main-introduction.title .col-1-1 .module h3 {
  text-transform: uppercase;
  color: #ffffff;
  font-size: 24px;
  line-height: 28px;
  position: relative;
  text-align: center;
  margin: 0;
  z-index: 1;
  width: auto;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.25);
}
.row.main-introduction.title .col-1-1 .module h3 a {
  color: #ffde00;
  -webkit-transition: 0.5s all ease-in-out;
  transition: 0.5s all ease-in-out;
}
.row.main-introduction.title .col-1-1 .module h3:hover a {
  color: rgba(255, 222, 0, 0.6);
}
.row.main-introduction.text {
  margin: 0 0 80px 0;
  z-index: 0;
}
@media only screen and (max-width: 639px) {
  .row.main-introduction.text {
    margin: 0 0 40px 0;
  }
}
.row.main-introduction.text .col-1-1 {
  width: 100%;
}
.row.main-introduction.text .col-1-1 .module {
  background: #f0f0ef;
  padding: 40px 80px 40px 40px;
  position: relative;
  min-height: 160px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media only screen and (max-width: 799px) {
  .row.main-introduction.text .col-1-1 .module {
    padding: 0px;
    display: block;
    background: transparent;
  }
}
.row.main-introduction.text .col-1-1 .module .breadcrumbs {
  position: absolute;
  top: -20px;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: start;
      align-self: flex-start;
  width: calc(100% - 360px);
}
@media only screen and (max-width: 1119px) {
  .row.main-introduction.text .col-1-1 .module .breadcrumbs {
    display: none;
  }
}
.row.main-introduction.text .col-1-1 .module .breadcrumbs ul {
  width: 100%;
}
.row.main-introduction.text .col-1-1 .module .breadcrumbs ul li {
  color: #ffffff;
  font-weight: 400;
  padding: 0;
  margin: 0;
  width: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-transform: uppercase;
}
.row.main-introduction.text .col-1-1 .module .breadcrumbs ul li.separator {
  padding: 0 20px;
}
.row.main-introduction.text .col-1-1 .module .breadcrumbs ul li.item-current {
  color: #ffffff;
}
.row.main-introduction.text .col-1-1 .module .breadcrumbs ul li a {
  color: #ffffff;
  -webkit-transition: 0.25s all ease-in-out;
  transition: 0.25s all ease-in-out;
}
.row.main-introduction.text .col-1-1 .module .breadcrumbs ul li a:hover {
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
}
.row.main-introduction.text .col-1-1 .module .breadcrumbs ul li:before, .row.main-introduction.text .col-1-1 .module .breadcrumbs ul li:after {
  display: none;
}
.row.main-introduction.text .col-1-1 .module .content-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media only screen and (max-width: 799px) {
  .row.main-introduction.text .col-1-1 .module .content-container {
    background: #f0f0ef;
    padding: 40px;
    min-height: 160px;
  }
}
.row.main-introduction.text .col-1-1 .module .content-container h3 {
  text-align: center;
}
.row.main-introduction.text .col-1-1 .module .content-container p {
  text-align: center;
  color: #4b4b4d;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  margin: 0;
}
.row.main-introduction.text .col-1-1 .module .content-container p i {
  margin: 0 5px;
}
.row.main-introduction.text .col-1-1 .module.image {
  min-height: 240px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.row.main-introduction.text .col-1-1 .module.image .content-container {
  padding: 0 320px 0 0;
}
@media only screen and (max-width: 799px) {
  .row.main-introduction.text .col-1-1 .module.image .content-container {
    padding: 40px;
  }
}
.row.main-introduction.text .col-1-1 .module.image .content-container h3 {
  text-align: left;
}
@media only screen and (max-width: 799px) {
  .row.main-introduction.text .col-1-1 .module.image .content-container h3 {
    text-align: center;
  }
}
.row.main-introduction.text .col-1-1 .module.image .content-container p {
  text-align: left;
}
@media only screen and (max-width: 799px) {
  .row.main-introduction.text .col-1-1 .module.image .content-container p {
    text-align: center;
  }
}
.row.main-introduction.text .col-1-1 .module.image img {
  width: 320px;
  position: absolute;
  top: -40px;
  right: 40px;
}
@media only screen and (max-width: 799px) {
  .row.main-introduction.text .col-1-1 .module.image img {
    position: relative;
    top: 0;
    width: 100%;
    right: auto;
    margin: 80px 0 0 0;
  }
}
@media only screen and (max-width: 639px) {
  .row.main-introduction.text .col-1-1 .module.image img {
    margin: 40px 0 0 0;
  }
}
.row.main-introduction.text .col-1-1 .module.facebook .content-container h3 {
  text-align: center;
  margin: 0;
}
.row.main-introduction.text .col-1-1 .module.facebook .content-container h3 i {
  float: none;
  display: inline-block;
  width: auto;
  margin: 0 5px;
}
.row.main-introduction.text .col-1-1 .module.facebook .content-container p {
  text-align: center;
}
.row.main-introduction.text .col-1-1 .module.facebook .image-container {
  width: 320px;
  height: 240px;
  position: absolute;
  top: -40px;
  right: 40px;
  background-size: cover !important;
  background-position: center center !important;
}
@media only screen and (max-width: 799px) {
  .row.main-introduction.text .col-1-1 .module.facebook .image-container {
    position: relative;
    padding: 0 0 56.25% 0;
    overflow: hidden;
    top: 0;
    width: 100%;
    height: 100%;
    right: auto;
    margin: 80px 0 0 0;
  }
}
@media only screen and (max-width: 639px) {
  .row.main-introduction.text .col-1-1 .module.facebook .image-container {
    margin: 40px 0 0 0;
  }
}

.row {
  padding-top: 2rem;
}
.row.main-children {
  background: #ffde00;
  background: -webkit-gradient(linear, left top, right bottom, color-stop(50%, #76bf42), to(#00703c));
  background: linear-gradient(to bottom right, #76bf42 50%, #00703c 100%);
  margin: -40px 0 0 0;
  z-index: 0;
  overflow: hidden;
  position: relative;
}
.row.main-children:before {
  content: "";
  position: absolute;
  bottom: calc(100% - 60px);
  right: 0;
  width: 200%;
  height: 500px;
  background: #ffffff;
  -webkit-transform: rotate(-5deg);
          transform: rotate(-5deg);
  -webkit-transform-origin: 100% 0% 0;
          transform-origin: 100% 0% 0;
}
.row.main-children:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40px;
  background: #f0f0ef;
  z-index: -1;
}
.row.main-children.has-form {
  padding: 0 0 0px 0;
}
.row.main-children.has-form:after {
  height: 40px;
  bottom: 0px;
}
.row.main-children .inner-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.row.main-children .inner-row .col-1-4 a {
  display: block;
  float: left;
  width: 100%;
}
.row.main-children .inner-row .col-1-4 a .module {
  background: #ffffff;
  margin: 40px 0 0 0;
}
.row.main-children .inner-row .col-1-4 a .module.icon::before {
  content: "";
  position: absolute;
  top: 60px;
  left: -6px;
  width: 20px;
  height: 20px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  background: #ccab00;
  -webkit-transition: all ease-in-out 0.5s;
  transition: all ease-in-out 0.5s;
}
.row.main-children .inner-row .col-1-4 a .module .image-container {
  height: 100%;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.row.main-children .inner-row .col-1-4 a .module .image-container:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left bottom, right top, from(rgba(75, 75, 77, 0)), to(rgba(75, 75, 77, 0.05)));
  background: linear-gradient(to top right, rgba(75, 75, 77, 0) 0%, rgba(75, 75, 77, 0.05) 100%);
  z-index: 1;
}
.row.main-children .inner-row .col-1-4 a .module .image-container .image-ratio {
  padding-top: 100%;
  background-size: cover;
  -moz-background-size: cover;
  background-position: center;
  position: relative;
  top: 0;
  -webkit-transition: 0.5s all ease-in-out;
  transition: 0.5s all ease-in-out;
}
.row.main-children .inner-row .col-1-4 a .module .image-container.video {
  position: relative;
}
.row.main-children .inner-row .col-1-4 a .module .image-container.video .image-ratio:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  height: 100px;
  width: 100px;
  background: url(../img/play-icon.png);
  background-size: cover;
  z-index: 1;
}
.row.main-children .inner-row .col-1-4 a .module .icon-container {
  position: absolute;
  left: -10px;
  top: -10px;
  width: 112px;
  height: 80px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  font-weight: 400;
  font-size: 16px;
  background: transparent;
  color: #ffffff;
  overflow: hidden;
  z-index: 1;
}
.row.main-children .inner-row .col-1-4 a .module .icon-container::before {
  content: "";
  position: absolute;
  bottom: -24px;
  left: -80px;
  width: 160px;
  height: 160px;
  border-radius: 6px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  background: #ffde00;
  -webkit-transition: all ease-in-out 0.5s;
  transition: all ease-in-out 0.5s;
}
.row.main-children .inner-row .col-1-4 a .module .icon-container i {
  position: relative;
  display: block;
  float: none;
  margin: 0 0 -2px 0;
  color: #00703c;
  width: 80px;
  height: 80px;
  padding: 20px 18px;
  -webkit-transition: all ease-in-out 0.5s;
  transition: all ease-in-out 0.5s;
  fill: currentColor;
}
.row.main-children .inner-row .col-1-4 a .module .icon-container i svg {
  position: relative;
  left: 50%;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  width: 100%;
  height: 100%;
}
.row.main-children .inner-row .col-1-4 a .module .content-container {
  padding: 40px;
  position: relative;
  background: #ffffff;
  margin: 0px 0 0 0;
  height: 136px;
  overflow: hidden;
  -webkit-transition: 0.5s all ease-in-out;
  transition: 0.5s all ease-in-out;
  z-index: 1;
}
@media only screen and (max-width: 479px) {
  .row.main-children .inner-row .col-1-4 a .module .content-container {
    padding: 40px 20px;
  }
}
.row.main-children .inner-row .col-1-4 a .module .content-container h3 {
  text-align: center;
  -webkit-transition: 0.5s all ease-in-out;
  transition: 0.5s all ease-in-out;
  min-height: 56px;
  max-height: 56px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  opacity: 0;
}
.row.main-children .inner-row .col-1-4 a .module .content-container h3.loaded {
  opacity: 1;
}
.row.main-children .inner-row .col-1-4 a .module .content-container p {
  text-align: center;
  min-height: 85px;
  max-height: 85px;
  margin: 0 0 40px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #4b4b4d;
  opacity: 0;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.row.main-children .inner-row .col-1-4 a .module .content-container p strong {
  width: 100%;
  text-transform: uppercase;
  margin: 0 0 5px 0;
}
.row.main-children .inner-row .col-1-4 a .module .content-container p img.emoji {
  display: none !important;
}
.row.main-children .inner-row .col-1-4 a .module .content-container .button-container {
  opacity: 0;
  -webkit-transition: 0.5s all ease-in-out;
  transition: 0.5s all ease-in-out;
}
.row.main-children .inner-row .col-1-4 a .module .button-container .btn.btn-small {
  top: auto;
  bottom: 122px;
  z-index: 1;
}
.row.main-children .inner-row .col-1-4 a .module:hover .image-container .image-ratio {
  top: -95px;
}
.row.main-children .inner-row .col-1-4 a .module:hover .content-container {
  margin: -195px 0 0 0;
  height: 331px;
}
.row.main-children .inner-row .col-1-4 a .module:hover .content-container p {
  opacity: 1;
}
.row.main-children .inner-row .col-1-4 a .module:hover .content-container .button-container {
  opacity: 1;
}
.row.main-children .inner-row .col-1-4 a .module:hover .button-container .btn.btn-small {
  top: auto;
  bottom: 312px;
}
.row.main-children .inner-row .col-1-4 a .module:hover .button-container .btn.btn-small::before {
  background: #00703c;
}
.row.main-children .inner-row .col-1-4 a .module:hover .button-container .btn.btn-small::after {
  color: #ffffff;
}
@media only screen and (max-width: 1439px) {
  .row.main-children .inner-row .col-1-4 {
    width: 33.33%;
  }
}
@media only screen and (max-width: 1119px) {
  .row.main-children .inner-row .col-1-4 {
    width: 50%;
  }
}
@media only screen and (max-width: 799px) {
  .row.main-children .inner-row .col-1-4 {
    width: 100%;
  }
}

.page-id-13406 .main-children {
  margin-bottom: 60px;
}
.page-id-13406 .highlight:last-of-type {
  margin: 0 !important;
}

.row.main-introduction.title {
  width: 100%;
  position: relative;
  z-index: 0;
  margin: -120px 0 -240px 0;
  padding: 200px 0 360px 0;
}
.row.main-introduction.title:before {
  content: "";
  position: absolute;
  bottom: -340px;
  left: 50%;
  margin-left: -5000px;
  width: 10000px;
  height: 500px;
  background: #ffffff;
  z-index: 1;
  -webkit-transform: rotate(-5deg);
          transform: rotate(-5deg);
  -webkit-transform-origin: 50% 50% 0;
          transform-origin: 50% 50% 0;
}
.row.main-introduction.title:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background: #ffde00;
  background: -webkit-gradient(linear, left top, right bottom, color-stop(10%, rgba(118, 191, 66, 0.4)), color-stop(50%, rgba(0, 112, 60, 0.4)), color-stop(90%, rgba(255, 222, 0, 0.4)));
  background: linear-gradient(to bottom right, rgba(118, 191, 66, 0.4) 10%, rgba(0, 112, 60, 0.4) 50%, rgba(255, 222, 0, 0.4) 90%);
  z-index: -1;
}
.row.main-introduction.title .background-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  z-index: 0;
  overflow: hidden;
  z-index: -1;
}
.row.main-introduction.title .col-1-1 {
  width: 100%;
}
.row.main-introduction.title .col-1-1 .module:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 600px;
  margin: -300px 0 0 -450px;
  border-radius: 20px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  z-index: 0;
  background: transparent;
  background: -webkit-gradient(linear, left bottom, right top, color-stop(30%, rgba(0, 112, 60, 0)), color-stop(70%, rgba(0, 112, 60, 0.6)), to(rgba(255, 222, 0, 0.6)));
  background: linear-gradient(to right top, rgba(0, 112, 60, 0) 30%, rgba(0, 112, 60, 0.6) 70%, rgba(255, 222, 0, 0.6) 100%);
}
@media only screen and (max-width: 639px) {
  .row.main-introduction.title .col-1-1 .module:after {
    margin: -300px 0 0 -500px;
  }
}
@media only screen and (max-width: 479px) {
  .row.main-introduction.title .col-1-1 .module:after {
    margin: -300px 0 0 -550px;
  }
}
.row.main-introduction.title .col-1-1 .module h1 {
  text-transform: uppercase;
  color: #ffffff;
  font-size: 40px;
  line-height: 44px;
  position: relative;
  text-align: center;
  margin: 0;
  z-index: 1;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.25);
}
@media only screen and (max-width: 479px) {
  .row.main-introduction.title .col-1-1 .module h1 {
    font-size: 24px;
    line-height: 28px;
  }
}
.row.main-introduction.title .col-1-1 .module h3 {
  text-transform: uppercase;
  color: #ffffff;
  font-size: 24px;
  line-height: 28px;
  position: relative;
  text-align: center;
  margin: 0;
  z-index: 1;
  width: auto;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.25);
}
.row.main-introduction.title .col-1-1 .module h3 a {
  color: #ffde00;
  -webkit-transition: 0.5s all ease-in-out;
  transition: 0.5s all ease-in-out;
}
.row.main-introduction.title .col-1-1 .module h3:hover a {
  color: rgba(255, 222, 0, 0.6);
}
.row.main-introduction.text {
  margin: 0 0 80px 0;
  z-index: 0;
}
@media only screen and (max-width: 639px) {
  .row.main-introduction.text {
    margin: 0 0 40px 0;
  }
}
.row.main-introduction.text .col-1-1 {
  width: 100%;
}
.row.main-introduction.text .col-1-1 .module {
  background: #f0f0ef;
  padding: 40px 80px 40px 40px;
  position: relative;
  min-height: 160px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media only screen and (max-width: 799px) {
  .row.main-introduction.text .col-1-1 .module {
    padding: 0px;
    display: block;
    background: transparent;
  }
}
.row.main-introduction.text .col-1-1 .module .breadcrumbs {
  position: absolute;
  top: -20px;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: start;
      align-self: flex-start;
  width: calc(100% - 360px);
}
@media only screen and (max-width: 1119px) {
  .row.main-introduction.text .col-1-1 .module .breadcrumbs {
    display: none;
  }
}
.row.main-introduction.text .col-1-1 .module .breadcrumbs ul {
  width: 100%;
}
.row.main-introduction.text .col-1-1 .module .breadcrumbs ul li {
  color: #ffffff;
  font-weight: 400;
  padding: 0;
  margin: 0;
  width: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-transform: uppercase;
}
.row.main-introduction.text .col-1-1 .module .breadcrumbs ul li.separator {
  padding: 0 20px;
}
.row.main-introduction.text .col-1-1 .module .breadcrumbs ul li.item-current {
  color: #ffffff;
}
.row.main-introduction.text .col-1-1 .module .breadcrumbs ul li a {
  color: #ffffff;
  -webkit-transition: 0.25s all ease-in-out;
  transition: 0.25s all ease-in-out;
}
.row.main-introduction.text .col-1-1 .module .breadcrumbs ul li a:hover {
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
}
.row.main-introduction.text .col-1-1 .module .breadcrumbs ul li:before, .row.main-introduction.text .col-1-1 .module .breadcrumbs ul li:after {
  display: none;
}
.row.main-introduction.text .col-1-1 .module .content-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media only screen and (max-width: 799px) {
  .row.main-introduction.text .col-1-1 .module .content-container {
    background: #f0f0ef;
    padding: 40px;
    min-height: 160px;
  }
}
.row.main-introduction.text .col-1-1 .module .content-container h3 {
  text-align: center;
}
.row.main-introduction.text .col-1-1 .module .content-container p {
  text-align: center;
  color: #4b4b4d;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  margin: 0;
}
.row.main-introduction.text .col-1-1 .module .content-container p i {
  margin: 0 5px;
}
.row.main-introduction.text .col-1-1 .module.image {
  min-height: 240px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.row.main-introduction.text .col-1-1 .module.image .content-container {
  padding: 0 320px 0 0;
}
@media only screen and (max-width: 799px) {
  .row.main-introduction.text .col-1-1 .module.image .content-container {
    padding: 40px;
  }
}
.row.main-introduction.text .col-1-1 .module.image .content-container h3 {
  text-align: left;
}
@media only screen and (max-width: 799px) {
  .row.main-introduction.text .col-1-1 .module.image .content-container h3 {
    text-align: center;
  }
}
.row.main-introduction.text .col-1-1 .module.image .content-container p {
  text-align: left;
}
@media only screen and (max-width: 799px) {
  .row.main-introduction.text .col-1-1 .module.image .content-container p {
    text-align: center;
  }
}
.row.main-introduction.text .col-1-1 .module.image img {
  width: 320px;
  position: absolute;
  top: -40px;
  right: 40px;
}
@media only screen and (max-width: 799px) {
  .row.main-introduction.text .col-1-1 .module.image img {
    position: relative;
    top: 0;
    width: 100%;
    right: auto;
    margin: 80px 0 0 0;
  }
}
@media only screen and (max-width: 639px) {
  .row.main-introduction.text .col-1-1 .module.image img {
    margin: 40px 0 0 0;
  }
}
.row.main-introduction.text .col-1-1 .module.facebook .content-container h3 {
  text-align: center;
  margin: 0;
}
.row.main-introduction.text .col-1-1 .module.facebook .content-container h3 i {
  float: none;
  display: inline-block;
  width: auto;
  margin: 0 5px;
}
.row.main-introduction.text .col-1-1 .module.facebook .content-container p {
  text-align: center;
}
.row.main-introduction.text .col-1-1 .module.facebook .image-container {
  width: 320px;
  height: 240px;
  position: absolute;
  top: -40px;
  right: 40px;
  background-size: cover !important;
  background-position: center center !important;
}
@media only screen and (max-width: 799px) {
  .row.main-introduction.text .col-1-1 .module.facebook .image-container {
    position: relative;
    padding: 0 0 56.25% 0;
    overflow: hidden;
    top: 0;
    width: 100%;
    height: 100%;
    right: auto;
    margin: 80px 0 0 0;
  }
}
@media only screen and (max-width: 639px) {
  .row.main-introduction.text .col-1-1 .module.facebook .image-container {
    margin: 40px 0 0 0;
  }
}

.row.main-content * h2 {
  text-transform: uppercase;
  font-size: 24px;
  line-height: 28px;
  font-weight: 700;
  color: #00703c;
}
.row.main-content.text {
  margin: 0 0 60px 0;
  background: #ffffff;
}
@media only screen and (max-width: 639px) {
  .row.main-content.text {
    margin: 0 0 20px 0;
  }
}
.row.main-content.link {
  margin: 0 0 60px 0;
}
@media only screen and (max-width: 639px) {
  .row.main-content.link {
    margin: 0 0 20px 0;
  }
}
.row.main-content.image {
  margin: 0 0 80px 0;
  background: #f0f0ef;
  z-index: 0;
  overflow: hidden;
  position: relative;
}
@media only screen and (max-width: 639px) {
  .row.main-content.image {
    margin: 0 0 40px 0;
  }
}
.row.main-content.image:before {
  content: "";
  position: absolute;
  bottom: calc(100% - 20px);
  right: 0;
  width: 200%;
  height: 500px;
  background: #ffffff;
  -webkit-transform: rotate(-5deg);
          transform: rotate(-5deg);
  -webkit-transform-origin: 100% 0% 0;
          transform-origin: 100% 0% 0;
}
.row.main-content.image:after {
  content: "";
  position: absolute;
  top: calc(100% - 20px);
  left: 0;
  width: 200%;
  height: 500px;
  background: #ffffff;
  -webkit-transform: rotate(-5deg);
          transform: rotate(-5deg);
  -webkit-transform-origin: 0% 100% 0;
          transform-origin: 0% 100% 0;
  z-index: -1;
}
.row.main-content.image .col-1-1 .module {
  margin: 0;
}
@media only screen and (max-width: 1439px) {
  .row.main-content.image .col-1-1 .module {
    max-width: 960px;
  }
}
.row.main-content.image .col-1-1 .module .content-slider {
  margin: 0;
}
.row.main-content.image .col-1-1 .module .content-slider .image-container {
  position: relative;
  padding: 0 0 56.25% 0;
  overflow: hidden;
}
.row.main-content.image .col-1-1 .module .content-slider .image-container:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(118, 191, 66, 0.01);
  z-index: 1;
}
.row.main-content.image .col-1-1 .module .content-slider .image-container img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media only screen and (max-width: 959px) {
  .row.main-content.image .col-1-1 .module .content-slider .owl-nav {
    -webkit-transform: translate(0);
            transform: translate(0);
    top: auto;
    bottom: 20px;
  }
}
@media only screen and (max-width: 479px) {
  .row.main-content.image .col-1-1 .module .content-slider .owl-nav {
    display: none;
  }
}
.row.main-content.image .col-1-1 .module .content-slider .owl-nav .owl-prev {
  left: auto;
  right: 114px;
}
@media only screen and (max-width: 959px) {
  .row.main-content.image .col-1-1 .module .content-slider .owl-nav .owl-prev {
    right: 94px;
  }
}
.row.main-content.image .col-1-1 .module .content-slider .owl-nav .owl-next {
  right: 40px;
}
@media only screen and (max-width: 959px) {
  .row.main-content.image .col-1-1 .module .content-slider .owl-nav .owl-next {
    right: 20px;
  }
}
.row.main-content.video {
  margin: 0 0 80px 0;
  background: #f0f0ef;
  z-index: 0;
  overflow: hidden;
  position: relative;
}
@media only screen and (max-width: 639px) {
  .row.main-content.video {
    margin: 0 0 40px 0;
  }
}
.row.main-content.video:before {
  content: "";
  position: absolute;
  bottom: calc(100% - 20px);
  right: 0;
  width: 200%;
  height: 500px;
  background: #ffffff;
  -webkit-transform: rotate(-5deg);
          transform: rotate(-5deg);
  -webkit-transform-origin: 100% 0% 0;
          transform-origin: 100% 0% 0;
}
.row.main-content.video:after {
  content: "";
  position: absolute;
  top: calc(100% - 20px);
  left: 0;
  width: 200%;
  height: 500px;
  background: #ffffff;
  -webkit-transform: rotate(-5deg);
          transform: rotate(-5deg);
  -webkit-transform-origin: 0% 100% 0;
          transform-origin: 0% 100% 0;
  z-index: -1;
}
@media only screen and (max-width: 1439px) {
  .row.main-content.video .col-1-1 .module {
    max-width: 960px;
  }
}
.row.main-content.video .col-1-1 .module .video-poster-container {
  background: #76bf42;
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
  height: auto;
}
.row.main-content.video .col-1-1 .module .video-poster-container:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  height: 160px;
  width: 160px;
  background: url(../img/play-icon.png);
  background-size: cover;
  z-index: 1;
}
@media only screen and (max-width: 959px) {
  .row.main-content.video .col-1-1 .module .video-poster-container:after {
    height: 80px;
    width: 80px;
  }
}
.row.main-content.video .col-1-1 .module .video-poster-container iframe {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
}
.row.main-content.video .col-1-1 .module .video-poster-container .video-poster {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  cursor: pointer;
  border: 0;
  outline: none;
  background-position: 50% 50%;
  background-size: 100% 100%;
  background-size: cover;
  text-indent: -999em;
  overflow: hidden;
  -webkit-transition: opacity 800ms, height 0s;
  transition: opacity 800ms, height 0s;
  -webkit-transition-delay: 0s, 0s;
  transition-delay: 0s, 0s;
}
.row.main-content.video .col-1-1 .module .video-poster-container.active:before, .row.main-content.video .col-1-1 .module .video-poster-container.active:after {
  opacity: 0;
  height: 0;
  -webkit-transition-delay: 0s, 800ms;
  transition-delay: 0s, 800ms;
}
.row.main-content.video .col-1-1 .module .video-poster-container.active .video-poster {
  opacity: 0;
  height: 0;
  -webkit-transition-delay: 0s, 800ms;
  transition-delay: 0s, 800ms;
}
.row.main-content.video .col-1-1 .module .video-poster-container:hover {
  cursor: pointer;
}
.row.main-content.table {
  margin: 0 0 80px 0;
}
@media only screen and (max-width: 639px) {
  .row.main-content.table {
    margin: 0 0 40px 0;
  }
}
.row.main-content.table .col-1-1 .module .row:nth-of-type(odd) {
  background: #f0f0ef;
}
@media only screen and (max-width: 639px) {
  .row.main-content.table .col-1-1 .module .row:nth-of-type(odd) {
    background: #ffffff;
  }
}
.row.main-content.table .col-1-1 .module .row.head {
  background: #00703c;
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 400;
}
.row.main-content.table .col-1-1 .module .row.head .left-col {
  width: 100%;
}
@media only screen and (max-width: 639px) {
  .row.main-content.table .col-1-1 .module .row.head .left-col {
    background: #00703c;
  }
}
.row.main-content.table .col-1-1 .module .row .left-col {
  width: 50%;
  font-weight: 400;
  padding: 20px 20px;
}
@media only screen and (max-width: 639px) {
  .row.main-content.table .col-1-1 .module .row .left-col {
    background: #f0f0ef;
    width: 100%;
  }
}
.row.main-content.table .col-1-1 .module .row .right-col {
  width: 50%;
  padding: 20px 20px;
}
@media only screen and (max-width: 639px) {
  .row.main-content.table .col-1-1 .module .row .right-col {
    width: 100%;
  }
}
.row.main-content.specifications {
  margin: 0 0 80px 0;
}
@media only screen and (max-width: 639px) {
  .row.main-content.specifications {
    margin: 0 0 40px 0;
  }
}
.row.main-content.specifications .col-1-1 .module {
  padding: 0 120px;
}
@media only screen and (max-width: 1119px) {
  .row.main-content.specifications .col-1-1 .module {
    padding: 0;
  }
}
.row.main-content.specifications .col-1-1 .module .specifications-slider {
  margin: 0;
}
.row.main-content.specifications .col-1-1 .module .specifications-slider .owl-nav {
  top: 180px;
}
.row.main-content.specifications .col-1-1 .module .specifications-slider .owl-nav .owl-prev {
  left: 0;
}
.row.main-content.specifications .col-1-1 .module .specifications-slider .owl-nav .owl-next {
  right: 0;
}
@media only screen and (max-width: 1119px) {
  .row.main-content.specifications .col-1-1 .module .specifications-slider .owl-nav {
    top: 550px;
    bottom: auto;
    -webkit-transform: translate(0);
            transform: translate(0);
  }
  .row.main-content.specifications .col-1-1 .module .specifications-slider .owl-nav .owl-prev {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    right: auto;
    margin: 0 0 0 -37px;
  }
  .row.main-content.specifications .col-1-1 .module .specifications-slider .owl-nav .owl-next {
    right: 50%;
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
    left: auto;
    margin: 0 -37px 0 0;
  }
}
@media only screen and (max-width: 799px) {
  .row.main-content.specifications .col-1-1 .module .specifications-slider .owl-nav {
    top: 500px;
  }
}
@media only screen and (max-width: 639px) {
  .row.main-content.specifications .col-1-1 .module .specifications-slider .owl-nav {
    top: 350px;
  }
}
@media only screen and (max-width: 479px) {
  .row.main-content.specifications .col-1-1 .module .specifications-slider .owl-nav {
    top: 210px;
  }
}
@media only screen and (max-width: 1119px) {
  .row.main-content.specifications .col-1-1 .module .specifications-slider .slide-container {
    display: block;
  }
}
.row.main-content.specifications .col-1-1 .module .specifications-slider .slide-container .table-container {
  margin: 0 80px 0 0;
  width: calc(100% - 440px);
}
@media only screen and (max-width: 1119px) {
  .row.main-content.specifications .col-1-1 .module .specifications-slider .slide-container .table-container {
    position: relative;
    width: 100%;
    max-width: 640px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.row.main-content.specifications .col-1-1 .module .specifications-slider .slide-container .table-container .row {
  background: #ffffff;
}
.row.main-content.specifications .col-1-1 .module .specifications-slider .slide-container .table-container .row:nth-of-type(odd) {
  background: #f0f0ef;
}
@media only screen and (max-width: 639px) {
  .row.main-content.specifications .col-1-1 .module .specifications-slider .slide-container .table-container .row:nth-of-type(odd) {
    background: #ffffff;
  }
}
.row.main-content.specifications .col-1-1 .module .specifications-slider .slide-container .table-container .row.head {
  background: #00703c;
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 400;
}
.row.main-content.specifications .col-1-1 .module .specifications-slider .slide-container .table-container .row.head .left-col {
  width: 100%;
}
@media only screen and (max-width: 639px) {
  .row.main-content.specifications .col-1-1 .module .specifications-slider .slide-container .table-container .row.head .left-col {
    background: #00703c;
  }
}
.row.main-content.specifications .col-1-1 .module .specifications-slider .slide-container .table-container .row .left-col {
  width: 50%;
  font-weight: 400;
  padding: 20px 20px;
}
@media only screen and (max-width: 639px) {
  .row.main-content.specifications .col-1-1 .module .specifications-slider .slide-container .table-container .row .left-col {
    background: #f0f0ef;
    width: 100%;
  }
}
.row.main-content.specifications .col-1-1 .module .specifications-slider .slide-container .table-container .row .right-col {
  width: 50%;
  padding: 20px 20px;
}
@media only screen and (max-width: 639px) {
  .row.main-content.specifications .col-1-1 .module .specifications-slider .slide-container .table-container .row .right-col {
    width: 100%;
  }
}
.row.main-content.specifications .col-1-1 .module .specifications-slider .slide-container .image-container {
  width: 360px;
  float: right;
}
@media only screen and (max-width: 1119px) {
  .row.main-content.specifications .col-1-1 .module .specifications-slider .slide-container .image-container {
    position: relative;
    width: 100%;
    max-width: 640px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    float: left;
    margin: 0 0 80px 0;
  }
}
@media only screen and (max-width: 639px) {
  .row.main-content.specifications .col-1-1 .module .specifications-slider .slide-container .image-container {
    margin: 0 0 40px 0;
  }
}
.row.main-content.downloads {
  margin: 0 0 80px 0;
}
@media only screen and (max-width: 639px) {
  .row.main-content.downloads {
    margin: 0 0 40px 0;
  }
}
.row.main-content.downloads .col-1-1 {
  margin: 0 0 80px 0;
}
@media only screen and (max-width: 639px) {
  .row.main-content.downloads .col-1-1 {
    margin: 0 0 40px 0;
  }
}
.row.main-content.downloads .col-1-1 .module {
  padding: 0 0px;
}
@media only screen and (max-width: 1119px) {
  .row.main-content.downloads .col-1-1 .module {
    padding: 0;
  }
}
.row.main-content.downloads .col-1-1 .module .table-container {
  position: relative;
  width: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  max-width: 640px;
}
.row.main-content.downloads .col-1-1 .module .table-container .row {
  background: #ffffff;
}
.row.main-content.downloads .col-1-1 .module .table-container .row:nth-of-type(odd) {
  background: #f0f0ef;
}
.row.main-content.downloads .col-1-1 .module .table-container .row.head {
  background: #00703c;
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 400;
  padding: 20px 20px;
}
.row.main-content.downloads .col-1-1 .module .table-container .row .col a {
  display: block;
  float: left;
  width: 100%;
  height: 100%;
  padding: 0 80px 0 20px;
  color: #4b4b4d;
  -webkit-transition: 0.5s all ease-in-out;
  transition: 0.5s all ease-in-out;
  max-height: 60px;
  line-height: 60px;
  overflow: hidden;
}
.row.main-content.downloads .col-1-1 .module .table-container .row .col a::after {
  content: "\f33d";
  position: absolute;
  right: 0;
  top: 0;
  width: 60px;
  height: 100%;
  background: transparent;
  font-family: "Font Awesome 5 Pro";
  color: #76bf42;
  text-align: center;
  line-height: 60px;
  -webkit-transition: 0.5s all ease-in-out;
  transition: 0.5s all ease-in-out;
}
.row.main-content.downloads .col-1-1 .module .table-container .row .col a:hover {
  color: #00703c;
}
.row.main-content.downloads .col-1-1 .module .table-container .row .col a:hover:after {
  background: #76bf42;
  color: #ffffff;
}
.row.main-content.downloads .col-1-1:last-of-type {
  margin: 0;
}
.row.main-content.downloads .col-1-1:last-of-type .table-container {
  margin: 0;
}
.row.main-content.highlight {
  margin: 0 0 80px 0;
  padding: 80px 0 60px 0;
  font-size: 24px;
  line-height: 28px;
  font-weight: 300;
}
.row.main-content.highlight--yellow {
  background: #ffde00;
  color: #00703c;
}
.row.main-content.highlight--yellow ul li {
  text-align: center;
  padding: 0;
}
.row.main-content.highlight--yellow ul li:before {
  color: #4b4b4d;
}
.row.main-content.highlight--light-green {
  background: #76bf42;
  color: #ffffff;
}
.row.main-content.highlight--light-green ul li {
  text-align: center;
  padding: 0;
}
.row.main-content.highlight--light-green ul li:before {
  color: #ffde00;
}
.row.main-content.highlight--dark-green {
  background: #00703c;
  color: #ffffff;
}
.row.main-content.highlight--dark-green h3 {
  color: #ffde00;
}
.row.main-content.highlight--dark-green ul li {
  text-align: center;
  padding: 0;
}
.row.main-content.highlight--dark-green ul li:before {
  color: #76bf42;
}
@media only screen and (max-width: 639px) {
  .row.main-content.highlight {
    margin: 0 0 40px 0;
    padding: 40px 0 20px 0;
  }
}
.row.main-content.highlight h3 {
  text-align: center;
}
.row.main-content.highlight p {
  text-align: center;
}
.row.main-content.highlight ul li {
  text-align: center;
  padding: 0;
}
.row.main-content.highlight ul li:before {
  position: relative;
  top: auto;
  left: auto;
  display: inline-block;
  line-height: 28px;
  height: 28px;
  top: -6px;
}
.row.facebook.image .col-1-1 .module {
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.row.facebook.image .col-1-1 .module .content-slider {
  position: relative;
  margin: 0 auto;
  max-width: 960px;
}

.row.main-form {
  background: #76bf42;
  background: -webkit-gradient(linear, left top, right bottom, color-stop(50%, #76bf42), to(#00703c));
  background: linear-gradient(to bottom right, #76bf42 50%, #00703c 100%);
  padding: 40px 0 40px 0;
  overflow: hidden;
  z-index: 0;
  position: relative;
  z-index: 2;
}
.row.main-form.text {
  padding: 80px 0 60px 0;
  background: #f0f0ef;
}
.row.main-form.text::before {
  display: none;
}
.row.main-form.text::after {
  display: none;
}
.row.main-form:before {
  content: "";
  position: absolute;
  bottom: -80px;
  right: 0;
  width: 500px;
  height: 500px;
  border-radius: 20px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  z-index: 0;
  background: transparent;
  background: -webkit-gradient(linear, left bottom, right top, color-stop(50%, rgba(0, 112, 60, 0)), to(rgba(255, 222, 0, 0.6)));
  background: linear-gradient(to right top, rgba(0, 112, 60, 0) 50%, rgba(255, 222, 0, 0.6) 100%);
}
.row.main-form:after {
  content: "";
  position: absolute;
  top: -80px;
  left: 0px;
  width: 500px;
  height: 500px;
  border-radius: 20px;
  -webkit-transform: rotate(225deg);
          transform: rotate(225deg);
  z-index: 0;
  background: transparent;
  background: -webkit-gradient(linear, left bottom, right top, color-stop(50%, rgba(0, 112, 60, 0)), to(rgba(255, 222, 0, 0.6)));
  background: linear-gradient(to right top, rgba(0, 112, 60, 0) 50%, rgba(255, 222, 0, 0.6) 100%);
  z-index: -1;
}
.row.main-form .col-1-1 .module h3 {
  text-align: center;
}
.row.main-form .col-1-1 .module p {
  text-align: center;
}
.row.main-form .col-1-1 .module.contacts-form-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width: 1119px) {
  .row.main-form .col-1-1 .module.contacts-form-container {
    display: block;
  }
}
.row.main-form .col-1-1 .module.contacts-form-container .form-container {
  width: calc(50% - 20px);
  margin: 40px 40px 0 0;
}
.row.main-form .col-1-1 .module.contacts-form-container .form-container form input {
  background: #ffffff;
}
.row.main-form .col-1-1 .module.contacts-form-container .form-container form .wpforms-field.wpforms-field-hp {
  display: none;
}
.row.main-form .col-1-1 .module.contacts-form-container .form-container form .right-container .wpforms-field.label label {
  display: block !important;
  padding: 20px 20px 0px 20px;
  background: #ffffff;
  font-weight: 400;
  color: #00703c;
}
.row.main-form .col-1-1 .module.contacts-form-container .form-container form .right-container .wpforms-field.label label.wpforms-error {
  display: none !important;
}
.row.main-form .col-1-1 .module.contacts-form-container .form-container form .right-container .wpforms-field.wpforms-has-error label {
  color: #cc0000;
}
.row.main-form .col-1-1 .module.contacts-form-container .form-container form .right-container .wpforms-field:last-of-type input {
  margin: 0;
}
.row.main-form .col-1-1 .module.contacts-form-container .form-container form textarea {
  min-height: 149px;
  margin: 0;
}
.row.main-form .col-1-1 .module.contacts-form-container .form-container form .wpforms-submit-container .btn {
  float: right;
  left: auto;
  right: 0;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  margin: 40px -160px 20px 0 !important;
}
.row.main-form .col-1-1 .module.contacts-form-container .form-container form .wpforms-field.text {
  display: block;
  float: left;
  width: 200%;
  margin: 40px 0 0 0;
}
.row.main-form .col-1-1 .module.contacts-form-container .form-container form .wpforms-field.text p {
  margin: 0;
  font-weight: 400;
}
@media only screen and (max-width: 1119px) {
  .row.main-form .col-1-1 .module.contacts-form-container .form-container form .wpforms-field.text {
    width: 100%;
  }
}
@media only screen and (max-width: 1119px) {
  .row.main-form .col-1-1 .module.contacts-form-container .form-container {
    width: 100%;
    max-width: 480px;
    position: relative;
    float: none;
    margin: 0 auto;
    z-index: 999;
  }
  .row.main-form .col-1-1 .module.contacts-form-container .form-container form .wpforms-submit-container .btn {
    float: left;
    left: 50%;
    right: auto;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    margin: 40px 0px 20px 0 !important;
  }
}
.row.main-form .col-1-1 .module.contacts-form-container .form-container.full {
  width: 100%;
  margin: 40px 0 0 0;
}
.row.main-form .col-1-1 .module.contacts-form-container .form-container.full form textarea {
  min-height: 144px;
}
.row.main-form .col-1-1 .module.contacts-form-container .form-container.full form .wpforms-submit-container .btn {
  float: left;
  left: 50%;
  right: auto;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  margin: 38px 0px 20px 0 !important;
}
.row.main-form .col-1-1 .module.contacts-form-container .contacts-container {
  width: calc(50% - 20px);
  background: #ffffff;
  position: relative;
  padding: 40px;
  margin: 40px 0 190px 0;
}
@media only screen and (max-width: 1119px) {
  .row.main-form .col-1-1 .module.contacts-form-container .contacts-container {
    width: 100%;
    max-width: 480px;
    position: relative;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    margin: 0 0 40px 0;
  }
}
@media only screen and (max-width: 639px) {
  .row.main-form .col-1-1 .module.contacts-form-container .contacts-container {
    margin: 40px 0 0 0;
  }
}
@media only screen and (max-width: 479px) {
  .row.main-form .col-1-1 .module.contacts-form-container .contacts-container {
    padding: 40px 20px 20px 20px;
  }
}
.row.main-form .col-1-1 .module.contacts-form-container .contacts-container .image-container {
  width: 160px;
  position: absolute;
  bottom: -40px;
  left: auto;
  right: 40px;
}
.row.main-form .col-1-1 .module.contacts-form-container .contacts-container .image-container img {
  border-radius: 50%;
}
@media only screen and (max-width: 639px) {
  .row.main-form .col-1-1 .module.contacts-form-container .contacts-container .image-container {
    position: relative;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    right: auto;
    margin: 0px 0 40px 0;
  }
  .row.main-form .col-1-1 .module.contacts-form-container .contacts-container .image-container img {
    position: relative;
    left: 50%;
    margin: -80px 0 0 0px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@media only screen and (max-width: 639px) {
  .row.main-form .col-1-1 .module.contacts-form-container .contacts-container .content-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
@media only screen and (max-width: 639px) {
  .row.main-form .col-1-1 .module.contacts-form-container .contacts-container .content-container ul {
    margin: 0;
  }
}
.row.main-form .col-1-1 .module.contacts-form-container .contacts-container .content-container ul li {
  line-height: 50px;
  padding: 0;
  position: relative;
  display: block;
  float: left;
}
@media only screen and (max-width: 479px) {
  .row.main-form .col-1-1 .module.contacts-form-container .contacts-container .content-container ul li {
    text-align: center;
  }
}
.row.main-form .col-1-1 .module.contacts-form-container .contacts-container .content-container ul li:before {
  display: none;
}
.row.main-form .col-1-1 .module.contacts-form-container .contacts-container .content-container ul li a {
  display: block;
  float: left;
  width: 100%;
  padding: 0 0 0 70px;
  color: #4b4b4d;
  min-height: 50px;
  max-height: 50px;
  overflow: hidden;
}
.row.main-form .col-1-1 .module.contacts-form-container .contacts-container .content-container ul li a:before {
  display: none;
  width: 50px;
  height: 50px;
  line-height: 50px;
  position: absolute;
  top: 0;
  left: 0;
  font-family: "Font Awesome 5 Pro";
  font-size: 24px;
  font-weight: 300;
  color: #ffffff;
  text-align: center;
  background: #00703c;
  -webkit-transition: 0.5s all ease-in-out;
  transition: 0.5s all ease-in-out;
}
.row.main-form .col-1-1 .module.contacts-form-container .contacts-container .content-container ul li a.phone {
  padding: 0 0 0 70px;
}
@media only screen and (max-width: 479px) {
  .row.main-form .col-1-1 .module.contacts-form-container .contacts-container .content-container ul li a.phone {
    text-align: left;
  }
}
.row.main-form .col-1-1 .module.contacts-form-container .contacts-container .content-container ul li a.phone:before {
  content: "\f3ce";
  display: block;
}
.row.main-form .col-1-1 .module.contacts-form-container .contacts-container .content-container ul li a.email {
  padding: 0 0 0 70px;
}
@media only screen and (max-width: 479px) {
  .row.main-form .col-1-1 .module.contacts-form-container .contacts-container .content-container ul li a.email {
    text-align: left;
  }
}
.row.main-form .col-1-1 .module.contacts-form-container .contacts-container .content-container ul li a.email:before {
  content: "\f0e0";
  display: block;
}
.row.main-form .col-1-1 .module.contacts-form-container .contacts-container .content-container ul li a:hover {
  color: rgba(0, 112, 60, 0.6);
}
.row.main-form .col-1-1 .module.contacts-form-container .contacts-container .content-container ul li a:hover:before {
  background: #76bf42;
}
.row.main-form .col-1-1 .module.contacts-form-container .contacts-container .content-container ul.name-function {
  float: right;
  float: left;
  width: calc(100% - 200px);
  position: absolute;
  left: 40px;
  bottom: 40px;
  margin: 0;
}
@media only screen and (max-width: 1119px) {
  .row.main-form .col-1-1 .module.contacts-form-container .contacts-container .content-container ul.name-function {
    position: relative;
    left: auto;
    bottom: auto;
    margin: 20px 0 0 0;
  }
}
@media only screen and (max-width: 639px) {
  .row.main-form .col-1-1 .module.contacts-form-container .contacts-container .content-container ul.name-function {
    padding: 0;
    margin: 0 0 20px 0;
    width: 100%;
    height: auto;
  }
}
.row.main-form .col-1-1 .module.contacts-form-container .contacts-container .content-container ul.name-function li {
  line-height: 20px;
  margin: 0;
}
.row.main-form .col-1-1 .module.contacts-form-container .contacts-container .content-container ul.name-function li.name {
  font-weight: 400;
}
.row.main-form .col-1-1 .module.contacts-form-container .contacts-container.full {
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  margin: 40px 0 80px 0;
}
.row.main-form .col-1-1 .module.contacts-form-container .contacts-container.full .content-container ul.name-function {
  position: relative;
  left: auto;
  bottom: auto;
  margin: 20px 0 0 0;
}
.row.main-form .gform_wrapper .gform_validation_errors {
  display: none;
}
.row.main-form .gform_wrapper .validation_error {
  display: none;
}
.row.main-form .gform_wrapper .gform_body ul {
  margin: 0;
}
.row.main-form .gform_wrapper .gform_body ul li {
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
}
.row.main-form .gform_wrapper .gform_body ul li:before {
  display: none;
}
.row.main-form .gform_wrapper .gform_body ul li .validation_message {
  display: none;
}
.row.main-form .gform_wrapper .gform_body ul li textarea {
  min-height: 150px;
  height: 150px;
}
.row.main-form .gform_wrapper .gform_body ul li.gfield_error input::-webkit-input-placeholder, .row.main-form .gform_wrapper .gform_body ul li.gfield_error textarea::-webkit-input-placeholder {
  color: #cc0000;
  opacity: 1;
}
.row.main-form .gform_wrapper .gform_body ul li.gfield_error input::-moz-placeholder, .row.main-form .gform_wrapper .gform_body ul li.gfield_error textarea::-moz-placeholder {
  color: #cc0000;
  opacity: 1;
}
.row.main-form .gform_wrapper .gform_body ul li.gfield_error input:-ms-input-placeholder, .row.main-form .gform_wrapper .gform_body ul li.gfield_error textarea:-ms-input-placeholder {
  color: #cc0000;
  opacity: 1;
}
.row.main-form .gform_wrapper .gform_body ul li.gfield_error input::-ms-input-placeholder, .row.main-form .gform_wrapper .gform_body ul li.gfield_error textarea::-ms-input-placeholder {
  color: #cc0000;
  opacity: 1;
}
.row.main-form .gform_wrapper .gform_body ul li.gfield_error input::placeholder,
.row.main-form .gform_wrapper .gform_body ul li.gfield_error textarea::placeholder {
  color: #cc0000;
  opacity: 1;
}
.row.main-form .gform_wrapper .gform_body ul li.gfield_error label {
  color: #cc0000 !important;
}
.row.main-form .gform_wrapper .gform_body ul li.gfield_html {
  width: calc(200% + 40px);
  font-weight: 400;
}
@media only screen and (max-width: 1119px) {
  .row.main-form .gform_wrapper .gform_body ul li.gfield_html {
    width: 100%;
  }
}
.row.main-form .gform_wrapper .gform_body ul li.gfield_html p {
  margin: 40px 0 0 0;
}
.row.main-form .gform_wrapper .gform_body ul li.gfield_visibility_hidden {
  display: none;
}
.row.main-form .gform_wrapper .gform_body ul li.gfield.file label {
  display: block !important;
  padding: 20px 20px 0px 20px;
  background: #ffffff;
  font-weight: 400;
  color: #00703c;
}
.row.main-form .gform_wrapper .gform_body ul li.gfield.file span {
  display: none;
}
.row.main-form .gform_wrapper .gform_body ul li.gfield.last input {
  margin: 0;
}
.row.main-form .gform_wrapper .gform_body ul li .ginput_container_checkbox .gchoice,
.row.main-form .gform_wrapper .gform_body ul li .ginput_container_radio .gchoice,
.row.main-form .gform_wrapper .gform_body ul li .ginput_container_consent .gchoice {
  height: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.row.main-form .gform_wrapper .gform_body ul li .ginput_container_checkbox label,
.row.main-form .gform_wrapper .gform_body ul li .ginput_container_radio label,
.row.main-form .gform_wrapper .gform_body ul li .ginput_container_consent label {
  display: block !important;
  position: relative;
  padding: 0 0 0 40px;
  cursor: pointer;
}
.row.main-form .gform_wrapper .gform_body ul li .ginput_container_checkbox label::before, .row.main-form .gform_wrapper .gform_body ul li .ginput_container_checkbox label::after,
.row.main-form .gform_wrapper .gform_body ul li .ginput_container_radio label::before,
.row.main-form .gform_wrapper .gform_body ul li .ginput_container_radio label::after,
.row.main-form .gform_wrapper .gform_body ul li .ginput_container_consent label::before,
.row.main-form .gform_wrapper .gform_body ul li .ginput_container_consent label::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  width: 24px;
  height: 24px;
  background-color: #4b4b4d;
  border: 1px solid #ffffff;
  border-radius: 2px;
  pointer-events: none;
  z-index: 1;
  border-radius: 2px;
}
.row.main-form .gform_wrapper .gform_body ul li .ginput_container_checkbox label::after,
.row.main-form .gform_wrapper .gform_body ul li .ginput_container_radio label::after,
.row.main-form .gform_wrapper .gform_body ul li .ginput_container_consent label::after {
  content: "";
  -webkit-mask-image: url("../img/check-solid.svg");
          mask-image: url("../img/check-solid.svg");
  -webkit-mask-size: 16px;
          mask-size: 16px;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
}
.row.main-form .gform_wrapper .gform_body ul li .ginput_container_checkbox input,
.row.main-form .gform_wrapper .gform_body ul li .ginput_container_radio input,
.row.main-form .gform_wrapper .gform_body ul li .ginput_container_consent input {
  display: none;
}
.row.main-form .gform_wrapper .gform_body ul li .ginput_container_checkbox input:checked + label::before,
.row.main-form .gform_wrapper .gform_body ul li .ginput_container_radio input:checked + label::before,
.row.main-form .gform_wrapper .gform_body ul li .ginput_container_consent input:checked + label::before {
  background-color: #ffde00;
}
.row.main-form .gform_wrapper .gfield--type-honeypot * {
  display: none;
}
.row.main-form .gform_wrapper .gform_footer {
  width: 200%;
}
@media only screen and (max-width: 1119px) {
  .row.main-form .gform_wrapper .gform_footer {
    width: 100%;
  }
}
.row.main-form .gform_wrapper .gform_footer button {
  margin: 40px 0 20px 0;
  font-family: "Fira Sans", sans-serif;
}
.row.main-form .gform_wrapper .gform_footer img {
  position: absolute;
  bottom: 40px;
  left: calc(50% + 70px);
  width: 50px;
  height: 50px;
  background: #ffde00;
  z-index: 1;
  border-radius: 50%;
  padding: 16px;
}
.row.main-form.alt .col-1-1 .module.contacts-form-container {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media only screen and (max-width: 1119px) {
  .row.main-form.alt .col-1-1 .module.contacts-form-container .form-container.full {
    margin: 40px auto 0 auto;
  }
}
.row.main-form.alt .col-1-1 .module.contacts-form-container .contacts-container.full {
  width: 100%;
}
.row .small .gform_wrapper .gform_footer,
.row .small .gform_wrapper .gform_body ul li.gfield_html {
  width: 100%;
}

form.new-form .gform_body .gform_fields {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
form.new-form .gform_body .gform_fields .gfield {
  margin-bottom: 20px;
}
form.new-form .gform_body .gform_fields .gfield.gfield--width-half {
  width: calc(50% - 20px);
}
@media only screen and (max-width: 1119px) {
  form.new-form .gform_body .gform_fields .gfield.gfield--width-half {
    width: 100%;
  }
}
form.new-form .gform_body .gform_fields .gfield.gfield_html p {
  font-weight: 400;
}
form.new-form .gform_body .gform_fields .gfield.gfield_visibility_hidden {
  display: none;
}
form.new-form .gform_body .gform_fields .gfield.gfield_error .validation_message {
  display: block !important;
  font-size: 12px;
  font-weight: 500;
  color: #ff0033;
  margin-top: 10px;
}
form.new-form .gform_body .gform_fields .gfield input {
  margin: 0;
}
form.new-form .gform_body .gform_fields .gfield label {
  display: block !important;
  font-size: 12px;
  font-weight: 500;
  color: #00703c;
  margin-bottom: 10px;
}
form.new-form .gform_body .gform_fields .gfield .ginput_container_select {
  position: relative;
}
form.new-form .gform_body .gform_fields .gfield .ginput_container_select::after {
  content: "\f078";
  width: 50px;
  height: 50px;
  line-height: 50px;
  position: absolute;
  top: 0;
  right: 0;
  font-family: "Font Awesome 5 Pro";
  font-size: 24px;
  font-weight: 300;
  color: #ffffff;
  text-align: center;
  background: #00703c;
  -webkit-transition: 0.5s all ease-in-out;
  transition: 0.5s all ease-in-out;
  pointer-events: none;
}
form.new-form .gform_body .gform_fields .gfield .ginput_container_select select {
  border: none;
  margin: 0 0 2px 0;
  padding: 15px 70px 15px 20px;
  font-family: "Fira Sans", sans-serif;
  font-size: 16px;
  letter-spacing: 0px;
  line-height: 20px;
  font-weight: 300;
  color: #4b4b4d;
}
form.new-form .gform_body .gform_fields .gfield .ginput_container_fileupload {
  position: relative;
}
form.new-form .gform_body .gform_fields .gfield .ginput_container_fileupload .gform_drop_area {
  padding: 15px 20px 15px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #ffffff;
}
form.new-form .gform_body .gform_fields .gfield .ginput_container_fileupload .gform_drop_area span {
  width: 50%;
}
@media only screen and (max-width: 1119px) {
  form.new-form .gform_body .gform_fields .gfield .ginput_container_fileupload .gform_drop_area span {
    width: 100%;
    text-align: center;
    padding-bottom: 15px;
  }
}
form.new-form .gform_body .gform_fields .gfield .ginput_container_fileupload .gform_drop_area button {
  width: 50%;
  margin: 0 !important;
  border: none;
  padding: 15px 20px 15px 20px;
  font-family: "Fira Sans", sans-serif;
  font-size: 16px;
  letter-spacing: 0px;
  line-height: 20px;
  font-weight: 300;
  color: #4b4b4d;
  background: #f0f0ef;
  text-align: center;
  -webkit-transition: 0.5s all ease-in-out;
  transition: 0.5s all ease-in-out;
}
@media only screen and (max-width: 1119px) {
  form.new-form .gform_body .gform_fields .gfield .ginput_container_fileupload .gform_drop_area button {
    width: 100%;
  }
}
form.new-form .gform_body .gform_fields .gfield .ginput_container_fileupload .gform_drop_area button:hover {
  cursor: pointer;
  background: #dcdcda;
}
form.new-form .gform_body .gform_fields .gfield .ginput_container_fileupload .gform_fileupload_rules {
  padding: 10px 20px 10px 20px;
  background: #f0f0ef;
  width: 100%;
  font-size: 12px;
  font-weight: 500;
}
form.new-form .gform_body .gform_fields .gfield .ginput_container_fileupload .validation_message li {
  display: block !important;
  font-size: 12px;
  font-weight: 500;
  color: #ff0033;
  margin-top: 10px;
}
form.new-form .gform_body .gform_fields .gfield .ginput_preview {
  background: #ffffff;
  padding: 15px 20px 15px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  margin-top: 2px;
}
form.new-form .gform_body .gform_fields .gfield .ginput_preview a {
  color: #00703c;
  width: 100%;
}
form.new-form .gform_body .gform_fields .gfield .ginput_preview button {
  width: 50px;
  height: 50px;
  position: absolute;
  top: 0;
  right: 0;
  margin: 0 !important;
}
form.new-form .gform_body .gform_fields .gfield .ginput_preview button:hover {
  cursor: pointer;
  background: #dcdcda;
}
form.new-form .gform_body .gform_fields .gfield .ginput_preview button span {
  display: none;
}
form.new-form .gform_body .gform_fields .gfield .ginput_preview button span.dashicons {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
form.new-form .gform_body .gform_fields .gfield .ginput_preview button span.dashicons::before {
  width: 50px;
  height: 50px;
  line-height: 50px;
  position: absolute;
  top: 0;
  right: 0;
  font-size: 24px;
  font-weight: 300;
  color: #ffffff;
  text-align: center;
  background: #00703c;
  -webkit-transition: 0.5s all ease-in-out;
  transition: 0.5s all ease-in-out;
  pointer-events: none;
}
form.new-form .gform_footer {
  width: 100% !important;
  position: relative;
}
form.new-form .gform_footer button {
  margin: 0 0 20px 0 !important;
}
form.new-form .gform_footer img {
  position: absolute !important;
  top: 25px !important;
  bottom: auto !important;
  left: calc(50% + 115px) !important;
  width: 50px !important;
  height: 50px !important;
  background: #ffde00 !important;
  z-index: 1 !important;
  border-radius: 50% !important;
  padding: 16px !important;
  -webkit-transform: translate(-50%, -50%) !important;
          transform: translate(-50%, -50%) !important;
}

.row.main-contacts {
  padding: 80px 0 40px 0;
  background: #ffffff;
  margin: -80px 0 0 0;
}
.row.main-contacts.child {
  background: #f0f0ef;
  margin: 0;
}
@media only screen and (max-width: 799px) {
  .row.main-contacts {
    padding: 40px 0 0 0;
  }
}
@media only screen and (max-width: 1279px) {
  .row.main-contacts [class*=col-] {
    width: 100%;
  }
  .row.main-contacts [class*=col-]:last-of-type .module {
    padding: 0;
  }
  .row.main-contacts [class*=col-]:last-of-type .module::after {
    display: none !important;
  }
}
.row.main-contacts [class*=col-] .module {
  margin: 0 0 40px 0;
}
.row.main-contacts [class*=col-] .module.small {
  margin: 0 auto 40px auto;
}
@media only screen and (max-width: 1279px) {
  .row.main-contacts [class*=col-] .module {
    padding: 0 0 40px 0;
  }
  .row.main-contacts [class*=col-] .module::after {
    content: "";
    width: 100%;
    height: 1px;
    background: #bcbcbc;
    position: absolute;
    left: 0;
    bottom: 0;
  }
}
.row.main-contacts [class*=col-] .module .image-container {
  width: 180px;
  height: 180px;
  position: relative;
  padding: 10px 0 0 10px;
}
.row.main-contacts [class*=col-] .module .image-container img {
  position: relative;
}
.row.main-contacts [class*=col-] .module .image-container::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  background: #ffde00;
  background: -webkit-gradient(linear, left top, right bottom, from(rgba(118, 191, 66, 0.8)), to(rgba(255, 222, 0, 0.8)));
  background: linear-gradient(to bottom right, rgba(118, 191, 66, 0.8) 0%, rgba(255, 222, 0, 0.8) 100%);
}
@media only screen and (max-width: 639px) {
  .row.main-contacts [class*=col-] .module .image-container {
    margin: 0 0 40px 0;
  }
}
.row.main-contacts [class*=col-] .module .content-container {
  width: calc(100% - 180px);
  height: 180px;
  padding: 0 0 0 40px;
  position: relative;
}
@media only screen and (max-width: 639px) {
  .row.main-contacts [class*=col-] .module .content-container {
    width: 100%;
    padding: 0;
    height: auto;
  }
}
.row.main-contacts [class*=col-] .module .content-container ul {
  position: absolute;
  width: calc(100% - 80px);
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  margin: 0;
}
@media only screen and (max-width: 639px) {
  .row.main-contacts [class*=col-] .module .content-container ul {
    position: relative;
    width: 100%;
    top: 0;
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
  }
}
.row.main-contacts [class*=col-] .module .content-container ul li {
  padding: 0;
  color: #4b4b4d;
}
.row.main-contacts [class*=col-] .module .content-container ul li::before {
  display: none;
}
.row.main-contacts [class*=col-] .module .content-container ul li.title {
  font-weight: 400;
  text-transform: uppercase;
}
.row.main-contacts [class*=col-] .module .content-container ul li.phone, .row.main-contacts [class*=col-] .module .content-container ul li.email, .row.main-contacts [class*=col-] .module .content-container ul li.facebook, .row.main-contacts [class*=col-] .module .content-container ul li.youtube {
  line-height: 40px;
}
.row.main-contacts [class*=col-] .module .content-container ul li.phone a, .row.main-contacts [class*=col-] .module .content-container ul li.email a, .row.main-contacts [class*=col-] .module .content-container ul li.facebook a, .row.main-contacts [class*=col-] .module .content-container ul li.youtube a {
  padding: 0 0 0 50px;
  color: #4b4b4d;
  width: 100%;
  display: inline-block;
}
.row.main-contacts [class*=col-] .module .content-container ul li.phone a::before, .row.main-contacts [class*=col-] .module .content-container ul li.email a::before, .row.main-contacts [class*=col-] .module .content-container ul li.facebook a::before, .row.main-contacts [class*=col-] .module .content-container ul li.youtube a::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  width: 40px;
  height: 40px;
  background: #ffde00;
  color: #ffffff;
  text-align: center;
  line-height: 40px;
  font-family: "Font Awesome 5 Pro";
  pointer-events: none;
  -webkit-transition: all ease-in-out 0.5s;
  transition: all ease-in-out 0.5s;
}
.row.main-contacts [class*=col-] .module .content-container ul li.phone a:hover, .row.main-contacts [class*=col-] .module .content-container ul li.email a:hover, .row.main-contacts [class*=col-] .module .content-container ul li.facebook a:hover, .row.main-contacts [class*=col-] .module .content-container ul li.youtube a:hover {
  cursor: pointer;
}
.row.main-contacts [class*=col-] .module .content-container ul li.phone a:hover::before, .row.main-contacts [class*=col-] .module .content-container ul li.email a:hover::before, .row.main-contacts [class*=col-] .module .content-container ul li.facebook a:hover::before, .row.main-contacts [class*=col-] .module .content-container ul li.youtube a:hover::before {
  background: #76bf42;
}
.row.main-contacts [class*=col-] .module .content-container ul li.email a::before {
  content: "\f0e0";
}
.row.main-contacts [class*=col-] .module .content-container ul li.phone {
  margin: 20px 0 2px 0;
}
.row.main-contacts [class*=col-] .module .content-container ul li.phone a::before {
  content: "\f10b";
}

.row.main-introduction.title {
  width: 100%;
  position: relative;
  z-index: 0;
  margin: -120px 0 -240px 0;
  padding: 200px 0 360px 0;
}
.row.main-introduction.title:before {
  content: "";
  position: absolute;
  bottom: -340px;
  left: 50%;
  margin-left: -5000px;
  width: 10000px;
  height: 500px;
  background: #ffffff;
  z-index: 1;
  -webkit-transform: rotate(-5deg);
          transform: rotate(-5deg);
  -webkit-transform-origin: 50% 50% 0;
          transform-origin: 50% 50% 0;
}
.row.main-introduction.title:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background: #ffde00;
  background: -webkit-gradient(linear, left top, right bottom, color-stop(10%, rgba(118, 191, 66, 0.4)), color-stop(50%, rgba(0, 112, 60, 0.4)), color-stop(90%, rgba(255, 222, 0, 0.4)));
  background: linear-gradient(to bottom right, rgba(118, 191, 66, 0.4) 10%, rgba(0, 112, 60, 0.4) 50%, rgba(255, 222, 0, 0.4) 90%);
  z-index: -1;
}
.row.main-introduction.title .background-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  z-index: 0;
  overflow: hidden;
  z-index: -1;
}
.row.main-introduction.title .col-1-1 {
  width: 100%;
}
.row.main-introduction.title .col-1-1 .module:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 600px;
  margin: -300px 0 0 -450px;
  border-radius: 20px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  z-index: 0;
  background: transparent;
  background: -webkit-gradient(linear, left bottom, right top, color-stop(30%, rgba(0, 112, 60, 0)), color-stop(70%, rgba(0, 112, 60, 0.6)), to(rgba(255, 222, 0, 0.6)));
  background: linear-gradient(to right top, rgba(0, 112, 60, 0) 30%, rgba(0, 112, 60, 0.6) 70%, rgba(255, 222, 0, 0.6) 100%);
}
@media only screen and (max-width: 639px) {
  .row.main-introduction.title .col-1-1 .module:after {
    margin: -300px 0 0 -500px;
  }
}
@media only screen and (max-width: 479px) {
  .row.main-introduction.title .col-1-1 .module:after {
    margin: -300px 0 0 -550px;
  }
}
.row.main-introduction.title .col-1-1 .module h1 {
  text-transform: uppercase;
  color: #ffffff;
  font-size: 40px;
  line-height: 44px;
  position: relative;
  text-align: center;
  margin: 0;
  z-index: 1;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.25);
}
@media only screen and (max-width: 479px) {
  .row.main-introduction.title .col-1-1 .module h1 {
    font-size: 24px;
    line-height: 28px;
  }
}
.row.main-introduction.title .col-1-1 .module h3 {
  text-transform: uppercase;
  color: #ffffff;
  font-size: 24px;
  line-height: 28px;
  position: relative;
  text-align: center;
  margin: 0;
  z-index: 1;
  width: auto;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.25);
}
.row.main-introduction.title .col-1-1 .module h3 a {
  color: #ffde00;
  -webkit-transition: 0.5s all ease-in-out;
  transition: 0.5s all ease-in-out;
}
.row.main-introduction.title .col-1-1 .module h3:hover a {
  color: rgba(255, 222, 0, 0.6);
}
.row.main-introduction.text {
  margin: 0 0 80px 0;
  z-index: 0;
}
@media only screen and (max-width: 639px) {
  .row.main-introduction.text {
    margin: 0 0 40px 0;
  }
}
.row.main-introduction.text .col-1-1 {
  width: 100%;
}
.row.main-introduction.text .col-1-1 .module {
  background: #f0f0ef;
  padding: 40px 80px 40px 40px;
  position: relative;
  min-height: 160px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media only screen and (max-width: 799px) {
  .row.main-introduction.text .col-1-1 .module {
    padding: 0px;
    display: block;
    background: transparent;
  }
}
.row.main-introduction.text .col-1-1 .module .breadcrumbs {
  position: absolute;
  top: -20px;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: start;
      align-self: flex-start;
  width: calc(100% - 360px);
}
@media only screen and (max-width: 1119px) {
  .row.main-introduction.text .col-1-1 .module .breadcrumbs {
    display: none;
  }
}
.row.main-introduction.text .col-1-1 .module .breadcrumbs ul {
  width: 100%;
}
.row.main-introduction.text .col-1-1 .module .breadcrumbs ul li {
  color: #ffffff;
  font-weight: 400;
  padding: 0;
  margin: 0;
  width: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-transform: uppercase;
}
.row.main-introduction.text .col-1-1 .module .breadcrumbs ul li.separator {
  padding: 0 20px;
}
.row.main-introduction.text .col-1-1 .module .breadcrumbs ul li.item-current {
  color: #ffffff;
}
.row.main-introduction.text .col-1-1 .module .breadcrumbs ul li a {
  color: #ffffff;
  -webkit-transition: 0.25s all ease-in-out;
  transition: 0.25s all ease-in-out;
}
.row.main-introduction.text .col-1-1 .module .breadcrumbs ul li a:hover {
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
}
.row.main-introduction.text .col-1-1 .module .breadcrumbs ul li:before, .row.main-introduction.text .col-1-1 .module .breadcrumbs ul li:after {
  display: none;
}
.row.main-introduction.text .col-1-1 .module .content-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media only screen and (max-width: 799px) {
  .row.main-introduction.text .col-1-1 .module .content-container {
    background: #f0f0ef;
    padding: 40px;
    min-height: 160px;
  }
}
.row.main-introduction.text .col-1-1 .module .content-container h3 {
  text-align: center;
}
.row.main-introduction.text .col-1-1 .module .content-container p {
  text-align: center;
  color: #4b4b4d;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  margin: 0;
}
.row.main-introduction.text .col-1-1 .module .content-container p i {
  margin: 0 5px;
}
.row.main-introduction.text .col-1-1 .module.image {
  min-height: 240px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.row.main-introduction.text .col-1-1 .module.image .content-container {
  padding: 0 320px 0 0;
}
@media only screen and (max-width: 799px) {
  .row.main-introduction.text .col-1-1 .module.image .content-container {
    padding: 40px;
  }
}
.row.main-introduction.text .col-1-1 .module.image .content-container h3 {
  text-align: left;
}
@media only screen and (max-width: 799px) {
  .row.main-introduction.text .col-1-1 .module.image .content-container h3 {
    text-align: center;
  }
}
.row.main-introduction.text .col-1-1 .module.image .content-container p {
  text-align: left;
}
@media only screen and (max-width: 799px) {
  .row.main-introduction.text .col-1-1 .module.image .content-container p {
    text-align: center;
  }
}
.row.main-introduction.text .col-1-1 .module.image img {
  width: 320px;
  position: absolute;
  top: -40px;
  right: 40px;
}
@media only screen and (max-width: 799px) {
  .row.main-introduction.text .col-1-1 .module.image img {
    position: relative;
    top: 0;
    width: 100%;
    right: auto;
    margin: 80px 0 0 0;
  }
}
@media only screen and (max-width: 639px) {
  .row.main-introduction.text .col-1-1 .module.image img {
    margin: 40px 0 0 0;
  }
}
.row.main-introduction.text .col-1-1 .module.facebook .content-container h3 {
  text-align: center;
  margin: 0;
}
.row.main-introduction.text .col-1-1 .module.facebook .content-container h3 i {
  float: none;
  display: inline-block;
  width: auto;
  margin: 0 5px;
}
.row.main-introduction.text .col-1-1 .module.facebook .content-container p {
  text-align: center;
}
.row.main-introduction.text .col-1-1 .module.facebook .image-container {
  width: 320px;
  height: 240px;
  position: absolute;
  top: -40px;
  right: 40px;
  background-size: cover !important;
  background-position: center center !important;
}
@media only screen and (max-width: 799px) {
  .row.main-introduction.text .col-1-1 .module.facebook .image-container {
    position: relative;
    padding: 0 0 56.25% 0;
    overflow: hidden;
    top: 0;
    width: 100%;
    height: 100%;
    right: auto;
    margin: 80px 0 0 0;
  }
}
@media only screen and (max-width: 639px) {
  .row.main-introduction.text .col-1-1 .module.facebook .image-container {
    margin: 40px 0 0 0;
  }
}

.row.news .slider .slide-container a {
  display: block;
  float: left;
  width: 100%;
  height: 100%;
}
.row.news .slider .slide-container a .module .image-container {
  overflow: hidden;
  height: 100%;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.row.news .slider .slide-container a .module .image-container .image-ratio {
  padding-top: 75%;
  background-size: cover;
  -moz-background-size: cover;
  background-position: center;
  position: relative;
  -webkit-transition: 0.5s all ease-in-out;
  transition: 0.5s all ease-in-out;
}
.row.news .slider .slide-container a .module .image-container .image-ratio::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 112, 60, 0)), color-stop(50%, rgba(0, 112, 60, 0)), to(rgba(0, 112, 60, 0.6)));
  background: linear-gradient(to bottom, rgba(0, 112, 60, 0) 0%, rgba(0, 112, 60, 0) 50%, rgba(0, 112, 60, 0.6) 100%);
}
.row.news .slider .slide-container a .module .content-container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 152px;
  padding: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: left;
}
@media only screen and (max-width: 639px) {
  .row.news .slider .slide-container a .module .content-container {
    padding: 20px;
    height: 96px;
  }
}
.row.news .slider .slide-container a .module .content-container p {
  font-size: 32px;
  line-height: 36px;
  font-weight: 700;
  color: #ffffff;
  width: 100%;
  text-transform: uppercase;
  margin: 0;
  min-height: 0px;
  max-height: 72px;
  overflow: hidden;
}
@media only screen and (max-width: 639px) {
  .row.news .slider .slide-container a .module .content-container p {
    font-size: 24px;
    line-height: 28px;
    font-weight: 700;
    max-height: 56px;
  }
}
.row.news .slider .slide-container a .module .content-container .button-container .btn {
  left: auto;
  -webkit-transform: translate(0%, 0);
          transform: translate(0%, 0);
  margin: 20px 0 0 0;
}
.row.news .slider .slide-container a:hover .module .image-container .image-ratio {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
.row.news .slider .slide-container a:hover .module .content-container .button-container .btn.btn-gradient {
  background-position: right bottom;
  color: #00703c;
}
.row.news .slider .slide-container a:hover .module .content-container .button-container .btn.btn-gradient::before {
  right: 200px;
}
@media only screen and (max-width: 479px) {
  .row.news .slider .slide-container a:hover .module .content-container .button-container .btn.btn-gradient::before {
    right: 160px;
  }
}
@media only screen and (max-width: 639px) {
  .row.news .slider .owl-nav .owl-prev,
  .row.news .slider .owl-nav .owl-next {
    left: auto;
    right: 95px;
  }
  .row.news .slider .owl-nav .owl-next {
    left: auto;
    right: 20px;
  }
  .row.news .slider .owl-nav .owl-next::before {
    content: "";
    top: auto;
    bottom: -15px;
    right: auto;
    left: -50px;
  }
  .row.news .slider .owl-nav .owl-next::after {
    content: "\f054";
    text-align: left;
    left: 20px;
    right: auto;
  }
}
.row.news.facebook {
  background: #ffde00;
  background: -webkit-gradient(linear, left top, right bottom, color-stop(50%, #76bf42), to(#00703c));
  background: linear-gradient(to bottom right, #76bf42 50%, #00703c 100%);
  margin: 40px 0 0 0;
  z-index: 0;
  overflow: hidden;
  position: relative;
}
.row.news.facebook:before {
  content: "";
  position: absolute;
  bottom: calc(100% - 60px);
  right: 0;
  width: 200%;
  height: 500px;
  background: #ffffff;
  -webkit-transform: rotate(-5deg);
          transform: rotate(-5deg);
  -webkit-transform-origin: 100% 0% 0;
          transform-origin: 100% 0% 0;
}
.row.news.facebook:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40px;
  background: #f0f0ef;
  z-index: -1;
}

.row.main-introduction.title {
  width: 100%;
  position: relative;
  z-index: 0;
  margin: -120px 0 -240px 0;
  padding: 200px 0 360px 0;
}
.row.main-introduction.title:before {
  content: "";
  position: absolute;
  bottom: -340px;
  left: 50%;
  margin-left: -5000px;
  width: 10000px;
  height: 500px;
  background: #ffffff;
  z-index: 1;
  -webkit-transform: rotate(-5deg);
          transform: rotate(-5deg);
  -webkit-transform-origin: 50% 50% 0;
          transform-origin: 50% 50% 0;
}
.row.main-introduction.title:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background: #ffde00;
  background: -webkit-gradient(linear, left top, right bottom, color-stop(10%, rgba(118, 191, 66, 0.4)), color-stop(50%, rgba(0, 112, 60, 0.4)), color-stop(90%, rgba(255, 222, 0, 0.4)));
  background: linear-gradient(to bottom right, rgba(118, 191, 66, 0.4) 10%, rgba(0, 112, 60, 0.4) 50%, rgba(255, 222, 0, 0.4) 90%);
  z-index: -1;
}
.row.main-introduction.title .background-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  z-index: 0;
  overflow: hidden;
  z-index: -1;
}
.row.main-introduction.title .col-1-1 {
  width: 100%;
}
.row.main-introduction.title .col-1-1 .module:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 600px;
  margin: -300px 0 0 -450px;
  border-radius: 20px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  z-index: 0;
  background: transparent;
  background: -webkit-gradient(linear, left bottom, right top, color-stop(30%, rgba(0, 112, 60, 0)), color-stop(70%, rgba(0, 112, 60, 0.6)), to(rgba(255, 222, 0, 0.6)));
  background: linear-gradient(to right top, rgba(0, 112, 60, 0) 30%, rgba(0, 112, 60, 0.6) 70%, rgba(255, 222, 0, 0.6) 100%);
}
@media only screen and (max-width: 639px) {
  .row.main-introduction.title .col-1-1 .module:after {
    margin: -300px 0 0 -500px;
  }
}
@media only screen and (max-width: 479px) {
  .row.main-introduction.title .col-1-1 .module:after {
    margin: -300px 0 0 -550px;
  }
}
.row.main-introduction.title .col-1-1 .module h1 {
  text-transform: uppercase;
  color: #ffffff;
  font-size: 40px;
  line-height: 44px;
  position: relative;
  text-align: center;
  margin: 0;
  z-index: 1;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.25);
}
@media only screen and (max-width: 479px) {
  .row.main-introduction.title .col-1-1 .module h1 {
    font-size: 24px;
    line-height: 28px;
  }
}
.row.main-introduction.title .col-1-1 .module h3 {
  text-transform: uppercase;
  color: #ffffff;
  font-size: 24px;
  line-height: 28px;
  position: relative;
  text-align: center;
  margin: 0;
  z-index: 1;
  width: auto;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.25);
}
.row.main-introduction.title .col-1-1 .module h3 a {
  color: #ffde00;
  -webkit-transition: 0.5s all ease-in-out;
  transition: 0.5s all ease-in-out;
}
.row.main-introduction.title .col-1-1 .module h3:hover a {
  color: rgba(255, 222, 0, 0.6);
}
.row.main-introduction.text {
  margin: 0 0 80px 0;
  z-index: 0;
}
@media only screen and (max-width: 639px) {
  .row.main-introduction.text {
    margin: 0 0 40px 0;
  }
}
.row.main-introduction.text .col-1-1 {
  width: 100%;
}
.row.main-introduction.text .col-1-1 .module {
  background: #f0f0ef;
  padding: 40px 80px 40px 40px;
  position: relative;
  min-height: 160px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media only screen and (max-width: 799px) {
  .row.main-introduction.text .col-1-1 .module {
    padding: 0px;
    display: block;
    background: transparent;
  }
}
.row.main-introduction.text .col-1-1 .module .breadcrumbs {
  position: absolute;
  top: -20px;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: start;
      align-self: flex-start;
  width: calc(100% - 360px);
}
@media only screen and (max-width: 1119px) {
  .row.main-introduction.text .col-1-1 .module .breadcrumbs {
    display: none;
  }
}
.row.main-introduction.text .col-1-1 .module .breadcrumbs ul {
  width: 100%;
}
.row.main-introduction.text .col-1-1 .module .breadcrumbs ul li {
  color: #ffffff;
  font-weight: 400;
  padding: 0;
  margin: 0;
  width: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-transform: uppercase;
}
.row.main-introduction.text .col-1-1 .module .breadcrumbs ul li.separator {
  padding: 0 20px;
}
.row.main-introduction.text .col-1-1 .module .breadcrumbs ul li.item-current {
  color: #ffffff;
}
.row.main-introduction.text .col-1-1 .module .breadcrumbs ul li a {
  color: #ffffff;
  -webkit-transition: 0.25s all ease-in-out;
  transition: 0.25s all ease-in-out;
}
.row.main-introduction.text .col-1-1 .module .breadcrumbs ul li a:hover {
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
}
.row.main-introduction.text .col-1-1 .module .breadcrumbs ul li:before, .row.main-introduction.text .col-1-1 .module .breadcrumbs ul li:after {
  display: none;
}
.row.main-introduction.text .col-1-1 .module .content-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media only screen and (max-width: 799px) {
  .row.main-introduction.text .col-1-1 .module .content-container {
    background: #f0f0ef;
    padding: 40px;
    min-height: 160px;
  }
}
.row.main-introduction.text .col-1-1 .module .content-container h3 {
  text-align: center;
}
.row.main-introduction.text .col-1-1 .module .content-container p {
  text-align: center;
  color: #4b4b4d;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  margin: 0;
}
.row.main-introduction.text .col-1-1 .module .content-container p i {
  margin: 0 5px;
}
.row.main-introduction.text .col-1-1 .module.image {
  min-height: 240px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.row.main-introduction.text .col-1-1 .module.image .content-container {
  padding: 0 320px 0 0;
}
@media only screen and (max-width: 799px) {
  .row.main-introduction.text .col-1-1 .module.image .content-container {
    padding: 40px;
  }
}
.row.main-introduction.text .col-1-1 .module.image .content-container h3 {
  text-align: left;
}
@media only screen and (max-width: 799px) {
  .row.main-introduction.text .col-1-1 .module.image .content-container h3 {
    text-align: center;
  }
}
.row.main-introduction.text .col-1-1 .module.image .content-container p {
  text-align: left;
}
@media only screen and (max-width: 799px) {
  .row.main-introduction.text .col-1-1 .module.image .content-container p {
    text-align: center;
  }
}
.row.main-introduction.text .col-1-1 .module.image img {
  width: 320px;
  position: absolute;
  top: -40px;
  right: 40px;
}
@media only screen and (max-width: 799px) {
  .row.main-introduction.text .col-1-1 .module.image img {
    position: relative;
    top: 0;
    width: 100%;
    right: auto;
    margin: 80px 0 0 0;
  }
}
@media only screen and (max-width: 639px) {
  .row.main-introduction.text .col-1-1 .module.image img {
    margin: 40px 0 0 0;
  }
}
.row.main-introduction.text .col-1-1 .module.facebook .content-container h3 {
  text-align: center;
  margin: 0;
}
.row.main-introduction.text .col-1-1 .module.facebook .content-container h3 i {
  float: none;
  display: inline-block;
  width: auto;
  margin: 0 5px;
}
.row.main-introduction.text .col-1-1 .module.facebook .content-container p {
  text-align: center;
}
.row.main-introduction.text .col-1-1 .module.facebook .image-container {
  width: 320px;
  height: 240px;
  position: absolute;
  top: -40px;
  right: 40px;
  background-size: cover !important;
  background-position: center center !important;
}
@media only screen and (max-width: 799px) {
  .row.main-introduction.text .col-1-1 .module.facebook .image-container {
    position: relative;
    padding: 0 0 56.25% 0;
    overflow: hidden;
    top: 0;
    width: 100%;
    height: 100%;
    right: auto;
    margin: 80px 0 0 0;
  }
}
@media only screen and (max-width: 639px) {
  .row.main-introduction.text .col-1-1 .module.facebook .image-container {
    margin: 40px 0 0 0;
  }
}

.row.main-form {
  background: #76bf42;
  background: -webkit-gradient(linear, left top, right bottom, color-stop(50%, #76bf42), to(#00703c));
  background: linear-gradient(to bottom right, #76bf42 50%, #00703c 100%);
  padding: 40px 0 40px 0;
  overflow: hidden;
  z-index: 0;
  position: relative;
  z-index: 2;
}
.row.main-form.text {
  padding: 80px 0 60px 0;
  background: #f0f0ef;
}
.row.main-form.text::before {
  display: none;
}
.row.main-form.text::after {
  display: none;
}
.row.main-form:before {
  content: "";
  position: absolute;
  bottom: -80px;
  right: 0;
  width: 500px;
  height: 500px;
  border-radius: 20px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  z-index: 0;
  background: transparent;
  background: -webkit-gradient(linear, left bottom, right top, color-stop(50%, rgba(0, 112, 60, 0)), to(rgba(255, 222, 0, 0.6)));
  background: linear-gradient(to right top, rgba(0, 112, 60, 0) 50%, rgba(255, 222, 0, 0.6) 100%);
}
.row.main-form:after {
  content: "";
  position: absolute;
  top: -80px;
  left: 0px;
  width: 500px;
  height: 500px;
  border-radius: 20px;
  -webkit-transform: rotate(225deg);
          transform: rotate(225deg);
  z-index: 0;
  background: transparent;
  background: -webkit-gradient(linear, left bottom, right top, color-stop(50%, rgba(0, 112, 60, 0)), to(rgba(255, 222, 0, 0.6)));
  background: linear-gradient(to right top, rgba(0, 112, 60, 0) 50%, rgba(255, 222, 0, 0.6) 100%);
  z-index: -1;
}
.row.main-form .col-1-1 .module h3 {
  text-align: center;
}
.row.main-form .col-1-1 .module p {
  text-align: center;
}
.row.main-form .col-1-1 .module.contacts-form-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width: 1119px) {
  .row.main-form .col-1-1 .module.contacts-form-container {
    display: block;
  }
}
.row.main-form .col-1-1 .module.contacts-form-container .form-container {
  width: calc(50% - 20px);
  margin: 40px 40px 0 0;
}
.row.main-form .col-1-1 .module.contacts-form-container .form-container form input {
  background: #ffffff;
}
.row.main-form .col-1-1 .module.contacts-form-container .form-container form .wpforms-field.wpforms-field-hp {
  display: none;
}
.row.main-form .col-1-1 .module.contacts-form-container .form-container form .right-container .wpforms-field.label label {
  display: block !important;
  padding: 20px 20px 0px 20px;
  background: #ffffff;
  font-weight: 400;
  color: #00703c;
}
.row.main-form .col-1-1 .module.contacts-form-container .form-container form .right-container .wpforms-field.label label.wpforms-error {
  display: none !important;
}
.row.main-form .col-1-1 .module.contacts-form-container .form-container form .right-container .wpforms-field.wpforms-has-error label {
  color: #cc0000;
}
.row.main-form .col-1-1 .module.contacts-form-container .form-container form .right-container .wpforms-field:last-of-type input {
  margin: 0;
}
.row.main-form .col-1-1 .module.contacts-form-container .form-container form textarea {
  min-height: 149px;
  margin: 0;
}
.row.main-form .col-1-1 .module.contacts-form-container .form-container form .wpforms-submit-container .btn {
  float: right;
  left: auto;
  right: 0;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  margin: 40px -160px 20px 0 !important;
}
.row.main-form .col-1-1 .module.contacts-form-container .form-container form .wpforms-field.text {
  display: block;
  float: left;
  width: 200%;
  margin: 40px 0 0 0;
}
.row.main-form .col-1-1 .module.contacts-form-container .form-container form .wpforms-field.text p {
  margin: 0;
  font-weight: 400;
}
@media only screen and (max-width: 1119px) {
  .row.main-form .col-1-1 .module.contacts-form-container .form-container form .wpforms-field.text {
    width: 100%;
  }
}
@media only screen and (max-width: 1119px) {
  .row.main-form .col-1-1 .module.contacts-form-container .form-container {
    width: 100%;
    max-width: 480px;
    position: relative;
    float: none;
    margin: 0 auto;
    z-index: 999;
  }
  .row.main-form .col-1-1 .module.contacts-form-container .form-container form .wpforms-submit-container .btn {
    float: left;
    left: 50%;
    right: auto;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    margin: 40px 0px 20px 0 !important;
  }
}
.row.main-form .col-1-1 .module.contacts-form-container .form-container.full {
  width: 100%;
  margin: 40px 0 0 0;
}
.row.main-form .col-1-1 .module.contacts-form-container .form-container.full form textarea {
  min-height: 144px;
}
.row.main-form .col-1-1 .module.contacts-form-container .form-container.full form .wpforms-submit-container .btn {
  float: left;
  left: 50%;
  right: auto;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  margin: 38px 0px 20px 0 !important;
}
.row.main-form .col-1-1 .module.contacts-form-container .contacts-container {
  width: calc(50% - 20px);
  background: #ffffff;
  position: relative;
  padding: 40px;
  margin: 40px 0 190px 0;
}
@media only screen and (max-width: 1119px) {
  .row.main-form .col-1-1 .module.contacts-form-container .contacts-container {
    width: 100%;
    max-width: 480px;
    position: relative;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    margin: 0 0 40px 0;
  }
}
@media only screen and (max-width: 639px) {
  .row.main-form .col-1-1 .module.contacts-form-container .contacts-container {
    margin: 40px 0 0 0;
  }
}
@media only screen and (max-width: 479px) {
  .row.main-form .col-1-1 .module.contacts-form-container .contacts-container {
    padding: 40px 20px 20px 20px;
  }
}
.row.main-form .col-1-1 .module.contacts-form-container .contacts-container .image-container {
  width: 160px;
  position: absolute;
  bottom: -40px;
  left: auto;
  right: 40px;
}
.row.main-form .col-1-1 .module.contacts-form-container .contacts-container .image-container img {
  border-radius: 50%;
}
@media only screen and (max-width: 639px) {
  .row.main-form .col-1-1 .module.contacts-form-container .contacts-container .image-container {
    position: relative;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    right: auto;
    margin: 0px 0 40px 0;
  }
  .row.main-form .col-1-1 .module.contacts-form-container .contacts-container .image-container img {
    position: relative;
    left: 50%;
    margin: -80px 0 0 0px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@media only screen and (max-width: 639px) {
  .row.main-form .col-1-1 .module.contacts-form-container .contacts-container .content-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
@media only screen and (max-width: 639px) {
  .row.main-form .col-1-1 .module.contacts-form-container .contacts-container .content-container ul {
    margin: 0;
  }
}
.row.main-form .col-1-1 .module.contacts-form-container .contacts-container .content-container ul li {
  line-height: 50px;
  padding: 0;
  position: relative;
  display: block;
  float: left;
}
@media only screen and (max-width: 479px) {
  .row.main-form .col-1-1 .module.contacts-form-container .contacts-container .content-container ul li {
    text-align: center;
  }
}
.row.main-form .col-1-1 .module.contacts-form-container .contacts-container .content-container ul li:before {
  display: none;
}
.row.main-form .col-1-1 .module.contacts-form-container .contacts-container .content-container ul li a {
  display: block;
  float: left;
  width: 100%;
  padding: 0 0 0 70px;
  color: #4b4b4d;
  min-height: 50px;
  max-height: 50px;
  overflow: hidden;
}
.row.main-form .col-1-1 .module.contacts-form-container .contacts-container .content-container ul li a:before {
  display: none;
  width: 50px;
  height: 50px;
  line-height: 50px;
  position: absolute;
  top: 0;
  left: 0;
  font-family: "Font Awesome 5 Pro";
  font-size: 24px;
  font-weight: 300;
  color: #ffffff;
  text-align: center;
  background: #00703c;
  -webkit-transition: 0.5s all ease-in-out;
  transition: 0.5s all ease-in-out;
}
.row.main-form .col-1-1 .module.contacts-form-container .contacts-container .content-container ul li a.phone {
  padding: 0 0 0 70px;
}
@media only screen and (max-width: 479px) {
  .row.main-form .col-1-1 .module.contacts-form-container .contacts-container .content-container ul li a.phone {
    text-align: left;
  }
}
.row.main-form .col-1-1 .module.contacts-form-container .contacts-container .content-container ul li a.phone:before {
  content: "\f3ce";
  display: block;
}
.row.main-form .col-1-1 .module.contacts-form-container .contacts-container .content-container ul li a.email {
  padding: 0 0 0 70px;
}
@media only screen and (max-width: 479px) {
  .row.main-form .col-1-1 .module.contacts-form-container .contacts-container .content-container ul li a.email {
    text-align: left;
  }
}
.row.main-form .col-1-1 .module.contacts-form-container .contacts-container .content-container ul li a.email:before {
  content: "\f0e0";
  display: block;
}
.row.main-form .col-1-1 .module.contacts-form-container .contacts-container .content-container ul li a:hover {
  color: rgba(0, 112, 60, 0.6);
}
.row.main-form .col-1-1 .module.contacts-form-container .contacts-container .content-container ul li a:hover:before {
  background: #76bf42;
}
.row.main-form .col-1-1 .module.contacts-form-container .contacts-container .content-container ul.name-function {
  float: right;
  float: left;
  width: calc(100% - 200px);
  position: absolute;
  left: 40px;
  bottom: 40px;
  margin: 0;
}
@media only screen and (max-width: 1119px) {
  .row.main-form .col-1-1 .module.contacts-form-container .contacts-container .content-container ul.name-function {
    position: relative;
    left: auto;
    bottom: auto;
    margin: 20px 0 0 0;
  }
}
@media only screen and (max-width: 639px) {
  .row.main-form .col-1-1 .module.contacts-form-container .contacts-container .content-container ul.name-function {
    padding: 0;
    margin: 0 0 20px 0;
    width: 100%;
    height: auto;
  }
}
.row.main-form .col-1-1 .module.contacts-form-container .contacts-container .content-container ul.name-function li {
  line-height: 20px;
  margin: 0;
}
.row.main-form .col-1-1 .module.contacts-form-container .contacts-container .content-container ul.name-function li.name {
  font-weight: 400;
}
.row.main-form .col-1-1 .module.contacts-form-container .contacts-container.full {
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  margin: 40px 0 80px 0;
}
.row.main-form .col-1-1 .module.contacts-form-container .contacts-container.full .content-container ul.name-function {
  position: relative;
  left: auto;
  bottom: auto;
  margin: 20px 0 0 0;
}
.row.main-form .gform_wrapper .gform_validation_errors {
  display: none;
}
.row.main-form .gform_wrapper .validation_error {
  display: none;
}
.row.main-form .gform_wrapper .gform_body ul {
  margin: 0;
}
.row.main-form .gform_wrapper .gform_body ul li {
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
}
.row.main-form .gform_wrapper .gform_body ul li:before {
  display: none;
}
.row.main-form .gform_wrapper .gform_body ul li .validation_message {
  display: none;
}
.row.main-form .gform_wrapper .gform_body ul li textarea {
  min-height: 150px;
  height: 150px;
}
.row.main-form .gform_wrapper .gform_body ul li.gfield_error input::-webkit-input-placeholder, .row.main-form .gform_wrapper .gform_body ul li.gfield_error textarea::-webkit-input-placeholder {
  color: #cc0000;
  opacity: 1;
}
.row.main-form .gform_wrapper .gform_body ul li.gfield_error input::-moz-placeholder, .row.main-form .gform_wrapper .gform_body ul li.gfield_error textarea::-moz-placeholder {
  color: #cc0000;
  opacity: 1;
}
.row.main-form .gform_wrapper .gform_body ul li.gfield_error input:-ms-input-placeholder, .row.main-form .gform_wrapper .gform_body ul li.gfield_error textarea:-ms-input-placeholder {
  color: #cc0000;
  opacity: 1;
}
.row.main-form .gform_wrapper .gform_body ul li.gfield_error input::-ms-input-placeholder, .row.main-form .gform_wrapper .gform_body ul li.gfield_error textarea::-ms-input-placeholder {
  color: #cc0000;
  opacity: 1;
}
.row.main-form .gform_wrapper .gform_body ul li.gfield_error input::placeholder,
.row.main-form .gform_wrapper .gform_body ul li.gfield_error textarea::placeholder {
  color: #cc0000;
  opacity: 1;
}
.row.main-form .gform_wrapper .gform_body ul li.gfield_error label {
  color: #cc0000 !important;
}
.row.main-form .gform_wrapper .gform_body ul li.gfield_html {
  width: calc(200% + 40px);
  font-weight: 400;
}
@media only screen and (max-width: 1119px) {
  .row.main-form .gform_wrapper .gform_body ul li.gfield_html {
    width: 100%;
  }
}
.row.main-form .gform_wrapper .gform_body ul li.gfield_html p {
  margin: 40px 0 0 0;
}
.row.main-form .gform_wrapper .gform_body ul li.gfield_visibility_hidden {
  display: none;
}
.row.main-form .gform_wrapper .gform_body ul li.gfield.file label {
  display: block !important;
  padding: 20px 20px 0px 20px;
  background: #ffffff;
  font-weight: 400;
  color: #00703c;
}
.row.main-form .gform_wrapper .gform_body ul li.gfield.file span {
  display: none;
}
.row.main-form .gform_wrapper .gform_body ul li.gfield.last input {
  margin: 0;
}
.row.main-form .gform_wrapper .gform_body ul li .ginput_container_checkbox .gchoice,
.row.main-form .gform_wrapper .gform_body ul li .ginput_container_radio .gchoice,
.row.main-form .gform_wrapper .gform_body ul li .ginput_container_consent .gchoice {
  height: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.row.main-form .gform_wrapper .gform_body ul li .ginput_container_checkbox label,
.row.main-form .gform_wrapper .gform_body ul li .ginput_container_radio label,
.row.main-form .gform_wrapper .gform_body ul li .ginput_container_consent label {
  display: block !important;
  position: relative;
  padding: 0 0 0 40px;
  cursor: pointer;
}
.row.main-form .gform_wrapper .gform_body ul li .ginput_container_checkbox label::before, .row.main-form .gform_wrapper .gform_body ul li .ginput_container_checkbox label::after,
.row.main-form .gform_wrapper .gform_body ul li .ginput_container_radio label::before,
.row.main-form .gform_wrapper .gform_body ul li .ginput_container_radio label::after,
.row.main-form .gform_wrapper .gform_body ul li .ginput_container_consent label::before,
.row.main-form .gform_wrapper .gform_body ul li .ginput_container_consent label::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  width: 24px;
  height: 24px;
  background-color: #4b4b4d;
  border: 1px solid #ffffff;
  border-radius: 2px;
  pointer-events: none;
  z-index: 1;
  border-radius: 2px;
}
.row.main-form .gform_wrapper .gform_body ul li .ginput_container_checkbox label::after,
.row.main-form .gform_wrapper .gform_body ul li .ginput_container_radio label::after,
.row.main-form .gform_wrapper .gform_body ul li .ginput_container_consent label::after {
  content: "";
  -webkit-mask-image: url("../img/check-solid.svg");
          mask-image: url("../img/check-solid.svg");
  -webkit-mask-size: 16px;
          mask-size: 16px;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
}
.row.main-form .gform_wrapper .gform_body ul li .ginput_container_checkbox input,
.row.main-form .gform_wrapper .gform_body ul li .ginput_container_radio input,
.row.main-form .gform_wrapper .gform_body ul li .ginput_container_consent input {
  display: none;
}
.row.main-form .gform_wrapper .gform_body ul li .ginput_container_checkbox input:checked + label::before,
.row.main-form .gform_wrapper .gform_body ul li .ginput_container_radio input:checked + label::before,
.row.main-form .gform_wrapper .gform_body ul li .ginput_container_consent input:checked + label::before {
  background-color: #ffde00;
}
.row.main-form .gform_wrapper .gfield--type-honeypot * {
  display: none;
}
.row.main-form .gform_wrapper .gform_footer {
  width: 200%;
}
@media only screen and (max-width: 1119px) {
  .row.main-form .gform_wrapper .gform_footer {
    width: 100%;
  }
}
.row.main-form .gform_wrapper .gform_footer button {
  margin: 40px 0 20px 0;
  font-family: "Fira Sans", sans-serif;
}
.row.main-form .gform_wrapper .gform_footer img {
  position: absolute;
  bottom: 40px;
  left: calc(50% + 70px);
  width: 50px;
  height: 50px;
  background: #ffde00;
  z-index: 1;
  border-radius: 50%;
  padding: 16px;
}
.row.main-form.alt .col-1-1 .module.contacts-form-container {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media only screen and (max-width: 1119px) {
  .row.main-form.alt .col-1-1 .module.contacts-form-container .form-container.full {
    margin: 40px auto 0 auto;
  }
}
.row.main-form.alt .col-1-1 .module.contacts-form-container .contacts-container.full {
  width: 100%;
}
.row .small .gform_wrapper .gform_footer,
.row .small .gform_wrapper .gform_body ul li.gfield_html {
  width: 100%;
}

form.new-form .gform_body .gform_fields {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
form.new-form .gform_body .gform_fields .gfield {
  margin-bottom: 20px;
}
form.new-form .gform_body .gform_fields .gfield.gfield--width-half {
  width: calc(50% - 20px);
}
@media only screen and (max-width: 1119px) {
  form.new-form .gform_body .gform_fields .gfield.gfield--width-half {
    width: 100%;
  }
}
form.new-form .gform_body .gform_fields .gfield.gfield_html p {
  font-weight: 400;
}
form.new-form .gform_body .gform_fields .gfield.gfield_visibility_hidden {
  display: none;
}
form.new-form .gform_body .gform_fields .gfield.gfield_error .validation_message {
  display: block !important;
  font-size: 12px;
  font-weight: 500;
  color: #ff0033;
  margin-top: 10px;
}
form.new-form .gform_body .gform_fields .gfield input {
  margin: 0;
}
form.new-form .gform_body .gform_fields .gfield label {
  display: block !important;
  font-size: 12px;
  font-weight: 500;
  color: #00703c;
  margin-bottom: 10px;
}
form.new-form .gform_body .gform_fields .gfield .ginput_container_select {
  position: relative;
}
form.new-form .gform_body .gform_fields .gfield .ginput_container_select::after {
  content: "\f078";
  width: 50px;
  height: 50px;
  line-height: 50px;
  position: absolute;
  top: 0;
  right: 0;
  font-family: "Font Awesome 5 Pro";
  font-size: 24px;
  font-weight: 300;
  color: #ffffff;
  text-align: center;
  background: #00703c;
  -webkit-transition: 0.5s all ease-in-out;
  transition: 0.5s all ease-in-out;
  pointer-events: none;
}
form.new-form .gform_body .gform_fields .gfield .ginput_container_select select {
  border: none;
  margin: 0 0 2px 0;
  padding: 15px 70px 15px 20px;
  font-family: "Fira Sans", sans-serif;
  font-size: 16px;
  letter-spacing: 0px;
  line-height: 20px;
  font-weight: 300;
  color: #4b4b4d;
}
form.new-form .gform_body .gform_fields .gfield .ginput_container_fileupload {
  position: relative;
}
form.new-form .gform_body .gform_fields .gfield .ginput_container_fileupload .gform_drop_area {
  padding: 15px 20px 15px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #ffffff;
}
form.new-form .gform_body .gform_fields .gfield .ginput_container_fileupload .gform_drop_area span {
  width: 50%;
}
@media only screen and (max-width: 1119px) {
  form.new-form .gform_body .gform_fields .gfield .ginput_container_fileupload .gform_drop_area span {
    width: 100%;
    text-align: center;
    padding-bottom: 15px;
  }
}
form.new-form .gform_body .gform_fields .gfield .ginput_container_fileupload .gform_drop_area button {
  width: 50%;
  margin: 0 !important;
  border: none;
  padding: 15px 20px 15px 20px;
  font-family: "Fira Sans", sans-serif;
  font-size: 16px;
  letter-spacing: 0px;
  line-height: 20px;
  font-weight: 300;
  color: #4b4b4d;
  background: #f0f0ef;
  text-align: center;
  -webkit-transition: 0.5s all ease-in-out;
  transition: 0.5s all ease-in-out;
}
@media only screen and (max-width: 1119px) {
  form.new-form .gform_body .gform_fields .gfield .ginput_container_fileupload .gform_drop_area button {
    width: 100%;
  }
}
form.new-form .gform_body .gform_fields .gfield .ginput_container_fileupload .gform_drop_area button:hover {
  cursor: pointer;
  background: #dcdcda;
}
form.new-form .gform_body .gform_fields .gfield .ginput_container_fileupload .gform_fileupload_rules {
  padding: 10px 20px 10px 20px;
  background: #f0f0ef;
  width: 100%;
  font-size: 12px;
  font-weight: 500;
}
form.new-form .gform_body .gform_fields .gfield .ginput_container_fileupload .validation_message li {
  display: block !important;
  font-size: 12px;
  font-weight: 500;
  color: #ff0033;
  margin-top: 10px;
}
form.new-form .gform_body .gform_fields .gfield .ginput_preview {
  background: #ffffff;
  padding: 15px 20px 15px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  margin-top: 2px;
}
form.new-form .gform_body .gform_fields .gfield .ginput_preview a {
  color: #00703c;
  width: 100%;
}
form.new-form .gform_body .gform_fields .gfield .ginput_preview button {
  width: 50px;
  height: 50px;
  position: absolute;
  top: 0;
  right: 0;
  margin: 0 !important;
}
form.new-form .gform_body .gform_fields .gfield .ginput_preview button:hover {
  cursor: pointer;
  background: #dcdcda;
}
form.new-form .gform_body .gform_fields .gfield .ginput_preview button span {
  display: none;
}
form.new-form .gform_body .gform_fields .gfield .ginput_preview button span.dashicons {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
form.new-form .gform_body .gform_fields .gfield .ginput_preview button span.dashicons::before {
  width: 50px;
  height: 50px;
  line-height: 50px;
  position: absolute;
  top: 0;
  right: 0;
  font-size: 24px;
  font-weight: 300;
  color: #ffffff;
  text-align: center;
  background: #00703c;
  -webkit-transition: 0.5s all ease-in-out;
  transition: 0.5s all ease-in-out;
  pointer-events: none;
}
form.new-form .gform_footer {
  width: 100% !important;
  position: relative;
}
form.new-form .gform_footer button {
  margin: 0 0 20px 0 !important;
}
form.new-form .gform_footer img {
  position: absolute !important;
  top: 25px !important;
  bottom: auto !important;
  left: calc(50% + 115px) !important;
  width: 50px !important;
  height: 50px !important;
  background: #ffde00 !important;
  z-index: 1 !important;
  border-radius: 50% !important;
  padding: 16px !important;
  -webkit-transform: translate(-50%, -50%) !important;
          transform: translate(-50%, -50%) !important;
}

.row.main-map {
  background: #ffffff;
  overflow: hidden;
}
.row.main-map:after {
  content: "";
  position: absolute;
  top: calc(100% - 20px);
  left: 0;
  width: 200%;
  height: 500px;
  background: #ffffff;
  -webkit-transform: rotate(-5deg);
          transform: rotate(-5deg);
  -webkit-transform-origin: 0% 100% 0;
          transform-origin: 0% 100% 0;
  z-index: 1;
  background: #76bf42;
}
.row.main-map .mapbox {
  height: 480px;
  width: 100%;
}
.row.main-map .mapbox .marker {
  display: none;
}
.row.main-map .mapbox .custom-marker {
  background: url("../img/marker.svg");
  background-size: cover;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  cursor: pointer;
}
.row.main-map .mapbox .mapboxgl-control-container {
  display: none;
}
.row.main-contact-info {
  background: transparent;
  background: -webkit-gradient(linear, left top, right bottom, color-stop(50%, #76bf42), to(#00703c));
  background: linear-gradient(to bottom right, #76bf42 50%, #00703c 100%);
}
.row.main-contact-info:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40px;
  background: #f0f0ef;
  z-index: 1;
}
.row.main-contact-info [class*=col-] {
  position: relative;
  z-index: 2;
  margin: -180px 0 0 0;
}
.row.main-contact-info [class*=col-] .module {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width: 959px) {
  .row.main-contact-info [class*=col-] .module {
    display: block;
  }
}
.row.main-contact-info [class*=col-] .module .left-container {
  width: calc(50% - 20px);
  margin: 0 40px 0 0;
  background: #ffffff;
}
@media only screen and (max-width: 959px) {
  .row.main-contact-info [class*=col-] .module .left-container {
    width: 100%;
    margin: 0;
  }
}
.row.main-contact-info [class*=col-] .module .right-container {
  width: calc(50% - 20px);
}
@media only screen and (max-width: 959px) {
  .row.main-contact-info [class*=col-] .module .right-container {
    width: 100%;
    margin: 40px 0 0 0;
  }
}
.row.main-contact-info [class*=col-] .module ul {
  margin: 0;
  background: #ffffff;
  padding: 20px 40px 35px 40px;
}
.row.main-contact-info [class*=col-] .module ul li {
  padding: 0;
}
.row.main-contact-info [class*=col-] .module ul li:before {
  display: none;
}
.row.main-contact-info [class*=col-] .module ul li.title {
  font-weight: 400;
  text-transform: uppercase;
  margin: 20px 0 5px 0;
}
.row.main-contact-info [class*=col-] .module ul li.email, .row.main-contact-info [class*=col-] .module ul li.phone {
  line-height: 50px;
  margin: 0 0 5px 0;
}
.row.main-contact-info [class*=col-] .module ul li.email a, .row.main-contact-info [class*=col-] .module ul li.phone a {
  padding: 0 0 0 70px;
  color: #4b4b4d;
  width: 100%;
  display: inline-block;
}
.row.main-contact-info [class*=col-] .module ul li.email a::before, .row.main-contact-info [class*=col-] .module ul li.phone a::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  width: 50px;
  height: 50px;
  background: #00703c;
  color: #ffffff;
  text-align: center;
  line-height: 50px;
  font-family: "Font Awesome 5 Pro";
  pointer-events: none;
  -webkit-transition: all ease-in-out 0.5s;
  transition: all ease-in-out 0.5s;
}
.row.main-contact-info [class*=col-] .module ul li.email a:hover, .row.main-contact-info [class*=col-] .module ul li.phone a:hover {
  cursor: pointer;
  color: #76bf42;
}
.row.main-contact-info [class*=col-] .module ul li.email a:hover::before, .row.main-contact-info [class*=col-] .module ul li.phone a:hover::before {
  background: #76bf42;
}
.row.main-contact-info [class*=col-] .module ul li.phone {
  margin: 20px 0 5px 0;
}
.row.main-contact-info [class*=col-] .module ul li.phone a::before {
  content: "\f095";
}
.row.main-contact-info [class*=col-] .module ul li.email a::before {
  content: "\f0e0";
}
.row.main-contact-info [class*=col-] .module ul li.open {
  padding: 0 0 0 70px;
  position: relative;
  line-height: 50px;
  margin: 0 0 5px 0;
  width: 50%;
  float: left;
}
.row.main-contact-info [class*=col-] .module ul li.open::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  width: 50px;
  height: 50px;
  background: #00703c;
  color: #ffffff;
  font-family: "Fira Sans", sans-serif;
  font-size: 16px;
  font-weight: 300;
  text-transform: uppercase;
  text-align: center;
  line-height: 50px;
  pointer-events: none;
  -webkit-transition: all ease-in-out 0.5s;
  transition: all ease-in-out 0.5s;
  display: block;
}
.row.main-contact-info [class*=col-] .module ul li.open.ma::before {
  content: "ma";
}
.row.main-contact-info [class*=col-] .module ul li.open.di::before {
  content: "di";
}
.row.main-contact-info [class*=col-] .module ul li.open.wo::before {
  content: "wo";
}
.row.main-contact-info [class*=col-] .module ul li.open.do::before {
  content: "do";
}
.row.main-contact-info [class*=col-] .module ul li.open.vr::before {
  content: "vr";
}
.row.main-contact-info [class*=col-] .module ul li.open.za::before {
  content: "za";
}
.row.main-contact-info [class*=col-] .module ul li.open.zo::before {
  content: "zo";
}
.row.main-contact-info [class*=col-] .module ul li.open:nth-child(-n+4) {
  margin: 20px 0 5px 0;
}
@media only screen and (max-width: 959px) {
  .row.main-contact-info [class*=col-] .module ul li.open {
    width: 100%;
    margin: 0 0 5px 0;
  }
  .row.main-contact-info [class*=col-] .module ul li.open:nth-child(-n+4) {
    margin: 0 0 5px 0;
  }
  .row.main-contact-info [class*=col-] .module ul li.open:nth-child(3) {
    margin: 20px 0 5px 0;
  }
}

.row.main-contacts {
  padding: 80px 0 40px 0;
  background: #ffffff;
  margin: -80px 0 0 0;
}
.row.main-contacts.child {
  background: #f0f0ef;
  margin: 0;
}
@media only screen and (max-width: 799px) {
  .row.main-contacts {
    padding: 40px 0 0 0;
  }
}
@media only screen and (max-width: 1279px) {
  .row.main-contacts [class*=col-] {
    width: 100%;
  }
  .row.main-contacts [class*=col-]:last-of-type .module {
    padding: 0;
  }
  .row.main-contacts [class*=col-]:last-of-type .module::after {
    display: none !important;
  }
}
.row.main-contacts [class*=col-] .module {
  margin: 0 0 40px 0;
}
.row.main-contacts [class*=col-] .module.small {
  margin: 0 auto 40px auto;
}
@media only screen and (max-width: 1279px) {
  .row.main-contacts [class*=col-] .module {
    padding: 0 0 40px 0;
  }
  .row.main-contacts [class*=col-] .module::after {
    content: "";
    width: 100%;
    height: 1px;
    background: #bcbcbc;
    position: absolute;
    left: 0;
    bottom: 0;
  }
}
.row.main-contacts [class*=col-] .module .image-container {
  width: 180px;
  height: 180px;
  position: relative;
  padding: 10px 0 0 10px;
}
.row.main-contacts [class*=col-] .module .image-container img {
  position: relative;
}
.row.main-contacts [class*=col-] .module .image-container::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  background: #ffde00;
  background: -webkit-gradient(linear, left top, right bottom, from(rgba(118, 191, 66, 0.8)), to(rgba(255, 222, 0, 0.8)));
  background: linear-gradient(to bottom right, rgba(118, 191, 66, 0.8) 0%, rgba(255, 222, 0, 0.8) 100%);
}
@media only screen and (max-width: 639px) {
  .row.main-contacts [class*=col-] .module .image-container {
    margin: 0 0 40px 0;
  }
}
.row.main-contacts [class*=col-] .module .content-container {
  width: calc(100% - 180px);
  height: 180px;
  padding: 0 0 0 40px;
  position: relative;
}
@media only screen and (max-width: 639px) {
  .row.main-contacts [class*=col-] .module .content-container {
    width: 100%;
    padding: 0;
    height: auto;
  }
}
.row.main-contacts [class*=col-] .module .content-container ul {
  position: absolute;
  width: calc(100% - 80px);
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  margin: 0;
}
@media only screen and (max-width: 639px) {
  .row.main-contacts [class*=col-] .module .content-container ul {
    position: relative;
    width: 100%;
    top: 0;
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
  }
}
.row.main-contacts [class*=col-] .module .content-container ul li {
  padding: 0;
  color: #4b4b4d;
}
.row.main-contacts [class*=col-] .module .content-container ul li::before {
  display: none;
}
.row.main-contacts [class*=col-] .module .content-container ul li.title {
  font-weight: 400;
  text-transform: uppercase;
}
.row.main-contacts [class*=col-] .module .content-container ul li.phone, .row.main-contacts [class*=col-] .module .content-container ul li.email, .row.main-contacts [class*=col-] .module .content-container ul li.facebook, .row.main-contacts [class*=col-] .module .content-container ul li.youtube {
  line-height: 40px;
}
.row.main-contacts [class*=col-] .module .content-container ul li.phone a, .row.main-contacts [class*=col-] .module .content-container ul li.email a, .row.main-contacts [class*=col-] .module .content-container ul li.facebook a, .row.main-contacts [class*=col-] .module .content-container ul li.youtube a {
  padding: 0 0 0 50px;
  color: #4b4b4d;
  width: 100%;
  display: inline-block;
}
.row.main-contacts [class*=col-] .module .content-container ul li.phone a::before, .row.main-contacts [class*=col-] .module .content-container ul li.email a::before, .row.main-contacts [class*=col-] .module .content-container ul li.facebook a::before, .row.main-contacts [class*=col-] .module .content-container ul li.youtube a::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  width: 40px;
  height: 40px;
  background: #ffde00;
  color: #ffffff;
  text-align: center;
  line-height: 40px;
  font-family: "Font Awesome 5 Pro";
  pointer-events: none;
  -webkit-transition: all ease-in-out 0.5s;
  transition: all ease-in-out 0.5s;
}
.row.main-contacts [class*=col-] .module .content-container ul li.phone a:hover, .row.main-contacts [class*=col-] .module .content-container ul li.email a:hover, .row.main-contacts [class*=col-] .module .content-container ul li.facebook a:hover, .row.main-contacts [class*=col-] .module .content-container ul li.youtube a:hover {
  cursor: pointer;
}
.row.main-contacts [class*=col-] .module .content-container ul li.phone a:hover::before, .row.main-contacts [class*=col-] .module .content-container ul li.email a:hover::before, .row.main-contacts [class*=col-] .module .content-container ul li.facebook a:hover::before, .row.main-contacts [class*=col-] .module .content-container ul li.youtube a:hover::before {
  background: #76bf42;
}
.row.main-contacts [class*=col-] .module .content-container ul li.email a::before {
  content: "\f0e0";
}
.row.main-contacts [class*=col-] .module .content-container ul li.phone {
  margin: 20px 0 2px 0;
}
.row.main-contacts [class*=col-] .module .content-container ul li.phone a::before {
  content: "\f10b";
}

.row.main-introduction.title {
  width: 100%;
  position: relative;
  z-index: 0;
  margin: -120px 0 -240px 0;
  padding: 200px 0 360px 0;
}
.row.main-introduction.title:before {
  content: "";
  position: absolute;
  bottom: -340px;
  left: 50%;
  margin-left: -5000px;
  width: 10000px;
  height: 500px;
  background: #ffffff;
  z-index: 1;
  -webkit-transform: rotate(-5deg);
          transform: rotate(-5deg);
  -webkit-transform-origin: 50% 50% 0;
          transform-origin: 50% 50% 0;
}
.row.main-introduction.title:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background: #ffde00;
  background: -webkit-gradient(linear, left top, right bottom, color-stop(10%, rgba(118, 191, 66, 0.4)), color-stop(50%, rgba(0, 112, 60, 0.4)), color-stop(90%, rgba(255, 222, 0, 0.4)));
  background: linear-gradient(to bottom right, rgba(118, 191, 66, 0.4) 10%, rgba(0, 112, 60, 0.4) 50%, rgba(255, 222, 0, 0.4) 90%);
  z-index: -1;
}
.row.main-introduction.title .background-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  z-index: 0;
  overflow: hidden;
  z-index: -1;
}
.row.main-introduction.title .col-1-1 {
  width: 100%;
}
.row.main-introduction.title .col-1-1 .module:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 600px;
  margin: -300px 0 0 -450px;
  border-radius: 20px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  z-index: 0;
  background: transparent;
  background: -webkit-gradient(linear, left bottom, right top, color-stop(30%, rgba(0, 112, 60, 0)), color-stop(70%, rgba(0, 112, 60, 0.6)), to(rgba(255, 222, 0, 0.6)));
  background: linear-gradient(to right top, rgba(0, 112, 60, 0) 30%, rgba(0, 112, 60, 0.6) 70%, rgba(255, 222, 0, 0.6) 100%);
}
@media only screen and (max-width: 639px) {
  .row.main-introduction.title .col-1-1 .module:after {
    margin: -300px 0 0 -500px;
  }
}
@media only screen and (max-width: 479px) {
  .row.main-introduction.title .col-1-1 .module:after {
    margin: -300px 0 0 -550px;
  }
}
.row.main-introduction.title .col-1-1 .module h1 {
  text-transform: uppercase;
  color: #ffffff;
  font-size: 40px;
  line-height: 44px;
  position: relative;
  text-align: center;
  margin: 0;
  z-index: 1;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.25);
}
@media only screen and (max-width: 479px) {
  .row.main-introduction.title .col-1-1 .module h1 {
    font-size: 24px;
    line-height: 28px;
  }
}
.row.main-introduction.title .col-1-1 .module h3 {
  text-transform: uppercase;
  color: #ffffff;
  font-size: 24px;
  line-height: 28px;
  position: relative;
  text-align: center;
  margin: 0;
  z-index: 1;
  width: auto;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.25);
}
.row.main-introduction.title .col-1-1 .module h3 a {
  color: #ffde00;
  -webkit-transition: 0.5s all ease-in-out;
  transition: 0.5s all ease-in-out;
}
.row.main-introduction.title .col-1-1 .module h3:hover a {
  color: rgba(255, 222, 0, 0.6);
}
.row.main-introduction.text {
  margin: 0 0 80px 0;
  z-index: 0;
}
@media only screen and (max-width: 639px) {
  .row.main-introduction.text {
    margin: 0 0 40px 0;
  }
}
.row.main-introduction.text .col-1-1 {
  width: 100%;
}
.row.main-introduction.text .col-1-1 .module {
  background: #f0f0ef;
  padding: 40px 80px 40px 40px;
  position: relative;
  min-height: 160px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media only screen and (max-width: 799px) {
  .row.main-introduction.text .col-1-1 .module {
    padding: 0px;
    display: block;
    background: transparent;
  }
}
.row.main-introduction.text .col-1-1 .module .breadcrumbs {
  position: absolute;
  top: -20px;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: start;
      align-self: flex-start;
  width: calc(100% - 360px);
}
@media only screen and (max-width: 1119px) {
  .row.main-introduction.text .col-1-1 .module .breadcrumbs {
    display: none;
  }
}
.row.main-introduction.text .col-1-1 .module .breadcrumbs ul {
  width: 100%;
}
.row.main-introduction.text .col-1-1 .module .breadcrumbs ul li {
  color: #ffffff;
  font-weight: 400;
  padding: 0;
  margin: 0;
  width: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-transform: uppercase;
}
.row.main-introduction.text .col-1-1 .module .breadcrumbs ul li.separator {
  padding: 0 20px;
}
.row.main-introduction.text .col-1-1 .module .breadcrumbs ul li.item-current {
  color: #ffffff;
}
.row.main-introduction.text .col-1-1 .module .breadcrumbs ul li a {
  color: #ffffff;
  -webkit-transition: 0.25s all ease-in-out;
  transition: 0.25s all ease-in-out;
}
.row.main-introduction.text .col-1-1 .module .breadcrumbs ul li a:hover {
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
}
.row.main-introduction.text .col-1-1 .module .breadcrumbs ul li:before, .row.main-introduction.text .col-1-1 .module .breadcrumbs ul li:after {
  display: none;
}
.row.main-introduction.text .col-1-1 .module .content-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media only screen and (max-width: 799px) {
  .row.main-introduction.text .col-1-1 .module .content-container {
    background: #f0f0ef;
    padding: 40px;
    min-height: 160px;
  }
}
.row.main-introduction.text .col-1-1 .module .content-container h3 {
  text-align: center;
}
.row.main-introduction.text .col-1-1 .module .content-container p {
  text-align: center;
  color: #4b4b4d;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  margin: 0;
}
.row.main-introduction.text .col-1-1 .module .content-container p i {
  margin: 0 5px;
}
.row.main-introduction.text .col-1-1 .module.image {
  min-height: 240px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.row.main-introduction.text .col-1-1 .module.image .content-container {
  padding: 0 320px 0 0;
}
@media only screen and (max-width: 799px) {
  .row.main-introduction.text .col-1-1 .module.image .content-container {
    padding: 40px;
  }
}
.row.main-introduction.text .col-1-1 .module.image .content-container h3 {
  text-align: left;
}
@media only screen and (max-width: 799px) {
  .row.main-introduction.text .col-1-1 .module.image .content-container h3 {
    text-align: center;
  }
}
.row.main-introduction.text .col-1-1 .module.image .content-container p {
  text-align: left;
}
@media only screen and (max-width: 799px) {
  .row.main-introduction.text .col-1-1 .module.image .content-container p {
    text-align: center;
  }
}
.row.main-introduction.text .col-1-1 .module.image img {
  width: 320px;
  position: absolute;
  top: -40px;
  right: 40px;
}
@media only screen and (max-width: 799px) {
  .row.main-introduction.text .col-1-1 .module.image img {
    position: relative;
    top: 0;
    width: 100%;
    right: auto;
    margin: 80px 0 0 0;
  }
}
@media only screen and (max-width: 639px) {
  .row.main-introduction.text .col-1-1 .module.image img {
    margin: 40px 0 0 0;
  }
}
.row.main-introduction.text .col-1-1 .module.facebook .content-container h3 {
  text-align: center;
  margin: 0;
}
.row.main-introduction.text .col-1-1 .module.facebook .content-container h3 i {
  float: none;
  display: inline-block;
  width: auto;
  margin: 0 5px;
}
.row.main-introduction.text .col-1-1 .module.facebook .content-container p {
  text-align: center;
}
.row.main-introduction.text .col-1-1 .module.facebook .image-container {
  width: 320px;
  height: 240px;
  position: absolute;
  top: -40px;
  right: 40px;
  background-size: cover !important;
  background-position: center center !important;
}
@media only screen and (max-width: 799px) {
  .row.main-introduction.text .col-1-1 .module.facebook .image-container {
    position: relative;
    padding: 0 0 56.25% 0;
    overflow: hidden;
    top: 0;
    width: 100%;
    height: 100%;
    right: auto;
    margin: 80px 0 0 0;
  }
}
@media only screen and (max-width: 639px) {
  .row.main-introduction.text .col-1-1 .module.facebook .image-container {
    margin: 40px 0 0 0;
  }
}

.row.main-archive {
  position: relative;
  background-size: cover;
  background-position: center center;
  z-index: 0;
  padding: 80px 0 40px 0;
  background: #f0f0ef;
}
@media only screen and (max-width: 799px) {
  .row.main-archive {
    padding: 40px 0 40px 0;
  }
}
.row.main-archive .col-1-3 .module {
  background: #ffffff;
  margin: 0 0 40px 0;
}
.row.main-archive .col-1-3 .module .image-container i {
  width: 100px;
  height: 200px;
  color: #ffffff;
  font-size: 80px;
  text-align: center;
  line-height: 200px;
  border-radius: 50px;
  position: relative;
  left: 50%;
  margin-left: -50px;
}
.row.main-archive .col-1-3 .module.weekbrief .image-container {
  background: #00703c;
}
.row.main-archive .col-1-3 .module.samen-onderweg .image-container {
  background: #ffde00;
}
.row.main-archive .col-1-3 .module.livestream .image-container {
  background: #76bf42;
}
.row.main-archive .col-1-3 .module .content-container {
  padding: 40px 40px 20px 40px;
}
@media only screen and (max-width: 479px) {
  .row.main-archive .col-1-3 .module .content-container {
    padding: 40px 20px 20px 20px;
  }
}
.row.main-archive .col-1-3 .module .content-container h3 {
  text-align: center;
}
.row.main-archive .col-1-3 .module .content-container p {
  text-align: center;
}
@media only screen and (max-width: 1119px) {
  .row.main-archive .col-1-3 .module .content-container .button-container {
    width: 600px;
    float: none;
    margin: 0 auto;
  }
  .row.main-archive .col-1-3 .module .content-container .button-container a.button {
    left: 0;
    -webkit-transform: translate(0%, 0);
    transform: translate(0%, 0);
    margin: 0 40px 20px 0;
  }
  .row.main-archive .col-1-3 .module .content-container .button-container a.button:last-of-type {
    margin: 0 0 20px 0;
  }
}
@media only screen and (max-width: 799px) {
  .row.main-archive .col-1-3 .module .content-container .button-container {
    width: 100%;
    float: left;
    margin: 0;
  }
  .row.main-archive .col-1-3 .module .content-container .button-container a.button {
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    margin: 0 0 20px 0;
  }
  .row.main-archive .col-1-3 .module .content-container .button-container a.button:last-of-type {
    margin: 0 0 20px 0;
  }
}
@media only screen and (max-width: 1119px) {
  .row.main-archive .col-1-3 {
    width: 100%;
  }
}

.row.main-introduction.title {
  width: 100%;
  position: relative;
  z-index: 0;
  margin: -120px 0 -240px 0;
  padding: 200px 0 360px 0;
}
.row.main-introduction.title:before {
  content: "";
  position: absolute;
  bottom: -340px;
  left: 50%;
  margin-left: -5000px;
  width: 10000px;
  height: 500px;
  background: #ffffff;
  z-index: 1;
  -webkit-transform: rotate(-5deg);
          transform: rotate(-5deg);
  -webkit-transform-origin: 50% 50% 0;
          transform-origin: 50% 50% 0;
}
.row.main-introduction.title:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background: #ffde00;
  background: -webkit-gradient(linear, left top, right bottom, color-stop(10%, rgba(118, 191, 66, 0.4)), color-stop(50%, rgba(0, 112, 60, 0.4)), color-stop(90%, rgba(255, 222, 0, 0.4)));
  background: linear-gradient(to bottom right, rgba(118, 191, 66, 0.4) 10%, rgba(0, 112, 60, 0.4) 50%, rgba(255, 222, 0, 0.4) 90%);
  z-index: -1;
}
.row.main-introduction.title .background-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  z-index: 0;
  overflow: hidden;
  z-index: -1;
}
.row.main-introduction.title .col-1-1 {
  width: 100%;
}
.row.main-introduction.title .col-1-1 .module:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 600px;
  margin: -300px 0 0 -450px;
  border-radius: 20px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  z-index: 0;
  background: transparent;
  background: -webkit-gradient(linear, left bottom, right top, color-stop(30%, rgba(0, 112, 60, 0)), color-stop(70%, rgba(0, 112, 60, 0.6)), to(rgba(255, 222, 0, 0.6)));
  background: linear-gradient(to right top, rgba(0, 112, 60, 0) 30%, rgba(0, 112, 60, 0.6) 70%, rgba(255, 222, 0, 0.6) 100%);
}
@media only screen and (max-width: 639px) {
  .row.main-introduction.title .col-1-1 .module:after {
    margin: -300px 0 0 -500px;
  }
}
@media only screen and (max-width: 479px) {
  .row.main-introduction.title .col-1-1 .module:after {
    margin: -300px 0 0 -550px;
  }
}
.row.main-introduction.title .col-1-1 .module h1 {
  text-transform: uppercase;
  color: #ffffff;
  font-size: 40px;
  line-height: 44px;
  position: relative;
  text-align: center;
  margin: 0;
  z-index: 1;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.25);
}
@media only screen and (max-width: 479px) {
  .row.main-introduction.title .col-1-1 .module h1 {
    font-size: 24px;
    line-height: 28px;
  }
}
.row.main-introduction.title .col-1-1 .module h3 {
  text-transform: uppercase;
  color: #ffffff;
  font-size: 24px;
  line-height: 28px;
  position: relative;
  text-align: center;
  margin: 0;
  z-index: 1;
  width: auto;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.25);
}
.row.main-introduction.title .col-1-1 .module h3 a {
  color: #ffde00;
  -webkit-transition: 0.5s all ease-in-out;
  transition: 0.5s all ease-in-out;
}
.row.main-introduction.title .col-1-1 .module h3:hover a {
  color: rgba(255, 222, 0, 0.6);
}
.row.main-introduction.text {
  margin: 0 0 80px 0;
  z-index: 0;
}
@media only screen and (max-width: 639px) {
  .row.main-introduction.text {
    margin: 0 0 40px 0;
  }
}
.row.main-introduction.text .col-1-1 {
  width: 100%;
}
.row.main-introduction.text .col-1-1 .module {
  background: #f0f0ef;
  padding: 40px 80px 40px 40px;
  position: relative;
  min-height: 160px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media only screen and (max-width: 799px) {
  .row.main-introduction.text .col-1-1 .module {
    padding: 0px;
    display: block;
    background: transparent;
  }
}
.row.main-introduction.text .col-1-1 .module .breadcrumbs {
  position: absolute;
  top: -20px;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: start;
      align-self: flex-start;
  width: calc(100% - 360px);
}
@media only screen and (max-width: 1119px) {
  .row.main-introduction.text .col-1-1 .module .breadcrumbs {
    display: none;
  }
}
.row.main-introduction.text .col-1-1 .module .breadcrumbs ul {
  width: 100%;
}
.row.main-introduction.text .col-1-1 .module .breadcrumbs ul li {
  color: #ffffff;
  font-weight: 400;
  padding: 0;
  margin: 0;
  width: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-transform: uppercase;
}
.row.main-introduction.text .col-1-1 .module .breadcrumbs ul li.separator {
  padding: 0 20px;
}
.row.main-introduction.text .col-1-1 .module .breadcrumbs ul li.item-current {
  color: #ffffff;
}
.row.main-introduction.text .col-1-1 .module .breadcrumbs ul li a {
  color: #ffffff;
  -webkit-transition: 0.25s all ease-in-out;
  transition: 0.25s all ease-in-out;
}
.row.main-introduction.text .col-1-1 .module .breadcrumbs ul li a:hover {
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
}
.row.main-introduction.text .col-1-1 .module .breadcrumbs ul li:before, .row.main-introduction.text .col-1-1 .module .breadcrumbs ul li:after {
  display: none;
}
.row.main-introduction.text .col-1-1 .module .content-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media only screen and (max-width: 799px) {
  .row.main-introduction.text .col-1-1 .module .content-container {
    background: #f0f0ef;
    padding: 40px;
    min-height: 160px;
  }
}
.row.main-introduction.text .col-1-1 .module .content-container h3 {
  text-align: center;
}
.row.main-introduction.text .col-1-1 .module .content-container p {
  text-align: center;
  color: #4b4b4d;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  margin: 0;
}
.row.main-introduction.text .col-1-1 .module .content-container p i {
  margin: 0 5px;
}
.row.main-introduction.text .col-1-1 .module.image {
  min-height: 240px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.row.main-introduction.text .col-1-1 .module.image .content-container {
  padding: 0 320px 0 0;
}
@media only screen and (max-width: 799px) {
  .row.main-introduction.text .col-1-1 .module.image .content-container {
    padding: 40px;
  }
}
.row.main-introduction.text .col-1-1 .module.image .content-container h3 {
  text-align: left;
}
@media only screen and (max-width: 799px) {
  .row.main-introduction.text .col-1-1 .module.image .content-container h3 {
    text-align: center;
  }
}
.row.main-introduction.text .col-1-1 .module.image .content-container p {
  text-align: left;
}
@media only screen and (max-width: 799px) {
  .row.main-introduction.text .col-1-1 .module.image .content-container p {
    text-align: center;
  }
}
.row.main-introduction.text .col-1-1 .module.image img {
  width: 320px;
  position: absolute;
  top: -40px;
  right: 40px;
}
@media only screen and (max-width: 799px) {
  .row.main-introduction.text .col-1-1 .module.image img {
    position: relative;
    top: 0;
    width: 100%;
    right: auto;
    margin: 80px 0 0 0;
  }
}
@media only screen and (max-width: 639px) {
  .row.main-introduction.text .col-1-1 .module.image img {
    margin: 40px 0 0 0;
  }
}
.row.main-introduction.text .col-1-1 .module.facebook .content-container h3 {
  text-align: center;
  margin: 0;
}
.row.main-introduction.text .col-1-1 .module.facebook .content-container h3 i {
  float: none;
  display: inline-block;
  width: auto;
  margin: 0 5px;
}
.row.main-introduction.text .col-1-1 .module.facebook .content-container p {
  text-align: center;
}
.row.main-introduction.text .col-1-1 .module.facebook .image-container {
  width: 320px;
  height: 240px;
  position: absolute;
  top: -40px;
  right: 40px;
  background-size: cover !important;
  background-position: center center !important;
}
@media only screen and (max-width: 799px) {
  .row.main-introduction.text .col-1-1 .module.facebook .image-container {
    position: relative;
    padding: 0 0 56.25% 0;
    overflow: hidden;
    top: 0;
    width: 100%;
    height: 100%;
    right: auto;
    margin: 80px 0 0 0;
  }
}
@media only screen and (max-width: 639px) {
  .row.main-introduction.text .col-1-1 .module.facebook .image-container {
    margin: 40px 0 0 0;
  }
}

section.main-search.main-search {
  padding: 0px 0 60px 0;
}
@media only screen and (max-width: 799px) {
  section.main-search.main-search {
    padding: 0px 0 20px 0;
  }
}
section.main-search.main-search .inner-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
section.main-search.main-search .col-1-1 {
  width: 100%;
}
section.main-search.main-search .col-1-4 {
  margin: 40px 0 0 0;
}
section.main-search.main-search .col-1-4 a {
  display: block;
  float: left;
  width: 100%;
}
section.main-search.main-search .col-1-4 a .module {
  background: #ffffff;
}
section.main-search.main-search .col-1-4 a .module.icon::before {
  content: "";
  position: absolute;
  top: 60px;
  left: -6px;
  width: 20px;
  height: 20px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  background: #ccab00;
  -webkit-transition: all ease-in-out 0.5s;
  transition: all ease-in-out 0.5s;
}
section.main-search.main-search .col-1-4 a .module .image-container {
  height: 100%;
  width: 100%;
  position: relative;
  overflow: hidden;
}
section.main-search.main-search .col-1-4 a .module .image-container:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left bottom, right top, from(rgba(75, 75, 77, 0)), to(rgba(75, 75, 77, 0.05)));
  background: linear-gradient(to top right, rgba(75, 75, 77, 0) 0%, rgba(75, 75, 77, 0.05) 100%);
  z-index: 1;
}
section.main-search.main-search .col-1-4 a .module .image-container .image-ratio {
  padding-top: 100%;
  background-size: cover;
  -moz-background-size: cover;
  background-position: center;
  position: relative;
  top: 0;
  -webkit-transition: 0.5s all ease-in-out;
  transition: 0.5s all ease-in-out;
}
section.main-search.main-search .col-1-4 a .module .image-container.video {
  position: relative;
}
section.main-search.main-search .col-1-4 a .module .image-container.video .image-ratio:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  height: 100px;
  width: 100px;
  background: url(../img/play-icon.png);
  background-size: cover;
  z-index: 1;
}
section.main-search.main-search .col-1-4 a .module .icon-container {
  position: absolute;
  left: -10px;
  top: -10px;
  width: 112px;
  height: 80px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  font-weight: 400;
  font-size: 16px;
  background: transparent;
  color: #ffffff;
  overflow: hidden;
  z-index: 1;
}
section.main-search.main-search .col-1-4 a .module .icon-container::before {
  content: "";
  position: absolute;
  bottom: -24px;
  left: -80px;
  width: 160px;
  height: 160px;
  border-radius: 6px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  background: #ffde00;
  -webkit-transition: all ease-in-out 0.5s;
  transition: all ease-in-out 0.5s;
}
section.main-search.main-search .col-1-4 a .module .icon-container i {
  position: relative;
  display: block;
  float: none;
  margin: 0 0 -2px 0;
  color: #00703c;
  width: 80px;
  height: 80px;
  padding: 20px 18px;
  -webkit-transition: all ease-in-out 0.5s;
  transition: all ease-in-out 0.5s;
  fill: currentColor;
}
section.main-search.main-search .col-1-4 a .module .icon-container i svg {
  position: relative;
  left: 50%;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  width: 100%;
  height: 100%;
}
section.main-search.main-search .col-1-4 a .module .content-container {
  padding: 40px;
  position: relative;
  background: #ffffff;
  margin: 0px 0 0 0;
  height: 136px;
  overflow: hidden;
  -webkit-transition: 0.5s all ease-in-out;
  transition: 0.5s all ease-in-out;
  z-index: 1;
}
@media only screen and (max-width: 479px) {
  section.main-search.main-search .col-1-4 a .module .content-container {
    padding: 40px 20px;
  }
}
section.main-search.main-search .col-1-4 a .module .content-container h3 {
  text-align: center;
  -webkit-transition: 0.5s all ease-in-out;
  transition: 0.5s all ease-in-out;
  min-height: 56px;
  max-height: 56px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  opacity: 0;
}
section.main-search.main-search .col-1-4 a .module .content-container h3.loaded {
  opacity: 1;
}
section.main-search.main-search .col-1-4 a .module .content-container p {
  text-align: center;
  min-height: 85px;
  max-height: 85px;
  overflow: hidden;
  margin: 0 0 40px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #4b4b4d;
  opacity: 0;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
section.main-search.main-search .col-1-4 a .module .content-container p strong {
  width: 100%;
  text-transform: uppercase;
  margin: 0 0 5px 0;
}
section.main-search.main-search .col-1-4 a .module .content-container p img.emoji {
  display: none !important;
}
section.main-search.main-search .col-1-4 a .module .content-container .button-container {
  opacity: 0;
  -webkit-transition: 0.5s all ease-in-out;
  transition: 0.5s all ease-in-out;
}
section.main-search.main-search .col-1-4 a .module .button-container .btn.btn-small {
  top: auto;
  bottom: 122px;
  z-index: 1;
}
section.main-search.main-search .col-1-4 a .module:hover .image-container .image-ratio {
  top: -95px;
}
section.main-search.main-search .col-1-4 a .module:hover .content-container {
  margin: -195px 0 0 0;
  height: 331px;
}
section.main-search.main-search .col-1-4 a .module:hover .content-container p {
  opacity: 1;
}
section.main-search.main-search .col-1-4 a .module:hover .content-container .button-container {
  opacity: 1;
}
section.main-search.main-search .col-1-4 a .module:hover .button-container .btn.btn-small {
  top: auto;
  bottom: 312px;
}
section.main-search.main-search .col-1-4 a .module:hover .button-container .btn.btn-small::before {
  background: #00703c;
}
section.main-search.main-search .col-1-4 a .module:hover .button-container .btn.btn-small::after {
  color: #ffffff;
}
@media only screen and (max-width: 1439px) {
  section.main-search.main-search .col-1-4 {
    width: 33.33%;
  }
}
@media only screen and (max-width: 1119px) {
  section.main-search.main-search .col-1-4 {
    width: 50%;
  }
}
@media only screen and (max-width: 799px) {
  section.main-search.main-search .col-1-4 {
    width: 100%;
  }
}
section.main-search.main-search form.search {
  width: 100%;
  border: solid 1px #f0f0ef;
}
section.main-search.main-search form.search input {
  margin: 0;
}
section.main-search.main-search form.search .btn {
  background-color: transparent;
  top: -37px;
}
section.main-search.main-search span.information {
  padding-inline: 1rem 0;
  margin-bottom: 2rem;
}
section.main-search.main-search span.information p {
  margin: 0;
  padding: 0;
}
section.main-search.main-search .search-result {
  position: relative;
  width: 100%;
  color: currentColor;
  padding: 1rem;
  -webkit-transition: all 150ms ease;
  transition: all 150ms ease;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  grid-template-areas: "icon heading" "content content";
}
section.main-search.main-search .search-result--highlight {
  border: 1px solid #f0f0ef;
  margin-bottom: 1rem;
}
section.main-search.main-search .search-result .icon {
  grid-area: icon;
  position: relative;
  width: 3rem;
  height: 3rem;
  margin-right: 1rem;
  background-color: #ffde00;
  align-self: center;
  border-radius: 6px;
  rotate: 45deg;
}
section.main-search.main-search .search-result .icon img,
section.main-search.main-search .search-result .icon svg {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform-origin: top left;
          transform-origin: top left;
  rotate: -45deg;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 1.75rem;
  aspect-ratio: 1/1;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
section.main-search.main-search .search-result .heading {
  grid-area: heading;
}
section.main-search.main-search .search-result .content {
  grid-area: content;
}
section.main-search.main-search .search-result .type {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: #ccab00;
}
section.main-search.main-search .search-result h3 {
  margin: 0;
  padding-right: 3rem;
}
section.main-search.main-search .search-result p {
  padding-top: 1em;
  padding-right: 3rem;
}
section.main-search.main-search .search-result .highlight {
  background-color: #ffde00;
  border-radius: 0.25rem;
}
section.main-search.main-search .search-result .btn {
  bottom: 0;
  top: auto;
}
section.main-search.main-search .search-result:hover {
  background-color: #f0f0ef;
}

.row.main-introduction.title {
  width: 100%;
  position: relative;
  z-index: 0;
  margin: -120px 0 -240px 0;
  padding: 200px 0 360px 0;
}
.row.main-introduction.title:before {
  content: "";
  position: absolute;
  bottom: -340px;
  left: 50%;
  margin-left: -5000px;
  width: 10000px;
  height: 500px;
  background: #ffffff;
  z-index: 1;
  -webkit-transform: rotate(-5deg);
          transform: rotate(-5deg);
  -webkit-transform-origin: 50% 50% 0;
          transform-origin: 50% 50% 0;
}
.row.main-introduction.title:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background: #ffde00;
  background: -webkit-gradient(linear, left top, right bottom, color-stop(10%, rgba(118, 191, 66, 0.4)), color-stop(50%, rgba(0, 112, 60, 0.4)), color-stop(90%, rgba(255, 222, 0, 0.4)));
  background: linear-gradient(to bottom right, rgba(118, 191, 66, 0.4) 10%, rgba(0, 112, 60, 0.4) 50%, rgba(255, 222, 0, 0.4) 90%);
  z-index: -1;
}
.row.main-introduction.title .background-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  z-index: 0;
  overflow: hidden;
  z-index: -1;
}
.row.main-introduction.title .col-1-1 {
  width: 100%;
}
.row.main-introduction.title .col-1-1 .module:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 600px;
  margin: -300px 0 0 -450px;
  border-radius: 20px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  z-index: 0;
  background: transparent;
  background: -webkit-gradient(linear, left bottom, right top, color-stop(30%, rgba(0, 112, 60, 0)), color-stop(70%, rgba(0, 112, 60, 0.6)), to(rgba(255, 222, 0, 0.6)));
  background: linear-gradient(to right top, rgba(0, 112, 60, 0) 30%, rgba(0, 112, 60, 0.6) 70%, rgba(255, 222, 0, 0.6) 100%);
}
@media only screen and (max-width: 639px) {
  .row.main-introduction.title .col-1-1 .module:after {
    margin: -300px 0 0 -500px;
  }
}
@media only screen and (max-width: 479px) {
  .row.main-introduction.title .col-1-1 .module:after {
    margin: -300px 0 0 -550px;
  }
}
.row.main-introduction.title .col-1-1 .module h1 {
  text-transform: uppercase;
  color: #ffffff;
  font-size: 40px;
  line-height: 44px;
  position: relative;
  text-align: center;
  margin: 0;
  z-index: 1;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.25);
}
@media only screen and (max-width: 479px) {
  .row.main-introduction.title .col-1-1 .module h1 {
    font-size: 24px;
    line-height: 28px;
  }
}
.row.main-introduction.title .col-1-1 .module h3 {
  text-transform: uppercase;
  color: #ffffff;
  font-size: 24px;
  line-height: 28px;
  position: relative;
  text-align: center;
  margin: 0;
  z-index: 1;
  width: auto;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.25);
}
.row.main-introduction.title .col-1-1 .module h3 a {
  color: #ffde00;
  -webkit-transition: 0.5s all ease-in-out;
  transition: 0.5s all ease-in-out;
}
.row.main-introduction.title .col-1-1 .module h3:hover a {
  color: rgba(255, 222, 0, 0.6);
}
.row.main-introduction.text {
  margin: 0 0 80px 0;
  z-index: 0;
}
@media only screen and (max-width: 639px) {
  .row.main-introduction.text {
    margin: 0 0 40px 0;
  }
}
.row.main-introduction.text .col-1-1 {
  width: 100%;
}
.row.main-introduction.text .col-1-1 .module {
  background: #f0f0ef;
  padding: 40px 80px 40px 40px;
  position: relative;
  min-height: 160px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media only screen and (max-width: 799px) {
  .row.main-introduction.text .col-1-1 .module {
    padding: 0px;
    display: block;
    background: transparent;
  }
}
.row.main-introduction.text .col-1-1 .module .breadcrumbs {
  position: absolute;
  top: -20px;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: start;
      align-self: flex-start;
  width: calc(100% - 360px);
}
@media only screen and (max-width: 1119px) {
  .row.main-introduction.text .col-1-1 .module .breadcrumbs {
    display: none;
  }
}
.row.main-introduction.text .col-1-1 .module .breadcrumbs ul {
  width: 100%;
}
.row.main-introduction.text .col-1-1 .module .breadcrumbs ul li {
  color: #ffffff;
  font-weight: 400;
  padding: 0;
  margin: 0;
  width: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-transform: uppercase;
}
.row.main-introduction.text .col-1-1 .module .breadcrumbs ul li.separator {
  padding: 0 20px;
}
.row.main-introduction.text .col-1-1 .module .breadcrumbs ul li.item-current {
  color: #ffffff;
}
.row.main-introduction.text .col-1-1 .module .breadcrumbs ul li a {
  color: #ffffff;
  -webkit-transition: 0.25s all ease-in-out;
  transition: 0.25s all ease-in-out;
}
.row.main-introduction.text .col-1-1 .module .breadcrumbs ul li a:hover {
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
}
.row.main-introduction.text .col-1-1 .module .breadcrumbs ul li:before, .row.main-introduction.text .col-1-1 .module .breadcrumbs ul li:after {
  display: none;
}
.row.main-introduction.text .col-1-1 .module .content-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media only screen and (max-width: 799px) {
  .row.main-introduction.text .col-1-1 .module .content-container {
    background: #f0f0ef;
    padding: 40px;
    min-height: 160px;
  }
}
.row.main-introduction.text .col-1-1 .module .content-container h3 {
  text-align: center;
}
.row.main-introduction.text .col-1-1 .module .content-container p {
  text-align: center;
  color: #4b4b4d;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  margin: 0;
}
.row.main-introduction.text .col-1-1 .module .content-container p i {
  margin: 0 5px;
}
.row.main-introduction.text .col-1-1 .module.image {
  min-height: 240px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.row.main-introduction.text .col-1-1 .module.image .content-container {
  padding: 0 320px 0 0;
}
@media only screen and (max-width: 799px) {
  .row.main-introduction.text .col-1-1 .module.image .content-container {
    padding: 40px;
  }
}
.row.main-introduction.text .col-1-1 .module.image .content-container h3 {
  text-align: left;
}
@media only screen and (max-width: 799px) {
  .row.main-introduction.text .col-1-1 .module.image .content-container h3 {
    text-align: center;
  }
}
.row.main-introduction.text .col-1-1 .module.image .content-container p {
  text-align: left;
}
@media only screen and (max-width: 799px) {
  .row.main-introduction.text .col-1-1 .module.image .content-container p {
    text-align: center;
  }
}
.row.main-introduction.text .col-1-1 .module.image img {
  width: 320px;
  position: absolute;
  top: -40px;
  right: 40px;
}
@media only screen and (max-width: 799px) {
  .row.main-introduction.text .col-1-1 .module.image img {
    position: relative;
    top: 0;
    width: 100%;
    right: auto;
    margin: 80px 0 0 0;
  }
}
@media only screen and (max-width: 639px) {
  .row.main-introduction.text .col-1-1 .module.image img {
    margin: 40px 0 0 0;
  }
}
.row.main-introduction.text .col-1-1 .module.facebook .content-container h3 {
  text-align: center;
  margin: 0;
}
.row.main-introduction.text .col-1-1 .module.facebook .content-container h3 i {
  float: none;
  display: inline-block;
  width: auto;
  margin: 0 5px;
}
.row.main-introduction.text .col-1-1 .module.facebook .content-container p {
  text-align: center;
}
.row.main-introduction.text .col-1-1 .module.facebook .image-container {
  width: 320px;
  height: 240px;
  position: absolute;
  top: -40px;
  right: 40px;
  background-size: cover !important;
  background-position: center center !important;
}
@media only screen and (max-width: 799px) {
  .row.main-introduction.text .col-1-1 .module.facebook .image-container {
    position: relative;
    padding: 0 0 56.25% 0;
    overflow: hidden;
    top: 0;
    width: 100%;
    height: 100%;
    right: auto;
    margin: 80px 0 0 0;
  }
}
@media only screen and (max-width: 639px) {
  .row.main-introduction.text .col-1-1 .module.facebook .image-container {
    margin: 40px 0 0 0;
  }
}

.row.main-dienst {
  position: relative;
  background-size: cover;
  background-position: center center;
  z-index: 0;
  padding: 80px 0;
  background: #f0f0ef;
}
@media only screen and (max-width: 799px) {
  .row.main-dienst {
    padding: 40px 0;
  }
}
.row.main-dienst .col-1-1 .dienst-container .row {
  background: #ffffff;
  margin: 0 0 2px 0;
}
.row.main-dienst .col-1-1 .dienst-container .row .left-col {
  font-weight: 400;
  width: 200px;
  padding: 20px;
}
@media only screen and (max-width: 799px) {
  .row.main-dienst .col-1-1 .dienst-container .row .left-col {
    width: 100%;
    padding: 20px 20px 0 20px;
  }
}
.row.main-dienst .col-1-1 .dienst-container .row .right-col {
  width: calc(100% - 200px);
  padding: 20px;
}
@media only screen and (max-width: 799px) {
  .row.main-dienst .col-1-1 .dienst-container .row .right-col {
    width: 100%;
    padding: 0 20px 20px 20px;
  }
}

.row.projects.filter ul,
.row.projects.filter form {
  text-align: center;
  margin: 0 0 20px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
}
.row.projects.filter ul div.input,
.row.projects.filter form div.input {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  float: none;
}
.row.projects.filter ul label,
.row.projects.filter ul a,
.row.projects.filter form label,
.row.projects.filter form a {
  display: grid !important;
  float: none;
  padding: 0 20px;
  background: #00703c;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 0 !important;
  line-height: 50px;
  text-transform: uppercase;
  font-weight: 400;
  color: #ffffff;
  margin: 0 10px 20px 10px;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
.row.projects.filter ul label:before,
.row.projects.filter ul a:before,
.row.projects.filter form label:before,
.row.projects.filter form a:before {
  display: none;
}
.row.projects.filter ul label:hover,
.row.projects.filter ul a:hover,
.row.projects.filter form label:hover,
.row.projects.filter form a:hover {
  cursor: pointer;
  background: #76bf42;
}
.row.projects.filter ul input[type=checkbox]:checked + label,
.row.projects.filter form input[type=checkbox]:checked + label {
  background: #76bf42;
}
.row.projects.filter ul input,
.row.projects.filter form input {
  display: none;
}
.row.projects.results {
  background: #ffde00;
  background: -webkit-gradient(linear, left top, right bottom, color-stop(50%, #76bf42), to(#00703c));
  background: linear-gradient(to bottom right, #76bf42 50%, #00703c 100%);
  z-index: 0;
  overflow: hidden;
  position: relative;
}
.row.projects.results:before {
  content: "";
  position: absolute;
  bottom: calc(100% - 60px);
  right: 0;
  width: 200%;
  height: 500px;
  background: #ffffff;
  -webkit-transform: rotate(-5deg);
          transform: rotate(-5deg);
  -webkit-transform-origin: 100% 0% 0;
          transform-origin: 100% 0% 0;
}
.row.projects.results:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 130px;
  background: #f0f0ef;
  z-index: -1;
}
.row.projects.results.has-form {
  padding: 0 0 40px 0;
}
.row.projects.results.has-form:after {
  height: 80px;
  bottom: 0px;
}
.row.projects.results .loader-container {
  opacity: 0;
  position: absolute;
  top: 0px;
  left: 0px;
  padding: 40px 0 0 0;
  background: #ffde00;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, white), color-stop(90%, #f0f0ef));
  background: linear-gradient(to bottom, white 50%, #f0f0ef 90%);
  width: 100%;
  height: 100%;
  z-index: 0;
  -webkit-transition: all ease-in-out 0.25s;
  transition: all ease-in-out 0.25s;
}
.row.projects.results .loader-container.loading {
  opacity: 1;
  z-index: 99;
}
.row.projects.results .loader-container .loader {
  display: block;
  position: relative;
  width: 112px;
  height: 20px;
  left: 50%;
  margin-left: -56px;
}
.row.projects.results .loader-container .loader div {
  position: absolute;
  top: 0px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #00703c;
  -webkit-animation-timing-function: cubic-bezier(0, 1, 1, 0);
          animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.row.projects.results .loader-container .loader div:nth-child(1) {
  left: 6px;
  -webkit-animation: loader1 0.6s infinite;
          animation: loader1 0.6s infinite;
}
.row.projects.results .loader-container .loader div:nth-child(2) {
  left: 6px;
  -webkit-animation: loader2 0.6s infinite;
          animation: loader2 0.6s infinite;
}
.row.projects.results .loader-container .loader div:nth-child(3) {
  left: 46px;
  -webkit-animation: loader2 0.6s infinite;
          animation: loader2 0.6s infinite;
}
.row.projects.results .loader-container .loader div:nth-child(4) {
  left: 85px;
  -webkit-animation: loader3 0.6s infinite;
          animation: loader3 0.6s infinite;
}
@-webkit-keyframes loader1 {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes loader1 {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-webkit-keyframes loader3 {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
}
@keyframes loader3 {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
}
@-webkit-keyframes loader2 {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  100% {
    -webkit-transform: translate(39px, 0);
            transform: translate(39px, 0);
  }
}
@keyframes loader2 {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  100% {
    -webkit-transform: translate(39px, 0);
            transform: translate(39px, 0);
  }
}
.row.projects.results .col-1-4 a {
  display: block;
  float: left;
  width: 100%;
}
.row.projects.results .col-1-4 a .module {
  background: #ffffff;
  margin: 40px 0 0 0;
}
.row.projects.results .col-1-4 a .module::before {
  content: "";
  position: absolute;
  top: 60px;
  left: -6px;
  width: 20px;
  height: 20px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  background: #ccab00;
  -webkit-transition: all ease-in-out 0.5s;
  transition: all ease-in-out 0.5s;
}
.row.projects.results .col-1-4 a .module .image-container {
  height: 100%;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.row.projects.results .col-1-4 a .module .image-container:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left bottom, right top, from(rgba(75, 75, 77, 0)), to(rgba(75, 75, 77, 0.05)));
  background: linear-gradient(to top right, rgba(75, 75, 77, 0) 0%, rgba(75, 75, 77, 0.05) 100%);
  z-index: 1;
}
.row.projects.results .col-1-4 a .module .image-container .image-ratio {
  padding-top: 100%;
  background-size: cover;
  -moz-background-size: cover;
  background-position: center;
  position: relative;
  top: 0;
  -webkit-transition: 0.5s all ease-in-out;
  transition: 0.5s all ease-in-out;
}
.row.projects.results .col-1-4 a .module .image-container.video {
  position: relative;
}
.row.projects.results .col-1-4 a .module .image-container.video .image-ratio:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  height: 100px;
  width: 100px;
  background: url(../img/play-icon.png);
  background-size: cover;
  z-index: 1;
}
.row.projects.results .col-1-4 a .module .icon-container {
  position: absolute;
  left: -10px;
  top: -10px;
  width: 112px;
  height: 80px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  font-weight: 400;
  font-size: 16px;
  background: transparent;
  color: #ffffff;
  overflow: hidden;
  z-index: 1;
}
.row.projects.results .col-1-4 a .module .icon-container::before {
  content: "";
  position: absolute;
  bottom: -24px;
  left: -80px;
  width: 160px;
  height: 160px;
  border-radius: 6px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  background: #ffde00;
  -webkit-transition: all ease-in-out 0.5s;
  transition: all ease-in-out 0.5s;
}
.row.projects.results .col-1-4 a .module .icon-container i {
  position: relative;
  display: block;
  float: none;
  margin: 0 0 -2px 0;
  color: #00703c;
  width: 80px;
  height: 80px;
  padding: 20px 18px;
  -webkit-transition: all ease-in-out 0.5s;
  transition: all ease-in-out 0.5s;
  fill: currentColor;
}
.row.projects.results .col-1-4 a .module .icon-container i svg {
  position: relative;
  left: 50%;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  width: 100%;
  height: 100%;
}
.row.projects.results .col-1-4 a .module .content-container {
  padding: 40px;
  position: relative;
  background: #ffffff;
  margin: 0px 0 0 0;
  height: 136px;
  overflow: hidden;
  -webkit-transition: 0.5s all ease-in-out;
  transition: 0.5s all ease-in-out;
  z-index: 1;
}
@media only screen and (max-width: 479px) {
  .row.projects.results .col-1-4 a .module .content-container {
    padding: 40px;
  }
}
.row.projects.results .col-1-4 a .module .content-container h3 {
  text-align: center;
  -webkit-transition: 0.5s all ease-in-out;
  transition: 0.5s all ease-in-out;
  min-height: 56px;
  max-height: 56px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  opacity: 0;
}
.row.projects.results .col-1-4 a .module .content-container h3.loaded {
  opacity: 1;
}
.row.projects.results .col-1-4 a .module .content-container p {
  text-align: center;
  min-height: 85px;
  max-height: 85px;
  margin: 0 0 40px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #4b4b4d;
  opacity: 0;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.row.projects.results .col-1-4 a .module .content-container p strong {
  width: 100%;
  text-transform: uppercase;
  margin: 0 0 5px 0;
}
.row.projects.results .col-1-4 a .module .content-container p img.emoji {
  display: none !important;
}
.row.projects.results .col-1-4 a .module .content-container .button-container {
  opacity: 0;
  -webkit-transition: 0.5s all ease-in-out;
  transition: 0.5s all ease-in-out;
}
.row.projects.results .col-1-4 a .module .button-container .btn.btn-small {
  top: auto;
  bottom: 122px;
  z-index: 1;
}
.row.projects.results .col-1-4 a .module:hover .image-container .image-ratio {
  top: -95px;
}
.row.projects.results .col-1-4 a .module:hover .content-container {
  margin: -195px 0 0 0;
  height: 331px;
}
.row.projects.results .col-1-4 a .module:hover .content-container p {
  opacity: 1;
}
.row.projects.results .col-1-4 a .module:hover .content-container .button-container {
  opacity: 1;
}
.row.projects.results .col-1-4 a .module:hover .button-container .btn.btn-small {
  top: auto;
  bottom: 312px;
}
.row.projects.results .col-1-4 a .module:hover .button-container .btn.btn-small::before {
  background: #00703c;
}
.row.projects.results .col-1-4 a .module:hover .button-container .btn.btn-small::after {
  color: #ffffff;
}
@media only screen and (max-width: 1439px) {
  .row.projects.results .col-1-4 {
    width: 33.33%;
  }
}
@media only screen and (max-width: 1119px) {
  .row.projects.results .col-1-4 {
    width: 50%;
  }
}
@media only screen and (max-width: 799px) {
  .row.projects.results .col-1-4 {
    width: 100%;
  }
}
.row.projects.results .genre-filter-navigation {
  display: block;
  float: left;
  width: calc(100% + 40px);
  position: relative;
  margin: 0 0 0 -40px;
  grid-column: 1/-1;
}
.row.projects.results .genre-filter-navigation:after {
  content: "";
  position: absolute;
  top: -40px;
  left: 0;
  width: 100%;
  height: 90px;
  background: #f0f0ef;
  z-index: -1;
}
.row.projects.results .genre-filter-navigation .pagination-container {
  width: auto;
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  margin: 40px 0 0 0;
  background: #00703c;
}
@media only screen and (max-width: 639px) {
  .row.projects.results .genre-filter-navigation .pagination-container {
    min-width: 280px;
  }
  .row.projects.results .genre-filter-navigation .pagination-container .float-container {
    width: 100%;
  }
  .row.projects.results .genre-filter-navigation .pagination-container .float-container a.next {
    float: right;
  }
  .row.projects.results .genre-filter-navigation .pagination-container .float-container span.page-numbers.current {
    position: absolute;
    left: 50%;
    top: 0;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    margin: 0;
  }
}
.row.projects.results .genre-filter-navigation .pagination-container a,
.row.projects.results .genre-filter-navigation .pagination-container span {
  display: block;
  float: left;
}
.row.projects.results .genre-filter-navigation .pagination-container .page-numbers {
  width: 50px;
  height: 50px;
  background: #00703c;
  color: #ffffff;
  line-height: 50px;
  text-align: center;
  font-weight: 400;
  -webkit-transition: 0.5s all ease-in-out;
  transition: 0.5s all ease-in-out;
}
.row.projects.results .genre-filter-navigation .pagination-container .page-numbers.current {
  background: #76bf42;
}
.row.projects.results .genre-filter-navigation .pagination-container .page-numbers.prev, .row.projects.results .genre-filter-navigation .pagination-container .page-numbers.next {
  display: block;
  float: left;
  width: 70px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  padding: 0 20px;
  text-transform: uppercase;
  position: relative;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  font-weight: 400;
  overflow: hidden;
  position: relative;
}
.row.projects.results .genre-filter-navigation .pagination-container .page-numbers.prev::before, .row.projects.results .genre-filter-navigation .pagination-container .page-numbers.next::before {
  content: "";
  position: absolute;
  top: -15px;
  right: -50px;
  width: 100px;
  height: 100px;
  border-radius: 6px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  background: #ffde00;
  -webkit-transition: 0.5s all ease-in-out;
  transition: 0.5s all ease-in-out;
}
.row.projects.results .genre-filter-navigation .pagination-container .page-numbers.prev::after, .row.projects.results .genre-filter-navigation .pagination-container .page-numbers.next::after {
  content: "\f054";
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
  font-size: 16px;
  text-align: center;
  color: #00703c;
  background: transparent;
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  line-height: 20px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  -webkit-transition: 0.5s all ease-in-out;
  transition: 0.5s all ease-in-out;
  text-indent: 0px;
}
.row.projects.results .genre-filter-navigation .pagination-container .page-numbers.prev:hover, .row.projects.results .genre-filter-navigation .pagination-container .page-numbers.next:hover {
  cursor: pointer;
  color: #ffffff;
}
.row.projects.results .genre-filter-navigation .pagination-container .page-numbers.prev:hover::before, .row.projects.results .genre-filter-navigation .pagination-container .page-numbers.next:hover::before {
  background: #00703c;
}
.row.projects.results .genre-filter-navigation .pagination-container .page-numbers.prev:hover::after, .row.projects.results .genre-filter-navigation .pagination-container .page-numbers.next:hover::after {
  color: #ffffff;
}
.row.projects.results .genre-filter-navigation .pagination-container .page-numbers.prev.prev::before, .row.projects.results .genre-filter-navigation .pagination-container .page-numbers.next.prev::before {
  content: "";
  top: auto;
  bottom: -15px;
  right: auto;
  left: -50px;
}
.row.projects.results .genre-filter-navigation .pagination-container .page-numbers.prev.prev::after, .row.projects.results .genre-filter-navigation .pagination-container .page-numbers.next.prev::after {
  content: "\f053";
  text-align: left;
  left: 20px;
  right: auto;
}
@media only screen and (max-width: 639px) {
  .row.projects.results .genre-filter-navigation .pagination-container .page-numbers {
    display: none;
  }
  .row.projects.results .genre-filter-navigation .pagination-container .page-numbers.current {
    display: block;
    margin: 0px 45px;
  }
}
.row.projects.results .genre-filter-navigation .pagination-container a.page-numbers:hover {
  background: #76bf42;
}
.row.projects.results .genre-filter-navigation .pagination-container a.next:hover, .row.projects.results .genre-filter-navigation .pagination-container a.prev:hover {
  background: #00703c;
}

@media only screen and (max-width: 959px) {
  .row.main-canvas {
    display: none;
  }
}
.row.main-canvas.canvas .wrapper .inner-row [class*=col-] .module .content-container h3 {
  text-align: center;
}
.row.main-canvas.canvas .wrapper .inner-row [class*=col-] .module .content-container p {
  margin: 0 0 80px 0;
  text-align: center;
}
.row.main-canvas.canvas .wrapper .inner-row [class*=col-] .module #canvas-container canvas {
  margin: 0 0 80px 0;
}
.row.main-canvas.form {
  background: #f0f0ef;
  padding: 80px 0;
}
.row.main-canvas.form .wrapper .inner-row [class*=col-] .module .content-container {
  width: calc(50% - 20px);
  margin: 28px 40px 28px 0;
}
@media only screen and (max-width: 1439px) {
  .row.main-canvas.form .wrapper .inner-row [class*=col-] .module .content-container {
    width: 100%;
    margin: 0 0 40px 0;
  }
}
.row.main-canvas.form .wrapper .inner-row [class*=col-] .module .content-container h3 {
  font-size: 32px;
  line-height: 36px;
  margin: 0;
  text-align: center;
}
@media only screen and (max-width: 639px) {
  .row.main-canvas.form .wrapper .inner-row [class*=col-] .module .content-container h3 {
    font-size: 24px;
    line-height: 28px;
  }
}
.row.main-canvas.form .wrapper .inner-row [class*=col-] .module .content-container p {
  font-size: 24px;
  line-height: 28px;
  color: #00703c;
  font-weight: 400;
  margin: 0;
  text-transform: uppercase;
  text-align: center;
}
@media only screen and (max-width: 1279px) {
  .row.main-canvas.form .wrapper .inner-row [class*=col-] .module .content-container p {
    margin: 0 0 40px 0;
  }
}
@media only screen and (max-width: 639px) {
  .row.main-canvas.form .wrapper .inner-row [class*=col-] .module .content-container p {
    font-size: 16px;
    line-height: 20px;
  }
}
.row.main-canvas.form .wrapper .inner-row [class*=col-] .module .form-container {
  width: calc(50% - 20px);
}
@media only screen and (max-width: 1439px) {
  .row.main-canvas.form .wrapper .inner-row [class*=col-] .module .form-container {
    width: 100%;
    margin: 0;
  }
}
.row.main-canvas.form .wrapper .inner-row [class*=col-] .module .form-container form {
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.row.main-canvas.form .wrapper .inner-row [class*=col-] .module .form-container form .wpforms-field-container {
  width: auto;
  position: relative;
  padding: 0 0 60px 0;
}
.row.main-canvas.form .wrapper .inner-row [class*=col-] .module .form-container form .wpforms-field-container input {
  margin: 0;
  width: 280px;
}
.row.main-canvas.form .wrapper .inner-row [class*=col-] .module .form-container form .wpforms-field-container .wpforms-field.text {
  position: absolute;
  bottom: 0;
  left: 0;
  width: calc(200% + 40px);
}
.row.main-canvas.form .wrapper .inner-row [class*=col-] .module .form-container form .wpforms-field-container .wpforms-field.text p {
  margin: 0;
  font-weight: 400;
  text-align: center;
}
.row.main-canvas.form .wrapper .inner-row [class*=col-] .module .form-container form .wpforms-field-container {
  margin: 0 40px 0 0;
}
.row.main-canvas.form .wrapper .inner-row [class*=col-] .module .form-container form .wpforms-field-container .wpforms-field.score {
  display: none;
}
.row.main-canvas.form .wrapper .inner-row [class*=col-] .module .form-container form .wpforms-field.wpforms-field-hp {
  width: 0px;
}
.row.main-canvas.form .wrapper .inner-row [class*=col-] .module .form-container form .wpforms-submit-container {
  width: 280px;
}
.row.main-canvas.form .wrapper .inner-row [class*=col-] .module .form-container form .wpforms-submit-container .wpforms-submit.btn.btn-gradient {
  margin: 0 !important;
  left: 0;
  -webkit-transform: translate(0);
          transform: translate(0);
  float: left;
}
.row.main-canvas.form .wrapper .inner-row [class*=col-] .module .form-container .wpforms-confirmation-container h3 {
  text-align: center;
  font-size: 32px;
  line-height: 36px;
  margin: 0;
  text-align: center;
}
.row.main-canvas.form .wrapper .inner-row [class*=col-] .module .form-container .wpforms-confirmation-container p {
  font-size: 24px;
  line-height: 28px;
  color: #00703c;
  font-weight: 400;
  margin: 0;
  text-transform: uppercase;
  text-align: center;
}
.row.main-canvas.form .wrapper .inner-row [class*=col-] .module .form-container .wpforms-confirmation-container p strong {
  font-weight: 400;
}
.row.main-canvas.highscore {
  padding: 80px 0 0 0;
}
.row.main-canvas.highscore .wrapper .inner-row [class*=col-] .module .score-container {
  margin: 0 0 80px 0;
  max-height: 600px;
  overflow: scroll;
}
.row.main-canvas.highscore .wrapper .inner-row [class*=col-] .module .score-container .row .col {
  line-height: 60px;
}
.row.main-canvas.highscore .wrapper .inner-row [class*=col-] .module .score-container .row .col.ranking {
  width: 60px;
  text-align: center;
  background: #76bf42;
  color: #ffffff;
  font-weight: 400;
}
.row.main-canvas.highscore .wrapper .inner-row [class*=col-] .module .score-container .row .col.name {
  width: calc(100% - 120px);
  height: 60px;
  padding: 0 20px 0 20px;
  overflow: hidden;
}
.row.main-canvas.highscore .wrapper .inner-row [class*=col-] .module .score-container .row .col.score {
  width: 60px;
  text-align: right;
  padding: 0 20px 0 0;
}
.row.main-canvas.highscore .wrapper .inner-row [class*=col-] .module .score-container .row:nth-of-type(odd) {
  background: #f0f0ef;
}
.row.main-canvas.highscore .wrapper .inner-row [class*=col-] .module .score-container .row:nth-of-type(odd) .col {
  line-height: 60px;
}
.row.main-canvas.highscore .wrapper .inner-row [class*=col-] .module .score-container .row:nth-of-type(odd) .col.ranking {
  background: #00703c;
}

section.row.main-newsletter {
  background: #f0f0ef;
  padding: 80px 0;
}
section.row.main-newsletter .wrapper .inner-row [class*=col-] .module .content-container {
  width: calc(50% - 20px);
  margin: 28px 40px 28px 0;
}
@media only screen and (max-width: 1439px) {
  section.row.main-newsletter .wrapper .inner-row [class*=col-] .module .content-container {
    width: 100%;
    margin: 0 0 40px 0;
  }
}
section.row.main-newsletter .wrapper .inner-row [class*=col-] .module .content-container h3 {
  font-size: 32px;
  line-height: 36px;
  margin: 0;
  text-align: center;
}
@media only screen and (max-width: 639px) {
  section.row.main-newsletter .wrapper .inner-row [class*=col-] .module .content-container h3 {
    font-size: 24px;
    line-height: 28px;
  }
}
section.row.main-newsletter .wrapper .inner-row [class*=col-] .module .content-container p {
  font-size: 24px;
  line-height: 28px;
  color: #00703c;
  font-weight: 400;
  margin: 0;
  text-transform: uppercase;
  text-align: center;
}
@media only screen and (max-width: 639px) {
  section.row.main-newsletter .wrapper .inner-row [class*=col-] .module .content-container p {
    font-size: 16px;
    line-height: 20px;
  }
}
section.row.main-newsletter .wrapper .inner-row [class*=col-] .module .newsletter-container {
  width: calc(50% - 20px);
}
@media only screen and (max-width: 1439px) {
  section.row.main-newsletter .wrapper .inner-row [class*=col-] .module .newsletter-container {
    width: 100%;
    margin: 0;
  }
}
section.row.main-newsletter .wrapper .inner-row [class*=col-] .module .newsletter-container #mc_embed_signup {
  width: 600px;
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media only screen and (max-width: 639px) {
  section.row.main-newsletter .wrapper .inner-row [class*=col-] .module .newsletter-container #mc_embed_signup {
    width: 100%;
  }
}
section.row.main-newsletter .wrapper .inner-row [class*=col-] .module .newsletter-container #mc_embed_signup #mc-embedded-subscribe-form {
  margin: 0;
  padding: 0 0 60px 0;
}
section.row.main-newsletter .wrapper .inner-row [class*=col-] .module .newsletter-container #mc_embed_signup #mc-embedded-subscribe-form .mc-field-group {
  max-width: 280px;
  margin: 0 40px 0 0;
}
@media only screen and (max-width: 1279px) {
  section.row.main-newsletter .wrapper .inner-row [class*=col-] .module .newsletter-container #mc_embed_signup #mc-embedded-subscribe-form .mc-field-group {
    width: 100%;
    margin: 0 40px 0 0;
  }
}
@media only screen and (max-width: 639px) {
  section.row.main-newsletter .wrapper .inner-row [class*=col-] .module .newsletter-container #mc_embed_signup #mc-embedded-subscribe-form .mc-field-group {
    position: relative;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    margin: 0 0 20px 0;
  }
}
section.row.main-newsletter .wrapper .inner-row [class*=col-] .module .newsletter-container #mc_embed_signup #mc-embedded-subscribe-form .mc-field-group input {
  height: 50px;
  line-height: 50px;
  border: none;
  padding: 20px;
  font-family: "Fira Sans", sans-serif;
  font-size: 16px;
  line-height: 20px;
  font-weight: 300;
  color: #4b4b4d;
  text-align: left;
  margin: 0;
  max-width: 280px;
  background: #ffffff;
}
section.row.main-newsletter .wrapper .inner-row [class*=col-] .module .newsletter-container #mc_embed_signup #mc-embedded-subscribe-form .mc-field-group input.mce_inline_error {
  display: block !important;
}
section.row.main-newsletter .wrapper .inner-row [class*=col-] .module .newsletter-container #mc_embed_signup #mc-embedded-subscribe-form .mc-field-group input.mce_inline_error::-webkit-input-placeholder {
  color: #00703c;
  opacity: 1;
  font-weight: 400;
}
section.row.main-newsletter .wrapper .inner-row [class*=col-] .module .newsletter-container #mc_embed_signup #mc-embedded-subscribe-form .mc-field-group input.mce_inline_error::-moz-placeholder {
  color: #00703c;
  opacity: 1;
  font-weight: 400;
}
section.row.main-newsletter .wrapper .inner-row [class*=col-] .module .newsletter-container #mc_embed_signup #mc-embedded-subscribe-form .mc-field-group input.mce_inline_error:-ms-input-placeholder {
  color: #00703c;
  opacity: 1;
  font-weight: 400;
}
section.row.main-newsletter .wrapper .inner-row [class*=col-] .module .newsletter-container #mc_embed_signup #mc-embedded-subscribe-form .mc-field-group input.mce_inline_error::-ms-input-placeholder {
  color: #00703c;
  opacity: 1;
  font-weight: 400;
}
section.row.main-newsletter .wrapper .inner-row [class*=col-] .module .newsletter-container #mc_embed_signup #mc-embedded-subscribe-form .mc-field-group input.mce_inline_error::placeholder {
  color: #00703c;
  opacity: 1;
  font-weight: 400;
}
section.row.main-newsletter .wrapper .inner-row [class*=col-] .module .newsletter-container #mc_embed_signup #mc-embedded-subscribe-form .mc-field-group .mce_inline_error {
  display: none !important;
}
section.row.main-newsletter .wrapper .inner-row [class*=col-] .module .newsletter-container #mc_embed_signup #mc-embedded-subscribe-form .avg-container {
  position: absolute;
  bottom: 0;
  left: 0;
}
section.row.main-newsletter .wrapper .inner-row [class*=col-] .module .newsletter-container #mc_embed_signup #mc-embedded-subscribe-form .avg-container p {
  margin: 0;
  font-weight: 400;
  text-align: center;
}
@media only screen and (max-width: 1119px) {
  section.row.main-newsletter .wrapper .inner-row [class*=col-] .module .newsletter-container #mc_embed_signup #mc-embedded-subscribe-form .avg-container {
    width: 100%;
  }
}
section.row.main-newsletter .wrapper .inner-row [class*=col-] .module .newsletter-container #mc_embed_signup #mc-embedded-subscribe-form .submit-container {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  left: 0;
  width: 280px;
  margin: 0;
}
@media only screen and (max-width: 1279px) {
  section.row.main-newsletter .wrapper .inner-row [class*=col-] .module .newsletter-container #mc_embed_signup #mc-embedded-subscribe-form .submit-container {
    width: 280px;
  }
}
@media only screen and (max-width: 639px) {
  section.row.main-newsletter .wrapper .inner-row [class*=col-] .module .newsletter-container #mc_embed_signup #mc-embedded-subscribe-form .submit-container {
    position: relative;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
section.row.main-newsletter .wrapper .inner-row [class*=col-] .module .newsletter-container #mc_embed_signup #mc-embedded-subscribe-form .submit-container input {
  height: 50px;
  line-height: 50px;
  border: none;
  text-align: left;
  text-transform: uppercase;
  padding: 0;
  background: transparent;
  color: #ffffff;
  -webkit-transition: 0.5s all ease-in-out;
  transition: 0.5s all ease-in-out;
}
section.row.main-newsletter .wrapper .inner-row [class*=col-] .module .newsletter-container #mc_embed_signup #mc-embedded-subscribe-form .submit-container:hover input {
  color: #00703c;
  cursor: pointer;
}
section.row.main-newsletter .wrapper .inner-row [class*=col-] .module .newsletter-container #mc_embed_signup #mc-embedded-subscribe-form #mce-responses {
  width: 100%;
  color: #4b4b4d;
  font-family: "Fira Sans", sans-serif;
}
section.row.main-newsletter .wrapper .inner-row [class*=col-] .module .newsletter-container #mc_embed_signup #mc-embedded-subscribe-form #mce-responses .response {
  margin: 20px 0 0 0;
}
@media only screen and (max-width: 1279px) {
  section.row.main-newsletter .wrapper .inner-row [class*=col-] .module .newsletter-container #mc_embed_signup #mc-embedded-subscribe-form #mce-responses {
    text-align: center;
  }
}
section.row.main-newsletter .wrapper .inner-row [class*=col-] .module .newsletter-container #mc_embed_signup #mc-embedded-subscribe-form #mce-responses a {
  color: #76bf42;
  display: inline;
  float: none;
}

section.highlights {
  background: #ffde00;
  background: -webkit-gradient(linear, left top, right bottom, color-stop(50%, #76bf42), to(#00703c));
  background: linear-gradient(to bottom right, #76bf42 50%, #00703c 100%);
  margin: 0 0 0px 0;
  z-index: 0;
  overflow: hidden;
  position: relative;
}
section.highlights:before {
  content: "";
  position: absolute;
  bottom: calc(100% - 40px);
  right: 0;
  width: 200%;
  height: 500px;
  background: #f0f0ef;
  -webkit-transform: rotate(-5deg);
          transform: rotate(-5deg);
  -webkit-transform-origin: 100% 0% 0;
          transform-origin: 100% 0% 0;
}
section.highlights:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40px;
  background: #ffffff;
  z-index: -1;
}
section.highlights .col-1-2 {
  margin: 0 0 0px 0;
}
@media only screen and (max-width: 959px) {
  section.highlights .col-1-2 {
    width: 100%;
  }
  section.highlights .col-1-2:first-child {
    margin: 0 0 40px 0;
  }
}
section.highlights .col-1-2 a {
  display: block;
  float: left;
  width: 100%;
  height: 100%;
}
section.highlights .col-1-2 a .module .image-container {
  overflow: hidden;
  height: 100%;
  width: 100%;
  position: relative;
  overflow: hidden;
}
section.highlights .col-1-2 a .module .image-container:after {
  content: "";
  position: absolute;
  top: 5%;
  left: -30%;
  width: 100%;
  height: 120%;
  border-radius: 20px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  background: transparent;
  background: -webkit-gradient(linear, left top, right top, color-stop(20%, rgba(0, 112, 60, 0.6)), to(rgba(255, 222, 0, 0.6)));
  background: linear-gradient(to right, rgba(0, 112, 60, 0.6) 20%, rgba(255, 222, 0, 0.6) 100%);
}
section.highlights .col-1-2 a .module .image-container .image-ratio {
  padding-top: 75%;
  background-size: cover;
  -moz-background-size: cover;
  background-position: center;
  position: relative;
  -webkit-transition: 0.5s -webkit-transform ease-in-out;
  transition: 0.5s -webkit-transform ease-in-out;
  transition: 0.5s transform ease-in-out;
  transition: 0.5s transform ease-in-out, 0.5s -webkit-transform ease-in-out;
}
section.highlights .col-1-2 a .module .image-container .image-ratio::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  background: -webkit-gradient(linear, left bottom, right top, from(rgba(75, 75, 77, 0)), to(rgba(75, 75, 77, 0.2)));
  background: linear-gradient(to top right, rgba(75, 75, 77, 0) 0%, rgba(75, 75, 77, 0.2) 100%);
}
section.highlights .col-1-2 a .module .content-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: left;
}
@media only screen and (max-width: 479px) {
  section.highlights .col-1-2 a .module .content-container {
    padding: 40px 20px;
  }
}
section.highlights .col-1-2 a .module .content-container p {
  font-size: 32px;
  line-height: 36px;
  font-weight: 700;
  color: #ffffff;
  width: 100%;
  text-transform: uppercase;
  margin: 0;
  min-height: 0px;
  max-height: 180px;
  overflow: hidden;
}
@media only screen and (max-width: 639px) {
  section.highlights .col-1-2 a .module .content-container p {
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
    max-height: 100px;
  }
}
section.highlights .col-1-2 a .module .content-container .button-container .btn {
  left: auto;
  -webkit-transform: translate(0%, 0);
          transform: translate(0%, 0);
  margin: 20px 0 0 0;
}
section.highlights .col-1-2 a:hover .module .image-container .image-ratio {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
section.highlights .col-1-2 a:hover .module .content-container .button-container .btn.btn-gradient {
  background-position: right bottom;
  color: #00703c;
}
section.highlights .col-1-2 a:hover .module .content-container .button-container .btn.btn-gradient::before {
  right: 200px;
}
@media only screen and (max-width: 479px) {
  section.highlights .col-1-2 a:hover .module .content-container .button-container .btn.btn-gradient::before {
    right: 160px;
  }
}

.row.news + .row.highlights {
  padding-top: 4rem;
}

.row.main-call-mail {
  position: relative;
  z-index: 0;
  padding: 80px 0 60px 0;
  background: #ffffff;
}
.row.main-call-mail .col-1-1 .module h3 {
  font-size: 32px;
  line-height: 36px;
  margin: 0;
  text-align: center;
}
@media only screen and (max-width: 639px) {
  .row.main-call-mail .col-1-1 .module h3 {
    font-size: 24px;
    line-height: 28px;
  }
}
.row.main-call-mail .col-1-1 .module p {
  font-size: 24px;
  line-height: 28px;
  color: #00703c;
  font-weight: 400;
  text-transform: uppercase;
  text-align: center;
}
.row.main-call-mail .col-1-1 .module p a {
  color: #00703c;
}
.row.main-call-mail .col-1-1 .module p a:hover {
  color: rgba(0, 112, 60, 0.6);
}
@media only screen and (max-width: 639px) {
  .row.main-call-mail .col-1-1 .module p {
    font-size: 16px;
    line-height: 20px;
  }
}

.row.main-footer {
  position: relative;
  background-size: cover;
  background-position: center center;
  z-index: 0;
  background: #ffde00;
  padding: 40px 0;
}
.row.main-footer .col-1-1 .module .logo-container {
  width: 244px;
  height: 60px;
  margin: 10px 0;
}
.row.main-footer .col-1-1 .module .logo-container a {
  display: block;
  float: left;
  width: auto;
  height: 100%;
}
.row.main-footer .col-1-1 .module .logo-container a img {
  height: 100%;
  width: auto;
}
@media only screen and (max-width: 959px) {
  .row.main-footer .col-1-1 .module .logo-container {
    width: 100%;
  }
  .row.main-footer .col-1-1 .module .logo-container a {
    position: relative;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@media only screen and (max-width: 479px) {
  .row.main-footer .col-1-1 .module .logo-container {
    height: 50px;
  }
}
.row.main-footer .col-1-1 .module .contact-container {
  width: calc(100% - 488px);
}
@media only screen and (max-width: 959px) {
  .row.main-footer .col-1-1 .module .contact-container {
    width: 100%;
  }
}
.row.main-footer .col-1-1 .module .contact-container p {
  color: #4b4b4d;
  font-weight: 400;
  height: 80px;
  line-height: 80px;
  text-align: center;
  margin: 0;
}
@media only screen and (max-width: 959px) {
  .row.main-footer .col-1-1 .module .contact-container p {
    text-align: center;
    padding: 40px 0;
    height: auto;
    line-height: 20px;
  }
}
.row.main-footer .col-1-1 .module .button-container {
  width: 215px;
  float: right;
  margin: 15px 0;
}
@media only screen and (max-width: 959px) {
  .row.main-footer .col-1-1 .module .button-container {
    position: relative;
    margin: 0;
    float: left;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.row.main-footer .col-1-1 .module .button-container a {
  display: block;
  float: left;
  width: 50px;
  height: 50px;
  background: #00703c;
  position: relative;
  -webkit-transition: all ease-in-out 0.5s;
  transition: all ease-in-out 0.5s;
}
.row.main-footer .col-1-1 .module .button-container a:not(:last-of-type) {
  margin: 0 5px 0 0;
}
.row.main-footer .col-1-1 .module .button-container a:hover {
  background: #76bf42;
}
.row.main-footer .col-1-1 .module .button-container a:after {
  content: "";
  width: 50px;
  height: 50px;
  line-height: 50px;
  position: absolute;
  top: 0;
  left: 0;
  font-family: "Font Awesome 5 Pro";
  color: #ffffff;
  text-align: center;
}
.row.main-footer .col-1-1 .module .button-container a.email:after {
  content: "\f0e0";
}
.row.main-footer .col-1-1 .module .button-container a.facebook:after {
  content: "\f39e";
  font-family: "Font Awesome 5 Brands";
}
.row.main-footer .col-1-1 .module .button-container a.youtube:after {
  content: "\f167";
  font-family: "Font Awesome 5 Brands";
}
.row.main-footer .col-1-1 .module .button-container a.twitter:after {
  content: "\f099";
  font-family: "Font Awesome 5 Brands";
}
.row.main-footer .col-1-1 .module .button-container a.instagram:after {
  content: "\f16d";
  font-family: "Font Awesome 5 Brands";
}
.row.main-footer .col-1-1 .module .button-container a.linkedin:after {
  content: "\f0e1";
  font-family: "Font Awesome 5 Brands";
}
.row.main-footer.bottom {
  background: #00703c;
  padding: 0;
  margin: 0px 0 0 0;
}
.row.main-footer.bottom .col-1-1 .module p {
  width: auto;
  float: left;
  line-height: 60px;
  margin: 0;
  font-weight: 400;
}
.row.main-footer.bottom .col-1-1 .module p a {
  color: #ffffff;
}
.row.main-footer.bottom .col-1-1 .module p a:hover {
  color: rgba(255, 255, 255, 0.6);
}
@media only screen and (max-width: 799px) {
  .row.main-footer.bottom .col-1-1 .module p {
    width: 100%;
    text-align: center;
    line-height: 20px;
    margin: 40px 0 0 0;
  }
}
.row.main-footer.bottom .col-1-1 .module ul {
  position: relative;
  float: right;
  width: auto;
  padding: 20px 0;
  margin: 0;
}
@media only screen and (max-width: 799px) {
  .row.main-footer.bottom .col-1-1 .module ul {
    right: 50%;
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
    padding: 0;
    margin: 0 0 40px 0;
  }
}
.row.main-footer.bottom .col-1-1 .module ul li {
  display: inline;
  padding: 0 40px 0 0;
  margin: 0;
  width: auto;
  float: left;
  color: #ffffff;
  font-weight: 400;
}
@media only screen and (max-width: 799px) {
  .row.main-footer.bottom .col-1-1 .module ul li {
    width: 100%;
    text-align: center;
    padding: 20px 0;
  }
  .row.main-footer.bottom .col-1-1 .module ul li::after {
    display: none;
  }
}
.row.main-footer.bottom .col-1-1 .module ul li i {
  display: inline;
  float: none;
}
.row.main-footer.bottom .col-1-1 .module ul li a {
  color: #ffffff;
}
.row.main-footer.bottom .col-1-1 .module ul li a:hover {
  color: rgba(255, 255, 255, 0.6);
}
.row.main-footer.bottom .col-1-1 .module ul li::before {
  display: none;
}
.row.main-footer.bottom .col-1-1 .module ul li::after {
  content: "";
  width: 4px;
  height: 4px;
  background: #76bf42;
  position: absolute;
  top: 8px;
  right: 0;
  margin: 0 20px;
}
.row.main-footer.bottom .col-1-1 .module ul li:last-of-type {
  padding: 0;
}
.row.main-footer.bottom .col-1-1 .module ul li:last-of-type::after {
  display: none;
}