@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Bebas+Neue&display=swap");
@import url("https://fonts.googleapis.com/css?family=Open+Sans&display=swap");
@import url("https://fonts.googleapis.com/css2?family=PT+Sans:ital@0;1&display=swap");
/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
  padding: 0px 0px;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}

.hamburger:hover {
  opacity: 0.7;
}

.hamburger.is-active:hover {
  opacity: 0.7;
}

.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
  background-color: #fff;
}

.hamburger-box {
  width: 26px;
  height: 16px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -1px;
}

.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width: 26px;
  height: 2px;
  background-color: #fff;
  border-radius: 0px;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}

.hamburger-inner::before, .hamburger-inner::after {
  content: "";
  display: block;
}

.hamburger-inner::before {
  top: -7px;
}

.hamburger-inner::after {
  bottom: -7px;
}

/*
   * 3DX
   */
.hamburger--3dx .hamburger-box {
  perspective: 52px;
}

.hamburger--3dx .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dx .hamburger-inner::before, .hamburger--3dx .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dx.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateY(180deg);
}

.hamburger--3dx.is-active .hamburger-inner::before {
  transform: translate3d(0, 7px, 0) rotate(45deg);
}

.hamburger--3dx.is-active .hamburger-inner::after {
  transform: translate3d(0, -7px, 0) rotate(-45deg);
}

/*
   * 3DX Reverse
   */
.hamburger--3dx-r .hamburger-box {
  perspective: 52px;
}

.hamburger--3dx-r .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dx-r .hamburger-inner::before, .hamburger--3dx-r .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dx-r.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateY(-180deg);
}

.hamburger--3dx-r.is-active .hamburger-inner::before {
  transform: translate3d(0, 7px, 0) rotate(45deg);
}

.hamburger--3dx-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -7px, 0) rotate(-45deg);
}

/*
   * 3DY
   */
.hamburger--3dy .hamburger-box {
  perspective: 52px;
}

.hamburger--3dy .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dy .hamburger-inner::before, .hamburger--3dy .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dy.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateX(-180deg);
}

.hamburger--3dy.is-active .hamburger-inner::before {
  transform: translate3d(0, 7px, 0) rotate(45deg);
}

.hamburger--3dy.is-active .hamburger-inner::after {
  transform: translate3d(0, -7px, 0) rotate(-45deg);
}

/*
   * 3DY Reverse
   */
.hamburger--3dy-r .hamburger-box {
  perspective: 52px;
}

.hamburger--3dy-r .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dy-r .hamburger-inner::before, .hamburger--3dy-r .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dy-r.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateX(180deg);
}

.hamburger--3dy-r.is-active .hamburger-inner::before {
  transform: translate3d(0, 7px, 0) rotate(45deg);
}

.hamburger--3dy-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -7px, 0) rotate(-45deg);
}

/*
   * 3DXY
   */
.hamburger--3dxy .hamburger-box {
  perspective: 52px;
}

.hamburger--3dxy .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dxy .hamburger-inner::before, .hamburger--3dxy .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dxy.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateX(180deg) rotateY(180deg);
}

.hamburger--3dxy.is-active .hamburger-inner::before {
  transform: translate3d(0, 7px, 0) rotate(45deg);
}

.hamburger--3dxy.is-active .hamburger-inner::after {
  transform: translate3d(0, -7px, 0) rotate(-45deg);
}

/*
   * 3DXY Reverse
   */
.hamburger--3dxy-r .hamburger-box {
  perspective: 52px;
}

.hamburger--3dxy-r .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dxy-r .hamburger-inner::before, .hamburger--3dxy-r .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dxy-r.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateX(180deg) rotateY(180deg) rotateZ(-180deg);
}

.hamburger--3dxy-r.is-active .hamburger-inner::before {
  transform: translate3d(0, 7px, 0) rotate(45deg);
}

.hamburger--3dxy-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -7px, 0) rotate(-45deg);
}

/*
   * Arrow
   */
.hamburger--arrow.is-active .hamburger-inner::before {
  transform: translate3d(-5.2px, 0, 0) rotate(-45deg) scale(0.7, 1);
}

.hamburger--arrow.is-active .hamburger-inner::after {
  transform: translate3d(-5.2px, 0, 0) rotate(45deg) scale(0.7, 1);
}

/*
   * Arrow Right
   */
.hamburger--arrow-r.is-active .hamburger-inner::before {
  transform: translate3d(5.2px, 0, 0) rotate(45deg) scale(0.7, 1);
}

.hamburger--arrow-r.is-active .hamburger-inner::after {
  transform: translate3d(5.2px, 0, 0) rotate(-45deg) scale(0.7, 1);
}

/*
   * Arrow Alt
   */
