@charset "UTF-8";
/* --------------------------------------
* Imports
* ------------------------------------ */
/* ----------------------------------------------------------------------------
* Modular Mixins
* ------------------------------------------------------------------------- */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -ms-overflow-style: scrollbar;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

@-ms-viewport {
  width: device-width;
}
article, aside, dialog, figcaption, figure, footer, header, hgroup, main, nav, section {
  display: block;
}

[tabindex="-1"]:focus {
  outline: 0 !important;
}

abbr[title],
abbr[data-original-title] {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  cursor: help;
  border-bottom: 0;
}

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem;
}

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}

dt {
  font-weight: normal;
}

dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
}

blockquote {
  margin: 0 0 1rem;
}

dfn {
  font-style: italic;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

a:not([href]):not([tabindex]) {
  color: inherit;
  text-decoration: none;
}
a:not([href]):not([tabindex]):hover, a:not([href]):not([tabindex]):focus {
  color: inherit;
  text-decoration: none;
}
a:not([href]):not([tabindex]):focus {
  outline: 0;
}

pre,
code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

pre {
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  -ms-overflow-style: scrollbar;
}

figure {
  margin: 0 0 1rem;
}

img {
  vertical-align: middle;
  border-style: none;
}

svg:not(:root) {
  overflow: hidden;
}

table {
  border-collapse: collapse;
}

caption {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  color: #888888;
  text-align: left;
  caption-side: bottom;
}

th {
  text-align: inherit;
}

label {
  display: inline-block;
  margin-bottom: 0;
}

button {
  border-radius: 0;
}

button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html [type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

input[type=radio],
input[type=checkbox] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
}

input[type=date],
input[type=time],
input[type=datetime-local],
input[type=month] {
  -webkit-appearance: listbox;
}

textarea {
  overflow: auto;
  resize: vertical;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  line-height: inherit;
  color: inherit;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
  -webkit-appearance: none;
}

[type=search]::-webkit-search-cancel-button,
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.1
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2016 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.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
}

@-webkit-keyframes bounce {
  from, 20%, 53%, 80%, 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 {
  from, 20%, 53%, 80%, 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;
  -ms-transform-origin: center bottom;
      transform-origin: center bottom;
}

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

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-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;
  -ms-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;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-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 {
  from, 11.1%, 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.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
@keyframes jello {
  from, 11.1%, 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.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
.jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
      transform-origin: center;
}

@-webkit-keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, 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 {
  from, 20%, 40%, 60%, 80%, 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 {
  from, 60%, 75%, 90%, 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 {
  from, 60%, 75%, 90%, 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 {
  from, 60%, 75%, 90%, 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 {
  from, 60%, 75%, 90%, 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 {
  from, 60%, 75%, 90%, 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 {
  from, 60%, 75%, 90%, 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 {
  from, 60%, 75%, 90%, 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 {
  from, 60%, 75%, 90%, 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;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-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;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-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;
}

/**
 * Owl Carousel v2.2.1
 * Copyright 2013-2017 David Deutsch
 * Licensed under  ()
 */
.owl-carousel, .owl-carousel .owl-item {
  -webkit-tap-highlight-color: transparent;
  position: relative;
}

.owl-carousel {
  display: none;
  width: 100%;
  z-index: 1;
}

.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  -moz-backface-visibility: hidden;
}

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

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item, .owl-carousel .owl-wrapper {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item {
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-touch-callout: none;
}

.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}

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

.no-js .owl-carousel, .owl-carousel.owl-loaded {
  display: block;
}

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

.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;
}

.owl-carousel .animated {
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

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

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

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

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.owl-height {
  -webkit-transition: height 0.5s ease-in-out;
  transition: height 0.5s ease-in-out;
}

.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}

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

.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}

.owl-carousel .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;
  -webkit-transition: -webkit-transform 0.1s ease;
  transition: -webkit-transform 0.1s ease;
  transition: transform 0.1s ease;
  transition: transform 0.1s ease, -webkit-transform 0.1s ease;
}

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

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

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

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

/**
 * Owl Carousel v2.2.1
 * Copyright 2013-2017 David Deutsch
 * Licensed under  ()
 */
.owl-theme .owl-dots, .owl-theme .owl-nav {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-nav {
  margin-top: 10px;
}

.owl-theme .owl-nav [class*=owl-] {
  color: #FFF;
  font-size: 14px;
  margin: 5px;
  padding: 4px 7px;
  background: #D6D6D6;
  display: inline-block;
  cursor: pointer;
  border-radius: 3px;
}

.owl-theme .owl-nav [class*=owl-]:hover {
  background: #869791;
  color: #FFF;
  text-decoration: none;
}

.owl-theme .owl-nav .disabled {
  opacity: 0.5;
  cursor: default;
}

.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 10px;
}

.owl-theme .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
}

.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  background: #D6D6D6;
  display: block;
  -webkit-backface-visibility: visible;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
  border-radius: 30px;
}

.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
  background: #869791;
}

/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8;
}

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden;
}

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.mfp-container:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
  display: none;
}

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto;
}

.mfp-ajax-cur {
  cursor: progress;
}

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
  cursor: auto;
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
      user-select: none;
}

.mfp-loading.mfp-figure {
  display: none;
}

.mfp-hide {
  display: none !important;
}

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044;
}

.mfp-preloader a {
  color: #CCC;
}

.mfp-preloader a:hover {
  color: #FFF;
}

.mfp-s-ready .mfp-preloader {
  display: none;
}

.mfp-s-error .mfp-content {
  display: none;
}

button.mfp-close,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  -webkit-box-shadow: none;
          box-shadow: none;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace;
}

.mfp-close:hover,
.mfp-close:focus {
  opacity: 1;
}

.mfp-close:active {
  top: 1px;
}

.mfp-close-btn-in .mfp-close {
  color: #333;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%;
}

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap;
}

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent;
}

.mfp-arrow:active {
  margin-top: -54px;
}

.mfp-arrow:hover,
.mfp-arrow:focus {
  opacity: 1;
}

.mfp-arrow:before,
.mfp-arrow:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent;
}

.mfp-arrow:after {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px;
}

.mfp-arrow:before {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7;
}

.mfp-arrow-left {
  left: 0;
}

.mfp-arrow-left:after {
  border-right: 17px solid #FFF;
  margin-left: 31px;
}

.mfp-arrow-left:before {
  margin-left: 25px;
  border-right: 27px solid #3F3F3F;
}

.mfp-arrow-right {
  right: 0;
}

.mfp-arrow-right:after {
  border-left: 17px solid #FFF;
  margin-left: 39px;
}

.mfp-arrow-right:before {
  border-left: 27px solid #3F3F3F;
}

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px;
}

.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px;
}

.mfp-iframe-holder .mfp-close {
  top: -40px;
}

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
}

.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
          box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto;
}

/* The shadow behind the image */
.mfp-figure {
  line-height: 0;
}

.mfp-figure:after {
  content: "";
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
          box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444;
}

.mfp-figure small {
  color: #BDBDBD;
  display: block;
  font-size: 12px;
  line-height: 14px;
}

.mfp-figure figure {
  margin: 0;
}

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto;
}

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px;
}

.mfp-image-holder .mfp-content {
  max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0;
  }
  .mfp-img-mobile img.mfp-img {
    padding: 0;
  }
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0;
  }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px;
  }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0;
  }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px;
  }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0;
  }
}
@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    -ms-transform: scale(0.75);
        transform: scale(0.75);
  }
  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    -ms-transform-origin: 0;
        transform-origin: 0;
  }
  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    -ms-transform-origin: 100%;
        transform-origin: 100%;
  }
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px;
  }
}
.aligncenter,
div.aligncenter {
  display: block;
  margin: 5px auto 5px auto;
}
.aligncenter h1,
div.aligncenter h1 {
  margin: 0;
}

a img.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}

a img.alignnone {
  margin: 5px 20px 20px 0;
}

a img.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}

a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption {
  background: #d1e6d8;
  max-width: 100%;
  padding: 2rem;
  text-align: center;
}

.wp-caption.alignnone {
  margin: 5px 20px 20px 0;
}

.wp-caption.alignleft {
  margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
  margin: 5px 0 20px 20px;
}

.wp-caption img {
  border: 0 none;
  height: auto;
  margin: 0;
  max-width: 100%;
  padding: 0;
  width: auto;
}

.wp-caption .wp-caption-text,
.gallery-caption {
  margin: 0;
  padding: 0.5rem;
}

.textwidget img {
  margin: 1rem 0;
}

.bypostauthor {
  background: inherit;
}

/* ----------------------------------------------------------------------------
 * Recommended sizes
 * ------------------------------------------------------------------------- */
.size-auto,
.size-full,
.size-large,
.size-medium,
.size-thumbnail {
  max-width: 100%;
  height: auto;
}

/* ----------------------------------------------------------------------------
 * Responsive
 * ------------------------------------------------------------------------- */
.wp-caption .wp-caption-text,
.gallery-caption {
  font: 300 1.4rem/1.8rem sans-serif;
}
@media only screen and (min-width: 480px) {
  .wp-caption .wp-caption-text,
  .gallery-caption {
    font: 300 1.55rem/1.8 sans-serif;
  }
}
@media only screen and (min-width: 640px) {
  .wp-caption .wp-caption-text,
  .gallery-caption {
    font: 300 1.8rem/1.8 sans-serif;
  }
}
@media only screen and (min-width: 768px) {
  .wp-caption .wp-caption-text,
  .gallery-caption {
    font: 300 1.9rem/1.7 sans-serif;
  }
}
@media screen and (min-width: 1100px) {
  .wp-caption .wp-caption-text,
  .gallery-caption {
    font: 300 2rem/3.1rem sans-serif;
  }
}
@media screen and (min-width: 1400px) {
  .wp-caption .wp-caption-text,
  .gallery-caption {
    font: 300 2rem/3.1rem sans-serif;
  }
}

/*! PhotoSwipe main CSS by Dmitry Semenov | photoswipe.com | MIT license */
.pswp {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  overflow: hidden;
  -ms-touch-action: none;
  touch-action: none;
  z-index: 1500;
  -webkit-text-size-adjust: 100%;
  -webkit-backface-visibility: hidden;
  outline: 0;
}

.pswp * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.pswp img {
  max-width: none;
}

.pswp--animate_opacity {
  opacity: 0.001;
  will-change: opacity;
  -webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
  transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
}

.pswp--open {
  display: block;
}

.pswp--zoom-allowed .pswp__img {
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
}

.pswp--zoomed-in .pswp__img {
  cursor: -webkit-grab;
  cursor: grab;
}

.pswp--dragging .pswp__img {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.pswp__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0;
  -webkit-backface-visibility: hidden;
  will-change: opacity;
}

