@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,700&display=swap');
/* body and blanket */
body {
  padding-top: 70px;
}
@media (min-width: 60rem) {
  body {
    padding-top: 115px;
  }
}
#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;
}
.noscroll {
  overflow: hidden;
}
.noscroll #blanket {
  left: 0;
  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: 115px;
  position: relative;
}
.header .container .home {
  padding-top: 10.5px;
  padding-bottom: 10.5px;
  transition: all 0.25s ease;
  height: 115px;
  float: left;
}
@media (min-width: 60rem) {
  .header .container .home {
    padding-top: 31.5px;
  }
}
@media (min-width: 60rem) {
  .header .container .home {
    padding-bottom: 31.5px;
  }
}
.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 img {
  transition: all 0.25s ease;
  height: -25px;
  display: block;
  margin-bottom: 20px;
}
.scrolled .header .container .menu img {
  margin-bottom: 3px;
}
.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;
}
@media (min-width: 60rem) {
  .header .container .menu > li:hover ul {
    padding: 45px;
  }
}
body.scrolled .header .container {
  height: 115px;
}
body.scrolled .header .container .menu img {
  height: 65px;
}
@media (min-width: 60rem) {
  .header {
    display: block;
  }
}
.header-small {
  height: 70px;
  position: relative;
}
.header-small .home {
  padding-top: 15px;
  padding-bottom: 15px;
}
@media (min-width: 60rem) {
  .header-small .home {
    padding-top: 45px;
  }
}
@media (min-width: 60rem) {
  .header-small .home {
    padding-bottom: 45px;
  }
}
@media (min-width: 60rem) {
  .header-small {
    display: none;
  }
}
.header-small .toggle-label {
  position: absolute;
  right: 75px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  display: none;
}
@media (min-width: 60rem) {
  .header-small .toggle-label {
    display: none;
  }
}
.toggle {
  position: absolute;
  right: 0;
  top: 0;
  width: 70px;
  height: 70px;
  cursor: pointer;
}
.toggle:before,
.toggle:after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  top: 0;
  height: 100%;
  background-size: 100% auto;
  transition: all 0.25s ease;
}
.toggle:before {
  background-image: url('../images/core/menu-toggle-open.png');
  opacity: 1;
}
.toggle:after {
  background-image: url('../images/core/menu-toggle-closed.png');
  opacity: 0;
}
.small-menu-open .toggle:before {
  opacity: 0;
}
.small-menu-open .toggle:after {
  opacity: 1;
}
.menu-small .container .toggle {
  z-index: 99999;
}
.menu-small .container .box {
  position: absolute;
  width: 100%;
  right: 0;
  top: -150vh;
  height: 650px;
  transition: all 0.25s ease;
  bottom: 0;
  overflow-y: auto;
  opacity: 0;
}
@media (min-width: 60rem) {
  .menu-small .container .box {
    width: 50%;
  }
}
.small-menu-open .menu-small {
  display: block;
}
.small-menu-open .menu-small .container .box {
  top: 0;
  opacity: 1;
}
.menu-small .phonenumber {
  margin-top: 15px;
}
@media (min-width: 60rem) {
  .menu-small .phonenumber {
    margin-top: 45px;
  }
}
/*!
	* 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 {
  margin: 0 auto;
}
.layout-eyecandy .items {
  list-style: none;
  padding: 0;
  margin: 0;
}
.layout-eyecandy .items .item {
  position: relative;
  height: 100%;
  background-size: auto 100%;
  background-position: 50% 50%;
  width: 100%;
}
@media (min-width: 20rem) {
  .layout-eyecandy .items .item {
    background-size: cover;
  }
}
.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,
.layout-eyecandy .container {
  height: 375px;
}
@media (min-width: 60rem) {
  .layout-eyecandy,
  .layout-eyecandy ul,
  .layout-eyecandy .container {
    height: 375px;
  }
}
.home .layout-eyecandy,
.home .layout-eyecandy ul,
.home .layout-eyecandy .container {
  height: 575px;
}
@media (min-width: 60rem) {
  .home .layout-eyecandy,
  .home .layout-eyecandy ul,
  .home .layout-eyecandy .container {
    height: 575px;
  }
}
.layout-eyecandy .item {
  transition: opacity 1s ease;
  opacity: 0;
}
body.images-loaded .layout-eyecandy .item {
  opacity: 1;
}
/* images and text */
.layout-imageandtext .container {
  padding-left: 7.5px;
  padding-right: 7.5px;
  position: relative;
}
@media (min-width: 60rem) {
  .layout-imageandtext .container {
    padding-left: 22.5px;
  }
}
@media (min-width: 60rem) {
  .layout-imageandtext .container {
    padding-right: 22.5px;
  }
}
@media (min-width: 60rem) {
  .layout-imageandtext .container {
    display: flex;
    padding-left: 45px;
    padding-right: 45px;
  }
}
.layout-imageandtext .container .image {
  position: relative;
  margin-top: 100px;
}
@media (min-width: 60rem) {
  .layout-imageandtext .container .image {
    width: 50%;
    padding: 50px 0 55px 70px;
  }
}
.layout-imageandtext .container .image .linkblock {
  padding: 25px 50px 60px 25px;
  background: #df0613;
  color: #ffffff;
  position: absolute;
  bottom: 100px;
  left: 0;
  z-index: 9;
  text-decoration: none;
}
.layout-imageandtext .container .image .linkblock:before {
  content: "";
  display: block;
  background-image: url("../images/arrow-right-red.png");
  width: 23px;
  height: 18px;
  background-size: contain;
  margin-bottom: 10px;
}
.layout-imageandtext .container .image .background {
  background-position: 0 0;
  background-size: 100% auto;
  background-repeat: no-repeat;
  text-align: right;
  padding: 0 75px;
  padding-bottom: 125%;
  z-index: 1;
  background-position: 50% 50%;
  background-size: cover;
  width: 100%;
  box-shadow: 0px 0px 18px -1px rgba(0, 0, 0, 0.22);
  position: relative;
}
.layout-imageandtext .container .image .background .tagline {
  font-weight: 500;
  font-size: 2.3em;
  position: absolute;
  top: 50px;
  left: 50px;
  color: #ffffff;
  text-align: left;
  line-height: 1.5em;
  max-width: 145px;
}
.layout-imageandtext .container .text {
  position: relative;
  text-align: left;
  z-index: 2;
}
@media (min-width: 60rem) {
  .layout-imageandtext .container .text {
    display: inline-block;
    width: 50%;
    padding: 0 75px 0 0;
  }
}
/* projects */
.projects {
  list-style: none;
  padding: 0;
}
.projects .project .gallery .image {
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  padding-bottom: 100%;
}
/* imagewithtext */
.layout-quote .row .text {
  position: relative;
}
@media (min-width: 40rem) {
  .layout-quote .row img {
    width: 225px;
    height: auto;
    float: left;
    margin-right: 25px;
  }
}
@media (min-width: 1400px) {
  .layout-quote .row img {
    float: none;
    position: absolute;
    left: -230px;
    margin-right: 0;
  }
}
/* news */
@media (min-width: 60rem) {
  .layout-news .filter {
    display: flex;
  }
  .layout-news .filter > div:first-child {
    flex-grow: 1;
  }
}
.layout-news ul {
  margin-left: -15px;
  margin-right: -15px;
}
.layout-news ul:before,
.layout-news ul:after {
  content: " ";
  display: table;
}
.layout-news ul:after {
  clear: both;
}
@media (min-width: 60rem) {
  .layout-news ul {
    margin-left: -45px;
  }
}
@media (min-width: 60rem) {
  .layout-news ul {
    margin-right: -45px;
  }
}
@media (min-width: 60rem) {
  .layout-news ul {
    margin-left: -15px;
    margin-right: -15px;
  }
}
@media (min-width: 60rem) and (min-width: 60rem) {
  .layout-news ul {
    margin-left: -45px;
  }
}
@media (min-width: 60rem) and (min-width: 60rem) {
  .layout-news ul {
    margin-right: -45px;
  }
}
.layout-news ul > * {
  padding-left: 15px;
  padding-right: 15px;
  margin-bottom: 15px;
  float: left;
  width: 100%;
}
@media (min-width: 60rem) {
  .layout-news ul > * {
    padding-left: 45px;
  }
}
@media (min-width: 60rem) {
  .layout-news ul > * {
    padding-right: 45px;
  }
}
@media (min-width: 60rem) {
  .layout-news ul > * {
    margin-bottom: 45px;
  }
}
@media (min-width: 60rem) {
  .layout-news ul > * {
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 15px;
  }
}
@media (min-width: 60rem) and (min-width: 60rem) {
  .layout-news ul > * {
    padding-left: 45px;
  }
}
@media (min-width: 60rem) and (min-width: 60rem) {
  .layout-news ul > * {
    padding-right: 45px;
  }
}
@media (min-width: 60rem) and (min-width: 60rem) {
  .layout-news ul > * {
    margin-bottom: 45px;
  }
}
@media (min-width: 40rem) {
  .layout-news ul > * {
    width: 50%;
  }
}
@media (min-width: 60rem) {
  .layout-news ul > * {
    width: 33%;
  }
}
@media (min-width: 80rem) {
  .layout-news ul > * {
    width: 33%;
  }
}
.layout-news ul .bigger {
  width: 50%;
}
.layout-news ul .bigger .contents {
  height: 560px;
}
a.post {
  margin-bottom: 15px;
  display: block;
}
@media (min-width: 60rem) {
  a.post {
    margin-bottom: 45px;
  }
}
a.post .img {
  padding-bottom: 75%;
  background-size: cover;
}
a.post .contents {
  height: 415px;
  overflow: hidden;
}
.cols-2 a.post .img {
  padding-bottom: 37.5%;
}
/* latest news */
.layout-newslatest ul {
  margin-left: -15px;
  margin-right: -15px;
}
.layout-newslatest ul:before,
.layout-newslatest ul:after {
  content: " ";
  display: table;
}
.layout-newslatest ul:after {
  clear: both;
}
@media (min-width: 60rem) {
  .layout-newslatest ul {
    margin-left: -45px;
  }
}
@media (min-width: 60rem) {
  .layout-newslatest ul {
    margin-right: -45px;
  }
}
@media (min-width: 60rem) {
  .layout-newslatest ul {
    margin-left: -15px;
    margin-right: -15px;
  }
}
@media (min-width: 60rem) and (min-width: 60rem) {
  .layout-newslatest ul {
    margin-left: -45px;
  }
}
@media (min-width: 60rem) and (min-width: 60rem) {
  .layout-newslatest ul {
    margin-right: -45px;
  }
}
.layout-newslatest ul li.cols-1 {
  padding-left: 15px;
  padding-right: 15px;
  margin-bottom: 15px;
  float: left;
  width: 100%;
}
@media (min-width: 60rem) {
  .layout-newslatest ul li.cols-1 {
    padding-left: 45px;
  }
}
@media (min-width: 60rem) {
  .layout-newslatest ul li.cols-1 {
    padding-right: 45px;
  }
}
@media (min-width: 60rem) {
  .layout-newslatest ul li.cols-1 {
    margin-bottom: 45px;
  }
}
@media (min-width: 60rem) {
  .layout-newslatest ul li.cols-1 {
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 15px;
  }
}
@media (min-width: 60rem) and (min-width: 60rem) {
  .layout-newslatest ul li.cols-1 {
    padding-left: 45px;
  }
}
@media (min-width: 60rem) and (min-width: 60rem) {
  .layout-newslatest ul li.cols-1 {
    padding-right: 45px;
  }
}
@media (min-width: 60rem) and (min-width: 60rem) {
  .layout-newslatest ul li.cols-1 {
    margin-bottom: 45px;
  }
}
@media (min-width: 40rem) {
  .layout-newslatest ul li.cols-1 {
    width: 33.3%;
  }
}
@media (min-width: 60rem) {
  .layout-newslatest ul li.cols-1 {
    width: 33.3%;
  }
}
@media (min-width: 80rem) {
  .layout-newslatest ul li.cols-1 {
    width: 33.3%;
  }
}
.layout-newslatest ul li.cols-2 {
  padding-left: 15px;
  padding-right: 15px;
  margin-bottom: 15px;
  float: left;
  width: 100%;
}
@media (min-width: 60rem) {
  .layout-newslatest ul li.cols-2 {
    padding-left: 45px;
  }
}
@media (min-width: 60rem) {
  .layout-newslatest ul li.cols-2 {
    padding-right: 45px;
  }
}
@media (min-width: 60rem) {
  .layout-newslatest ul li.cols-2 {
    margin-bottom: 45px;
  }
}
@media (min-width: 60rem) {
  .layout-newslatest ul li.cols-2 {
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 15px;
  }
}
@media (min-width: 60rem) and (min-width: 60rem) {
  .layout-newslatest ul li.cols-2 {
    padding-left: 45px;
  }
}
@media (min-width: 60rem) and (min-width: 60rem) {
  .layout-newslatest ul li.cols-2 {
    padding-right: 45px;
  }
}
@media (min-width: 60rem) and (min-width: 60rem) {
  .layout-newslatest ul li.cols-2 {
    margin-bottom: 45px;
  }
}
@media (min-width: 40rem) {
  .layout-newslatest ul li.cols-2 {
    width: 66.59999999999999%;
  }
}
@media (min-width: 60rem) {
  .layout-newslatest ul li.cols-2 {
    width: 66.59999999999999%;
  }
}
@media (min-width: 80rem) {
  .layout-newslatest ul li.cols-2 {
    width: 66.59999999999999%;
  }
}
/* images collage */
.layout-imagescollage ul {
  list-style: none;
  padding: 0;
}
.layout-imagescollage ul li > div,
.layout-imagescollage ul li > a {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
  margin: 0 3px;
  display: block;
  padding-bottom: 60%;
}
.layout-imagescollage ul .col-md-3 > div {
  padding-bottom: calc(133.33% - 0px);
}
.layout-imagescollage ul .col-md-6 > div {
  padding-bottom: calc(66.66% - 20px);
}
.layout-imagescollage ul .col-md-9 > div {
  padding-bottom: calc(44.44% - 28px);
}
/* projects collage */
.layout-projectscollage .project {
  margin-bottom: 30px;
}
@media (min-width: 40rem) {
  .layout-projectscollage .col-md-3 .project {
    padding-bottom: calc(133.33% - 0px);
  }
  .layout-projectscollage .col-md-6 .project {
    padding-bottom: calc(66.66% - 20px);
  }
  .layout-projectscollage .col-md-9 .project {
    padding-bottom: calc(44.44% - 28px);
  }
}
.layout-footer:before,
.layout-footer:after {
  content: " ";
  display: table;
}
.layout-footer:after {
  clear: both;
}
@media (min-width: 60rem) {
  .layout-footer .container .blocks {
    margin-left: -15px;
    margin-right: -15px;
    display: flex;
  }
  .layout-footer .container .blocks .block {
    padding: 15px;
    flex: 0 1 3	0%;
  }
  .layout-footer .container .blocks .block:last-child {
    flex: 1 0 auto;
    text-align: right;
  }
}
@media (min-width: 60rem) and (min-width: 60rem) {
  .layout-footer .container .blocks {
    margin-left: -45px;
  }
}
@media (min-width: 60rem) and (min-width: 60rem) {
  .layout-footer .container .blocks {
    margin-right: -45px;
  }
}
@media (min-width: 60rem) and (min-width: 60rem) {
  .layout-footer .container .blocks .block {
    padding: 45px;
  }
}
.layout-footer .container .copyright-and-menu ul {
  margin: 0;
}
@media (min-width: 60rem) {
  .layout-footer .container .copyright-and-menu {
    margin-left: -15px;
    margin-right: -15px;
    display: flex;
  }
  .layout-footer .container .copyright-and-menu > * {
    padding: 15px;
    flex: 0 1 3	0%;
  }
  .layout-footer .container .copyright-and-menu > *:last-child {
    flex: 1 0 auto;
    text-align: right;
  }
}
@media (min-width: 60rem) and (min-width: 60rem) {
  .layout-footer .container .copyright-and-menu {
    margin-left: -45px;
  }
}
@media (min-width: 60rem) and (min-width: 60rem) {
  .layout-footer .container .copyright-and-menu {
    margin-right: -45px;
  }
}
@media (min-width: 60rem) and (min-width: 60rem) {
  .layout-footer .container .copyright-and-menu > * {
    padding: 45px;
  }
}
/* 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;
}
/* slick 1.8.1 */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}
.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}
.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before,
.slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}
.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir="rtl"] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
  display: none;
}
/* Slider */
.slick-loading .slick-list {
  background: #ffffff url('ajax-loader.gif') center center no-repeat;
}
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}
.slick-prev:hover,
.slick-next:hover,
.slick-prev:focus,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}
.slick-prev:hover:before,
.slick-next:hover:before,
.slick-prev:focus:before,
.slick-next:focus:before {
  opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}