.hamburger--arrowalt .hamburger-inner::before {
  transition: top 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hamburger--arrowalt .hamburger-inner::after {
  transition: bottom 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hamburger--arrowalt.is-active .hamburger-inner::before {
  top: 0;
  transform: translate3d(-5.2px, -6.5px, 0) rotate(-45deg) scale(0.7, 1);
  transition: top 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

.hamburger--arrowalt.is-active .hamburger-inner::after {
  bottom: 0;
  transform: translate3d(-5.2px, 6.5px, 0) rotate(45deg) scale(0.7, 1);
  transition: bottom 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

/*
   * Arrow Alt Right
   */
.hamburger--arrowalt-r .hamburger-inner::before {
  transition: top 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hamburger--arrowalt-r .hamburger-inner::after {
  transition: bottom 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hamburger--arrowalt-r.is-active .hamburger-inner::before {
  top: 0;
  transform: translate3d(5.2px, -6.5px, 0) rotate(45deg) scale(0.7, 1);
  transition: top 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

.hamburger--arrowalt-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: translate3d(5.2px, 6.5px, 0) rotate(-45deg) scale(0.7, 1);
  transition: bottom 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

/*
   * Arrow Turn
   */
.hamburger--arrowturn.is-active .hamburger-inner {
  transform: rotate(-180deg);
}

.hamburger--arrowturn.is-active .hamburger-inner::before {
  transform: translate3d(8px, 0, 0) rotate(45deg) scale(0.7, 1);
}

.hamburger--arrowturn.is-active .hamburger-inner::after {
  transform: translate3d(8px, 0, 0) rotate(-45deg) scale(0.7, 1);
}

/*
   * Arrow Turn Right
   */
.hamburger--arrowturn-r.is-active .hamburger-inner {
  transform: rotate(-180deg);
}

.hamburger--arrowturn-r.is-active .hamburger-inner::before {
  transform: translate3d(-8px, 0, 0) rotate(-45deg) scale(0.7, 1);
}

.hamburger--arrowturn-r.is-active .hamburger-inner::after {
  transform: translate3d(-8px, 0, 0) rotate(45deg) scale(0.7, 1);
}

/*
   * Boring
   */
.hamburger--boring .hamburger-inner, .hamburger--boring .hamburger-inner::before, .hamburger--boring .hamburger-inner::after {
  transition-property: none;
}

.hamburger--boring.is-active .hamburger-inner {
  transform: rotate(45deg);
}

.hamburger--boring.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
}

.hamburger--boring.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
}

/*
   * Collapse
   */
.hamburger--collapse .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0.13s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--collapse .hamburger-inner::after {
  top: -14px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
}

.hamburger--collapse .hamburger-inner::before {
  transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--collapse.is-active .hamburger-inner {
  transform: translate3d(0, -7px, 0) rotate(-45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--collapse.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear;
}

.hamburger--collapse.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(-90deg);
  transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
   * Collapse Reverse
   */
.hamburger--collapse-r .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0.13s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--collapse-r .hamburger-inner::after {
  top: -14px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
}

.hamburger--collapse-r .hamburger-inner::before {
  transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--collapse-r.is-active .hamburger-inner {
  transform: translate3d(0, -7px, 0) rotate(45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--collapse-r.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear;
}

.hamburger--collapse-r.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(90deg);
  transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
   * Elastic
   */
.hamburger--elastic .hamburger-inner {
  top: 1px;
  transition-duration: 0.275s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger--elastic .hamburger-inner::before {
  top: 7px;
  transition: opacity 0.125s 0.275s ease;
}

.hamburger--elastic .hamburger-inner::after {
  top: 14px;
  transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger--elastic.is-active .hamburger-inner {
  transform: translate3d(0, 7px, 0) rotate(135deg);
  transition-delay: 0.075s;
}

.hamburger--elastic.is-active .hamburger-inner::before {
  transition-delay: 0s;
  opacity: 0;
}

.hamburger--elastic.is-active .hamburger-inner::after {
  transform: translate3d(0, -14px, 0) rotate(-270deg);
  transition-delay: 0.075s;
}

/*
   * Elastic Reverse
   */
.hamburger--elastic-r .hamburger-inner {
  top: 1px;
  transition-duration: 0.275s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger--elastic-r .hamburger-inner::before {
  top: 7px;
  transition: opacity 0.125s 0.275s ease;
}

.hamburger--elastic-r .hamburger-inner::after {
  top: 14px;
  transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger--elastic-r.is-active .hamburger-inner {
  transform: translate3d(0, 7px, 0) rotate(-135deg);
  transition-delay: 0.075s;
}

.hamburger--elastic-r.is-active .hamburger-inner::before {
  transition-delay: 0s;
  opacity: 0;
}

.hamburger--elastic-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -14px, 0) rotate(270deg);
  transition-delay: 0.075s;
}

/*
   * Emphatic
   */
.hamburger--emphatic {
  overflow: hidden;
}

.hamburger--emphatic .hamburger-inner {
  transition: background-color 0.125s 0.175s ease-in;
}

.hamburger--emphatic .hamburger-inner::before {
  left: 0;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, left 0.125s 0.175s ease-in;
}

.hamburger--emphatic .hamburger-inner::after {
  top: 7px;
  right: 0;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, right 0.125s 0.175s ease-in;
}

.hamburger--emphatic.is-active .hamburger-inner {
  transition-delay: 0s;
  transition-timing-function: ease-out;
  background-color: transparent !important;
}

.hamburger--emphatic.is-active .hamburger-inner::before {
  left: -52px;
  top: -52px;
  transform: translate3d(52px, 52px, 0) rotate(45deg);
  transition: left 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.hamburger--emphatic.is-active .hamburger-inner::after {
  right: -52px;
  top: -52px;
  transform: translate3d(-52px, 52px, 0) rotate(-45deg);
  transition: right 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}

/*
   * Emphatic Reverse
   */
.hamburger--emphatic-r {
  overflow: hidden;
}

.hamburger--emphatic-r .hamburger-inner {
  transition: background-color 0.125s 0.175s ease-in;
}

.hamburger--emphatic-r .hamburger-inner::before {
  left: 0;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, left 0.125s 0.175s ease-in;
}

.hamburger--emphatic-r .hamburger-inner::after {
  top: 7px;
  right: 0;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, right 0.125s 0.175s ease-in;
}

.hamburger--emphatic-r.is-active .hamburger-inner {
  transition-delay: 0s;
  transition-timing-function: ease-out;
  background-color: transparent !important;
}

.hamburger--emphatic-r.is-active .hamburger-inner::before {
  left: -52px;
  top: 52px;
  transform: translate3d(52px, -52px, 0) rotate(-45deg);
  transition: left 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.hamburger--emphatic-r.is-active .hamburger-inner::after {
  right: -52px;
  top: 52px;
  transform: translate3d(-52px, -52px, 0) rotate(45deg);
  transition: right 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}

/*
   * Minus
   */
.hamburger--minus .hamburger-inner::before, .hamburger--minus .hamburger-inner::after {
  transition: bottom 0.08s 0s ease-out, top 0.08s 0s ease-out, opacity 0s linear;
}

.hamburger--minus.is-active .hamburger-inner::before, .hamburger--minus.is-active .hamburger-inner::after {
  opacity: 0;
  transition: bottom 0.08s ease-out, top 0.08s ease-out, opacity 0s 0.08s linear;
}

.hamburger--minus.is-active .hamburger-inner::before {
  top: 0;
}

.hamburger--minus.is-active .hamburger-inner::after {
  bottom: 0;
}

/*
   * Slider
   */
.hamburger--slider .hamburger-inner {
  top: 1px;
}

.hamburger--slider .hamburger-inner::before {
  top: 7px;
  transition-property: transform, opacity;
  transition-timing-function: ease;
  transition-duration: 0.15s;
}

.hamburger--slider .hamburger-inner::after {
  top: 14px;
}

.hamburger--slider.is-active .hamburger-inner {
  transform: translate3d(0, 7px, 0) rotate(45deg);
}

.hamburger--slider.is-active .hamburger-inner::before {
  transform: rotate(-45deg) translate3d(-3.71429px, -5px, 0);
  opacity: 0;
}

.hamburger--slider.is-active .hamburger-inner::after {
  transform: translate3d(0, -14px, 0) rotate(-90deg);
}

/*
   * Slider Reverse
   */
.hamburger--slider-r .hamburger-inner {
  top: 1px;
}

.hamburger--slider-r .hamburger-inner::before {
  top: 7px;
  transition-property: transform, opacity;
  transition-timing-function: ease;
  transition-duration: 0.15s;
}

.hamburger--slider-r .hamburger-inner::after {
  top: 14px;
}

.hamburger--slider-r.is-active .hamburger-inner {
  transform: translate3d(0, 7px, 0) rotate(-45deg);
}

.hamburger--slider-r.is-active .hamburger-inner::before {
  transform: rotate(45deg) translate3d(3.71429px, -5px, 0);
  opacity: 0;
}

.hamburger--slider-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -14px, 0) rotate(90deg);
}

/*
   * Spin
   */
.hamburger--spin .hamburger-inner {
  transition-duration: 0.22s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin .hamburger-inner::before {
  transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
}

.hamburger--spin .hamburger-inner::after {
  transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin.is-active .hamburger-inner {
  transform: rotate(225deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--spin.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
}

.hamburger--spin.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
   * Spin Reverse
   */
.hamburger--spin-r .hamburger-inner {
  transition-duration: 0.22s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin-r .hamburger-inner::before {
  transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
}

.hamburger--spin-r .hamburger-inner::after {
  transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin-r.is-active .hamburger-inner {
  transform: rotate(-225deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--spin-r.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
}

.hamburger--spin-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(90deg);
  transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
   * Spring
   */
.hamburger--spring .hamburger-inner {
  top: 1px;
  transition: background-color 0s 0.13s linear;
}

.hamburger--spring .hamburger-inner::before {
  top: 7px;
  transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spring .hamburger-inner::after {
  top: 14px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spring.is-active .hamburger-inner {
  transition-delay: 0.22s;
  background-color: transparent !important;
}

.hamburger--spring.is-active .hamburger-inner::before {
  top: 0;
  transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: translate3d(0, 7px, 0) rotate(45deg);
}

.hamburger--spring.is-active .hamburger-inner::after {
  top: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: translate3d(0, 7px, 0) rotate(-45deg);
}

/*
   * Spring Reverse
   */
.hamburger--spring-r .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spring-r .hamburger-inner::after {
  top: -14px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0s linear;
}

.hamburger--spring-r .hamburger-inner::before {
  transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spring-r.is-active .hamburger-inner {
  transform: translate3d(0, -7px, 0) rotate(-45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--spring-r.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0s 0.22s linear;
}

.hamburger--spring-r.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(90deg);
  transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
   * Stand
   */
.hamburger--stand .hamburger-inner {
  transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear;
}

.hamburger--stand .hamburger-inner::before {
  transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--stand .hamburger-inner::after {
  transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--stand.is-active .hamburger-inner {
  transform: rotate(90deg);
  background-color: transparent !important;
  transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear;
}

.hamburger--stand.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(-45deg);
  transition: top 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--stand.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(45deg);
  transition: bottom 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
   * Stand Reverse
   */
.hamburger--stand-r .hamburger-inner {
  transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear;
}

.hamburger--stand-r .hamburger-inner::before {
  transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--stand-r .hamburger-inner::after {
  transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--stand-r.is-active .hamburger-inner {
  transform: rotate(-90deg);
  background-color: transparent !important;
  transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear;
}

.hamburger--stand-r.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(-45deg);
  transition: top 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--stand-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(45deg);
  transition: bottom 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
   * Squeeze
   */
.hamburger--squeeze .hamburger-inner {
  transition-duration: 0.075s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--squeeze .hamburger-inner::before {
  transition: top 0.075s 0.12s ease, opacity 0.075s ease;
}

.hamburger--squeeze .hamburger-inner::after {
  transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--squeeze.is-active .hamburger-inner {
  transform: rotate(45deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--squeeze.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.075s ease, opacity 0.075s 0.12s ease;
}

.hamburger--squeeze.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
   * Vortex
   */
.hamburger--vortex .hamburger-inner {
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.hamburger--vortex .hamburger-inner::before, .hamburger--vortex .hamburger-inner::after {
  transition-duration: 0s;
  transition-delay: 0.1s;
  transition-timing-function: linear;
}

.hamburger--vortex .hamburger-inner::before {
  transition-property: top, opacity;
}

.hamburger--vortex .hamburger-inner::after {
  transition-property: bottom, transform;
}

.hamburger--vortex.is-active .hamburger-inner {
  transform: rotate(765deg);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.hamburger--vortex.is-active .hamburger-inner::before, .hamburger--vortex.is-active .hamburger-inner::after {
  transition-delay: 0s;
}

.hamburger--vortex.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
}

.hamburger--vortex.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(90deg);
}

/*
   * Vortex Reverse
   */
.hamburger--vortex-r .hamburger-inner {
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.hamburger--vortex-r .hamburger-inner::before, .hamburger--vortex-r .hamburger-inner::after {
  transition-duration: 0s;
  transition-delay: 0.1s;
  transition-timing-function: linear;
}

.hamburger--vortex-r .hamburger-inner::before {
  transition-property: top, opacity;
}

.hamburger--vortex-r .hamburger-inner::after {
  transition-property: bottom, transform;
}

.hamburger--vortex-r.is-active .hamburger-inner {
  transform: rotate(-765deg);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.hamburger--vortex-r.is-active .hamburger-inner::before, .hamburger--vortex-r.is-active .hamburger-inner::after {
  transition-delay: 0s;
}

.hamburger--vortex-r.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
}

.hamburger--vortex-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
}

.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* Slider */
/* Icons */
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 50px;
  width: 50px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}

.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}

.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}

.slick-prev:before,
.slick-next:before {
  font-family: none;
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}

[dir="rtl"] .slick-prev {
  left: auto;
  right: -25px;
}

.slick-prev:before {
  content: "←";
}

[dir="rtl"] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: -25px;
}

[dir="rtl"] .slick-next {
  left: -25px;
  right: auto;
}

.slick-next:before {
  content: "→";
}

[dir="rtl"] .slick-next:before {
  content: "←";
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}

.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}

.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}

.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: none;
  font-size: 30px;
  line-height: 20px;
  text-align: center;
  color: white;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
  color: white;
  opacity: 0.75;
}

.slick-prev {
  left: 25px;
  z-index: 1;
}

.slick-next {
  right: 25px;
}

/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license - http://opensource.org/licenses/MIT
Copyright (c) 2015 Daniel Eden
*/
body {
  -webkit-backface-visibility: hidden;
}

.animated {
  -webkit-animation-duration: calc( 1s);
  animation-duration: calc( 1s);
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

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

.animated.hinge {
  -webkit-animation-duration: calc( 1s * 2);
  animation-duration: calc( 1s * 2);
}

.animated.bounceIn, .animated.bounceOut {
  -webkit-animation-duration: calc( 1s * 0.75);
  animation-duration: calc( 1s * 0.75);
}

.animated.flipOutX, .animated.flipOutY {
  -webkit-animation-duration: calc( 1s * 0.75);
  animation-duration: calc( 1s * 0.75);
}

@-webkit-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-30px);
  }
  60% {
    -webkit-transform: translateY(-15px);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-30px);
  }
  60% {
    transform: translateY(-15px);
  }
}

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

@-webkit-keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}

@keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}

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

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

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

@-webkit-keyframes shake {
  0%, 100% {
    -webkit-transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translateX(-10px);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translateX(10px);
  }
}

@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translateX(-10px);
  }
  20%, 40%, 60%, 80% {
    transform: translateX(10px);
  }
}

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

@-webkit-keyframes swing {
  20%, 40%, 60%, 80%, 100% {
    -webkit-transform-origin: top center;
  }
  20% {
    -webkit-transform: rotate(15deg);
  }
  40% {
    -webkit-transform: rotate(-10deg);
  }
  60% {
    -webkit-transform: rotate(5deg);
  }
  80% {
    -webkit-transform: rotate(-5deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
  }
}

@keyframes swing {
  20% {
    transform: rotate(15deg);
  }
  40% {
    transform: rotate(-10deg);
  }
  60% {
    transform: rotate(5deg);
  }
  80% {
    transform: rotate(-5deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

.swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}

@-webkit-keyframes wiggle {
  0% {
    -webkit-transform: skewX(9deg);
  }
  10% {
    -webkit-transform: skewX(-8deg);
  }
  20% {
    -webkit-transform: skewX(7deg);
  }
  30% {
    -webkit-transform: skewX(-6deg);
  }
  40% {
    -webkit-transform: skewX(5deg);
  }
  50% {
    -webkit-transform: skewX(-4deg);
  }
  60% {
    -webkit-transform: skewX(3deg);
  }
  70% {
    -webkit-transform: skewX(-2deg);
  }
  80% {
    -webkit-transform: skewX(1deg);
  }
  90% {
    -webkit-transform: skewX(0deg);
  }
  100% {
    -webkit-transform: skewX(0deg);
  }
}

@keyframes wiggle {
  0% {
    transform: skewX(9deg);
  }
  10% {
    transform: skewX(-8deg);
  }
  20% {
    transform: skewX(7deg);
  }
  30% {
    transform: skewX(-6deg);
  }
  40% {
    transform: skewX(5deg);
  }
  50% {
    transform: skewX(-4deg);
  }
  60% {
    transform: skewX(3deg);
  }
  70% {
    transform: skewX(-2deg);
  }
  80% {
    transform: skewX(1deg);
  }
  90% {
    transform: skewX(0deg);
  }
  100% {
    transform: skewX(0deg);
  }
}

.wiggle {
  -webkit-animation-name: wiggle;
  animation-name: wiggle;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

@-webkit-keyframes wobble {
  0% {
    -webkit-transform: translateX(0%);
  }
  15% {
    -webkit-transform: translateX(-25%) rotate(-5deg);
  }
  30% {
    -webkit-transform: translateX(20%) rotate(3deg);
  }
  45% {
    -webkit-transform: translateX(-15%) rotate(-3deg);
  }
  60% {
    -webkit-transform: translateX(10%) rotate(2deg);
  }
  75% {
    -webkit-transform: translateX(-5%) rotate(-1deg);
  }
  100% {
    -webkit-transform: translateX(0%);
  }
}

@keyframes wobble {
  0% {
    transform: translateX(0%);
  }
  15% {
    transform: translateX(-25%) rotate(-5deg);
  }
  30% {
    transform: translateX(20%) rotate(3deg);
  }
  45% {
    transform: translateX(-15%) rotate(-3deg);
  }
  60% {
    transform: translateX(10%) rotate(2deg);
  }
  75% {
    transform: translateX(-5%) rotate(-1deg);
  }
  100% {
    transform: translateX(0%);
  }
}

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

@-webkit-keyframes tada {
  0% {
    -webkit-transform: scale(1);
  }
  10%, 20% {
    -webkit-transform: scale(0.9) rotate(-3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale(1.1) rotate(3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale(1.1) rotate(-3deg);
  }
  100% {
    -webkit-transform: scale(1) rotate(0);
  }
}

@keyframes tada {
  0% {
    transform: scale(1);
  }
  10%, 20% {
    transform: scale(0.9) rotate(-3deg);
  }
  30%, 50%, 70%, 90% {
    transform: scale(1.1) rotate(3deg);
  }
  40%, 60%, 80% {
    transform: scale(1.1) rotate(-3deg);
  }
  100% {
    transform: scale(1) rotate(0);
  }
}

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

@-webkit-keyframes bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.3);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
  }
  70% {
    -webkit-transform: scale(0.9);
  }
  100% {
    -webkit-transform: scale(1);
  }
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}

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

@-webkit-keyframes bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(30px);
  }
  80% {
    -webkit-transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(0);
  }
}

@keyframes bounceInDown {
  0% {
    opacity: 0;
    transform: translateY(-2000px);
  }
  60% {
    opacity: 1;
    transform: translateY(30px);
  }
  80% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

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

@-webkit-keyframes bounceInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(30px);
  }
  80% {
    -webkit-transform: translateX(-10px);
  }
  100% {
    -webkit-transform: translateX(0);
  }
}

@keyframes bounceInLeft {
  0% {
    opacity: 0;
    transform: translateX(-2000px);
  }
  60% {
    opacity: 1;
    transform: translateX(30px);
  }
  80% {
    transform: translateX(-10px);
  }
  100% {
    transform: translateX(0);
  }
}

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

@-webkit-keyframes bounceInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(-30px);
  }
  80% {
    -webkit-transform: translateX(10px);
  }
  100% {
    -webkit-transform: translateX(0);
  }
}

@keyframes bounceInRight {
  0% {
    opacity: 0;
    transform: translateX(2000px);
  }
  60% {
    opacity: 1;
    transform: translateX(-30px);
  }
  80% {
    transform: translateX(10px);
  }
  100% {
    transform: translateX(0);
  }
}

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

@-webkit-keyframes bounceInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(-30px);
  }
  80% {
    -webkit-transform: translateY(10px);
  }
  100% {
    -webkit-transform: translateY(0);
  }
}

@keyframes bounceInUp {
  0% {
    opacity: 0;
    transform: translateY(2000px);
  }
  60% {
    opacity: 1;
    transform: translateY(-30px);
  }
  80% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(0);
  }
}

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

@-webkit-keyframes bounceOut {
  0% {
    -webkit-transform: scale(1);
  }
  25% {
    -webkit-transform: scale(0.95);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.3);
  }
}

@keyframes bounceOut {
  0% {
    transform: scale(1);
  }
  25% {
    transform: scale(0.95);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
  100% {
    opacity: 0;
    transform: scale(0.3);
  }
}

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

@-webkit-keyframes bounceOutDown {
  0% {
    -webkit-transform: translateY(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateY(-20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
  }
}

@keyframes bounceOutDown {
  0% {
    transform: translateY(0);
  }
  20% {
    opacity: 1;
    transform: translateY(-20px);
  }
  100% {
    opacity: 0;
    transform: translateY(2000px);
  }
}

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

@-webkit-keyframes bounceOutLeft {
  0% {
    -webkit-transform: translateX(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateX(20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
  }
}

@keyframes bounceOutLeft {
  0% {
    transform: translateX(0);
  }
  20% {
    opacity: 1;
    transform: translateX(20px);
  }
  100% {
    opacity: 0;
    transform: translateX(-2000px);
  }
}

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

@-webkit-keyframes bounceOutRight {
  0% {
    -webkit-transform: translateX(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
  }
}

@keyframes bounceOutRight {
  0% {
    transform: translateX(0);
  }
  20% {
    opacity: 1;
    transform: translateX(-20px);
  }
  100% {
    opacity: 0;
    transform: translateX(2000px);
  }
}

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

@-webkit-keyframes bounceOutUp {
  0% {
    -webkit-transform: translateY(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateY(20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
  }
}

@keyframes bounceOutUp {
  0% {
    transform: translateY(0);
  }
  20% {
    opacity: 1;
    transform: translateY(20px);
  }
  100% {
    opacity: 0;
    transform: translateY(-2000px);
  }
}

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

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

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

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@-webkit-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}

@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    transform: translateY(-2000px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

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

@-webkit-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}

@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    transform: translateX(-2000px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

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

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

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

@-webkit-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}

@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    transform: translateX(2000px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

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

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@-webkit-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}

@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    transform: translateY(2000px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

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

@-webkit-keyframes fadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
  }
}

@keyframes fadeOutDown {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(20px);
  }
}

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

@-webkit-keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
  }
}

@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(2000px);
  }
}

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

@-webkit-keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
  }
}

@keyframes fadeOutLeft {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-20px);
  }
}

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

@-webkit-keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
  }
}

@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-2000px);
  }
}

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