.pswp__scroll-wrap {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.pswp__container, .pswp__zoom-wrap {
  -ms-touch-action: none;
  touch-action: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.pswp__container, .pswp__img {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

.pswp__zoom-wrap {
  position: absolute;
  width: 100%;
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
  -webkit-transition: -webkit-transform 333ms cubic-bezier(0.4, 0, 0.22, 1);
  transition: -webkit-transform 333ms cubic-bezier(0.4, 0, 0.22, 1);
  transition: transform 333ms cubic-bezier(0.4, 0, 0.22, 1);
  transition: transform 333ms cubic-bezier(0.4, 0, 0.22, 1), -webkit-transform 333ms cubic-bezier(0.4, 0, 0.22, 1);
}

.pswp__bg {
  will-change: opacity;
  -webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
  transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
}

.pswp--animated-in .pswp__bg, .pswp--animated-in .pswp__zoom-wrap {
  -webkit-transition: none;
  transition: none;
}

.pswp__container, .pswp__zoom-wrap {
  -webkit-backface-visibility: hidden;
}

.pswp__item {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  overflow: hidden;
}

.pswp__img {
  position: absolute;
  width: auto;
  height: auto;
  top: 0;
  left: 0;
}

.pswp__img--placeholder {
  -webkit-backface-visibility: hidden;
}

.pswp__img--placeholder--blank {
  background: #222;
}

.pswp--ie .pswp__img {
  width: 100% !important;
  height: auto !important;
  left: 0;
  top: 0;
}

.pswp__error-msg {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  text-align: center;
  font-size: 14px;
  line-height: 16px;
  margin-top: -8px;
  color: #CCC;
}

.pswp__error-msg a {
  color: #CCC;
  text-decoration: underline;
}

/*! PhotoSwipe Default UI CSS by Dmitry Semenov | photoswipe.com | MIT license */
.pswp__button {
  width: 44px;
  height: 44px;
  position: relative;
  background: 0;
  cursor: pointer;
  overflow: visible;
  -webkit-appearance: none;
  display: block;
  border: 0;
  padding: 0;
  margin: 0;
  float: right;
  opacity: 0.75;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.pswp__button:focus, .pswp__button:hover {
  opacity: 1;
}

.pswp__button:active {
  outline: 0;
  opacity: 0.9;
}

.pswp__button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

.pswp__ui--over-close .pswp__button--close {
  opacity: 1;
}

.pswp__button, .pswp__button--arrow--left:before, .pswp__button--arrow--right:before {
  background: url(../img/default-skin.png) 0 0 no-repeat;
  background-size: 264px 88px;
  width: 44px;
  height: 44px;
}

@media (-webkit-min-device-pixel-ratio: 1.1), (-webkit-min-device-pixel-ratio: 1.09375), (min-resolution: 105dpi), (min-resolution: 1.1dppx) {
  .pswp--svg .pswp__button, .pswp--svg .pswp__button--arrow--left:before, .pswp--svg .pswp__button--arrow--right:before {
    background-image: url(default-skin.svg);
  }
  .pswp--svg .pswp__button--arrow--left, .pswp--svg .pswp__button--arrow--right {
    background: 0;
  }
}
.pswp__button--close {
  background-position: 0 -44px;
}

.pswp__button--share {
  background-position: -44px -44px;
}

.pswp__button--fs {
  display: none;
}

.pswp--supports-fs .pswp__button--fs {
  display: block;
}

.pswp--fs .pswp__button--fs {
  background-position: -44px 0;
}

.pswp__button--zoom {
  display: none;
  background-position: -88px 0;
}

.pswp--zoom-allowed .pswp__button--zoom {
  display: block;
}

.pswp--zoomed-in .pswp__button--zoom {
  background-position: -132px 0;
}

.pswp--touch .pswp__button--arrow--left, .pswp--touch .pswp__button--arrow--right {
  visibility: hidden;
}

.pswp__button--arrow--left, .pswp__button--arrow--right {
  background: 0;
  top: 50%;
  margin-top: -50px;
  width: 70px;
  height: 100px;
  position: absolute;
}

.pswp__button--arrow--left {
  left: 0;
}

.pswp__button--arrow--right {
  right: 0;
}

.pswp__button--arrow--left:before, .pswp__button--arrow--right:before {
  content: "";
  top: 35px;
  background-color: rgba(0, 0, 0, 0.3);
  height: 30px;
  width: 32px;
  position: absolute;
}

.pswp__button--arrow--left:before {
  left: 6px;
  background-position: -138px -44px;
}

.pswp__button--arrow--right:before {
  right: 6px;
  background-position: -94px -44px;
}

.pswp__counter, .pswp__share-modal {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.pswp__share-modal {
  display: block;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding: 10px;
  position: absolute;
  z-index: 1600;
  opacity: 0;
  -webkit-transition: opacity 0.25s ease-out;
  transition: opacity 0.25s ease-out;
  -webkit-backface-visibility: hidden;
  will-change: opacity;
}

.pswp__share-modal--hidden {
  display: none;
}

.pswp__share-tooltip {
  z-index: 1620;
  position: absolute;
  background: #FFF;
  top: 56px;
  border-radius: 2px;
  display: block;
  width: auto;
  right: 44px;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
  -webkit-transform: translateY(6px);
  -ms-transform: translateY(6px);
  transform: translateY(6px);
  -webkit-transition: -webkit-transform 0.25s;
  transition: -webkit-transform 0.25s;
  transition: transform 0.25s;
  transition: transform 0.25s, -webkit-transform 0.25s;
  -webkit-backface-visibility: hidden;
  will-change: transform;
}

.pswp__share-tooltip a {
  display: block;
  padding: 8px 12px;
  color: #000;
  text-decoration: none;
  font-size: 14px;
  line-height: 18px;
}

.pswp__share-tooltip a:hover {
  text-decoration: none;
  color: #000;
}

.pswp__share-tooltip a:first-child {
  border-radius: 2px 2px 0 0;
}

.pswp__share-tooltip a:last-child {
  border-radius: 0 0 2px 2px;
}

.pswp__share-modal--fade-in {
  opacity: 1;
}

.pswp__share-modal--fade-in .pswp__share-tooltip {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.pswp--touch .pswp__share-tooltip a {
  padding: 16px 12px;
}

a.pswp__share--facebook:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  top: -12px;
  right: 15px;
  border: 6px solid transparent;
  border-bottom-color: #FFF;
  -webkit-pointer-events: none;
  -moz-pointer-events: none;
  pointer-events: none;
}

a.pswp__share--facebook:hover {
  background: #3e5c9a;
  color: #FFF;
}

a.pswp__share--facebook:hover:before {
  border-bottom-color: #3e5c9a;
}

a.pswp__share--twitter:hover {
  background: #55acee;
  color: #FFF;
}

a.pswp__share--pinterest:hover {
  background: #CCC;
  color: #ce272d;
}

a.pswp__share--download:hover {
  background: #DDD;
}

.pswp__counter {
  position: absolute;
  left: 0;
  top: 0;
  height: 44px;
  font-size: 13px;
  line-height: 44px;
  color: #FFF;
  opacity: 0.75;
  padding: 0 10px;
}

.pswp__caption {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  min-height: 44px;
}

.pswp__caption small {
  font-size: 11px;
  color: #BBB;
}

.pswp__caption__center {
  text-align: left;
  max-width: 420px;
  margin: 0 auto;
  font-size: 13px;
  padding: 10px;
  line-height: 20px;
  color: #CCC;
}

.pswp__caption--empty {
  display: none;
}

.pswp__caption--fake {
  visibility: hidden;
}

.pswp__preloader {
  width: 44px;
  height: 44px;
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -22px;
  opacity: 0;
  -webkit-transition: opacity 0.25s ease-out;
  transition: opacity 0.25s ease-out;
  will-change: opacity;
  direction: ltr;
}

.pswp__preloader__icn {
  width: 20px;
  height: 20px;
  margin: 12px;
}

.pswp__preloader--active {
  opacity: 1;
}

.pswp__preloader--active .pswp__preloader__icn {
  background: url(preloader.gif) 0 0 no-repeat;
}

.pswp--css_animation .pswp__preloader--active {
  opacity: 1;
}

.pswp--css_animation .pswp__preloader--active .pswp__preloader__icn {
  -webkit-animation: clockwise 500ms linear infinite;
  animation: clockwise 500ms linear infinite;
}

.pswp--css_animation .pswp__preloader--active .pswp__preloader__donut {
  -webkit-animation: donut-rotate 1000ms cubic-bezier(0.4, 0, 0.22, 1) infinite;
  animation: donut-rotate 1000ms cubic-bezier(0.4, 0, 0.22, 1) infinite;
}

.pswp--css_animation .pswp__preloader__icn {
  background: 0;
  opacity: 0.75;
  width: 14px;
  height: 14px;
  position: absolute;
  left: 15px;
  top: 15px;
  margin: 0;
}

.pswp--css_animation .pswp__preloader__cut {
  position: relative;
  width: 7px;
  height: 14px;
  overflow: hidden;
}

.pswp--css_animation .pswp__preloader__donut {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 14px;
  height: 14px;
  border: 2px solid #FFF;
  border-radius: 50%;
  border-left-color: transparent;
  border-bottom-color: transparent;
  position: absolute;
  top: 0;
  left: 0;
  background: 0;
  margin: 0;
}

@media screen and (max-width: 1024px) {
  .pswp__preloader {
    position: relative;
    left: auto;
    top: auto;
    margin: 0;
    float: right;
  }
}
@-webkit-keyframes clockwise {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes clockwise {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes donut-rotate {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  50% {
    -webkit-transform: rotate(-140deg);
    transform: rotate(-140deg);
  }
  100% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
}
@keyframes donut-rotate {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  50% {
    -webkit-transform: rotate(-140deg);
    transform: rotate(-140deg);
  }
  100% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
}
.pswp__ui {
  -webkit-font-smoothing: auto;
  visibility: visible;
  opacity: 1;
  z-index: 1550;
}

.pswp__top-bar {
  position: absolute;
  left: 0;
  top: 0;
  height: 44px;
  width: 100%;
}

.pswp__caption, .pswp__top-bar, .pswp--has_mouse .pswp__button--arrow--left, .pswp--has_mouse .pswp__button--arrow--right {
  -webkit-backface-visibility: hidden;
  will-change: opacity;
  -webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
  transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
}

.pswp--has_mouse .pswp__button--arrow--left, .pswp--has_mouse .pswp__button--arrow--right {
  visibility: visible;
}

.pswp__top-bar, .pswp__caption {
  background-color: rgba(0, 0, 0, 0.5);
}

.pswp__ui--fit .pswp__top-bar, .pswp__ui--fit .pswp__caption {
  background-color: rgba(0, 0, 0, 0.3);
}

.pswp__ui--idle .pswp__top-bar {
  opacity: 0;
}

.pswp__ui--idle .pswp__button--arrow--left, .pswp__ui--idle .pswp__button--arrow--right {
  opacity: 0;
}

.pswp__ui--hidden .pswp__top-bar, .pswp__ui--hidden .pswp__caption, .pswp__ui--hidden .pswp__button--arrow--left, .pswp__ui--hidden .pswp__button--arrow--right {
  opacity: 0.001;
}

.pswp__ui--one-slide .pswp__button--arrow--left, .pswp__ui--one-slide .pswp__button--arrow--right, .pswp__ui--one-slide .pswp__counter {
  display: none;
}

.pswp__element--disabled {
  display: none !important;
}

.pswp--minimal--dark .pswp__top-bar {
  background: 0;
}

.title, .full-width {
  width: 100%;
  -webkit-column-width: 100%;
     -moz-column-width: 100%;
          column-width: 100%;
}

.align-left {
  text-align: left;
}

.align-center {
  text-align: center;
}

.align-right {
  text-align: right;
}

.col-container.vert-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.alignnone {
  margin: 0;
}

.alignleft {
  margin: 0 0 50px;
}
@media only screen and (min-width: 768px) {
  .alignleft {
    float: left;
    margin: 0 50px 50px 0;
  }
}

.alignright {
  margin: 0 0 50px;
}
@media only screen and (min-width: 768px) {
  .alignright {
    float: right;
    margin: 0 0 50px 50px;
  }
}

.light-background {
  background: #f2f8f4;
}

.primary-background {
  background: #078844;
}
.primary-background h1, .primary-background h2, .primary-background h3, .primary-background h4, .primary-background h5, .primary-background h6,
.primary-background .h1, .primary-background .h2, .primary-background .h3, .primary-background .h4 {
  color: white;
}
.primary-background p, .primary-background li {
  color: rgba(255, 255, 255, 0.9);
}
.primary-background a:not(.btn) {
  color: white;
}

.secondary-background {
  background: #0f5b6f;
}

.whitesmoke-background, .whitesmoke {
  background: whitesmoke;
}

.getin-touch.col-container {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.getin-touch.col-container .button-row {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column wrap;
          flex-flow: column wrap;
}
.getin-touch.col-container .btn, .getin-touch.col-container form input[type=submit], form .getin-touch.col-container input[type=submit],
.getin-touch.col-container form input[type=button],
form .getin-touch.col-container input[type=button] {
  min-width: 300px;
  width: auto;
  margin: 0 auto 15px;
}
.getin-touch.col-container .btn:last-child, .getin-touch.col-container form input[type=submit]:last-child, form .getin-touch.col-container input[type=submit]:last-child,
.getin-touch.col-container form input[type=button]:last-child,
form .getin-touch.col-container input[type=button]:last-child {
  margin-bottom: 0;
}
.getin-touch.col-container .btn i, .getin-touch.col-container form input[type=submit] i, form .getin-touch.col-container input[type=submit] i,
.getin-touch.col-container form input[type=button] i,
form .getin-touch.col-container input[type=button] i {
  margin-right: 8px;
}

.logo-carousel {
  margin: 0 60px;
  width: calc(100% - 120px);
  padding: 0 20px;
  border-left: 1px solid #e1e1e2;
  border-right: 1px solid #e1e1e2;
}
.logo-carousel .logo-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding: 10px;
}
.logo-carousel .logo-item img {
  width: auto;
  height: auto;
  margin: auto;
  max-height: 70px;
  -webkit-filter: none;
          filter: none;
  max-width: 90%;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.logo-carousel .logo-item a:hover img {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
}
.logo-carousel.arrows {
  padding: 0 15px;
}
.logo-carousel.arrows .owl-nav .owl-prev, .logo-carousel.arrows .owl-nav .owl-next {
  opacity: 1;
  width: 40px;
  background: none;
  color: #0f5b6f;
  font-size: 3.125em;
  line-height: 1.4em;
  height: 70px;
}
.logo-carousel.arrows .owl-nav .owl-prev:hover, .logo-carousel.arrows .owl-nav .owl-next:hover {
  background: #078844;
}
.logo-carousel.arrows .owl-nav .owl-prev {
  left: -60px;
}
.logo-carousel.arrows .owl-nav .owl-next {
  right: -60px;
}

.icon-boxes .col {
  margin: 0 0 20px;
  text-align: center;
}
.icon-boxes i {
  font-size: 3.75em;
  line-height: 1em;
  margin: 0 0 20px;
  color: #0f5b6f;
}
.icon-boxes h3 {
  margin: 0 0 15px;
}
.icon-boxes p {
  font-size: 0.9375em;
  line-height: 1.7333333333em;
  margin: 0 auto;
  max-width: 310px;
}
.icon-boxes .btn, .icon-boxes form input[type=submit], form .icon-boxes input[type=submit],
.icon-boxes form input[type=button],
form .icon-boxes input[type=button] {
  padding: 8px 0;
  margin-top: 20px;
  font-weight: 600;
  font-family: "Radio Canada Big", sans-serif;
  font-size: 0.9375em;
  line-height: 1em;
}
.icon-boxes.small .col {
  text-align: left;
  position: relative;
  padding-left: 60px;
}
.icon-boxes.small h3 {
  margin-bottom: 10px;
  font-size: 1.25em;
  line-height: 1.4em;
}
.icon-boxes.small p {
  margin: 0;
}
.icon-boxes.small .btn, .icon-boxes.small form input[type=submit], form .icon-boxes.small input[type=submit],
.icon-boxes.small form input[type=button],
form .icon-boxes.small input[type=button] {
  margin-top: 10px;
}
.icon-boxes.small i {
  font-size: 1.875em;
  line-height: 1em;
  position: absolute;
  top: 2px;
  left: 0;
  width: 40px;
  text-align: center;
}

.landing-images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
}

.landing-items {
  width: 100%;
  position: relative;
}
@media only screen and (min-width: 480px) {
  .landing-items {
    width: calc(50% - 10px);
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .landing-items {
    width: calc(33.33% - 15px);
  }
}
.landing-items a.landing-image {
  position: relative;
  overflow: hidden;
  display: block;
}
.landing-items a.landing-image.border {
  border: 1px solid #e1e1e2;
}
.landing-items a.landing-image.no-image {
  background: #e1e1e2;
}
.landing-items a.landing-image:before {
  padding-top: 75%;
  content: "";
  display: block;
}
.landing-items a.landing-image img {
  width: 100%;
  height: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .landing-items a.landing-image img {
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1);
  }
}
.landing-items .text {
  pointer-events: none;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: rgba(7, 136, 68, 0.9);
  padding: 15px;
  text-align: left;
}
@media only screen and (min-width: 768px) {
  .landing-items .text {
    padding: 25px;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
}
.landing-items .text h3 {
  font-size: 1.125em;
  line-height: 1.3333333333em;
  color: white;
  margin: 0;
  font-family: "Poppins", sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 400;
}
.landing-items .text i {
  position: absolute;
  right: 0;
  top: 50%;
  width: 35px;
  height: 35px;
  background: white;
  border-radius: 50%;
  color: #078844;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .landing-items:hover a img {
    -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1);
  }
}
.landing-items:hover .text {
  background: rgba(15, 91, 111, 0.9);
}
.landing-items:hover .text h3 {
  color: white;
}

.scrolling-landing {
  overflow: hidden;
}

@media only screen and (min-width: 960px) and (orientation: landscape) {
  .landing.owl-carousel {
    padding: 0 90px;
  }
}
.landing.owl-carousel .owl-stage-outer {
  overflow: visible;
}
.landing.owl-carousel .owl-stage, .landing.owl-carousel .owl-item, .landing.owl-carousel .owl-stage-outer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.landing.owl-carousel .box-item {
  opacity: 0.3;
  -webkit-transition: 0.3 ease-in-out;
  transition: 0.3 ease-in-out;
}
.landing.owl-carousel .owl-item.active .box-item {
  opacity: 1;
}

.box-item {
  background: white;
  width: 100%;
  border: 1px solid #e1e1e2;
}
.box-item .landing-image {
  position: relative;
  background: #0f5b6f;
  overflow: hidden;
  z-index: 1;
  width: 100%;
  display: block;
}
.box-item .landing-image:before {
  padding-top: 65%;
  content: "";
  display: block;
}
.box-item .landing-image img {
  inset: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .box-item .landing-image img {
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
}
.box-item .landing-image:after {
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 2;
  background: rgba(7, 136, 68, 0.8);
  inset: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  content: "\f0c1";
  font-family: "Font Awesome 6 Pro";
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  color: white;
  font-weight: 700;
  font-size: 2.375em;
  line-height: 1.1842105263em;
  opacity: 0;
}
.box-item .landing-text {
  padding: 30px 25px 60px;
  text-align: center;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .box-item .landing-text {
    padding: 30px 25px 60px;
  }
}
.box-item .landing-link {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
  display: inline-block;
  position: relative;
  color: #078844;
  font-size: 0.875em;
  line-height: 2em;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 35px;
}
.box-item .landing-link:before {
  height: 1px;
  background: #078844;
  opacity: 0.3;
  width: 100%;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  right: 0;
}
.box-item .landing-link:hover:before {
  opacity: 1;
}
.box-item:hover .landing-image:after {
  opacity: 1;
}
.box-item p {
  margin-bottom: 15px;
}
.box-item h2 {
  font-size: 1.5em;
  line-height: 1.25em;
  letter-spacing: 0.5px;
  color: #078844;
  margin-bottom: 15px;
}
.box-item h2 a {
  font-weight: 600;
}

.row.image-block {
  position: relative;
  height: 500px;
  background: #078844;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .row.image-block {
    height: 600px;
  }
}
.row.image-block.has-text {
  height: auto;
}
.row.image-block.padded {
  padding-top: 100px;
  padding-bottom: 100px;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .row.image-block.padded {
    padding-top: 130px;
    padding-bottom: 130px;
  }
}
.row.image-block img {
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  -o-object-fit: cover;
     object-fit: cover;
}
.row.image-block img:first-child {
  left: 0;
}
.row.image-block .box {
  position: relative;
  z-index: 2;
  max-width: 800px;
  text-align: center;
  margin: 0 auto;
}
.row.image-block .box h2, .row.image-block .box h3 {
  margin-bottom: 25px;
}
.row.image-block .box p:last-child {
  margin-bottom: 0;
}
.row.image-block.images-1 img {
  width: 100%;
  right: 0;
}
@media only screen and (min-width: 640px) {
  .row.image-block.images-2 img, .row.image-block.images-3 img {
    width: 50%;
  }
}
.row.image-block.images-2 img:last-of-type, .row.image-block.images-3 img:last-of-type {
  display: none;
}
@media only screen and (min-width: 640px) {
  .row.image-block.images-2 img:last-of-type, .row.image-block.images-3 img:last-of-type {
    right: 0;
    display: block;
    left: auto;
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .row.image-block.images-3 img {
    width: 33.33%;
  }
}
.row.image-block.images-3 img:first-child + img {
  display: none;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .row.image-block.images-3 img:first-child + img {
    left: 33.33%;
    display: block;
  }
}
.row.image-block.opacity-image img {
  opacity: 0.5;
}
.row.image-block.opacity-image .box h2, .row.image-block.opacity-image .box h3, .row.image-block.opacity-image .box p {
  color: white;
}
.row.image-block.opacity-image .box p {
  font-size: 1.1875em;
  line-height: 1.8947368421em;
}
.row.image-block.box-left .box {
  margin: 0;
  text-align: left;
}
.row.image-block.box-right .box {
  margin: 0;
  text-align: left;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .row.image-block.box-right .box {
    margin-left: auto;
  }
}
.row.image-block.white-box .box {
  background: white;
  padding: 30px;
  max-width: 700px;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .row.image-block.white-box .box {
    padding: 50px;
  }
}

.wp-block-gallery .blocks-gallery-item {
  padding: 0;
}
.wp-block-gallery .blocks-gallery-item:before {
  display: none;
}
.wp-block-gallery .blocks-gallery-item a {
  overflow: hidden;
  position: relative;
}
.wp-block-gallery .blocks-gallery-item a:before {
  content: "";
  background: #078844;
  display: block;
  height: 0;
  width: 0;
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  opacity: 0.7;
  filter: alpha(opacity=70);
}
.wp-block-gallery .blocks-gallery-item a:hover:before {
  width: 1000px;
  height: 1000px;
  -webkit-transform-origin: center;
      -ms-transform-origin: center;
          transform-origin: center;
}
.wp-block-gallery .blocks-gallery-item a:after {
  content: "\f065";
  font-family: "Font Awesome 6 Pro";
  font-size: 2.5em;
  line-height: 1em;
  display: block;
  width: 40px;
  height: 40px;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  color: #fff;
  z-index: 10;
  font-weight: 900;
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.wp-block-gallery .blocks-gallery-item a:hover:after {
  opacity: 1;
  filter: alpha(opacity=100);
  background-position: center;
}

.before-after {
  position: relative;
  height: auto;
  width: 100%;
  overflow: hidden;
}
.before-after .img-comp-responsive {
  height: 0;
  width: 100%;
  padding-bottom: 75%;
}
.before-after .img-comp-responsive .image-gallery {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}
.before-after .img-comp-responsive .image-gallery.img-comp-overlay {
  width: 50%;
  z-index: 2;
}
.before-after .img-comp-responsive .image-gallery img {
  display: block;
  height: 100%;
  width: auto;
  max-width: none;
  vertical-align: middle;
}
.before-after .slider {
  position: absolute;
  z-index: 9;
  cursor: ew-resize;
  width: 50px;
  height: 100%;
  left: calc(50% - 25px);
  top: 0;
  bottom: 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;
}
.before-after .slider:before {
  width: 5px;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  content: "";
  left: 50%;
  background: white;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 1;
}
.before-after .slider:after {
  display: block;
  content: "\f07e";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: white;
  font-family: "Font Awesome 6 Pro";
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 50px;
  height: 50px;
  z-index: 2;
  background: #0f5b6f;
}

.main-image img {
  height: auto;
}

.thumb-image {
  margin: 20px 0 0;
}
.thumb-image .thumbnail-item {
  position: relative;
  width: 100%;
  cursor: pointer;
}
.thumb-image .thumbnail-item:before {
  padding-top: 100%;
  display: block;
  content: "";
}
.thumb-image .thumbnail-item img {
  inset: 0;
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 0.6;
}
.thumb-image .active .thumbnail-item img {
  opacity: 1;
}
.thumb-image.arrows {
  padding: 0;
}
.thumb-image.arrows .owl-nav .owl-prev, .thumb-image.arrows .owl-nav .owl-next {
  width: 40px;
  height: 40px;
  line-height: 40px;
}

.gallery.standard .gallery-outer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  gap: 16px;
}
@media only screen and (min-width: 480px) {
  .gallery.lightbox-2-row .gallery-item {
    width: calc(50% - 8px);
  }
}
@media only screen and (min-width: 480px) {
  .gallery.lightbox-3-row .gallery-item {
    width: calc(50% - 8px);
  }
}
@media only screen and (min-width: 768px) {
  .gallery.lightbox-3-row .gallery-item {
    width: calc(33.33% - 10.66px);
  }
}
@media only screen and (min-width: 480px) {
  .gallery.lightbox-4-row .gallery-item {
    width: calc(50% - 8px);
  }
}
@media only screen and (min-width: 768px) {
  .gallery.lightbox-4-row .gallery-item {
    width: calc(33.33% - 10.66px);
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .gallery.lightbox-4-row .gallery-item {
    width: calc(25% - 12px);
  }
}
@media only screen and (min-width: 480px) {
  .gallery.lightbox-5-row .gallery-item {
    width: calc(33.33% - 10.66px);
  }
}
@media only screen and (min-width: 768px) {
  .gallery.lightbox-5-row .gallery-item {
    width: calc(33.33% - 10.66px);
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .gallery.lightbox-5-row .gallery-item {
    width: calc(20% - 12.8px);
  }
}
@media only screen and (min-width: 480px) {
  .gallery.lightbox-6-row .gallery-item {
    width: calc(50% - 8px);
  }
}
@media only screen and (min-width: 768px) {
  .gallery.lightbox-6-row .gallery-item {
    width: calc(33.33% - 10.66px);
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .gallery.lightbox-6-row .gallery-item {
    width: calc(20% - 12.8px);
  }
}
@media screen and (min-width: 1100px) {
  .gallery.lightbox-6-row .gallery-item {
    width: calc(16.66% - 13.33px);
  }
}
.gallery span {
  position: relative;
  display: block;
  height: 100%;
}
.gallery span img {
  width: 100%;
  height: auto;
}
@media only screen and (min-width: 768px) {
  .gallery span:before {
    content: "";
    background: #078844;
    display: block;
    height: 0;
    width: 0;
    position: absolute;
    z-index: 10;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    opacity: 0.7;
    filter: alpha(opacity=70);
  }
  .gallery span:after {
    content: "\f065";
    font-family: "Font Awesome 6 Pro";
    font-size: 2.5em;
    line-height: 1em;
    display: block;
    width: 40px;
    height: 40px;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    color: #fff;
    z-index: 10;
    font-weight: 400;
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
}
.gallery .gallery-item {
  overflow: hidden;
  margin: 0;
}
.gallery .gallery-item a {
  display: block;
  widtH: 100%;
  overflow: hidden;
  position: relative;
}
.gallery .gallery-item a .caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  font-weight: 600;
  z-index: 5;
  background: rgba(255, 255, 255, 0.8);
  text-align: center;
  padding: 15px 10px;
  font-size: 0.9375em;
  line-height: 1.3333333333em;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .gallery .gallery-item a:hover span:before {
    width: 1000px;
    height: 1000px;
    -webkit-transform-origin: center;
        -ms-transform-origin: center;
            transform-origin: center;
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .gallery .gallery-item a:hover span:after {
    opacity: 1;
    filter: alpha(opacity=100);
    background-position: center;
  }
}
.gallery.masonry .gallery-item {
  margin-bottom: 16px;
}
.gallery.scrolling .gallery-item {
  width: 100%;
}
.gallery.grid .gallery-outer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 10px;
}
.gallery.grid .gallery-item {
  width: auto;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  height: 300px;
  margin: 0;
  overflow: hidden;
  position: relative;
  max-width: 600px;
}
@media screen and (min-width: 1400px) {
  .gallery.grid .gallery-item {
    height: 350px;
  }
}
.gallery.grid .gallery-item a {
  -ms-flex-item-align: auto;
      -ms-grid-row-align: auto;
      align-self: auto;
  height: 100%;
  text-decoration: none;
}
.gallery.grid .gallery-item a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.col-container {
  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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-line-pack: stretch;
      align-content: stretch;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  position: relative;
}

.col {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  -ms-flex-item-align: auto;
      -ms-grid-row-align: auto;
      align-self: auto;
  margin-bottom: 30px;
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .col {
    width: auto;
    margin: 0;
  }
}
.col p:last-child {
  margin-bottom: 0;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .col.no-margin-bottom {
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 768px) {
  .col.two-col {
    width: calc(50% - 25px);
    -ms-flex-preferred-size: calc(50% - 25px);
        flex-basis: calc(50% - 25px);
  }
}
@media screen and (min-width: 1400px) {
  .col.two-col {
    width: calc(50% - 50px);
    -ms-flex-preferred-size: calc(50% - 50px);
        flex-basis: calc(50% - 50px);
  }
}
@media only screen and (min-width: 768px) {
  .col.three-col {
    width: calc(50% - 25px);
    -ms-flex-preferred-size: calc(50% - 25px);
        flex-basis: calc(50% - 25px);
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .col.three-col {
    width: calc(33.33% - 50px);
    -ms-flex-preferred-size: calc(33.33% - 50px);
        flex-basis: calc(33.33% - 50px);
  }
}
@media only screen and (min-width: 768px) {
  .col.four-col, .col.one-quarter-col {
    width: calc(50% - 25px);
    -ms-flex-preferred-size: calc(50% - 25px);
        flex-basis: calc(50% - 25px);
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .col.four-col, .col.one-quarter-col {
    width: calc(25% - 37.5px);
    -ms-flex-preferred-size: calc(25% - 37.5px);
        flex-basis: calc(25% - 37.5px);
  }
}
.col.four-col-land, .col.one-quarter-col-land {
  width: 100%;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .col.four-col-land, .col.one-quarter-col-land {
    width: calc(25% - 37.5px);
    -ms-flex-preferred-size: calc(25% - 37.5px);
        flex-basis: calc(25% - 37.5px);
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .col.one-quarter-col.leftsidebar {
    width: calc(25% - 25px);
    -ms-flex-preferred-size: calc(25% - 25px);
        flex-basis: calc(25% - 25px);
  }
}
@media screen and (min-width: 1100px) {
  .col.one-quarter-col.leftsidebar {
    width: calc(25% - 37.5px);
    -ms-flex-preferred-size: calc(25% - 37.5px);
        flex-basis: calc(25% - 37.5px);
  }
}
@media only screen and (min-width: 768px) {
  .col.five-col {
    width: calc(50% - 25px);
    -ms-flex-preferred-size: calc(50% - 25px);
        flex-basis: calc(50% - 25px);
  }
}
@media screen and (min-width: 1100px) {
  .col.five-col {
    width: calc(20% - 40px);
    -ms-flex-preferred-size: calc(20% - 40px);
        flex-basis: calc(20% - 40px);
  }
}
@media only screen and (min-width: 768px) {
  .col.six-col {
    width: calc(50% - 25px);
    -ms-flex-preferred-size: calc(50% - 25px);
        flex-basis: calc(50% - 25px);
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .col.six-col {
    width: calc(33.33% - 33.3333px);
    -ms-flex-preferred-size: calc(33.33% - 33.3333px);
        flex-basis: calc(33.33% - 33.3333px);
  }
}
@media screen and (min-width: 1100px) {
  .col.six-col {
    width: calc(16.66% - 42.22222px);
    -ms-flex-preferred-size: calc(16.66% - 42.22222px);
        flex-basis: calc(16.66% - 42.22222px);
  }
}
@media only screen and (min-width: 768px) {
  .col.one-third-col {
    width: calc(50% - 25px);
    -ms-flex-preferred-size: calc(50% - 25px);
        flex-basis: calc(50% - 25px);
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .col.one-third-col {
    width: calc(33.33% - 25px);
    -ms-flex-preferred-size: calc(33.33% - 25px);
        flex-basis: calc(33.33% - 25px);
  }
}
@media only screen and (min-width: 768px) {
  .col.two-thirds-col {
    width: calc(50% - 25px);
    -ms-flex-preferred-size: calc(50% - 25px);
        flex-basis: calc(50% - 25px);
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .col.two-thirds-col {
    width: calc(66.66% - 62.5px);
    -ms-flex-preferred-size: calc(66.66% - 62.5px);
        flex-basis: calc(66.66% - 62.5px);
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .col.one-third-col-land {
    width: calc(50% - 25px);
    -ms-flex-preferred-size: calc(50% - 25px);
        flex-basis: calc(50% - 25px);
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .col.one-third-col-land {
    width: calc(33.33% - 25px);
    -ms-flex-preferred-size: calc(33.33% - 25px);
        flex-basis: calc(33.33% - 25px);
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .col.two-thirds-col-land {
    width: calc(50% - 25px);
    -ms-flex-preferred-size: calc(50% - 25px);
        flex-basis: calc(50% - 25px);
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .col.two-thirds-col-land {
    width: calc(66.66% - 25px);
    -ms-flex-preferred-size: calc(66.66% - 25px);
        flex-basis: calc(66.66% - 25px);
  }
}
@media only screen and (min-width: 768px) {
  .col.three-quarter-col {
    width: calc(50% - 25px);
    -ms-flex-preferred-size: calc(50% - 25px);
        flex-basis: calc(50% - 25px);
  }
}
@media screen and (min-width: 1100px) {
  .col.three-quarter-col {
    width: calc(75% - 25px);
    -ms-flex-preferred-size: calc(75% - 25px);
        flex-basis: calc(75% - 25px);
  }
}
@media only screen and (min-width: 768px) {
  .col.three-quarter-col.rightbar {
    width: calc(100% - 0px);
    -ms-flex-preferred-size: calc(100% - 0px);
        flex-basis: calc(100% - 0px);
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .col.three-quarter-col.rightbar {
    width: calc(75% - 25px);
    -ms-flex-preferred-size: calc(75% - 25px);
        flex-basis: calc(75% - 25px);
  }
}
@media screen and (min-width: 1100px) {
  .col.three-quarter-col.rightbar {
    width: calc(75% - 37.5px);
    -ms-flex-preferred-size: calc(75% - 37.5px);
        flex-basis: calc(75% - 37.5px);
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .col.three-quarter-col-land {
    width: calc(75% - 25px);
    -ms-flex-preferred-size: calc(75% - 25px);
        flex-basis: calc(75% - 25px);
  }
}

.columns .leftsidebar {
  display: none;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .columns .leftsidebar {
    display: block;
    border-left: 1px solid #e1e1e2;
    padding-left: 40px;
  }
}
.quote p {
  border-left: 5px solid #f2f8f4;
  padding-left: 30px;
  margin: 0 0 30px;
}
.quote p strong {
  text-transform: uppercase;
  font-size: 0.875em;
  line-height: 1em;
  color: #078844;
  display: block;
  margin: 20px 0 0;
}

.blockquote, blockquote {
  border-left: 5px solid #078844;
  padding: 10px 0 10px 30px;
  margin-bottom: 35px;
}
.blockquote p, blockquote p {
  margin-bottom: 15px;
  font-size: 1.0625em;
  line-height: 1.6470588235em;
}
.blockquote p:last-child, blockquote p:last-child {
  margin-bottom: 0;
}
.blockquote strong, blockquote strong {
  font-family: "Radio Canada Big", sans-serif;
  color: #078844;
}

hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  overflow: visible;
  position: relative;
  width: 100%;
  border: 0;
  height: 1px;
  background: #e1e1e2;
  max-width: 1460px;
  margin: 52.5px auto;
}
hr.margin {
  margin: 52.5px auto;
}
hr:after {
  content: "";
  display: block;
  width: 50px;
  height: 1px;
  background: #078844;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  -webkit-box-shadow: 0 0 0 8px #fff;
          box-shadow: 0 0 0 8px #fff;
}

section.padded + hr {
  margin: 0 auto;
}

.image-background {
  position: relative;
  overflow: hidden;
  background: #078844;
}
.image-background img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  opacity: 0.5;
}

@media only screen and (min-width: 768px) {
  .testimonials-box.col-container .image {
    width: calc(50% - 25px);
    -ms-flex-preferred-size: calc(50% - 25px);
        flex-basis: calc(50% - 25px);
  }
}
@media screen and (min-width: 1400px) {
  .testimonials-box.col-container .image {
    width: calc(50% - 50px);
    -ms-flex-preferred-size: calc(50% - 50px);
        flex-basis: calc(50% - 50px);
  }
}
.testimonials-box.noimage .image {
  display: none;
}

@media only screen and (min-width: 640px) {
  .testimonials-list {
    -webkit-column-count: 2;
       -moz-column-count: 2;
            column-count: 2;
    -webkit-column-gap: 15px;
       -moz-column-gap: 15px;
            column-gap: 15px;
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .testimonials-list {
    -webkit-column-count: 3;
       -moz-column-count: 3;
            column-count: 3;
  }
}
@media screen and (min-width: 1400px) {
  .testimonials-list {
    -webkit-column-count: 4;
       -moz-column-count: 4;
            column-count: 4;
  }
}

.testimoniallist-item {
  border: 1px solid #e1e1e2;
  padding: 30px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-column-break-inside: avoid;
     -moz-column-break-inside: avoid;
          break-inside: avoid;
  margin-bottom: 15px;
}
.testimoniallist-item i {
  font-size: 1.875em;
  line-height: 1em;
  margin-bottom: 10px;
  font-weight: 700;
  color: #078844;
}
.testimoniallist-item p {
  margin-bottom: 20px;
  font-size: 1.0625em;
  line-height: 1.7647058824em;
}
.testimoniallist-item strong {
  font-size: 1em;
  line-height: 1.25em;
  font-family: "Radio Canada Big", sans-serif;
  letter-spacing: 0.6px;
  color: #0f5b6f;
  text-transform: uppercase;
}
.testimoniallist-item .companyname {
  font-size: 0.875em;
  line-height: 2.1428571429em;
  display: block;
  opacity: 0.8;
}

.testimonials {
  position: relative;
  z-index: 3;
}
@media only screen and (min-width: 768px) {
  .col-container .testimonials {
    width: calc(50% - 25px);
    -ms-flex-preferred-size: calc(50% - 25px);
        flex-basis: calc(50% - 25px);
  }
}
@media screen and (min-width: 1400px) {
  .col-container .testimonials {
    width: calc(50% - 50px);
    -ms-flex-preferred-size: calc(50% - 50px);
        flex-basis: calc(50% - 50px);
  }
}
.testimonials .owl-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.testimonials .owl-stage, .testimonials .owl-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.testimonials .testimonial-item {
  padding: 2px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  max-width: 900px;
  margin: auto;
}
.image-background .testimonials .testimonial-item {
  color: white;
}
.col-container .testimonials .testimonial-item {
  text-align: left;
}
.testimonials .testimonial-item .testimonial-body {
  position: relative;
}
.testimonials .testimonial-item .testimonial-body p {
  margin-bottom: 25px;
  font-size: 1.25em;
  line-height: 1.9em;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .testimonials .testimonial-item .testimonial-body p {
    font-size: 1.875em;
    line-height: 1.6em;
  }
}
.image-background .testimonials .testimonial-item .testimonial-body p {
  color: white;
}
.testimonials .testimonial-item strong {
  font-size: 1.125em;
  line-height: 1.6666666667em;
  font-family: "Radio Canada Big", sans-serif;
  letter-spacing: 0.6px;
  color: #0f5b6f;
  text-transform: uppercase;
}
.image-background .testimonials .testimonial-item strong {
  color: white;
}
.testimonials .testimonial-item .companyname {
  font-size: 0.9375em;
  line-height: 2em;
  display: inline-block;
}
.col-container .testimonials .testimonial-item .companyname {
  margin-top: 4px;
  display: block;
}
.testimonials .testimonial-item .companyname:before {
  content: " - ";
  display: inline;
}
.col-container .testimonials .testimonial-item .companyname:before {
  display: none;
}
.testimonials.arrows {
  padding-left: 0;
  padding-right: 0;
}
.testimonials.arrows .owl-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: auto;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.col-container .testimonials.arrows .owl-nav {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.testimonials.arrows .owl-nav .owl-prev, .testimonials.arrows .owl-nav .owl-next {
  position: relative;
  top: auto;
  left: auto;
  right: 0;
  line-height: 55px;
  width: 55px;
  height: 55px;
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
}
.testimonials.arrows .slide-num {
  margin: 0 20px;
  color: #078844;
  font-size: 1.25em;
  line-height: 1em;
}
.image-background .testimonials.arrows .slide-num {
  color: white;
}

.image-left-text-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
}
.image-left-text-right .image {
  width: 100%;
  position: relative;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .image-left-text-right .image {
    width: calc(50% - 0px);
    -ms-flex-preferred-size: calc(50% - 0px);
        flex-basis: calc(50% - 0px);
  }
}
.image-left-text-right .image img {
  width: 100%;
  height: auto;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .image-left-text-right .image img {
    height: 100%;
    position: absolute;
    -o-object-fit: cover;
       object-fit: cover;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }
}
.image-left-text-right .text {
  padding: 20px;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .image-left-text-right .text {
    width: calc(50% - 0px);
    -ms-flex-preferred-size: calc(50% - 0px);
        flex-basis: calc(50% - 0px);
    padding: 50px;
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .image-left-text-right .text {
    padding: 60px 80px;
  }
}
@media screen and (min-width: 1520px) {
  .image-left-text-right .text {
    padding-left: calc((100% - 1460px) / 2);
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .image-left-text-right.large-padding .text {
    padding-top: 90px;
    padding-bottom: 90px;
  }
}
@media screen and (min-width: 1520px) {
  .image-left-text-right.image-position-left .text {
    padding-left: 80px;
    padding-right: calc((100% - 1460px) / 2);
  }
}

.slideshow.arrows, .image-slideshow.arrows, .main-image.arrows {
  padding: 0;
}
.row .slideshow.arrows, .row .image-slideshow.arrows, .row .main-image.arrows {
  margin: 0 -20px;
  width: calc(100% + 40px);
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .row .slideshow.arrows, .row .image-slideshow.arrows, .row .main-image.arrows {
    margin: 0 -30px;
    width: calc(100% + 60px);
  }
}
@media screen and (min-width: 1400px) {
  .row .slideshow.arrows, .row .image-slideshow.arrows, .row .main-image.arrows {
    margin: 0;
    width: 100%;
  }
}
.slideshow.arrows .owl-nav .owl-prev, .image-slideshow.arrows .owl-nav .owl-prev, .main-image.arrows .owl-nav .owl-prev {
  left: 0;
}
.slideshow.arrows .owl-nav .owl-next, .image-slideshow.arrows .owl-nav .owl-next, .main-image.arrows .owl-nav .owl-next {
  right: 0;
}
@media only screen and (min-width: 768px) {
  .slideshow.arrows.two-col, .image-slideshow.arrows.two-col, .main-image.arrows.two-col {
    margin: 0;
    width: calc(50% - 25px);
    -ms-flex-preferred-size: calc(50% - 25px);
        flex-basis: calc(50% - 25px);
  }
}
@media screen and (min-width: 1400px) {
  .slideshow.arrows.two-col, .image-slideshow.arrows.two-col, .main-image.arrows.two-col {
    width: calc(50% - 50px);
    -ms-flex-preferred-size: calc(50% - 50px);
        flex-basis: calc(50% - 50px);
  }
}
.slideshow .slide-num, .image-slideshow .slide-num, .main-image .slide-num {
  position: absolute;
  bottom: 10px;
  right: 10px;
  z-index: 4;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 6px 10px;
  font-size: 0.875em;
  line-height: 1em;
}

.slideshow img {
  height: 100%;
  width: 100%;
  position: absolute;
  inset: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
.slideshow .slideshow-item {
  position: relative;
  width: 100%;
}
.slideshow .slideshow-item:before {
  padding-top: 90%;
  display: block;
  content: "";
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .slideshow .slideshow-item:before {
    padding-top: 35%;
  }
  .row .slideshow .slideshow-item:before {
    padding-top: 45%;
  }
}
.slideshow h3 {
  position: absolute;
  top: 50%;
  left: 50%;
  text-align: center;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  padding: 0 20px;
  z-index: 5;
  color: white;
  font-size: 2.1875em;
  line-height: 1.2857142857em;
  margin-bottom: 25px;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .slideshow h3 {
    font-size: 2.5em;
    line-height: 1.25em;
  }
}

.before-and-after .one-third-col {
  position: relative;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .before-and-after .one-third-col {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.image-position-left .image {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
.image-position-left .text {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

.col-container.image-full {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.col-container.image-full .col {
  position: relative;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .col-container.image-full .col {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.col-container.image-full img.background-image {
  width: 100%;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (min-width: 768px) {
  .col-container.image-full img.background-image {
    position: absolute;
    inset: 0;
    width: 100%;
    margin: 0;
    z-index: 1;
    height: 100%;
  }
}

.image-slideshow.arrows .owl-nav .owl-next {
  right: 2px;
}
.image-slideshow .owl-stage-outer {
  height: 100%;
}
.image-slideshow .owl-stage, .image-slideshow .owl-item, .image-slideshow .owl-stage-outer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.image-slideshow img.background-image {
  opacity: 0;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.image-slideshow .active img.background-image {
  opacity: 1;
}

.image-text-box .owl-item {
  position: relative;
  overflow: hidden;
}
.image-text-box .col.image {
  padding-top: 0;
  padding-bottom: 0;
}
.image-text-box .image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.image-text-box .image.two-images {
  position: relative;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 400px;
}
@media only screen and (min-width: 768px) {
  .image-text-box .image.two-images {
    height: auto;
  }
}
.image-text-box .image.two-images img.background-image {
  width: calc(50% - 10px);
  position: absolute;
}
.image-text-box .image.two-images img.background-image:last-child {
  left: auto;
  right: 0;
}
.image-text-box .image.three-images {
  height: 400px;
}
@media only screen and (min-width: 768px) {
  .image-text-box .image.three-images {
    height: auto;
  }
}
.image-text-box .image.three-images img.background-image {
  width: calc(33.33% - 10px);
  position: absolute;
}
.image-text-box .image.three-images img.background-image:first-child + img.background-image {
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  right: auto;
}
.image-text-box .image.three-images img.background-image:last-child {
  left: auto;
  right: 0;
}

@media only screen and (min-width: 768px) {
  .sticky-image.col-container .one-third-col {
    position: sticky;
    top: 120px;
    height: calc(100vh - 130px);
    -ms-flex-item-align: start;
        align-self: flex-start;
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .sticky-image.col-container .one-third-col {
    top: 120px;
    height: calc(100vh - 150px);
  }
}

.package-list.col-container {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
}

.flex-content .price-box {
  border: 1px solid #e1e1e2;
  padding: 30px 30px 90px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
  max-width: 350px;
  position: relative;
}
.flex-content .price-box h3 {
  margin: 0 0 15px;
}
.flex-content .price-box p {
  margin: 0 0 15px;
}
.flex-content .price-box .price {
  color: #0f5b6f;
  margin: 0 0 15px;
}
.flex-content .price-box .price .suffix {
  display: inline-block;
  font-size: 0.625em;
  line-height: 1em;
}
.flex-content .price-box .btn, .flex-content .price-box form input[type=submit], form .flex-content .price-box input[type=submit],
.flex-content .price-box form input[type=button],
form .flex-content .price-box input[type=button] {
  width: calc(100% - 60px);
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 30px;
}
.flex-content .price-box ul {
  border-top: 1px solid #e1e1e2;
  padding: 20px;
  margin: 0;
}
.flex-content .price-box.highlight {
  background: #078844;
  border-color: #078844;
}
@media only screen and (min-width: 768px) {
  .flex-content .price-box.highlight {
    margin: -20px 0 0;
  }
}
.flex-content .price-box.highlight p, .flex-content .price-box.highlight ul li, .flex-content .price-box.highlight h3 {
  color: white;
}
.flex-content .price-box.highlight .btn:hover, .flex-content .price-box.highlight form input[type=submit]:hover, form .flex-content .price-box.highlight input[type=submit]:hover,
.flex-content .price-box.highlight form input[type=button]:hover,
form .flex-content .price-box.highlight input[type=button]:hover {
  color: #078844;
  background: white;
}

.accordian {
  margin: 20px 0 0;
}
.accordian .accordian-group {
  margin-top: 20px;
  border: 1px solid #e1e1e2;
}
.accordian .accordian-group:first-child {
  margin-top: 0;
}
.accordian .accordian-group .text {
  padding: 0 25px 0;
  max-height: 0px;
  overflow: hidden;
  -webkit-transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
  transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
}
.accordian .accordian-group .text p:last-child {
  margin-bottom: 30px;
}
.accordian .accordian-group h3.active + .text {
  max-height: 5000px;
  -webkit-transition: max-height 1s ease-in-out;
  transition: max-height 1s ease-in-out;
}
.accordian h3.title {
  background: white;
  padding: 20px 25px;
  font-size: 1em;
  line-height: 1.1875em;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  font-family: "Poppins", sans-serif;
  color: #078844;
  font-weight: 400;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  cursor: pointer;
  z-index: 5;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0;
}
.accordian h3.title:after {
  position: absolute;
  top: 50%;
  right: 20px;
  display: block;
  font-family: "Font Awesome 6 Pro";
  content: "\f107";
  color: #0f5b6f;
  font-size: 16px;
  line-height: 16px;
  z-index: 2;
  font-weight: 400;
  -webkit-transform: translateY(-50%) rotate(0);
      -ms-transform: translateY(-50%) rotate(0);
          transform: translateY(-50%) rotate(0);
  -webkit-transform-origin: center;
      -ms-transform-origin: center;
          transform-origin: center;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.accordian h3.title i {
  color: #0f5b6f;
  margin-right: 10px;
  width: 30px;
  font-size: 1.375em;
  line-height: 1em;
}
.accordian h3.title.active {
  margin-bottom: 15px;
}
.accordian h3.title.active:after {
  -webkit-transform: translateY(-50%) rotate(180deg);
      -ms-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}
.accordian h3.title:first-child {
  margin-top: 0;
}

.accordion-images .accordion-nav {
  display: none;
}
@media only screen and (min-width: 768px) {
  .accordion-images .accordion-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column wrap;
            flex-flow: column wrap;
    width: 25%;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 25px 0;
  }
  .accordion-images .accordion-nav .accordionnav-item:last-child {
    margin-bottom: 0;
  }
}
.accordion-images .accordion-box {
  width: 100%;
  display: block;
}
@media only screen and (min-width: 768px) {
  .accordion-images .accordion-box {
    width: 75%;
  }
}
.accordion-images .accordionbox-item {
  position: relative;
  margin: 0;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  max-height: 0px;
  overflow: hidden;
  -webkit-transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
  transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
}
@media only screen and (min-width: 768px) {
  .accordion-images .accordionbox-item {
    display: none;
    height: 100%;
    z-index: 4;
    max-height: none;
    padding: 50px;
    background: #f2f8f4;
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .accordion-images .accordionbox-item {
    padding: 50px 100px 50px 0;
    min-height: 600px;
  }
}
.accordion-images .accordionbox-item.mobile-active {
  max-height: 5000px;
  -webkit-transition: max-height 1s ease-in-out;
  transition: max-height 1s ease-in-out;
}
@media only screen and (min-width: 768px) {
  .accordion-images .accordionbox-item.active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.accordion-images .accordionbox-item .background-image {
  display: none;
}
@media only screen and (min-width: 768px) {
  .accordion-images .accordionbox-item .background-image {
    display: block;
    position: absolute;
    inset: 0;
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.accordion-images .accordionbox-item .box {
  background: white;
  position: relative;
  z-index: 2;
  padding: 30px;
  max-width: 590px;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  border: 1px solid #e1e1e2;
  border-top: 0;
}
@media only screen and (min-width: 768px) {
  .accordion-images .accordionbox-item .box {
    margin: auto;
    border: 0;
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .accordion-images .accordionbox-item .box {
    margin-left: auto;
    margin-right: 0;
    padding: 50px;
  }
}
.accordion-images .accordionbox-item .box p:last-child {
  margin: 0;
}
.accordion-images .accordionbox-item .box h3 {
  display: none;
}
@media only screen and (min-width: 768px) {
  .accordion-images .accordionbox-item .box h3 {
    display: block;
    margin-bottom: 20px;
  }
}
.accordion-images .accordionnav-item, .accordion-images .mobile-title {
  background: white;
  padding: 20px 40px 20px 25px;
  font-size: 1em;
  line-height: 1.1875em;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  margin: 0 0 15px;
  border: 1px solid #e1e1e2;
  color: #078844;
  font-weight: 400;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  cursor: pointer;
  z-index: 5;
  letter-spacing: 1px;
  text-transform: uppercase;
}
@media only screen and (min-width: 768px) {
  .accordion-images .accordionnav-item, .accordion-images .mobile-title {
    width: calc(100% - 20px);
  }
}
.accordion-images .accordionnav-item span, .accordion-images .mobile-title span {
  display: inline-block;
  position: relative;
  z-index: 2;
}
.accordion-images .accordionnav-item:after, .accordion-images .mobile-title:after {
  position: absolute;
  top: 50%;
  right: 20px;
  display: block;
  font-family: "Font Awesome 6 Pro";
  content: "\f107";
  color: #0f5b6f;
  font-size: 16px;
  line-height: 16px;
  z-index: 2;
  font-weight: 400;
  -webkit-transform: translateY(-50%) rotate(0);
      -ms-transform: translateY(-50%) rotate(0);
          transform: translateY(-50%) rotate(0);
  -webkit-transform-origin: center;
      -ms-transform-origin: center;
          transform-origin: center;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media only screen and (min-width: 768px) {
  .accordion-images .accordionnav-item:after, .accordion-images .mobile-title:after {
    content: "\f105";
  }
}
.accordion-images .accordionnav-item:before, .accordion-images .mobile-title:before {
  top: 0;
  left: 0;
  bottom: 0;
  width: 0;
  position: absolute;
  display: block;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  background: #078844;
  content: "";
  z-index: 1;
}
@media only screen and (min-width: 768px) {
  .accordion-images .accordionnav-item:not(.active):hover, .accordion-images .mobile-title:not(.active):hover {
    color: white;
  }
  .accordion-images .accordionnav-item:not(.active):hover:before, .accordion-images .mobile-title:not(.active):hover:before {
    width: 100%;
  }
}
.accordion-images .accordionnav-item.active, .accordion-images .mobile-title.active {
  background: #078844;
  color: white;
  border-color: #078844;
  margin-right: -38px;
  width: calc(100% + 38px);
}
.accordion-images .mobile-title {
  margin: 20px 0 0;
}
@media only screen and (min-width: 768px) {
  .accordion-images .mobile-title {
    display: none;
  }
}
.accordion-images .mobile-title.mobile-active:after {
  -webkit-transform: translateY(-50%) rotate(180deg);
      -ms-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}
.download-row {
  border-bottom: 1px solid #e1e1e2;
  background: 0;
  padding: 25px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.download-row .download-filesize {
  font-weight: 600;
  color: #0f5b6f;
  margin-right: 0;
  margin-left: auto;
  padding-right: 20px;
}
.download-row a {
  background: #078844;
  font-weight: 600;
  padding: 10px 15px;
  font-size: 0.875em;
  line-height: 1.3571428571em;
  letter-spacing: 1px;
  color: white;
  display: inline-block;
  text-align: center;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.download-row a i {
  margin-left: 5px;
}
.download-row a:hover {
  background: #0f5b6f;
  color: white;
}

.video-box .open-youtube {
  font-size: 0.8125em;
  line-height: 1.0769230769em;
  color: white;
  background: #FF0000;
  font-weight: 600;
  padding: 10px 15px;
}
.video-box .open-youtube:hover {
  background: #078844;
}
.video-box .open-youtube i {
  margin-right: 8px;
}
.video-box .video-item {
  border: 1px solid #e1e1e2;
  border-radius: 0;
  padding: 15px 15px 25px;
  margin-bottom: 20px;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .video-box .video-item {
    margin-bottom: 40px;
  }
}
.video-box .video-item .video-container {
  margin: 0 0 20px;
  position: relative;
  width: 100%;
}
.video-box .video-item .video-container:before {
  content: "";
  padding-bottom: 56.25%;
  display: block;
}
.video-box .video-item .video-container iframe, .video-box .video-item .video-container video, .video-box .video-item .video-container embed, .video-box .video-item .video-container object {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.video-box .video-item h3 {
  margin: 0;
  color: #078844;
  font-size: 1.25em;
  line-height: 1.5em;
}
.video-box .video-text {
  padding: 0 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .video-box .two-col.col {
    -ms-flex-preferred-size: calc(50% - 20px);
        flex-basis: calc(50% - 20px);
    width: calc(50% - 20px);
  }
}
@media screen and (min-width: 1400px) {
  .video-box .two-col.col {
    -ms-flex-preferred-size: calc(50% - 20px);
        flex-basis: calc(50% - 20px);
    width: calc(50% - 20px);
  }
}

.home-text p {
  margin-left: auto;
  margin-right: auto;
  max-width: 860px;
}

.recent-news-holder {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.recent-news-holder .recent-news-item {
  border: 1px solid #e1e1e2;
}
.recent-news-holder .recent-news-item .featured-image {
  position: relative;
  overflow: hidden;
}
.recent-news-holder .recent-news-item .featured-image:before {
  display: block;
  padding-top: 70%;
  content: "";
}
.recent-news-holder .recent-news-item .featured-image img {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  widtH: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  -o-object-fit: cover;
     object-fit: cover;
}
.recent-news-holder .recent-news-item .featured-image:after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #078844;
  opacity: 0.4;
  z-index: 3;
  display: block;
  content: "";
}
.recent-news-holder .recent-news-item .featured-image h4 {
  position: absolute;
  top: 50%;
  left: 50%;
  padding: 0 20px;
  margin: 0;
  text-align: center;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 4;
  width: calc(100% - 40px);
  font-weight: 600;
  font-size: 1.75em;
  line-height: 1.4285714286em;
}
.recent-news-holder .recent-news-item .featured-image h4 a {
  color: white !important;
}
.recent-news-holder .recent-news-item .featured-image h4 a:hover {
  text-decoration: none;
}
.recent-news-holder .recent-news-item .recent-news-body {
  padding: 30px;
}
.recent-news-holder .recent-news-item:hover .featured-image img {
  -webkit-transform: scale(1.15);
      -ms-transform: scale(1.15);
          transform: scale(1.15);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

iframe[src*="https://www.google.com/maps"], iframe[src*="https://www.youtube.com/embed/"] {
  width: 100%;
  display: block;
}

form label {
  display: block;
  font-family: "Radio Canada Big", sans-serif;
  color: #078844;
  font-size: 0.9375em;
  line-height: 1em;
  font-weight: 600;
  color: #078844;
  text-transform: uppercase;
}
form input[type=text], form input[type=email], form input[type=url], form input[type=tel], form input[type=search], form input[type=date], form input[type=number], form input[type=password], form textarea, form select {
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
  text-shadow: none;
  border: 1px solid #d4d4d5;
  border-radius: 0;
  padding: 13px 15px;
  font-size: 1em;
  line-height: 1.25em;
  width: 100%;
  min-height: 48px;
  color: #465568;
  background: white;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  -webkit-box-shadow: 3px 4px 5px 0px rgba(0, 0, 0, 0.03);
          box-shadow: 3px 4px 5px 0px rgba(0, 0, 0, 0.03);
  width: 100%;
  margin: 6px 0 25px;
}
form input[type=text]:hover, form input[type=email]:hover, form input[type=url]:hover, form input[type=tel]:hover, form input[type=search]:hover, form input[type=date]:hover, form input[type=number]:hover, form input[type=password]:hover, form textarea:hover, form select:hover {
  outline: none;
}
form input[type=text]:focus, form input[type=email]:focus, form input[type=url]:focus, form input[type=tel]:focus, form input[type=search]:focus, form input[type=date]:focus, form input[type=number]:focus, form input[type=password]:focus, form textarea:focus, form select:focus {
  outline: none;
  text-shadow: none;
  border-color: #adadb0;
}
form input[type=text]:-webkit-autofill, form input[type=email]:-webkit-autofill, form input[type=url]:-webkit-autofill, form input[type=tel]:-webkit-autofill, form input[type=search]:-webkit-autofill, form input[type=date]:-webkit-autofill, form input[type=number]:-webkit-autofill, form input[type=password]:-webkit-autofill, form textarea:-webkit-autofill, form select:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 30px white inset;
  -webkit-text-fill-color: #888888 !important;
}
form textarea {
  max-width: 100%;
  height: 200px;
}
form input[type=submit],
form input[type=button] {
  display: block;
}
form .wpcf7-form-control-wrap {
  display: block;
  position: relative;
}
form .wpcf7-form-control-wrap input[type=email], form .wpcf7-form-control-wrap input[type=tel], form .wpcf7-form-control-wrap input[type=text], form .wpcf7-form-control-wrap select, form .wpcf7-form-control-wrap textarea {
  padding-left: 55px;
}
form .wpcf7-form-control-wrap input[type=email].wpcf7-not-valid, form .wpcf7-form-control-wrap input[type=tel].wpcf7-not-valid, form .wpcf7-form-control-wrap input[type=text].wpcf7-not-valid, form .wpcf7-form-control-wrap select.wpcf7-not-valid, form .wpcf7-form-control-wrap textarea.wpcf7-not-valid {
  border-color: #e74c3c;
}
form .wpcf7-form-control-wrap:before {
  content: "\f0c1";
  font-family: "Font Awesome 6 Pro";
  position: absolute;
  left: 0;
  top: 15px;
  color: #0f5b6f;
  font-weight: 300;
  width: 45px;
  text-align: center;
  border-right: 1px solid #e1e1e2;
  font-size: 0.9375em;
  line-height: 1.6666666667em;
}
form .wpcf7-form-control-wrap[data-name=your-email]:before {
  content: "\f0e0";
}
form .wpcf7-form-control-wrap[data-name=phone]:before {
  content: "\f095";
}
form .wpcf7-form-control-wrap[data-name=your-name]:before {
  content: "\f007";
}
form .wpcf7-form-control-wrap[data-name=your-subject]:before {
  content: "\f05a";
}
form .wpcf7-form-control-wrap[data-name=your-message]:before {
  content: "\f086";
}

@media only screen and (min-width: 960px) and (orientation: landscape) {
  .wpcf7-form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.wpcf7-form .textarea {
  width: calc(100% - 0px);
  -ms-flex-preferred-size: calc(100% - 0px);
      flex-basis: calc(100% - 0px);
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .wpcf7-form .two-col {
    width: calc(50% - 20px);
    -ms-flex-preferred-size: calc(50% - 20px);
        flex-basis: calc(50% - 20px);
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .wpcf7-form .three-col {
    width: calc(33.33% - 20px);
    -ms-flex-preferred-size: calc(33.33% - 20px);
        flex-basis: calc(33.33% - 20px);
  }
}
.wpcf7-form .input {
  width: 100%;
  text-align: left;
}
.wpcf7-form .wpcf7-submit {
  width: 100%;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .wpcf7-form .wpcf7-submit {
    width: auto;
    min-width: 250px;
  }
}

.email-heading, .contact-form h2, .getin-touch.col-container h2 {
  margin-bottom: 25px;
}
.email-heading:before, .contact-form h2:before, .getin-touch.col-container h2:before {
  color: #0f5b6f;
  display: inline-block;
  font-family: "Font Awesome 6 Pro";
  margin-right: 13px;
  content: "\e16f";
  font-weight: 100;
}

.contact-heading {
  margin-bottom: 10px;
  padding-left: 50px;
}
.contact-heading:before {
  font-size: 24px;
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  font-weight: 300;
  color: #0f5b6f;
  font-family: "Font Awesome 6 Pro";
  text-align: center;
}
.contact-heading.tel:before {
  content: "\f095";
}
.contact-heading.address:before {
  content: "\f3c5";
}
.contact-heading.mobile:before {
  content: "\f10b";
}
.contact-heading.email:before {
  content: "\f0e0";
}
.contact-heading.email:before {
  content: "\f0e0";
}
.contact-heading.socials:before {
  content: "\f086";
}
.contact-heading.opening:before {
  content: "\f017";
}

.col .contact-heading:last-of-type + p {
  border-bottom: 0;
}

.contact-heading + .socials, .contact-heading + .opening-hours {
  padding: 0 0 30px 50px;
  margin-bottom: 30px;
  border-bottom: 1px solid #e1e1e2;
}

.contact-heading + p {
  padding: 0 0 30px 50px;
  border-bottom: 1px solid #e1e1e2;
}
.contact-heading + p a {
  color: #465568;
  font-weight: 300;
  position: relative;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .contact-heading + p a:before {
    width: 0;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    display: block;
    background: #0f5b6f;
    height: 1px;
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .contact-heading + p a:hover:before {
    width: 100%;
  }
}

.contact-form {
  text-align: center;
}
.contact-form h2 + p {
  margin-bottom: 40px;
}
.contact-form .wpcf7 .wpcf7-form {
  max-width: 990px;
  margin-left: auto;
  margin-right: auto;
}
.contact-form .wpcf7 .wpcf7-submit {
  margin-left: auto;
  margin-right: auto;
}

.wpcf7-not-valid-tip {
  margin: -15px 0 10px !important;
  font-size: 14px !important;
  line-height: 14px !important;
}

.ajax-loader {
  display: none !important;
}

.wpcf7-spinner {
  display: none;
}

.wpcf7-response-output {
  padding: 15px !important;
  font-size: 14px;
  line-height: 14px;
  text-align: center;
  width: 100%;
  margin: 25px 0 0 !important;
  background: #f2f8f4;
  color: #078844;
  font-weight: 700;
  border: 0 !important;
}
form.invalid .wpcf7-response-output, form.unaccepted .wpcf7-response-output, form.payment-required .wpcf7-response-output {
  background: #e74c3c;
  color: white;
}
form.sent .wpcf7-response-output {
  background: #2ecc71;
  color: white;
}

.wpcf7-validation-errors {
  border-color: #e74c3c !important;
}

.leftsidebar [class*=widget_] {
  padding: 20px 0 0;
  margin: 0 0 30px;
}
.leftsidebar [class*=widget_] h3 {
  margin: 0 0 20px;
  padding-bottom: 15px;
  font-family: "Radio Canada Big", sans-serif;
  color: #078844;
  letter-spacing: 0;
  font-weight: 700;
  text-transform: none;
  font-size: 1.1875em;
  line-height: 1em;
  border-bottom: 1px solid #e1e1e2;
}
.leftsidebar [class*=widget_] ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.leftsidebar [class*=widget_] ul li {
  padding: 0;
  margin: 0 0 5px;
}
.leftsidebar [class*=widget_] ul li .post-date {
  font-size: 0.875em;
  line-height: 1em;
  color: #078844;
  font-weight: 700;
  display: block;
  text-transform: uppercase;
  margin-top: 2px;
}
.leftsidebar [class*=widget_] ul li a {
  color: #465568;
  font-weight: 300;
}
.leftsidebar [class*=widget_] ul li a:hover {
  color: #078844;
}
.leftsidebar [class*=widget_] ul li a[aria-current] {
  color: #078844;
  font-weight: 700;
}
.pagebody .leftsidebar [class*=widget_] ul li:before {
  display: none;
}

.arrows {
  padding: 0 10px;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .arrows {
    padding: 0 80px;
  }
}
.arrows.gallery-outer {
  padding: 0;
}
.arrows .owl-stage {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.arrows .owl-stage .owl-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.arrows .owl-nav {
  overflow: hidden;
}
.arrows .owl-nav .owl-prev, .arrows .owl-nav .owl-next {
  background: rgba(15, 91, 111, 0.8);
  line-height: 80px;
  width: 50px;
  height: 80px;
  font-size: 24px;
  cursor: pointer;
  padding: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  text-align: center;
  color: white;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .arrows .owl-nav .owl-prev, .arrows .owl-nav .owl-next {
    line-height: 55px;
    width: 55px;
    height: 55px;
    background: #0f5b6f;
  }
}
.arrows .owl-nav .owl-prev.disabled, .arrows .owl-nav .owl-next.disabled {
  opacity: 0.7;
  cursor: default;
}
.arrows .owl-nav .owl-prev:hover, .arrows .owl-nav .owl-next:hover {
  background: #078844;
  color: white;
}
.arrows .owl-nav .owl-prev {
  left: -20px;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .arrows .owl-nav .owl-prev {
    left: 0;
  }
}
.arrows .owl-nav .owl-next {
  right: -20px;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .arrows .owl-nav .owl-next {
    right: 0;
  }
}
.arrows.gallery-outer {
  padding: 0;
}
.arrows.gallery-outer .owl-prev {
  left: 0;
}
.arrows.gallery-outer .owl-next {
  right: 0;
}

.project-holder {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  gap: 25px;
}

.project-image {
  background: #078844;
  position: relative;
  overflow: hidden;
  display: block;
}
.project-image:before {
  padding-top: 140%;
  display: block;
  content: "";
}
@media only screen and (min-width: 480px) {
  .project-image:before {
    padding-top: 180%;
  }
}
@media screen and (min-width: 1400px) {
  .project-image:before {
    padding-top: 140%;
  }
}
.project-image:after {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(black));
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, black 100%);
  height: 80%;
  display: block;
  content: "";
  bottom: 0;
  position: absolute;
  left: 0;
  z-index: 2;
  right: 0;
  opacity: 0.6;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .project-image:after {
    height: 60%;
  }
}
.project-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  position: absolute;
  inset: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

.project-text {
  padding: 20px;
  text-align: left;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 3;
  padding: 30px;
  right: 0;
  pointer-events: none;
}
.project-text h2 {
  font-size: 1.875em;
  line-height: 1.2666666667em;
  margin-bottom: 15px;
  color: white;
}
.project-text p {
  color: white;
  margin-bottom: 20px;
}

.icon-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.icon-link span {
  width: 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  overflow: hidden;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: white;
  opacity: 0;
  font-weight: 400;
  font-size: 1em;
  line-height: 1em;
  text-transform: uppercase;
  white-space: nowrap;
  font-family: "Radio Canada Big", sans-serif;
  letter-spacing: 0.3px;
}
.icon-link i {
  width: 50px;
  height: 50px;
  background: white;
  font-size: 1.5em;
  line-height: 2.0833333333em;
  color: #078844;
  text-align: center;
}

.project-item {
  position: relative;
  width: 100%;
}
.owl-carousel .project-item {
  margin-bottom: 0;
  width: calc(100% - 0px);
  -ms-flex-preferred-size: calc(100% - 0px);
      flex-basis: calc(100% - 0px);
}
@media only screen and (min-width: 480px) {
  .project-item {
    width: calc(50% - 13px);
  }
}
@media only screen and (min-width: 768px) {
  .project-item {
    width: calc(33.33% - 17px);
  }
}
@media screen and (min-width: 1400px) {
  .project-item {
    width: calc(25% - 18.75px);
  }
}
@media only screen and (min-width: 640px) {
  .project-item:hover img {
    -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1);
  }
}
.project-item:hover .icon-link span {
  width: 120px;
  opacity: 1;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.project-category {
  border: 1px solid #e1e1e2;
  padding: 30px;
  display: block;
}
.project-category h2 {
  font-size: 1.75em;
  line-height: 1.0714285714em;
  margin-bottom: 25px;
}
.project-category .icon-link span {
  color: #078844;
}
.project-category .icon-link i {
  background: #0f5b6f;
  color: white;
}
.project-category:hover .icon-link span {
  width: 120px;
  opacity: 1;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

@media only screen and (min-width: 640px) {
  .project-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
  }
}
.project-info label {
  font-family: "Radio Canada Big", sans-serif;
  padding-right: 15px;
  color: #078844;
}
@media only screen and (min-width: 640px) {
  .project-info label {
    width: 140px;
  }
}
.project-info div.info {
  margin-bottom: 10px;
}
@media only screen and (min-width: 640px) {
  .project-info div.info {
    width: calc(100% - 140px);
  }
}

@media only screen and (min-width: 960px) and (orientation: landscape) {
  .sticky-box {
    position: sticky;
    top: 90px;
  }
}

.term-description {
  border-bottom: 1px solid #e1e1e2;
  margin-bottom: 30px;
  padding-bottom: 30px;
}

.blog-holder.col-container {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 30px;
}
@media only screen and (min-width: 768px) {
  .blog-holder.col-container {
    gap: 37px;
  }
}
@media screen and (min-width: 1400px) {
  .blog-holder.col-container {
    gap: 40px 45px;
  }
}

.list-item {
  width: 100%;
  padding: 1px 1px 60px;
  background: white;
  position: relative;
}
@media only screen and (min-width: 640px) {
  .list-item {
    width: calc(50% - 15px);
    -ms-flex-preferred-size: calc(50% - 15px);
        flex-basis: calc(50% - 15px);
  }
}
@media only screen and (min-width: 768px) {
  .list-item {
    width: calc(33.33% - 25px);
    -ms-flex-preferred-size: calc(33.33% - 25px);
        flex-basis: calc(33.33% - 25px);
  }
}
@media screen and (min-width: 1400px) {
  .list-item {
    width: calc(33.33% - 30px);
    -ms-flex-preferred-size: calc(33.33% - 30px);
        flex-basis: calc(33.33% - 30px);
  }
}
.owl-carousel .list-item {
  width: calc(100% - 0px);
  -ms-flex-preferred-size: calc(100% - 0px);
      flex-basis: calc(100% - 0px);
  margin: 2px;
}
.list-item.sticky:before {
  font-family: "Font Awesome 6 Pro";
  content: "\f276";
  position: absolute;
  top: 15px;
  z-index: 2;
  color: white;
  font-weight: 400;
  left: 15px;
  font-size: 1.125em;
  line-height: 1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #078844;
  width: 40px;
  height: 40px;
}
.list-item .post-image a {
  position: relative;
  background: #f2f8f4;
  overflow: hidden;
  display: block;
  z-index: 1;
  margin-bottom: 20px;
}
.list-item .post-image a:before {
  padding-top: 75%;
  content: "";
  display: block;
}
.list-item .post-image img {
  inset: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .list-item .post-image img {
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1);
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
}
.list-item .post-text {
  position: relative;
  background: white;
  margin: 0;
  z-index: 2;
}
.list-item .post-text h2 {
  margin-bottom: 15px;
  font-size: 1.5em;
  line-height: 1.1666666667em;
}
.list-item .post-text p {
  font-size: 0.9375em;
  line-height: 1.8666666667em;
}
.list-item .post-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-top: 1px solid #e1e1e2;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 15px;
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.list-item .time {
  font-size: 0.875em;
  line-height: 1em;
  opacity: 0.8;
}
.list-item .btn, .list-item form input[type=submit], form .list-item input[type=submit],
.list-item form input[type=button],
form .list-item input[type=button] {
  padding: 8px 0;
  font-weight: 600;
  font-family: "Radio Canada Big", sans-serif;
  font-size: 0.9375em;
  line-height: 1em;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .list-item:hover .post-image img {
    -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1);
  }
}

.category-link {
  padding: 6px 8px;
  font-weight: 600;
  font-family: "Radio Canada Big", sans-serif;
  font-size: 0.75em;
  line-height: 1em;
  color: #0f5b6f;
  border: 1px solid #0f5b6f;
  display: inline-block;
  text-transform: uppercase;
  margin: 0 5px 10px 0;
}
.category-link:hover {
  background: #0f5b6f;
  color: white;
}

.single-item .featured-image-holder {
  display: block;
  margin: 0 0 20px;
}
.single-item .featured-image-holder img {
  width: 100%;
  height: 350px;
  -o-object-fit: cover;
     object-fit: cover;
}
.single-item .post-meta {
  padding: 0 0 15px;
  margin-bottom: 20px;
  font-size: 0.875em;
  line-height: 1.2857142857em;
  color: #5b6e86;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: 1px solid #e1e1e2;
  width: 100%;
}
.single-item .post-meta.has-image {
  margin-bottom: 0;
}
.single-item .single-sharethis {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
}
.single-item .single-sharethis p {
  display: block;
  font-weight: 700;
  font-family: "Radio Canada Big", sans-serif;
  color: #078844;
  font-size: 1.25em;
  line-height: 1em;
}
@media only screen and (min-width: 768px) {
  .single-item .single-sharethis p {
    margin-bottom: 0;
    margin-right: 10px;
    display: inline-block;
  }
}
.single-item .single-sharethis .social-share {
  display: inline-block;
  margin-left: 5px;
  position: relative;
  text-align: center;
  color: #0f5b6f;
  padding: 10px 15px;
  background: white;
  -webkit-transition: 0.3 ease-in-out;
  transition: 0.3 ease-in-out;
}
.single-item .single-sharethis .social-share span {
  display: none;
}
.single-item .single-sharethis .social-share:hover {
  text-decoration: none;
  background: #f2f8f4;
  color: #078844;
}
.single-item .single-sharethis .social-share i {
  font-size: 16px;
  line-height: 16px;
  font-weight: 400;
}
.single-item .comments {
  margin: 0 0 30px;
}
.single-item .comments h3.comment-reply-title {
  margin: 0 0 20px;
}
.single-item .comments h3.comment-reply-title small {
  margin-left: 30px;
  font-size: 16px;
}
.single-item .comments .comment-body {
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.single-item .comments .comment-body p {
  width: 100%;
  margin-bottom: 15px;
}
.single-item .comments .reply {
  margin: 0;
}
.single-item .comments .comment-reply-link, .single-item .comments .comment-reply-login {
  color: #078844;
  padding: 8px 0;
  font-weight: 600;
  font-family: "Radio Canada Big", sans-serif;
  position: relative;
  font-size: 0.9375em;
  line-height: 1em;
}
.single-item .comments .comment-reply-link:before, .single-item .comments .comment-reply-login:before {
  content: "\f4b6";
  display: inline-block;
  font-family: "Font Awesome 6 Pro";
  margin-right: 10px;
  font-weight: 400;
  font-size: 0.875em;
  line-height: 1.2142857143em;
  color: #0f5b6f;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .single-item .comments .comment-reply-link:after, .single-item .comments .comment-reply-login:after {
    width: 0;
    display: block;
    background: #0f5b6f;
    height: 2px;
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
}
.single-item .comments .comment-reply-link:hover, .single-item .comments .comment-reply-login:hover {
  color: #078844;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .single-item .comments .comment-reply-link:hover:after, .single-item .comments .comment-reply-login:hover:after {
    width: 100%;
  }
}
.single-item .comments ul {
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}
.single-item .comments ul.children {
  padding: 10px 0 0 30px;
  margin: 0;
}
.single-item .comments ul li {
  margin-bottom: 20px;
  padding: 10px 0 10px 30px;
  border-left: 1px solid #e1e1e2;
}
.single-item .comments ul li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}
.single-item .comments ul li img, .single-item .comments ul li .says {
  display: none;
}
.single-item .comments ul li:before {
  display: none;
}
.single-item .comments ul li .comment-author {
  margin-bottom: 0;
}
.single-item .comments ul li .comment-author cite.fn {
  font-style: normal;
  color: #078844;
  font-weight: 700;
  margin-right: 15px;
}
.single-item .comments ul li .comment-author cite.fn a {
  color: #078844;
}
.single-item .comments ul li .comment-meta {
  margin-bottom: 10px;
  font-size: 0.875em;
  line-height: 1.2857142857em;
  color: #5b6e86;
}
.single-item .comments ul li .comment-meta a {
  color: #5b6e86;
  font-weight: 300;
}

.post-navigation .nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  margin: 0 0 30px;
  padding: 20px 0 0;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .post-navigation .nav-links {
    margin-bottom: 40px;
  }
}
.post-navigation .nav-previous, .post-navigation .nav-next {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
  max-width: 50%;
}
.post-navigation a {
  border: 1px solid #e1e1e2;
  display: block;
  padding: 12px 20px;
  font-size: 1.125em;
  line-height: 1.4444444444em;
  font-family: "Radio Canada Big", sans-serif;
  position: relative;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.post-navigation a i {
  position: absolute;
  top: 50%;
  color: #0f5b6f;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 20px;
  font-size: 20px;
}
.post-navigation a span {
  display: block;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 0.8em;
  color: #0f5b6f;
}
.post-navigation a:hover {
  background: #078844;
  color: white;
}
.post-navigation .nav-previous a {
  text-align: right;
}
.post-navigation .nav-previous a i {
  right: auto;
  left: 20px;
}

.pagination {
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 30px;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .pagination {
    margin-top: 50px;
  }
}
.pagination .page-numbers {
  padding: 8px 16px;
  border: 1px solid #e1e1e2;
  font-family: "Radio Canada Big", sans-serif;
  background: #078844;
  color: white;
  min-width: 44px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.pagination .page-numbers:not(:last-child) {
  margin-right: 15px;
}
.pagination .page-numbers:not(.current) {
  background: white;
  color: #0f5b6f;
}
.pagination .page-numbers:not(.current):hover {
  background: #078844;
  color: white;
}

.datatable {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #e1e1e2;
  margin: 0 0 35px;
}
.datatable colgroup, .datatable thead {
  display: none;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .datatable colgroup, .datatable thead {
    display: table-header-group;
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .datatable thead th {
    background: #078844;
    border: 0;
    padding: 15px;
    text-transform: uppercase;
    font-weight: 700;
    font-family: "Radio Canada Big", sans-serif;
    color: white;
    text-align: left;
    font-size: 1em;
    line-height: 1.75em;
    text-align: center;
  }
  .datatable thead th:first-child {
    text-align: left;
  }
}
.datatable ul {
  margin-bottom: 0;
}
.datatable tr {
  border-bottom: 1px solid #e1e1e2;
  display: block;
  padding-bottom: 10px;
  padding-top: 10px;
  position: relative;
  width: 100%;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .datatable tr {
    display: table-row;
    padding: 0;
  }
}
.datatable tr:after {
  width: 100%;
  height: 1px;
  clear: both;
  display: block;
  content: "";
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .datatable tr:after {
    display: none;
  }
}
.datatable tr:last-child {
  margin: 0;
  border: 0;
}
.datatable tr:last-child td {
  border-bottom: 0;
}
.datatable tbody td, .datatable tbody th {
  display: block;
  padding: 2px 15px;
  width: 100%;
  clear: both;
  float: left;
  text-align: left;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .datatable tbody td, .datatable tbody th {
    padding: 15px;
    float: none;
    display: table-cell;
    width: auto;
    border: 1px solid #e1e1e2;
    font-size: 1em;
    line-height: 1.75em;
    text-align: center;
  }
  .datatable tbody td:first-child, .datatable tbody th:first-child {
    text-align: left;
  }
}
.datatable tbody td:before, .datatable tbody th:before {
  content: attr(data-th);
  width: 48%;
  clear: both;
  padding-right: 15px;
  font-weight: bold;
  display: inline-block;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .datatable tbody td:before, .datatable tbody th:before {
    display: none;
  }
}
.datatable tbody td tr td:nth-child(even), .datatable tbody th tr td:nth-child(even) {
  background: white;
}
.datatable tbody tr:nth-child(even) {
  background: white;
}
.widget_calendar {
  display: table;
  width: 100%;
}

#wp-calendar {
  width: 100%;
}
#wp-calendar caption {
  text-align: right;
  color: #078844;
  font-size: 12px;
  margin-top: 10px;
  margin-bottom: 15px;
}
#wp-calendar thead {
  font-size: 10px;
}
#wp-calendar thead th {
  padding-bottom: 10px;
}
#wp-calendar tbody {
  color: #078844;
  font-family: sans-serif;
  font-weight: 300;
}
#wp-calendar tbody td {
  background: #f2f8f4;
  border: 1px solid #f2f8f4;
  text-align: center;
  padding: 8px;
}
#wp-calendar tbody td:hover {
  background: #f2f8f4;
}
#wp-calendar tbody .pad {
  background: none;
}
#wp-calendar tfoot #next {
  font-size: 10px;
  text-transform: uppercase;
  text-align: right;
}
#wp-calendar tfoot #prev {
  font-size: 10px;
  text-transform: uppercase;
  padding-top: 10px;
}

/* Frank EPC one-page flex section helpers */
.flex-content.epc-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(130deg, #079249 0%, #056633 70%);
  -webkit-box-shadow: 0 20px 35px -24px rgba(0, 0, 0, 0.75);
          box-shadow: 0 20px 35px -24px rgba(0, 0, 0, 0.75);
}
.flex-content.epc-hero h1, .flex-content.epc-hero h2, .flex-content.epc-hero h3, .flex-content.epc-hero p, .flex-content.epc-hero li {
  color: white;
}
.flex-content.epc-hero a:not(.btn) {
  color: white;
}
.flex-content.epc-hero .btn.white, .flex-content.epc-hero form input.white[type=submit], form .flex-content.epc-hero input.white[type=submit],
.flex-content.epc-hero form input.white[type=button],
form .flex-content.epc-hero input.white[type=button] {
  color: #078844;
}

.flex-content.epc-services .col,
.flex-content.epc-benefits .col,
.flex-content.epc-process .col {
  background: white;
  border: 1px solid #d6e4dc;
  border-radius: 12px;
  padding: 30px;
  -webkit-box-shadow: 0 18px 30px -28px rgba(7, 136, 68, 0.9);
          box-shadow: 0 18px 30px -28px rgba(7, 136, 68, 0.9);
  margin-bottom: 20px;
}
.flex-content.epc-services h3,
.flex-content.epc-benefits h3,
.flex-content.epc-process h3 {
  margin-bottom: 12px;
}
.flex-content.epc-services p:last-child,
.flex-content.epc-benefits p:last-child,
.flex-content.epc-process p:last-child {
  margin-bottom: 0;
}

.flex-content.epc-benefits ul.check {
  margin-bottom: 0;
}
.flex-content.epc-benefits ul.check > li:before {
  color: #078844;
}

.flex-content.epc-coverage .col {
  margin-bottom: 0;
}
.flex-content.epc-coverage .btn.secondary:hover, .flex-content.epc-coverage form input.secondary[type=submit]:hover, form .flex-content.epc-coverage input.secondary[type=submit]:hover,
.flex-content.epc-coverage form input.secondary[type=button]:hover,
form .flex-content.epc-coverage input.secondary[type=button]:hover {
  background: #0c4959;
}

.flex-content.epc-cta,
.getin-touch.epc-cta {
  background: #0f5b6f;
  border-radius: 12px;
}
.flex-content.epc-cta h2, .flex-content.epc-cta h3, .flex-content.epc-cta p, .flex-content.epc-cta li,
.getin-touch.epc-cta h2,
.getin-touch.epc-cta h3,
.getin-touch.epc-cta p,
.getin-touch.epc-cta li {
  color: white;
}
.flex-content.epc-cta .btn, .flex-content.epc-cta form input[type=submit], form .flex-content.epc-cta input[type=submit],
.flex-content.epc-cta form input[type=button],
form .flex-content.epc-cta input[type=button],
.getin-touch.epc-cta .btn,
.getin-touch.epc-cta form input[type=submit],
form .getin-touch.epc-cta input[type=submit],
.getin-touch.epc-cta form input[type=button],
form .getin-touch.epc-cta input[type=button] {
  background: white;
  color: #0f5b6f;
}
.flex-content.epc-cta .btn:hover, .flex-content.epc-cta form input[type=submit]:hover, form .flex-content.epc-cta input[type=submit]:hover,
.flex-content.epc-cta form input[type=button]:hover,
form .flex-content.epc-cta input[type=button]:hover,
.getin-touch.epc-cta .btn:hover,
.getin-touch.epc-cta form input[type=submit]:hover,
form .getin-touch.epc-cta input[type=submit]:hover,
.getin-touch.epc-cta form input[type=button]:hover,
form .getin-touch.epc-cta input[type=button]:hover {
  background: #078844;
  color: white;
}

.flex-content.epc-contact {
  border: 1px solid #d6e4dc;
  border-radius: 12px;
  background: white;
}
.flex-content.epc-contact .col {
  margin-bottom: 0;
}

.flex-content.epc-icon-grid .icon-box {
  background: white;
  border: 1px solid #d6e4dc;
  border-radius: 12px;
  padding: 32px 24px 24px;
  -webkit-box-shadow: 0 20px 30px -28px rgba(7, 136, 68, 0.9);
          box-shadow: 0 20px 30px -28px rgba(7, 136, 68, 0.9);
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.flex-content.epc-icon-grid h3 {
  font-size: 1.3125em;
  line-height: 1.2380952381em;
  margin-bottom: 10px;
}
.flex-content.epc-icon-grid i {
  color: #078844;
  background: rgba(7, 136, 68, 0.08);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.875em;
  line-height: 1em;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.flex-content.epc-icon-grid p {
  max-width: 100%;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.flex-content.epc-icon-grid .btn, .flex-content.epc-icon-grid form input[type=submit], form .flex-content.epc-icon-grid input[type=submit],
.flex-content.epc-icon-grid form input[type=button],
form .flex-content.epc-icon-grid input[type=button] {
  all: unset;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  color: #078844;
  font-size: 0.8125em;
  line-height: 1em;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 20px;
  cursor: pointer;
  padding: 0;
  border: none;
  background: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 0;
  -webkit-transition: gap 0.2s ease, color 0.2s ease;
  transition: gap 0.2s ease, color 0.2s ease;
}
.flex-content.epc-icon-grid .btn::after, .flex-content.epc-icon-grid form input[type=submit]::after, form .flex-content.epc-icon-grid input[type=submit]::after,
.flex-content.epc-icon-grid form input[type=button]::after,
form .flex-content.epc-icon-grid input[type=button]::after {
  content: "→";
  font-size: 14px;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
  display: inline-block;
}
.flex-content.epc-icon-grid .btn:hover, .flex-content.epc-icon-grid form input[type=submit]:hover, form .flex-content.epc-icon-grid input[type=submit]:hover,
.flex-content.epc-icon-grid form input[type=button]:hover,
form .flex-content.epc-icon-grid input[type=button]:hover {
  color: #05572c;
  gap: 10px;
  background: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.flex-content.epc-icon-grid .btn:hover::after, .flex-content.epc-icon-grid form input[type=submit]:hover::after, form .flex-content.epc-icon-grid input[type=submit]:hover::after,
.flex-content.epc-icon-grid form input[type=button]:hover::after,
form .flex-content.epc-icon-grid input[type=button]:hover::after {
  -webkit-transform: translateX(3px);
      -ms-transform: translateX(3px);
          transform: translateX(3px);
}
.flex-content.epc-icon-grid .btn:hover::before, .flex-content.epc-icon-grid form input[type=submit]:hover::before, form .flex-content.epc-icon-grid input[type=submit]:hover::before,
.flex-content.epc-icon-grid form input[type=button]:hover::before,
form .flex-content.epc-icon-grid input[type=button]:hover::before {
  display: none;
}

.flex-content.image-text-box.epc-image-story {
  border: 1px solid #d6e4dc;
  border-radius: 12px;
  overflow: hidden;
}
.flex-content.image-text-box.epc-image-story .text {
  padding: 22px;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .flex-content.image-text-box.epc-image-story .text {
    padding: 36px;
  }
}
.flex-content.image-text-box.epc-image-story .image {
  padding: 18px;
  gap: 14px;
}
.flex-content.image-text-box.epc-image-story .image img {
  border-radius: 10px;
  -webkit-box-shadow: 0 20px 34px -26px rgba(0, 0, 0, 0.85);
          box-shadow: 0 20px 34px -26px rgba(0, 0, 0, 0.85);
}

/* --------------------------------------
* Media Queries
* 
* $breakpoint-mobile-small:   480px; //@include mq(mobile-small)
* $breakpoint-mobile-landscape: 640px; //@include mq(mobile-landscape)
* $breakpoint-tablet:       768px; //@include mq(tablet)
* $breakpoint-tablet-landscape: 960px; //@include mq(tablet-landscape)
* $breakpoint-desktop-small:    1100px; //@include mq(desktop-small)
* $breakpoint-desktop:      1200px; //@include mq(desktop)
*
------------------------------------ */
body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: normal;
  line-height: 1.5;
  color: #465568;
  text-align: left;
  font-weight: 300;
  background-color: white;
}
body.nav-open {
  overflow-y: hidden;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  body.nav-open {
    overflow: visible;
  }
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  margin-top: 0;
  margin-bottom: 20px;
  color: #078844;
  font-weight: 700;
  position: relative;
  font-family: "Radio Canada Big", sans-serif;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
    margin-bottom: 35px;
  }
}
h1 .underline, .h1 .underline, h2 .underline, .h2 .underline, h3 .underline, .h3 .underline, h4 .underline, .h4 .underline, h5 .underline, .h5 .underline, h6 .underline, .h6 .underline {
  position: relative;
}
h1 .underline:after, .h1 .underline:after, h2 .underline:after, .h2 .underline:after, h3 .underline:after, .h3 .underline:after, h4 .underline:after, .h4 .underline:after, h5 .underline:after, .h5 .underline:after, h6 .underline:after, .h6 .underline:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 40px;
  height: 3px;
  background: #888888;
}
h1 a, .h1 a, h2 a, .h2 a, h3 a, .h3 a, h4 a, .h4 a, h5 a, .h5 a, h6 a, .h6 a {
  color: #078844;
}

h1, .h1 {
  font-size: 1.75em;
  line-height: 1.4285714286em;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  h1, .h1 {
    font-size: 2.5625em;
    line-height: 1.3170731707em;
  }
}
.single h1, .single .h1 {
  margin-bottom: 20px;
}

h2, .h2, .comment-reply-title {
  font-size: 1.625em;
  line-height: 1.3076923077em;
  margin-bottom: 30px;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  h2, .h2, .comment-reply-title {
    font-size: 2em;
    line-height: 1.3125em;
  }
}

h3, .h3 {
  font-size: 1.5em;
  line-height: 1.5em;
}

h4, .h4 {
  font-size: 1.375em;
  line-height: 1.4545454545em;
}

h5, .h5 {
  font-size: 1.25em;
  line-height: 1.3em;
}

h6, .h6 {
  font-size: 1.0625em;
  line-height: 1.1764705882em;
}

a {
  color: #078844;
  text-decoration: none;
  outline: none;
  font-weight: 700;
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
}
a:hover {
  color: #05572c;
  text-decoration: none;
}

img {
  max-width: 100%;
}

p {
  margin-top: 0;
  margin-bottom: 35px;
  color: #465568;
  font-weight: 300;
  font-size: 1em;
  line-height: 1.75em;
}

strong {
  font-weight: 600;
}

.notes {
  font-size: 0.875em;
  line-height: 1.2142857143em;
}

.flex-content ul {
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}
.flex-content ul > li {
  margin: 0;
  padding: 0 0 10px 22px;
  color: #465568;
  font-size: 1em;
  line-height: 1.75em;
  position: relative;
}
.flex-content ul > li:last-child {
  padding-bottom: 0;
}
.flex-content ul > li:before {
  position: absolute;
  left: 0;
  top: 13px;
  width: 10px;
  height: 2px;
  background: #0f5b6f;
  display: block;
  content: "";
}
.flex-content ul > li ul, .flex-content ul > li ol {
  margin: 15px 0 0;
}
.flex-content ul.check > li {
  padding-left: 30px;
}
.flex-content ul.check > li:before {
  width: auto;
  height: auto;
  background: none;
  color: #0f5b6f;
  font-family: "Font Awesome 6 Pro";
  content: "\f00c";
  top: 0;
  font-weight: 400;
}

.flex-content ol {
  list-style: none;
  counter-reset: li;
  margin: 0 0 30px;
  padding: 0;
}
.flex-content ol > li {
  margin: 0 0 10px;
  padding: 0 0 10px 50px;
  color: #465568;
  font-size: 1em;
  line-height: 1.75em;
  position: relative;
}
.flex-content ol > li:last-child {
  margin-bottom: 0;
}
.flex-content ol > li:before {
  color: #0f5b6f;
  position: absolute;
  top: 0;
  left: 0;
  font-weight: 600;
  content: counter(li, decimal) ".";
  counter-increment: li;
  margin-right: 10px;
  padding: 0 10px 0 5px;
  width: 35px;
  border-right: 1px solid #e1e1e2;
}
.flex-content ol > li ul, .flex-content ol > li ol {
  margin: 15px 0 0;
}

.btn, form input[type=submit],
form input[type=button], input[type=submit], input[type=button], button:not(.mfp-arrow):not(.mfp-close):not(.pswp__button) {
  display: inline-block;
  background: #078844;
  font-weight: 400;
  padding: 18px 30px;
  border-radius: 6px;
  text-transform: uppercase;
  outline: none;
  border: 0;
  text-align: center;
  white-space: nowrap;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  font-size: 1.0625em;
  line-height: 1em;
  color: white;
  letter-spacing: 0.3px;
  cursor: pointer;
  -webkit-box-shadow: 0 10px 25px -14px rgba(7, 136, 68, 0.9);
          box-shadow: 0 10px 25px -14px rgba(7, 136, 68, 0.9);
}
.btn:hover, .btn:focus, .btn.active, input[type=submit]:hover, input[type=submit]:focus, input[type=submit].active, input[type=button]:hover, input[type=button]:focus, input[type=button].active, button:not(.mfp-arrow):not(.mfp-close):not(.pswp__button):hover, button:not(.mfp-arrow):not(.mfp-close):not(.pswp__button):focus, button:not(.mfp-arrow):not(.mfp-close):not(.pswp__button).active {
  background: #0f5b6f;
  color: white;
  -webkit-box-shadow: 0 12px 24px -12px rgba(15, 91, 111, 0.95);
          box-shadow: 0 12px 24px -12px rgba(15, 91, 111, 0.95);
}

.btn.light, form input.light[type=submit],
form input.light[type=button] {
  background: none;
  padding-left: 0;
  padding-right: 0;
  color: #078844;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
}
.btn.light:hover, form input.light[type=submit]:hover,
form input.light[type=button]:hover {
  color: #078844;
}
.btn.light:after, form input.light[type=submit]:after,
form input.light[type=button]:after {
  content: "\f105";
  display: inline-block;
  font-family: "Font Awesome 6 Pro";
  margin-left: 10px;
  font-weight: 300;
  font-size: 0.875em;
  line-height: 1.2142857143em;
  color: #0f5b6f;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .btn.light:before, form input.light[type=submit]:before,
  form input.light[type=button]:before {
    width: 0;
    display: block;
    background: #0f5b6f;
    height: 2px;
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
}
.btn.light:hover, form input.light[type=submit]:hover,
form input.light[type=button]:hover {
  color: #078844;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .btn.light:hover:before, form input.light[type=submit]:hover:before,
  form input.light[type=button]:hover:before {
    width: 100%;
  }
}
.btn.outline, form input.outline[type=submit],
form input.outline[type=button] {
  border: 3px solid #078844;
  background: none;
  color: #078844;
  padding-top: 14px;
  padding-bottom: 14px;
  z-index: 2;
  position: relative;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .btn.outline:before, form input.outline[type=submit]:before,
  form input.outline[type=button]:before {
    width: 0;
    height: 100%;
    left: 0;
    top: 0;
    bottom: 0;
    background: #078844;
    display: block;
    position: absolute;
    z-index: -1;
    content: "";
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  #front-page-banner .btn.outline:before, #front-page-banner form input.outline[type=submit]:before, form #front-page-banner input.outline[type=submit]:before,
  #front-page-banner form input.outline[type=button]:before,
  form #front-page-banner input.outline[type=button]:before {
    background: white;
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .btn.outline:hover, form input.outline[type=submit]:hover,
  form input.outline[type=button]:hover {
    color: white;
  }
  .btn.outline:hover:before, form input.outline[type=submit]:hover:before,
  form input.outline[type=button]:hover:before {
    width: 100%;
  }
  #front-page-banner .btn.outline:hover, #front-page-banner form input.outline[type=submit]:hover, form #front-page-banner input.outline[type=submit]:hover,
  #front-page-banner form input.outline[type=button]:hover,
  form #front-page-banner input.outline[type=button]:hover {
    color: #078844;
  }
}
.btn.secondary, form input.secondary[type=submit],
form input.secondary[type=button] {
  background: #0f5b6f;
  color: white;
}
.btn.secondary:hover, form input.secondary[type=submit]:hover,
form input.secondary[type=button]:hover {
  background: #078844;
  color: white;
}
.btn.white, form input.white[type=submit],
form input.white[type=button] {
  background: white;
  color: #078844;
}
.btn.white:hover, form input.white[type=submit]:hover,
form input.white[type=button]:hover {
  background: #0f5b6f;
  color: white;
}

.btn + .btn, form input[type=submit] + .btn,
form input[type=button] + .btn, form .btn + input[type=submit], form input[type=submit] + input[type=submit],
form input[type=button] + input[type=submit],
form .btn + input[type=button],
form input[type=submit] + input[type=button],
form input[type=button] + input[type=button] {
  margin-left: 20px;
}

.row.padded, .image-left-text-right.padded {
  padding-top: 30px;
  padding-bottom: 30px;
}
@media only screen and (min-width: 768px) {
  .row.padded, .image-left-text-right.padded {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .row.padded, .image-left-text-right.padded {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.row.padded-bottom, .image-left-text-right.padded-bottom {
  padding-bottom: 30px;
}
@media only screen and (min-width: 768px) {
  .row.padded-bottom, .image-left-text-right.padded-bottom {
    padding-bottom: 40px;
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .row.padded-bottom, .image-left-text-right.padded-bottom {
    padding-bottom: 80px;
  }
}
.row.padded-top, .image-left-text-right.padded-top {
  padding-top: 30px;
}
@media only screen and (min-width: 768px) {
  .row.padded-top, .image-left-text-right.padded-top {
    padding-top: 40px;
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .row.padded-top, .image-left-text-right.padded-top {
    padding-top: 80px;
  }
}

.row {
  margin: 0;
  padding-left: 20px;
  padding-right: 20px;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .row {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media screen and (min-width: 1520px) {
  .row {
    margin: 0;
    padding-left: calc((100% - 1460px) / 2);
    padding-right: calc((100% - 1460px) / 2);
  }
}
.row.no-row {
  padding-left: 0;
  padding-right: 0;
}

.wrapper {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  position: relative;
  left: 0;
  height: 100%;
  padding-top: 300px;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .wrapper {
    padding-top: 500px;
  }
}
.single .wrapper {
  padding-top: 105px;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .single .wrapper {
    padding-top: 90px;
  }
}
body.home .wrapper {
  padding-top: 100vh;
}

#header {
  padding-top: 50px;
  padding-bottom: 15px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  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;
  position: fixed;
  align-items: center;
  background: white;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  border-bottom: 1px solid #e1e1e2;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  #header {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-top: 35px;
    padding-bottom: 0;
    -webkit-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
  }
  .fixed-header #header {
    padding-top: 0;
    -webkit-box-shadow: 2px 2px 2px 0px rgba(0, 0, 0, 0.05);
            box-shadow: 2px 2px 2px 0px rgba(0, 0, 0, 0.05);
    -webkit-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
  }
}
@media screen and (min-width: 1400px) {
  #header {
    padding-top: 0;
  }
  #header.top-menu {
    padding-top: 35px;
  }
  .fixed-header #header.top-menu {
    padding-top: 0;
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  #header .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background: none;
    width: 100%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
#header .toggle-nav {
  top: calc(50% + 16px);
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  position: absolute;
  left: 0;
  cursor: pointer;
  display: block;
  width: 50px;
  padding: 3px 0 0 10px;
  height: 55px;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  #header .toggle-nav {
    display: none;
  }
}
#header .toggle-nav .icon {
  position: relative;
  width: 30px;
}
#header .toggle-nav .title {
  text-transform: uppercase;
  color: #0f5b6f;
  font-weight: 600;
  letter-spacing: 0.3px;
  font-size: 0.6875em;
  line-height: 1em;
}
#header .toggle-nav .line {
  position: absolute;
  width: 30px;
  height: 2px;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
  -webkit-transition-duration: 0.15s;
          transition-duration: 0.15s;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  background-color: #078844;
  display: block;
  top: 21px;
}
#header .toggle-nav .line.second {
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
  -webkit-transition-duration: 0.15s;
          transition-duration: 0.15s;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  top: 28px;
  width: calc(100% - 15px);
}
#header .toggle-nav .line.third {
  top: 35px;
  width: calc(100% - 8px);
}

.top-tel {
  background: #078844;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  text-align: center;
  display: block;
  color: white;
  font-size: 0.875em;
  line-height: 1em;
  text-transform: uppercase;
  font-family: "Radio Canada Big", sans-serif;
  letter-spacing: 0.3px;
  font-weight: 600;
  padding: 10px 20px;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .top-tel {
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    overflow: hidden;
    opacity: 1;
    height: 34px;
  }
  .fixed-header .top-tel {
    height: 0;
    opacity: 0;
    pointer-events: none;
  }
}
.top-tel span {
  padding: 10px 20px;
}
.top-tel i {
  margin-right: 5px;
  color: #0f5b6f;
  display: none;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .top-tel i {
    display: inline-block;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
}
.top-tel strong {
  color: #0f5b6f;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .top-tel strong {
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
}
@media screen and (min-width: 1400px) {
  .left-logo .top-tel strong {
    display: none;
  }
}
.top-tel:hover {
  background: #0f5b6f;
  color: white;
}
.top-tel:hover i {
  color: #078844;
}
.top-tel:hover strong {
  color: #078844;
}
@media screen and (min-width: 1400px) {
  .left-logo .top-tel {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    background: #078844;
    height: auto;
    overflow: visible;
    font-size: 1em;
    line-height: 1em;
    color: white;
    padding-left: 20px;
    border-left: 1px solid #e1e1e2;
    padding: 16px;
    border-radius: 10px;
    margin-left: 15px;
  }
  .left-logo .top-tel i {
    color: white;
  }
  .fixed-header .left-logo .top-tel {
    height: auto;
    pointer-events: visible;
    opacity: 1;
  }
  .left-logo .top-tel span {
    padding: 0;
  }
  .left-logo .top-tel:hover {
    background: #0f5b6f;
  }
}

.main-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: 40px;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .main-logo {
    display: none;
    margin: 0;
    padding-top: 15px;
    padding-bottom: 15px;
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  #header-nav .main-logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.main-logo img {
  height: 40px;
  width: auto;
  max-width: 300px;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .main-logo img.small {
    display: none;
  }
}
.main-logo img.large {
  display: none;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .main-logo img.large {
    display: block;
    max-height: 60px;
    height: auto;
    margin: auto;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .fixed-header .main-logo img.large {
    max-height: 60px;
  }
}
@media screen and (min-width: 1100px) {
  .main-logo img.large {
    max-height: 80px;
  }
}
@media screen and (min-width: 1400px) {
  .main-logo img.large {
    max-height: 90px;
  }
}
.main-logo img.no-mobile {
  display: block;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .top-menu .main-logo {
    text-align: center;
    width: calc(280px * 0.8);
  }
}
@media screen and (min-width: 1400px) {
  .top-menu .main-logo {
    width: 280px;
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .left-logo .main-logo {
    display: block;
  }
}

.header-logo {
  display: none;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .header-logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-top: 15px;
    padding-bottom: 15px;
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .header-logo img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
    height: auto;
  }
}

#header-nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
  width: 100%;
  height: 0;
  overflow: hidden;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  background: #078844;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  #header-nav {
    position: relative;
    overflow: visible;
    left: auto;
    top: auto;
    padding-top: 0;
    width: 100%;
    height: auto;
    z-index: 15;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background: none;
    -ms-flex-item-align: stretch;
        -ms-grid-row-align: stretch;
        align-self: stretch;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  .left-logo #header-nav {
    width: auto;
    margin-right: 0;
    margin-left: auto;
  }
}
.nav-open #header-nav {
  height: 100vh;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .nav-open #header-nav {
    height: auto;
  }
}
#header-nav .close-nav {
  left: 50%;
  top: 20px;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  border-radius: 50%;
  background: white;
  width: 50px;
  position: absolute;
  color: #078844;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
  font-size: 1.5em;
  line-height: 1em;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  #header-nav .close-nav {
    display: none;
  }
}
#header-nav .close-nav:hover {
  background: #0f5b6f;
  color: white;
}
#header-nav .menu {
  width: 100%;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  #header-nav .menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    width: calc(50% - 280px * 0.8 / 2 - 15px);
  }
}
@media screen and (min-width: 1400px) {
  #header-nav .menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    width: calc(50% - 280px / 2 - 20px);
  }
}
#header-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  border: 0;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  #header-nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: auto;
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
  }
}
#header-nav ul li {
  padding: 0;
  text-align: center;
  border-bottom: 1px solid #09b95c;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  #header-nav ul li {
    display: block;
    -webkit-animation: none;
            animation: none;
    position: relative;
    border-bottom: 0;
  }
}
#header-nav ul li:before {
  display: none;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  #header-nav ul li:after {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    display: block;
    right: -1px;
    content: "";
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    position: absolute;
    top: 50%;
    background: #0f5b6f;
  }
}
#header-nav ul li.current-menu-item > a {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
#header-nav ul li.current-menu-item > a:after {
  display: none;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  #header-nav ul li.current-menu-item > a:hover {
    cursor: pointer;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
}
#header-nav ul li a {
  display: inline-block;
  text-decoration: none;
  font-weight: 400;
  padding: 20px 15px;
  position: relative;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  color: white;
  font-size: 1em;
  line-height: 1em;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  position: relative;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  #header-nav ul li a {
    border: 0;
    padding: 15px 0;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 10px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
    font-size: 1em;
    line-height: 1em;
    color: #078844;
  }
  #header-nav ul li a:hover {
    color: #0f5b6f;
  }
}
@media screen and (min-width: 1100px) {
  #header-nav ul li a {
    margin: 0 20px;
  }
}
#header-nav ul li.menu-item-has-children a .menu-parent {
  display: inline-block;
  margin-left: 10px;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  #header-nav ul li.menu-item-has-children a .menu-parent {
    margin-left: 5px;
  }
}
#header-nav ul li.menu-item-has-children a .menu-parent:before {
  display: block;
  content: "\f107";
  font-size: 14px;
  color: #0f5b6f;
  font-family: "Font Awesome 6 Pro";
  -webkit-transform: rotate(0);
      -ms-transform: rotate(0);
          transform: rotate(0);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  #header-nav ul li.menu-item-has-children a .menu-parent:before {
    font-weight: 400;
    color: #0f5b6f;
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  #header-nav ul li.menu-item-has-children:hover a .menu-parent:before {
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg);
  }
}
#header-nav ul li.menu-item-has-children.open a .menu-parent:before {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
#header-nav ul li ul {
  margin-bottom: 0;
  z-index: 1;
  padding-bottom: 0;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
  transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  #header-nav ul li ul {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    padding: 10px 10px 15px;
    width: auto;
    -webkit-box-shadow: rgba(0, 0, 0, 0.2) 1px 1px 40px;
            box-shadow: rgba(0, 0, 0, 0.2) 1px 1px 40px;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    pointer-events: none;
    opacity: 0;
    width: 250px;
    border-radius: 0 0 5px 5px;
    -webkit-transition: opacity 200ms ease-in, top 200ms ease-in, visibility 200ms ease-in;
    transition: opacity 200ms ease-in, top 200ms ease-in, visibility 200ms ease-in;
    background: #078844;
    max-height: none;
    overflow: visible;
    z-index: 10;
  }
  #header-nav ul li ul:before {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 7.5px 10px 7.5px;
    border-color: transparent transparent #078844 transparent;
    position: absolute;
    right: 0;
    display: block;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    content: "";
    top: -10px;
    left: 50%;
  }
}
#header-nav ul li ul li {
  border: 0;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  #header-nav ul li ul li {
    width: 100%;
    text-align: center;
  }
  #header-nav ul li ul li:after {
    display: none;
  }
}
#header-nav ul li ul a {
  font-size: 0.875em;
  line-height: 1em;
  padding: 12px;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  #header-nav ul li ul a {
    font-size: 0.9375em;
    line-height: 1.4666666667em;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    position: relative;
    text-align: center;
    text-transform: none;
    padding: 12px 15px;
    letter-spacing: 0;
    color: white;
    margin: 0 auto;
    display: inline-block;
    overflow: visible;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  #header-nav ul li ul a:before {
    width: 0;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    display: block;
    background: white;
    height: 1px;
    content: "";
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    bottom: 0;
  }
  #header-nav ul li ul a:hover:before {
    width: calc(100% - 20px);
  }
  #header-nav ul li ul a:hover {
    color: white;
  }
}
#header-nav ul li.open ul {
  max-height: 5000px;
  -webkit-transition: max-height 1s ease-in-out;
  transition: max-height 1s ease-in-out;
  padding-bottom: 15px;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  #header-nav ul li.open ul {
    max-height: none;
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  #header-nav ul li:hover ul, #header-nav ul li.mega-toggle-on {
    opacity: 1;
    pointer-events: visible;
    top: 100%;
  }
  #header-nav ul li:hover ul .mega-menu-link .mega-indicator:before, #header-nav ul li.mega-toggle-on .mega-menu-link .mega-indicator:before {
    opacity: 1 !important;
    bottom: 0 !important;
  }
}
#header-nav .menu-items {
  width: 100%;
  padding: 0 30px;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  #header-nav .menu-items {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    padding: 0;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  #header-nav .menu-items ul li:last-child:after {
    display: none;
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  #header-nav .menu-left {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

