@import url(https://fonts.googleapis.com/css?family=Ubuntu:300,400,500,700);
@import url(https://fonts.googleapis.com/css?family=Open+Sans:300,400,700,800&display=swap);
/* body and blanket */
body {
  padding-top: 95px;
}
@media (min-width: 80rem) {
  body {
    padding-top: 95px;
  }
}
#blanket {
  position: fixed;
  left: 100vw;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 99;
  transition: all 0.25s ease;
  opacity: 0;
}
@media (max-width: 80rem) {
  .noscroll {
    overflow: hidden;
  }
  .noscroll #blanket {
    left: 80vw;
    opacity: 1;
  }
}
.layout-header {
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 100;
}
.layout-header .home {
  display: block;
}
.layout-header .home img {
  height: 100%;
  width: auto;
}
.header {
  display: none;
}
.header .container {
  transition: all 0.25s ease;
  height: 95px;
  position: relative;
}
.header .container .home {
  padding-top: 30px;
  padding-bottom: 30px;
  transition: all 0.25s ease;
  height: 95px;
  float: left;
}
.header .container .menu {
  list-style: none;
  padding: 0;
  margin: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}
.header .container .menu > li {
  display: inline-block;
  padding: 0 15px;
}
.header .container .menu > li {
  position: relative;
}
.header .container .menu > li > ul {
  display: none;
}
.header .container .menu > li:hover ul {
  padding: 15px;
  left: 0;
  display: block;
  position: absolute;
  width: 300px;
}
body.scrolled .header .container {
  height: 95px;
}
body.scrolled .header .container .home {
  padding-top: 15px;
  padding-bottom: 15px;
  height: 95px;
}
@media (min-width: 80rem) {
  .header {
    display: block;
  }
}
.header-small {
  height: 95px;
  position: relative;
}
.header-small .home {
  padding-top: 7.5px;
  padding-bottom: 7.5px;
  height: 95px;
}
.header-small .toggle {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media (min-width: 80rem) {
  .header-small {
    display: none;
  }
}
.menu-small {
  position: fixed;
  top: 95px;
  width: 80vw;
  left: -80vw;
  transition: all 0.25s ease;
  bottom: 0;
  overflow-y: auto;
  opacity: 0;
}
.small-menu-open .menu-small {
  display: block;
  left: 0vw;
  opacity: 1;
}
.menu-small .phonenumber {
  margin-top: 15px;
}
.menu-small .menu > li > ul {
  margin-left: 15px;
}
/*!
	* Hamburgers
	* @description Tasty CSS-animated hamburgers
	* @author Jonathan Suh @jonsuh
	* @site https://jonsuh.com/hamburgers
	* @link https://github.com/jonsuh/hamburgers
	*/
.hamburger {
  font: inherit;
  display: inline-block;
  overflow: visible;
  margin: 0;
  padding: 15px;
  cursor: pointer;
  transition-timing-function: linear;
  transition-duration: .15s;
  transition-property: opacity,filter;
  text-transform: none;
  color: inherit;
  border: 0;
  background-color: transparent;
}
.hamburger.is-active:hover,
.hamburger:hover {
  opacity: .7;
}
.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner:after,
.hamburger.is-active .hamburger-inner:before {
  background-color: #000;
}
.hamburger-box {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 24px;
}
.hamburger-inner {
  top: 50%;
  display: block;
  margin-top: -2px;
}
.hamburger-inner,
.hamburger-inner:after,
.hamburger-inner:before {
  position: absolute;
  width: 40px;
  height: 4px;
  transition-timing-function: ease;
  transition-duration: .15s;
  transition-property: transform;
  border-radius: 4px;
  background-color: #000;
}
.hamburger-inner:after,
.hamburger-inner:before {
  display: block;
  content: "";
}
.hamburger-inner:before {
  top: -10px;
}
.hamburger-inner:after {
  bottom: -10px;
}
.hamburger--3dx .hamburger-box {
  perspective: 80px;
}
.hamburger--3dx .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s;
}
.hamburger--3dx .hamburger-inner:after,
.hamburger--3dx .hamburger-inner:before {
  transition: transform 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s;
}
.hamburger--3dx.is-active .hamburger-inner {
  transform: rotateY(180deg);
  background-color: transparent !important;
}
.hamburger--3dx.is-active .hamburger-inner:before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}
.hamburger--3dx.is-active .hamburger-inner:after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}
.hamburger--3dx-r .hamburger-box {
  perspective: 80px;
}
.hamburger--3dx-r .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s;
}
.hamburger--3dx-r .hamburger-inner:after,
.hamburger--3dx-r .hamburger-inner:before {
  transition: transform 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s;
}
.hamburger--3dx-r.is-active .hamburger-inner {
  transform: rotateY(-180deg);
  background-color: transparent !important;
}
.hamburger--3dx-r.is-active .hamburger-inner:before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}
.hamburger--3dx-r.is-active .hamburger-inner:after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}
.hamburger--3dy .hamburger-box {
  perspective: 80px;
}
.hamburger--3dy .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s;
}
.hamburger--3dy .hamburger-inner:after,
.hamburger--3dy .hamburger-inner:before {
  transition: transform 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s;
}
.hamburger--3dy.is-active .hamburger-inner {
  transform: rotateX(-180deg);
  background-color: transparent !important;
}
.hamburger--3dy.is-active .hamburger-inner:before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}
.hamburger--3dy.is-active .hamburger-inner:after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}
.hamburger--3dy-r .hamburger-box {
  perspective: 80px;
}
.hamburger--3dy-r .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s;
}
.hamburger--3dy-r .hamburger-inner:after,
.hamburger--3dy-r .hamburger-inner:before {
  transition: transform 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s;
}
.hamburger--3dy-r.is-active .hamburger-inner {
  transform: rotateX(180deg);
  background-color: transparent !important;
}
.hamburger--3dy-r.is-active .hamburger-inner:before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}
.hamburger--3dy-r.is-active .hamburger-inner:after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}
.hamburger--3dxy .hamburger-box {
  perspective: 80px;
}
.hamburger--3dxy .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s;
}
.hamburger--3dxy .hamburger-inner:after,
.hamburger--3dxy .hamburger-inner:before {
  transition: transform 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s;
}
.hamburger--3dxy.is-active .hamburger-inner {
  transform: rotateX(180deg) rotateY(180deg);
  background-color: transparent !important;
}
.hamburger--3dxy.is-active .hamburger-inner:before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}
.hamburger--3dxy.is-active .hamburger-inner:after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}
.hamburger--3dxy-r .hamburger-box {
  perspective: 80px;
}
.hamburger--3dxy-r .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s;
}
.hamburger--3dxy-r .hamburger-inner:after,
.hamburger--3dxy-r .hamburger-inner:before {
  transition: transform 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s;
}
.hamburger--3dxy-r.is-active .hamburger-inner {
  transform: rotateX(180deg) rotateY(180deg) rotate(-180deg);
  background-color: transparent !important;
}
.hamburger--3dxy-r.is-active .hamburger-inner:before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}
.hamburger--3dxy-r.is-active .hamburger-inner:after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}
.hamburger--arrow.is-active .hamburger-inner:before {
  transform: translate3d(-8px, 0, 0) rotate(-45deg) scaleX(0.7);
}
.hamburger--arrow.is-active .hamburger-inner:after {
  transform: translate3d(-8px, 0, 0) rotate(45deg) scaleX(0.7);
}
.hamburger--arrow-r.is-active .hamburger-inner:before {
  transform: translate3d(8px, 0, 0) rotate(45deg) scaleX(0.7);
}
.hamburger--arrow-r.is-active .hamburger-inner:after {
  transform: translate3d(8px, 0, 0) rotate(-45deg) scaleX(0.7);
}
.hamburger--arrowalt .hamburger-inner:before {
  transition: top 0.1s ease 0.1s, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.hamburger--arrowalt .hamburger-inner:after {
  transition: bottom 0.1s ease 0.1s, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.hamburger--arrowalt.is-active .hamburger-inner:before {
  top: 0;
  transition: top 0.1s ease, transform 0.1s cubic-bezier(0.895, 0.03, 0.6850000000000001, 0.22) 0.1s;
  transform: translate3d(-8px, -10px, 0) rotate(-45deg) scaleX(0.7);
}
.hamburger--arrowalt.is-active .hamburger-inner:after {
  bottom: 0;
  transition: bottom 0.1s ease, transform 0.1s cubic-bezier(0.895, 0.03, 0.6850000000000001, 0.22) 0.1s;
  transform: translate3d(-8px, 10px, 0) rotate(45deg) scaleX(0.7);
}
.hamburger--arrowalt-r .hamburger-inner:before {
  transition: top 0.1s ease 0.1s, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.hamburger--arrowalt-r .hamburger-inner:after {
  transition: bottom 0.1s ease 0.1s, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.hamburger--arrowalt-r.is-active .hamburger-inner:before {
  top: 0;
  transition: top 0.1s ease, transform 0.1s cubic-bezier(0.895, 0.03, 0.6850000000000001, 0.22) 0.1s;
  transform: translate3d(8px, -10px, 0) rotate(45deg) scaleX(0.7);
}
.hamburger--arrowalt-r.is-active .hamburger-inner:after {
  bottom: 0;
  transition: bottom 0.1s ease, transform 0.1s cubic-bezier(0.895, 0.03, 0.6850000000000001, 0.22) 0.1s;
  transform: translate3d(8px, 10px, 0) rotate(-45deg) scaleX(0.7);
}
.hamburger--arrowturn.is-active .hamburger-inner {
  transform: rotate(-180deg);
}
.hamburger--arrowturn.is-active .hamburger-inner:before {
  transform: translate3d(8px, 0, 0) rotate(45deg) scaleX(0.7);
}
.hamburger--arrowturn.is-active .hamburger-inner:after {
  transform: translate3d(8px, 0, 0) rotate(-45deg) scaleX(0.7);
}
.hamburger--arrowturn-r.is-active .hamburger-inner {
  transform: rotate(-180deg);
}
.hamburger--arrowturn-r.is-active .hamburger-inner:before {
  transform: translate3d(-8px, 0, 0) rotate(-45deg) scaleX(0.7);
}
.hamburger--arrowturn-r.is-active .hamburger-inner:after {
  transform: translate3d(-8px, 0, 0) rotate(45deg) scaleX(0.7);
}
.hamburger--boring .hamburger-inner,
.hamburger--boring .hamburger-inner:after,
.hamburger--boring .hamburger-inner:before {
  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);
}
.hamburger--collapse .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-delay: .13s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition-duration: .13s;
}
.hamburger--collapse .hamburger-inner:after {
  top: -20px;
  transition: top 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.2s, opacity 0.1s linear;
}
.hamburger--collapse .hamburger-inner:before {
  transition: top 0.12s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.2s, transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse.is-active .hamburger-inner {
  transition-delay: .22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}
.hamburger--collapse.is-active .hamburger-inner:after {
  top: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s linear 0.22s;
  opacity: 0;
}
.hamburger--collapse.is-active .hamburger-inner:before {
  top: 0;
  transition: top 0.1s cubic-bezier(0.33333, 0, 0.66667, 0.33333) 0.16s, transform 0.13s cubic-bezier(0.215, 0.61, 0.355, 1) 0.25s;
  transform: rotate(-90deg);
}
.hamburger--collapse-r .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-delay: .13s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition-duration: .13s;
}
.hamburger--collapse-r .hamburger-inner:after {
  top: -20px;
  transition: top 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.2s, opacity 0.1s linear;
}
.hamburger--collapse-r .hamburger-inner:before {
  transition: top 0.12s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.2s, transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse-r.is-active .hamburger-inner {
  transition-delay: .22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: translate3d(0, -10px, 0) rotate(45deg);
}
.hamburger--collapse-r.is-active .hamburger-inner:after {
  top: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s linear 0.22s;
  opacity: 0;
}
.hamburger--collapse-r.is-active .hamburger-inner:before {
  top: 0;
  transition: top 0.1s cubic-bezier(0.33333, 0, 0.66667, 0.33333) 0.16s, transform 0.13s cubic-bezier(0.215, 0.61, 0.355, 1) 0.25s;
  transform: rotate(90deg);
}
.hamburger--elastic .hamburger-inner {
  top: 2px;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition-duration: .275s;
}
.hamburger--elastic .hamburger-inner:before {
  top: 10px;
  transition: opacity 0.125s ease 0.275s;
}
.hamburger--elastic .hamburger-inner:after {
  top: 20px;
  transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hamburger--elastic.is-active .hamburger-inner {
  transition-delay: 75ms;
  transform: translate3d(0, 10px, 0) rotate(135deg);
}
.hamburger--elastic.is-active .hamburger-inner:before {
  transition-delay: 0s;
  opacity: 0;
}
.hamburger--elastic.is-active .hamburger-inner:after {
  transition-delay: 75ms;
  transform: translate3d(0, -20px, 0) rotate(-270deg);
}
.hamburger--elastic-r .hamburger-inner {
  top: 2px;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition-duration: .275s;
}
.hamburger--elastic-r .hamburger-inner:before {
  top: 10px;
  transition: opacity 0.125s ease 0.275s;
}
.hamburger--elastic-r .hamburger-inner:after {
  top: 20px;
  transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hamburger--elastic-r.is-active .hamburger-inner {
  transition-delay: 75ms;
  transform: translate3d(0, 10px, 0) rotate(-135deg);
}
.hamburger--elastic-r.is-active .hamburger-inner:before {
  transition-delay: 0s;
  opacity: 0;
}
.hamburger--elastic-r.is-active .hamburger-inner:after {
  transition-delay: 75ms;
  transform: translate3d(0, -20px, 0) rotate(270deg);
}
.hamburger--emphatic {
  overflow: hidden;
}
.hamburger--emphatic .hamburger-inner {
  transition: background-color 0.125s ease-in 0.175s;
}
.hamburger--emphatic .hamburger-inner:before {
  left: 0;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s linear 0.125s, left 0.125s ease-in 0.175s;
}
.hamburger--emphatic .hamburger-inner:after {
  top: 10px;
  right: 0;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s linear 0.125s, right 0.125s ease-in 0.175s;
}
.hamburger--emphatic.is-active .hamburger-inner {
  transition-delay: 0s;
  transition-timing-function: ease-out;
  background-color: transparent !important;
}
.hamburger--emphatic.is-active .hamburger-inner:before {
  top: -80px;
  left: -80px;
  transition: left 0.125s ease-out, top 0.05s linear 0.125s, transform 0.125s cubic-bezier(0.075, 0.82, 0.165, 1) 0.175s;
  transform: translate3d(80px, 80px, 0) rotate(45deg);
}
.hamburger--emphatic.is-active .hamburger-inner:after {
  top: -80px;
  right: -80px;
  transition: right 0.125s ease-out, top 0.05s linear 0.125s, transform 0.125s cubic-bezier(0.075, 0.82, 0.165, 1) 0.175s;
  transform: translate3d(-80px, 80px, 0) rotate(-45deg);
}
.hamburger--emphatic-r {
  overflow: hidden;
}
.hamburger--emphatic-r .hamburger-inner {
  transition: background-color 0.125s ease-in 0.175s;
}
.hamburger--emphatic-r .hamburger-inner:before {
  left: 0;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s linear 0.125s, left 0.125s ease-in 0.175s;
}
.hamburger--emphatic-r .hamburger-inner:after {
  top: 10px;
  right: 0;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s linear 0.125s, right 0.125s ease-in 0.175s;
}
.hamburger--emphatic-r.is-active .hamburger-inner {
  transition-delay: 0s;
  transition-timing-function: ease-out;
  background-color: transparent !important;
}
.hamburger--emphatic-r.is-active .hamburger-inner:before {
  top: 80px;
  left: -80px;
  transition: left 0.125s ease-out, top 0.05s linear 0.125s, transform 0.125s cubic-bezier(0.075, 0.82, 0.165, 1) 0.175s;
  transform: translate3d(80px, -80px, 0) rotate(-45deg);
}
.hamburger--emphatic-r.is-active .hamburger-inner:after {
  top: 80px;
  right: -80px;
  transition: right 0.125s ease-out, top 0.05s linear 0.125s, transform 0.125s cubic-bezier(0.075, 0.82, 0.165, 1) 0.175s;
  transform: translate3d(-80px, -80px, 0) rotate(45deg);
}
.hamburger--minus .hamburger-inner:after,
.hamburger--minus .hamburger-inner:before {
  transition: bottom 0.08s ease-out 0s, top 0.08s ease-out 0s, opacity 0s linear;
}
.hamburger--minus.is-active .hamburger-inner:after,
.hamburger--minus.is-active .hamburger-inner:before {
  transition: bottom 0.08s ease-out, top 0.08s ease-out, opacity 0s linear 0.08s;
  opacity: 0;
}
.hamburger--minus.is-active .hamburger-inner:before {
  top: 0;
}
.hamburger--minus.is-active .hamburger-inner:after {
  bottom: 0;
}
.hamburger--slider .hamburger-inner {
  top: 2px;
}
.hamburger--slider .hamburger-inner:before {
  top: 10px;
  transition-timing-function: ease;
  transition-duration: .15s;
  transition-property: transform,opacity;
}
.hamburger--slider .hamburger-inner:after {
  top: 20px;
}
.hamburger--slider.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}
.hamburger--slider.is-active .hamburger-inner:before {
  transform: rotate(-45deg) translate3d(-5.71429px, -6px, 0);
  opacity: 0;
}
.hamburger--slider.is-active .hamburger-inner:after {
  transform: translate3d(0, -20px, 0) rotate(-90deg);
}
.hamburger--slider-r .hamburger-inner {
  top: 2px;
}
.hamburger--slider-r .hamburger-inner:before {
  top: 10px;
  transition-timing-function: ease;
  transition-duration: .15s;
  transition-property: transform,opacity;
}
.hamburger--slider-r .hamburger-inner:after {
  top: 20px;
}
.hamburger--slider-r.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(-45deg);
}
.hamburger--slider-r.is-active .hamburger-inner:before {
  transform: rotate(45deg) translate3d(5.71429px, -6px, 0);
  opacity: 0;
}
.hamburger--slider-r.is-active .hamburger-inner:after {
  transform: translate3d(0, -20px, 0) rotate(90deg);
}
.hamburger--spin .hamburger-inner {
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition-duration: .22s;
}
.hamburger--spin .hamburger-inner:before {
  transition: top 0.1s ease-in 0.25s, opacity 0.1s ease-in;
}
.hamburger--spin .hamburger-inner:after {
  transition: bottom 0.1s ease-in 0.25s, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin.is-active .hamburger-inner {
  transition-delay: .12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: rotate(225deg);
}
.hamburger--spin.is-active .hamburger-inner:before {
  top: 0;
  transition: top 0.1s ease-out, opacity 0.1s ease-out 0.12s;
  opacity: 0;
}
.hamburger--spin.is-active .hamburger-inner:after {
  bottom: 0;
  transition: bottom 0.1s ease-out, transform 0.22s cubic-bezier(0.215, 0.61, 0.355, 1) 0.12s;
  transform: rotate(-90deg);
}
.hamburger--spin-r .hamburger-inner {
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition-duration: .22s;
}
.hamburger--spin-r .hamburger-inner:before {
  transition: top 0.1s ease-in 0.25s, opacity 0.1s ease-in;
}
.hamburger--spin-r .hamburger-inner:after {
  transition: bottom 0.1s ease-in 0.25s, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin-r.is-active .hamburger-inner {
  transition-delay: .12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: rotate(-225deg);
}
.hamburger--spin-r.is-active .hamburger-inner:before {
  top: 0;
  transition: top 0.1s ease-out, opacity 0.1s ease-out 0.12s;
  opacity: 0;
}
.hamburger--spin-r.is-active .hamburger-inner:after {
  bottom: 0;
  transition: bottom 0.1s ease-out, transform 0.22s cubic-bezier(0.215, 0.61, 0.355, 1) 0.12s;
  transform: rotate(90deg);
}
.hamburger--spring .hamburger-inner {
  top: 2px;
  transition: background-color 0s linear 0.13s;
}
.hamburger--spring .hamburger-inner:before {
  top: 10px;
  transition: top 0.1s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.2s, transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spring .hamburger-inner:after {
  top: 20px;
  transition: top 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.2s, transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spring.is-active .hamburger-inner {
  transition-delay: .22s;
  background-color: transparent !important;
}
.hamburger--spring.is-active .hamburger-inner:before {
  top: 0;
  transition: top 0.1s cubic-bezier(0.33333, 0, 0.66667, 0.33333) 0.15s, transform 0.13s cubic-bezier(0.215, 0.61, 0.355, 1) 0.22s;
  transform: translate3d(0, 10px, 0) rotate(45deg);
}
.hamburger--spring.is-active .hamburger-inner:after {
  top: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s cubic-bezier(0.215, 0.61, 0.355, 1) 0.22s;
  transform: translate3d(0, 10px, 0) rotate(-45deg);
}
.hamburger--spring-r .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-delay: 0s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition-duration: .13s;
}
.hamburger--spring-r .hamburger-inner:after {
  top: -20px;
  transition: top 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.2s, opacity 0s linear;
}
.hamburger--spring-r .hamburger-inner:before {
  transition: top 0.1s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.2s, transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spring-r.is-active .hamburger-inner {
  transition-delay: .22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}
.hamburger--spring-r.is-active .hamburger-inner:after {
  top: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0s linear 0.22s;
  opacity: 0;
}
.hamburger--spring-r.is-active .hamburger-inner:before {
  top: 0;
  transition: top 0.1s cubic-bezier(0.33333, 0, 0.66667, 0.33333) 0.15s, transform 0.13s cubic-bezier(0.215, 0.61, 0.355, 1) 0.22s;
  transform: rotate(90deg);
}
.hamburger--stand .hamburger-inner {
  transition: transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19) 0.15s, background-color 0s linear 75ms;
}
.hamburger--stand .hamburger-inner:before {
  transition: top 75ms ease-in 75ms, transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19) 0s;
}
.hamburger--stand .hamburger-inner:after {
  transition: bottom 75ms ease-in 75ms, transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19) 0s;
}
.hamburger--stand.is-active .hamburger-inner {
  transition: transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0s, background-color 0s linear 0.15s;
  transform: rotate(90deg);
  background-color: transparent !important;
}
.hamburger--stand.is-active .hamburger-inner:before {
  top: 0;
  transition: top 75ms ease-out 0.1s, transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0.15s;
  transform: rotate(-45deg);
}
.hamburger--stand.is-active .hamburger-inner:after {
  bottom: 0;
  transition: bottom 75ms ease-out 0.1s, transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0.15s;
  transform: rotate(45deg);
}
.hamburger--stand-r .hamburger-inner {
  transition: transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19) 0.15s, background-color 0s linear 75ms;
}
.hamburger--stand-r .hamburger-inner:before {
  transition: top 75ms ease-in 75ms, transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19) 0s;
}
.hamburger--stand-r .hamburger-inner:after {
  transition: bottom 75ms ease-in 75ms, transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19) 0s;
}
.hamburger--stand-r.is-active .hamburger-inner {
  transition: transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0s, background-color 0s linear 0.15s;
  transform: rotate(-90deg);
  background-color: transparent !important;
}
.hamburger--stand-r.is-active .hamburger-inner:before {
  top: 0;
  transition: top 75ms ease-out 0.1s, transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0.15s;
  transform: rotate(-45deg);
}
.hamburger--stand-r.is-active .hamburger-inner:after {
  bottom: 0;
  transition: bottom 75ms ease-out 0.1s, transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0.15s;
  transform: rotate(45deg);
}
.hamburger--squeeze .hamburger-inner {
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition-duration: 75ms;
}
.hamburger--squeeze .hamburger-inner:before {
  transition: top 75ms ease 0.12s, opacity 75ms ease;
}
.hamburger--squeeze .hamburger-inner:after {
  transition: bottom 75ms ease 0.12s, transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--squeeze.is-active .hamburger-inner {
  transition-delay: .12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: rotate(45deg);
}
.hamburger--squeeze.is-active .hamburger-inner:before {
  top: 0;
  transition: top 75ms ease,opacity 75ms ease .12s;
  opacity: 0;
}
.hamburger--squeeze.is-active .hamburger-inner:after {
  bottom: 0;
  transition: bottom 75ms ease, transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0.12s;
  transform: rotate(-90deg);
}
.hamburger--vortex .hamburger-inner {
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  transition-duration: .2s;
}
.hamburger--vortex .hamburger-inner:after,
.hamburger--vortex .hamburger-inner:before {
  transition-delay: .1s;
  transition-timing-function: linear;
  transition-duration: 0s;
}
.hamburger--vortex .hamburger-inner:before {
  transition-property: top,opacity;
}
.hamburger--vortex .hamburger-inner:after {
  transition-property: bottom,transform;
}
.hamburger--vortex.is-active .hamburger-inner {
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  transform: rotate(765deg);
}
.hamburger--vortex.is-active .hamburger-inner:after,
.hamburger--vortex.is-active .hamburger-inner:before {
  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);
}
.hamburger--vortex-r .hamburger-inner {
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  transition-duration: .2s;
}
.hamburger--vortex-r .hamburger-inner:after,
.hamburger--vortex-r .hamburger-inner:before {
  transition-delay: .1s;
  transition-timing-function: linear;
  transition-duration: 0s;
}
.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 {
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  transform: rotate(-765deg);
}
.hamburger--vortex-r.is-active .hamburger-inner:after,
.hamburger--vortex-r.is-active .hamburger-inner:before {
  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);
}
.layout-eyecandy .items {
  list-style: none;
  padding: 0;
  margin: 0;
}
.layout-eyecandy .items .item {
  position: relative;
  height: 100%;
  background-size: cover;
  background-position: 50% 50%;
  width: 100%;
}
.layout-eyecandy .items .item .text {
  position: absolute;
  max-width: 900px;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}