@-webkit-keyframes fadeOutRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(20px);
  }
}

@keyframes fadeOutRight {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(20px);
  }
}

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

@-webkit-keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
  }
}

@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(2000px);
  }
}

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

@-webkit-keyframes fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
  }
}

@keyframes fadeOutUp {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-20px);
  }
}

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

@-webkit-keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
  }
}

@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-2000px);
  }
}

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

@-webkit-keyframes flip {
  0% {
    -webkit-transform: perspective(400px) rotateY(0);
    -webkit-animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg);
    -webkit-animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -webkit-animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) rotateY(360deg) scale(0.95);
    -webkit-animation-timing-function: ease-in;
  }
  100% {
    -webkit-transform: perspective(400px) scale(1);
    -webkit-animation-timing-function: ease-in;
  }
}

@keyframes flip {
  0% {
    transform: perspective(400px) rotateY(0);
    animation-timing-function: ease-out;
  }
  40% {
    transform: perspective(400px) translateZ(150px) rotateY(170deg);
    animation-timing-function: ease-out;
  }
  50% {
    transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    animation-timing-function: ease-in;
  }
  80% {
    transform: perspective(400px) rotateY(360deg) scale(0.95);
    animation-timing-function: ease-in;
  }
  100% {
    transform: perspective(400px) scale(1);
    animation-timing-function: ease-in;
  }
}

.flip {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flip;
  animation-name: flip;
}

@-webkit-keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateX(-10deg);
  }
  70% {
    -webkit-transform: perspective(400px) rotateX(10deg);
  }
  100% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}

@keyframes flipInX {
  0% {
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotateX(-10deg);
  }
  70% {
    transform: perspective(400px) rotateX(10deg);
  }
  100% {
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}

.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}

@-webkit-keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateY(-10deg);
  }
  70% {
    -webkit-transform: perspective(400px) rotateY(10deg);
  }
  100% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
}

@keyframes flipInY {
  0% {
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotateY(-10deg);
  }
  70% {
    transform: perspective(400px) rotateY(10deg);
  }
  100% {
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
}

.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}

@keyframes flipOutX {
  0% {
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
  100% {
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}

.flipOutX {
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}

@keyframes flipOutY {
  0% {
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
  100% {
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}

.flipOutY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}

@-webkit-keyframes lightSpeedIn {
  0% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: translateX(-20%) skewX(30deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: translateX(0%) skewX(-15deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
}

@keyframes lightSpeedIn {
  0% {
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
  60% {
    transform: translateX(-20%) skewX(30deg);
    opacity: 1;
  }
  80% {
    transform: translateX(0%) skewX(-15deg);
    opacity: 1;
  }
  100% {
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
}

.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOut {
  0% {
    -webkit-transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
}

@keyframes lightSpeedOut {
  0% {
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
  100% {
    transform: translateX(100%) 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 {
  0% {
    -webkit-transform-origin: center center;
    -webkit-transform: rotate(-200deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: center center;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateIn {
  0% {
    transform-origin: center center;
    transform: rotate(-200deg);
    opacity: 0;
  }
  100% {
    transform-origin: center center;
    transform: rotate(0);
    opacity: 1;
  }
}

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

@-webkit-keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateInDownLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    transform-origin: left bottom;
    transform: rotate(0);
    opacity: 1;
  }
}

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

@-webkit-keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateInDownRight {
  0% {
    transform-origin: right bottom;
    transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    transform-origin: right bottom;
    transform: rotate(0);
    opacity: 1;
  }
}

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

@-webkit-keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateInUpLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    transform-origin: left bottom;
    transform: rotate(0);
    opacity: 1;
  }
}

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

@-webkit-keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateInUpRight {
  0% {
    transform-origin: right bottom;
    transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    transform-origin: right bottom;
    transform: rotate(0);
    opacity: 1;
  }
}

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

@-webkit-keyframes rotateOut {
  0% {
    -webkit-transform-origin: center center;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: center center;
    -webkit-transform: rotate(200deg);
    opacity: 0;
  }
}

@keyframes rotateOut {
  0% {
    transform-origin: center center;
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    transform-origin: center center;
    transform: rotate(200deg);
    opacity: 0;
  }
}

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

@-webkit-keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    transform-origin: left bottom;
    transform: rotate(90deg);
    opacity: 0;
  }
}

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

@-webkit-keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownRight {
  0% {
    transform-origin: right bottom;
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    transform-origin: right bottom;
    transform: rotate(-90deg);
    opacity: 0;
  }
}

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

@-webkit-keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -transform-origin: left bottom;
    -transform: rotate(-90deg);
    opacity: 0;
  }
}

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

@-webkit-keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpRight {
  0% {
    transform-origin: right bottom;
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    transform-origin: right bottom;
    transform: rotate(90deg);
    opacity: 0;
  }
}

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

@-webkit-keyframes slideInDown {
  0% {
    -webkit-transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInDown {
  0% {
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}

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

@-webkit-keyframes slideInLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInLeft {
  0% {
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}

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

@-webkit-keyframes slideInRight {
  0% {
    -webkit-transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInRight {
  0% {
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}

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

@-webkit-keyframes slideInUp {
  0% {
    -webkit-transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInUp {
  0% {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}

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

@-webkit-keyframes slideOutDown {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(0, 100%, 0);
  }
}

@keyframes slideOutDown {
  0% {
    transform: translate3d(0, 0, 0);
    visibility: visible;
  }
  100% {
    transform: translate3d(0, 100%, 0);
  }
}

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

@-webkit-keyframes slideOutLeft {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(-100%, 0, 0);
  }
}

@keyframes slideOutLeft {
  0% {
    transform: translate3d(0, 0, 0);
    visibility: visible;
  }
  100% {
    transform: translate3d(-100%, 0, 0);
  }
}

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

@-webkit-keyframes slideOutRight {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(100%, 0, 0);
  }
}

@keyframes slideOutRight {
  0% {
    transform: translate3d(0, 0, 0);
    visibility: visible;
  }
  100% {
    transform: translate3d(100%, 0, 0);
  }
}

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

@-webkit-keyframes slideOutUp {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(0, -100%, 0);
  }
}

@keyframes slideOutUp {
  0% {
    transform: translate3d(0, 0, 0);
    visibility: visible;
  }
  100% {
    transform: translate3d(0, -100%, 0);
  }
}

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

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

@keyframes hinge {
  0% {
    transform: rotate(0);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    transform: rotate(80deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  40% {
    transform: rotate(60deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  80% {
    transform: rotate(60deg) translateY(0);
    opacity: 1;
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  100% {
    transform: translateY(700px);
    opacity: 0;
  }
}

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

@-webkit-keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%) rotate(-120deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
  }
}

@keyframes rollIn {
  0% {
    opacity: 0;
    transform: translateX(-100%) rotate(-120deg);
  }
  100% {
    opacity: 1;
    transform: translateX(0px) rotate(0deg);
  }
}

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

@-webkit-keyframes rollOut {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(100%) rotate(120deg);
  }
}

@keyframes rollOut {
  0% {
    opacity: 1;
    transform: translateX(0px) rotate(0deg);
  }
  100% {
    opacity: 0;
    transform: translateX(100%) rotate(120deg);
  }
}

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

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

@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}

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

@-webkit-keyframes zoomInDown {
  0% {
    opacity: 0;
    -webkit-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);
  }
  60% {
    opacity: 1;
    -webkit-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);
  }
}

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

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

@-webkit-keyframes zoomInLeft {
  0% {
    opacity: 0;
    -webkit-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);
  }
  60% {
    opacity: 1;
    -webkit-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);
  }
}

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

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

@-webkit-keyframes zoomInRight {
  0% {
    opacity: 0;
    -webkit-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);
  }
  60% {
    opacity: 1;
    -webkit-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);
  }
}

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

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

@-webkit-keyframes zoomInUp {
  0% {
    opacity: 0;
    -webkit-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);
  }
  60% {
    opacity: 1;
    -webkit-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);
  }
}

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

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

@-webkit-keyframes zoomOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
  }
  100% {
    opacity: 0;
  }
}

@keyframes zoomOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  100% {
    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);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  100% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform-origin: center bottom;
    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);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
  }
}

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  100% {
    opacity: 0;
    transform: scale3d(0.1) translate3d(-2000px, 0, 0);
    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);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
  }
}

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  100% {
    opacity: 0;
    transform: scale3d(0.1) translate3d(2000px, 0, 0);
    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);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

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

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

/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #000;
  opacity: 0.7;
  filter: alpha(opacity=70);
}

.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;
  -moz-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: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-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;
  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;
}

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: 1;
  filter: alpha(opacity=100);
  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;
  filter: alpha(opacity=100);
}

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

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

.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: 1;
  filter: alpha(opacity=100);
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

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

.mfp-arrow:hover, .mfp-arrow:focus {
  opacity: 1;
  filter: alpha(opacity=100);
}

.mfp-arrow:before, .mfp-arrow:after,
.mfp-arrow .mfp-b,
.mfp-arrow .mfp-a {
  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,
.mfp-arrow .mfp-a {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px;
}

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

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

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

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

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

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

.mfp-arrow-right:before,
.mfp-arrow-right .mfp-b {
  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: 1000px;
}

.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%;
  box-shadow: none;
  background: #000;
  outline: none;
}

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  -webkit-box-sizing: border-box;
  -moz-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;
  box-shadow: none;
  background: #000;
}