@keyframes pulse {
  0% {
    opacity: 0;
    margin-top: -50px;
  }
  100% {
    opacity: 1;
    margin-top: 0;
  }
}
@-webkit-keyframes banner {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}
@keyframes banner {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}
.banner {
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
}
.banner .btn, .banner form input[type=submit], form .banner input[type=submit],
.banner form input[type=button],
form .banner input[type=button] {
  display: inline-block;
  background: white;
  width: auto;
  padding: 14px 24px;
  font-size: 0.9375em;
  line-height: 1em;
  color: #078844;
  position: relative;
  overflow: hidden;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media only screen and (min-width: 768px) {
  .banner .btn, .banner form input[type=submit], form .banner input[type=submit],
  .banner form input[type=button],
  form .banner input[type=button] {
    padding: 18px 30px;
    font-size: 1.0625em;
    line-height: 1em;
  }
}
.banner .btn:before, .banner form input[type=submit]:before, form .banner input[type=submit]:before,
.banner form input[type=button]:before,
form .banner input[type=button]:before {
  width: 0;
  left: 0;
  top: 0;
  bottom: 0;
  display: block;
  background: #078844;
  content: "";
  z-index: 2;
  position: absolute;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.banner .btn span, .banner form input[type=submit] span, form .banner input[type=submit] span,
.banner form input[type=button] span,
form .banner input[type=button] span {
  position: relative;
  z-index: 3;
}
.banner .btn i, .banner form input[type=submit] i, form .banner input[type=submit] i,
.banner form input[type=button] i,
form .banner input[type=button] i {
  margin-left: 5px;
}
@media only screen and (min-width: 768px) {
  .banner .btn i, .banner form input[type=submit] i, form .banner input[type=submit] i,
  .banner form input[type=button] i,
  form .banner input[type=button] i {
    margin-left: 25px;
  }
}
.banner .btn:hover, .banner form input[type=submit]:hover, form .banner input[type=submit]:hover,
.banner form input[type=button]:hover,
form .banner input[type=button]:hover {
  color: white;
}
.banner .btn:hover:before, .banner form input[type=submit]:hover:before, form .banner input[type=submit]:hover:before,
.banner form input[type=button]:hover:before,
form .banner input[type=button]:hover:before {
  width: 100%;
}

#front-page-banner {
  height: 100vh;
}
#front-page-banner .banner-item {
  height: 100vh;
}
#front-page-banner .banner-item img.banner-image {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  inset: 0;
}
#front-page-banner .banner-item .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
  padding: 50px 30px 0;
  max-width: 1260px;
  margin: 0 auto;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  #front-page-banner .banner-item .container {
    padding: 140px 50px 0;
  }
  .sticky-text #front-page-banner .banner-item .container {
    padding-bottom: 50px;
  }
}
.sticky-text #front-page-banner .banner-item .container {
  padding-bottom: 160px;
}
@media only screen and (min-width: 768px) {
  .sticky-text #front-page-banner .banner-item .container {
    padding-bottom: 50px;
  }
}
#front-page-banner .banner-item .container h3 {
  color: white;
  font-size: 1.5em;
  line-height: 1.3333333333em;
  margin-bottom: 16px;
}
@media only screen and (min-width: 768px) {
  #front-page-banner .banner-item .container h3 {
    font-size: 2.5em;
    line-height: 1.25em;
  }
}
@media screen and (min-width: 1400px) {
  #front-page-banner .banner-item .container h3 {
    font-size: 4.5em;
    line-height: 1.25em;
  }
}
#front-page-banner .banner-item .container p {
  color: white;
  font-size: 1em;
  line-height: 1.5em;
  max-width: 785px;
  margin: 0 auto 16px;
}
@media only screen and (min-width: 768px) {
  #front-page-banner .banner-item .container p {
    font-size: 1.25em;
    line-height: 1.8em;
    margin-bottom: 25px;
  }
}
#front-page-banner .banner-item .container p:last-child {
  margin-bottom: 0;
}
@media only screen and (min-width: 768px) {
  #front-page-banner .owl-item.active .banner-item .container {
    -webkit-animation: pulse 0.6s ease-in normal;
            animation: pulse 0.6s ease-in normal;
    opacity: 1;
    margin-top: 0;
  }
}
@media only screen and (min-width: 768px) {
  #front-page-banner .owl-item.active .banner-item img.banner-image {
    -webkit-animation: banner 7s ease-in normal;
            animation: banner 7s ease-in normal;
    -webkit-transform: scale(1.2);
        -ms-transform: scale(1.2);
            transform: scale(1.2);
  }
}
#front-page-banner .owl-nav .owl-prev, #front-page-banner .owl-nav .owl-next {
  position: absolute;
  top: 50%;
  font-size: 1.375em;
  line-height: 2.2727272727em;
  color: white;
  width: 50px;
  height: 50px;
  opacity: 0;
  text-align: center;
  background: rgba(0, 0, 0, 0.4);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
