@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&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: 15px 15px;
  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-box {
  width: 25px;
  height: 18px;
  display: inline-block;
  position: relative;
}
.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -1px;
}
.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
  width: 25px;
  height: 2px;
  background-color: #fff;
  border-radius: 4px;
  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: -8px;
}
.hamburger-inner::after {
  bottom: -8px;
}
/*
 * 3DX
 */
.hamburger--3dx .hamburger-box {
  perspective: 50px;
}
.hamburger--3dx .hamburger-inner {
  transition: transform 0.2s 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;
  transform: rotateY(180deg);
}
.hamburger--3dx.is-active .hamburger-inner::before {
  transform: translate3d(0, 8px, 0) rotate(45deg);
}
.hamburger--3dx.is-active .hamburger-inner::after {
  transform: translate3d(0, -8px, 0) rotate(-45deg);
}
/*
 * 3DX Reverse
 */
.hamburger--3dx-r .hamburger-box {
  perspective: 50px;
}
.hamburger--3dx-r .hamburger-inner {
  transition: transform 0.2s 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;
  transform: rotateY(-180deg);
}
.hamburger--3dx-r.is-active .hamburger-inner::before {
  transform: translate3d(0, 8px, 0) rotate(45deg);
}
.hamburger--3dx-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -8px, 0) rotate(-45deg);
}
/*
 * 3DY
 */
.hamburger--3dy .hamburger-box {
  perspective: 50px;
}
.hamburger--3dy .hamburger-inner {
  transition: transform 0.2s 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;
  transform: rotateX(-180deg);
}
.hamburger--3dy.is-active .hamburger-inner::before {
  transform: translate3d(0, 8px, 0) rotate(45deg);
}
.hamburger--3dy.is-active .hamburger-inner::after {
  transform: translate3d(0, -8px, 0) rotate(-45deg);
}
/*
 * 3DY Reverse
 */
.hamburger--3dy-r .hamburger-box {
  perspective: 50px;
}
.hamburger--3dy-r .hamburger-inner {
  transition: transform 0.2s 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;
  transform: rotateX(180deg);
}
.hamburger--3dy-r.is-active .hamburger-inner::before {
  transform: translate3d(0, 8px, 0) rotate(45deg);
}
.hamburger--3dy-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -8px, 0) rotate(-45deg);
}
/*
 * Arrow
 */
.hamburger--arrow.is-active .hamburger-inner::before {
  transform: translate3d(-5px, 0, 0) rotate(-45deg) scale(0.7, 1);
}
.hamburger--arrow.is-active .hamburger-inner::after {
  transform: translate3d(-5px, 0, 0) rotate(45deg) scale(0.7, 1);
}
/*
 * Arrow Right
 */
.hamburger--arrow-r.is-active .hamburger-inner::before {
  transform: translate3d(5px, 0, 0) rotate(45deg) scale(0.7, 1);
}
.hamburger--arrow-r.is-active .hamburger-inner::after {
  transform: translate3d(5px, 0, 0) rotate(-45deg) scale(0.7, 1);
}
/*
 * Arrow Alt
 */
.hamburger--arrowalt .hamburger-inner::before {
  transition: top 0.1s 0.15s ease,
    transform 0.15s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.hamburger--arrowalt .hamburger-inner::after {
  transition: bottom 0.1s 0.15s ease,
    transform 0.15s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.hamburger--arrowalt.is-active .hamburger-inner::before {
  top: 0;
  transform: translate3d(-5px, -6.25px, 0) rotate(-45deg) scale(0.7, 1);
  transition: top 0.1s ease,
    transform 0.15s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}
.hamburger--arrowalt.is-active .hamburger-inner::after {
  bottom: 0;
  transform: translate3d(-5px, 6.25px, 0) rotate(45deg) scale(0.7, 1);
  transition: bottom 0.1s ease,
    transform 0.15s 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.15s ease,
    transform 0.15s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.hamburger--arrowalt-r .hamburger-inner::after {
  transition: bottom 0.1s 0.15s ease,
    transform 0.15s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.hamburger--arrowalt-r.is-active .hamburger-inner::before {
  top: 0;
  transform: translate3d(5px, -6.25px, 0) rotate(45deg) scale(0.7, 1);
  transition: top 0.1s ease,
    transform 0.15s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}
.hamburger--arrowalt-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: translate3d(5px, 6.25px, 0) rotate(-45deg) scale(0.7, 1);
  transition: bottom 0.1s ease,
    transform 0.15s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}
/*
 * 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.15s;
  transition-delay: 0.15s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse .hamburger-inner::after {
  top: -16px;
  transition: top 0.3s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1),
    opacity 0.1s linear;
}
.hamburger--collapse .hamburger-inner::before {
  transition: top 0.12s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1),
    transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse.is-active .hamburger-inner {
  transform: translate3d(0, -8px, 0) rotate(-45deg);
  transition-delay: 0.32s;
  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.3s cubic-bezier(0.33333, 0, 0.66667, 0.33333),
    opacity 0.1s 0.27s linear;
}
.hamburger--collapse.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(-90deg);
  transition: top 0.12s 0.18s cubic-bezier(0.33333, 0, 0.66667, 0.33333),
    transform 0.15s 0.42s cubic-bezier(0.215, 0.61, 0.355, 1);
}
/*
 * Collapse Reverse
 */
.hamburger--collapse-r .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.15s;
  transition-delay: 0.15s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse-r .hamburger-inner::after {
  top: -16px;
  transition: top 0.3s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1),
    opacity 0.1s linear;
}
.hamburger--collapse-r .hamburger-inner::before {
  transition: top 0.12s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1),
    transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse-r.is-active .hamburger-inner {
  transform: translate3d(0, -8px, 0) rotate(45deg);
  transition-delay: 0.32s;
  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.3s cubic-bezier(0.33333, 0, 0.66667, 0.33333),
    opacity 0.1s 0.27s linear;
}
.hamburger--collapse-r.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(90deg);
  transition: top 0.12s 0.18s cubic-bezier(0.33333, 0, 0.66667, 0.33333),
    transform 0.15s 0.42s cubic-bezier(0.215, 0.61, 0.355, 1);
}
/*
 * Elastic
 */
.hamburger--elastic .hamburger-inner {
  top: 1px;
  transition-duration: 0.4s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hamburger--elastic .hamburger-inner::before {
  top: 8px;
  transition: opacity 0.15s 0.4s ease;
}
.hamburger--elastic .hamburger-inner::after {
  top: 16px;
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hamburger--elastic.is-active .hamburger-inner {
  transform: translate3d(0, 8px, 0) rotate(135deg);
  transition-delay: 0.1s;
}
.hamburger--elastic.is-active .hamburger-inner::before {
  transition-delay: 0s;
  opacity: 0;
}
.hamburger--elastic.is-active .hamburger-inner::after {
  transform: translate3d(0, -16px, 0) rotate(-270deg);
  transition-delay: 0.1s;
}
/*
 * Elastic Reverse
 */
.hamburger--elastic-r .hamburger-inner {
  top: 1px;
  transition-duration: 0.4s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hamburger--elastic-r .hamburger-inner::before {
  top: 8px;
  transition: opacity 0.15s 0.4s ease;
}
.hamburger--elastic-r .hamburger-inner::after {
  top: 16px;
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hamburger--elastic-r.is-active .hamburger-inner {
  transform: translate3d(0, 8px, 0) rotate(-135deg);
  transition-delay: 0.1s;
}
.hamburger--elastic-r.is-active .hamburger-inner::before {
  transition-delay: 0s;
  opacity: 0;
}
.hamburger--elastic-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -16px, 0) rotate(270deg);
  transition-delay: 0.1s;
}
/*
 * Emphatic
 */
.hamburger--emphatic {
  overflow: hidden;
}
.hamburger--emphatic .hamburger-inner {
  transition: background-color 0.2s 0.25s ease-in;
}
.hamburger--emphatic .hamburger-inner::before {
  left: 0;
  transition: transform 0.2s cubic-bezier(0.6, 0.04, 0.98, 0.335),
    top 0.05s 0.2s linear, left 0.2s 0.25s ease-in;
}
.hamburger--emphatic .hamburger-inner::after {
  top: 8px;
  right: 0;
  transition: transform 0.2s cubic-bezier(0.6, 0.04, 0.98, 0.335),
    top 0.05s 0.2s linear, right 0.2s 0.25s ease-in;
}
.hamburger--emphatic.is-active .hamburger-inner {
  transition-delay: 0s;
  transition-timing-function: ease-out;
  background-color: transparent;
}
.hamburger--emphatic.is-active .hamburger-inner::before {
  left: -50px;
  top: -50px;
  transform: translate3d(50px, 50px, 0) rotate(45deg);
  transition: left 0.2s ease-out, top 0.05s 0.2s linear,
    transform 0.2s 0.25s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.hamburger--emphatic.is-active .hamburger-inner::after {
  right: -50px;
  top: -50px;
  transform: translate3d(-50px, 50px, 0) rotate(-45deg);
  transition: right 0.2s ease-out, top 0.05s 0.2s linear,
    transform 0.2s 0.25s 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.2s 0.25s ease-in;
}
.hamburger--emphatic-r .hamburger-inner::before {
  left: 0;
  transition: transform 0.2s cubic-bezier(0.6, 0.04, 0.98, 0.335),
    top 0.05s 0.2s linear, left 0.2s 0.25s ease-in;
}
.hamburger--emphatic-r .hamburger-inner::after {
  top: 8px;
  right: 0;
  transition: transform 0.2s cubic-bezier(0.6, 0.04, 0.98, 0.335),
    top 0.05s 0.2s linear, right 0.2s 0.25s ease-in;
}
.hamburger--emphatic-r.is-active .hamburger-inner {
  transition-delay: 0s;
  transition-timing-function: ease-out;
  background-color: transparent;
}
.hamburger--emphatic-r.is-active .hamburger-inner::before {
  left: -50px;
  top: 50px;
  transform: translate3d(50px, -50px, 0) rotate(-45deg);
  transition: left 0.2s ease-out, top 0.05s 0.2s linear,
    transform 0.2s 0.25s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.hamburger--emphatic-r.is-active .hamburger-inner::after {
  right: -50px;
  top: 50px;
  transform: translate3d(-50px, -50px, 0) rotate(45deg);
  transition: right 0.2s ease-out, top 0.05s 0.2s linear,
    transform 0.2s 0.25s cubic-bezier(0.075, 0.82, 0.165, 1);
}
/*
 * Slider
 */
.hamburger--slider .hamburger-inner {
  top: 1px;
}
.hamburger--slider .hamburger-inner::before {
  top: 8px;
  transition-property: transform, opacity;
  transition-timing-function: ease;
  transition-duration: 0.2s;
}
.hamburger--slider .hamburger-inner::after {
  top: 16px;
}
.hamburger--slider.is-active .hamburger-inner {
  transform: translate3d(0, 8px, 0) rotate(45deg);
}
.hamburger--slider.is-active .hamburger-inner::before {
  transform: rotate(-45deg) translate3d(-3.5714285714px, -6px, 0);
  opacity: 0;
}
.hamburger--slider.is-active .hamburger-inner::after {
  transform: translate3d(0, -16px, 0) rotate(-90deg);
}
/*
 * Slider Reverse
 */
.hamburger--slider-r .hamburger-inner {
  top: 1px;
}
.hamburger--slider-r .hamburger-inner::before {
  top: 8px;
  transition-property: transform, opacity;
  transition-timing-function: ease;
  transition-duration: 0.2s;
}
.hamburger--slider-r .hamburger-inner::after {
  top: 16px;
}
.hamburger--slider-r.is-active .hamburger-inner {
  transform: translate3d(0, 8px, 0) rotate(-45deg);
}
.hamburger--slider-r.is-active .hamburger-inner::before {
  transform: rotate(45deg) translate3d(3.5714285714px, -6px, 0);
  opacity: 0;
}
.hamburger--slider-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -16px, 0) rotate(90deg);
}
/*
 * Spring
 */
.hamburger--spring .hamburger-inner {
  top: 1px;
  transition: background-color 0s 0.15s linear;
}
.hamburger--spring .hamburger-inner::before {
  top: 8px;
  transition: top 0.12s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1),
    transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spring .hamburger-inner::after {
  top: 16px;
  transition: top 0.3s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1),
    transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spring.is-active .hamburger-inner {
  transition-delay: 0.32s;
  background-color: transparent;
}
.hamburger--spring.is-active .hamburger-inner::before {
  top: 0;
  transition: top 0.12s 0.18s cubic-bezier(0.33333, 0, 0.66667, 0.33333),
    transform 0.15s 0.32s cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: translate3d(0, 8px, 0) rotate(45deg);
}
.hamburger--spring.is-active .hamburger-inner::after {
  top: 0;
  transition: top 0.3s cubic-bezier(0.33333, 0, 0.66667, 0.33333),
    transform 0.15s 0.32s cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: translate3d(0, 8px, 0) rotate(-45deg);
}
/*
 * Spring Reverse
 */
.hamburger--spring-r .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.15s;
  transition-delay: 0s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spring-r .hamburger-inner::after {
  top: -16px;
  transition: top 0.3s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1),
    opacity 0s linear;
}
.hamburger--spring-r .hamburger-inner::before {
  transition: top 0.12s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1),
    transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spring-r.is-active .hamburger-inner {
  transform: translate3d(0, -8px, 0) rotate(-45deg);
  transition-delay: 0.32s;
  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.3s cubic-bezier(0.33333, 0, 0.66667, 0.33333),
    opacity 0s 0.32s linear;
}
.hamburger--spring-r.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(90deg);
  transition: top 0.12s 0.18s cubic-bezier(0.33333, 0, 0.66667, 0.33333),
    transform 0.15s 0.32s cubic-bezier(0.215, 0.61, 0.355, 1);
}
/*
 * Stand
 */
.hamburger--stand .hamburger-inner {
  transition: transform 0.1s 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19),
    background-color 0s 0.1s linear;
}
.hamburger--stand .hamburger-inner::before {
  transition: top 0.1s 0.1s ease-in,
    transform 0.1s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--stand .hamburger-inner::after {
  transition: bottom 0.1s 0.1s ease-in,
    transform 0.1s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--stand.is-active .hamburger-inner {
  transform: rotate(90deg);
  background-color: transparent;
  transition: transform 0.1s 0s cubic-bezier(0.215, 0.61, 0.355, 1),
    background-color 0s 0.22s linear;
}
.hamburger--stand.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(-45deg);
  transition: top 0.1s 0.12s ease-out,
    transform 0.1s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--stand.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(45deg);
  transition: bottom 0.1s 0.12s ease-out,
    transform 0.1s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
}
/*
 * Stand Reverse
 */
.hamburger--stand-r .hamburger-inner {
  transition: transform 0.1s 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19),
    background-color 0s 0.1s linear;
}
.hamburger--stand-r .hamburger-inner::before {
  transition: top 0.1s 0.1s ease-in,
    transform 0.1s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--stand-r .hamburger-inner::after {
  transition: bottom 0.1s 0.1s ease-in,
    transform 0.1s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--stand-r.is-active .hamburger-inner {
  transform: rotate(-90deg);
  background-color: transparent;
  transition: transform 0.1s 0s cubic-bezier(0.215, 0.61, 0.355, 1),
    background-color 0s 0.22s linear;
}
.hamburger--stand-r.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(-45deg);
  transition: top 0.1s 0.12s ease-out,
    transform 0.1s 0.22s 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.1s 0.12s ease-out,
    transform 0.1s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
}
/*
 * Spin
 */
.hamburger--spin .hamburger-inner {
  transition-duration: 0.3s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin .hamburger-inner::before {
  transition: top 0.1s 0.34s ease-in, opacity 0.1s ease-in;
}
.hamburger--spin .hamburger-inner::after {
  transition: bottom 0.1s 0.34s ease-in,
    transform 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin.is-active .hamburger-inner {
  transform: rotate(225deg);
  transition-delay: 0.14s;
  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.14s ease-out;
}
.hamburger--spin.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.1s ease-out,
    transform 0.3s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1);
}
/*
 * Spin Reverse
 */
.hamburger--spin-r .hamburger-inner {
  transition-duration: 0.3s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin-r .hamburger-inner::before {
  transition: top 0.1s 0.34s ease-in, opacity 0.1s ease-in;
}
.hamburger--spin-r .hamburger-inner::after {
  transition: bottom 0.1s 0.34s ease-in,
    transform 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin-r.is-active .hamburger-inner {
  transform: rotate(-225deg);
  transition-delay: 0.14s;
  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.14s ease-out;
}
.hamburger--spin-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(90deg);
  transition: bottom 0.1s ease-out,
    transform 0.3s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1);
}
/*
 * Squeeze
 */
.hamburger--squeeze .hamburger-inner {
  transition-duration: 0.1s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--squeeze .hamburger-inner::before {
  transition: top 0.1s 0.14s ease, opacity 0.1s ease;
}
.hamburger--squeeze .hamburger-inner::after {
  transition: bottom 0.1s 0.14s ease,
    transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--squeeze.is-active .hamburger-inner {
  transform: rotate(45deg);
  transition-delay: 0.14s;
  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.1s ease, opacity 0.1s 0.14s ease;
}
.hamburger--squeeze.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.1s ease,
    transform 0.1s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1);
}
/*
 * Vortex
 */
.hamburger--vortex .hamburger-inner {
  transition-duration: 0.3s;
  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.3s;
  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);
}
/*!
 *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
/* FONT PATH
 * -------------------------- */