.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;
    -moz-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);
    transform: scale(0.75);
  }
  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0;
  }
  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%;
  }
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px;
  }
}

.mfp-ie7 .mfp-img {
  padding: 0;
}

.mfp-ie7 .mfp-bottom-bar {
  width: 600px;
  left: 50%;
  margin-left: -300px;
  margin-top: 5px;
  padding-bottom: 5px;
}

.mfp-ie7 .mfp-container {
  padding: 0;
}

.mfp-ie7 .mfp-content {
  padding-top: 44px;
}

.mfp-ie7 .mfp-close {
  top: 0;
  right: 0;
  padding-top: 0;
}

/* overlay at start */
.mfp-fade.mfp-bg {
  opacity: 0;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

/* overlay animate in */
.mfp-fade.mfp-bg.mfp-ready {
  opacity: 0.7;
}

/* overlay animate out */
.mfp-fade.mfp-bg.mfp-removing {
  opacity: 0;
}

content at start .mfp-fade.mfp-wrap .mfp-content {
  opacity: 0;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

/* content animate it */
.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
}

/* content animate out */
.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
}

.mfp-fade.mfp-wrap .mfp-arrow {
  opacity: 0;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.mfp-fade.mfp-wrap.mfp-ready .mfp-arrow {
  opacity: 1;
}

.mfp-fade.mfp-wrap.mfp-removing .mfp-arrow {
  opacity: 0;
}

/* 

====== Move-horizontal effect ======

*/
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
.footer .footer--inner .enquiries,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

.main-content ol, .main-content ul {
  margin-left: 2rem;
}

.main-content ol li, .main-content ul li {
  margin-bottom: 1rem;
}

.footer ol, .footer ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

:focus:not(:focus-visible) {
  outline: none;
}

/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */
html {
  color: #222;
  font-size: 1em;
  line-height: 1.4;
}

/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * Vendor-prefixed and regular ::selection selectors cannot be combined:
 * https://stackoverflow.com/a/16982510/7133471
 *
 * Customize the background color to match your design.
 */
::selection {
  background: #b3d4fc;
  text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */
audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */
fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */
textarea {
  resize: vertical;
}

/* autoprefixer: off */
html.show-grid {
  background: #FFF !important;
}

html.show-grid body {
  background: transparent !important;
}

html.show-grid body .gel-grid-overlay * {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html.show-grid body .gel-grid-overlay {
  z-index: -1;
  position: fixed;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
}

html.show-grid body .gel-grid-overlay__grid {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 1008px;
  margin: 0 auto;
  padding: 0 8px;
}

html.show-grid body .gel-grid-overlay__column {
  display: inline-block;
  height: 100%;
  width: 8.33333%;
  padding: 0 8px;
}

html.show-grid body .gel-grid-overlay__column-fill {
  background: rgba(255, 0, 0, 0.1);
  height: 100%;
}

html.show-grid body .gel-grid-overlay__margin {
  display: inline-block;
  height: 100%;
  width: 16px;
  position: absolute;
  top: 0;
  background: rgba(0, 255, 0, 0.1);
}

@media screen and (min-width: 400px) {
  html.show-grid body .gel-grid-overlay__grid {
    padding: 0 12px;
  }
  html.show-grid body .gel-grid-overlay__margin {
    width: 32px;
  }
}

@media screen and (min-width: 400px) and (min-width: 600px) {
  html.show-grid body .gel-grid-overlay__grid {
    padding: 0 16px;
  }
  html.show-grid body .gel-grid-overlay__column {
    padding: 0 16px;
  }
}

@media screen and (min-width: 400px) and (min-width: 1280px) {
  html.show-grid body .gel-grid-overlay__grid {
    max-width: 1280px;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.sr-only-focusable:active, .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  white-space: normal;
}

#wpadminbar {
  display: none;
}

@media (min-width: 65em) {
  #wpadminbar {
    display: block;
  }
}

body.admin-bar .appearing-nav {
  top: 46px;
}

@media (min-width: 48.9375em) {
  body.admin-bar .appearing-nav {
    top: 32px;
  }
}

html {
  font-family: "PT Sans", sans-serif !important;
  -webkit-font-smoothing: antialiased;
}

.button, .input-group input {
  font-family: "PT Sans", sans-serif !important;
}


h1,
.footer .footer--inner .enquiries, h2, h3, h4, h5, h6 {
  font-family: "Bebas Neue", serif !important;
  line-height: 1.4;
  margin: 1rem 0;
}

a {
  color: #006a4d;
  text-decoration: none;
  transition: 0.3s;
}

a span {
  color: #006a4d !important;
}

a:hover {
  text-decoration: underline;
}

body p {
  margin-bottom: 1rem;
  color: #000 !important;
}

body footer p {
  color: #FFF !important;
}

.bold, b, strong {
  font-weight: 700;
}

.bold {
  font-weight: 700;
}

.uppercase {
  text-transform: uppercase;
}

html {
  line-height: 1.5;
  font-size: 0.94118em;
}

@media (max-width: 480px) {
  html {
    font-size: 0.76471em;
  }
}

@media (max-width: 640px) {
  html {
    font-size: 0.82353em;
  }
}

@media (max-width: 1024px) {
  html {
    font-size: 0.88235em;
  }
}

i {
  font-style: italic;
}

html .underline, .footer .footer--inner a.underline {
  text-decoration: underline;
}

body.single .main-content p, body.single .main-content span, body.single .main-content div.row, body.single .main-content ul {
  font-family: "PT Sans", sans-serif !important;
  font-size: 1em !important;
  line-height: 1.625 !important;
}

@media (min-width: 46.25em) {
  body.single .main-content p, body.single .main-content span, body.single .main-content div.row, body.single .main-content ul {
    font-size: 20px !important;
    line-height: 1.6 !important;
  }
}

body.single .main-content span.blog-item--category {
  line-height: 1 !important;
  letter-spacing: 0px;
}

@media (min-width: 46.25em) {
  body.single .main-content span.blog-item--category {
    line-height: 1.3 !important;
  }
}

.main-content p, .main-content span, .main-content div.row, .main-content ul {
  font-family: "PT Sans", sans-serif !important;
  font-size: 20px;
  line-height: 1.6;
}

@media (min-width: 46.25em) {
  .main-content p, .main-content span, .main-content div.row, .main-content ul {
    font-size: 20px !important;
    line-height: 1.6;
  }
}

div.row div {
  margin-bottom: 1rem !important;
  display: block;
}

.main-content ul, .main-content ol {
  list-style: disc;
  margin-bottom: 1rem;
  font-size: 20px;
  line-height: 1.6;
}

figcaption {
  font-size: 14px;
  margin-bottom: 1rem;
  text-align: center;
}


h1,
.footer .footer--inner .enquiries, .type-h1 {
  font-size: 2.94118em;
  line-height: 1.1;
  font-family: "Bebas Neue", serif !important;
}

@media (max-width: 480px) {
  
  h1,
  .footer .footer--inner .enquiries, .type-h1 {
    font-size: 1.17647em;
  }
}

@media (max-width: 640px) {
  
  h1,
  .footer .footer--inner .enquiries, .type-h1 {
    font-size: 1.76471em;
  }
}

@media (max-width: 1024px) {
  
  h1,
  .footer .footer--inner .enquiries, .type-h1 {
    font-size: 2.35294em;
  }
}

h2, .type-h2 {
  font-size: 1.76471em;
  line-height: 1.1;
  font-family: "Bebas Neue", serif !important;
}

@media (max-width: 480px) {
  h2, .type-h2 {
    font-size: 0.58824em;
  }
}

@media (max-width: 640px) {
  h2, .type-h2 {
    font-size: 1.17647em;
  }
}

@media (max-width: 1024px) {
  h2, .type-h2 {
    font-size: 1.76471em;
  }
}

h3, .type-h3 {
  font-size: 2.47059em;
  line-height: 1.1;
  font-family: "Bebas Neue", serif !important;
}

@media (max-width: 480px) {
  h3, .type-h3 {
    font-size: 1.23529em;
  }
}

@media (max-width: 640px) {
  h3, .type-h3 {
    font-size: 1.64706em;
  }
}

@media (max-width: 1024px) {
  h3, .type-h3 {
    font-size: 2.05882em;
  }
}

h4, .type-h4 {
  font-size: 1.58824em;
  line-height: 1.4;
  font-family: "Bebas Neue", serif !important;
}

@media (max-width: 480px) {
  h4, .type-h4 {
    font-size: 1.05882em;
  }
}

@media (max-width: 640px) {
  h4, .type-h4 {
    font-size: 1.05882em;
  }
}

@media (max-width: 1024px) {
  h4, .type-h4 {
    font-size: 1.35294em;
  }
}

h5, .type-h5 {
  font-size: 1.23529em;
  line-height: 1.1;
  font-family: "Bebas Neue", serif !important;
}

@media (max-width: 480px) {
  h5, .type-h5 {
    font-size: 0.94118em;
  }
}

@media (max-width: 640px) {
  h5, .type-h5 {
    font-size: 0.94118em;
  }
}

@media (max-width: 1024px) {
  h5, .type-h5 {
    font-size: 1em;
  }
}

h6, .type-h6 {
  font-size: 0.94118em;
  line-height: 1.1;
  font-family: "Bebas Neue", serif !important;
}

@media (max-width: 480px) {
  h6, .type-h6 {
    font-size: 0.76471em;
  }
}

@media (max-width: 640px) {
  h6, .type-h6 {
    font-size: 0.82353em;
  }
}

@media (max-width: 1024px) {
  h6, .type-h6 {
    font-size: 0.88235em;
  }
}

.type-hero-heading {
  font-size: 2.94118em;
  line-height: 1.1;
  font-family: "Bebas Neue", serif !important;
}

@media (max-width: 480px) {
  .type-hero-heading {
    font-size: 1.17647em;
  }
}

@media (max-width: 640px) {
  .type-hero-heading {
    font-size: 1.76471em;
  }
}

@media (max-width: 1024px) {
  .type-hero-heading {
    font-size: 2.35294em;
  }
}

.type-primary-heading {
  font-size: 1.76471em;
  line-height: 1.1;
  font-family: "Bebas Neue", serif !important;
}

@media (max-width: 480px) {
  .type-primary-heading {
    font-size: 0.58824em;
  }
}

@media (max-width: 640px) {
  .type-primary-heading {
    font-size: 1.17647em;
  }
}

@media (max-width: 1024px) {
  .type-primary-heading {
    font-size: 1.76471em;
  }
}

.type-secondary-heading {
  font-size: 1.76471em;
  line-height: 1.1;
  font-family: "Bebas Neue", serif !important;
}

@media (max-width: 480px) {
  .type-secondary-heading {
    font-size: 0.58824em;
  }
}

@media (max-width: 640px) {
  .type-secondary-heading {
    font-size: 1.17647em;
  }
}

@media (max-width: 1024px) {
  .type-secondary-heading {
    font-size: 1.76471em;
  }
}

.type-sub-heading {
  font-size: 1.76471em;
  line-height: 1.1;
  font-family: "Bebas Neue", serif !important;
}

@media (max-width: 480px) {
  .type-sub-heading {
    font-size: 0.58824em;
  }
}

@media (max-width: 640px) {
  .type-sub-heading {
    font-size: 1.17647em;
  }
}

@media (max-width: 1024px) {
  .type-sub-heading {
    font-size: 1.76471em;
  }
}

.type-tertiary-heading {
  font-size: 1.76471em;
  line-height: 1.1;
  font-family: "Bebas Neue", serif !important;
}

@media (max-width: 480px) {
  .type-tertiary-heading {
    font-size: 0.58824em;
  }
}

@media (max-width: 640px) {
  .type-tertiary-heading {
    font-size: 1.17647em;
  }
}

@media (max-width: 1024px) {
  .type-tertiary-heading {
    font-size: 1.76471em;
  }
}

.type-small-heading {
  font-size: 1.76471em;
  line-height: 1.1;
  font-family: "Bebas Neue", serif !important;
}

@media (max-width: 480px) {
  .type-small-heading {
    font-size: 0.58824em;
  }
}

@media (max-width: 640px) {
  .type-small-heading {
    font-size: 1.17647em;
  }
}

@media (max-width: 1024px) {
  .type-small-heading {
    font-size: 1.76471em;
  }
}

.type-meta {
  font-size: 0.94118em;
  line-height: 1.1;
  font-family: "PT Sans", sans-serif !important;
}

@media (max-width: 480px) {
  .type-meta {
    font-size: 0.76471em;
  }
}

@media (max-width: 640px) {
  .type-meta {
    font-size: 0.82353em;
  }
}

@media (max-width: 1024px) {
  .type-meta {
    font-size: 0.88235em;
  }
}

.type-jumbo-paragraph {
  font-size: 1.58824em;
  line-height: 1.1;
  font-family: "PT Sans", sans-serif !important;
}

@media (max-width: 480px) {
  .type-jumbo-paragraph {
    font-size: 1.05882em;
  }
}

@media (max-width: 640px) {
  .type-jumbo-paragraph {
    font-size: 1.05882em;
  }
}

@media (max-width: 1024px) {
  .type-jumbo-paragraph {
    font-size: 1.35294em;
  }
}

.type-large-paragraph {
  font-size: 1.23529em;
  line-height: 1.1;
  font-family: "PT Sans", sans-serif !important;
}

@media (max-width: 480px) {
  .type-large-paragraph {
    font-size: 0.94118em;
  }
}

@media (max-width: 640px) {
  .type-large-paragraph {
    font-size: 0.94118em;
  }
}

@media (max-width: 1024px) {
  .type-large-paragraph {
    font-size: 1em;
  }
}

.type-paragraph {
  font-size: 0.94118em;
  line-height: 1.1;
  font-family: "PT Sans", sans-serif !important;
}

@media (max-width: 480px) {
  .type-paragraph {
    font-size: 0.76471em;
  }
}

@media (max-width: 640px) {
  .type-paragraph {
    font-size: 0.82353em;
  }
}

@media (max-width: 1024px) {
  .type-paragraph {
    font-size: 0.88235em;
  }
}

* {
  box-sizing: border-box;
  font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  color: #000;
  line-height: 1.4;
  background: #fbfbfb;
  max-width: 100% !important;
}

body .container {
  max-width: 1450px;
  position: relative;
  width: 100%;
  height: 100%;
  padding: 0 0.625rem;
  margin: 0 auto;
}

@media (min-width: 46.25em) {
  body .container {
    padding: 0 30px;
  }
}

body .container--narrow {
  max-width: 1000px;
  height: 100%;
  position: relative;
  margin: 0 auto;
  padding: 2rem 0;
}

body.single .container--narrow {
  padding: 0;
}

@media (min-width: 46.25em) {
  body.single .container--narrow {
    padding: 2rem 0;
  }
}

.main-content {
  overflow: hidden;
  margin-top: 60px;
}

@media (min-width: 65em) {
  .main-content {
    margin-top: 70px;
  }
}

.main-content article {
  width: 100%;
}

body.logged-in .main-content {
  margin-top: 60px;
}

@media (min-width: 65em) {
  body.logged-in .main-content {
    margin-top: 38px;
  }
}

.button {
  border: 1px solid #FFF;
  text-decoration: none;
  padding: 10px 40px;
  color: #000;
}

hr.small-hr {
  border-top: 2px solid #62a5a1;
  width: 11rem;
}

input.gform_button {
  background: #006a4d;
  color: #FFF;
  cursor: pointer;
  transition: 0.3s;
}

input.gform_button:hover {
  opacity: 0.8;
}

.ginput_container .gfield_select {
  max-width: 125px;
}

.tags a {
  display: inline-block;
  background: #D7A84E;
  margin-right: 1.25rem;
  padding: 0.375rem;
  text-decoration: none;
  color: white;
  position: relative;
  height: 1.75rem;
  box-sizing: border-box;
}

.tags a:hover, .tags a:focus {
  background: #c5912d;
}

/* class applies to select element itself, not a wrapper element */
.select-css {
  display: block;
  font-size: 16px;
  font-family: sans-serif;
  font-weight: 700;
  color: #444;
  line-height: 1.3;
  padding: .6em 1.4em .5em .8em;
  width: 100%;
  max-width: 100%;
  /* useful when width is set to anything other than 100% */
  box-sizing: border-box;
  margin: 0;
  border: 1px solid #aaa;
  box-shadow: 0 1px 0 1px rgba(0, 0, 0, 0.04);
  border-radius: .5em;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: #fff;
  /* note: bg image below uses 2 urls. The first is an svg data uri for the arrow icon, and the second is the gradient. 
		for the icon, if you want to change the color, be sure to use `%23` instead of `#`, since it's a url. You can also swap in a different svg icon or an external image reference
		
	*/
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23007CB2%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E"), linear-gradient(to bottom, #ffffff 0%, #e5e5e5 100%);
  background-repeat: no-repeat, repeat;
  /* arrow icon position (1em from the right, 50% vertical) , then gradient position*/
  background-position: right .7em top 50%, 0 0;
  /* icon size, then gradient */
  background-size: .65em auto, 100%;
}

/* Hide arrow icon in IE browsers */
.select-css::-ms-expand {
  display: none;
}

/* Hover style */
.select-css:hover {
  border-color: #888;
}

/* Focus style */
.select-css:focus {
  border-color: #aaa;
  /* It'd be nice to use -webkit-focus-ring-color here but it doesn't work on box-shadow */
  box-shadow: 0 0 1px 3px rgba(59, 153, 252, 0.7);
  box-shadow: 0 0 0 3px -moz-mac-focusring;
  color: #222;
  outline: none;
}

/* Set options to normal weight */
.select-css option {
  font-weight: normal;
}

/* Support for rtl text, explicit support for Arabic and Hebrew */
*[dir="rtl"] .select-css, :root:lang(ar) .select-css, :root:lang(iw) .select-css {
  background-position: left .7em top 50%, 0 0;
  padding: .6em .8em .5em 1.4em;
}

/* Disabled styles */
.select-css:disabled, .select-css[aria-disabled=true] {
  color: graytext;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22graytext%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E"), linear-gradient(to bottom, #ffffff 0%, #e5e5e5 100%);
}

.select-css:disabled:hover, .select-css[aria-disabled=true] {
  border-color: #aaa;
}

.sidebar-right {
  text-align: center;
  padding: 2rem 1rem;
  margin-bottom: 2rem;
  background: #f2f2f2;
  max-width: 850px;
}

.sidebar-right h4 {
  margin-bottom: 0;
  margin-top: 0;
}

@media (min-width: 46.25em) {
  .sidebar-right .sidebar-right--social-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
}

.sidebar-right .sidebar-right--social-container iframe {
  margin-top: 0;
  margin-bottom: 0;
}

.sidebar-right .sidebar-right--social-container .sidebar-right--social {
  padding: 3px 10px;
}

.sidebar-right .sidebar-right--social-container .sidebar-right--social a {
  color: #000;
}

.sidebar-right .sidebar-right--social-container .sidebar-right--social a:hover {
  color: #006a4d;
}

.sidebar-right .sidebar-right--social-container .sidebar-right--social .sidebar-right--social-instagram {
  background: radial-gradient(circle at 112% 123%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  color: #FFF;
  font-weight: bold;
  font-size: 13px;
  padding: 2px 9px;
  border-radius: 3px;
}

.sidebar-right .sidebar-right--social-container .sidebar-right--social .sidebar-right--social-instagram:hover {
  background: #e45353;
  color: #FFF;
  text-decoration: none;
}

.sidebar-right .sidebar-right--social-container .sidebar-right--social .fb-like.fb_iframe_widget iframe {
  height: 20px !important;
  margin-top: 0;
}

.sidebar-right .sidebar--categories {
  margin-top: 2rem;
  display: none;
}

@media (min-width: 65em) {
  .sidebar-right .sidebar--categories {
    display: block;
  }
}

.widget_sib_subscribe_form, .sib_signup_form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  color: #FFF;
}

@media (min-width: 46.25em) {
  .widget_sib_subscribe_form, .sib_signup_form {
    flex-direction: row;
  }
}

.widget_sib_subscribe_form h6, .sib_signup_form h6 {
  font-size: 1.58824em;
  margin: 1rem 0 0;
}

.widget_sib_subscribe_form p.sib-email-area, .sib_signup_form p.sib-email-area {
  margin: 0 10px 0 0;
  width: 100%;
}

.widget_sib_subscribe_form p, .sib_signup_form p {
  margin-bottom: 0;
}

.widget_sib_subscribe_form input.sib-email-area, .sib_signup_form input.sib-email-area {
  font-size: 14px;
  width: 100%;
  padding: 9px;
  border: none;
  font-family: "PT Sans", sans-serif !important;
}

@media (min-width: 65em) {
  .widget_sib_subscribe_form input.sib-email-area, .sib_signup_form input.sib-email-area {
    width: 300px;
  }
}

.widget_sib_subscribe_form input.sib-default-btn, .sib_signup_form input.sib-default-btn {
  font-family: "PT Sans", sans-serif !important;
  border: none;
  border-radius: 0;
  padding: 11px 20px;
  cursor: pointer;
  background: #FFF;
}

.widget_sib_subscribe_form .sib_signup_box_inside_1, .sib_signup_form .sib_signup_box_inside_1 {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.sidebar {
  background: #006a4d;
  padding: 0.75rem 0;
}

.sidebar .sib_signup_form {
  padding: 10px 0;
}

@media (min-width: 46.25em) {
  .sidebar .sib_signup_form {
    padding: 10px 10px;
  }
}

.pagination {
  width: 100%;
  text-align: center;
  margin-bottom: 2rem;
}

.pagination span.current, .pagination a.inactive {
  padding: 0.5rem;
}

.blog-listing {
  margin-bottom: 2.5rem;
}

.main-content .blog-container {
  display: flex;
  justify-content: space-between;
  -webkit-flex-flow: row wrap;
}

.main-content .blog-item {
  width: 100%;
  padding-bottom: 2rem;
}

@media only screen and (min-width: 500px) and (max-width: 1039px) {
  .main-content .blog-item {
    width: 49%;
  }
}

@media (min-width: 65em) {
  .main-content .blog-item {
    width: 32%;
  }
}

.main-content .blog-item .blog-item--link {
  width: 100%;
}

.main-content .blog-item .blog-item--link:focus {
  outline: none;
}

.main-content .blog-item .blog-item--link:hover .blog-item--image {
  opacity: 0.5;
}

.main-content .blog-item .blog-item--link .blog-item--image {
  border: 1px solid #eeeeee;
  transition: 0.5s;
}

.main-content .blog-item iframe {
  display: none;
}

.main-content .blog-item .featured-image--wrapper .featured-image {
  height: auto;
  border: 1px solid #eeeeee;
  max-height: 200px;
  transition: 0.3s;
}

@media (min-width: 46.25em) {
  .main-content .blog-item .featured-image--wrapper .featured-image {
    max-height: 300px;
  }
}

.main-content .blog-item a {
  display: inline-block;
  text-decoration: none;
  color: #3c3c3c;
}

.main-content .blog-item a:hover .featured-image {
  opacity: 0.6;
}

.main-content .blog-item .date {
  margin-top: 1rem;
}

.main-content .blog-item .date, .main-content .blog-item span.blog-item--category {
  text-transform: uppercase;
  font-size: 14px;
  line-height: 1 !important;
}

.main-content .blog-item .entry-title {
  margin: 0.5rem 0 1rem 0;
  font-weight: 100;
  font-size: 22px;
}

@media (min-width: 46.25em) {
  .main-content .blog-item .entry-title {
    font-size: 1.58824em;
  }
}

.main-content .blog-item .blog-item--category a {
  color: #006a4d;
}

.main-content span.blog-item--category:not(:last-child):after {
  content: ' / ';
}

.main-content .latest-posts .blog-item {
  border-bottom: none;
}

.main-content .latest-posts .blog-item .entry-title {
  color: #000;
}

#post-nav {
  margin-bottom: 2rem;
}

#post-nav .post-previous {
  text-align: right;
  float: right;
}

#post-nav .post-next {
  text-align: left;
}