#front-page-banner .owl-nav .owl-prev {
  left: 0;
}
#front-page-banner .owl-nav .owl-next {
  right: 0;
}
#front-page-banner:hover .owl-nav .owl-prev, #front-page-banner:hover .owl-nav .owl-next {
  opacity: 1;
}

.sticky-bannertext {
  position: sticky;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 5;
  background: rgba(7, 136, 68, 0.9);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 8px;
  padding-top: 20px;
  padding-bottom: 20px;
}
.sticky-bannertext h3, .sticky-bannertext p {
  color: white;
  margin-bottom: 15px;
  width: 100%;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .sticky-bannertext h3, .sticky-bannertext p {
    margin-bottom: 0;
    width: auto;
  }
}
.sticky-bannertext h3 {
  font-size: 1.1875em;
  line-height: 1.2631578947em;
  margin-bottom: 10px;
}
.sticky-bannertext p {
  font-size: 1em;
  line-height: 1.5em;
}
.sticky-bannertext a.btn {
  padding: 12px 20px;
  font-size: 0.875em;
  line-height: 1em;
}
@media only screen and (min-width: 768px) {
  .sticky-bannertext h3 {
    font-size: 1.25em;
    line-height: 1.5em;
  }
  .sticky-bannertext p {
    font-size: 1.125em;
    line-height: 1.5555555556em;
  }
  .sticky-bannertext a.btn {
    padding: 14px 24px;
    font-size: 0.9375em;
    line-height: 1em;
  }
}
.sticky-bannertext a:before {
  background: #0f5b6f !important;
}