.layout-eyecandy .items .item.alignment-top {
  background-position-y: 0%;
}
.layout-eyecandy .items .item.alignment-bottom {
  background-position-y: 100%;
}
.layout-eyecandy,
.layout-eyecandy ul {
  height: 20vh;
  max-height: 650px;
  min-height: 360px;
}
@media (min-width: 40rem) {
  .layout-eyecandy,
  .layout-eyecandy ul {
    height: 40vh;
  }
}
@media (min-width: 60rem) {
  .layout-eyecandy,
  .layout-eyecandy ul {
    height: 60vh;
    height: 482px;
  }
}
.layout-eyecandy .item {
  transition: opacity 1s ease;
  opacity: 0;
}
body.images-loaded .layout-eyecandy .item {
  opacity: 1;
}
.layout-eyecandy,
.layout-eyecandy ul {
  height: 20vh;
  max-height: 650px;
  min-height: 360px;
}
@media (min-width: 40rem) {
  .layout-eyecandy,
  .layout-eyecandy ul {
    height: 40vh;
  }
}
@media (min-width: 60rem) {
  .layout-eyecandy,
  .layout-eyecandy ul {
    height: 60vh;
    height: 84vh;
  }
}
@media (min-width: 60rem) {
  .layout-imageandtext .image-and-text {
    display: flex;
  }
  .layout-imageandtext .image-and-text > * {
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 50%;
  }
}
/* news */
.layout-footer:before,
.layout-footer:after {
  content: " ";
  display: table;
}
.layout-footer:after {
  clear: both;
}
.layout-footer .container {
  position: relative;
}
.layout-footer .container .home {
  padding-top: 30px;
  padding-bottom: 30px;
  height: 95px;
  display: block;
}
.layout-footer .container .home img {
  height: 100%;
  width: auto;
}
.layout-footer .container .up {
  position: absolute;
  top: -45px;
  right: 15px;
}
.layout-footer .container .menu {
  position: absolute;
  right: 0;
  bottom: 0;
}
.layout-footer .container .menu ul {
  list-style: none;
  padding: 0;
}
.layout-footer .container .menu ul > li {
  display: inline-block;
  padding: 0 15px;
}
@media (max-width: 80rem) {
  .layout-footer .container {
    text-align: center;
  }
  .layout-footer .container .menu {
    position: relative;
  }
}
/* imports */
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}
/* Sections
     ========================================================================== */