@font-face {
  font-family: "FontAwesome";
  src: url("../fonts/fontawesome-webfont.eot?v=4.7.0");
  src: url("../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0")
      format("embedded-opentype"),
    url("../fonts/fontawesome-webfont.woff2?v=4.7.0") format("woff2"),
    url("../fonts/fontawesome-webfont.woff?v=4.7.0") format("woff"),
    url("../fonts/fontawesome-webfont.ttf?v=4.7.0") format("truetype"),
    url("../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular")
      format("svg");
  font-weight: normal;
  font-style: normal;
}
.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/* makes the font 33% larger relative to the icon container */
.fa-lg {
  font-size: 1.3333333333em;
  line-height: 0.75em;
  vertical-align: -15%;
}
.fa-2x {
  font-size: 2em;
}
.fa-3x {
  font-size: 3em;
}
.fa-4x {
  font-size: 4em;
}
.fa-5x {
  font-size: 5em;
}
.fa-fw {
  width: 1.2857142857em;
  text-align: center;
}
.fa-ul {
  padding-left: 0;
  margin-left: 2.1428571429em;
  list-style-type: none;
}
.fa-ul > li {
  position: relative;
}
.fa-li {
  position: absolute;
  left: -2.1428571429em;
  width: 2.1428571429em;
  top: 0.1428571429em;
  text-align: center;
}
.fa-li.fa-lg {
  left: -1.8571428571em;
}
.fa-border {
  padding: 0.2em 0.25em 0.15em;
  border: solid 0.08em #eee;
  border-radius: 0.1em;
}
.fa-pull-left {
  float: left;
}
.fa-pull-right {
  float: right;
}
.fa.fa-pull-left {
  margin-right: 0.3em;
}
.fa.fa-pull-right {
  margin-left: 0.3em;
}
/* Deprecated as of 4.4.0 */
.pull-right {
  float: right;
}
.pull-left {
  float: left;
}
.fa.pull-left {
  margin-right: 0.3em;
}
.fa.pull-right {
  margin-left: 0.3em;
}
.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}
.fa-pulse {
  -webkit-animation: fa-spin 1s infinite steps(8);
  animation: fa-spin 1s infinite steps(8);
}
@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
}
.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  -webkit-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  transform: scale(-1, 1);
}
.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  -webkit-transform: scale(1, -1);
  -ms-transform: scale(1, -1);
  transform: scale(1, -1);
}
:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
  filter: none;
}
.fa-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle;
}
.fa-stack-1x,
.fa-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
}
.fa-stack-1x {
  line-height: inherit;
}
.fa-stack-2x {
  font-size: 2em;
}
.fa-inverse {
  color: #fff;
}
/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
 readers do not read off random characters that represent icons */