.banner-item.overlay:after, .page-header.overlay:after, .slideshow-item.overlay:after {
  background: black;
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  pointer-events: none;
  left: 0;
  bottom: 0;
  display: block;
  content: "";
  opacity: 0;
}
.banner-item.overlay-10:after, .page-header.overlay-10:after, .slideshow-item.overlay-10:after {
  opacity: 0.1;
}
.banner-item.overlay-20:after, .page-header.overlay-20:after, .slideshow-item.overlay-20:after {
  opacity: 0.2;
}
.banner-item.overlay-30:after, .page-header.overlay-30:after, .slideshow-item.overlay-30:after {
  opacity: 0.3;
}
.banner-item.overlay-40:after, .page-header.overlay-40:after, .slideshow-item.overlay-40:after {
  opacity: 0.4;
}
.banner-item.overlay-40:after, .page-header.overlay-40:after, .slideshow-item.overlay-40:after {
  opacity: 0.4;
}
.banner-item.overlay-50:after, .page-header.overlay-50:after, .slideshow-item.overlay-50:after {
  opacity: 0.5;
}
.banner-item.overlay-60:after, .page-header.overlay-60:after, .slideshow-item.overlay-60:after {
  opacity: 0.6;
}
.banner-item.overlay-70:after, .page-header.overlay-70:after, .slideshow-item.overlay-70:after {
  opacity: 0.7;
}
.banner-item.overlay-80:after, .page-header.overlay-80:after, .slideshow-item.overlay-80:after {
  opacity: 0.8;
}
.banner-item.overlay-90:after, .page-header.overlay-90:after, .slideshow-item.overlay-90:after {
  opacity: 0.9;
}
.banner-item.overlay-100:after, .page-header.overlay-100:after, .slideshow-item.overlay-100:after {
  opacity: 1;
}