/**
   * Remove the margin in all browsers.
   */
body {
  margin: 0;
}
/**
   * Render the `main` element consistently in IE.
   */
main {
  display: block;
}
/**
   * Correct the font size and margin on `h1` elements within `section` and
   * `article` contexts in Chrome, Firefox, and Safari.
   */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
/* Grouping content
     ========================================================================== */
/**
   * 1. Add the correct box sizing in Firefox.
   * 2. Show the overflow in Edge and IE.
   */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}
/**
   * 1. Correct the inheritance and scaling of font size in all browsers.
   * 2. Correct the odd `em` font sizing in all browsers.
   */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}
/* Text-level semantics
     ========================================================================== */
/**
   * Remove the gray background on active links in IE 10.
   */
a {
  background-color: transparent;
}
/**
   * 1. Remove the bottom border in Chrome 57-
   * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
   */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  text-decoration: underline dotted;
  /* 2 */
}
/**
   * Add the correct font weight in Chrome, Edge, and Safari.
   */
b,
strong {
  font-weight: bolder;
}
/**
   * 1. Correct the inheritance and scaling of font size in all browsers.
   * 2. Correct the odd `em` font sizing in all browsers.
   */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}
/**
   * Add the correct font size in all browsers.
   */
small {
  font-size: 80%;
}
/**
   * Prevent `sub` and `sup` elements from affecting the line height in
   * all browsers.
   */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