.blog-item--category {
  color: #006a4d;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.blog-item--category a {
  color: #006a4d;
  font-size: 12px;
  text-decoration: none;
}

.blog-listing__title a {
  text-decoration: none;
  color: #D7A84E;
}

.comments-area {
  padding: 1.25rem;
  background: #fafafa;
}

.comments-area label {
  display: block;
  margin-bottom: 0.625rem;
}

.comments-area input[type=email],
.comments-area input[type=text],
.comments-area textarea {
  width: 100%;
  display: block;
  margin-bottom: 2.5rem;
  padding: 0.625rem;
  border: 1px solid whitesmoke;
}

.comments-area input[type=submit] {
  border: none;
  background: #D7A84E;
}

.comments-area .comments {
  padding: 0;
  margin-bottom: 2.5rem;
}

.comments-area .comments li {
  background: white;
  list-style-type: none;
  padding: 1.25rem;
  margin-bottom: 1.25rem;
}

body.menu-is-open .off-canvas-menu {
  transform: none;
}

body.menu-is-open .hamburger--label__closed {
  display: none;
}

body.menu-is-open .hamburger--label__open {
  display: block;
}

.site-header {
  position: fixed;
  height: 60px;
  top: 0;
  text-transform: uppercase;
  margin-bottom: 0;
  background: #FFF;
  width: 100%;
  z-index: 5;
  box-shadow: 0 2px 13px -2px rgba(0, 0, 0, 0.2);
}