html {
  scroll-behavior: smooth;
}

main.pagebody {
  z-index: 2;
  position: relative;
  background: white;
}

.page-header {
  overflow: hidden;
  z-index: 1;
  position: relative;
  background: #078844;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  height: 300px;
  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;
  padding-top: 105px;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .page-header {
    height: 410px;
    top: 90px;
    padding-top: 0;
  }
}
.page-header img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}
.page-header .row {
  z-index: 3;
  position: relative;
}
.page-header h1 {
  color: white;
  font-size: 1.875em;
  line-height: 1.3333333333em;
  margin: 0;
  text-align: center;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .page-header h1 {
    font-size: 2.5em;
    line-height: 1.2em;
  }
}
@media screen and (min-width: 1400px) {
  .page-header h1 {
    font-size: 3.125em;
    line-height: 1.16em;
  }
}

@media only screen and (min-width: 768px) {
  .socials {
    text-align: right;
  }
  main .socials {
    text-align: left;
  }
}
.socials a {
  display: inline-block;
  width: 45px;
  height: 45px;
  background: white;
  color: #0f5b6f;
  text-align: center;
  font-weight: 400;
  margin-bottom: 15px;
  margin-right: 15px;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .socials a {
    margin-left: 15px;
    margin-right: 0;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
}
main .socials a {
  background: #f2f8f4;
  color: #0f5b6f;
  margin: 0 15px 0 0;
}
.socials a:hover {
  background: #0f5b6f;
  color: white;
}
.socials a i {
  font-size: 1.125em;
  line-height: 2.5em;
}

/* One-page homepage polish for Frank EPC */
body.home main.pagebody {
  background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#f5faf7));
  background: linear-gradient(180deg, #ffffff 0%, #f5faf7 100%);
}
body.home main.pagebody [id],
body.home main.pagebody section[id] {
  scroll-margin-top: 130px;
}

.opening-hours .opening-hour {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 5px;
  max-width: 250px;
}
.opening-hours .opening-hour:last-child {
  margin-bottom: 0;
}
.opening-hours strong {
  font-weight: 300;
}

#footer {
  position: relative;
  z-index: 2;
}
#footer .footer-main {
  background: #0f5b6f;
  padding: 60px 0 40px;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  #footer .footer-main {
    padding: 70px 0 50px;
  }
}
#footer .footer-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media only screen and (min-width: 768px) {
  #footer .footer-grid {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  #footer .footer-grid {
    -ms-grid-columns: 1.4fr 50px 1.2fr 50px 0.9fr 50px 1.1fr;
    grid-template-columns: 1.4fr 1.2fr 0.9fr 1.1fr;
    gap: 30px 50px;
  }
}
#footer .footer-col-heading {
  color: white;
  font-size: 0.9375em;
  line-height: 1.0666666667em;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}