/* Embedded content
     ========================================================================== */
/**
   * Remove the border on images inside links in IE 10.
   */
img {
  border-style: none;
}
/* Forms
     ========================================================================== */
/**
   * 1. Change the font styles in all browsers.
   * 2. Remove the margin in Firefox and Safari.
   */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */
}
/**
   * Show the overflow in IE.
   * 1. Show the overflow in Edge.
   */
button,
input {
  /* 1 */
  overflow: visible;
}
/**
   * Remove the inheritance of text transform in Edge, Firefox, and IE.
   * 1. Remove the inheritance of text transform in Firefox.
   */
button,
select {
  /* 1 */
  text-transform: none;
}
/**
   * Correct the inability to style clickable types in iOS and Safari.
   */
button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}
/**
   * Remove the inner border and padding in Firefox.
   */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
/**
   * Restore the focus styles unset by the previous rule.
   */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}
/**
   * Correct the padding in Firefox.
   */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}
/**
   * 1. Correct the text wrapping in Edge and IE.
   * 2. Correct the color inheritance from `fieldset` elements in IE.
   * 3. Remove the padding so developers are not caught out when they zero out
   *    `fieldset` elements in all browsers.
   */
legend {
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}
/**
   * Add the correct vertical alignment in Chrome, Firefox, and Opera.
   */
progress {
  vertical-align: baseline;
}
/**
   * Remove the default vertical scrollbar in IE 10+.
   */
textarea {
  overflow: auto;
}
/**
   * 1. Add the correct box sizing in IE 10.
   * 2. Remove the padding in IE 10.
   */
[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}
/**
   * Correct the cursor style of increment and decrement buttons in Chrome.
   */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
/**
   * 1. Correct the odd appearance in Chrome and Safari.
   * 2. Correct the outline style in Safari.
   */
[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}
/**
   * Remove the inner padding in Chrome and Safari on macOS.
   */
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
/**
   * 1. Correct the inability to style clickable types in iOS and Safari.
   * 2. Change font properties to `inherit` in Safari.
   */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}
/* Interactive
     ========================================================================== */
/*
   * Add the correct display in Edge, IE 10+, and Firefox.
   */
details {
  display: block;
}
/*
   * Add the correct display in all browsers.
   */
summary {
  display: list-item;
}
/* Misc
     ========================================================================== */
/**
   * Add the correct display in IE 10+.
   */
template {
  display: none;
}
/**
   * Add the correct display in IE 10.
   */