.fa-glass:before {
  content: "\f000";
}
.fa-music:before {
  content: "\f001";
}
.fa-search:before {
  content: "\f002";
}
.fa-envelope-o:before {
  content: "\f003";
}
.fa-heart:before {
  content: "\f004";
}
.fa-star:before {
  content: "\f005";
}
.fa-star-o:before {
  content: "\f006";
}
.fa-user:before {
  content: "\f007";
}
.fa-film:before {
  content: "\f008";
}
.fa-th-large:before {
  content: "\f009";
}
.fa-th:before {
  content: "\f00a";
}
.fa-th-list:before {
  content: "\f00b";
}
.fa-check:before {
  content: "\f00c";
}
.fa-remove:before,
.fa-close:before,
.fa-times:before {
  content: "\f00d";
}
.fa-search-plus:before {
  content: "\f00e";
}
.fa-search-minus:before {
  content: "\f010";
}
.fa-power-off:before {
  content: "\f011";
}
.fa-signal:before {
  content: "\f012";
}
.fa-gear:before,
.fa-cog:before {
  content: "\f013";
}
.fa-trash-o:before {
  content: "\f014";
}
.fa-home:before {
  content: "\f015";
}
.fa-file-o:before {
  content: "\f016";
}
.fa-clock-o:before {
  content: "\f017";
}
.fa-road:before {
  content: "\f018";
}
.fa-download:before {
  content: "\f019";
}
.fa-arrow-circle-o-down:before {
  content: "\f01a";
}
.fa-arrow-circle-o-up:before {
  content: "\f01b";
}
.fa-inbox:before {
  content: "\f01c";
}
.fa-play-circle-o:before {
  content: "\f01d";
}
.fa-rotate-right:before,
.fa-repeat:before {
  content: "\f01e";
}
.fa-refresh:before {
  content: "\f021";
}
.fa-list-alt:before {
  content: "\f022";
}
.fa-lock:before {
  content: "\f023";
}
.fa-flag:before {
  content: "\f024";
}
.fa-headphones:before {
  content: "\f025";
}
.fa-volume-off:before {
  content: "\f026";
}
.fa-volume-down:before {
  content: "\f027";
}
.fa-volume-up:before {
  content: "\f028";
}
.fa-qrcode:before {
  content: "\f029";
}
.fa-barcode:before {
  content: "\f02a";
}
.fa-tag:before {
  content: "\f02b";
}
.fa-tags:before {
  content: "\f02c";
}
.fa-book:before {
  content: "\f02d";
}
.fa-bookmark:before {
  content: "\f02e";
}
.fa-print:before {
  content: "\f02f";
}
.fa-camera:before {
  content: "\f030";
}
.fa-font:before {
  content: "\f031";
}
.fa-bold:before {
  content: "\f032";
}
.fa-italic:before {
  content: "\f033";
}
.fa-text-height:before {
  content: "\f034";
}
.fa-text-width:before {
  content: "\f035";
}
.fa-align-left:before {
  content: "\f036";
}
.fa-align-center:before {
  content: "\f037";
}
.fa-align-right:before {
  content: "\f038";
}
.fa-align-justify:before {
  content: "\f039";
}
.fa-list:before {
  content: "\f03a";
}
.fa-dedent:before,
.fa-outdent:before {
  content: "\f03b";
}
.fa-indent:before {
  content: "\f03c";
}
.fa-video-camera:before {
  content: "\f03d";
}
.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
  content: "\f03e";
}
.fa-pencil:before {
  content: "\f040";
}
.fa-map-marker:before {
  content: "\f041";
}
.fa-adjust:before {
  content: "\f042";
}
.fa-tint:before {
  content: "\f043";
}
.fa-edit:before,
.fa-pencil-square-o:before {
  content: "\f044";
}
.fa-share-square-o:before {
  content: "\f045";
}
.fa-check-square-o:before {
  content: "\f046";
}
.fa-arrows:before {
  content: "\f047";
}
.fa-step-backward:before {
  content: "\f048";
}
.fa-fast-backward:before {
  content: "\f049";
}
.fa-backward:before {
  content: "\f04a";
}
.fa-play:before {
  content: "\f04b";
}
.fa-pause:before {
  content: "\f04c";
}
.fa-stop:before {
  content: "\f04d";
}
.fa-forward:before {
  content: "\f04e";
}
.fa-fast-forward:before {
  content: "\f050";
}
.fa-step-forward:before {
  content: "\f051";
}
.fa-eject:before {
  content: "\f052";
}
.fa-chevron-left:before {
  content: "\f053";
}
.fa-chevron-right:before {
  content: "\f054";
}
.fa-plus-circle:before {
  content: "\f055";
}
.fa-minus-circle:before {
  content: "\f056";
}
.fa-times-circle:before {
  content: "\f057";
}
.fa-check-circle:before {
  content: "\f058";
}
.fa-question-circle:before {
  content: "\f059";
}
.fa-info-circle:before {
  content: "\f05a";
}
.fa-crosshairs:before {
  content: "\f05b";
}
.fa-times-circle-o:before {
  content: "\f05c";
}
.fa-check-circle-o:before {
  content: "\f05d";
}
.fa-ban:before {
  content: "\f05e";
}
.fa-arrow-left:before {
  content: "\f060";
}
.fa-arrow-right:before {
  content: "\f061";
}
.fa-arrow-up:before {
  content: "\f062";
}
.fa-arrow-down:before {
  content: "\f063";
}
.fa-mail-forward:before,
.fa-share:before {
  content: "\f064";
}
.fa-expand:before {
  content: "\f065";
}
.fa-compress:before {
  content: "\f066";
}
.fa-plus:before {
  content: "\f067";
}
.fa-minus:before {
  content: "\f068";
}
.fa-asterisk:before {
  content: "\f069";
}
.fa-exclamation-circle:before {
  content: "\f06a";
}
.fa-gift:before {
  content: "\f06b";
}
.fa-leaf:before {
  content: "\f06c";
}
.fa-fire:before {
  content: "\f06d";
}
.fa-eye:before {
  content: "\f06e";
}
.fa-eye-slash:before {
  content: "\f070";
}
.fa-warning:before,
.fa-exclamation-triangle:before {
  content: "\f071";
}
.fa-plane:before {
  content: "\f072";
}
.fa-calendar:before {
  content: "\f073";
}
.fa-random:before {
  content: "\f074";
}
.fa-comment:before {
  content: "\f075";
}
.fa-magnet:before {
  content: "\f076";
}
.fa-chevron-up:before {
  content: "\f077";
}
.fa-chevron-down:before {
  content: "\f078";
}
.fa-retweet:before {
  content: "\f079";
}
.fa-shopping-cart:before {
  content: "\f07a";
}
.fa-folder:before {
  content: "\f07b";
}
.fa-folder-open:before {
  content: "\f07c";
}
.fa-arrows-v:before {
  content: "\f07d";
}
.fa-arrows-h:before {
  content: "\f07e";
}
.fa-bar-chart-o:before,
.fa-bar-chart:before {
  content: "\f080";
}
.fa-twitter-square:before {
  content: "\f081";
}
.fa-facebook-square:before {
  content: "\f082";
}
.fa-camera-retro:before {
  content: "\f083";
}
.fa-key:before {
  content: "\f084";
}
.fa-gears:before,
.fa-cogs:before {
  content: "\f085";
}
.fa-comments:before {
  content: "\f086";
}
.fa-thumbs-o-up:before {
  content: "\f087";
}
.fa-thumbs-o-down:before {
  content: "\f088";
}
.fa-star-half:before {
  content: "\f089";
}
.fa-heart-o:before {
  content: "\f08a";
}
.fa-sign-out:before {
  content: "\f08b";
}
.fa-linkedin-square:before {
  content: "\f08c";
}
.fa-thumb-tack:before {
  content: "\f08d";
}
.fa-external-link:before {
  content: "\f08e";
}
.fa-sign-in:before {
  content: "\f090";
}
.fa-trophy:before {
  content: "\f091";
}
.fa-github-square:before {
  content: "\f092";
}
.fa-upload:before {
  content: "\f093";
}
.fa-lemon-o:before {
  content: "\f094";
}
.fa-phone:before {
  content: "\f095";
}
.fa-square-o:before {
  content: "\f096";
}
.fa-bookmark-o:before {
  content: "\f097";
}
.fa-phone-square:before {
  content: "\f098";
}
.fa-twitter:before {
  content: "\f099";
}
.fa-facebook-f:before,
.fa-facebook:before {
  content: "\f09a";
}
.fa-github:before {
  content: "\f09b";
}
.fa-unlock:before {
  content: "\f09c";
}
.fa-credit-card:before {
  content: "\f09d";
}
.fa-feed:before,
.fa-rss:before {
  content: "\f09e";
}
.fa-hdd-o:before {
  content: "\f0a0";
}
.fa-bullhorn:before {
  content: "\f0a1";
}
.fa-bell:before {
  content: "\f0f3";
}
.fa-certificate:before {
  content: "\f0a3";
}
.fa-hand-o-right:before {
  content: "\f0a4";
}
.fa-hand-o-left:before {
  content: "\f0a5";
}
.fa-hand-o-up:before {
  content: "\f0a6";
}
.fa-hand-o-down:before {
  content: "\f0a7";
}
.fa-arrow-circle-left:before {
  content: "\f0a8";
}
.fa-arrow-circle-right:before {
  content: "\f0a9";
}
.fa-arrow-circle-up:before {
  content: "\f0aa";
}
.fa-arrow-circle-down:before {
  content: "\f0ab";
}
.fa-globe:before {
  content: "\f0ac";
}
.fa-wrench:before {
  content: "\f0ad";
}
.fa-tasks:before {
  content: "\f0ae";
}
.fa-filter:before {
  content: "\f0b0";
}
.fa-briefcase:before {
  content: "\f0b1";
}
.fa-arrows-alt:before {
  content: "\f0b2";
}
.fa-group:before,
.fa-users:before {
  content: "\f0c0";
}
.fa-chain:before,
.fa-link:before {
  content: "\f0c1";
}
.fa-cloud:before {
  content: "\f0c2";
}
.fa-flask:before {
  content: "\f0c3";
}
.fa-cut:before,
.fa-scissors:before {
  content: "\f0c4";
}
.fa-copy:before,
.fa-files-o:before {
  content: "\f0c5";
}
.fa-paperclip:before {
  content: "\f0c6";
}
.fa-save:before,
.fa-floppy-o:before {
  content: "\f0c7";
}
.fa-square:before {
  content: "\f0c8";
}
.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
  content: "\f0c9";
}
.fa-list-ul:before {
  content: "\f0ca";
}
.fa-list-ol:before {
  content: "\f0cb";
}
.fa-strikethrough:before {
  content: "\f0cc";
}
.fa-underline:before {
  content: "\f0cd";
}
.fa-table:before {
  content: "\f0ce";
}
.fa-magic:before {
  content: "\f0d0";
}
.fa-truck:before {
  content: "\f0d1";
}
.fa-pinterest:before {
  content: "\f0d2";
}
.fa-pinterest-square:before {
  content: "\f0d3";
}
.fa-google-plus-square:before {
  content: "\f0d4";
}
.fa-google-plus:before {
  content: "\f0d5";
}
.fa-money:before {
  content: "\f0d6";
}
.fa-caret-down:before {
  content: "\f0d7";
}
.fa-caret-up:before {
  content: "\f0d8";
}
.fa-caret-left:before {
  content: "\f0d9";
}
.fa-caret-right:before {
  content: "\f0da";
}
.fa-columns:before {
  content: "\f0db";
}
.fa-unsorted:before,
.fa-sort:before {
  content: "\f0dc";
}
.fa-sort-down:before,
.fa-sort-desc:before {
  content: "\f0dd";
}
.fa-sort-up:before,
.fa-sort-asc:before {
  content: "\f0de";
}
.fa-envelope:before {
  content: "\f0e0";
}
.fa-linkedin:before {
  content: "\f0e1";
}
.fa-rotate-left:before,
.fa-undo:before {
  content: "\f0e2";
}
.fa-legal:before,
.fa-gavel:before {
  content: "\f0e3";
}
.fa-dashboard:before,
.fa-tachometer:before {
  content: "\f0e4";
}
.fa-comment-o:before {
  content: "\f0e5";
}
.fa-comments-o:before {
  content: "\f0e6";
}
.fa-flash:before,
.fa-bolt:before {
  content: "\f0e7";
}
.fa-sitemap:before {
  content: "\f0e8";
}
.fa-umbrella:before {
  content: "\f0e9";
}
.fa-paste:before,
.fa-clipboard:before {
  content: "\f0ea";
}
.fa-lightbulb-o:before {
  content: "\f0eb";
}
.fa-exchange:before {
  content: "\f0ec";
}
.fa-cloud-download:before {
  content: "\f0ed";
}
.fa-cloud-upload:before {
  content: "\f0ee";
}
.fa-user-md:before {
  content: "\f0f0";
}
.fa-stethoscope:before {
  content: "\f0f1";
}
.fa-suitcase:before {
  content: "\f0f2";
}
.fa-bell-o:before {
  content: "\f0a2";
}
.fa-coffee:before {
  content: "\f0f4";
}
.fa-cutlery:before {
  content: "\f0f5";
}
.fa-file-text-o:before {
  content: "\f0f6";
}
.fa-building-o:before {
  content: "\f0f7";
}
.fa-hospital-o:before {
  content: "\f0f8";
}
.fa-ambulance:before {
  content: "\f0f9";
}
.fa-medkit:before {
  content: "\f0fa";
}
.fa-fighter-jet:before {
  content: "\f0fb";
}
.fa-beer:before {
  content: "\f0fc";
}
.fa-h-square:before {
  content: "\f0fd";
}
.fa-plus-square:before {
  content: "\f0fe";
}
.fa-angle-double-left:before {
  content: "\f100";
}
.fa-angle-double-right:before {
  content: "\f101";
}
.fa-angle-double-up:before {
  content: "\f102";
}
.fa-angle-double-down:before {
  content: "\f103";
}
.fa-angle-left:before {
  content: "\f104";
}
.fa-angle-right:before {
  content: "\f105";
}
.fa-angle-up:before {
  content: "\f106";
}
.fa-angle-down:before {
  content: "\f107";
}
.fa-desktop:before {
  content: "\f108";
}
.fa-laptop:before {
  content: "\f109";
}
.fa-tablet:before {
  content: "\f10a";
}
.fa-mobile-phone:before,
.fa-mobile:before {
  content: "\f10b";
}
.fa-circle-o:before {
  content: "\f10c";
}
.fa-quote-left:before {
  content: "\f10d";
}
.fa-quote-right:before {
  content: "\f10e";
}
.fa-spinner:before {
  content: "\f110";
}
.fa-circle:before {
  content: "\f111";
}
.fa-mail-reply:before,
.fa-reply:before {
  content: "\f112";
}
.fa-github-alt:before {
  content: "\f113";
}
.fa-folder-o:before {
  content: "\f114";
}
.fa-folder-open-o:before {
  content: "\f115";
}
.fa-smile-o:before {
  content: "\f118";
}
.fa-frown-o:before {
  content: "\f119";
}
.fa-meh-o:before {
  content: "\f11a";
}
.fa-gamepad:before {
  content: "\f11b";
}
.fa-keyboard-o:before {
  content: "\f11c";
}
.fa-flag-o:before {
  content: "\f11d";
}
.fa-flag-checkered:before {
  content: "\f11e";
}
.fa-terminal:before {
  content: "\f120";
}
.fa-code:before {
  content: "\f121";
}
.fa-mail-reply-all:before,
.fa-reply-all:before {
  content: "\f122";
}
.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
  content: "\f123";
}
.fa-location-arrow:before {
  content: "\f124";
}
.fa-crop:before {
  content: "\f125";
}
.fa-code-fork:before {
  content: "\f126";
}
.fa-unlink:before,
.fa-chain-broken:before {
  content: "\f127";
}
.fa-question:before {
  content: "\f128";
}
.fa-info:before {
  content: "\f129";
}
.fa-exclamation:before {
  content: "\f12a";
}
.fa-superscript:before {
  content: "\f12b";
}
.fa-subscript:before {
  content: "\f12c";
}
.fa-eraser:before {
  content: "\f12d";
}
.fa-puzzle-piece:before {
  content: "\f12e";
}
.fa-microphone:before {
  content: "\f130";
}
.fa-microphone-slash:before {
  content: "\f131";
}
.fa-shield:before {
  content: "\f132";
}
.fa-calendar-o:before {
  content: "\f133";
}
.fa-fire-extinguisher:before {
  content: "\f134";
}
.fa-rocket:before {
  content: "\f135";
}
.fa-maxcdn:before {
  content: "\f136";
}
.fa-chevron-circle-left:before {
  content: "\f137";
}
.fa-chevron-circle-right:before {
  content: "\f138";
}
.fa-chevron-circle-up:before {
  content: "\f139";
}
.fa-chevron-circle-down:before {
  content: "\f13a";
}
.fa-html5:before {
  content: "\f13b";
}
.fa-css3:before {
  content: "\f13c";
}
.fa-anchor:before {
  content: "\f13d";
}
.fa-unlock-alt:before {
  content: "\f13e";
}
.fa-bullseye:before {
  content: "\f140";
}
.fa-ellipsis-h:before {
  content: "\f141";
}
.fa-ellipsis-v:before {
  content: "\f142";
}
.fa-rss-square:before {
  content: "\f143";
}
.fa-play-circle:before {
  content: "\f144";
}
.fa-ticket:before {
  content: "\f145";
}
.fa-minus-square:before {
  content: "\f146";
}
.fa-minus-square-o:before {
  content: "\f147";
}
.fa-level-up:before {
  content: "\f148";
}
.fa-level-down:before {
  content: "\f149";
}
.fa-check-square:before {
  content: "\f14a";
}
.fa-pencil-square:before {
  content: "\f14b";
}
.fa-external-link-square:before {
  content: "\f14c";
}
.fa-share-square:before {
  content: "\f14d";
}
.fa-compass:before {
  content: "\f14e";
}
.fa-toggle-down:before,
.fa-caret-square-o-down:before {
  content: "\f150";
}
.fa-toggle-up:before,
.fa-caret-square-o-up:before {
  content: "\f151";
}
.fa-toggle-right:before,
.fa-caret-square-o-right:before {
  content: "\f152";
}
.fa-euro:before,
.fa-eur:before {
  content: "\f153";
}
.fa-gbp:before {
  content: "\f154";
}
.fa-dollar:before,
.fa-usd:before {
  content: "\f155";
}
.fa-rupee:before,
.fa-inr:before {
  content: "\f156";
}
.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
  content: "\f157";
}
.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
  content: "\f158";
}
.fa-won:before,
.fa-krw:before {
  content: "\f159";
}
.fa-bitcoin:before,
.fa-btc:before {
  content: "\f15a";
}
.fa-file:before {
  content: "\f15b";
}
.fa-file-text:before {
  content: "\f15c";
}
.fa-sort-alpha-asc:before {
  content: "\f15d";
}
.fa-sort-alpha-desc:before {
  content: "\f15e";
}
.fa-sort-amount-asc:before {
  content: "\f160";
}
.fa-sort-amount-desc:before {
  content: "\f161";
}
.fa-sort-numeric-asc:before {
  content: "\f162";
}
.fa-sort-numeric-desc:before {
  content: "\f163";
}
.fa-thumbs-up:before {
  content: "\f164";
}
.fa-thumbs-down:before {
  content: "\f165";
}
.fa-youtube-square:before {
  content: "\f166";
}
.fa-youtube:before {
  content: "\f167";
}
.fa-xing:before {
  content: "\f168";
}
.fa-xing-square:before {
  content: "\f169";
}
.fa-youtube-play:before {
  content: "\f16a";
}
.fa-dropbox:before {
  content: "\f16b";
}
.fa-stack-overflow:before {
  content: "\f16c";
}
.fa-instagram:before {
  content: "\f16d";
}
.fa-flickr:before {
  content: "\f16e";
}
.fa-adn:before {
  content: "\f170";
}
.fa-bitbucket:before {
  content: "\f171";
}
.fa-bitbucket-square:before {
  content: "\f172";
}
.fa-tumblr:before {
  content: "\f173";
}
.fa-tumblr-square:before {
  content: "\f174";
}
.fa-long-arrow-down:before {
  content: "\f175";
}
.fa-long-arrow-up:before {
  content: "\f176";
}
.fa-long-arrow-left:before {
  content: "\f177";
}
.fa-long-arrow-right:before {
  content: "\f178";
}
.fa-apple:before {
  content: "\f179";
}
.fa-windows:before {
  content: "\f17a";
}
.fa-android:before {
  content: "\f17b";
}
.fa-linux:before {
  content: "\f17c";
}
.fa-dribbble:before {
  content: "\f17d";
}
.fa-skype:before {
  content: "\f17e";
}
.fa-foursquare:before {
  content: "\f180";
}
.fa-trello:before {
  content: "\f181";
}
.fa-female:before {
  content: "\f182";
}
.fa-male:before {
  content: "\f183";
}
.fa-gittip:before,
.fa-gratipay:before {
  content: "\f184";
}
.fa-sun-o:before {
  content: "\f185";
}
.fa-moon-o:before {
  content: "\f186";
}
.fa-archive:before {
  content: "\f187";
}
.fa-bug:before {
  content: "\f188";
}
.fa-vk:before {
  content: "\f189";
}
.fa-weibo:before {
  content: "\f18a";
}
.fa-renren:before {
  content: "\f18b";
}
.fa-pagelines:before {
  content: "\f18c";
}
.fa-stack-exchange:before {
  content: "\f18d";
}
.fa-arrow-circle-o-right:before {
  content: "\f18e";
}
.fa-arrow-circle-o-left:before {
  content: "\f190";
}
.fa-toggle-left:before,
.fa-caret-square-o-left:before {
  content: "\f191";
}
.fa-dot-circle-o:before {
  content: "\f192";
}
.fa-wheelchair:before {
  content: "\f193";
}
.fa-vimeo-square:before {
  content: "\f194";
}
.fa-turkish-lira:before,
.fa-try:before {
  content: "\f195";
}
.fa-plus-square-o:before {
  content: "\f196";
}
.fa-space-shuttle:before {
  content: "\f197";
}
.fa-slack:before {
  content: "\f198";
}
.fa-envelope-square:before {
  content: "\f199";
}
.fa-wordpress:before {
  content: "\f19a";
}
.fa-openid:before {
  content: "\f19b";
}
.fa-institution:before,
.fa-bank:before,
.fa-university:before {
  content: "\f19c";
}
.fa-mortar-board:before,
.fa-graduation-cap:before {
  content: "\f19d";
}
.fa-yahoo:before {
  content: "\f19e";
}
.fa-google:before {
  content: "\f1a0";
}
.fa-reddit:before {
  content: "\f1a1";
}
.fa-reddit-square:before {
  content: "\f1a2";
}
.fa-stumbleupon-circle:before {
  content: "\f1a3";
}
.fa-stumbleupon:before {
  content: "\f1a4";
}
.fa-delicious:before {
  content: "\f1a5";
}
.fa-digg:before {
  content: "\f1a6";
}
.fa-pied-piper-pp:before {
  content: "\f1a7";
}
.fa-pied-piper-alt:before {
  content: "\f1a8";
}
.fa-drupal:before {
  content: "\f1a9";
}
.fa-joomla:before {
  content: "\f1aa";
}
.fa-language:before {
  content: "\f1ab";
}
.fa-fax:before {
  content: "\f1ac";
}
.fa-building:before {
  content: "\f1ad";
}
.fa-child:before {
  content: "\f1ae";
}
.fa-paw:before {
  content: "\f1b0";
}
.fa-spoon:before {
  content: "\f1b1";
}
.fa-cube:before {
  content: "\f1b2";
}
.fa-cubes:before {
  content: "\f1b3";
}
.fa-behance:before {
  content: "\f1b4";
}
.fa-behance-square:before {
  content: "\f1b5";
}
.fa-steam:before {
  content: "\f1b6";
}
.fa-steam-square:before {
  content: "\f1b7";
}
.fa-recycle:before {
  content: "\f1b8";
}
.fa-automobile:before,
.fa-car:before {
  content: "\f1b9";
}
.fa-cab:before,
.fa-taxi:before {
  content: "\f1ba";
}
.fa-tree:before {
  content: "\f1bb";
}
.fa-spotify:before {
  content: "\f1bc";
}
.fa-deviantart:before {
  content: "\f1bd";
}
.fa-soundcloud:before {
  content: "\f1be";
}
.fa-database:before {
  content: "\f1c0";
}
.fa-file-pdf-o:before {
  content: "\f1c1";
}
.fa-file-word-o:before {
  content: "\f1c2";
}
.fa-file-excel-o:before {
  content: "\f1c3";
}
.fa-file-powerpoint-o:before {
  content: "\f1c4";
}
.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
  content: "\f1c5";
}
.fa-file-zip-o:before,
.fa-file-archive-o:before {
  content: "\f1c6";
}
.fa-file-sound-o:before,
.fa-file-audio-o:before {
  content: "\f1c7";
}
.fa-file-movie-o:before,
.fa-file-video-o:before {
  content: "\f1c8";
}
.fa-file-code-o:before {
  content: "\f1c9";
}
.fa-vine:before {
  content: "\f1ca";
}
.fa-codepen:before {
  content: "\f1cb";
}
.fa-jsfiddle:before {
  content: "\f1cc";
}
.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
  content: "\f1cd";
}
.fa-circle-o-notch:before {
  content: "\f1ce";
}
.fa-ra:before,
.fa-resistance:before,
.fa-rebel:before {
  content: "\f1d0";
}
.fa-ge:before,
.fa-empire:before {
  content: "\f1d1";
}
.fa-git-square:before {
  content: "\f1d2";
}
.fa-git:before {
  content: "\f1d3";
}
.fa-y-combinator-square:before,
.fa-yc-square:before,
.fa-hacker-news:before {
  content: "\f1d4";
}
.fa-tencent-weibo:before {
  content: "\f1d5";
}
.fa-qq:before {
  content: "\f1d6";
}
.fa-wechat:before,
.fa-weixin:before {
  content: "\f1d7";
}
.fa-send:before,
.fa-paper-plane:before {
  content: "\f1d8";
}
.fa-send-o:before,
.fa-paper-plane-o:before {
  content: "\f1d9";
}
.fa-history:before {
  content: "\f1da";
}
.fa-circle-thin:before {
  content: "\f1db";
}
.fa-header:before {
  content: "\f1dc";
}
.fa-paragraph:before {
  content: "\f1dd";
}
.fa-sliders:before {
  content: "\f1de";
}
.fa-share-alt:before {
  content: "\f1e0";
}
.fa-share-alt-square:before {
  content: "\f1e1";
}
.fa-bomb:before {
  content: "\f1e2";
}
.fa-soccer-ball-o:before,
.fa-futbol-o:before {
  content: "\f1e3";
}
.fa-tty:before {
  content: "\f1e4";
}
.fa-binoculars:before {
  content: "\f1e5";
}
.fa-plug:before {
  content: "\f1e6";
}
.fa-slideshare:before {
  content: "\f1e7";
}
.fa-twitch:before {
  content: "\f1e8";
}
.fa-yelp:before {
  content: "\f1e9";
}
.fa-newspaper-o:before {
  content: "\f1ea";
}
.fa-wifi:before {
  content: "\f1eb";
}
.fa-calculator:before {
  content: "\f1ec";
}
.fa-paypal:before {
  content: "\f1ed";
}
.fa-google-wallet:before {
  content: "\f1ee";
}
.fa-cc-visa:before {
  content: "\f1f0";
}
.fa-cc-mastercard:before {
  content: "\f1f1";
}
.fa-cc-discover:before {
  content: "\f1f2";
}
.fa-cc-amex:before {
  content: "\f1f3";
}
.fa-cc-paypal:before {
  content: "\f1f4";
}
.fa-cc-stripe:before {
  content: "\f1f5";
}
.fa-bell-slash:before {
  content: "\f1f6";
}
.fa-bell-slash-o:before {
  content: "\f1f7";
}
.fa-trash:before {
  content: "\f1f8";
}
.fa-copyright:before {
  content: "\f1f9";
}
.fa-at:before {
  content: "\f1fa";
}
.fa-eyedropper:before {
  content: "\f1fb";
}
.fa-paint-brush:before {
  content: "\f1fc";
}
.fa-birthday-cake:before {
  content: "\f1fd";
}
.fa-area-chart:before {
  content: "\f1fe";
}
.fa-pie-chart:before {
  content: "\f200";
}
.fa-line-chart:before {
  content: "\f201";
}
.fa-lastfm:before {
  content: "\f202";
}
.fa-lastfm-square:before {
  content: "\f203";
}
.fa-toggle-off:before {
  content: "\f204";
}
.fa-toggle-on:before {
  content: "\f205";
}
.fa-bicycle:before {
  content: "\f206";
}
.fa-bus:before {
  content: "\f207";
}
.fa-ioxhost:before {
  content: "\f208";
}
.fa-angellist:before {
  content: "\f209";
}
.fa-cc:before {
  content: "\f20a";
}
.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
  content: "\f20b";
}
.fa-meanpath:before {
  content: "\f20c";
}
.fa-buysellads:before {
  content: "\f20d";
}
.fa-connectdevelop:before {
  content: "\f20e";
}
.fa-dashcube:before {
  content: "\f210";
}
.fa-forumbee:before {
  content: "\f211";
}
.fa-leanpub:before {
  content: "\f212";
}
.fa-sellsy:before {
  content: "\f213";
}
.fa-shirtsinbulk:before {
  content: "\f214";
}
.fa-simplybuilt:before {
  content: "\f215";
}
.fa-skyatlas:before {
  content: "\f216";
}
.fa-cart-plus:before {
  content: "\f217";
}
.fa-cart-arrow-down:before {
  content: "\f218";
}
.fa-diamond:before {
  content: "\f219";
}
.fa-ship:before {
  content: "\f21a";
}
.fa-user-secret:before {
  content: "\f21b";
}
.fa-motorcycle:before {
  content: "\f21c";
}
.fa-street-view:before {
  content: "\f21d";
}
.fa-heartbeat:before {
  content: "\f21e";
}
.fa-venus:before {
  content: "\f221";
}
.fa-mars:before {
  content: "\f222";
}
.fa-mercury:before {
  content: "\f223";
}
.fa-intersex:before,
.fa-transgender:before {
  content: "\f224";
}
.fa-transgender-alt:before {
  content: "\f225";
}
.fa-venus-double:before {
  content: "\f226";
}
.fa-mars-double:before {
  content: "\f227";
}
.fa-venus-mars:before {
  content: "\f228";
}
.fa-mars-stroke:before {
  content: "\f229";
}
.fa-mars-stroke-v:before {
  content: "\f22a";
}
.fa-mars-stroke-h:before {
  content: "\f22b";
}
.fa-neuter:before {
  content: "\f22c";
}
.fa-genderless:before {
  content: "\f22d";
}
.fa-facebook-official:before {
  content: "\f230";
}
.fa-pinterest-p:before {
  content: "\f231";
}
.fa-whatsapp:before {
  content: "\f232";
}
.fa-server:before {
  content: "\f233";
}
.fa-user-plus:before {
  content: "\f234";
}
.fa-user-times:before {
  content: "\f235";
}
.fa-hotel:before,
.fa-bed:before {
  content: "\f236";
}
.fa-viacoin:before {
  content: "\f237";
}
.fa-train:before {
  content: "\f238";
}
.fa-subway:before {
  content: "\f239";
}
.fa-medium:before {
  content: "\f23a";
}
.fa-yc:before,
.fa-y-combinator:before {
  content: "\f23b";
}
.fa-optin-monster:before {
  content: "\f23c";
}
.fa-opencart:before {
  content: "\f23d";
}
.fa-expeditedssl:before {
  content: "\f23e";
}
.fa-battery-4:before,
.fa-battery:before,
.fa-battery-full:before {
  content: "\f240";
}
.fa-battery-3:before,
.fa-battery-three-quarters:before {
  content: "\f241";
}
.fa-battery-2:before,
.fa-battery-half:before {
  content: "\f242";
}
.fa-battery-1:before,
.fa-battery-quarter:before {
  content: "\f243";
}
.fa-battery-0:before,
.fa-battery-empty:before {
  content: "\f244";
}
.fa-mouse-pointer:before {
  content: "\f245";
}
.fa-i-cursor:before {
  content: "\f246";
}
.fa-object-group:before {
  content: "\f247";
}
.fa-object-ungroup:before {
  content: "\f248";
}
.fa-sticky-note:before {
  content: "\f249";
}
.fa-sticky-note-o:before {
  content: "\f24a";
}
.fa-cc-jcb:before {
  content: "\f24b";
}
.fa-cc-diners-club:before {
  content: "\f24c";
}
.fa-clone:before {
  content: "\f24d";
}
.fa-balance-scale:before {
  content: "\f24e";
}
.fa-hourglass-o:before {
  content: "\f250";
}
.fa-hourglass-1:before,
.fa-hourglass-start:before {
  content: "\f251";
}
.fa-hourglass-2:before,
.fa-hourglass-half:before {
  content: "\f252";
}
.fa-hourglass-3:before,
.fa-hourglass-end:before {
  content: "\f253";
}
.fa-hourglass:before {
  content: "\f254";
}
.fa-hand-grab-o:before,
.fa-hand-rock-o:before {
  content: "\f255";
}
.fa-hand-stop-o:before,
.fa-hand-paper-o:before {
  content: "\f256";
}
.fa-hand-scissors-o:before {
  content: "\f257";
}
.fa-hand-lizard-o:before {
  content: "\f258";
}
.fa-hand-spock-o:before {
  content: "\f259";
}
.fa-hand-pointer-o:before {
  content: "\f25a";
}
.fa-hand-peace-o:before {
  content: "\f25b";
}
.fa-trademark:before {
  content: "\f25c";
}
.fa-registered:before {
  content: "\f25d";
}
.fa-creative-commons:before {
  content: "\f25e";
}
.fa-gg:before {
  content: "\f260";
}
.fa-gg-circle:before {
  content: "\f261";
}
.fa-tripadvisor:before {
  content: "\f262";
}
.fa-odnoklassniki:before {
  content: "\f263";
}
.fa-odnoklassniki-square:before {
  content: "\f264";
}
.fa-get-pocket:before {
  content: "\f265";
}
.fa-wikipedia-w:before {
  content: "\f266";
}
.fa-safari:before {
  content: "\f267";
}
.fa-chrome:before {
  content: "\f268";
}
.fa-firefox:before {
  content: "\f269";
}
.fa-opera:before {
  content: "\f26a";
}
.fa-internet-explorer:before {
  content: "\f26b";
}
.fa-tv:before,
.fa-television:before {
  content: "\f26c";
}
.fa-contao:before {
  content: "\f26d";
}
.fa-500px:before {
  content: "\f26e";
}
.fa-amazon:before {
  content: "\f270";
}
.fa-calendar-plus-o:before {
  content: "\f271";
}
.fa-calendar-minus-o:before {
  content: "\f272";
}
.fa-calendar-times-o:before {
  content: "\f273";
}
.fa-calendar-check-o:before {
  content: "\f274";
}
.fa-industry:before {
  content: "\f275";
}
.fa-map-pin:before {
  content: "\f276";
}
.fa-map-signs:before {
  content: "\f277";
}
.fa-map-o:before {
  content: "\f278";
}
.fa-map:before {
  content: "\f279";
}
.fa-commenting:before {
  content: "\f27a";
}
.fa-commenting-o:before {
  content: "\f27b";
}
.fa-houzz:before {
  content: "\f27c";
}
.fa-vimeo:before {
  content: "\f27d";
}
.fa-black-tie:before {
  content: "\f27e";
}
.fa-fonticons:before {
  content: "\f280";
}
.fa-reddit-alien:before {
  content: "\f281";
}
.fa-edge:before {
  content: "\f282";
}
.fa-credit-card-alt:before {
  content: "\f283";
}
.fa-codiepie:before {
  content: "\f284";
}
.fa-modx:before {
  content: "\f285";
}
.fa-fort-awesome:before {
  content: "\f286";
}
.fa-usb:before {
  content: "\f287";
}
.fa-product-hunt:before {
  content: "\f288";
}
.fa-mixcloud:before {
  content: "\f289";
}
.fa-scribd:before {
  content: "\f28a";
}
.fa-pause-circle:before {
  content: "\f28b";
}
.fa-pause-circle-o:before {
  content: "\f28c";
}
.fa-stop-circle:before {
  content: "\f28d";
}
.fa-stop-circle-o:before {
  content: "\f28e";
}
.fa-shopping-bag:before {
  content: "\f290";
}
.fa-shopping-basket:before {
  content: "\f291";
}
.fa-hashtag:before {
  content: "\f292";
}
.fa-bluetooth:before {
  content: "\f293";
}
.fa-bluetooth-b:before {
  content: "\f294";
}
.fa-percent:before {
  content: "\f295";
}
.fa-gitlab:before {
  content: "\f296";
}
.fa-wpbeginner:before {
  content: "\f297";
}
.fa-wpforms:before {
  content: "\f298";
}
.fa-envira:before {
  content: "\f299";
}
.fa-universal-access:before {
  content: "\f29a";
}
.fa-wheelchair-alt:before {
  content: "\f29b";
}
.fa-question-circle-o:before {
  content: "\f29c";
}
.fa-blind:before {
  content: "\f29d";
}
.fa-audio-description:before {
  content: "\f29e";
}
.fa-volume-control-phone:before {
  content: "\f2a0";
}
.fa-braille:before {
  content: "\f2a1";
}
.fa-assistive-listening-systems:before {
  content: "\f2a2";
}
.fa-asl-interpreting:before,
.fa-american-sign-language-interpreting:before {
  content: "\f2a3";
}
.fa-deafness:before,
.fa-hard-of-hearing:before,
.fa-deaf:before {
  content: "\f2a4";
}
.fa-glide:before {
  content: "\f2a5";
}
.fa-glide-g:before {
  content: "\f2a6";
}
.fa-signing:before,
.fa-sign-language:before {
  content: "\f2a7";
}
.fa-low-vision:before {
  content: "\f2a8";
}
.fa-viadeo:before {
  content: "\f2a9";
}
.fa-viadeo-square:before {
  content: "\f2aa";
}
.fa-snapchat:before {
  content: "\f2ab";
}
.fa-snapchat-ghost:before {
  content: "\f2ac";
}
.fa-snapchat-square:before {
  content: "\f2ad";
}
.fa-pied-piper:before {
  content: "\f2ae";
}
.fa-first-order:before {
  content: "\f2b0";
}
.fa-yoast:before {
  content: "\f2b1";
}
.fa-themeisle:before {
  content: "\f2b2";
}
.fa-google-plus-circle:before,
.fa-google-plus-official:before {
  content: "\f2b3";
}
.fa-fa:before,
.fa-font-awesome:before {
  content: "\f2b4";
}
.fa-handshake-o:before {
  content: "\f2b5";
}
.fa-envelope-open:before {
  content: "\f2b6";
}
.fa-envelope-open-o:before {
  content: "\f2b7";
}
.fa-linode:before {
  content: "\f2b8";
}
.fa-address-book:before {
  content: "\f2b9";
}
.fa-address-book-o:before {
  content: "\f2ba";
}
.fa-vcard:before,
.fa-address-card:before {
  content: "\f2bb";
}
.fa-vcard-o:before,
.fa-address-card-o:before {
  content: "\f2bc";
}
.fa-user-circle:before {
  content: "\f2bd";
}
.fa-user-circle-o:before {
  content: "\f2be";
}
.fa-user-o:before {
  content: "\f2c0";
}
.fa-id-badge:before {
  content: "\f2c1";
}
.fa-drivers-license:before,
.fa-id-card:before {
  content: "\f2c2";
}
.fa-drivers-license-o:before,
.fa-id-card-o:before {
  content: "\f2c3";
}
.fa-quora:before {
  content: "\f2c4";
}
.fa-free-code-camp:before {
  content: "\f2c5";
}
.fa-telegram:before {
  content: "\f2c6";
}
.fa-thermometer-4:before,
.fa-thermometer:before,
.fa-thermometer-full:before {
  content: "\f2c7";
}
.fa-thermometer-3:before,
.fa-thermometer-three-quarters:before {
  content: "\f2c8";
}
.fa-thermometer-2:before,
.fa-thermometer-half:before {
  content: "\f2c9";
}
.fa-thermometer-1:before,
.fa-thermometer-quarter:before {
  content: "\f2ca";
}
.fa-thermometer-0:before,
.fa-thermometer-empty:before {
  content: "\f2cb";
}
.fa-shower:before {
  content: "\f2cc";
}
.fa-bathtub:before,
.fa-s15:before,
.fa-bath:before {
  content: "\f2cd";
}
.fa-podcast:before {
  content: "\f2ce";
}
.fa-window-maximize:before {
  content: "\f2d0";
}
.fa-window-minimize:before {
  content: "\f2d1";
}
.fa-window-restore:before {
  content: "\f2d2";
}
.fa-times-rectangle:before,
.fa-window-close:before {
  content: "\f2d3";
}
.fa-times-rectangle-o:before,
.fa-window-close-o:before {
  content: "\f2d4";
}
.fa-bandcamp:before {
  content: "\f2d5";
}
.fa-grav:before {
  content: "\f2d6";
}
.fa-etsy:before {
  content: "\f2d7";
}
.fa-imdb:before {
  content: "\f2d8";
}
.fa-ravelry:before {
  content: "\f2d9";
}
.fa-eercast:before {
  content: "\f2da";
}
.fa-microchip:before {
  content: "\f2db";
}
.fa-snowflake-o:before {
  content: "\f2dc";
}
.fa-superpowers:before {
  content: "\f2dd";
}
.fa-wpexplorer:before {
  content: "\f2de";
}
.fa-meetup:before {
  content: "\f2e0";
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}
/* 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 */
.slick-loading .slick-list {
  background: #fff url("../img/ajax-loader.gif") center center no-repeat;
}
/* Icons */
@font-face {
  font-family: "slick";
  src: url("../fonts/slick.eot");
  src: url("../fonts/slick.eot?#iefix") format("embedded-opentype"),
    url("../fonts/slick.woff") format("woff"),
    url("../fonts/slick.ttf") format("truetype"),
    url("../fonts/slick.svg#slick") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 30px;
  width: 30px;
  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;
  z-index: 10;
}
.slick-prev:hover,
.slick-next:hover,
.slick-prev:focus,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}
.slick-prev:hover:before,
.slick-next:hover:before,
.slick-prev:focus: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: "slick";
  font-size: 30px;
  line-height: 1;
  color: #dadada;
  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: "\2190";
}
[dir="rtl"] .slick-prev:before {
  content: "\2192";
}
.slick-next {
  right: 25px;
}
[dir="rtl"] .slick-next {
  left: -25px;
  right: auto;
}
.slick-next:before {
  content: "\2192";
}
[dir="rtl"] .slick-next:before {
  content: "\2190";
}
/* Dots */
.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: "\2022";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 12px;
  line-height: 20px;
  text-align: center;
  color: #080853;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
  color: #080853;
  opacity: 0.75;
}
/*!
 * FullCalendar v3.4.0 Stylesheet
 * Docs & License: https://fullcalendar.io/
 * (c) 2017 Adam Shaw
 */