#footer .footer-brand .footer-logo {
  display: inline-block;
  background: white;
  border-radius: 12px;
  padding: 10px 18px;
  margin-bottom: 20px;
}
#footer .footer-brand .footer-logo img {
  max-height: 46px;
  width: auto;
  display: block;
}
#footer .footer-brand .footer-site-name {
  color: white;
  font-weight: 700;
  font-size: 1.25em;
  line-height: 1.2em;
  margin-bottom: 12px;
}
#footer .footer-brand .footer-tagline {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9375em;
  line-height: 1.4666666667em;
  margin-bottom: 22px;
}
#footer .footer-brand .footer-socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  gap: 8px;
}
#footer .footer-brand .footer-socials a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 6px;
  border: 1px solid #078844;
  background: #078844;
  color: white;
  font-size: 0.9375em;
  line-height: 1em;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}
#footer .footer-brand .footer-socials a:hover {
  background: #067038;
  border-color: #067038;
  color: white;
}
#footer .footer-contact p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 12px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9375em;
  line-height: 1.4666666667em;
  margin-bottom: 16px;
}
#footer .footer-contact p:last-child {
  margin-bottom: 0;
}
#footer .footer-contact p i {
  color: #09b95c;
  font-size: 0.9375em;
  line-height: 1.4666666667em;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-top: 3px;
  width: 16px;
  text-align: center;
}
#footer .footer-contact p a {
  color: rgba(255, 255, 255, 0.85);
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}
#footer .footer-contact p a:hover {
  color: white;
}
#footer .footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#footer .footer-nav ul li {
  margin: 0;
  padding: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