[hidden] {
  display: none;
}
/* raamwerck.less */
html {
  box-sizing: border-box;
}
*,
*:before,
*:after {
  box-sizing: inherit;
}
/* super gen */
ul {
  list-style: none;
  padding: 0;
}
img {
  max-width: 100%;
}
html {
  scroll-behavior: smooth;
}
/* grid */
@media screen and (min-width: 60rem) {
  .columns {
    display: flex;
  }
}
.column {
  flex-grow: 1;
}
.justify-content-space-between {
  justify-content: space-between;
}
.justify-content-space-between .column {
  flex-grow: 0;
}
/* wordpress */
.alignleft {
  padding-right: 15px;
  float: left;
}
.alignright {
  padding-left: 15px;
  float: right;
}
/* menus lists */
/* 'thumb' lists */
/* font awesome */
/* video wrapper */
.video-wrapper {
  padding-bottom: 56.25%;
  position: relative;
}
.video-wrapper iframe {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
}
/* psuedo columns */
/* fonts */
/*!
 *  Font Awesome 4.4.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('/web/20200112050419im_/https://www.sjinkiefoundation.nl/wp-content/themes/sjinkie%20foundation/fonts/fontawesome-webfont.eot?v=4.4.0');
  src: url('/web/20200112050419im_/https://www.sjinkiefoundation.nl/wp-content/themes/sjinkie%20foundation/fonts/fontawesome-webfont.eot#iefix&v=4.4.0') format('embedded-opentype'), url('/web/20200112050419im_/https://www.sjinkiefoundation.nl/wp-content/themes/sjinkie%20foundation/fonts/fontawesome-webfont.woff2?v=4.4.0') format('woff2'), url('/web/20200112050419im_/https://www.sjinkiefoundation.nl/wp-content/themes/sjinkie%20foundation/fonts/fontawesome-webfont.woff?v=4.4.0') format('woff'), url('/web/20200112050419im_/https://www.sjinkiefoundation.nl/wp-content/themes/sjinkie%20foundation/fonts/fontawesome-webfont.ttf?v=4.4.0') format('truetype'), url('/web/20200112050419im_/https://www.sjinkiefoundation.nl/wp-content/themes/sjinkie%20foundation/fonts/fontawesome-webfont.svg?v=4.4.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.33333333em;
  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.28571429em;
  text-align: center;
}
.fa-ul {
  padding-left: 0;
  margin-left: 2.14285714em;
  list-style-type: none;
}
.fa-ul > li {
  position: relative;
}
.fa-li {
  position: absolute;
  left: -2.14285714em;
  width: 2.14285714em;
  top: 0.14285714em;
  text-align: center;
}
.fa-li.fa-lg {
  left: -1.85714286em;
}
.fa-border {
  padding: .2em .25em .15em;
  border: solid 0.08em #eeeeee;
  border-radius: .1em;
}
.fa-pull-left {
  float: left;
}
.fa-pull-right {
  float: right;
}
.fa.fa-pull-left {
  margin-right: .3em;
}
.fa.fa-pull-right {
  margin-left: .3em;
}
/* Deprecated as of 4.4.0 */
.pull-right {
  float: right;
}
.pull-left {
  float: left;
}
.fa.pull-left {
  margin-right: .3em;
}
.fa.pull-right {
  margin-left: .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 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.fa-rotate-180 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.fa-rotate-270 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
}
.fa-flip-horizontal {
  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 {
  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: #ffffff;
}
/* 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: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-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-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";
}
body {
  font-family: 'Open Sans', sans-serif;
  line-height: 1.5em;
  font-size: 16px;
  background-color: #ffffff;
}
body,
body a {
  color: rgba(0, 0, 0, 0.9);
}
/* breakpoints */
/* paddings */
/* grid	 */
/* widths */
.container {
  padding-left: 15px;
  padding-right: 15px;
  width: 100%;
  margin: 0 auto;
  max-width: 80rem;
}
/* vars */
/* base */
/* color - grrr aris */
/* transitions */
/* header & footer */
/* layout settings */
/* container and burger breakpoint */
/* links and buttons */
a {
  color: #000000;
  text-decoration: none;
}
/* layouts */
.layout-header {
  z-index: 9999;
}
.scrolled .layout-header {
  position: fixed;
}
.scrolled .layout-header,
.layout-header .menu-small {
  background-color: #ffffff;
}
.layout-header .container .home {
  padding-top: 15px;
  padding-bottom: 15px;
  height: 95px;
}
@media (min-width: 60rem) {
  .layout-header .container .home {
    height: 140px;
  }
}
.layout-header .container .menu li {
  text-align: center;
}
.layout-header .container .menu li a {
  font-weight: 600;
  color: #2b2e69;
  padding: 9px 25px;
  text-transform: uppercase;
  background: #ffffff;
  border-radius: 3px;
}
.scrolled .layout-header .container .menu li a {
  color: #2b2e69;
  text-shadow: none;
}
.layout-header .container .menu li a:hover {
  color: #ffffff;
  background: #2b2e69;
  border-bottom: 2px solid #e30613;
  text-shadow: none;
}
.layout-header .container .menu li .sub-menu {
  background: #ffffff;
  margin-left: 15px;
  padding-left: 25px !important;
}
.layout-header .container .menu li .sub-menu li a {
  color: #000000 !important;
  padding: 0;
  font-weight: 400;
  margin: 5px 0 5px 9px;
  display: block;
  border-bottom: none;
}
.layout-header .container .menu li .sub-menu li a:before {
  display: none;
}
.layout-header .container .menu li .sub-menu li a:hover {
  background: none;
  border-bottom: 0;
  text-decoration: underline;
}
.layout-header .container .menu li .sub-menu li:last-child {
  position: relative;
  top: auto;
  right: auto;
}
.layout-header .container .menu li .sub-menu li:last-child a {
  background: none;
  border-radius: 0;
  font-size: 1em;
  padding: 0;
  text-align: left;
}
.layout-header .container .utility-menu {
  position: absolute;
  top: 0;
  right: 0;
  margin: 0;
}
.layout-header .container .utility-menu li a {
  font-weight: 600;
  color: #ffffff;
  background: #dea800;
  border-radius: 0 0 20px 20px;
  display: block;
  padding: 0.2em 2.8em 0.5em;
  font-size: 0.8em;
}
.layout-header .menu-small .container .menu li {
  text-align: left;
}
.layout-header .menu-small .container .menu li .sub-menu {
  display: none;
}
.layout-header .menu-small .container .menu li a {
  padding: 10px 25px 5px 0px;
  display: block;
  text-shadow: none;
  color: #2b2e69;
}
.layout-header .menu-small .container .menu li a:hover {
  background: none;
}
.layout-header .menu-small .container .menu li.active .sub-menu {
  display: block;
  background: none;
}
.layout-header .menu-small .container .menu li.active .sub-menu li a {
  color: #ffffff !important;
}
.layout-header .header-small .hamburger-inner {
  background-color: #e30613;
}
.layout-header .header-small .hamburger-inner:before,
.layout-header .header-small .hamburger-inner:after {
  background-color: #e30613;
}
.layout-eyecandy {
  background: #2b2e69;
  position: relative;
}
@media (min-width: 60rem) {
  .layout-eyecandy {
    top: -95px;
  }
}
.layout-eyecandy ul.items li.item .text {
  font-weight: 600;
  color: #ffffff;
  font-size: 1.5em;
  width: 100%;
  max-width: 600px;
  line-height: 1.4em;
  text-shadow: 0px 0px 3px #504c4c;
  text-align: center;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  padding: 0 15px;
}
@media (min-width: 60rem) {
  .layout-eyecandy ul.items li.item .text {
    font-size: 2.5em;
    width: auto;
    padding: 0;
  }
}
.layout-eyecandy ul.items li.item .text strong {
  color: #ffffff;
  font-weight: 800;
}
.layout-eyecandy ul.items li.item .text a {
  display: inline-block;
  font-weight: 600;
  padding: 10px 20px;
  position: relative;
  width: auto;
  z-index: 1;
  background: #e30613;
  color: #ffffff;
  border-radius: 3px;
  text-transform: uppercase;
  font-size: 20px;
  cursor: pointer;
  -webkit-box-shadow: 0px 0px 9px -1px #2c2d82;
  -moz-box-shadow: 0px 0px 9px -1px #2c2d82;
  box-shadow: 0px 0px 9px -1px #2c2d82;
}
.layout-eyecandy ul.items li.item .text a:hover {
  background: #2b2e69;
  color: #ffffff;
}
.layout-text,
.layout-textintro {
  padding: 0px 0 60px 0;
}
.layout-text .row,
.layout-textintro .row {
  max-width: 820px;
  margin: 0 auto;
  text-align: justify;
}
.layout-text .row .text_left,
.layout-textintro .row .text_left,
.layout-text .row .text_right,
.layout-textintro .row .text_right {
  margin: 0 15px;
  display: inline-block;
  vertical-align: top;
  line-height: 1.9em;
}
@media (min-width: 60rem) {
  .layout-text .row .text_left,
  .layout-textintro .row .text_left,
  .layout-text .row .text_right,
  .layout-textintro .row .text_right {
    width: 45%;
  }
}
.layout-text .row ul,
.layout-textintro .row ul {
  margin-left: 20px;
  list-style: disc;
}
.layout-text .row h1,
.layout-textintro .row h1,
.layout-text .row h2,
.layout-textintro .row h2,
.layout-text .row h3,
.layout-textintro .row h3 {
  color: #2b2e69;
}
.layout-text table,
.layout-textintro table {
  width: 200%;
}
.layout-text table td,
.layout-textintro table td {
  border-bottom: 1px solid black;
  padding: 2px 11px;
}
.layout-text table td:first-child,
.layout-textintro table td:first-child {
  border-right: 1px solid black;
}
.layout-text a,
.layout-textintro a {
  text-decoration: underline;
}
.layout-text a:hover,
.layout-textintro a:hover {
  text-decoration: none;
}
.layout-text .title,
.layout-textintro .title {
  text-align: left;
  color: #2b2e69;
  font-weight: 600;
  font-size: 1.5em;
  line-height: 1.1em;
}
.home .layout-text,
.home .layout-textintro {
  padding: 60px 0 400px 0;
}
.home .layout-text .row,
.home .layout-textintro .row {
  max-width: 100%;
}
@media (min-width: 60rem) {
  .home .layout-text .row,
  .home .layout-textintro .row {
    margin: 0 -15px;
  }
}
.home .layout-text .title,
.home .layout-textintro .title {
  font-weight: 900;
  text-align: left;
  font-size: 2em;
  margin: 0;
  line-height: 1.2em;
  color: #2b2e69;
  max-width: 230px;
}
.layout-contents .container {
  position: relative;
  z-index: 200;
  line-height: 1.9em;
}
.layout-contents .container .wrapper {
  max-width: 60rem;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  text-align: justify;
}
.layout-contents .container h1 {
  color: #e30613;
  margin: 20px 0;
  text-align: left;
  font-size: 2em;
  margin-bottom: 15px;
  line-height: 1em;
  text-transform: uppercase;
}
@media (min-width: 60rem) {
  .layout-contents .container h1 {
    font-size: 3em;
    margin-bottom: 10px;
  }
}
.layout-contents .container h2 {
  color: #2b2e69;
  margin: 30px 0;
}
.layout-contents .container a {
  text-decoration: underline;
}
.layout-contents .container a:hover {
  text-decoration: none;
}
.layout-contents .container ul {
  list-style: disc;
  padding-left: 20px;
}
.layout-contents .container ul.doneer {
  list-style: none;
  padding-left: 0;
  text-align: center;
}
.layout-contents .container ul.doneer li {
  display: inline-block;
}
.layout-contents .container ul.doneer li a {
  display: block;
  border-radius: 3px;
  border: 2px solid #2b2e69;
  text-align: center;
  padding: 15px;
  font-weight: bold;
  font-size: 20px;
  text-decoration: none;
  color: #2b2e69;
  margin-bottom: 10px;
}
.layout-contents .container ul.doneer li a:hover {
  background: #2b2e69;
  color: #ffffff;
  text-decoration: none;
}
.layout-contents .container .titleandcrubms {
  margin-bottom: 50px;
}
.layout-contents .container .titleandcrubms .breadcrumbs {
  font-size: 0.9em;
  color: #ffffff;
}
.layout-contents .container .titleandcrubms .breadcrumbs span,
.layout-contents .container .titleandcrubms .breadcrumbs a {
  color: #ffffff;
}
.layout-contents .container img {
  margin-bottom: 15px;
  height: auto;
}
@media (min-width: 80rem) {
  .layout-contents .container .wrapper {
    padding: 0 0 50px 0;
  }
}
.layout-contents .container .vacancy-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
  line-height: 2em;
}
@media (min-width: 40rem) {
  .layout-contents .container .vacancy-content {
    width: 58%;
  }
}
.layout-contents .container .vacancy-content h2 {
  font-size: 2em;
  font-family: 'Museo-Bold';
  margin-top: 20px;
}
.layout-contents .container .vacancy-details {
  display: inline-block;
  text-align: left;
  margin-right: 1%;
  font-size: 0.8em;
  background: #2b2e69;
  color: #ffffff;
  padding: 40px 60px 60px 60px;
  margin-bottom: 55px;
}
@media (min-width: 40rem) {
  .layout-contents .container .vacancy-details {
    width: 40%;
    margin-top: -100px;
    margin-bottom: 0px;
  }
}
.layout-contents .container .vacancy-details .subtitle {
  margin-top: 20px;
  font-family: 'Museo-Bold';
}
.layout-contents .gform_wrapper .gform_body ul li {
  padding-left: 0;
}
.layout-contents .gform_wrapper .gform_footer .button {
  display: inline-block;
  font-weight: 600;
  padding: 10px 20px;
  position: relative;
  width: auto;
  z-index: 1;
  background: #2b2e69;
  color: #ffffff;
  border-radius: 3px;
  text-transform: uppercase;
  font-size: 20px;
  cursor: pointer;
  -webkit-box-shadow: 0px 0px 9px -1px #2c2d82;
  -moz-box-shadow: 0px 0px 9px -1px #2c2d82;
  box-shadow: 0px 0px 9px -1px #2c2d82;
  border: none;
}
.layout-contents .gform_wrapper .gform_footer .button:hover {
  background: #dea800;
  color: #000000;
}
.page-id-353 .layout-contents .container .wrapper,
.page-id-358 .layout-contents .container .wrapper,
.page-id-564 .layout-contents .container .wrapper,
.page-id-611 .layout-contents .container .wrapper,
.page-id-613 .layout-contents .container .wrapper {
  background: #ffffff;
  text-align: left;
  padding: 50px;
}
@media (min-width: 80rem) {
  .page-id-353 .layout-contents .container .wrapper,
  .page-id-358 .layout-contents .container .wrapper,
  .page-id-564 .layout-contents .container .wrapper,
  .page-id-611 .layout-contents .container .wrapper,
  .page-id-613 .layout-contents .container .wrapper {
    padding: 50px;
  }
}
.layout-cta {
  padding: 60px 0;
}
.layout-cta .text {
  background: #e30613;
  color: #ffffff;
  padding: 15px;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  font-size: 20px;
  font-size: 25px;
  font-weight: bold;
  border-radius: 3px;
  line-height: 1em;
}
.layout-cta .text a {
  display: inline-block;
  font-weight: 600;
  padding: 10px 20px;
  position: relative;
  width: auto;
  z-index: 1;
  background: #2b2e69;
  color: #ffffff;
  border-radius: 3px;
  text-transform: uppercase;
  font-size: 20px;
  cursor: pointer;
  -webkit-box-shadow: 0px 0px 9px -1px #2c2d82;
  -moz-box-shadow: 0px 0px 9px -1px #2c2d82;
  box-shadow: 0px 0px 9px -1px #2c2d82;
  margin-left: 20px;
  display: block;
  margin-right: 20px;
  margin-top: 10px;
}
.layout-cta .text a:hover {
  background: #ffffff;
  color: #e30613;
}
@media (min-width: 40rem) {
  .layout-cta .text a {
    display: inline-block;
    margin-right: 0;
    margin-top: 0;
  }
}
.layout-contact:before {
  display: none;
}
.layout-contact .contact-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
  line-height: 2em;
}
@media (min-width: 40rem) {
  .layout-contact .contact-content {
    width: 58%;
  }
}
.layout-contact .contact-content h2 {
  font-size: 2em;
  color: #2b2e69;
  font-family: 'Museo-Bold';
  margin-top: 60px;
}
.layout-contact .contact-locaties {
  display: inline-block;
  text-align: left;
  margin-top: -75px;
  margin-bottom: 40px;
  margin-right: 1%;
  font-size: 0.8em;
  background: #dea800;
  color: #ffffff;
  padding: 30px 60px 30px 60px;
  position: relative;
}
@media (min-width: 40rem) {
  .layout-contact .contact-locaties {
    z-index: 9999;
  }
}
@media (min-width: 40rem) {
  .layout-contact .contact-locaties {
    width: 40%;
    z-index: 9999;
  }
}
.layout-contact .contact-locaties strong {
  font-family: 'Museo-Bold';
  margin-top: 10px;
  display: block;
}
.layout-contact .contact-locaties p {
  margin: 0;
}
.layout-contact .wrapper {
  padding: 0 10px;
}
@media (min-width: 60rem) {
  .layout-contact .wrapper {
    padding: 0;
  }
}
.layout-contact .gray {
  background: #f7f8fa;
}
.layout-contact .wrapper.contactform {
  margin-top: 100px;
}
.layout-contact .map {
  height: 50vh;
  width: 100%;
  margin-top: -75px;
}
.layout-ctaapply,
.layout-contact {
  background: #ffffff;
  color: #000000;
  margin-bottom: 0;
  position: relative;
}
.layout-ctaapply:before,
.layout-contact:before {
  content: " ";
  position: absolute;
  top: -30px;
  left: 50%;
  z-index: 1;
  width: 60px;
  height: 60px;
  border-radius: 100%;
  box-shadow: 0 0 0 13px rgba(255, 255, 255, 0.53), 0 0 0 26px rgba(255, 255, 255, 0.38);
  background: #dea800 url(/web/20200112050419im_/https://www.sjinkiefoundation.nl/wp-content/themes/sjinkie%20foundation/images/arrow-down.png) 49% 49% no-repeat;
}
.layout-ctaapply .row,
.layout-contact .row {
  margin-bottom: 0;
}
.layout-ctaapply .gform_wrapper .top_label .gfield_label,
.layout-contact .gform_wrapper .top_label .gfield_label {
  display: none;
}
.layout-ctaapply .gform_wrapper .label .gfield_label,
.layout-contact .gform_wrapper .label .gfield_label {
  display: block;
}
.layout-ctaapply .gform_wrapper input,
.layout-contact .gform_wrapper input {
  background: none;
  border: none;
  border-bottom: 1px solid #bbbbbb;
}
.layout-ctaapply .gform_wrapper .gform_footer .button,
.layout-contact .gform_wrapper .gform_footer .button {
  display: inline-block;
  color: #ffffff;
  font-weight: 600;
  padding: 10px 20px;
  position: relative;
  width: auto;
  z-index: 1;
  background: #dea800;
  color: #000000;
  border-radius: 3px;
  text-transform: uppercase;
  font-size: 20px;
  cursor: pointer;
  -webkit-box-shadow: 0px 0px 9px -1px #2c2d82;
  -moz-box-shadow: 0px 0px 9px -1px #2c2d82;
  box-shadow: 0px 0px 9px -1px #2c2d82;
  border: none;
}
.layout-ctaapply .gform_wrapper .gform_footer .button:hover,
.layout-contact .gform_wrapper .gform_footer .button:hover {
  background: #2b2e69;
  color: #ffffff;
}
.layout-imageandtext {
  margin-top: -75px;
  position: relative;
  line-height: 1.9em;
}
.layout-imageandtext .image-and-text {
  padding: 60px 25px;
  background: #ffffff;
}
@media (min-width: 60rem) {
  .layout-imageandtext .image-and-text {
    padding: 60px 100px;
  }
}
.layout-imageandtext .text {
  padding-top: 50px;
  padding-top: 0;
  text-align: justify;
}
.layout-imageandtext .text ul {
  list-style: disc;
  padding-left: 20px;
}
.layout-imageandtext .text a {
  text-decoration: underline;
}
.layout-imageandtext .text a:hover {
  text-decoration: none;
}
.layout-imageandtext .image {
  padding-left: 0px;
}
@media (min-width: 60rem) {
  .layout-imageandtext .image {
    padding-left: 50px;
  }
}
.layout-imageandtext .image img {
  width: 100%;
}
.layout-imageandtext h1 {
  font-weight: 600;
  font-size: 2em;
  margin: 0;
  line-height: 1.3em;
  color: #2b2e69;
}
.layout-imageandtext h2 {
  text-transform: uppercase;
  font-weight: 400;
  margin: 0;
}
.layout-imageandtext p:first-of-type {
  font-weight: 600;
}
.layout-selector {
  z-index: 9;
  position: relative;
}
.layout-selector .blocks {
  grid-column-gap: 0;
  margin-top: -120px;
}
@media (min-width: 40rem) {
  .layout-selector .blocks {
    margin-top: -120px;
  }
}
@media (min-width: 60rem) {
  .layout-selector .blocks {
    margin-left: 200px;
    margin-top: -195px;
  }
}
@media (min-width: 80rem) {
  .layout-selector .blocks {
    margin-left: 400px;
  }
}
.layout-selector .blocks .block {
  background: #dea800;
  color: #ffffff;
  padding: 8px 50px;
  min-height: 170px;
  display: inline-block;
  border-right: 1px solid #efbd25;
  position: relative;
}
@media (min-width: 60rem) {
  .layout-selector .blocks .block {
    padding: 50px;
    min-height: 250px;
  }
}
@media (min-width: 80rem) {
  .layout-selector .blocks .block {
    float: left;
    max-width: 283px;
  }
}
.layout-selector .blocks .block:before {
  display: block;
  content: ' ';
  position: absolute;
  bottom: 40px;
  left: 50px;
  width: 15px;
  height: 10px;
  background: transparent url(/web/20200112050419im_/https://www.sjinkiefoundation.nl/wp-content/themes/sjinkie%20foundation/images/arrow-right-big.png) top left no-repeat;
  z-index: 999;
}
.layout-selector .blocks .block:hover {
  background: #c49915;
}
.layout-services {
  padding: 60px 0;
}
.home .layout-services {
  margin-top: -350px;
}
.layout-services .blocktitle {
  text-align: center;
  font-size: 2em;
  color: #2b2e69;
  font-weight: 600;
}
.layout-services ul {
  margin: 30px 0;
  grid-column-gap: 0;
}
.layout-services ul li {
  display: inline-block;
  margin: 0;
  width: 100%;
}
@media (min-width: 40rem) {
  .layout-services ul li {
    width: 50%;
    float: left;
  }
}
@media (min-width: 60rem) {
  .layout-services ul li {
    width: 25%;
    float: left;
  }
}
.layout-services ul li a {
  background-size: cover;
  margin-bottom: 0;
  display: block;
  float: left;
  min-height: 485px;
  width: 100%;
  font-size: 1.3em;
  color: #ffffff;
  padding: 337px 50px 78px 50px;
  border: 1px solid #ffffff;
  position: relative;
}
@media (min-width: 80rem) {
  .layout-services ul li a {
    font-size: 1.6em;
  }
}
.layout-services ul li a .title {
  z-index: 999;
  position: relative;
}
.layout-services ul li a:before {
  display: block;
  content: ' ';
  position: absolute;
  bottom: 40px;
  left: 50px;
  width: 15px;
  height: 10px;
  background: transparent url(/web/20200112050419im_/https://www.sjinkiefoundation.nl/wp-content/themes/sjinkie%20foundation/images/arrow-right-big.png) top left no-repeat;
  z-index: 999;
}
.layout-services ul li a:after {
  display: none;
  content: ' ';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #dea800;
  z-index: 0;
  background: linear-gradient(28deg, #dea800 20%, rgba(222, 168, 0, 0) 100%);
}
.layout-services ul li a:hover:after {
  display: block;
}
.layout-services .blocklink {
  text-align: center;
}
.layout-services .blocklink a {
  display: inline-block;
  font-weight: 600;
  padding: 10px 20px;
  position: relative;
  width: auto;
  z-index: 1;
  background: #2b2e69;
  color: #ffffff;
  border-radius: 3px;
  text-transform: uppercase;
  font-size: 20px;
  cursor: pointer;
  -webkit-box-shadow: 0px 0px 9px -1px #2c2d82;
  -moz-box-shadow: 0px 0px 9px -1px #2c2d82;
  box-shadow: 0px 0px 9px -1px #2c2d82;
}
.layout-services .blocklink a:hover {
  background: #dea800;
  color: #000000;
}
.layout-image .image {
  background-size: contain;
  background-position: center center;
  height: 500px;
  width: 100%;
  background-repeat: repeat-x;
}
.layout-news .container {
  max-width: 820px;
  margin: 0 auto;
}
.layout-news h2 {
  margin-bottom: 30px;
}
.layout-news .title {
  font-weight: bold;
}
.layout-news li {
  margin-bottom: 60px;
}
@media (min-width: 60rem) {
  .layout-news li {
    min-height: 150px;
  }
}
@media (min-width: 60rem) {
  .layout-news li img {
    position: absolute;
    max-width: 300px;
  }
}
.layout-news li .title-and-text {
  max-height: 125px;
  overflow: hidden;
}
@media (min-width: 60rem) {
  .layout-news li .title-and-text {
    padding-left: 315px;
    min-height: 125px;
  }
}
.layout-news li .more {
  float: right;
  font-weight: bold;
  color: #e30613;
}
.layout-news li .more:hover {
  color: #2b2e69;
  border-bottom: 2px solid #e30613;
}
.layout-emailsignup {
  margin-bottom: -200px;
  z-index: 9;
  position: relative;
}
.layout-emailsignup .image {
  background-size: cover;
  padding: 75px;
  color: #ffffff;
  font-size: 1.8em;
  line-height: 1em;
  font-weight: 600;
}
@media (min-width: 60rem) {
  .layout-emailsignup .image {
    width: 50%;
    display: table-cell;
  }
}
.layout-emailsignup .text {
  padding: 30px 50px;
  background: #ffffff;
  vertical-align: top;
}
@media (min-width: 60rem) {
  .layout-emailsignup .text {
    display: table-cell;
  }
}
.layout-emailsignup .text h3 {
  color: #2b2e69;
  font-size: 1.8em;
  margin: 0 0 20px 0;
  font-family: "Museo-Bold";
}
.layout-emailsignup .text .gform_wrapper .gform_body .gfield_label {
  display: none;
}
.layout-emailsignup .text .gform_wrapper .gform_body input {
  background: none;
  border: none;
  border-bottom: 1px solid #bbbbbb;
}
.layout-emailsignup .text .gform_wrapper .gform_footer .button {
  display: inline-block;
  font-weight: 600;
  padding: 10px 20px;
  position: relative;
  width: auto;
  z-index: 1;
  background: #2b2e69;
  color: #ffffff;
  border-radius: 3px;
  text-transform: uppercase;
  font-size: 20px;
  cursor: pointer;
  -webkit-box-shadow: 0px 0px 9px -1px #2c2d82;
  -moz-box-shadow: 0px 0px 9px -1px #2c2d82;
  box-shadow: 0px 0px 9px -1px #2c2d82;
  border: none;
}
.layout-emailsignup .text .gform_wrapper .gform_footer .button:hover {
  background: #dea800;
  color: #000000;
}
.layout-emailsignup .wrapper-small {
  max-width: 820px;
  margin: 0 auto;
  display: table;
}
.layout-badges {
  text-align: center;
  font-size: 2em;
  font-weight: 600;
  color: #2b2e69;
  padding-bottom: 60px;
  font-family: "Museo-Bold";
}
.layout-badges ul li {
  display: inline-block;
}
.post-type-archive-vacancy {
  background: #ffffff;
}
@media (min-width: 60rem) {
  .layout-vacancies .container {
    padding: 100px;
    max-width: 1020px;
  }
}
.layout-vacancies .filter {
  background: #f7f8fa;
  padding: 20px 10px 1px;
  margin-bottom: 60px;
  text-align: center;
}
@media (min-width: 60rem) {
  .layout-vacancies .filter {
    padding: 20px 60px 1px;
  }
}
.layout-vacancies .filter .filtertitle {
  font-weight: bold;
  margin-bottom: 10px;
}
.layout-vacancies .filter .facetwp-facet-vacancy_type,
.layout-vacancies .filter .facetwp-facet-vacancy_regio {
  display: inline-block;
  margin-bottom: 15px;
}
.layout-vacancies .filter .facetwp-facet-vacancy_type .facetwp-checkbox,
.layout-vacancies .filter .facetwp-facet-vacancy_regio .facetwp-checkbox {
  display: inline-block;
  background: #2b2e69;
  padding: 4px 20px;
  color: #ffffff;
  margin: 0 3px;
  margin-bottom: 10px;
  border-radius: 25px;
  border: 2px solid #2b2e69;
}
.layout-vacancies .filter .facetwp-facet-vacancy_type .facetwp-checkbox:hover,
.layout-vacancies .filter .facetwp-facet-vacancy_regio .facetwp-checkbox:hover {
  background: #dea800;
  border: 2px solid #dea800;
}
.layout-vacancies .filter .facetwp-facet-vacancy_type .facetwp-checkbox.checked,
.layout-vacancies .filter .facetwp-facet-vacancy_regio .facetwp-checkbox.checked {
  border: 2px solid #2b2e69;
  background: none;
  color: #000000;
}
.layout-vacancies .facetwp-template li a {
  display: block;
  position: relative;
  margin-bottom: 20px;
  min-height: 215px;
}
@media (min-width: 60rem) {
  .layout-vacancies .facetwp-template li a {
    margin-bottom: 60px;
  }
}
@media (min-width: 40rem) {
  .layout-vacancies .facetwp-template li a img {
    position: absolute;
    width: 380px;
  }
}
.layout-vacancies .facetwp-template li a .title-and-contents {
  max-height: 160px;
  overflow: hidden;
}
@media (min-width: 40rem) {
  .layout-vacancies .facetwp-template li a .title-and-contents {
    padding-left: 400px;
  }
}
.layout-vacancies .facetwp-template li a .title-and-contents .title {
  color: #2b2e69;
  font-size: 1.5em;
  line-height: 1.1em;
  margin-bottom: 20px;
}
.layout-vacancies .facetwp-template li a .more {
  padding-left: 400px;
  color: #dea800;
  font-weight: bold;
  margin-top: 10px;
}
.layout-vacancies .facetwp-pager {
  margin-bottom: 15px;
}
.layout-vacancieslatest {
  padding: 85px 0;
}
.home .layout-vacancieslatest {
  background: #ffffff;
  padding-top: 350px;
  margin-top: -350px;
}
.layout-vacancieslatest .blocktitle {
  color: #2b2e69;
  font-size: 2em;
  font-family: "Museo-Bold";
}
.layout-vacancieslatest ul {
  margin-top: 40px;
  margin-bottom: 40px;
}
.layout-vacancieslatest ul li {
  display: inline-block;
  width: 100%;
}
@media (min-width: 40rem) {
  .layout-vacancieslatest ul li {
    width: 30%;
    padding: 0 1%;
  }
}
.layout-vacancieslatest ul li a {
  display: block;
}
.layout-vacancieslatest ul li a .title-and-contents {
  height: 190px;
  overflow: hidden;
}
.layout-vacancieslatest ul li a .title {
  color: #2b2e69;
  font-size: 1.5em;
  margin-bottom: 20px;
  font-family: "Museo-Bold";
  margin-top: 20px;
}
.layout-vacancieslatest ul li a .contents {
  font-size: 0.8em;
}
.layout-vacancieslatest ul li a .more {
  color: #dea800;
  font-weight: bold;
  margin-top: 15px;
}
.layout-vacancieslatest .blocklink {
  text-align: center;
}
.layout-vacancieslatest .blocklink a {
  display: inline-block;
  font-weight: 600;
  padding: 10px 20px;
  position: relative;
  width: auto;
  z-index: 1;
  background: #2b2e69;
  color: #ffffff;
  border-radius: 3px;
  text-transform: uppercase;
  font-size: 20px;
  cursor: pointer;
  -webkit-box-shadow: 0px 0px 9px -1px #2c2d82;
  -moz-box-shadow: 0px 0px 9px -1px #2c2d82;
  box-shadow: 0px 0px 9px -1px #2c2d82;
}
.layout-vacancieslatest .blocklink a:hover {
  background: #dea800;
  color: #000000;
}
.layout-vacancieslatest .flickity-prev-next-button {
  position: absolute;
  top: -50px;
  right: 0;
  left: auto;
}
.layout-vacancieslatest .flickity-prev-next-button:hover {
  background: #dea800 !important;
}
.layout-vacancieslatest .flickity-prev-next-button.previous {
  right: 80px;
  left: auto;
  background: #2b2e69;
}
.layout-vacancieslatest .flickity-prev-next-button.previous svg {
  display: none;
}
.layout-vacancieslatest .flickity-prev-next-button.previous:after {
  content: " ";
  position: absolute;
  top: 18px;
  right: 15px;
  z-index: -1;
  width: 15px;
  height: 10px;
  background: transparent url(/web/20200112050419im_/https://www.sjinkiefoundation.nl/wp-content/themes/sjinkie%20foundation/images/arrow-left-big.png) top left no-repeat;
}
.layout-vacancieslatest .flickity-prev-next-button.previous:disabled {
  background: #ffffff !important;
  opacity: 1;
}
.layout-vacancieslatest .flickity-prev-next-button.previous:disabled:after {
  background: transparent url(/web/20200112050419im_/https://www.sjinkiefoundation.nl/wp-content/themes/sjinkie%20foundation/images/arrow-left-big-blue.png) top left no-repeat;
}
.layout-vacancieslatest .flickity-prev-next-button.next {
  background: #2b2e69;
}
.layout-vacancieslatest .flickity-prev-next-button.next svg {
  display: none;
}
.layout-vacancieslatest .flickity-prev-next-button.next:after {
  content: " ";
  position: absolute;
  top: 18px;
  right: 15px;
  z-index: -1;
  width: 15px;
  height: 10px;
  background: transparent url(/web/20200112050419im_/https://www.sjinkiefoundation.nl/wp-content/themes/sjinkie%20foundation/images/arrow-right-big.png) top left no-repeat;
}
.layout-footer {
  background: #2b2e69;
  padding: 60px 0 40px 0;
  position: relative;
}
.layout-footer .wrapper-small {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  z-index: 9;
}
.layout-footer .container .home {
  height: auto;
}
.layout-footer .container .home img {
  height: auto;
}
.layout-footer .text {
  display: inline-block;
  vertical-align: top;
}
@media (min-width: 60rem) {
  .layout-footer .text {
    width: 30%;
    margin-right: 3%;
  }
}
.layout-footer .text h3 {
  font-weight: 800;
  font-size: 1.4em;
}
.layout-footer .text ul.contact li {
  display: inline-block;
  width: 45%;
  float: left;
}
.layout-footer .text ul.contact li p {
  margin: 0;
}
.layout-footer .text ul.contact li a i {
  display: none;
}
.layout-footer .text a.button {
  margin-top: 30px;
  display: inline-block;
  font-weight: 600;
  padding: 10px 20px;
  position: relative;
  width: auto;
  z-index: 1;
  background: #2b2e69;
  color: #ffffff;
  border-radius: 3px;
  text-transform: uppercase;
  font-size: 20px;
  cursor: pointer;
  -webkit-box-shadow: 0px 0px 9px -1px #2c2d82;
  -moz-box-shadow: 0px 0px 9px -1px #2c2d82;
  box-shadow: 0px 0px 9px -1px #2c2d82;
}
.layout-footer .text a.button:hover {
  background: #dea800;
  color: #000000;
}
.layout-footer .copyright {
  margin-top: 40px;
  font-size: 14px;
  display: inline-block;
}
@media (min-width: 60rem) {
  .layout-footer .copyright {
    width: 66%;
  }
}
.layout-footer .social {
  display: inline-block;
}
@media (min-width: 60rem) {
  .layout-footer .social {
    width: 30%;
  }
}
.layout-footer .social ul li {
  display: inline-block;
  float: left;
  margin: 0 7px;
}
.layout-footer .social ul li a {
  display: block;
  border-radius: 50%;
  background: #ffffff;
  font-size: 2.2em;
  width: 45px;
  height: 45px;
  padding: 8px 9px 9px;
}
.layout-footer .social ul li a i {
  color: #dea800;
}
.layout-footer .social ul li a:hover {
  background: #2b2e69;
}
.layout-footer .social ul li.facebook a {
  padding: 15px;
}
.layout-footer,
.layout-footer a {
  color: #ffffff;
}
.layout-footer a:hover {
  text-decoration: underline;
}
/*! Flickity v2.0.2 */
.flickity-enabled {
  position: relative;
}
.flickity-enabled:focus {
  outline: 0;
}
.flickity-viewport {
  overflow: hidden;
  position: relative;
  height: 100%;
}
.flickity-slider {
  position: absolute;
  width: 100%;
  height: 100%;
}
.flickity-enabled.is-draggable {
  -webkit-tap-highlight-color: transparent;
  tap-highlight-color: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.flickity-enabled.is-draggable .flickity-viewport {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}
.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}
.flickity-prev-next-button {
  position: absolute;
  top: 50%;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: #fff;
  background: rgba(255, 255, 255, 0.75);
  cursor: pointer;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.flickity-prev-next-button:hover {
  background: #fff;
}
.flickity-prev-next-button:focus {
  outline: 0;
  box-shadow: 0 0 0 5px #0099ff;
}
.flickity-prev-next-button:active {
  opacity: .6;
}
.flickity-prev-next-button.previous {
  left: 10px;
}
.flickity-prev-next-button.next {
  right: 10px;
}
.flickity-rtl .flickity-prev-next-button.previous {
  left: auto;
  right: 10px;
}
.flickity-rtl .flickity-prev-next-button.next {
  right: auto;
  left: 10px;
}
.flickity-prev-next-button:disabled {
  opacity: .3;
  cursor: auto;
}
.flickity-prev-next-button svg {
  position: absolute;
  left: 20%;
  top: 20%;
  width: 60%;
  height: 60%;
}
.flickity-prev-next-button .arrow {
  fill: #333;
}
.flickity-page-dots {
  position: absolute;
  width: 100%;
  bottom: -25px;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  line-height: 1;
}
.flickity-rtl .flickity-page-dots {
  direction: rtl;
}
.flickity-page-dots .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 8px;
  background: #333;
  border-radius: 50%;
  opacity: .25;
  cursor: pointer;
}
.flickity-page-dots .dot.is-selected {
  opacity: 1;
}

/*
     FILE ARCHIVED ON 05:04:19 Jan 12, 2020 AND RETRIEVED FROM THE
     INTERNET ARCHIVE ON 13:04:34 Mar 05, 2026.
     JAVASCRIPT APPENDED BY WAYBACK MACHINE, COPYRIGHT INTERNET ARCHIVE.

     ALL OTHER CONTENT MAY ALSO BE PROTECTED BY COPYRIGHT (17 U.S.C.
     SECTION 108(a)(3)).
*/
/*
playback timings (ms):
  captures_list: 0.726
  exclusion.robots: 0.097
  exclusion.robots.policy: 0.085
  esindex: 0.014
  cdx.remote: 69.69
  LoadShardBlock: 153.382 (3)
  PetaboxLoader3.resolve: 1163.364 (3)
  PetaboxLoader3.datanode: 123.535 (4)
  load_resource: 1159.669
*/