@media (min-width: 65em) {
  .site-header {
    height: 70px;
  }
}

.site-header a {
  font-family: "Bebas Neue", serif !important;
}

.site-header a.logo {
  font-size: 32px;
}

.site-header a.logo:hover {
  text-decoration: none;
}

.site-header .menu-item.social {
  font-size: 19px;
}

.site-header .menu-item {
  font-size: 22px;
}

.site-header--mobile-header {
  z-index: 10;
  position: relative;
  height: 60px;
  list-style: none;
  direction: ltr;
  text-align: left;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-flex-grow: 1;
  -ms-flex-grow: 1;
  flex-grow: 1;
  margin-right: 0;
  margin-left: -16px;
  padding-right: 0;
  padding-left: 0;
}

@media (min-width: 46.25em) {
  .site-header--mobile-header {
    margin-left: -32px;
  }
}

@media (min-width: 65em) {
  .site-header--mobile-header {
    display: none;
  }
}

.site-header--mobile-header--left {
  width: 100%;
  display: inline-block;
  padding-left: 16px;
  text-align: left;
  vertical-align: top;
  width: 66.66667%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}

@media (min-width: 46.25em) {
  .site-header--mobile-header--left {
    padding-left: 32px;
  }
}

.site-header--mobile-header--right {
  width: 100%;
  display: inline-block;
  padding-left: 16px;
  text-align: left;
  vertical-align: top;
  width: 33.33333%;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
}

@media (min-width: 46.25em) {
  .site-header--mobile-header--right {
    padding-left: 32px;
  }
}

.site-header--mobile-header .hamburger:focus {
  outline: none;
}

.site-header--mobile-header svg {
  display: block;
  margin: 0;
  width: 30px;
}

@media only screen and (min-width: 768px) {
  .site-header--mobile-header svg {
    margin: 0 2rem;
    max-width: 45px;
  }
}

.site-header--mobile-header .hamburger--label__closed {
  display: block;
}

.site-header--mobile-header .hamburger--label__open {
  display: none;
}

.site-header--desktop-header {
  display: none;
  padding: 1rem 0;
}

@media (min-width: 65em) {
  .site-header--desktop-header {
    list-style: none;
    direction: ltr;
    text-align: left;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-flow: row wrap;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-flex-grow: 1;
    -ms-flex-grow: 1;
    flex-grow: 1;
    margin-right: 0;
    margin-left: -16px;
    padding-right: 0;
    padding-left: 0;
    display: flex;
  }
}

@media (min-width: 65em) and (min-width: 46.25em) {
  .site-header--desktop-header {
    margin-left: -32px;
  }
}

.site-header--desktop-header--left {
  width: 100%;
  display: inline-block;
  padding-left: 16px;
  text-align: left;
  vertical-align: top;
  width: 25%;
}

@media (min-width: 46.25em) {
  .site-header--desktop-header--left {
    padding-left: 32px;
  }
}

.site-header--desktop-header--right {
  width: 100%;
  display: inline-block;
  padding-left: 16px;
  text-align: left;
  vertical-align: top;
  width: 75%;
}

@media (min-width: 46.25em) {
  .site-header--desktop-header--right {
    padding-left: 32px;
  }
}

.site-header--desktop-header--right ul {
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
}

.site-header--desktop-header--right ul li {
  padding: 0 1rem;
  position: relative;
}

.site-header--desktop-header svg {
  display: block;
  margin: 0 2rem;
  max-width: 30px;
}

@media only screen and (min-width: 768px) {
  .site-header--desktop-header svg {
    margin: 0 2rem;
    max-width: 45px;
  }
}

.searchbar {
  transform: translateY(-200px);
  max-width: 100%;
  width: 100%;
  padding: 15px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background: #006a4d;
}

@media (min-width: 65em) {
  .searchbar {
    height: 100px;
    padding: 30px;
  }
}

.searchbar form#searchform {
  display: block;
}

.searchbar form#searchform .input-group {
  display: table;
  margin: 0 auto;
}

@media (min-width: 65em) {
  .searchbar form#searchform .input-group {
    width: 30px;
  }
}

.searchbar form#searchform .input-group input#s {
  width: 240px;
  padding: 10px;
  border: none;
}

@media (min-width: 65em) {
  .searchbar form#searchform .input-group input#s {
    width: 320px;
  }
}

.searchbar form#searchform .input-group .input-group-button {
  display: table-cell;
}

.searchbar form#searchform .input-group .input-group-button .button {
  padding: 9px 20px;
  cursor: pointer;
}

body.search-active .searchbar {
  transform: translateY(0);
}

li.menu-item.menu-item-has-children > a {
  position: relative;
  text-decoration: none;
}

li.menu-item.menu-item-has-children > a:hover {
  color: initial;
}

li.menu-item.menu-item-has-children > a:after {
  content: url(../../src/images/down-arrow.svg);
  width: 12px;
  right: -1.5rem;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media (min-width: 65em) {
  li.menu-item.menu-item-has-children > a:after {
    right: -1rem;
  }
}

nav ul {
  list-style: none;
}

nav ul li:before {
  text-align: center;
  background-size: contain;
  background-repeat: no-repeat;
  left: 0;
  right: 0;
  position: absolute;
  bottom: 0;
}

@media (min-width: 65em) {
  nav ul li:before {
    right: auto;
  }
}

nav ul li a {
  color: #3c3c3c;
  text-decoration: none;
  transition: 0.3s;
}

nav ul li a:hover {
  color: #006a4d;
}

nav ul li.current_page_item a {
  color: #006a4d;
}

nav ul .social a {
  display: block;
}

@media (min-width: 65em) {
  nav ul .social a {
    margin: -10px 0 0 10px;
  }
}

nav ul .social a:before {
  content: none !important;
}

nav ul .social a.fa-facebook a:before {
  content: "\f09a";
}

nav ul .social a span {
  text-indent: -9999rem;
  display: block;
}

nav ul .social a:after {
  font-family: FontAwesome;
  text-align: center;
  background-size: contain;
  background-repeat: no-repeat;
  left: 0;
  right: 0;
  bottom: 0;
}

@media (min-width: 65em) {
  nav ul .social a:after {
    position: absolute;
  }
}

nav ul .social a:before {
  content: none !important;
}

nav ul .fa-twitter:before, nav ul .fa-facebook:before, nav ul .fa-youtube:before,
nav ul .fa-instagram:before, nav ul .fa-rss:before {
  content: none !important;
}

nav ul .fa-facebook a:after {
  content: "\f09a";
}

nav ul .fa-twitter a:after {
  content: "\f099";
}

nav ul .fa-youtube a:after {
  content: "\f167";
}

nav ul .fa-instagram a:after {
  content: "\f16d";
}

nav ul .fa-facebook a:after {
  content: "\f09a";
}

nav ul .fa-rss a:after {
  content: "\f09e";
}

nav ul .fa-search a:after {
  content: "\f002";
}

nav ul .fa-search:before {
  content: "";
}

nav ul.dropdown.menu.vertical {
  visibility: hidden;
  opacity: 0;
  transform: translateY(0);
  transition: 0.3s;
  display: table;
  box-shadow: 0 2px 13px -2px rgba(0, 0, 0, 0.2);
  position: absolute;
  width: 300px;
  border-top: 3px solid #006a4d;
  top: 51px;
  left: 0;
  height: 100%;
  background: #f8f8f8;
}

nav ul.dropdown.menu.vertical li {
  margin: 0.5rem 0;
}

nav li.menu-item-has-children:hover ul.dropdown.menu.vertical {
  visibility: visible;
  opacity: 1;
  transform: translateY(-5px);
}

.menu-item-has-children {
  position: relative;
}

ul.vertical.nested.menu {
  max-height: 0;
  transition: 0.3s ease-out;
  visibility: hidden;
  opacity: 0;
}

.dropdown-active .vertical.nested.menu {
  max-height: 350px;
  padding-bottom: 5px;
  transition: 0.3s ease-out;
  visibility: visible;
  opacity: 1;
  transform: translateX(5px);
}

.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  background: #1e1e1e;
}

.off-canvas-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  background: #FFF;
  z-index: 5;
  transform: translateX(110%);
  will-change: transform;
  transition: transform 230ms ease-in-out;
}

@media (min-width: 65em) {
  .off-canvas-menu {
    display: none;
  }
}

.off-canvas-menu ul#menu-main-menu {
  margin: 2rem;
  width: auto;
  top: 4rem;
  position: absolute;
  font-size: 16px;
}

.off-canvas-menu ul#menu-main-menu li {
  font-size: 20px;
  margin: 0 0 5px 0;
}

.off-canvas-menu ul#menu-main-menu ul.nested li {
  font-size: 16px;
}

.off-canvas-menu ul#menu-main-menu .social a:hover {
  text-decoration: none;
}

.off-canvas-menu ul#menu-main-menu li.social a:after {
  font-size: 25px;
  margin: 7px;
}

.off-canvas-menu ul.nested li {
  font-size: 16px;
}

.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
  background-color: #000;
}

.main-content .section-block--content-wrap {
  list-style: none;
  direction: ltr;
  text-align: left;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-flex-grow: 1;
  -ms-flex-grow: 1;
  flex-grow: 1;
  margin-right: 0;
  margin-left: -16px;
  padding-right: 0;
  padding-left: 0;
}

@media (min-width: 46.25em) {
  .main-content .section-block--content-wrap {
    margin-left: -32px;
  }
}

.section-block--inner-wrap {
  max-width: 1008px;
  margin: 0 auto;
  padding-right: 16px;
  padding-left: 16px;
}

@media (min-width: 46.25em) {
  .section-block--inner-wrap {
    padding-left: 32px;
    padding-right: 32px;
  }
}

@media (min-width: 80em) {
  .section-block--inner-wrap {
    max-width: 1280px;
  }
}

.section-block--content-wrap {
  list-style: none;
  direction: ltr;
  text-align: left;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-flex-grow: 1;
  -ms-flex-grow: 1;
  flex-grow: 1;
  margin-right: 0;
  margin-left: -16px;
  padding-right: 0;
  padding-left: 0;
  z-index: 1;
  position: relative;
}

@media (min-width: 46.25em) {
  .section-block--content-wrap {
    margin-left: -32px;
  }
}

.section-block--content {
  width: 100%;
  display: inline-block;
  padding-left: 16px;
  text-align: left;
  vertical-align: top;
}

@media (min-width: 46.25em) {
  .section-block--content {
    padding-left: 32px;
  }
}

.section-block h1, .section-block .footer .footer--inner .enquiries, .footer .footer--inner .section-block .enquiries, .section-block h2, .section-block h3, .section-block h4, .section-block h5, .section-block h6 {
  margin-top: 0;
}

.section-block__blue {
  background: #236EA5;
}

.footer {
  background: #024731;
  padding: 25px 0;
}

@media (min-width: 46.25em) {
  .footer {
    padding: 50px 0;
    text-align: left;
  }
}

.footer .footer--inner {
  color: #FFF;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer .footer--inner a {
  color: #FFF;
  text-decoration: none;
}

.footer .footer--inner p, .footer .footer--inner li {
  font-size: 16px !important;
}

@media (min-width: 46.25em) {
  .footer .footer--inner p, .footer .footer--inner li {
    font-size: 17px !important;
  }
}

.footer .footer--inner .footer-block--socials {
  margin: 2rem 0 2rem;
}

@media (min-width: 46.25em) {
  .footer .footer--inner .footer-block--socials {
    margin: 2rem 0 3rem;
  }
}

.footer .footer--inner .footer-block--socials i.fab, .footer .footer--inner .footer-block--socials i.fas {
  font-size: 27px;
  margin-right: 1rem;
  transition: 0.3s;
}

.footer .footer--inner .footer-block--socials i.fab:hover, .footer .footer--inner .footer-block--socials i.fas:hover {
  color: #006a4d;
}

.footer .footer--inner ul li {
  margin: 5px 0;
}

@media (min-width: 46.25em) {
  .footer .footer--inner ul li {
    margin: 10px 0;
  }
}

.footer .footer--inner ul li a {
  transition: 0.3s;
}

.footer .footer--inner ul li a:hover {
  color: #006a4d;
}

.footer .footer--inner .footer-block--nav {
  margin-top: 2rem;
}

@media (min-width: 46.25em) {
  .footer .footer--inner .footer-block--nav {
    text-align: right;
    margin-top: 0;
  }
}

@media only screen and (min-width: 768px) {
  .footer .footer--inner {
    display: flex;
    justify-content: space-between;
  }
}