#footer .footer-nav ul li:before {
  display: none;
}
#footer .footer-nav ul a {
  display: block;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9375em;
  line-height: 1em;
  padding: 12px 0;
  -webkit-transition: color 0.2s, padding-left 0.2s;
  transition: color 0.2s, padding-left 0.2s;
}
#footer .footer-nav ul a:hover {
  color: white;
  padding-left: 8px;
}
#footer .footer-hours .hours-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
#footer .footer-hours .hours-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 10px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.9375em;
  line-height: 1.3333333333em;
}
#footer .footer-hours .hours-list li:before {
  display: none;
}
#footer .footer-hours .hours-list li .day {
  color: rgba(255, 255, 255, 0.75);
}
#footer .footer-hours .hours-list li .time {
  color: white;
  font-weight: 500;
  text-align: right;
}
#footer .footer-bottom {
  background: #0e576b;
  border-top: 1px solid #126d85;
}
#footer .footer-bottom-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  padding-top: 20px;
  padding-bottom: 20px;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  #footer .footer-bottom-inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
#footer .copyright {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.8125em;
  line-height: 1em;
  margin: 0;
  text-align: center;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  #footer .copyright {
    text-align: left;
  }
}
#footer .copyright a {
  color: rgba(255, 255, 255, 0.45);
}
#footer .copyright a:hover {
  color: white;
}
#footer .footer-credit {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.8125em;
  line-height: 1em;
  margin: 0;
  text-align: center;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  #footer .footer-credit {
    text-align: right;
  }
}
#footer .footer-credit a {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
}
#footer .footer-credit a:hover {
  color: white;
}
/*# sourceMappingURL=main.css.map */