.fc-icon,
body .fc {
  font-size: 1em;
}
.fc-button-group,
.fc-icon {
  display: inline-block;
}
.fc-bg,
.fc-row .fc-bgevent-skeleton,
.fc-row .fc-highlight-skeleton {
  bottom: 0;
}
.fc-icon,
.fc-unselectable {
  -khtml-user-select: none;
  -webkit-touch-callout: none;
}
.fc {
  direction: ltr;
  text-align: left;
}
.fc-rtl {
  text-align: right;
}
.fc th,
.fc-basic-view td.fc-week-number,
.fc-icon,
.fc-toolbar {
  text-align: center;
}
.fc-unthemed .fc-content,
.fc-unthemed .fc-divider,
.fc-unthemed .fc-list-heading td,
.fc-unthemed .fc-list-view,
.fc-unthemed .fc-popover,
.fc-unthemed .fc-row,
.fc-unthemed tbody,
.fc-unthemed td,
.fc-unthemed th,
.fc-unthemed thead {
  border-color: #ddd;
}
.fc-unthemed .fc-popover {
  background-color: #fff;
}
.fc-unthemed .fc-divider,
.fc-unthemed .fc-list-heading td,
.fc-unthemed .fc-popover .fc-header {
  background: #eee;
}
.fc-unthemed .fc-popover .fc-header .fc-close {
  color: #666;
}
.fc-unthemed td.fc-today {
  background: #fcf8e3;
}
.fc-highlight {
  background: #bce8f1;
  opacity: 0.3;
}
.fc-bgevent {
  background: #8fdf82;
  opacity: 0.3;
}
.fc-nonbusiness {
  background: #d7d7d7;
}
.fc-unthemed .fc-disabled-day {
  background: #d7d7d7;
  opacity: 0.3;
}
.ui-widget .fc-disabled-day {
  background-image: none;
}
.fc-icon {
  height: 1em;
  line-height: 1em;
  overflow: hidden;
  font-family: "Courier New", Courier, monospace;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.fc-icon:after {
  position: relative;
}
.fc-icon-left-single-arrow:after {
  content: "\02039";
  font-weight: 700;
  font-size: 200%;
  top: -7%;
}
.fc-icon-right-single-arrow:after {
  content: "\0203A";
  font-weight: 700;
  font-size: 200%;
  top: -7%;
}
.fc-icon-left-double-arrow:after {
  content: "\000AB";
  font-size: 160%;
  top: -7%;
}
.fc-icon-right-double-arrow:after {
  content: "\000BB";
  font-size: 160%;
  top: -7%;
}
.fc-icon-left-triangle:after {
  content: "\25C4";
  font-size: 125%;
  top: 3%;
}
.fc-icon-right-triangle:after {
  content: "\25BA";
  font-size: 125%;
  top: 3%;
}
.fc-icon-down-triangle:after {
  content: "\25BC";
  font-size: 125%;
  top: 2%;
}
.fc-icon-x:after {
  content: "\000D7";
  font-size: 200%;
  top: 6%;
}
.fc button {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  height: 2.1em;
  padding: 0 0.6em;
  font-size: 1em;
  white-space: nowrap;
  cursor: pointer;
}
.fc button::-moz-focus-inner {
  margin: 0;
  padding: 0;
}
.fc-state-default {
  border: 1px solid;
  background-color: #f5f5f5;
  background-image: -moz-linear-gradient(top, #fff, #e6e6e6);
  background-image: -webkit-gradient(
    linear,
    0 0,
    0 100%,
    from(#fff),
    to(#e6e6e6)
  );
  background-image: -webkit-linear-gradient(top, #fff, #e6e6e6);
  background-image: -o-linear-gradient(top, #fff, #e6e6e6);
  background-image: linear-gradient(to bottom, #fff, #e6e6e6);
  background-repeat: repeat-x;
  border-color: #e6e6e6 #e6e6e6 #bfbfbf;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  color: #333;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 1px 2px rgba(0, 0, 0, 0.05);
}
.fc-state-default.fc-corner-left {
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}
.fc-state-default.fc-corner-right {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}
.fc button .fc-icon {
  position: relative;
  top: -0.05em;
  margin: 0 0.2em;
  vertical-align: middle;
}
.fc-state-active,
.fc-state-disabled,
.fc-state-down,
.fc-state-hover {
  color: #333;
  background-color: #e6e6e6;
}
.fc-state-hover {
  color: #333;
  text-decoration: none;
  background-position: 0 -15px;
  -webkit-transition: background-position 0.1s linear;
  -moz-transition: background-position 0.1s linear;
  -o-transition: background-position 0.1s linear;
  transition: background-position 0.1s linear;
}
.fc-state-active,
.fc-state-down {
  background-color: #ccc;
  background-image: none;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
}
.fc-state-disabled {
  cursor: default;
  background-image: none;
  opacity: 0.65;
  box-shadow: none;
}
.fc-event.fc-draggable,
.fc-event[href],
.fc-popover .fc-header .fc-close,
a[data-goto] {
  cursor: pointer;
}
.fc .fc-button-group > * {
  float: left;
  margin: 0 0 0 -1px;
}
.fc .fc-button-group > :first-child {
  margin-left: 0;
}
.fc-popover {
  position: absolute;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}
.fc-popover .fc-header {
  padding: 2px 4px;
}
.fc-popover .fc-header .fc-title {
  margin: 0 2px;
}
.fc-ltr .fc-popover .fc-header .fc-title,
.fc-rtl .fc-popover .fc-header .fc-close {
  float: left;
}
.fc-ltr .fc-popover .fc-header .fc-close,
.fc-rtl .fc-popover .fc-header .fc-title {
  float: right;
}
.fc-unthemed .fc-popover {
  border-width: 1px;
  border-style: solid;
}
.fc-unthemed .fc-popover .fc-header .fc-close {
  font-size: 0.9em;
  margin-top: 2px;
}
.fc-popover > .ui-widget-header + .ui-widget-content {
  border-top: 0;
}
.fc-divider {
  border-style: solid;
  border-width: 1px;
}
hr.fc-divider {
  height: 0;
  margin: 0;
  padding: 0 0 2px;
  border-width: 1px 0;
}
.fc-bg table,
.fc-row .fc-bgevent-skeleton table,
.fc-row .fc-highlight-skeleton table {
  height: 100%;
}
.fc-clear {
  clear: both;
}
.fc-bg,
.fc-bgevent-skeleton,
.fc-helper-skeleton,
.fc-highlight-skeleton {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
.fc table {
  width: 100%;
  box-sizing: border-box;
  table-layout: fixed;
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 1em;
}
.fc td,
.fc th {
  border-style: solid;
  border-width: 1px;
  padding: 0;
  vertical-align: top;
}
.fc td.fc-today {
  border-style: double;
}
a[data-goto]:hover {
  text-decoration: underline;
}
.fc .fc-row {
  border-style: solid;
  border-width: 0;
}
.fc-row table {
  border-left: 0 hidden transparent;
  border-right: 0 hidden transparent;
  border-bottom: 0 hidden transparent;
}
.fc-row:first-child table {
  border-top: 0 hidden transparent;
}
.fc-row {
  position: relative;
}
.fc-row .fc-bg {
  z-index: 1;
}
.fc-row .fc-bgevent-skeleton td,
.fc-row .fc-highlight-skeleton td {
  border-color: transparent;
}
.fc-row .fc-bgevent-skeleton {
  z-index: 2;
}
.fc-row .fc-highlight-skeleton {
  z-index: 3;
}
.fc-row .fc-content-skeleton {
  position: relative;
  z-index: 4;
  padding-bottom: 2px;
}
.fc-row .fc-helper-skeleton {
  z-index: 5;
}
.fc-row .fc-content-skeleton td,
.fc-row .fc-helper-skeleton td {
  background: 0 0;
  border-color: transparent;
  border-bottom: 0;
}
.fc-row .fc-content-skeleton tbody td,
.fc-row .fc-helper-skeleton tbody td {
  border-top: 0;
}
.fc-scroller {
  -webkit-overflow-scrolling: touch;
}
.fc-row.fc-rigid,
.fc-time-grid-event {
  overflow: hidden;
}
.fc-scroller > .fc-day-grid,
.fc-scroller > .fc-time-grid {
  position: relative;
  width: 100%;
}
.fc-event {
  position: relative;
  display: block;
  font-size: 0.85em;
  line-height: 1.3;
  border-radius: 3px;
  border: 1px solid #3a87ad;
  font-weight: 400;
}
.fc-event,
.fc-event-dot {
  background-color: #3a87ad;
}
.fc-event,
.fc-event:hover,
.ui-widget .fc-event {
  color: #fff;
  text-decoration: none;
}
.fc-not-allowed,
.fc-not-allowed .fc-event {
  cursor: not-allowed;
}
.fc-event .fc-bg {
  z-index: 1;
  background: #fff;
  opacity: 0.25;
}
.fc-event .fc-content {
  position: relative;
  z-index: 2;
}
.fc-event .fc-resizer {
  position: absolute;
  z-index: 4;
  display: none;
}
.fc-event.fc-allow-mouse-resize .fc-resizer,
.fc-event.fc-selected .fc-resizer {
  display: block;
}
.fc-event.fc-selected .fc-resizer:before {
  content: "";
  position: absolute;
  z-index: 9999;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  margin-left: -20px;
  margin-top: -20px;
}
.fc-event.fc-selected {
  z-index: 9999 !important;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
.fc-event.fc-selected.fc-dragging {
  box-shadow: 0 2px 7px rgba(0, 0, 0, 0.3);
}
.fc-h-event.fc-selected:before {
  content: "";
  position: absolute;
  z-index: 3;
  top: -10px;
  bottom: -10px;
  left: 0;
  right: 0;
}
.fc-ltr .fc-h-event.fc-not-start,
.fc-rtl .fc-h-event.fc-not-end {
  margin-left: 0;
  border-left-width: 0;
  padding-left: 1px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.fc-ltr .fc-h-event.fc-not-end,
.fc-rtl .fc-h-event.fc-not-start {
  margin-right: 0;
  border-right-width: 0;
  padding-right: 1px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.fc-ltr .fc-h-event .fc-start-resizer,
.fc-rtl .fc-h-event .fc-end-resizer {
  cursor: w-resize;
  left: -1px;
}
.fc-ltr .fc-h-event .fc-end-resizer,
.fc-rtl .fc-h-event .fc-start-resizer {
  cursor: e-resize;
  right: -1px;
}
.fc-h-event.fc-allow-mouse-resize .fc-resizer {
  width: 7px;
  top: -1px;
  bottom: -1px;
}
.fc-h-event.fc-selected .fc-resizer {
  border-radius: 4px;
  border-width: 1px;
  width: 6px;
  height: 6px;
  border-style: solid;
  border-color: inherit;
  background: #fff;
  top: 50%;
  margin-top: -4px;
}
.fc-ltr .fc-h-event.fc-selected .fc-start-resizer,
.fc-rtl .fc-h-event.fc-selected .fc-end-resizer {
  margin-left: -4px;
}
.fc-ltr .fc-h-event.fc-selected .fc-end-resizer,
.fc-rtl .fc-h-event.fc-selected .fc-start-resizer {
  margin-right: -4px;
}
.fc-day-grid-event {
  margin: 1px 2px 0;
  padding: 0 1px;
}
tr:first-child > td > .fc-day-grid-event {
  margin-top: 2px;
}
.fc-day-grid-event.fc-selected:after {
  content: "";
  position: absolute;
  z-index: 1;
  top: -1px;
  right: -1px;
  bottom: -1px;
  left: -1px;
  background: #000;
  opacity: 0.25;
}
.fc-day-grid-event .fc-content {
  white-space: nowrap;
  overflow: hidden;
}
.fc-day-grid-event .fc-time {
  font-weight: 700;
}
.fc-ltr .fc-day-grid-event.fc-allow-mouse-resize .fc-start-resizer,
.fc-rtl .fc-day-grid-event.fc-allow-mouse-resize .fc-end-resizer {
  margin-left: -2px;
}
.fc-ltr .fc-day-grid-event.fc-allow-mouse-resize .fc-end-resizer,
.fc-rtl .fc-day-grid-event.fc-allow-mouse-resize .fc-start-resizer {
  margin-right: -2px;
}
a.fc-more {
  margin: 1px 3px;
  font-size: 0.85em;
  cursor: pointer;
  text-decoration: none;
}
a.fc-more:hover {
  text-decoration: underline;
}
.fc-limited {
  display: none;
}
.fc-day-grid .fc-row {
  z-index: 1;
}
.fc-more-popover {
  z-index: 2;
  width: 220px;
}
.fc-more-popover .fc-event-container {
  padding: 10px;
}
.fc-now-indicator {
  position: absolute;
  border: 0 solid red;
}
.fc-unselectable {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.fc-toolbar.fc-header-toolbar {
  margin-bottom: 1em;
}
.fc-toolbar.fc-footer-toolbar {
  margin-top: 1em;
}
.fc-toolbar .fc-left {
  float: left;
}
.fc-toolbar .fc-right {
  float: right;
}
.fc-toolbar .fc-center {
  display: inline-block;
}
.fc .fc-toolbar > * > * {
  float: left;
  margin-left: 0.75em;
}
.fc .fc-toolbar > * > :first-child {
  margin-left: 0;
}
.fc-toolbar h2 {
  margin: 0;
}
.fc-toolbar button {
  position: relative;
}
.fc-toolbar .fc-state-hover,
.fc-toolbar .ui-state-hover {
  z-index: 2;
}
.fc-toolbar .fc-state-down {
  z-index: 3;
}
.fc-toolbar .fc-state-active,
.fc-toolbar .ui-state-active {
  z-index: 4;
}
.fc-toolbar button:focus {
  z-index: 5;
}
.fc-view-container *,
.fc-view-container :after,
.fc-view-container :before {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
.fc-view,
.fc-view > table {
  position: relative;
  z-index: 1;
}
.fc-basicDay-view .fc-content-skeleton,
.fc-basicWeek-view .fc-content-skeleton {
  padding-bottom: 1em;
}
.fc-basic-view .fc-body .fc-row {
  min-height: 4em;
}
.fc-row.fc-rigid .fc-content-skeleton {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
.fc-day-top.fc-other-month {
  opacity: 0.3;
}
.fc-basic-view .fc-day-number,
.fc-basic-view .fc-week-number {
  padding: 2px;
}
.fc-basic-view th.fc-day-number,
.fc-basic-view th.fc-week-number {
  padding: 0 2px;
}
.fc-ltr .fc-basic-view .fc-day-top .fc-day-number {
  float: right;
}
.fc-rtl .fc-basic-view .fc-day-top .fc-day-number {
  float: left;
}
.fc-ltr .fc-basic-view .fc-day-top .fc-week-number {
  float: left;
  border-radius: 0 0 3px;
}
.fc-rtl .fc-basic-view .fc-day-top .fc-week-number {
  float: right;
  border-radius: 0 0 0 3px;
}
.fc-basic-view .fc-day-top .fc-week-number {
  min-width: 1.5em;
  text-align: center;
  background-color: #f2f2f2;
  color: grey;
}
.fc-basic-view td.fc-week-number > * {
  display: inline-block;
  min-width: 1.25em;
}
.fc-agenda-view .fc-day-grid {
  position: relative;
  z-index: 2;
}
.fc-agenda-view .fc-day-grid .fc-row {
  min-height: 3em;
}
.fc-agenda-view .fc-day-grid .fc-row .fc-content-skeleton {
  padding-bottom: 1em;
}
.fc .fc-axis {
  vertical-align: middle;
  padding: 0 4px;
  white-space: nowrap;
}
.fc-ltr .fc-axis {
  text-align: right;
}
.fc-rtl .fc-axis {
  text-align: left;
}
.ui-widget td.fc-axis {
  font-weight: 400;
}
.fc-time-grid,
.fc-time-grid-container {
  position: relative;
  z-index: 1;
}
.fc-time-grid {
  min-height: 100%;
}
.fc-time-grid table {
  border: 0 hidden transparent;
}
.fc-time-grid > .fc-bg {
  z-index: 1;
}
.fc-time-grid .fc-slats,
.fc-time-grid > hr {
  position: relative;
  z-index: 2;
}
.fc-time-grid .fc-content-col {
  position: relative;
}
.fc-time-grid .fc-content-skeleton {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  right: 0;
}
.fc-time-grid .fc-business-container {
  position: relative;
  z-index: 1;
}
.fc-time-grid .fc-bgevent-container {
  position: relative;
  z-index: 2;
}
.fc-time-grid .fc-highlight-container {
  z-index: 3;
  position: relative;
}
.fc-time-grid .fc-event-container {
  position: relative;
  z-index: 4;
}
.fc-time-grid .fc-now-indicator-line {
  z-index: 5;
}
.fc-time-grid .fc-helper-container {
  position: relative;
  z-index: 6;
}
.fc-time-grid .fc-slats td {
  height: 1.5em;
  border-bottom: 0;
}
.fc-time-grid .fc-slats .fc-minor td {
  border-top-style: dotted;
}
.fc-time-grid .fc-slats .ui-widget-content {
  background: 0 0;
}
.fc-time-grid .fc-highlight {
  position: absolute;
  left: 0;
  right: 0;
}
.fc-ltr .fc-time-grid .fc-event-container {
  margin: 0 2.5% 0 2px;
}
.fc-rtl .fc-time-grid .fc-event-container {
  margin: 0 2px 0 2.5%;
}
.fc-time-grid .fc-bgevent,
.fc-time-grid .fc-event {
  position: absolute;
  z-index: 1;
}
.fc-time-grid .fc-bgevent {
  left: 0;
  right: 0;
}
.fc-v-event.fc-not-start {
  border-top-width: 0;
  padding-top: 1px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.fc-v-event.fc-not-end {
  border-bottom-width: 0;
  padding-bottom: 1px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.fc-time-grid-event.fc-selected {
  overflow: visible;
}
.fc-time-grid-event.fc-selected .fc-bg {
  display: none;
}
.fc-time-grid-event .fc-content {
  overflow: hidden;
}
.fc-time-grid-event .fc-time,
.fc-time-grid-event .fc-title {
  padding: 0 1px;
}
.fc-time-grid-event .fc-time {
  font-size: 0.85em;
  white-space: nowrap;
}
.fc-time-grid-event.fc-short .fc-content {
  white-space: nowrap;
}
.fc-time-grid-event.fc-short .fc-time,
.fc-time-grid-event.fc-short .fc-title {
  display: inline-block;
  vertical-align: top;
}
.fc-time-grid-event.fc-short .fc-time span {
  display: none;
}
.fc-time-grid-event.fc-short .fc-time:before {
  content: attr(data-start);
}
.fc-time-grid-event.fc-short .fc-time:after {
  content: "\000A0-\000A0";
}
.fc-time-grid-event.fc-short .fc-title {
  font-size: 0.85em;
  padding: 0;
}
.fc-time-grid-event.fc-allow-mouse-resize .fc-resizer {
  left: 0;
  right: 0;
  bottom: 0;
  height: 8px;
  overflow: hidden;
  line-height: 8px;
  font-size: 11px;
  font-family: monospace;
  text-align: center;
  cursor: s-resize;
}
.fc-time-grid-event.fc-allow-mouse-resize .fc-resizer:after {
  content: "=";
}
.fc-time-grid-event.fc-selected .fc-resizer {
  border-radius: 5px;
  border-width: 1px;
  width: 8px;
  height: 8px;
  border-style: solid;
  border-color: inherit;
  background: #fff;
  left: 50%;
  margin-left: -5px;
  bottom: -5px;
}
.fc-time-grid .fc-now-indicator-line {
  border-top-width: 1px;
  left: 0;
  right: 0;
}
.fc-time-grid .fc-now-indicator-arrow {
  margin-top: -5px;
}
.fc-ltr .fc-time-grid .fc-now-indicator-arrow {
  left: 0;
  border-width: 5px 0 5px 6px;
  border-top-color: transparent;
  border-bottom-color: transparent;
}
.fc-rtl .fc-time-grid .fc-now-indicator-arrow {
  right: 0;
  border-width: 5px 6px 5px 0;
  border-top-color: transparent;
  border-bottom-color: transparent;
}
.fc-event-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 5px;
}
.fc-rtl .fc-list-view {
  direction: rtl;
}
.fc-list-view {
  border-width: 1px;
  border-style: solid;
}
.fc .fc-list-table {
  table-layout: auto;
}
.fc-list-table td {
  border-width: 1px 0 0;
  padding: 8px 14px;
}
.fc-list-table tr:first-child td {
  border-top-width: 0;
}
.fc-list-heading {
  border-bottom-width: 1px;
}
.fc-list-heading td {
  font-weight: 700;
}
.fc-ltr .fc-list-heading-main {
  float: left;
}
.fc-ltr .fc-list-heading-alt,
.fc-rtl .fc-list-heading-main {
  float: right;
}
.fc-rtl .fc-list-heading-alt {
  float: left;
}
.fc-list-item.fc-has-url {
  cursor: pointer;
}
.fc-list-item:hover td {
  background-color: #f5f5f5;
}
.fc-list-item-marker,
.fc-list-item-time {
  white-space: nowrap;
  width: 1px;
}
.fc-ltr .fc-list-item-marker {
  padding-right: 0;
}
.fc-rtl .fc-list-item-marker {
  padding-left: 0;
}
.fc-list-item-title a {
  text-decoration: none;
  color: inherit;
}
.fc-list-item-title a[href]:hover {
  text-decoration: underline;
}
.fc-list-empty-wrap2 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.fc-list-empty-wrap1 {
  width: 100%;
  height: 100%;
  display: table;
}
.fc-list-empty {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}
.fc-unthemed .fc-list-empty {
  background-color: #eee;
}
/*
 *  Remodal - v1.1.1
 *  Responsive, lightweight, fast, synchronized with CSS animations, fully customizable modal window plugin with declarative configuration and hash tracking.
 *  http://vodkabears.github.io/remodal/
 *
 *  Made by Ilya Makarov
 *  Under MIT License
 */
/* ==========================================================================
 Remodal's default mobile first theme
 ========================================================================== */
/* Default theme styles for the background */
.remodal-bg.remodal-is-opening,
.remodal-bg.remodal-is-opened {
  -webkit-filter: blur(3px);
  filter: blur(3px);
}
/* Default theme styles of the overlay */
.remodal-overlay {
  background: rgba(43, 46, 56, 0.9);
}
.remodal-overlay.remodal-is-opening,
.remodal-overlay.remodal-is-closing {
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
.remodal-overlay.remodal-is-opening {
  -webkit-animation-name: remodal-overlay-opening-keyframes;
  animation-name: remodal-overlay-opening-keyframes;
}
.remodal-overlay.remodal-is-closing {
  -webkit-animation-name: remodal-overlay-closing-keyframes;
  animation-name: remodal-overlay-closing-keyframes;
}
/* Default theme styles of the wrapper */
.remodal-wrapper {
  padding: 10px 10px 0;
}
/* Default theme styles of the modal dialog */
.remodal {
  box-sizing: border-box;
  width: 100%;
  margin-bottom: 10px;
  padding: 35px;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  color: #2b2e38;
  background: #fff;
}
.remodal.remodal-is-opening,
.remodal.remodal-is-closing {
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
.remodal.remodal-is-opening {
  -webkit-animation-name: remodal-opening-keyframes;
  animation-name: remodal-opening-keyframes;
}
.remodal.remodal-is-closing {
  -webkit-animation-name: remodal-closing-keyframes;
  animation-name: remodal-closing-keyframes;
}
/* Vertical align of the modal dialog */
.remodal,
.remodal-wrapper:after {
  vertical-align: middle;
}
/* Close button */
.remodal-close {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  overflow: visible;
  width: 35px;
  height: 35px;
  margin: 0;
  padding: 0;
  cursor: pointer;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
  text-decoration: none;
  color: #95979c;
  border: 0;
  outline: 0;
  background: transparent;
}
.remodal-close:hover,
.remodal-close:focus {
  color: #2b2e38;
}
.remodal-close:before {
  font-family: Arial, "Helvetica CY", "Nimbus Sans L", sans-serif !important;
  font-size: 25px;
  line-height: 35px;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 35px;
  content: "\00d7";
  text-align: center;
}
/* Dialog buttons */
.remodal-confirm,
.remodal-cancel {
  font: inherit;
  display: inline-block;
  overflow: visible;
  min-width: 110px;
  margin: 0;
  padding: 12px 0;
  cursor: pointer;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  border: 0;
  outline: 0;
}
.remodal-confirm {
  color: #fff;
  background: #81c784;
}
.remodal-confirm:hover,
.remodal-confirm:focus {
  background: #66bb6a;
}
.remodal-cancel {
  color: #fff;
  background: #e57373;
}
.remodal-cancel:hover,
.remodal-cancel:focus {
  background: #ef5350;
}
/* Remove inner padding and border in Firefox 4+ for the button tag. */
.remodal-confirm::-moz-focus-inner,
.remodal-cancel::-moz-focus-inner,
.remodal-close::-moz-focus-inner {
  padding: 0;
  border: 0;
}
/* Keyframes
 ========================================================================== */
@-webkit-keyframes remodal-opening-keyframes {
  from {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    opacity: 0;
  }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
    -webkit-filter: blur(0);
    filter: blur(0);
  }
}
@keyframes remodal-opening-keyframes {
  from {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    opacity: 0;
  }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
    -webkit-filter: blur(0);
    filter: blur(0);
  }
}
@-webkit-keyframes remodal-closing-keyframes {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  to {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
    opacity: 0;
    -webkit-filter: blur(0);
    filter: blur(0);
  }
}
@keyframes remodal-closing-keyframes {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  to {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
    opacity: 0;
    -webkit-filter: blur(0);
    filter: blur(0);
  }
}
@-webkit-keyframes remodal-overlay-opening-keyframes {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes remodal-overlay-opening-keyframes {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes remodal-overlay-closing-keyframes {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes remodal-overlay-closing-keyframes {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
/* Media queries
 ========================================================================== */
@media only screen and (min-width: 641px) {
  .remodal {
    max-width: 700px;
  }
}
/* IE8
 ========================================================================== */
.lt-ie9 .remodal-overlay {
  background: #2b2e38;
}
.lt-ie9 .remodal {
  width: 700px;
}
/*
 *  Remodal - v1.1.1
 *  Responsive, lightweight, fast, synchronized with CSS animations, fully customizable modal window plugin with declarative configuration and hash tracking.
 *  http://vodkabears.github.io/remodal/
 *
 *  Made by Ilya Makarov
 *  Under MIT License
 */
/* ==========================================================================
 Remodal's necessary styles
 ========================================================================== */
/* Hide scroll bar */
html.remodal-is-locked {
  overflow: hidden;
  -ms-touch-action: none;
  touch-action: none;
}
/* Anti FOUC */
.remodal,
[data-remodal-id] {
  display: none;
}
/* Necessary styles of the overlay */
.remodal-overlay {
  position: fixed;
  z-index: 9999;
  top: -5000px;
  right: -5000px;
  bottom: -5000px;
  left: -5000px;
  display: none;
}
/* Necessary styles of the wrapper */
.remodal-wrapper {
  position: fixed;
  z-index: 10000;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  overflow: auto;
  text-align: center;
  -webkit-overflow-scrolling: touch;
}
.remodal-wrapper:after {
  display: inline-block;
  height: 100%;
  margin-left: -0.05em;
  content: "";
}
/* Fix iPad, iPhone glitches */
.remodal-overlay,
.remodal-wrapper {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
/* Necessary styles of the modal dialog */
.remodal {
  position: relative;
  outline: none;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
.remodal-is-initialized {
  /* Disable Anti-FOUC */
  display: inline-block;
}
/*--------------------------------------------------------------
 # Normalize
 --------------------------------------------------------------*/
html {
  font-family: sans-serif;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}
body {
  margin: 0;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
  display: block;
}
audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}
audio:not([controls]) {
  display: none;
  height: 0;
}
[hidden],
template {
  display: none;
}
a {
  background-color: transparent;
}
a:active,
a:hover {
  outline: 0;
}
abbr[title] {
  border-bottom: 1px dotted;
}
b,
strong {
  font-weight: bold;
}
dfn {
  font-style: italic;
}
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
mark {
  background: #ff0;
  color: #000;
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
img {
  border: 0;
}
svg:not(:root) {
  overflow: hidden;
}
figure {
  margin: 1em 40px;
}
hr {
  box-sizing: content-box;
  height: 0;
}
pre {
  overflow: auto;
}
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}
button {
  overflow: visible;
}
button,
select {
  text-transform: none;
}
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}
button[disabled],
html input[disabled] {
  cursor: default;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
input {
  line-height: normal;
}
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}
legend {
  border: 0;
  padding: 0;
}
textarea {
  overflow: auto;
}
optgroup {
  font-weight: bold;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
td,
th {
  padding: 0;
}
/*--------------------------------------------------------------
 # Global
 --------------------------------------------------------------*/
.screen-reader-text {
  display: none;
}
img {
  max-width: 100%;
  height: auto;
}
.alignleft {
  display: inline;
  float: left;
  margin: 1.5em 1.5em 1.5em 0;
}
@media (max-width: 767px) {
  .alignleft {
    display: block;
    float: none;
    margin: 0.4em 0 0.4em;
  }
}
.alignright {
  display: inline;
  float: right;
  margin: 1.5em 0 1.5em 1.5em;
}
@media (max-width: 767px) {
  .alignright {
    display: block;
    float: none;
    margin: 0.4em 0 0.4em;
  }
}
.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.main-wrapper {
  max-width: 1024px;
  margin: 0 auto;
  *zoom: 1;
  display: block;
}
.main-wrapper:before,
.main-wrapper:after {
  content: " ";
  display: table;
}
.main-wrapper:after {
  clear: both;
}
@media (min-width: 1200px) {
  .main-wrapper {
    max-width: 1200px;
  }
}
body {
  padding: 0 20px 20px;
  color: #333;
  font-family: "Open Sans";
  font-size: 15px;
  line-height: 22px;
}
body .content-area {
  background: linear-gradient(
    to right,
    #fff,
    #fff calc(50% - (1024px / 12 * 3)),
    transparent calc(50% - (1024px / 12 * 3))
  );
}
@media (min-width: 1200px) {
  body .content-area {
    background: linear-gradient(
      to right,
      #fff,
      #fff calc(50% - (1200px / 12 * 3)),
      transparent calc(50% - (1200px / 12 * 3))
    );
  }
}
@media (max-width: 1023px) {
  body .content-area {
    background: transparent;
  }
}
body.page-template-page-homepage .content-area {
  background: transparent;
}
html {
  box-sizing: border-box;
}
*,
*:before,
*:after {
  box-sizing: inherit;
}
/*--------------------------------------------------------------
 # Header
 --------------------------------------------------------------*/
.site-branding {
  background-color: #080853;
  border-bottom: solid #040424 1px;
  height: 47px;
}
.site-branding .search-block-wrapper {
  position: relative;
}
.site-branding .search-block-wrapper .search-block {
  height: inherit;
  position: absolute;
  right: 35px;
  top: 0;
  padding-top: 14px;
}
.site-branding .search-block-wrapper .search-block input[type="text"] {
  border: 0;
  background-color: #080853;
  width: 180px;
  font-size: 1em;
  color: #fff;
}
.site-branding
  .search-block-wrapper
  .search-block
  input[type="text"]::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #fff;
}
.site-branding
  .search-block-wrapper
  .search-block
  input[type="text"]::-moz-placeholder {
  /* Firefox 19+ */
  color: #fff;
}
.site-branding
  .search-block-wrapper
  .search-block
  input[type="text"]:-ms-input-placeholder {
  /* IE 10+ */
  color: #fff;
}
.site-branding
  .search-block-wrapper
  .search-block
  input[type="text"]:-moz-placeholder {
  /* Firefox 18- */
  color: #fff;
}
.site-branding .search-block-wrapper .search-block button {
  color: #fff;
}
.main-navigation {
  background-color: #080853;
  height: 81px;
  position: relative;
}
.main-navigation.toggled ul.primary-menu {
  display: block;
}
.main-navigation .menu-toggle {
  display: none;
}
@media (max-width: 1023px) {
  .main-navigation .menu-toggle {
    display: block;
    position: absolute;
    top: 15px;
    right: 30px;
  }
}
.main-navigation .logo {
  vertical-align: super;
  margin-top: 15px;
  margin-left: 20px;
  display: inline-block;
}
.main-navigation .logo img {
  max-width: 200px;
  bottom: 6px;
  position: relative;
}
@media (min-width: 1200px) {
  .main-navigation .logo img {
    max-width: 275px;
  }
}
.main-navigation .logo .site-title {
  margin: 0;
}
@media (max-width: 767px) {
  .main-navigation .logo .site-title img {
    display: block;
    width: 150px;
    margin-top: 13px;
    margin-left: 0;
    margin-bottom: 5px;
  }
}
.main-navigation ul.primary-menu {
  display: inline-block;
  position: relative;
  list-style-type: none;
  margin: 0;
  padding: 0;
  float: right;
  margin-right: 40px;
}
@media (max-width: 1023px) {
  .main-navigation ul.primary-menu {
    margin: 0;
    z-index: 11;
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 70px;
    background: #85011a;
    overflow: visible;
  }
}
.main-navigation ul.primary-menu li.menu-item {
  width: 90px;
  display: inline-block;
  padding: 15px 9px 0;
  margin: 0 5px;
  text-align: left;
  vertical-align: text-bottom;
}
.main-navigation ul.primary-menu li.menu-item a {
  margin: 0 auto;
  display: block;
  text-decoration: none;
  font-size: 14px;
  color: #fff;
  border-bottom: 3px solid transparent;
  transition: all ease 0.3s;
}
@media (max-width: 1023px) {
  .main-navigation ul.primary-menu li.menu-item a {
    padding: 10px 0;
  }
}
.main-navigation ul.primary-menu li.menu-item a:hover {
  color: #569df4;
}
@media (max-width: 1023px) {
  .main-navigation ul.primary-menu li.menu-item {
    color: #fff;
    display: block;
    margin: 0 auto;
    padding: 20px 0;
    text-align: center;
  }
  .main-navigation ul.primary-menu li.menu-item a {
    font-size: 20px;
  }
  .main-navigation ul.primary-menu li.menu-item a:hover {
    color: #fff;
    border-color: transparent;
  }
}
@media (max-width: 767px) {
  .main-navigation ul.primary-menu li.menu-item a {
    font-size: 15px;
  }
}
/*--------------------------------------------------------------
 # Footer
 --------------------------------------------------------------*/
.site-footer {
  background: #181c35;
  color: #fff;
  padding: 20px 0 10px;
  *zoom: 1;
  display: block;
}
.site-footer:before,
.site-footer:after {
  content: " ";
  display: table;
}
.site-footer:after {
  clear: both;
}
.site-footer .footer__info {
  width: calc(50% - 30px);
  float: left;
  margin-left: 20px;
}
@media (max-width: 1023px) {
  .site-footer .footer__info {
    width: calc(100% - 40px);
    float: left;
    margin-left: 20px;
    margin-bottom: 20px;
  }
}
.site-footer .footer__info .footer__logo {
  margin-bottom: 20px;
}
.site-footer .footer__info .footer__logo img {
  max-width: 275px;
}
.site-footer .footer__contact {
  width: calc(25% - 25px);
  float: left;
  margin-left: 20px;
}
@media (max-width: 1023px) {
  .site-footer .footer__contact {
    width: calc(50% - 30px);
    float: left;
    margin-left: 20px;
  }
}
@media (max-width: 767px) {
  .site-footer .footer__contact {
    width: calc(100% - 40px);
    float: left;
    margin-left: 20px;
    margin-bottom: 20px;
  }
}
.site-footer .footer__contact header {
  color: #fff;
  padding: 10px 0;
  margin-bottom: 10px;
  border-bottom: 1px solid #fff;
}
.site-footer .footer__contact a {
  color: #569df4;
  text-decoration: none;
}
.site-footer .footer__follow-us {
  width: calc(25% - 25px);
  float: left;
  margin-left: 20px;
}
@media (max-width: 1023px) {
  .site-footer .footer__follow-us {
    width: calc(50% - 30px);
    float: left;
    margin-left: 20px;
  }
}
@media (max-width: 767px) {
  .site-footer .footer__follow-us {
    width: calc(100% - 40px);
    float: left;
    margin-left: 20px;
  }
}
.site-footer .footer__follow-us header {
  color: #fff;
  padding: 10px 0;
  margin-bottom: 20px;
  border-bottom: 1px solid #fff;
}
.site-footer .footer__follow-us header .footer__social-icons {
  float: right;
}
.site-footer .footer__follow-us header .footer__social-icons a {
  color: #569df4;
  font-size: 20px;
  display: inline-block;
  margin-left: 10px;
  transition: all 0.3s;
}
.site-footer .footer__follow-us header .footer__social-icons a:hover {
  color: #ccc;
}
.site-footer .footer__follow-us .footer__logo-group {
  text-align: right;
}
@media (max-width: 767px) {
  .site-footer .footer__follow-us .footer__logo-group {
    text-align: left;
  }
}
.site-footer .footer__sub {
  width: calc(100% - 40px);
  float: left;
  margin-left: 20px;
  font-size: 12px;
  color: #999;
  margin-top: 30px;
}
.site-footer .footer__sub .footer__sub__menu {
  display: inline-block;
  margin: 0;
  vertical-align: bottom;
  padding: 0;
  margin-left: 10px;
}
@media (max-width: 767px) {
  .site-footer .footer__sub .footer__sub__menu {
    display: block;
    *zoom: 1;
    display: block;
    margin-top: 10px;
    margin-left: 0;
  }
  .site-footer .footer__sub .footer__sub__menu:before,
  .site-footer .footer__sub .footer__sub__menu:after {
    content: " ";
    display: table;
  }
  .site-footer .footer__sub .footer__sub__menu:after {
    clear: both;
  }
}
.site-footer .footer__sub .footer__sub__menu li {
  display: inline-block;
  float: left;
}
.site-footer .footer__sub .footer__sub__menu li a {
  display: block;
  color: #999;
  text-decoration: none;
  border-right: 1px solid #999;
  padding: 0 10px;
  transition: all 0.3s;
}
.site-footer .footer__sub .footer__sub__menu li a:hover {
  color: #ccc;
}
.site-footer .footer__sub .footer__sub__menu li:last-of-type a {
  border: none;
}
@media (max-width: 767px) {
  .site-footer .footer__sub .footer__sub__menu li {
    display: block;
    float: none;
    margin-bottom: 5px;
  }
  .site-footer .footer__sub .footer__sub__menu li a {
    border: none;
    border-bottom: 1px solid #999;
    padding: 0;
    padding-bottom: 5px;
  }
}
.site-footer .footer__sub .frayneworklogo {
  float: right;
}
@media (max-width: 767px) {
  .site-footer .footer__sub .frayneworklogo {
    float: none;
    margin-top: 10px;
  }
}
.site-footer .footer__sub .frayneworklogo img {
  max-width: 144px;
}
/*--------------------------------------------------------------
 # Elements
 --------------------------------------------------------------*/
a {
  color: #569df4;
}
a.btn,
.btn {
  background: #569df4;
  color: white;
  display: inline-block;
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 6px;

  font-size: 16px;
  transition: all 0.3s;
}
a.btn:hover,
.btn:hover {
  background: #b6d5fa;
}
a.download_box {
  *zoom: 1;
  display: block;
  cursor: pointer;
  border-bottom: 1px solid #569df4;
  text-decoration: none;
  display: block;
  position: relative;
  color: #333;
  padding-bottom: 15px;
  font-style: italic;
  padding-left: 50px;
  padding-right: 50px;
  transition: all 0.3s;
  margin: 20px 0;
  clear: both;
}
a.download_box:before,
a.download_box:after {
  content: " ";
  display: table;
}
a.download_box:after {
  clear: both;
}
a.download_box:hover {
  color: #569df4;
}
a.download_box:before {
  content: "\f1c1";
  font-family: "FontAwesome";
  left: 2px;
  bottom: 13px;
  position: absolute;
  font-size: 30px;
  color: #569df4;
  font-style: normal;
}
a.download_box:after {
  content: "\f063";
  font-family: "FontAwesome";
  right: 20px;
  bottom: 10px;
  position: absolute;
  font-size: 16px;
  color: #569df4;
  font-style: normal;
  border-bottom: 2px solid #569df4;
}
a.external_link {
  border-bottom: 1px solid #569df4;
  text-decoration: none;
  display: block;
  position: relative;
  color: #333;
  padding-bottom: 15px;
  font-style: italic;
  padding-left: 50px;
  transition: all 0.3s;
  margin: 20px 0;
  clear: both;
}
a.external_link:hover {
  color: #569df4;
}
a.external_link:before {
  content: "\f0c1";
  font-family: "FontAwesome";
  left: 2px;
  bottom: 13px;
  position: absolute;
  font-size: 30px;
  color: #569df4;
  font-style: normal;
}
a.external_link:after {
  content: "\f061";
  font-family: "FontAwesome";
  right: 20px;
  bottom: 10px;
  position: absolute;
  font-size: 16px;
  color: #569df4;
  font-style: normal;
}
.edit-link {
  text-align: center;
  display: block;
  margin-top: 30px;
}
.edit-link a {
  display: inline-block;
  padding: 10px 20px;
  background: #999;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  margin-right: 10px;
}
.wpcf7-form label {
  display: block;
}
.wpcf7-form input,
.wpcf7-form textarea {
  display: block;
  width: 100%;
  border: none;
  border: 1px solid #ccc;
  margin: 10px 0 20px;
  padding: 10px;
}
.wpcf7-form input.wpcf7-submit,
.wpcf7-form textarea.wpcf7-submit {
  background: #569df4;
  color: white;
  border-color: #569df4;
  transition: all 0.3s;
}
.wpcf7-form input.wpcf7-submit:hover,
.wpcf7-form textarea.wpcf7-submit:hover {
  background: #86b9f7;
}
.accordion-tabs {
  padding: 0;
  margin: 0;
}
.accordion-tabs .tab-header-and-content {
  list-style: none;
  display: inline;
}
.accordion-tabs .tab-link {
  background-color: transparent;
  border-bottom: 5px solid transparent;
  color: #ccc;
  padding: 0.75em 10px;
  text-decoration: none;
  border-top: 0;
  display: inline-block;

  font-size: 24px;
  transition: all 0.3s;
}
@media (max-width: 767px) {
  .accordion-tabs .tab-link {
    font-size: 17px;
  }
}
.accordion-tabs .tab-link:hover {
  color: #080853;
}
.accordion-tabs .tab-link:focus {
  outline: none;
}
.accordion-tabs .tab-link.is-active {
  color: #080853;
  border-bottom-color: #080853;
}
.accordion-tabs .tab-content {
  display: none;
  padding: 40px 0;
  width: 100%;
  border-top: 1px solid #080853;
  float: left;
}
.accordion-tabs .tab-content.is-open {
  display: block;
}
.search-form input {
  font-size: 16px;
  border: none;
  text-align: right;
  outline: none;
}
.search-form button {
  border: none;
  background: none;
  font-size: 18px;
}
.search-form-mobile {
  display: none;
}
.main-content .search-form input {
  text-align: left;
  border: 1px solid #dadada;
  padding: 20px;
}
h1 {
  font-size: 34px;
  line-height: 40px;
  color: #080853;
}
h2 {
  font-size: 22px;
  color: #2d3136;
}
h3 {
  font-style: italic;
  font-size: 16px;
  color: #080853;
  font-weight: 600;
}
.content__leaderText {
  font-weight: 600;
  border-bottom: 1px solid #dadada;
  padding-bottom: 10px;
}
.quote_box {
  background: #e6e8f0;
  color: #5f5f5f;
  padding: 20px;
  margin: 20px 0;
  border-radius: 6px;
  font-size: 14px;
}
.quote_box header {
  color: #172a76;
  font-style: italic;
  font-weight: 600;
  font-size: 16px;
}
.carousel__gallery {
  padding: 0;
  margin: 40px 0 60px;
}
.carousel__gallery .carousel__gallery__item {
  text-align: center;
}
.carousel__gallery .carousel__gallery__item img {
  border-radius: 6px;
  display: inline;
}
.carousel__gallery .carousel__gallery__item .carousel__caption {
  color: #666;
  padding: 10px 20px;
}
.slideshow-wrapper .slideshow-wrapper__item {
  text-align: center;
}
.slideshow-wrapper .slideshow-wrapper__item img {
  display: inline;
}
.table {
  width: 100%;
  text-align: left;
  border: 1px solid #080853;
  border-collapse: separate;
  border-radius: 6px;
  margin: 20px 0 30px;
}
.table thead {
  background: #080853;
  color: white;
}
.table thead th {
  padding: 10px;
}
.table tbody tr:nth-child(odd) {
  background: #c6c6fa;
}
.table tbody tr td {
  padding: 10px;
}
.paginate .wp-pagenavi {
  float: left;
  width: 100%;
  border-top: 1px solid #080853;
  margin-top: 60px;
  padding-top: 20px;
  text-align: right;
}
.paginate .pages {
  width: calc(50% - 30px);
  float: left;
  margin-left: 20px;
  text-align: left;
}
.paginate .current {
  background: #080853;
  color: white;
  border-radius: 50px;
  width: 22px;
  height: 22px;
  padding: 4px 10px;
  margin: 0 10px;
}
.paginate a {
  margin: 0 10px;
  color: #333;
  text-decoration: none;
}
.post-navigation {
  margin: 30px 0;
  *zoom: 1;
  display: block;
}
.post-navigation:before,
.post-navigation:after {
  content: " ";
  display: table;
}
.post-navigation:after {
  clear: both;
}
.post-navigation .nav-previous {
  width: 50%;
  padding-right: 20px;
  float: left;
}
.post-navigation .nav-previous a {
  text-decoration: none;
  color: #808080;
}
.post-navigation .nav-previous a:before {
  content: "\f053";
  font-family: "FontAwesome";
  margin-right: 10px;
}
.post-navigation .nav-next {
  width: 50%;
  text-align: right;
  float: right;
  padding-left: 20px;
}
.post-navigation .nav-next a {
  text-decoration: none;
  color: #808080;
}
.post-navigation .nav-next a:after {
  content: "\f054";
  font-family: "FontAwesome";
  margin-left: 10px;
}
.google-calendar {
  position: relative;
}
.fc-unthemed table thead.fc-head {
  text-transform: uppercase;
}
.fc-unthemed table .fc-event {
  border-radius: 0;
  padding: 0 10px;
  background-color: #080853;
  font-weight: 300;
}
.fc-unthemed .fc-button {
  background: #555;
  color: white;
  border: none;
  transition: all 0.3s;
  outline: none;
  text-shadow: none;
}
.fc-unthemed .fc-button:hover {
  background: #3c3c3c;
}
.fc-unthemed .fc-button.fc-agendaWeek-button,
.fc-unthemed .fc-button.fc-month-button,
.fc-unthemed .fc-button.fc-listMonth-button {
  background: #555;
}
.fc-unthemed .fc-button.fc-agendaWeek-button:hover,
.fc-unthemed .fc-button.fc-month-button:hover,
.fc-unthemed .fc-button.fc-listMonth-button:hover {
  background: #3c3c3c;
}
.fc-unthemed .fc-button.fc-agendaWeek-button.fc-state-active,
.fc-unthemed .fc-button.fc-month-button.fc-state-active,
.fc-unthemed .fc-button.fc-listMonth-button.fc-state-active {
  background: #3c3c3c;
}
@media (max-width: 767px) {
  .fc-unthemed .fc-toolbar .fc-center {
    margin-top: 20px;
  }
}
#loading {
  position: absolute;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  border-radius: 20px;
  left: 50%;
  transform: translate(-50%, -50%);
  top: 50%;
  padding: 20px;
  z-index: 500;
}
.content-block {
  *zoom: 1;
  display: block;
}
.content-block:before,
.content-block:after {
  content: " ";
  display: table;
}
.content-block:after {
  clear: both;
}
.subscribe-newsletter {
  text-align: center;
  background: #172a76;
  color: #fff;
  padding: 20px 0;
}
@media (max-width: 767px) {
  .subscribe-newsletter {
    padding: 30px 20px;
  }
}
.subscribe-newsletter header {
  display: inline-block;
  margin-right: 20px;
  font-size: 20px;
  font-style: italic;
}
@media (max-width: 1023px) {
  .subscribe-newsletter header {
    margin-bottom: 10px;
    margin-right: 0;
    display: block;
  }
}
@media (max-width: 767px) {
  .subscribe-newsletter header {
    margin-bottom: 20px;
  }
}
.subscribe-newsletter form {
  display: inline-block;
  vertical-align: middle;
}
.subscribe-newsletter form input {
  border: none;
  border-radius: 4px;
  color: #172a76;
  background: #fff;
  padding: 16px;
  margin-right: 5px;
}
.subscribe-newsletter form input::placeholder {
  color: #172a76;
  opacity: 0.9;
}
@media (max-width: 767px) {
  .subscribe-newsletter form input {
    width: 100%;
    margin-bottom: 10px;
  }
}
.subscribe-newsletter form .subscribe__btn {
  color: #fff;
  background: #3556a3;
  padding: 16px 30px;
}
#primary .site-main .news_events_wrapper {
  margin: 0 auto;
  width: 960px;
  background: transparent;
  padding-bottom: 12px;
}
@media (max-width: 1023px) {
  #primary .site-main .news_events_wrapper {
    width: 100%;
  }
}
@media (min-width: 1200px) {
  #primary .site-main .news_events_wrapper {
    width: 996px;
    margin: auto;
  }
  .video-wrapper {
    padding-left: 20px;
  }
}
.video-wrapper {
  padding-bottom: 30px;
  margin-right: auto;
  width: 33%;
  height: 50%;
  display: inline-block;
}
@media (max-width: 1023px) {
  .video-wrapper {
    display: block;
    width: calc(100% - 38px);
    height: 100%;
    margin: auto;
  }
}
@media (max-width: 767px) {
  .video-wrapper {
    width: 100%;
  }
}
.video-wrapper .video-header {
  border-bottom: 1px solid #080853;
  margin-left: auto;
  margin-right: auto;
  height: 45px;
}
.video-wrapper .video-header a {
  position: relative;
  padding-left: 10px;
  width: 100%;
  color: #080853;
  font-size: 24px;
  font-weight: bold;

  text-decoration: none;
  top: 6%;
  transform: translateY(-50%);
}
@media (max-width: 767px) {
  .video-wrapper .video-header a {
    font-size: 17px;
    transition: 0.3s;
    position: relative;
    top: -240%;
    transform: translateY(-50%);
  }
}
@media (max-width: 1023px) {
  .video-wrapper .video-header {
    margin-top: 20px;
    padding-top: 20px;
    padding-bottom: 40px;
    position: relative;
  }
}
.video-wrapper .video {
  margin-top: 40px;
  width: 100%;
  height: 70%;
  border-radius: 4px;
  background-repeat: no-repeat;
  height: 200px;
  background-size: cover;
}
@media (max-width: 1023px) {
  .video-wrapper .video {
    margin-top: 33px;
    position: relative;
    background-size: cover;
    height: auto;
  }
}
@media (max-width: 767px) {
  .video-wrapper .video {
    height: 150px;
  }
}
.video-wrapper .video:hover .cover {
  opacity: 1;
}
.video-wrapper .video .cover {
  transition: opacity 0.3s ease;
  border-radius: 4px;
  background-color: #2d3136;
  width: 100%;
  height: 200px;
  opacity: 0.8;
  margin-top: -34px;
}
@media (max-width: 1023px) {
  .video-wrapper .video .cover {
    height: 400px;
    margin-top: 33px;
  }
}
@media (max-width: 767px) {
  .video-wrapper .video .cover {
    height: 150px;
    margin-top: 33px;
  }
}
.video-wrapper .video .play-buttom {
  height: 33.6px;
  width: 31.17px;
  vertical-align: middle;
  padding-left: 0;
  background-image: url("../img/play.png");
  margin-left: auto;
  margin-right: auto;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1001;
}
@media (max-width: 1023px) {
  .video-wrapper .video .play-buttom {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
.home .news-events.main-wrapper.has-video {
  display: inline-block;
  height: 100%;
  margin-left: 44px;
  width: 595px;
}
@media (min-width: 1200px) {
  .home .news-events.main-wrapper.has-video {
    width: 603px;
  }
}
@media (max-width: 1023px) {
  .home .news-events.main-wrapper.has-video {
    width: 100%;
    margin-left: 19px;
    padding-right: 38px;
    display: block;
  }
  .home .news-events.main-wrapper.has-video.accordion-tabs {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .home .news-events.main-wrapper.has-video {
    margin-left: 0;
    padding-right: 0;
  }
}
.home
  .news-events.has-video
  .accordion-tabs
  .tab-header-and-content:first-child {
  margin-left: 0;
}
.home .news-events.has-video ul li .tab-content .events__item:nth-of-type(3),
.home .news-events.has-video ul li .tab-content .news__item:nth-of-type(3) {
  display: none;
}
@media (max-width: 767px) {
  .home .news-events.has-video ul li .tab-content .events__item:nth-of-type(3),
  .home .news-events.has-video ul li .tab-content .news__item:nth-of-type(3) {
    display: block;
  }
}
@media (min-width: 1024px) {
  .home #primary .news-events.has-video ul li .tab-content .events__item,
  .home #primary .news-events.has-video ul li .tab-content .news__item {
    width: calc(50% - 15px);
    margin-left: 0;
    position: relative;
  }
  .home
    #primary
    .news-events.has-video
    ul
    li
    .tab-content
    .events__item:first-of-type,
  .home
    #primary
    .news-events.has-video
    ul
    li
    .tab-content
    .news__item:first-of-type {
    display: inline-block;
  }
  .home
    #primary
    .news-events.has-video
    ul
    li
    .tab-content
    .events__item:nth-of-type(2),
  .home
    #primary
    .news-events.has-video
    ul
    li
    .tab-content
    .news__item:nth-of-type(2) {
    display: inline-block;
    float: right;
  }
  .home
    #primary
    .news-events.has-video
    ul
    li
    .tab-content
    .events__item
    .events__item__content,
  .home
    #primary
    .news-events.has-video
    ul
    li
    .tab-content
    .news__item
    .events__item__content,
  .home
    #primary
    .news-events.has-video
    ul
    li
    .tab-content
    .events__item
    .news__item__content,
  .home
    #primary
    .news-events.has-video
    ul
    li
    .tab-content
    .news__item
    .news__item__content {
    width: calc(66.66667% + 6.66667px);
  }
  .home
    #primary
    .news-events.has-video
    ul
    li
    .tab-content
    .events__item
    .events__item__date,
  .home
    #primary
    .news-events.has-video
    ul
    li
    .tab-content
    .news__item
    .events__item__date,
  .home
    #primary
    .news-events.has-video
    ul
    li
    .tab-content
    .events__item
    .news__item__img,
  .home
    #primary
    .news-events.has-video
    ul
    li
    .tab-content
    .news__item
    .news__item__img {
    margin-left: 0;
  }
}
.remodal-wrapper .remodal {
  max-width: none;
  width: 80%;
  height: auto;
  padding: 0;
  margin-bottom: 0;
  background: transparent;
}
.remodal-wrapper .remodal iframe,
.remodal-wrapper .remodal video {
  width: 100% !important;
  height: inherit;
}
@media (max-width: 767px) {
  .remodal-wrapper .remodal {
    width: 100%;
  }
}
.horizontal_line {
  background: #dadada;
  *zoom: 1;
  display: block;
  height: 1px;
  margin-bottom: 10px;
  margin-top: 10px;
}
.horizontal_line:before,
.horizontal_line:after {
  content: " ";
  display: table;
}
.horizontal_line:after {
  clear: both;
}
/*--------------------------------------------------------------
 # Pages
 --------------------------------------------------------------*/
.carousel-wrapper {
  width: 100%;
}
.carousel-wrapper .slick-dots {
  position: absolute;
  bottom: 70px;
}
.carousel-wrapper .carousel__slide {
  position: relative;
  background-color: #dadada;
  height: 680px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  width: 100%;
}
@media (max-width: 767px) {
  .carousel-wrapper .carousel__slide {
    height: 450px;
  }
}
.carousel-wrapper .carousel__slide:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../img/carousel-gradient.png") bottom center repeat-x;
}
.carousel-wrapper .carousel__slide .carousel__content {
  z-index: 999;
  text-align: center;
  position: absolute;
  bottom: 120px;
  width: 60%;
  left: 50%;
  transform: translateX(-50%);
  max-width: 733px;
}
.carousel-wrapper .carousel__slide .carousel__content .carousel__title {
  position: relative;
  display: inline-block;

  font-size: 48px;
  line-height: 56px;
  padding-bottom: 15px;
  margin-bottom: 25px;
  color: #fff;
}
.carousel-wrapper .carousel__slide .carousel__content .carousel__title:after {
  content: "";
  height: 1px;
  width: 50%;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: white;
}
.carousel-wrapper .carousel__slide .carousel__content .carousel__subtitle {
  font-size: 22px;
  margin-bottom: 20px;
  color: #569df4;
}
.carousel-wrapper .carousel__slide .carousel__content .carousel__button {
  display: inline-block;

  font-size: 16px;
  padding: 15px 30px;
  border-radius: 6px;
  background: rgba(86, 157, 244, 0.6);
  border: 1px solid #569df4;
  text-decoration: none;
  transition: all 0.3s;
  color: #fff;
}
.carousel-wrapper .carousel__slide .carousel__content .carousel__button:hover {
  background: #569df4;
}
@media (max-width: 767px) {
  .carousel-wrapper .slick-arrow {
    display: none !important;
  }
  .carousel-wrapper .slick-dots {
    display: none !important;
  }
  .carousel-wrapper .carousel__slide .carousel__content {
    bottom: 30px;
    width: 80%;
  }
  .carousel-wrapper .carousel__slide .carousel__content .carousel__title {
    max-width: 100%;
    font-size: 36px;
    line-height: 40px;
  }
  .carousel-wrapper .carousel__slide .carousel__content .carousel__subtitle {
    font-size: 18px;
  }
}
.homepage-has-bg {
  background: #f9f9f9;
}
.featured-3-columns {
  margin: 0 auto;
  max-width: 960px;
}
.featured-3-columns .featured-wrapper {
  margin-left: 0px;
  margin-right: 0px;
  width: calc(100% + 0px);
  *zoom: 1;
  display: block;
}
.featured-3-columns .featured-wrapper:before,
.featured-3-columns .featured-wrapper:after {
  content: " ";
  display: table;
}
.featured-3-columns .featured-wrapper:after {
  clear: both;
}
.featured-3-columns .featured-wrapper .featured__column {
  width: calc(33.3333333333% - 0px);
  float: left;
  margin-left: 0px;
  position: relative;
  top: -60px;
  height: 280px;
  background-color: #080853;
  background-size: cover;
  background-repeat: no-repeat;
  text-align: center;
  color: #fff;
  text-decoration: none;
}
@media (max-width: 767px) {
  .featured-3-columns .featured-wrapper .featured__column {
    display: block;
    clear: both;
    width: 90%;
    margin: 0 5%;
    top: -20px;
  }
}
.featured-3-columns .featured-wrapper .featured__column .content {
  height: 220px;
  padding: 0 30px;
  margin: 30px 0 20px;
  border-right: solid #fff 1px;
}
@media (max-width: 767px) {
  .featured-3-columns .featured-wrapper .featured__column .content {
    border: none;
  }
}
.featured-3-columns .featured-wrapper .featured__column .content .head {
  margin: auto;
  border: 2px solid #ffff50;
  border-radius: 50%;
  height: 100px;
  width: 100px;
}
.featured-3-columns .featured-wrapper .featured__column .content .head img {
  margin-top: 25px;
}
.featured-3-columns
  .featured-wrapper
  .featured__column
  .content
  .featured__column__title {
  color: #ffff50;
  min-height: 20px;
  margin-top: 10px;
  font-size: 18px;
}
.featured-3-columns
  .featured-wrapper
  .featured__column
  .content
  .featured__column__description {
  font-size: 14px;
  min-height: 80px;
}
@media (max-width: 767px) {
  .featured-3-columns
    .featured-wrapper
    .featured__column
    .content
    .featured__column__description {
    border-bottom: solid 1px;
  }
}
.featured-3-columns .featured-wrapper .featured__column:last-child .content {
  border: none;
}
@media (max-width: 767px) {
  .featured-3-columns
    .featured-wrapper
    .featured__column:last-child
    .featured__column__description {
    border: none;
  }
}
.news-events {
  padding-top: 20px;
  margin: 0 auto 40px;
  max-width: 960px;
  *zoom: 1;
  display: block;
}
.news-events:before,
.news-events:after {
  content: " ";
  display: table;
}
.news-events:after {
  clear: both;
}
.news-events ul li.tab-header-and-content:first-child {
  margin-left: 30%;
}
@media (max-width: 1023px) {
  .news-events ul li.tab-header-and-content:first-child {
    margin-left: 0;
  }
}
.news-events ul li.tab-header-and-content .tab-content {
  position: relative;
}
.news-events ul li.tab-header-and-content .tab-content .view-all {
  position: absolute;
  right: 0;
  top: -60px;
}
@media (max-width: 767px) {
  .news-events ul li.tab-header-and-content .tab-content .view-all {
    position: relative;
    display: block;
    top: auto;
    right: auto;
    text-align: center;
  }
}
.news-events ul li.tab-header-and-content .tab-content .news__wrapper {
  *zoom: 1;
  display: block;
}
.news-events ul li.tab-header-and-content .tab-content .news__wrapper:before,
.news-events ul li.tab-header-and-content .tab-content .news__wrapper:after {
  content: " ";
  display: table;
}
.news-events ul li.tab-header-and-content .tab-content .news__wrapper:after {
  clear: both;
}
.news-events ul li.tab-header-and-content .tab-content .view-all .btn:hover {
  background: #2681f1;
}
.news-events ul li.tab-header-and-content .tab-content .news__item {
  width: calc(33.3333333333% - 26.6666666667px);
  float: left;
  margin-left: 20px;
}
@media (max-width: 1023px) {
  .news-events ul li.tab-header-and-content .tab-content .news__item {
    width: calc(50% - 30px);
    float: left;
    margin-left: 20px;
  }
  .news-events
    ul
    li.tab-header-and-content
    .tab-content
    .news__item:nth-of-type(3) {
    display: none;
  }
}
@media (max-width: 767px) {
  .news-events ul li.tab-header-and-content .tab-content .news__item {
    width: 100%;
    margin: 0 0 30px;
  }
  .news-events
    ul
    li.tab-header-and-content
    .tab-content
    .news__item:nth-of-type(3) {
    display: block;
  }
}
.news-events
  ul
  li.tab-header-and-content
  .tab-content
  .news__item
  .news__item__img {
  width: calc(33.3333333333% - 26.6666666667px);
  float: left;
  margin-left: 20px;
}
@media (max-width: 767px) {
  .news-events
    ul
    li.tab-header-and-content
    .tab-content
    .news__item
    .news__item__img {
    width: 90px;
    margin-left: 0;
  }
}
.news-events
  ul
  li.tab-header-and-content
  .tab-content
  .news__item
  .news__item__img
  img {
  border-radius: 6px;
}
.news-events
  ul
  li.tab-header-and-content
  .tab-content
  .news__item
  .news__item__content {
  width: calc(66.6666666667% - 33.3333333333px);
  float: left;
  margin-left: 20px;
  font-size: 14px;
}
@media (max-width: 767px) {
  .news-events
    ul
    li.tab-header-and-content
    .tab-content
    .news__item
    .news__item__content {
    width: calc(100% - 110px);
  }
}
.news-events
  ul
  li.tab-header-and-content
  .tab-content
  .news__item
  .news__item__content
  a.news__item__title {
  color: #080853;
  font-size: 18px;

  text-decoration: none;
}
.news-events
  ul
  li.tab-header-and-content
  .tab-content
  .news__item
  .news__item__content
  a.news__item__title:hover {
  color: #1111b0;
}
.news-events
  ul
  li.tab-header-and-content
  .tab-content
  .news__item
  .news__item__content
  a.news__item__readmore {
  color: #569df4;
  text-decoration: none;
  text-transform: uppercase;
}
.news-events
  ul
  li.tab-header-and-content
  .tab-content
  .news__item
  .news__item__content
  a.news__item__readmore:hover {
  color: #2681f1;
}
.news-events ul li.tab-header-and-content .tab-content .events__wrapper {
  *zoom: 1;
  display: block;
}
.news-events ul li.tab-header-and-content .tab-content .events__wrapper:before,
.news-events ul li.tab-header-and-content .tab-content .events__wrapper:after {
  content: " ";
  display: table;
}
.news-events ul li.tab-header-and-content .tab-content .events__wrapper:after {
  clear: both;
}
.news-events ul li.tab-header-and-content .tab-content .view-all .btn:hover {
  background: #2681f1;
}
.news-events ul li.tab-header-and-content .tab-content .events__item {
  width: calc(33.3333333333% - 26.6666666667px);
  float: left;
  margin-left: 20px;
}
@media (max-width: 1023px) {
  .news-events ul li.tab-header-and-content .tab-content .events__item {
    width: calc(50% - 30px);
    float: left;
    margin-left: 20px;
  }
  .news-events
    ul
    li.tab-header-and-content
    .tab-content
    .events__item:nth-of-type(3) {
    display: none;
  }
}
@media (max-width: 767px) {
  .news-events ul li.tab-header-and-content .tab-content .events__item {
    width: calc(100% - 40px);
    float: left;
    margin-left: 20px;
    margin-left: -20px;
    margin-right: -20px;
    width: calc(100% + 40px);
    margin-bottom: 30px;
  }
  .news-events
    ul
    li.tab-header-and-content
    .tab-content
    .events__item:nth-of-type(3) {
    display: block;
  }
}
.news-events
  ul
  li.tab-header-and-content
  .tab-content
  .events__item
  .events__item__date {
  width: calc(33.3333333333% - 26.6666666667px);
  float: left;
  margin-left: 20px;
  background: #080853;
  text-align: center;
  border-radius: 6px;
}
@media (max-width: 1023px) {
  .news-events
    ul
    li.tab-header-and-content
    .tab-content
    .events__item
    .events__item__date {
    width: 80px;
  }
}
.news-events
  ul
  li.tab-header-and-content
  .tab-content
  .events__item
  .events__item__date
  a {
  color: #fff;
  font-size: 20px;
  line-height: 28px;

  text-decoration: none;
  padding: 10px 0;
  display: block;
}
.news-events
  ul
  li.tab-header-and-content
  .tab-content
  .events__item
  .events__item__content {
  width: calc(66.6666666667% - 33.3333333333px);
  float: left;
  margin-left: 20px;
}
@media (max-width: 1023px) {
  .news-events
    ul
    li.tab-header-and-content
    .tab-content
    .events__item
    .events__item__content {
    width: calc(100% - 120px);
  }
}
@media (max-width: 1023px) and (max-width: 767px) {
  .news-events
    ul
    li.tab-header-and-content
    .tab-content
    .events__item
    .events__item__content {
    width: calc(100% - 140px);
  }
}
.news-events
  ul
  li.tab-header-and-content
  .tab-content
  .events__item
  .events__item__content
  .events__item__title {
  display: block;
  color: #080853;
  font-size: 18px;

  text-decoration: none;
  margin-bottom: 10px;
}
.news-events
  ul
  li.tab-header-and-content
  .tab-content
  .events__item
  .events__item__content
  .events__item__title:hover {
  color: #1111b0;
}
.news-events
  ul
  li.tab-header-and-content
  .tab-content
  .events__item
  .events__item__content
  .events__item__location {
  margin-bottom: 10px;
  padding-left: 15px;
  position: relative;
}
.news-events
  ul
  li.tab-header-and-content
  .tab-content
  .events__item
  .events__item__content
  .events__item__location:before {
  content: "\f041";
  font-family: "FontAwesome";
  color: #080853;
  position: absolute;
  left: 0;
}
.news-events
  ul
  li.tab-header-and-content
  .tab-content
  .events__item
  .events__item__content
  .events__item__readmore {
  color: #569df4;
  text-decoration: none;
  text-transform: uppercase;
}
.news-events
  ul
  li.tab-header-and-content
  .tab-content
  .events__item
  .events__item__content
  .events__item__readmore:hover {
  color: #2681f1;
}
.gallery-wrapper {
  margin: auto auto 100px;
  max-width: 1100px;
}
.gallery-wrapper ul {
  margin: 0;
  padding: 0;
}
.gallery-wrapper ul li {
  margin: 0;
  padding: 0;
}
.gallery-wrapper .gallery_title {
  height: 100px;
  font-size: 32px;
  color: #080853;
  font-weight: bold;
  display: block;
  text-align: center;
  margin: 0 auto;
}
.gallery-wrapper ul.gallery_ul {
  width: 980px;
  margin: 0 auto 80px;
  *zoom: 1;
  display: block;
  list-style: none;
}
.gallery-wrapper ul.gallery_ul:before,
.gallery-wrapper ul.gallery_ul:after {
  content: " ";
  display: table;
}
.gallery-wrapper ul.gallery_ul:after {
  clear: both;
}
@media (max-width: 1023px) {
  .gallery-wrapper ul.gallery_ul {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .gallery-wrapper ul.gallery_ul {
    margin: 0 auto 50px !important;
    width: 100%;
  }
}
.gallery-wrapper ul.gallery_ul li.gallery_li {
  width: calc(33.3333333333% - 13.3333333333px);
  float: left;
  margin-left: 10px;
  height: 180px;
  margin-bottom: 10px;
  background-size: cover;
  border-radius: 10px;
}
.gallery-wrapper ul.gallery_ul li.gallery_li a {
  width: 100%;
  height: 100%;
  display: block;
  color: #fff;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.gallery-wrapper ul.gallery_ul li.gallery_li a .gallery__overlay {
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(51, 51, 51, 0.6);
  height: 100%;
  width: 100%;
  text-align: center;
  transform: translateY(100%);
  transition: all 0.3s;
  border-radius: 10px;
}
.gallery-wrapper ul.gallery_ul li.gallery_li a .gallery__overlay .cover {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
}
.gallery-wrapper ul.gallery_ul li.gallery_li a .gallery__overlay .cover img {
  margin: auto auto 15px;
  display: block;
}
@media (max-width: 1023px) {
  .gallery-wrapper ul.gallery_ul li.gallery_li a .gallery__overlay .cover {
    display: none;
  }
}
.gallery-wrapper ul.gallery_ul li.gallery_li a:hover .gallery__overlay {
  transform: translateY(0);
}
@media (max-width: 767px) {
  .gallery-wrapper ul.gallery_ul li.gallery_li {
    width: calc(50% - 30px);
    float: left;
    margin-left: 20px;
    height: 100px;
  }
  .gallery-wrapper ul.gallery_ul li.gallery_li img {
    width: 100%;
    height: auto;
  }
}
.gallery-wrapper .gallery_button {
  position: relative;
  height: 52px;
}
.gallery-wrapper .gallery_button a.btn-new {
  background: #569df4;
  color: #fff;
  margin: 0 auto;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.gallery-wrapper .gallery_button a.btn-new:hover {
  background: #0e68d6;
}
.icon-shortcuts__wrapper {
  *zoom: 1;
  display: block;
  position: relative;
  background: #fafafa;
}
.icon-shortcuts__wrapper:before,
.icon-shortcuts__wrapper:after {
  content: " ";
  display: table;
}
.icon-shortcuts__wrapper:after {
  clear: both;
}
.icon-shortcuts__wrapper.has-calendar {
  background: white;
}
.icon-shortcuts__wrapper .icon-shortcuts {
  *zoom: 1;
  display: block;
  padding: 80px 0;
  background: #fafafa;
}
.icon-shortcuts__wrapper .icon-shortcuts:before,
.icon-shortcuts__wrapper .icon-shortcuts:after {
  content: " ";
  display: table;
}
.icon-shortcuts__wrapper .icon-shortcuts:after {
  clear: both;
}
@media (max-width: 1023px) {
  .icon-shortcuts__wrapper .icon-shortcuts {
    padding: 40px 0 0;
  }
}
.icon-shortcuts__wrapper .icon-shortcuts header {
  display: none;
}
.icon-shortcuts__wrapper .icon-shortcuts ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.icon-shortcuts__wrapper .icon-shortcuts ul li {
  width: calc(20% - 24px);
  float: left;
  margin-left: 20px;
  padding-right: 20px;
  text-align: center;
  border-right: 1px solid #e1e1e1;
}
.icon-shortcuts__wrapper .icon-shortcuts ul li:last-of-type {
  border: none;
}
@media (max-width: 1023px) {
  .icon-shortcuts__wrapper .icon-shortcuts ul li {
    width: calc(33.3333333333% - 26.6666666667px);
    float: left;
    margin-left: 20px;
    margin-bottom: 40px;
  }
  .icon-shortcuts__wrapper .icon-shortcuts ul li:nth-child(3n) {
    border: none;
  }
  .icon-shortcuts__wrapper .icon-shortcuts ul li:nth-child(4n) {
    margin-left: calc(16.6666666667% - 23.3333333333px + 40px);
  }
}
@media (max-width: 767px) {
  .icon-shortcuts__wrapper .icon-shortcuts ul li {
    width: calc(100% - 40px);
    float: left;
    margin-left: 20px;
    border: none;
    border-bottom: 1px solid #e1e1e1;
    padding-bottom: 40px;
    padding-right: 0;
  }
  .icon-shortcuts__wrapper .icon-shortcuts ul li:nth-child(3n) {
    border-bottom: 1px solid #e1e1e1;
  }
  .icon-shortcuts__wrapper .icon-shortcuts ul li:nth-child(4n) {
    margin-left: calc(0% - 20px + 40px);
  }
}
.icon-shortcuts__wrapper .icon-shortcuts ul li a {
  display: block;
  *zoom: 1;
  display: block;
  color: #333;
  text-decoration: none;
  text-transform: uppercase;

  font-size: 14px;
  transition: all 0.3s;
  color: #fff;
}
.icon-shortcuts__wrapper .icon-shortcuts ul li a:before,
.icon-shortcuts__wrapper .icon-shortcuts ul li a:after {
  content: " ";
  display: table;
}
.icon-shortcuts__wrapper .icon-shortcuts ul li a:after {
  clear: both;
}
.icon-shortcuts__wrapper .icon-shortcuts ul li a:hover {
  color: #569df4;
}
.icon-shortcuts__wrapper .icon-shortcuts ul li svg {
  width: 40px;
  margin-bottom: 15px;
}
.icon-shortcuts__wrapper .icon-shortcuts ul li svg path {
  fill: #569df4;
}
.icon-shortcuts__wrapper .icon-shortcuts.icon-calendar {
  width: 30%;
  padding: 50px 0;
  float: left;
}
.icon-shortcuts__wrapper .icon-shortcuts.icon-calendar header {
  display: block;

  font-size: 26px;
  color: #fff;
  border-bottom: 1px solid #fff;
  margin: 0 30px;
  padding-bottom: 15px;
  margin-bottom: 25px;
}
.icon-shortcuts__wrapper .icon-shortcuts.icon-calendar ul {
  padding: 0 10px;
}
.icon-shortcuts__wrapper .icon-shortcuts.icon-calendar ul li {
  width: calc(100% - 40px);
  float: left;
  margin-left: 20px;
  border: none;
  border-bottom: 1px solid #e1e1e1;
  padding: 0 0 15px;
  margin-bottom: 15px;
  text-align: left;
  position: relative;
}
.icon-shortcuts__wrapper .icon-shortcuts.icon-calendar ul li:last-of-type {
  border: none;
  margin-bottom: 0;
}
.icon-shortcuts__wrapper .icon-shortcuts.icon-calendar ul li a {
  width: 100%;
  height: 60px;
  position: relative;
}
.icon-shortcuts__wrapper .icon-shortcuts.icon-calendar ul li a:after {
  content: "\f054";
  font-family: "FontAwesome";
  position: absolute;
  right: 0;
  line-height: 60px;
}
.icon-shortcuts__wrapper .icon-shortcuts.icon-calendar ul li a:before {
  content: "";
  position: absolute;
  left: 0;
  background: #080853;
  border-radius: 60px;
  width: 60px;
  height: 60px;
}
.icon-shortcuts__wrapper .icon-shortcuts.icon-calendar ul li svg {
  position: relative;
  margin: 0 35px 0 15px;
  float: left;
  width: 33px;
}
.icon-shortcuts__wrapper
  .icon-shortcuts.icon-calendar
  ul
  li
  .icon-shortcuts__title {
  float: left;
  line-height: 60px;
}
.icon-shortcuts__wrapper .google-calendar {
  *zoom: 1;
  display: block;
  position: relative;
  width: 68%;
  margin-left: 2%;
  float: right;
  padding-bottom: 20px;
}
.icon-shortcuts__wrapper .google-calendar:before,
.icon-shortcuts__wrapper .google-calendar:after {
  content: " ";
  display: table;
}
.icon-shortcuts__wrapper .google-calendar:after {
  clear: both;
}
@media (max-width: 1023px) {
  .icon-shortcuts__wrapper .google-calendar {
    width: 100%;
    margin: 60px 0 0;
  }
}
.full-width {
  padding: 20px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.default-block {
  padding: 20px 0;
}
.mobile-app {
  padding: 20px 0;
  text-align: center;
  background: #569df4;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  font-style: italic;
}
.mobile-app span {
  margin-right: 20px;
  padding: 8px 20px;
  border-right: 1px solid #2681f1;
}
@media (max-width: 1023px) {
  .mobile-app span {
    margin: 0;
    display: block;
    margin-bottom: 20px;
    border: none;
  }
}
.mobile-app img {
  vertical-align: middle;
  width: 140px;
  margin-left: 10px;
}
@media (max-width: 767px) {
  .mobile-app img {
    margin-bottom: 10px;
  }
}
.site-content {
  *zoom: 1;
  display: block;
}
.site-content:before,
.site-content:after {
  content: " ";
  display: table;
}
.site-content:after {
  clear: both;
}
.header-banner header .banner_background {
  height: 370px;
  color: white;
  background-color: #dadada;
  background-size: cover;
  background-position: center;
  position: relative;
}
@media (max-width: 1023px) {
  .header-banner header .banner_background {
    height: 280px;
  }
}
.header-banner header .banner_background:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: -1px;
  left: 0;
  right: 0;
  background: url("../img/carousel-gradient.png") bottom center repeat-x;
}
.header-banner header .banner_title {
  position: relative;
  background: #f9f9f9;
  color: #080853;
  padding-top: 10px;
  min-height: 60px;

  font-size: 30px;
  line-height: 42px;
}
aside.left-nav {
  width: calc(25% - 25px);
  float: left;
  margin-left: 20px;
  margin-left: 0;
  padding-left: 20px;
  padding-top: 60px;
  background: #fff;
}
@media (max-width: 1023px) {
  aside.left-nav {
    width: 100%;
    margin: 0;
    margin-top: 40px;
    padding-left: 20px;
    padding-top: 40px;
    float: right;
  }
}
aside.left-nav .parent-page {
  background: lightblue;
}
aside.left-nav ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
aside.left-nav ul li {
  font-style: italic;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #e6e6e6;
}
aside.left-nav ul li:last-of-type {
  border: none;
}
aside.left-nav ul li ul.children {
  margin-left: 10px;
  margin-top: 15px;
}
aside.left-nav ul li ul.children li {
  border: none;
  margin-bottom: 10px;
  padding-bottom: 0;
}
aside.left-nav ul li a {
  color: #333;
  text-decoration: none;
  transition: all 0.3s;
}
aside.left-nav ul li a:hover {
  color: #080853;
}
aside.left-nav ul li.current_page_item > a {
  color: #080853;
  font-weight: 700;
}
.main-content {
  width: calc(75% - 35px);
  float: left;
  margin-left: 20px;
  float: right;
  padding-top: 60px;
  margin-bottom: 40px;
}
@media (max-width: 1023px) {
  .main-content {
    float: left;
    width: 100%;
    margin: 0;
    padding-top: 20px;
  }
}
.main-content h1 {
  margin-bottom: 40px;
}
.main-content h2 {
  margin: 30px 0 20px;
}
.main-content h3 {
  margin: 20px 0 10px;
}
.editor-content:after {
  display: table;
  content: "";
  clear: both;
}
.newsletters-wrapper {
  margin: 30px 0;
}
.events-wrapper {
  margin: 30px 0;
}
.events-wrapper .events__item {
  *zoom: 1;
  display: block;
  margin: 30px 0;
}
.events-wrapper .events__item:before,
.events-wrapper .events__item:after {
  content: " ";
  display: table;
}
.events-wrapper .events__item:after {
  clear: both;
}
.events-wrapper .events__item .events__item__date {
  background: #080853;
  color: white;
  text-align: center;
  border-radius: 6px;
  font-size: 18px;
  line-height: 22px;

  text-decoration: none;
  padding: 10px 0;
  width: calc(12.5% - 22.5px);
  float: left;
  margin-left: 20px;
}
@media (max-width: 767px) {
  .events-wrapper .events__item .events__item__date {
    width: calc(33.3333333333% - 26.6666666667px);
    float: left;
    margin-left: 20px;
  }
}
.events-wrapper .events__item .events__item__content {
  width: calc(70.8333333333% - 34.1666666667px);
  float: left;
  margin-left: 20px;
  font-size: 16px;
}
.events-wrapper .events__item .events__item__content a {
  color: #080853;
  text-decoration: none;
  font-style: italic;
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
}
.events-wrapper .events__item .events__item__content a:hover {
  color: #1111b0;
}
.events-wrapper .events__item .events__item__content div {
  margin-bottom: 5px;
  font-size: 14px;
}
.events-wrapper .events__item .events__item__content i {
  width: 20px;
  text-align: center;
}
@media (max-width: 767px) {
  .events-wrapper .events__item .events__item__content {
    width: calc(66.6666666667% - 33.3333333333px);
    float: left;
    margin-left: 20px;
  }
}
.events-wrapper .events__item .events__item__readmore {
  width: calc(16.6666666667% - 23.3333333333px);
  float: left;
  margin-left: 20px;
  text-align: center;
}
@media (max-width: 767px) {
  .events-wrapper .events__item .events__item__readmore {
    width: calc(50% - 30px);
    float: left;
    margin-left: 20px;
    margin-left: calc(33.3333333333% - 26.6666666667px + 40px);
    margin-top: 10px;
  }
}
.events-wrapper .events__item .events__item__readmore a {
  color: white;
  background-color: #569df4;
  text-decoration: none;
  padding: 10px;
  display: block;
  border-radius: 6px;
  transition: all 0.3s;
}
.events-wrapper .events__item .events__item__readmore a:hover {
  background-color: #2681f1;
}
.events-wrapper .horizontal_line:last-of-type {
  height: 0;
}
.post-listing {
  width: calc(75% - 35px);
  float: left;
  margin-left: 20px;
  float: right;
  margin-bottom: 60px;
  padding-top: 60px;
}
@media (max-width: 1023px) {
  .post-listing {
    width: 100%;
    margin: 0;
    padding-top: 0;
  }
}
.post-listing > header {
  margin-bottom: 60px;
}
.post-listing article {
  *zoom: 1;
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  margin-bottom: 60px;
}
.post-listing article:before,
.post-listing article:after {
  content: " ";
  display: table;
}
.post-listing article:after {
  clear: both;
}
.post-listing article .post__image {
  width: calc(25% - 25px);
  float: left;
  margin-left: 20px;
  margin-left: 0;
}
@media (max-width: 767px) {
  .post-listing article .post__image {
    width: 100%;
    margin-bottom: 20px;
  }
}
.post-listing article .post__image img {
  border-radius: 6px;
  width: 100%;
}
.post-listing article .post__content {
  width: calc(58.3333333333% - 31.6666666667px);
  float: left;
  margin-left: 20px;
}
@media (max-width: 767px) {
  .post-listing article .post__content {
    width: 100%;
    margin: 0;
  }
}
.post-listing article .post__content a {
  text-decoration: none;
}
.post-listing article .post__content h3 {
  margin-top: 0;
}
.post-listing article .post__readmore {
  width: calc(16.6666666667% - 23.3333333333px);
  float: left;
  margin-left: 20px;
  margin-top: 40px;
  text-align: center;
}
@media (max-width: 767px) {
  .post-listing article .post__readmore {
    display: inline-block;
    width: 160px;
    margin: 0;
  }
}
.post-listing article .post__readmore a {
  color: white;
  background-color: #569df4;
  text-decoration: none;
  padding: 10px;
  display: block;
  border-radius: 6px;
  transition: all 0.3s;
}
.post-listing article .post__readmore a:hover {
  background-color: #2681f1;
}
.gallery-wrapper .gallery__item {
  width: calc(33.3333333333% - 26.6666666667px);
  float: left;
  margin-left: 20px;
  text-align: center;
  text-decoration: none;
  color: #333;
  transition: all 0.3s;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .gallery-wrapper .gallery__item {
    width: calc(50% - 30px);
    float: left;
    margin-left: 20px;
  }
}
.gallery-wrapper .gallery__item img {
  border: 3px solid transparent;
  transition: all 0.3s;
  border-radius: 6px;
}
.gallery-wrapper .gallery__item:hover {
  color: #569df4;
}
.gallery-wrapper .gallery__item:hover img {
  border: 3px solid #569df4;
}
.gallery-wrapper .gallery__item .gallery__title {
  display: block;
}
.spacer {
  *zoom: 1;
  display: block;
}
.spacer:before,
.spacer:after {
  content: " ";
  display: table;
}
.spacer:after {
  clear: both;
}
@media (max-width: 1023px) {
  .site-content {
    margin-top: 0px;
  }
}
/*--------------------------------------------------------------
 # Pages
 --------------------------------------------------------------*/