.footer .footer--inner h1, .footer .footer--inner .enquiries {
  font-size: 1.6rem;
  line-height: 1;
}

@media only screen and (min-width: 768px) {
  .footer .footer--inner h1, .footer .footer--inner .enquiries {
    margin: 30px 40px;
    font-size: 2.4rem;
  }
}

.featured-image--wrapper .featured-image {
  width: 100%;
  margin: 0;
}

.single .main-content .article-header {
  display: flex;
  flex-direction: column;
}

.single .main-content .article-header .article-header--image {
  margin-bottom: 1rem;
  margin-left: -0.625rem;
  margin-right: -0.625rem;
}

@media (min-width: 46.25em) {
  .single .main-content .article-header .article-header--image {
    margin-left: 0;
    margin-right: 0;
  }
}

.single .main-content .article-header .article-header--text {
  order: 2;
}

.single .main-content .article-header .article-header--categories {
  order: 3;
}

@media (min-width: 46.25em) {
  .single .main-content .article-header .article-header--text {
    order: 1;
  }
  .single .main-content .article-header .article-header--categories {
    order: 3;
  }
}

.single .main-content a img {
  pointer-events: none;
  cursor: default;
}

.single .entry-title {
  left: 0.625rem;
  color: #FFF;
  font-weight: 100;
  z-index: 1;
  max-width: 60rem;
}

@media (min-width: 65em) {
  .single .entry-title {
    bottom: 2rem;
    left: 0;
  }
}

.single img {
  height: auto;
}

.single img {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.entry-content figure {
  width: 100% !important;
}

.entry-content figure img {
  height: auto;
}

.entry-content div {
  margin-bottom: 2rem;
}

.entry-content .sidebar-right div {
  margin-bottom: 0;
}

.entry-content span {
  color: #000 !important;
}

.entry-content a span {
  color: #006a4d !important;
}

header {
  position: relative;
}

header h2.entry-title {
  position: absolute;
  bottom: 0;
  color: #FFF;
}

@media (min-width: 65em) {
  header h2.entry-title {
    font-size: 4em;
  }
}

header .featured-image--fade {
  position: absolute;
  background: linear-gradient(185deg, rgba(0, 0, 0, 0) 33%, rgba(0, 0, 0, 0.9) 100%);
  height: 27vh;
  width: 100%;
  bottom: 0;
}

.blog header .entry-title {
  position: initial;
}

.blog header .featured-image--fade {
  display: none;
}

.cta-banner {
  background: #006a4d;
  color: #FFF;
}

.cta-banner .cta-banner--copy {
  font-family: "PT Sans", sans-serif !important;
}

.cta-banner .cta-banner--inner {
  padding: 30px 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cta-banner .cta-banner--inner .button {
  color: #FFF;
}

.single-item .home-slider--image, .single-item .home-slider--copy-wrapper {
  display: none;
}

.single-item .home-slider--image:first-child {
  display: block;
}

.single-item.slick-initialized .home-slider--image, .single-item.slick-initialized .home-slider--copy-wrapper {
  display: block;
}

.slick-slide {
  backface-visibility: hidden;
}

.slick-slide,
.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-perspective: 1000;
  -moz-perspective: 1000;
  -ms-perspective: 1000;
  perspective: 1000;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  backface-visibility: hidden;
}

.home-slider {
  max-width: 100%;
  margin-bottom: 0;
}

.home-slider--image {
  width: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  border-bottom: 0;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

.home-slider--image .home-slider--inner {
  position: relative;
  height: 100%;
  width: 100%;
  display: block;
  color: #FFF;
}

.home-slider--image .home-slider--inner .home-slider--fade {
  position: absolute;
  bottom: 0;
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.9) 100%);
  height: 50%;
  width: 100%;
}

@media (min-width: 46.25em) {
  .home-slider--image .home-slider--inner .home-slider--fade {
    height: 30%;
  }
}

.home-slider--image .home-slider--inner .home_slider--text-area {
  position: absolute;
  bottom: 3rem;
  text-align: center;
  max-width: 100%;
  width: 100%;
}

@media (min-width: 46.25em) {
  .home-slider--image .home-slider--inner .home_slider--text-area {
    left: 2rem;
    text-align: left;
  }
}

.home-slider--image .home-slider--inner .home_slider--text-area hr.small-hr {
  display: none;
}

.home-slider--image .home-slider--inner .home_slider--text-area .home-slider--header {
  font-size: 60px;
  margin-bottom: 0;
  line-height: 1.1;
}

@media (min-width: 46.25em) {
  .home-slider--image .home-slider--inner .home_slider--text-area .home-slider--header {
    font-size: 90px;
    line-height: 0.9;
  }
}

.home-slider--image .home-slider--inner .home_slider--text-area .home-slider--header, .home-slider--image .home-slider--inner .home_slider--text-area .home-slider--blurb {
  max-width: 100vw;
  margin: 0 auto;
}

@media (min-width: 46.25em) {
  .home-slider--image .home-slider--inner .home_slider--text-area .home-slider--header, .home-slider--image .home-slider--inner .home_slider--text-area .home-slider--blurb {
    max-width: 40%;
    margin: 0;
  }
}

.home-slider--image .home-slider--inner .home_slider--text-area .home-slider--blurb {
  font-family: "PT Sans", sans-serif !important;
  margin-top: 0;
  font-size: 23px;
}

@media (min-width: 46.25em) {
  .home-slider--image .home-slider--inner .home_slider--text-area .home-slider--blurb {
    font-size: 30px;
  }
}

.single-item.home-slider, .home-slider.slick-slider .home-slider--image {
  height: 92vh;
}

.featured-posts .slick-list {
  padding: 0 5rem 0 0;
}

.featured-posts .slick-disabled {
  display: none !important;
}

.featured-posts .blog-item {
  padding-right: 2rem;
}

.single-item .slick-next, .single-item .slick-prev, .featured-posts .slick-next, .featured-posts .slick-prev {
  background: rgba(148, 148, 148, 0.5);
  transition: 0.3s;
  border-radius: 5px;
  color: #FFF;
  position: absolute;
  z-index: 2;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  padding: 6px;
  width: 25px;
  height: 25px;
  cursor: pointer;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-item .slick-next:hover, .single-item .slick-prev:hover, .featured-posts .slick-next:hover, .featured-posts .slick-prev:hover {
  background: rgba(148, 148, 148, 0.8);
}

@media (max-width: medium) {
  .single-item .slick-next, .single-item .slick-prev, .featured-posts .slick-next, .featured-posts .slick-prev {
    padding: 10px;
    width: 45px;
    height: 45px;
  }
}

.single-item img.slick-arrow, .featured-posts img.slick-arrow {
  width: 40px;
  height: 40px;
}

.single-item .slick-next, .featured-posts .slick-next {
  right: 10px;
}

.single-item .slick-prev, .featured-posts .slick-prev {
  left: 10px;
}

@media (max-width: medium) {
  .single-item, .featured-posts {
    margin-bottom: 4rem;
  }
  .single-item .slick-prev, .featured-posts .slick-prev {
    left: -4px;
  }
  .single-item .slick-next, .featured-posts .slick-next {
    right: -4px;
  }
  .single-item .slick-prev, .single-item .slick-next, .featured-posts .slick-prev, .featured-posts .slick-next {
    height: 45px;
    width: 45px;
    transition: 0.3s;
  }
}

.single-item button.slick-prev.slick-arrow, .featured-posts button.slick-prev.slick-arrow {
  left: 25px;
  z-index: 1;
}

.single-item button.slick-next.slick-arrow, .featured-posts button.slick-next.slick-arrow {
  right: 25px;
  z-index: 1;
}

.featured-posts .slick-next, .featured-posts .slick-prev {
  background: white;
  box-shadow: 1px 5px 6px 1px rgba(0, 0, 0, 0.4);
  top: 30%;
}

.featured-posts .slick-next:hover, .featured-posts .slick-prev:hover {
  background: white;
}

.featured-posts .slick-next {
  right: -20px;
}

.featured-posts .slick-prev {
  left: -20px;
}

.single-item {
  overflow: hidden;
  background: #808080;
  margin-bottom: 1rem;
}

.single-item .slick-slide {
  background-position: center center;
  background-repeat: no-repeat;
  border-bottom: 0;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  height: 80vh;
}

.single-item .slick-slide .home-slider--filter {
  background: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
  position: relative;
}

.intro-text {
  text-align: center;
  margin-bottom: 1rem;
}

@media (max-width: medium) {
  .intro-text {
    margin-bottom: 4rem;
  }
}

.slick-dots li {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 20px;
  height: 20px;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}

.slick-dots li button:before {
  content: '•';
  font-size: 30px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  text-align: center;
  opacity: .25;
  color: black;
}

.slick-dots li.slick-active button:before {
  opacity: .75;
}

.home-testimonials {
  background-position: center center;
  background-repeat: no-repeat;
  border-bottom: 0;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  text-align: center;
}

.home-testimonials .home-testimonials--inner {
  background: rgba(0, 0, 0, 0.8);
  color: #FFF;
}

.home-testimonials .home-testimonials--inner .container--narrow {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}

.home-testimonials .home-testimonials--inner .container--narrow .home-testimonials--quote {
  width: 50%;
  margin: 1rem 0;
}

@media (min-width: 65em) {
  .home-testimonials .home-testimonials--inner .container--narrow .home-testimonials--quote {
    width: 33%;
  }
}

.home-testimonials .home-testimonials--inner .container--narrow .home-testimonials--quote .home-testimonials--header {
  margin-bottom: 0;
}

.home-testimonials .home-testimonials--inner .container--narrow .home-testimonials--quote .home-testimonials--author {
  font-size: 14px !important;
}

.intro-block {
  padding: 20px 0 0 0;
}

@media (min-width: 46.25em) {
  .intro-block {
    padding: 40px 0 50px;
  }
}

.intro-block .intro-block--text {
  margin: 0;
}

.intro-block .intro-block--card-large {
  margin-bottom: 1rem;
}

@media (min-width: 46.25em) {
  .intro-block .intro-block--card-large {
    width: 80%;
  }
}

.intro-block .intro-block--card-large .intro-block--text {
  line-height: 1.2;
}

.intro-block .intro-block--card-large .intro-block--text p {
  font-family: "Bebas Neue", serif !important;
  font-size: 0.94118em;
}

@media (min-width: 46.25em) {
  .intro-block .intro-block--card-small {
    width: 80%;
    margin-left: 20%;
  }
}

.intro-block .intro-block--card-small p, .intro-block .intro-block--card-small span, .intro-block .intro-block--card-small a {
  font-size: 20px !important;
}

.home .intro-block {
  padding: 0;
}

@media (min-width: 46.25em) {
  .home .intro-block {
    padding: 40px 0 50px;
  }
}

.page-intro-block .container .container--narrow {
  margin: 0;
  padding: 0 0 2rem;
}

@media (min-width: 46.25em) {
  .page-intro-block .container .container--narrow .intro-block .intro-block--card-small {
    width: 100%;
    margin-left: 0;
  }
}

.iframe-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}

.iframe-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.videos .iframe-container {
  overflow: visible;
  padding-bottom: 0;
  margin: 0;
  height: 190px;
}

@media (min-width: 46.25em) {
  .videos .iframe-container {
    height: 250px;
  }
}

.videos .iframe-container iframe {
  display: block !important;
  position: relative;
}

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

.home-thumbnails .home-thumbnails--header {
  margin-bottom: 2rem;
}

.home-thumbnails .home-testimonials--inner {
  display: flex;
  justify-content: space-between;
}

.home-thumbnails .home-testimonials--inner .home-thumbnails--card {
  background-position: center center;
  background-repeat: no-repeat;
  border-bottom: 0;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  position: relative;
  height: 30vh;
  max-height: 250px;
  width: 32%;
}

.home-thumbnails .home-testimonials--inner .home-thumbnails--card a.home-thumbnails--card-link {
  position: absolute;
  bottom: 0;
  left: 0;
  color: #FFF;
  position: absolute;
  bottom: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.9) 90%);
  height: 100%;
  width: 100%;
}

.home-thumbnails .home-testimonials--inner .home-thumbnails--card a.home-thumbnails--card-link .home-thumbnails--card-title {
  position: absolute;
  bottom: 0;
  left: 2rem;
  text-align: left;
}

.page-template-template-videos .videos--youtube-signup {
  text-align: center;
  margin: 0 auto 4rem auto;
}

.page-template-template-videos a.popup-youtube {
  display: block;
}

.page-template-template-videos a.popup-youtube .popup-youtube--inner {
  position: relative;
}

.page-template-template-videos a.popup-youtube .popup-youtube--inner img.popup-youtube--thumbnail {
  transition: 0.3s;
  backface-visibility: hidden;
}