.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  color: #ffffff;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-prev {
  left: -25px;
}
[dir="rtl"] .slick-prev {
  left: auto;
  right: -25px;
}
.slick-prev:before {
  content: "<";
}
[dir="rtl"] .slick-prev:before {
  content: ">";
}
.slick-next {
  right: -25px;
}
[dir="rtl"] .slick-next {
  left: -25px;
  right: auto;
}
.slick-next:before {
  content: ">";
}
[dir="rtl"] .slick-next:before {
  content: "<";
}
/* Dots */
.slick-dotted .slick-slider {
  margin-bottom: 30px;
}
.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}
.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  opacity: 1;
}
.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  text-align: center;
  color: #000000;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
  color: #000000;
  opacity: 0.75;
}
/* 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;
}
@media (min-width: 60rem) {
  .alignleft {
    padding-right: 45px;
  }
}
.alignright {
  padding-left: 15px;
  float: right;
}
@media (min-width: 60rem) {
  .alignright {
    padding-left: 45px;
  }
}
/* 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('../fonts/fontawesome-webfont.eot?v=4.4.0');
  src: url('../fonts/fontawesome-webfont.eot?#iefix&v=4.4.0') format('embedded-opentype'), url('../fonts/fontawesome-webfont.woff2?v=4.4.0') format('woff2'), url('../fonts/fontawesome-webfont.woff?v=4.4.0') format('woff'), url('../fonts/fontawesome-webfont.ttf?v=4.4.0') format('truetype'), url('../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";
}
@font-face {
  font-family: 'DinPro';
  src: url('/wp-content/themes/rooth/fonts/DINPro.otf') format('otf'), url('/wp-content/themes/rooth/fonts/DINPro.woff') format('woff');
}
@font-face {
  font-family: 'DinPro-Light';
  src: url('/wp-content/themes/rooth/fonts/DINPro-Light.otf') format('otf'), url('/wp-content/themes/rooth/fonts/DINPro-Light.woff') format('woff');
}
@font-face {
  font-family: 'DinPro-Bold';
  src: url('/wp-content/themes/rooth/fonts/DINPro-Bold.otf') format('otf'), url('/wp-content/themes/rooth/fonts/DINPro-Bold.woff') format('woff');
}
body {
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  line-height: 28px;
  color: #636363;
  font-family: serenity, sans-serif;
  font-weight: 300;
  font-style: normal;
}
h2 {
  line-height: 1.1em;
  font-size: 2.3em;
  font-weight: 600;
}
h2 strong {
  font-weight: 600;
}
/* breakpoints */
/* paddings */
/* grid	 */
.container {
  padding-left: 15px;
  padding-right: 15px;
  width: 100%;
  margin: 0 auto;
  max-width: 60rem;
}
@media (min-width: 60rem) {
  .container {
    padding-left: 45px;
  }
}
@media (min-width: 60rem) {
  .container {
    padding-right: 45px;
  }
}
@media (min-width: 60rem) {
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (min-width: 60rem) and (min-width: 60rem) {
  .container {
    padding-left: 45px;
  }
}
@media (min-width: 60rem) and (min-width: 60rem) {
  .container {
    padding-right: 45px;
  }
}
/* widths */
/* vars */
/* base */
/* color */
/* transitions */
/* header & footer */
/* layout settings */
/* container and burger breakpoint */
/* buttons and things */
ul.menu li {
  position: relative;
}
ul.menu li a {
  color: #636363;
  font-weight: 500;
  display: block;
  text-align: center;
  text-decoration: none;
  font-size: 1.2em;
  position: relative;
  padding-right: 15px;
}
ul.menu li a:after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 1px;
  height: 110%;
  background-size: contain;
}
.scrolled ul.menu li a:after {
  height: 90%;
}
ul.menu li a:hover {
  text-decoration: hover;
  color: #df0613;
}
/* layouts */
.layout-header {
  background: #ffffff;
  z-index: 999999999;
}
.scrolled .layout-header {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  background: #ffffff;
}
.layout-header .menu {
  right: 100px !important;
}
@media (min-width: 60rem) {
  .layout-header .menu li.portal {
    position: absolute;
    top: -150%;
    right: 0px;
  }
}
.layout-header .menu li.portal a {
  font-weight: 300;
  color: #ffffff;
  font-size: 1em;
}
.layout-header .menu li.portal a:hover {
  text-decoration: underline;
}
@media (min-width: 60rem) {
  .layout-header .menu li.portal a {
    background: #df0613;
    padding: 1px 5px;
    display: block;
    text-align: center;
  }
}
.layout-header .menu-small .container .box {
  background-color: #df0613;
  padding: 0 15px;
}
@media (min-width: 60rem) {
  .layout-header .menu-small .container .box {
    padding: 0 100px 25px 100px;
  }
}
.layout-header .menu-small .container .box ul.menu {
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid #ffffff;
}
.layout-header .menu-small .container .box ul.menu.desktop {
  display: none;
}
@media (min-width: 60rem) {
  .layout-header .menu-small .container .box ul.menu.desktop {
    display: block;
  }
}
.layout-header .menu-small .container .box ul.menu.desktop > li {
  display: inline-block;
  width: 49%;
  vertical-align: top;
  margin-top: 50px;
}
@media (min-width: 60rem) {
  .layout-header .menu-small .container .box ul.menu.desktop > li {
    width: 33%;
    margin-top: 90px;
  }
}
.layout-header .menu-small .container .box ul.menu.desktop > li a {
  color: #ffffff;
  text-align: left;
  font-weight: 200;
  margin-bottom: 30px;
  font-size: 1.5em;
}
.layout-header .menu-small .container .box ul.menu.desktop > li a:hover {
  text-decoration: underline;
}
.layout-header .menu-small .container .box ul.menu.desktop > li > a {
  display: none;
}
.layout-header .menu-small .container .box ul.menu.desktop > li .sub-menu a {
  font-family: 'Open Sans';
  margin-bottom: 0;
  margin: 5px 0;
  font-size: 1.1em;
  font-weight: 400;
}
.layout-header .menu-small .container .box ul.menu.desktop > li .sub-menu .sub-menu a {
  font-weight: 200;
  font-size: 0.8em;
  margin: 0;
}
.layout-header .menu-small .container .box ul.menu.desktop > li:last-child ul {
  list-style: disc;
  color: #ffffff;
}
.layout-header .menu-small .container .box ul.menu.mobile {
  display: block;
  padding-top: 40px;
}
@media (min-width: 60rem) {
  .layout-header .menu-small .container .box ul.menu.mobile {
    display: none;
  }
}
.layout-header .menu-small .container .box ul.menu.mobile > li a {
  color: #ffffff;
  text-align: left;
  font-weight: 200;
  margin-bottom: 15px;
  font-size: 1.5em;
}
.layout-header .menu-small .container .box ul.menu.mobile > li a:hover {
  text-decoration: underline;
}
.layout-header .menu-small .container .box .menu-footer {
  color: #ffffff;
}
.layout-header .menu-small .container .box .menu-footer a {
  background: #ffffff;
  display: inline-block;
  padding: 4px 40px 4px 10px;
  color: #df0613;
  position: relative;
  font-weight: bold;
  text-decoration: none;
  border: 2px solid #ffffff;
}
.layout-header .menu-small .container .box .menu-footer a:after {
  content: "";
  display: block;
  background-image: url("../images/arrow-right.png");
  width: 23px;
  height: 18px;
  background-size: contain;
  margin-bottom: 10px;
  position: absolute;
  top: 5px;
  right: 10px;
}
.layout-header .menu-small .container .box .menu-footer a:hover {
  text-decoration: none;
  background: #df0613;
  color: #ffffff;
}
.layout-header .menu-small .container .box .menu-footer a:hover:after {
  background-image: url("../images/arrow-right-red.png");
}
.layout-header .menu-small .container .box .menu-footer .address {
  width: 49%;
  display: inline-block;
}
@media (min-width: 60rem) {
  .layout-header .menu-small .container .box .menu-footer .address {
    width: 33%;
  }
}
.layout-header .header-small .home img {
  max-width: 131px;
  height: auto;
}
.layout-header .header-small .toggle-label {
  color: #0e357a;
  font-weight: bold;
}
.home .layout-eyecandy .slogan {
  display: block;
}
.layout-eyecandy {
  position: relative;
}
.layout-eyecandy:after {
  content: "";
  position: absolute;
  bottom: 15px;
  left: 15px;
  display: block;
  background-position: 0% 100%;
  width: 991px;
  height: 30px;
  background-size: 100% auto;
  max-width: calc(100% - 30px);
  background-repeat: no-repeat;
}
@media (min-width: 60rem) {
  .layout-eyecandy:after {
    height: 30px;
    bottom: 30px;
    left: 30px;
    max-width: calc(100% - 60px);
  }
}
.layout-eyecandy:after {
  bottom: auto;
  left: auto;
  right: 15px;
  top: 15px;
  background-position: 0% 0%;
}
@media (min-width: 60rem) {
  .layout-eyecandy:after {
    right: 30px;
    top: 30px;
  }
}
.layout-eyecandy .slogan {
  content: "";
  display: none;
  background-image: url("../images/slogan.png");
  width: 200px;
  height: 48px;
  background-size: cover;
  position: absolute;
  top: 120px;
  left: 15px;
  z-index: 99;
  top: auto;
  bottom: 28px;
}
@media (min-width: 40rem) {
  .layout-eyecandy .slogan {
    left: 45px;
  }
}
@media (min-width: 60rem) {
  .layout-eyecandy .slogan {
    top: 90px;
    width: 382px;
    height: 90px;
    top: auto;
    bottom: 10px;
  }
}
.layout-eyecandy ul li {
  position: relative;
}
.layout-eyecandy ul li:after {
  position: absolute;
  left: 0;
  width: 90%;
  bottom: 0;
  height: 30px;
  background: #ffffff;
  content: '';
  height: 115px;
}
@media (min-width: 40rem) {
  .layout-eyecandy ul li:after {
    width: 50%;
  }
}
@media (min-width: 60rem) {
  .layout-eyecandy ul li:after {
    height: 115px;
  }
}
@media (min-width: 60rem) {
  .layout-eyecandy ul li {
    max-width: 1200px;
    left: 50%;
    transform: translateX(-50%);
  }
}
.layout-eyecandy ul li .container {
  position: relative;
}
.layout-eyecandy ul li .container:after {
  content: "";
  position: absolute;
  bottom: 15px;
  left: 15px;
  display: block;
  background-position: 0% 100%;
  width: 991px;
  height: 30px;
  background-size: 100% auto;
  max-width: calc(100% - 30px);
  background-repeat: no-repeat;
}
@media (min-width: 60rem) {
  .layout-eyecandy ul li .container:after {
    height: 30px;
    bottom: 30px;
    left: 30px;
    max-width: calc(100% - 60px);
  }
}
.layout-eyecandy ul li .container .text {
  position: absolute;
  left: 0%;
  bottom: 0%;
  transform: translateX(0%) translateY(0%);
  max-width: 500px;
  background: #df0613;
  color: #ffffff;
  padding: 30px 50px;
}
@media (min-width: 60rem) {
  .layout-eyecandy ul li .container .text {
    bottom: auto;
    transform: translateX(0%) translateY(-50%);
    left: 50%;
    top: 50%;
    bottom: 0;
    transform: none;
    left: 0;
    top: auto;
  }
}
.layout-eyecandy ul li .container .text h3 {
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.layout-eyecandy ul li .container .text h2 {
  font-size: 3em;
  line-height: 1em;
  margin-top: 0;
  font-weight: 500;
}
@media (max-width: 60rem) {
  .layout-eyecandy ul li .container .text h2 {
    margin-bottom: 15px;
  }
}
.layout-eyecandy ul li .container .text a {
  background: none;
  display: inline-block;
  padding: 4px 40px 4px 10px;
  color: #ffffff;
  position: relative;
  text-decoration: none;
}
.layout-eyecandy ul li .container .text a:after {
  content: "";
  display: block;
  background-image: url("../images/arrow-right-red.png");
  width: 23px;
  height: 18px;
  background-size: contain;
  margin-bottom: 10px;
  position: absolute;
  top: 8px;
  right: 10px;
}
.layout-eyecandy ul li .container .text a:hover {
  text-decoration: none;
  background: #ffffff;
  color: #df0613;
}
.layout-eyecandy ul li .container .text a:hover:after {
  background-image: url("../images/arrow-right.png");
}
.layout-eyecandy ul li:after {
  display: none;
}
.home .layout-eyecandy ul li:after {
  display: block;
}
.layout-imagesandtexts {
  margin-top: 15px;
}
@media (min-width: 60rem) {
  .layout-imagesandtexts {
    margin-top: 45px;
  }
}
.layout-imagesandtexts .container .image {
  position: relative;
  overflow: hidden;
}
.layout-imagesandtexts .container .image:after {
  content: "";
  position: absolute;
  bottom: 15px;
  left: 15px;
  display: block;
  background-position: 0% 100%;
  width: 495.5px;
  height: 30px;
  background-size: 100% auto;
  max-width: calc(100% - 30px);
  background-repeat: no-repeat;
}
@media (min-width: 60rem) {
  .layout-imagesandtexts .container .image:after {
    height: 30px;
    bottom: 30px;
    left: 30px;
    max-width: calc(100% - 60px);
  }
}
.layout-imagesandtexts .container .image:after {
  left: 15px;
  background-position: 0 100%;
  bottom: 15px;
}
@media (min-width: 60rem) {
  .layout-imagesandtexts .container .image:after {
    left: 30px;
    bottom: 30px;
  }
}
.layout-imagesandtexts .container .text {
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 7.5px;
  padding-bottom: 7.5px;
  color: #ffffff;
}
@media (min-width: 60rem) {
  .layout-imagesandtexts .container .text {
    padding-left: 45px;
  }
}
@media (min-width: 60rem) {
  .layout-imagesandtexts .container .text {
    padding-right: 45px;
  }
}
@media (min-width: 60rem) {
  .layout-imagesandtexts .container .text {
    padding-top: 22.5px;
  }
}
@media (min-width: 60rem) {
  .layout-imagesandtexts .container .text {
    padding-bottom: 22.5px;
  }
}
.layout-imagesandtexts .container .text.deepsapphire {
  background-color: #0e357a;
}
.layout-imagesandtexts .container .text.cerulean {
  background-color: #009fe3;
}
.layout-imagesandtexts .container .text.yellowsea {
  background-color: #f9ab05;
}
.layout-imagesandtexts .container .text h2 {
  display: inline-block;
  color: #636363;
  background: none;
  font-weight: 600;
}
.layout-imagesandtexts .container .text a {
  display: inline-block;
  background: #df0613;
  color: #ffffff;
  padding: 12px 15px;
  font-size: 20px;
  line-height: 1em;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  text-shadow: none;
  font-size: 16px;
  background: none;
  border: 2px solid #ffffff;
}
.layout-imagesandtexts .container .text a:hover {
  text-decoration: none;
  background: #000000;
}
@media (min-width: 60rem) {
  .layout-imagesandtexts .container .text a {
    font-size: 20px;
  }
}
.layout-imagesandtexts .container .text a:hover {
  background: #ffffff;
}
.layout-imagesandtexts .container .text.deepsapphire a:hover {
  color: #0e357a;
}
.layout-imagesandtexts .container .text.cerulean a:hover {
  color: #009fe3;
}
.layout-imagesandtexts .container .text.yellowsea a:hover {
  color: #f9ab05;
}
.layout-projectsfeatured .container {
  position: relative;
}
.layout-projectsfeatured .title-and-text {
  height: 180px;
  overflow: hidden;
}
.layout-projectsfeatured .text {
  background: #df0613;
  width: 100%;
  color: #ffffff;
  margin-top: 50px;
  padding: 10px 20px 20px;
}
@media (min-width: 60rem) {
  .layout-projectsfeatured .text {
    width: 75%;
    padding: 40px 250px 60px 60px;
  }
}
.layout-projectsfeatured .text p {
  overflow: hidden;
}
.layout-projectsfeatured a {
  display: inline-block;
  color: #ffffff;
  padding: 5px 35px 5px 0px;
  line-height: 1em;
  font-weight: 700;
  text-decoration: none;
  position: relative;
}
.layout-projectsfeatured a:after {
  content: "";
  position: absolute;
  right: 0;
  top: 3px;
  background-image: url("../images/arrow-right-red.png");
  width: 23px;
  height: 18px;
  background-size: contain;
}
.layout-projectsfeatured a:hover {
  text-decoration: underline;
  color: #000000;
}
.layout-projectsfeatured .image {
  width: 100%;
  z-index: 9;
  height: 320px;
  background-size: cover;
}
@media (min-width: 60rem) {
  .layout-projectsfeatured .image {
    position: absolute;
    right: 0;
    top: -50px;
    width: 45%;
  }
}
.layout-quote {
  z-index: 9;
  position: relative;
}
.layout-quote .quote {
  background: #ffffff;
  box-shadow: 0px 0px 18px -1px rgba(0, 0, 0, 0.75);
}
@media (min-width: 60rem) {
  .layout-quote .quote {
    display: flex;
    margin: 60px 0 6px 60px;
  }
}
.layout-quote .quote .name {
  width: 50%;
  padding: 45px 19px;
  background: #df0613;
  color: #ffffff;
  display: inline-block;
  vertical-align: top;
  font-size: 600;
}
@media (min-width: 60rem) {
  .layout-quote .quote .name {
    width: 20%;
    padding: 45px 25px;
  }
}
.layout-quote .quote .name span {
  font-size: 0.8em;
}
.layout-quote .quote .image {
  width: 50%;
  background-position: 50% 50%;
  background-size: cover;
  padding: 67px 25px;
  display: inline-block;
  vertical-align: top;
}
@media (min-width: 60rem) {
  .layout-quote .quote .image {
    width: 30%;
    padding: 0;
  }
}
.layout-quote .quote .text {
  width: 100%;
  padding: 45px 25px;
  text-align: center;
}
@media (min-width: 60rem) {
  .layout-quote .quote .text {
    width: 50%;
  }
}
.layout-quote .quote .text blockquote {
  position: relative;
}
.layout-quote .quote .text blockquote:before {
  content: "";
  display: block;
  background-image: url("../images/quote.png");
  width: 24px;
  height: 18px;
  background-size: contain;
  position: absolute;
  top: -20px;
  left: 0;
}
.layout-quote .quote .text blockquote:after {
  content: "";
  display: block;
  height: 1px;
  background: #df0613;
  width: 100px;
  position: absolute;
  bottom: -10px;
  right: 0px;
}
.layout-news,
.layout-newslatest {
  padding: 60px 0;
}
@media (min-width: 60rem) {
  .layout-news,
  .layout-newslatest {
    padding: 60px;
  }
}
.layout-news .container .intro,
.layout-newslatest .container .intro {
  position: relative;
  margin-bottom: 50px;
}
@media (min-width: 60rem) {
  .layout-news .container .intro,
  .layout-newslatest .container .intro {
    padding-right: 200px;
  }
}
@media (min-width: 60rem) {
  .layout-news ul,
  .layout-newslatest ul {
    display: flex;
  }
}
.layout-news ul li,
.layout-newslatest ul li {
  width: 100%;
  display: block;
  padding: 7px;
}
@media (min-width: 60rem) {
  .layout-news ul li,
  .layout-newslatest ul li {
    width: 33.33333333%;
  }
}
.layout-news ul li a,
.layout-newslatest ul li a {
  background-size: cover;
  display: block;
  padding: 40px;
  text-decoration: none;
  height: 325px;
  color: #ffffff;
  position: relative;
}
.layout-news ul li a .contents,
.layout-newslatest ul li a .contents {
  height: 100px;
  position: absolute;
  left: 10px;
  padding-right: 10px;
  bottom: 30px;
}
.layout-news ul li a .contents .title,
.layout-newslatest ul li a .contents .title {
  font-size: 1.8em;
  font-weight: 500;
}
.layout-news ul li a .more,
.layout-newslatest ul li a .more {
  display: none;
}
.layout-news ul li a.link-to-all,
.layout-newslatest ul li a.link-to-all {
  background: #df0613;
  color: #ffffff;
}
.layout-news ul li a.link-to-all div,
.layout-newslatest ul li a.link-to-all div {
  font-size: 2em;
  line-height: 1em;
  font-weight: 500;
}
.layout-news ul li a.link-to-all span,
.layout-newslatest ul li a.link-to-all span {
  display: inline-block;
  color: #ffffff;
  padding: 5px 35px 5px 0px;
  line-height: 1em;
  font-weight: 700;
  text-decoration: none;
  position: relative;
  display: block;
  margin-top: 170px;
}
.layout-news ul li a.link-to-all span:after,
.layout-newslatest ul li a.link-to-all span:after {
  content: "";
  position: absolute;
  right: 0;
  top: 3px;
  background-image: url("../images/arrow-right-red.png");
  width: 23px;
  height: 18px;
  background-size: contain;
}
.layout-news ul li a.link-to-all span:hover,
.layout-newslatest ul li a.link-to-all span:hover {
  text-decoration: underline;
  color: #000000;
}
.gform_wrapper {
  padding: 60px;
  background: #ffffff;
  color: #636363;
  width: 70%;
  box-shadow: 0px 0px 18px -1px rgba(0, 0, 0, 0.75);
}
.gform_wrapper a {
  color: #df0613;
}
.gform_wrapper .gform_heading h3.gform_title {
  font-size: 2em;
  margin-bottom: 30px;
}
.gform_wrapper .gform_body .top_label .gfield_label {
  display: none;
}
.gform_wrapper .gform_body input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]),
.gform_wrapper .gform_body textarea {
  border: none;
  border-bottom: 1px solid #e4e4e4;
}
.gform_wrapper .gform_body textarea {
  height: 50px !important;
}
.gform_wrapper .gform_footer .button {
  display: inline-block;
  background: #df0613;
  color: #ffffff;
  padding: 12px 15px;
  font-size: 20px;
  line-height: 1em;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  text-shadow: none;
}
.gform_wrapper .gform_footer .button:hover {
  text-decoration: none;
  background: #000000;
}
.layout-contents {
  padding: 60px 0 30px 0;
}
.layout-contents .content ul {
  padding-left: 20px;
  list-style: disc;
}
.layout-contents .content a {
  color: #df0613;
}
.layout-text {
  padding: 0 0 60px;
}
@media (min-width: 60rem) {
  .layout-text .wrap {
    display: flex;
    gap: 25px;
  }
}
.layout-text .wrap a {
  color: #df0613;
}
.layout-text .wrap ul {
  padding-left: 20px;
  list-style: disc;
}
@media (min-width: 60rem) {
  .layout-text .wrap div {
    width: 50%;
  }
}
.fr-window {
  z-index: 9999999999999999;
}
.fr-overlay {
  z-index: 999999999;
}
.layout-imagescollage ul {
  display: block;
}
.layout-imagescollage ul li {
  display: inline-block;
}
.layout-imagescollage ul .col-md-3 {
  width: 33%;
}
.layout-imagescollage ul .col-md-6 {
  width: 50%;
}
.layout-imagescollage ul .col-md-9 {
  width: 66%;
}
.layout-servicescollage {
  padding: 60px 0;
  background: #fbfbfb;
  margin: -81px 0 -283px;
  padding: 160px 0 305px;
}
.layout-servicescollage .container .services li {
  width: 25%;
  display: inline-block;
}
.layout-servicescollage .container .services li a {
  display: block;
  color: #636363;
  text-decoration: none;
  padding: 30px 30px 30px 0;
}
.layout-servicescollage .container .services li a .title-and-text {
  height: 100px;
  overflow: hidden;
  margin-top: 20px;
}
.layout-servicescollage .container .services li a .title-and-text .title {
  font-size: 1.7em;
  line-height: 1.3em;
  font-weight: bold;
}
.layout-servicescollage .container .services li a .more {
  display: none;
}
.layout-projects .container .projects li {
  margin-bottom: 30px;
}
.layout-projects .container .projects li a {
  display: block;
  position: relative;
  color: #636363;
  text-decoration: none;
}
@media (min-width: 60rem) {
  .layout-projects .container .projects li a .row {
    display: flex;
  }
}
.layout-projects .container .projects li a .image {
  width: 100%;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  height: 300px;
}
@media (min-width: 60rem) {
  .layout-projects .container .projects li a .image {
    width: 50%;
    height: auto;
  }
}
.layout-projects .container .projects li a .title-and-text {
  border: 2px solid #e4e4e4;
  padding: 20px 20px 130px 20px;
}
@media (min-width: 60rem) {
  .layout-projects .container .projects li a .title-and-text {
    width: 50%;
    padding: 60px 60px 150px 60px;
  }
}
.layout-projects .container .projects li a .title-and-text .title {
  font-size: 2em;
  font-weight: bold;
  line-height: 1.3em;
  margin-bottom: 20px;
}
.layout-projects .container .projects li a .title-and-text .wrapper {
  height: 140px;
  overflow: hidden;
}
.layout-projects .container .projects li a .more {
  padding: 15px 30px 30px 15px;
  background: #df0613;
  color: #ffffff;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 9;
  text-decoration: none;
}
@media (min-width: 60rem) {
  .layout-projects .container .projects li a .more {
    padding: 25px 50px 35px 25px;
  }
}
.layout-projects .container .projects li a .more:before {
  content: "";
  display: block;
  background-image: url("../images/arrow-right-red.png");
  width: 23px;
  height: 18px;
  background-size: contain;
  margin-bottom: 10px;
}
.layout-services ul,
.layout-serviceslider ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.layout-services ul li,
.layout-serviceslider ul li {
  width: 100%;
}
@media (min-width: 40rem) {
  .layout-services ul li,
  .layout-serviceslider ul li {
    width: 50%;
    flex: 0 1 50%;
  }
}
@media (min-width: 60rem) {
  .layout-services ul li,
  .layout-serviceslider ul li {
    width: 25%;
    flex: 0 1 25%;
  }
}
.layout-services ul .service,
.layout-serviceslider ul .service {
  display: block;
  padding: 25px;
  text-decoration: none;
  color: #636363;
  background: #ffffff;
  border: 2px solid #e4e4e4;
}
.layout-services ul .service .icon,
.layout-serviceslider ul .service .icon {
  margin: 20px 0 25px 0;
}
.layout-services ul .service .icon .hover,
.layout-serviceslider ul .service .icon .hover {
  display: none;
}
.layout-services ul .service .title-and-text,
.layout-serviceslider ul .service .title-and-text {
  height: 240px;
  overflow: hidden;
  margin-bottom: 10px;
}
.layout-services ul .service .title-and-text .title,
.layout-serviceslider ul .service .title-and-text .title {
  font-size: 1.6em;
  font-weight: 500;
  margin-bottom: 10px;
  line-height: 1.3em;
}
.layout-services ul .service .title-and-text .text,
.layout-serviceslider ul .service .title-and-text .text {
  line-height: 23px;
}
.layout-services ul .service .more span,
.layout-serviceslider ul .service .more span {
  display: none;
}
.layout-services ul .service .more:before,
.layout-serviceslider ul .service .more:before {
  content: "";
  display: block;
  background-image: url("../images/arrow-right-gray.png");
  width: 23px;
  height: 18px;
  background-size: contain;
  margin-bottom: 10px;
}
.layout-services ul .service:hover,
.layout-serviceslider ul .service:hover {
  background: #df0613;
  color: #ffffff;
  border-color: #df0613;
}
.layout-services ul .service:hover .more:before,
.layout-serviceslider ul .service:hover .more:before {
  background-image: url("../images/arrow-right-red.png");
}
.layout-services ul .service:hover .icon .default,
.layout-serviceslider ul .service:hover .icon .default {
  display: none;
}
.layout-services ul .service:hover .icon .hover,
.layout-serviceslider ul .service:hover .icon .hover {
  display: inline-block;
}
.layout-serviceslider {
  background: #fbfbfb;
  padding: 200px 0 100px 0;
  margin-top: -150px;
}
.layout-serviceslider .container .intro {
  padding-right: 0;
  position: relative;
  margin-bottom: 50px;
}
@media (min-width: 60rem) {
  .layout-serviceslider .container .intro {
    padding-right: 200px;
  }
}
.layout-serviceslider .container .intro .link-to-all-projects {
  padding: 25px 50px 60px 25px;
  background: #df0613;
  color: #ffffff;
  display: block;
  z-index: 9;
  text-decoration: none;
}
@media (min-width: 60rem) {
  .layout-serviceslider .container .intro .link-to-all-projects {
    display: inline-block;
    position: absolute;
    top: 0;
    right: 0;
  }
}
.layout-serviceslider .container .intro .link-to-all-projects:before {
  content: "";
  display: block;
  background-image: url("../images/arrow-right-red.png");
  width: 23px;
  height: 18px;
  background-size: contain;
  margin-bottom: 10px;
}
.layout-serviceslider .container .services {
  list-style: none;
  padding: 0;
  overflow: hidden;
  outline: none;
}
.layout-serviceslider .container .services .flickity-viewport {
  width: 100%;
}
.layout-serviceslider .container .services .flickity-viewport li .service {
  width: 100%;
  border-left: 0px solid #e4e4e4;
}
.layout-serviceslider .container .services .flickity-viewport li:first-child a {
  border-left: 2px solid #e4e4e4;
}
.layout-serviceslider .container .services .flickity-button {
  display: none;
}
.layout-serviceslider .container .services .flickity-page-dots {
  padding: 0;
  list-style: none;
  text-align: center;
  margin-top: 25px;
}
.layout-serviceslider .container .services .flickity-page-dots li {
  width: 50px;
  height: 3px;
  background: #e4e4e4;
  display: inline-block;
  cursor: pointer;
}
.layout-serviceslider .container .services .flickity-page-dots li.is-selected {
  background: #df0613;
  height: 4px;
}
.layout-serviceslider .container .services .flickity-page-dots li:hover {
  background: #df0613;
  height: 4px;
}
@media (min-width: 60rem) {
  .layout-services ul li a.service,
  .layout-serviceslider ul li a.service {
    border-right: 0px;
  }
}
@media (min-width: 60rem) {
  .layout-services ul li:nth-of-type(4) a,
  .layout-serviceslider ul li:nth-of-type(4) a,
  .layout-services ul li:last-child a,
  .layout-serviceslider ul li:last-child a {
    border-right: 2px solid #e4e4e4;
  }
}
@media (min-width: 60rem) {
  .layout-services ul li:nth-of-type(5) a,
  .layout-serviceslider ul li:nth-of-type(5) a,
  .layout-services ul li:nth-of-type(6) a,
  .layout-serviceslider ul li:nth-of-type(6) a,
  .layout-services ul li:nth-of-type(7) a,
  .layout-serviceslider ul li:nth-of-type(7) a,
  .layout-services ul li:last-child a,
  .layout-serviceslider ul li:last-child a {
    border-top: 0px;
  }
}
.layout-introservice,
.layout-introprojects,
.layout-introcontact {
  color: #ffffff;
  position: relative;
  padding-bottom: 60px;
}
.layout-introservice .headerimage,
.layout-introprojects .headerimage,
.layout-introcontact .headerimage {
  position: absolute;
  top: 0;
  left: 0;
  left: 50%;
  transform: translateX(-50%);
  background-position: 50% 50%;
  background-size: cover;
  width: 100%;
  max-width: 1200px;
  height: 375px;
  z-index: -1;
}
.layout-introservice .title,
.layout-introprojects .title,
.layout-introcontact .title {
  font-size: 2em;
  padding-top: 100px;
  text-transform: uppercase;
}
@media (min-width: 60rem) {
  .layout-introservice .title,
  .layout-introprojects .title,
  .layout-introcontact .title {
    font-size: 4em;
  }
}
.layout-introservice .title h1,
.layout-introprojects .title h1,
.layout-introcontact .title h1 {
  font-weight: normal;
  z-index: 999999;
  position: relative;
}
.layout-introservice .wrap,
.layout-introprojects .wrap,
.layout-introcontact .wrap {
  position: relative;
}
.layout-introservice .text,
.layout-introprojects .text,
.layout-introcontact .text {
  background: #df0613;
  padding: 20px;
  color: #ffffff;
  margin-top: 50px;
}
@media (min-width: 60rem) {
  .layout-introservice .text,
  .layout-introprojects .text,
  .layout-introcontact .text {
    width: 75%;
    padding: 40px 250px 60px 60px;
  }
}
.layout-introservice .text h2,
.layout-introprojects .text h2,
.layout-introcontact .text h2 {
  display: inline-block;
  color: #636363;
  background: none;
  font-weight: 600;
  max-width: 70%;
  color: #ffffff;
  margin: 0;
}
.layout-introservice a,
.layout-introprojects a,
.layout-introcontact a {
  display: inline-block;
  color: #ffffff;
  padding: 5px 35px 5px 0px;
  line-height: 1em;
  font-weight: 700;
  text-decoration: none;
  position: relative;
}
.layout-introservice a:after,
.layout-introprojects a:after,
.layout-introcontact a:after {
  content: "";
  position: absolute;
  right: 0;
  top: 3px;
  background-image: url("../images/arrow-right-red.png");
  width: 23px;
  height: 18px;
  background-size: contain;
}
.layout-introservice a:hover,
.layout-introprojects a:hover,
.layout-introcontact a:hover {
  text-decoration: underline;
  color: #000000;
}
.layout-introservice .image,
.layout-introprojects .image,
.layout-introcontact .image {
  z-index: 9;
  height: 270px;
  background-size: cover;
}
@media (min-width: 60rem) {
  .layout-introservice .image,
  .layout-introprojects .image,
  .layout-introcontact .image {
    width: 50%;
    position: absolute;
    right: 0;
    top: 200px;
    border: 3px solid #ffffff;
  }
}
.layout-imageandtext .text h2 {
  display: inline-block;
  color: #636363;
  background: none;
  font-weight: 600;
  max-width: 70%;
  margin-bottom: 15px;
}
.layout-imageandtext .text a {
  display: inline-block;
  color: #df0613;
  padding: 5px 35px 5px 0px;
  line-height: 1em;
  font-weight: 500;
  text-decoration: none;
  position: relative;
}
.layout-imageandtext .text a:after {
  content: "";
  position: absolute;
  right: 0;
  top: 3px;
  background-image: url("../images/arrow-right.png");
  width: 23px;
  height: 18px;
  background-size: contain;
}
.layout-imageandtext .text a:hover {
  text-decoration: undee;
  color: #000000;
}
.layout-imageandtext .text .menu {
  text-align: center;
}
.layout-imageandtext .text .menu li {
  display: inline-block;
  width: 49%;
  font-size: .8em;
}
.layout-imageandtext .text .menu li a {
  margin: 30px 0px;
  color: #0e357a;
}
.layout-imageandtext .text .menu li a:hover {
  text-decoration: none;
  color: #009fe3;
}
.layout-imageandtext .text .menu li a:after {
  display: none;
}
@media (min-width: 60rem) {
  .layout-imageandtext .text .menu li {
    width: 30%;
    font-size: 1em;
  }
}
.gform_wrapper {
  width: 100%;
}
.gform_wrapper .top_label .gfield_label,
.gform_wrapper .gform_wrapper legend.gfield_label {
  font-weight: 600;
}
.gform_wrapper .gform_footer .button {
  display: inline-block;
  background: #df0613;
  color: #ffffff;
  padding: 12px 15px;
  font-size: 20px;
  line-height: 1em;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  text-shadow: none;
  border: none;
}
.gform_wrapper .gform_footer .button:hover {
  text-decoration: none;
  background: #000000;
}
.layout-footer {
  color: #ffffff;
  background: #191919;
  padding: 60px 0;
  margin-top: 60px !important;
  margin-top: 15px;
}
.layout-footer .container {
  position: relative;
}
.layout-footer .gform_wrapper {
  padding: 60px;
  background: #ffffff;
  color: #636363;
  box-shadow: 0px 0px 18px -1px rgba(0, 0, 0, 0.75);
  margin-top: -100px;
  width: 100%;
}
@media (min-width: 60rem) {
  .layout-footer .gform_wrapper {
    position: absolute;
    width: 70%;
    right: 0;
    top: -400px;
    margin-top: 0;
  }
}
.layout-footer .gform_wrapper a {
  color: #df0613;
}
.layout-footer .gform_wrapper .gform_heading h3.gform_title {
  font-size: 2em;
  margin-bottom: 30px;
}
.layout-footer .gform_wrapper .gform_body .top_label .gfield_label {
  display: none;
}
.layout-footer .gform_wrapper .gform_body input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]),
.layout-footer .gform_wrapper .gform_body textarea {
  border: none;
  border-bottom: 1px solid #e4e4e4;
}
.layout-footer .gform_wrapper .gform_body textarea {
  height: 50px;
}
.layout-footer .gform_wrapper .gform_footer .button {
  display: inline-block;
  background: #df0613;
  color: #ffffff;
  padding: 12px 15px;
  font-size: 20px;
  line-height: 1em;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  text-shadow: none;
}
.layout-footer .gform_wrapper .gform_footer .button:hover {
  text-decoration: none;
  background: #000000;
}
@media (min-width: 60rem) {
  .layout-footer {
    margin-top: 45px;
  }
}
.layout-footer .footermenu {
  margin-top: 49px;
}
.layout-footer .copyright-and-menu > * {
  padding-top: 15px;
}
@media (min-width: 60rem) {
  .layout-footer .copyright-and-menu > * {
    padding-top: 45px;
  }
}
@media (min-width: 60rem) {
  .layout-footer .copyright-and-menu {
    padding-top: 0px;
  }
  .layout-footer .copyright-and-menu > * {
    padding-top: 0px;
  }
}
@media (min-width: 60rem) and (min-width: 60rem) {
  .layout-footer .copyright-and-menu {
    padding-top: 0px;
  }
}
@media (min-width: 60rem) and (min-width: 60rem) {
  .layout-footer .copyright-and-menu > * {
    padding-top: 0px;
  }
}
.layout-footer a {
  color: #ffffff;
  text-decoration: none;
}
.layout-footer a i {
  display: none;
}
.layout-footer a:hover {
  text-decoration: underline;
  color: #df0613;
}
@media (min-width: 60rem) {
  .layout-footer .blocks .block {
    padding-top: 150px !important;
  }
}
.layout-footer .blocks .block:first-child {
  padding-top: 15px !important;
}
@media (min-width: 60rem) {
  .layout-footer .blocks .block:first-child {
    padding-top: 45px;
  }
}
@media (min-width: 60rem) {
  .layout-footer .blocks .block {
    padding-top: 0px;
  }
}
@media (min-width: 60rem) and (min-width: 60rem) {
  .layout-footer .blocks .block {
    padding-top: 0px;
  }
}
.layout-footer .blocks .block:last-child {
  text-align: left !important;
}
.layout-footer .blocks .block:last-child img {
  max-width: 200px;
}
.layout-footer .blocks .block em {
  font-weight: 400;
  font-size: 1.5em;
}
@media (min-width: 60rem) {
  .layout-footer .blocks .block.block-nr-1,
  .layout-footer .blocks .block.block-nr-2 {
    padding-left: 0;
    padding-right: 90px;
  }
}
.layout-footer .blocks .block .socials li {
  padding-left: 1.3em;
  display: inline-block;
  font-size: 30px;
  background: #df0613;
}
.layout-footer .blocks .block .socials li a {
  display: block;
  text-indent: -9999px;
  padding: 8px 0px 8px 11px;
}
.layout-footer .blocks .block .socials li a:before {
  content: "\f099";
  font-family: FontAwesome;
  display: inline-block;
  margin-left: -1.3em;
  width: 1.3em;
  text-indent: 9999px;
}
.layout-footer .blocks .block .socials li:hover a {
  color: #000000;
}
.layout-footer .blocks .block .socials li.facebook a:before {
  content: "\f230";
}
.layout-footer .blocks .block .socials li.instagram a:before {
  content: "\f16d";
}
.layout-footer .blocks .block .socials li.linkedin a:before {
  content: "\f08c";
}
.layout-footer .home {
  margin-bottom: 20px;
  display: block;
}
@media (min-width: 60rem) {
  .layout-footer .home {
    margin-bottom: 65px;
  }
}
.slick-prev,
.slick-next {
  background: url(../images/core/arrow.svg);
  background-size: 100% 100%;
  width: 25px;
  height: 25px;
  color: transparent;
  line-height: 50px;
}
.slick-prev:before,
.slick-next:before {
  display: none;
}
.slick-prev:hover,
.slick-next:hover {
  opacity: .6;
  background: url(../images/core/arrow.svg);
}
.slick-prev {
  transform: rotate(-180deg);
  left: 15px;
  z-index: 1;
  margin-top: -12.5px;
}
.slick-next {
  right: 15px;
}
@media (min-width: 60rem) {
  .slick-prev {
    left: 30px;
    margin-top: -25px;
  }
  .slick-next {
    right: 30px;
  }
  .slick-prev,
  .slick-next {
    width: 50px;
    height: 50px;
  }
}