@media (min-width: 46.25em) {
  .page-template-template-videos a.popup-youtube .popup-youtube--inner img.popup-youtube--thumbnail {
    min-height: 150px;
  }
}

@media (min-width: 65em) {
  .page-template-template-videos a.popup-youtube .popup-youtube--inner img.popup-youtube--thumbnail {
    min-height: 250px;
  }
}

.page-template-template-videos a.popup-youtube .popup-youtube--inner img.popup-youtube--thumbnail:hover {
  opacity: 0.5;
}

.page-template-template-videos a.popup-youtube .popup-youtube--inner img.popup-youtube--icon {
  position: absolute;
  bottom: 15px;
  right: 15px;
  height: 25px;
}

.page-template-template-videos a.more-link {
  margin: 0 auto 2rem;
}

.page-template-template-videos .videos--item--header {
  margin: 0.5rem 0 1rem 0;
}

/**
 * Simple fade transition,
 */
.mfp-fade.mfp-bg {
  opacity: 0;
  -webkit-transition: all 0.15s ease-out;
  -moz-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}

.mfp-fade.mfp-bg.mfp-ready {
  opacity: 0.8;
}

.mfp-fade.mfp-bg.mfp-removing {
  opacity: 0;
}

.mfp-fade.mfp-wrap .mfp-content {
  opacity: 0;
  -webkit-transition: all 0.15s ease-out;
  -moz-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}

.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
}

.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
}

iframe {
  width: 100%;
}

.books {
  padding: 2rem 0;
}

@media (min-width: 65em) {
  .books .book-block {
    display: flex;
    justify-content: space-between;
  }
}

.books .book-block img.book {
  max-height: 60vh;
  width: auto;
  max-width: auto;
  box-shadow: 0 15px 20px rgba(0, 0, 0, 0.3);
}

.books .book-block--image {
  margin: 0 auto 2rem auto;
  text-align: center;
}

@media (min-width: 46.25em) {
  .books .book-block--image {
    text-align: left;
  }
}

@media (min-width: 65em) {
  .books .book-block--image {
    text-align: center;
    margin-bottom: 0;
  }
}

.books .book-block--image .book-block--image-link {
  transition: 0.5s;
}

.books .book-block--image .book-block--image-link:hover {
  opacity: 0.5;
}

.books .book-block--text {
  width: 100%;
}

@media (min-width: 65em) {
  .books .book-block--text {
    margin-left: 3%;
  }
}

.books .book-block--text .book-block--title {
  margin: 0;
}

.books .book-block--text .book-block--date {
  font-size: 15px;
}

.books .book-block--text .book-block--excerpt {
  margin-top: 1rem;
}

.books .book-block--text .book-block--excerpt .book-block--excerpt-link h4 {
  margin-bottom: 0;
}

.archive .books .book-block--image {
  text-align: left;
}

.post-type-archive .books:nth-child(odd) {
  border-top: 1px solid #ccc;
}

@media (min-width: 46.25em) {
  .contact-block {
    display: flex;
    justify-content: space-between;
  }
}

@media (min-width: 46.25em) {
  .contact-block .contact-block--section {
    width: 47%;
  }
  .contact-block .contact-block--section:first-of-type {
    order: 2;
  }
}

.contact-block .contact-block--section h4 {
  margin-bottom: 0;
}

form.wpcf7-form {
  max-width: 430px;
}

form.wpcf7-form label {
  font-size: 16px;
}

form.wpcf7-form input, form.wpcf7-form textarea {
  border: none;
  border-bottom: 1px solid #d8d8d8;
  padding: 10px 20px;
  font-size: 16px;
  font-family: "PT Sans", sans-serif !important;
  background: #f7f7f7;
}

form.wpcf7-form textarea {
  width: 100%;
}

form.wpcf7-form input.wpcf7-submit {
  background: #006a4d;
  color: #FFF;
  border: none;
  padding: 10px 30px;
  cursor: pointer;
}

.main-content .media {
  text-align: left;
}

.main-content .media a {
  display: block;
}

.main-content .media a .media--card-header {
  display: inline;
}

.main-content .media a .media-outlet {
  color: #006a4d;
}

.main-content .media a .media--card-image {
  background-position: center center;
  background-repeat: no-repeat;
  border-bottom: 0;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  height: 180px;
}

@media only screen and (min-width: 500px) and (max-width: 640px) {
  .main-content .media a .media--card-image {
    height: 130px;
  }
}

@media (min-width: 46.25em) {
  .main-content .media a .media--card-image {
    height: 175px;
  }
}

@media only screen and (min-width: 900px) and (max-width: 1039px) {
  .main-content .media a .media--card-image {
    height: 220px;
  }
}

@media (min-width: 65em) {
  .main-content .media a .media--card-image {
    height: 230px;
  }
}

@media only screen and (min-width: 1140px) and (max-width: 1280px) {
  .main-content .media a .media--card-image {
    height: 180px;
  }
}

.main-content .featured-posts .media a .media--card-image {
  height: 140px;
}

@media (min-width: 65em) {
  .main-content .featured-posts .media a .media--card-image {
    height: 200px;
  }
}

@media only screen and (min-width: 1040px) and (max-width: 1280px) {
  .main-content .featured-posts .media a .media--card-image {
    height: 170px;
  }
}

.home-blocks .home-blocks--header {
  text-align: center;
  margin-top: 2rem;
  margin-bottom: 0rem;
}

@media (min-width: 46.25em) {
  .home-blocks .home-blocks--header {
    margin-top: 4rem;
    margin-bottom: 3rem;
  }
}

.home-blocks .home-blocks--row {
  display: flex;
  justify-content: space-between;
}

.home-blocks .home-blocks--row:nth-child(odd) .container.blog-container {
  flex-direction: row-reverse;
}

.home-blocks .home-blocks--row .blog-container {
  margin-bottom: 2rem;
}

@media (min-width: 46.25em) {
  .home-blocks .home-blocks--row .blog-container {
    padding: 0;
    margin-bottom: 0;
  }
}

.home-blocks .home-blocks--row .home-blocks--image-link {
  width: 100%;
}

@media (min-width: 65em) {
  .home-blocks .home-blocks--row .home-blocks--image-link {
    width: 50%;
  }
}

.home-blocks .home-blocks--row .home-blocks--image-link .home-blocks--image {
  position: relative;
  background-position: center center;
  background-repeat: no-repeat;
  border-bottom: 0;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  width: 100%;
  height: 52vh;
  max-height: 200px;
  padding-bottom: 0;
  transition: 0.3s;
}

@media (min-width: 46.25em) {
  .home-blocks .home-blocks--row .home-blocks--image-link .home-blocks--image {
    max-height: 300px;
  }
}

@media (min-width: 65em) {
  .home-blocks .home-blocks--row .home-blocks--image-link .home-blocks--image {
    max-height: 400px;
  }
}

.home-blocks .home-blocks--row .home-blocks--image-link .home-blocks--image:hover {
  opacity: 0.5;
}

.home-blocks .home-blocks--row .home-blocks--item--text {
  width: 100%;
  padding: 1rem 0 0 0;
  display: flex;
  align-items: center;
}

@media (min-width: 46.25em) {
  .home-blocks .home-blocks--row .home-blocks--item--text {
    padding: 2rem;
  }
}

@media (min-width: 65em) {
  .home-blocks .home-blocks--row .home-blocks--item--text {
    width: 50%;
    padding: 1rem 2rem;
  }
}

.home-blocks .home-blocks--row .home-blocks--item--text .home-blocks--item-header {
  margin-top: 0;
  margin-bottom: 0;
}

@media screen and (min-width: 1500px) {
  .home-blocks .home-blocks--row:nth-child(odd) .home-blocks--item--text {
    padding: 1rem 2rem 1rem 0;
  }
}

.content-thumnbails .content-thumnbail--item-link {
  width: 100%;
}

.content-thumnbails .content-thumnbail--item-link .content-thumnbail--item-image {
  background-position: center center;
  background-repeat: no-repeat;
  border-bottom: 0;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  height: 220px;
  transition: 0.3s;
}

@media only screen and (min-width: 500px) and (max-width: 640px) {
  .content-thumnbails .content-thumnbail--item-link .content-thumnbail--item-image {
    height: 130px;
  }
}

@media (min-width: 46.25em) {
  .content-thumnbails .content-thumnbail--item-link .content-thumnbail--item-image {
    height: 175px;
  }
}

@media only screen and (min-width: 900px) and (max-width: 1039px) {
  .content-thumnbails .content-thumnbail--item-link .content-thumnbail--item-image {
    height: 220px;
  }
}

@media (min-width: 65em) {
  .content-thumnbails .content-thumnbail--item-link .content-thumnbail--item-image {
    height: 230px;
  }
}

@media only screen and (min-width: 1140px) and (max-width: 1280px) {
  .content-thumnbails .content-thumnbail--item-link .content-thumnbail--item-image {
    height: 180px;
  }
}

.content-thumnbails .content-thumnbail--item-link .content-thumnbail--item-image:hover {
  opacity: 0.5;
}

.share {
  display: flex;
  flex-direction: row;
}

@media (min-width: 65em) {
  .share {
    position: fixed;
    flex-direction: column;
    left: 30px;
    top: 120px;
  }
}

.share a.share-button {
  color: #006a4d;
  padding: 0 15px 15px 0;
}

@media (min-width: 65em) {
  .share a.share-button {
    padding: 0 0 5px 0;
  }
}

body.error404 main {
  min-height: 70vh;
  padding-bottom: 3rem;
  text-align: center;
}

body.error404 main .hero {
  height: 60vh;
  background-position: center center;
  background-repeat: no-repeat;
  border-bottom: 0;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

.error404--inner-wrap {
  max-width: 1008px;
  margin: 0 auto;
  padding-right: 16px;
  padding-left: 16px;
}

@media (min-width: 46.25em) {
  .error404--inner-wrap {
    padding-left: 32px;
    padding-right: 32px;
  }
}

@media (min-width: 80em) {
  .error404--inner-wrap {
    max-width: 1280px;
  }
}

.error404--content-wrap {
  min-height: 600px;
}

.landing-page-wrapper {
  border: 10px solid #fff;
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
}

.raygun-blaster-animation {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 60.625rem;
  max-height: 51.75rem;
  height: 100vh;
  width: 100vw;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
}

.raygun-blaster-animation svg {
  max-width: 700px;
  width: 90vh;
  padding: 10px 20px 10px 10px;
}

@media only screen and (min-width: 768px) {
  .raygun-blaster-animation svg {
    padding: 0;
  }
}

.raygun-blaster-animation svg #bg {
  display: none;
}

body.single .main-content .entry-content--header {
  border-bottom: 1px solid #ececec;
  padding-bottom: 1rem;
}

body.single .main-content .entry-content--header p, body.single .main-content .entry-content--header h3 {
  margin-bottom: 0;
}

body.single .main-content .entry-content--container {
  font-size: 18px;
  margin: 0 auto 2rem auto;
}

@media (min-width: 46.25em) {
  body.single .main-content .entry-content--container {
    margin: 1rem auto 2rem auto;
  }
}

@media (min-width: 65em) {
  body.single .main-content .entry-content--container {
    max-width: 850px;
    margin: 1rem auto 2rem auto;
  }
}

body.single .main-content .entry-content--container time.updated {
  font-size: 14px;
  margin-bottom: 1rem;
  display: block;
}

@media (min-width: 46.25em) {
  body.single .main-content .entry-content--container time.updated {
    font-size: 16px;
  }
}

body.single .main-content .entry-content--container .article-header--title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 30px;
}

@media (min-width: 46.25em) {
  body.single .main-content .entry-content--container .article-header--title {
    font-size: 2.05882em;
  }
}

body.single .main-content .entry-content--container .article-header--excerpt {
  padding-bottom: 1rem;
  display: block;
}

body.single .main-content .entry-content--container .article-header--categories {
  margin-top: 1rem;
  line-height: 1.1;
}

body.single .main-content .article-header {
  margin-bottom: 1rem;
}

body.single .main-content .article-header p {
  margin-bottom: 0;
}

body.single-cpt_book p.commentcount, body.single-cpt_book .fb-comments.fb_iframe_widget.fb_iframe_widget_fluid_desktop {
  display: none;
}

body.single-cpt_book .books .book-block {
  align-items: flex-start;
}

body.page-template-template-category .date, .page-template-archive-projects .date {
  display: none;
}

.lazyload-example {
  width: 100%;
  height: 500px;
  background-position: center center;
  background-repeat: no-repeat;
  border-bottom: 0;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

figure {
  max-width: 100%;
}

img {
  max-width: 100% !important;
  height: auto;
}

body.page-id-2357 .main-content figure {
  margin: 0 auto;
}

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