@charset "UTF-8";
/* @group ALGEMEEN */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
html,
body {
  box-sizing: border-box;
  height: 100%;
  -webkit-font-smoothing: antialiased;
}
*,
*:before,
*:after {
  box-sizing: inherit;
}
body {
  font-family: alwyn-new-web, sans-serif;
  font-size: 18px;
  line-height: 1.4em;
  color: #1c1e2a;
  font-weight: 300;
}
h1,
h2,
h3,
h4,
.h1,
.h2,
.h3,
.h4 {
  font-family: alwyn-new-web, sans-serif;
  line-height: 1em;
  margin: 0 0 5px;
  font-weight: 700;
}
h1 a,
h2 a,
h3 a,
h4 a,
.h1 a,
.h2 a,
.h3 a,
.h4 a {
  color: inherit;
}
h1,
.h1 {
  font-size: 32px;
  color: #1c1e2a;
}
h2,
.h2 {
  font-size: 25px;
  line-height: 1.3em;
  color: #1c1e2a;
}
h3,
.h3 {
  font-size: 20px;
  line-height: 1.3em;
}
.t-white {
  color: #fff;
}
.t-blue {
  color: #1c1e2a;
}
.t-upper {
  text-transform: uppercase;
}
ul,
ol,
li {
  margin: 0;
  padding: 0;
  list-style: none;
}
textarea,
input[type="text"],
input[type="button"],
input[type="submit"] {
  -webkit-appearance: none;
  border-radius: 0;
}
@media (max-width: 600px) {
  body {
    font-size: 16px;
    line-height: 1.6em;
  }
}
/* @end */
/* @group default links */
a:link,
a:active,
a:visited {
  outline: none;
  color: #e4190f;
}
a:hover {
  text-decoration: none;
}
a:hover,
a:focus {
  color: #7a0822;
}
a:active,
a:focus,
*:focus {
  outline: none !important;
}
.noclick {
  cursor: default;
}
img {
  max-width: 100%;
}
.container {
  position: relative;
}
.containerxx {
  background: rgba(75, 125, 88, 0.2);
}
/* @end */
/* @group BUTTONS */
button,
a.button {
  display: inline-block;
  height: 36px;
  line-height: 1;
  white-space: nowrap;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 8px 24px 0 20px;
  color: #1c1e2a;
  border: 2px solid #e4190f;
  border-right: none;
  background: none;
  position: relative;
}
button:before,
a.button:before {
  width: 100%;
  height: 36px;
  display: block;
  content: "";
  position: absolute;
  top: -2px;
  right: -14px;
  background: url(../img/button-red.svg) center right no-repeat;
  background-size: contain;
}
button.t-white,
a.button.t-white {
  color: #fff;
}
button.b-white,
a.button.b-white {
  color: #fff;
  border-color: #fff;
}
button.b-white:before,
a.button.b-white:before {
  background-image: url(../img/button-white.svg);
}
button.big,
a.button.big {
  font-size: 22px;
  height: 50px;
  line-height: 50px;
}
button:hover,
a.button:hover {
  border-color: #1c1e2a;
  color: #e4190f;
}
button:hover:before,
a.button:hover:before {
  background-image: url(../img/button-dark.svg);
}
#colorbox button,
#colorbox a.button {
  padding: 0;
}
#colorbox button:before,
#colorbox a.button:before {
  display: none;
}
.button.cta-fixed {
  display: none;
  opacity: 0;
  position: fixed;
  top: 130px;
  right: 30px;
  z-index: 500;
  transition: all 0.6s ease-in-out 0s;
  transition-property: top, opacity;
  transform-origin: top left;
  -webkit-transform: translateX(100%) rotate(90deg);
  -ms-transform: translateX(100%) rotate(90deg);
  transform: translateX(100%) rotate(90deg);
  color: #fff;
}
.button.cta-fixed.dark {
  color: #1c1e2a;
}
@media (max-width: 767px) {
  .button.cta-fixed {
    top: 70px !;
    right: 10px;
  }
}
.tpl-home .button.cta-fixed {
  display: block;
}
.scrolled .button.cta-fixed {
  opacity: 1;
  top: 100px;
}
/* @end */
/* @group CIRCLE-SPINNER */
.spinner {
  width: 176px;
  height: 176px;
  border-radius: 50%;
  position: relative;
}
.spinner:before,
.spinner:after {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: url(../img/circle-outer.png) center center no-repeat;
  background-size: contain;
}
.spinner:before {
  -webkit-animation: spinner-inner 10s infinite;
  animation: spinner-inner 10s infinite;
  -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.spinner:after {
  background-image: url(../img/circle-inner.png);
  -webkit-animation: spinner-inner 7s infinite;
  animation: spinner-inner 7s infinite;
  -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
@-webkit-keyframes spinner-inner {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  25% {
    -webkit-transform: rotate(160deg);
    transform: rotate(160deg);
  }
  75% {
    -webkit-transform: rotate(300deg);
    transform: rotate(300deg);
  }
  90% {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
@keyframes spinner-inner {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  25% {
    -webkit-transform: rotate(160deg);
    transform: rotate(160deg);
  }
  75% {
    -webkit-transform: rotate(300deg);
    transform: rotate(300deg);
  }
  90% {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
/* @end */
/* @group PB-LOGO */
.pb-logo {
  display: block;
  width: 30px;
  height: 50px;
  background: url(../img/pb-logo.png) center top no-repeat;
  background-size: contain;
}
/* @end */
/* @group SITE HEADER */
.site-wrapper {
  overflow: hidden;
}
body {
  padding-top: 0;
}
.site-header {
  width: 100%;
  transition: all 0.3s ease-in-out;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 900;
}
.site-header .container {
  height: 100px;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.site-header .pb-logo {
  position: absolute;
  top: 40px;
  left: 130px;
}
.site-header .nav-std {
  position: absolute;
  top: 40px;
  right: 70px;
}
.site-header .mainnav {
  float: left;
  position: relative;
}
.site-header .mainnav li {
  float: left;
  margin-right: 15px;
  padding-right: 15px;
  border-right: 1px solid #985d39;
}
.site-header .mainnav li:last-child {
  border: none;
  margin: 0;
  padding: 0;
}
.site-header .mainnav li a {
  display: block;
  font-family: alwyn-new-web, sans-serif;
  color: #1c1e2a;
  font-size: 18px;
  line-height: 1;
  font-weight: 500;
  white-space: nowrap;
  text-transform: uppercase;
  padding: 8px 16px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease-in-out;
}
.site-header .mainnav li a:hover {
  background: #e0c8bc;
}
.site-header .mainnav li.active > a {
  color: #1c1e2a;
}
.site-header .mainnav li:hover ul {
  display: block;
}
.site-header .mainnav ul {
  display: none;
  width: 1064px;
  position: absolute;
  top: 50px;
  left: -100px;
  padding-left: 85px;
  background: #fff;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.2);
}
.site-header .mainnav ul li {
  margin: 0;
}
.site-header .mainnav ul a {
  padding: 0 15px;
  font-weight: 300;
  font-size: 18px;
  line-height: 40px;
  padding-bottom: 5px;
}
.mod-languages-std {
  position: absolute;
  top: 55px;
  right: 190px;
  transition: top 0.2s ease-out;
}
.mod-languages-std ul {
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
}
.mod-languages-std li {
  margin: 0;
  float: left;
  border-left: 1px solid #fff;
}
.mod-languages-std li:first-child {
  border: none !important;
}
.mod-languages-std li.lang-active a {
  color: #e4190f;
  font-weight: bold;
}
.mod-languages-std img {
  border: none;
}
.mod-languages-std a {
  display: block;
  text-decoration: none;
  font-size: 18px;
  line-height: 1;
  padding: 0 7px;
  color: #fff;
}
.mod-languages-std a:hover {
  color: #e4190f !important;
}
.scrolled .mod-languages-std li {
  border-left: 1px solid #1c1e2a;
}
.scrolled .mod-languages-std a {
  color: #1c1e2a;
}
.scrolled .site-header {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  margin-top: -30px;
}
.scrolled .nav-icon:after,
.scrolled .nav-icon:before,
.scrolled .nav-icon div {
  background-color: #7a0822;
}
@media (max-width: 1480px) {
  .site-header .pb-logo {
    left: 90px;
  }
  .site-header .mod-languages-std {
    right: 155px;
  }
  .site-header .nav-icon {
    right: 90px;
  }
}
@media (max-width: 1280px) {
  .site-header .pb-logo {
    left: 70px;
  }
  .site-header .mod-languages-std {
    right: 135px;
  }
  .site-header .nav-icon {
    right: 70px;
  }
}
@media (max-width: 991px) {
  body {
    padding-top: 0 !important;
  }
  .site-header .container {
    height: 60px !important;
    position: relative;
  }
  .site-header .pb-logo {
    width: 24px;
    height: 40px;
    top: 10px;
    left: 60px;
  }
  .site-header .mod-languages-std {
    top: 20px;
    right: 125px;
  }
  .site-header .nav-icon {
    top: 15px;
    right: 60px;
    display: block;
  }
  .scrolledbanner .site-header {
    background: #fff;
    margin-top: 0;
  }
}
@media (max-width: 767px) {
  .site-header .pb-logo {
    left: 25px;
  }
  .site-header .mod-languages-std {
    right: 90px;
  }
  .site-header .nav-icon {
    right: 25px;
  }
}
/* @end */
/* @group MOBILE-NAV */
.nav-icon {
  display: block;
  width: 36px;
  cursor: pointer;
  position: absolute;
  top: 50px;
  right: 130px;
}
.nav-icon:after,
.nav-icon:before,
.nav-icon div {
  background-color: #fff;
  content: '';
  display: block;
  height: 3px;
  margin: 5px 0;
  transition: all 0.3s ease-in-out;
}
.nav-icon.open:before {
  transform: translateY(8px) rotate(135deg);
  -moz-transform: translateY(8px) rotate(135deg);
  -webkit-transform: translateY(8px) rotate(135deg);
}
.nav-icon.open:after {
  transform: translateY(-8px) rotate(-135deg);
  -moz-transform: translateY(-8px) rotate(-135deg);
  -webkit-transform: translateY(-8px) rotate(-135deg);
}
.nav-icon.open div {
  -moz-transform: scale(0);
  -webkit-transform: scale(0);
  transform: scale(0);
}
.mobile-nav {
  width: 100%;
  height: 100%;
  padding: 0;
  background: #1c1e2a;
  color: #fff;
  overflow: hidden;
  position: fixed;
  top: -100%;
  left: 0;
  z-index: 800;
  overflow-y: scroll;
  /* has to be scroll, not auto */
  -webkit-overflow-scrolling: touch;
  transition: all 0.6s ease 0s;
}
.mobile-nav .container {
  z-index: 200;
  font-size: 18px;
  padding-top: 90px;
  padding-bottom: 10px;
}
.mobile-nav .mainnav li {
  margin-bottom: 12px;
}
.mobile-nav .mainnav li a {
  display: block;
  font-family: alwyn-new-web, sans-serif;
  color: #fff;
  font-size: 26px;
  line-height: 30px;
  font-weight: 700;
  text-align: center;
  transition: all 0.2s ease-in-out;
}
.mobile-nav .mainnav li a:hover {
  color: #e4190f;
}
.mobile-nav .mainnav > li:last-child {
  margin-bottom: 0;
}
.mobile-nav .mainnav ul {
  display: block;
  padding: 10px 0 0;
}
.mobile-nav .mainnav ul.show-subnav {
  display: block;
}
.mobile-nav .mainnav ul li {
  margin-bottom: 10px;
}
.mobile-nav .mainnav ul li:last-child {
  margin-bottom: 0;
}
.mobile-nav .mainnav ul li a {
  color: #fff;
  font-size: 20px;
  line-height: 24px;
  text-transform: none;
  font-weight: 300;
}
.shownav .mobile-nav {
  top: 0;
}
/* @end */
/* @group BIGSPIN */
.bigspin {
  width: 2546px;
  height: 1800px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}
.bigspin .c {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-position: center center;
  background-size: contain;
}
.bigspin .c:before,
.bigspin .c:after,
.bigspin .c .inner,
.bigspin .c .inner:before,
.bigspin .c .inner:after {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-position: center center;
  background-size: contain;
  will-change: transform;
}
.bigspin .center {
  background-image: url('../img/bigspin/lg/center.png');
}
.bigspin .center:before {
  background-image: url('../img/bigspin/svg/Laag-18.svg');
}
.bigspin .logo {
  background-image: url('../img/bigspin/lg/logo.png');
}
.bigspin .circles-1:before {
  background-image: url('../img/bigspin/lg/circle-1.png');
}
.bigspin .circles-1:after {
  background-image: url('../img/bigspin/lg/circle-1a.png');
}
.bigspin .circles-2:before {
  background-image: url('../img/bigspin/svg/Laag-5.svg');
}
.bigspin .circles-2:after {
  background-image: url('../img/bigspin/svg/Laag-5.svg');
}
.bigspin .circles-4:before {
  background-image: url('../img/bigspin/lg/circle-4.png');
}
.bigspin .circles-4:after {
  background-image: url('../img/bigspin/lg/circle-4a.png');
}
.bigspin .circles-4 .inner:before {
  background-image: url('../img/bigspin/lg/circle-4b.png');
}
.bigspin .circles-5:before {
  background-image: url('../img/bigspin/lg/circle-5.png');
}
.bigspin .circles-5:after {
  background-image: url('../img/bigspin/lg/circle-5a.png');
}
.bigspin .circles-5 .inner:before {
  background-image: url('../img/bigspin/lg/circle-5b.png');
}
.bigspin .circles-5 .inner:after {
  background-image: url('../img/bigspin/lg/circle-5b.png');
}
.bigspin.spinmearound .center:before {
  -webkit-animation: bigspin1 40s ease-in-out infinite;
  animation: bigspin1 40s ease-in-out infinite;
}
.bigspin.spinmearound .circles-1:before {
  -webkit-animation: rtcw 25s ease-in-out infinite;
  animation: rtcw 25s ease-in-out infinite;
}
.bigspin.spinmearound .circles-1:after {
  -webkit-animation: rtcw 25s ease-in-out infinite;
  animation: rtcw 25s ease-in-out infinite;
}
.bigspin.spinmearound .circles-2:before {
  -webkit-animation: rtcc 35s linear infinite;
  animation: rtcc 35s linear infinite;
}
.bigspin.spinmearound .circles-2:after {
  -webkit-animation: rtcc 35s ease-in-out infinite;
  animation: rtcc 35s ease-in-out infinite;
}
.bigspin.spinmearound .circles-3:before {
  -webkit-animation: rtcw 28s linear infinite;
  animation: rtcw 28s linear infinite;
}
.bigspin.spinmearound .circles-3:after {
  -webkit-animation: bigspin2 12s ease-in-out infinite;
  animation: bigspin2 12s ease-in-out infinite;
}
.bigspin.spinmearound .circles-3 .inner:before {
  -webkit-animation: rtcc 28s linear infinite;
  animation: rtcc 28s linear infinite;
}
.bigspin.spinmearound .circles-3 .inner:after {
  -webkit-animation: rtcw 15s linear infinite;
  animation: rtcw 15s linear infinite;
}
.bigspin.spinmearound .circles-4:before {
  -webkit-animation: rtcw 28s linear infinite;
  animation: rtcw 28s linear infinite;
}
.bigspin.spinmearound .circles-4:after {
  -webkit-animation: bigspin2 20s ease-in-out infinite;
  animation: bigspin2 20s ease-in-out infinite;
}
.bigspin.spinmearound .circles-4 .inner:before {
  -webkit-animation: rtcc 28s linear infinite;
  animation: rtcc 28s linear infinite;
}
.bigspin.spinmearound .circles-5:before {
  -webkit-animation: rtcw 28s linear infinite;
  animation: rtcw 28s linear infinite;
}
.bigspin.spinmearound .circles-5:after {
  -webkit-animation: rtcc 20s ease-in-out infinite;
  animation: rtcc 20s ease-in-out infinite;
}
.bigspin.spinmearound .circles-5 .inner:before {
  -webkit-animation: bigspin2 20s ease-in-out infinite;
  animation: bigspin2 20s ease-in-out infinite;
}
.bigspin.spinmearound .circles-5 .inner:after {
  -webkit-animation: bigspin2 28s ease-in-out infinite;
  animation: bigspin2 28s ease-in-out infinite;
}
.bigspin.paused .center:before,
.bigspin.paused .circles-1:before,
.bigspin.paused .circles-2:before,
.bigspin.paused .circles-3:before,
.bigspin.paused .circles-4:before,
.bigspin.paused .circles-5:before,
.bigspin.paused .center:after,
.bigspin.paused .circles-1:after,
.bigspin.paused .circles-2:after,
.bigspin.paused .circles-3:after,
.bigspin.paused .circles-4:after,
.bigspin.paused .circles-5:after {
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
}
.bigspin.paused .center .inner:before,
.bigspin.paused .circles-1 .inner:before,
.bigspin.paused .circles-2 .inner:before,
.bigspin.paused .circles-3 .inner:before,
.bigspin.paused .circles-4 .inner:before,
.bigspin.paused .circles-5 .inner:before,
.bigspin.paused .center .inner:after,
.bigspin.paused .circles-1 .inner:after,
.bigspin.paused .circles-2 .inner:after,
.bigspin.paused .circles-3 .inner:after,
.bigspin.paused .circles-4 .inner:after,
.bigspin.paused .circles-5 .inner:after {
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
}
/* @end */
/* @group PAGE-BANNER-HOME */
.page-banner-home {
  background: #1c1e2a;
  position: relative;
  overflow: hidden;
}
.page-banner-home .container {
  height: 800px;
}
.page-banner-home .bgmain {
  width: 100%;
  height: 100%;
  background-position: center center;
  background-size: cover;
  opacity: 0.1;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
}
.page-banner-home .bigspin-toggle {
  display: none;
  position: absolute;
  bottom: 40px;
  right: 40px;
  z-index: 600;
}
.page-banner-home .slick-cases-wrap {
  width: 325px;
  height: 325px;
  border-radius: 50%;
  overflow: hidden;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 400;
  transition: all 0.4s ease-in-out 0s;
  transform: translate(-50%, -50%) scale(1);
  opacity: 0;
}
.page-banner-home .slick-cases-wrap a {
  pointer-events: none;
}
.page-banner-home .slick-cases-wrap.action {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}
.page-banner-home .slick-cases-wrap.action a {
  pointer-events: auto;
}
.page-banner-home .slick-cases .item {
  width: 325px;
  height: 325px;
  color: #000;
  font-size: 0;
  text-align: center;
  position: relative;
}
.page-banner-home .slick-cases .item .inside {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-size: cover;
  background-position: center center;
  color: #fff;
}
.page-banner-home .slick-cases .item .inside i {
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 50px;
  transform: translate(-50%, -50%);
}
.page-banner-home .slick-cases .item .inside:hover {
  color: #7a0822;
}
.page-banner-home .info-box {
  display: block;
  position: absolute;
  bottom: 20%;
  left: 130px;
  z-index: 600;
  color: #fff;
  text-transform: uppercase;
}
.page-banner-home .info-box span {
  display: block;
}
.page-banner-home .info-box .title {
  font-size: 16px;
  font-weight: bold;
  padding-bottom: 10px;
  margin-bottom: 10px;
  position: relative;
}
.page-banner-home .info-box .title:before {
  display: block;
  content: "";
  width: 220px;
  height: 2px;
  background: #e4190f;
  position: absolute;
  bottom: 0;
  left: 0;
}
.page-banner-home .info-box .title:after {
  display: block;
  content: "";
  width: 80px;
  height: 2px;
  background: #e4190f;
  position: absolute;
  bottom: 0;
  left: 219px;
  transform: rotate(-45deg);
  transform-origin: bottom left;
}
.page-banner-home .info-box .subtitle {
  font-size: 20px;
  width: 160px;
}
.page-banner-home .cases-box {
  position: absolute;
  top: 25%;
  right: 130px;
  z-index: 600;
  color: #fff;
}
.page-banner-home .cases-box .slick-cases-toggle {
  display: block;
  font-size: 40px;
  line-height: 1;
  font-weight: bold;
  text-transform: uppercase;
  color: inherit;
  position: relative;
  padding-bottom: 15px;
}
.page-banner-home .cases-box .slick-cases-toggle:before {
  display: block;
  content: "";
  width: 220px;
  height: 2px;
  background: #e4190f;
  position: absolute;
  bottom: 0;
  right: 0;
}
.page-banner-home .cases-box .slick-cases-toggle:after {
  display: block;
  content: "";
  width: 80px;
  height: 2px;
  background: #e4190f;
  position: absolute;
  bottom: 0;
  right: 219px;
  transform: rotate(-45deg);
  transform-origin: bottom right;
}
.page-banner-home .eq-box {
  position: absolute;
  top: 35%;
  right: 130px;
  z-index: 600;
  color: #fff;
  text-transform: uppercase;
  text-align: right;
  overflow: hidden;
}
.page-banner-home .eq-box span {
  display: block;
}
.page-banner-home .eq-box .title {
  font-size: 28px;
}
.page-banner-home .eq-box .subtitle {
  font-size: 16px;
}
.page-banner-home .eq-box .eq-bar {
  float: right;
  width: 30px;
  margin-top: 10px;
  margin-left: 10px;
  overflow: hidden;
}
.page-banner-home .eq-box .eq-bar .inner-1 {
  -webkit-animation: equalizer 5s step-start infinite;
  animation: equalizer 5s step-start infinite;
}
.page-banner-home .eq-box .eq-bar .inner-2 {
  -webkit-animation: eqlizer 8s step-start infinite;
  animation: eqlizer 8s step-start infinite;
}
.page-banner-home .eq-box .eq-bar .el {
  display: block;
  height: 3px;
  background: #fff;
  margin-bottom: 7px;
}
.page-banner-home .eq-box .eq-bar .el:last-child {
  -webkit-animation: pulserx 0.5s ease-in-out infinite;
  animation: pulserx 0.5s ease-in-out infinite;
}
@-webkit-keyframes equalizer {
  0% {
    transform: translateY(-110px);
  }
  2% {
    transform: translateY(-100px);
  }
  4% {
    transform: translateY(-90px);
  }
  6% {
    transform: translateY(-80px);
  }
  8% {
    transform: translateY(-70px);
  }
  10% {
    transform: translateY(-60px);
  }
  12% {
    transform: translateY(-50px);
  }
  14% {
    transform: translateY(-40px);
  }
  16% {
    transform: translateY(-30px);
  }
  18% {
    transform: translateY(-20px);
  }
  20% {
    transform: translateY(-10px);
  }
  22% {
    transform: translateY(0px);
  }
  36% {
    transform: translateY(0px);
  }
  38% {
    transform: translateY(-10px);
  }
  40% {
    transform: translateY(-20px);
  }
  42% {
    transform: translateY(-30px);
  }
  44% {
    transform: translateY(-40px);
  }
  50% {
    transform: translateY(-40px);
  }
  52% {
    transform: translateY(-30px);
  }
  54% {
    transform: translateY(-20px);
  }
  80% {
    transform: translateY(-20px);
  }
  82% {
    transform: translateY(-30px);
  }
  84% {
    transform: translateY(-40px);
  }
  86% {
    transform: translateY(-50px);
  }
  88% {
    transform: translateY(-60px);
  }
  90% {
    transform: translateY(-70px);
  }
  92% {
    transform: translateY(-80px);
  }
  94% {
    transform: translateY(-90px);
  }
  96% {
    transform: translateY(-100px);
  }
  98% {
    transform: translateY(-110px);
  }
  100% {
    transform: translateY(-110px);
  }
}
@keyframes equalizer {
  0% {
    transform: translateY(-110px);
  }
  2% {
    transform: translateY(-100px);
  }
  4% {
    transform: translateY(-90px);
  }
  6% {
    transform: translateY(-80px);
  }
  8% {
    transform: translateY(-70px);
  }
  10% {
    transform: translateY(-60px);
  }
  12% {
    transform: translateY(-50px);
  }
  14% {
    transform: translateY(-40px);
  }
  16% {
    transform: translateY(-30px);
  }
  18% {
    transform: translateY(-20px);
  }
  20% {
    transform: translateY(-10px);
  }
  22% {
    transform: translateY(0px);
  }
  36% {
    transform: translateY(0px);
  }
  38% {
    transform: translateY(-10px);
  }
  40% {
    transform: translateY(-20px);
  }
  42% {
    transform: translateY(-30px);
  }
  44% {
    transform: translateY(-40px);
  }
  50% {
    transform: translateY(-40px);
  }
  52% {
    transform: translateY(-30px);
  }
  54% {
    transform: translateY(-20px);
  }
  80% {
    transform: translateY(-20px);
  }
  82% {
    transform: translateY(-30px);
  }
  84% {
    transform: translateY(-40px);
  }
  86% {
    transform: translateY(-50px);
  }
  88% {
    transform: translateY(-60px);
  }
  90% {
    transform: translateY(-70px);
  }
  92% {
    transform: translateY(-80px);
  }
  94% {
    transform: translateY(-90px);
  }
  96% {
    transform: translateY(-100px);
  }
  98% {
    transform: translateY(-110px);
  }
  100% {
    transform: translateY(-110px);
  }
}
@-webkit-keyframes eqlizer {
  0% {
    transform: translateY(-110px);
  }
  8% {
    transform: translateY(-110px);
  }
  9% {
    transform: translateY(-100px);
  }
  10% {
    transform: translateY(-90px);
  }
  11% {
    transform: translateY(-80px);
  }
  12% {
    transform: translateY(-70px);
  }
  13% {
    transform: translateY(-60px);
  }
  14% {
    transform: translateY(-50px);
  }
  15% {
    transform: translateY(-40px);
  }
  100% {
    transform: translateY(-40px);
  }
}
@keyframes eqlizer {
  0% {
    transform: translateY(-110px);
  }
  8% {
    transform: translateY(-110px);
  }
  9% {
    transform: translateY(-100px);
  }
  10% {
    transform: translateY(-90px);
  }
  11% {
    transform: translateY(-80px);
  }
  12% {
    transform: translateY(-70px);
  }
  13% {
    transform: translateY(-60px);
  }
  14% {
    transform: translateY(-50px);
  }
  15% {
    transform: translateY(-40px);
  }
  100% {
    transform: translateY(-40px);
  }
}
@-webkit-keyframes pulser {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
@keyframes pulser {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
@-webkit-keyframes rtcw {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rtcw {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes rtcc {
  0% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
@keyframes rtcc {
  0% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
@-webkit-keyframes bigspin1 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
@keyframes bigspin1 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
@-webkit-keyframes bigspin2 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  25% {
    -webkit-transform: rotate(160deg);
    transform: rotate(160deg);
  }
  75% {
    -webkit-transform: rotate(300deg);
    transform: rotate(300deg);
  }
  90% {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
@keyframes bigspin2 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  25% {
    -webkit-transform: rotate(160deg);
    transform: rotate(160deg);
  }
  75% {
    -webkit-transform: rotate(300deg);
    transform: rotate(300deg);
  }
  90% {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
@media (max-width: 1480px) {
  .page-banner-home .info-box {
    left: 40px;
    bottom: 120px;
  }
  .page-banner-home .info-box .title:before {
    width: 180px;
  }
  .page-banner-home .info-box .title:after {
    left: 179px;
  }
  .page-banner-home .cases-box {
    right: 40px;
  }
  .page-banner-home .cases-box .slick-cases-toggle:before {
    width: 150px;
  }
  .page-banner-home .cases-box .slick-cases-toggle:after {
    right: 149px;
  }
  .page-banner-home .eq-box {
    right: 40px;
  }
  .page-banner-home .bigspin .circles-5 {
    display: none;
  }
}
@media (max-width: 1280px) {
  .page-banner-home .info-box {
    left: 150px;
    bottom: 120px;
  }
  .page-banner-home .info-box .title {
    padding-bottom: 5px;
    margin-bottom: 7px;
  }
  .page-banner-home .info-box .title:before {
    width: 170px;
  }
  .page-banner-home .info-box .title:after {
    left: 169px;
  }
  .page-banner-home .info-box .subtitle {
    font-size: 18px;
    line-height: 1.2em;
  }
  .page-banner-home .cases-box {
    right: 114px;
  }
  .page-banner-home .cases-box .slick-cases-toggle {
    font-size: 34px;
    padding-bottom: 12px;
  }
  .page-banner-home .eq-box {
    right: 114px;
  }
}
@media (max-width: 991px) {
  .page-banner-home .info-box {
    left: 40px;
  }
  .page-banner-home .cases-box {
    right: 25px;
  }
  .page-banner-home .cases-box .slick-cases-toggle:before {
    width: 130px;
  }
  .page-banner-home .cases-box .slick-cases-toggle:after {
    right: 129px;
  }
  .page-banner-home .eq-box {
    right: 25px;
  }
}
@media (max-width: 767px) {
  .page-banner-home .bigspin .circles-4 {
    display: none;
  }
  .page-banner-home .info-box {
    left: 20px;
    bottom: 50%;
    transform: translateY(280px);
  }
  .page-banner-home .cases-box {
    top: 50%;
    transform: translateY(-260px);
  }
  .page-banner-home .eq-box {
    top: 50%;
    transform: translateY(-200px);
  }
}
@media (max-width: 650px) {
  .page-banner-home .cases-box .slick-cases-toggle {
    font-size: 24px;
    padding-bottom: 8px;
  }
  .page-banner-home .cases-box .slick-cases-toggle:before {
    width: 90px;
  }
  .page-banner-home .cases-box .slick-cases-toggle:after {
    right: 89px;
  }
  .page-banner-home .eq-box {
    display: none;
  }
}
@media (max-width: 420px) {
  .page-banner-home .bigspin {
    width: 2046px;
    height: 1300px;
  }
  .page-banner-home .bigspin .circles-2:before {
    display: none;
  }
  .page-banner-home .info-box {
    transform: translateY(250px);
  }
  .page-banner-home .cases-box {
    transform: translateY(-200px);
  }
  .page-banner-home .slick-cases-wrap {
    width: 238px;
    height: 238px;
  }
  .page-banner-home .slick-cases .item {
    width: 238px;
    height: 238px;
  }
}
@media (max-width: 375px) and (min-height: 692px) {
  .page-banner-home .info-box {
    transform: translateY(280px);
  }
  .page-banner-home .cases-box {
    transform: translateY(-224px);
  }
}
@media (max-width: 375px) and (max-height: 691px) {
  .page-banner-home .info-box {
    display: none;
  }
  .page-banner-home .cases-box {
    transform: translateY(175px);
  }
  .page-banner-home .cases-box .slick-cases-toggle {
    font-size: 30px;
    padding-bottom: 8px;
  }
  .page-banner-home .cases-box .slick-cases-toggle:after {
    transform: rotate(45deg);
  }
}
/* @end */
/* @group MOUSE INDICATOR */
.mouse {
  height: 34px;
  width: 21px;
  border-radius: 10px;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  border: 2px solid #1c1e2a;
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
}
.mouse .wheel {
  display: block;
  height: 5px;
  width: 5px;
  border-radius: 50%;
  margin: 5px auto;
  background: #1c1e2a;
  position: relative;
  -webkit-animation: mouse-wheel 1.2s ease infinite;
  -moz-animation: mouse-wheel 1.2s ease infinite;
  animation: mouse-wheel 1.2s ease infinite;
}
@media (max-width: 767px) {
  .mouse {
    top: 20px;
  }
}
@-webkit-keyframes mouse-wheel {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(10px);
    -ms-transform: translateY(10px);
    transform: translateY(10px);
  }
}
@keyframes mouse-wheel {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(10px);
    -ms-transform: translateY(10px);
    transform: translateY(10px);
  }
}
/* @end */
/* @group PAGE-BANNER */
.page-banner {
  background: #1c1e2a;
  overflow: hidden;
  position: relative;
  padding: 140px 0 80px;
}
.page-banner .bgimg-main {
  width: 100%;
  height: 100%;
  background-position: center center;
  background-size: cover;
  opacity: 0.4;
  position: absolute;
  top: 0;
  left: 0;
}
.page-banner .bgimg-main:before {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#1c1e2a+0,1c1e2a+100&0.5+0,1+40 */
  background: -moz-linear-gradient(top, rgba(28, 30, 42, 0.5) 0%, #1c1e2a 40%, #1c1e2a 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(28, 30, 42, 0.5) 0%, #1c1e2a 40%, #1c1e2a 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(28, 30, 42, 0.5) 0%, #1c1e2a 40%, #1c1e2a 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#801c1e2a', endColorstr='#1c1e2a', GradientType=0);
  /* IE6-9 */
  opacity: 1;
  position: absolute;
  top: 0;
  right: 0;
}
.page-banner .container {
  position: relative;
  z-index: 50;
  color: #fff;
  font-size: 16px;
}
.page-banner h1,
.page-banner h2,
.page-banner h3 {
  color: inherit;
  text-transform: uppercase;
}
.page-banner .page-header {
  text-align: center;
  margin-bottom: 60px;
}
.page-banner .page-header h1 {
  font-size: 40px;
}
.page-banner .f-article {
  position: relative;
  padding-top: 60px;
  padding-bottom: 60px;
}
.page-banner .f-article:before {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background: url('../img/reddot.gif');
  position: absolute;
  top: 0;
  right: 35%;
}
.page-banner .f-article .image {
  border-radius: 5px;
  overflow: hidden;
  position: relative;
  z-index: 10;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  height: 320px;
}
.page-banner .f-article .image:before {
  display: block;
  content: "";
  width: 60px;
  height: 60px;
  background: url(../img/hoekje-stippel.png);
  background-size: contain;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}
.page-banner .f-article .image img {
  opacity: 0;
}
.page-banner .f-header {
  margin-bottom: 30px;
}
.page-banner .f-header h2 {
  font-size: 25px;
  text-transform: none;
}
@media (max-width: 1280px) {
  .page-banner .page-header h1 {
    font-size: 36px;
  }
  .page-banner .f-article .image {
    height: 380px;
  }
}
@media (max-width: 991px) {
  .page-banner {
    padding: 80px 0 80px;
  }
  .page-banner .page-header h1 {
    font-size: 30px;
  }
  .page-banner .f-article .image {
    height: 420px;
  }
}
@media (max-width: 767px) {
  .page-banner .f-article .f-image {
    margin-bottom: 30px;
  }
  .page-banner .f-article .image {
    height: 300px;
  }
}
@media (max-width: 600px) {
  .page-banner .page-header h1 {
    font-size: 24px;
  }
}
/* @end */
/* @group BODY */
.main-body {
  position: relative;
  padding: 0;
}
.main-body .article-output h1,
.main-body .article-output h2,
.main-body .article-output h3,
.main-body .article-output h4 {
  color: #1c1e2a;
  margin-bottom: 20px;
}
.main-body .article-output h1 {
  font-size: 32px;
}
.main-body .article-output h2 {
  font-size: 22px;
}
.main-body .article-output h3 {
  font-size: 20px;
}
.main-body .article-output h4 {
  font-size: 18px;
}
.main-body .article-output ul,
.main-body .article-output ol,
.main-body .article-output li {
  margin: 0;
  padding: 0;
  list-style: none;
}
.main-body .article-output ul {
  margin: 0 0 30px;
}
.main-body .article-output ul li {
  margin-left: 20px;
  list-style: disc;
}
.main-body .article-output ol {
  margin: 0 0 30px;
}
.main-body .article-output ol li {
  margin-left: 20px;
  list-style: decimal;
}
.main-body .article-output blockquote {
  background: #eef5fa;
  border-left: 5px solid #1c1e2a;
  margin: 0 0 30px;
  padding: 10px 10px 10px 20px;
}
.main-body .article-output blockquote p {
  margin: 0;
  font-style: italic;
}
.main-body .article-output ul.mod-photo-gallery {
  overflow: hidden;
  margin: 0;
  padding: 0;
  list-style: none;
}
.main-body .article-output ul.mod-photo-gallery li {
  margin: 0;
  padding: 0;
  list-style: none;
  float: left;
  margin: 0 15px 15px 0;
  overflow: hidden;
}
.main-body .article-output ul.mod-photo-gallery a {
  display: block;
  width: 150px;
  height: 150px;
  background-size: cover;
  border: 1px solid #eee;
  transform: scale(1, 1);
  transition: transform 0.35s;
}
.main-body .article-output ul.mod-photo-gallery a:hover {
  opacity: 0.8;
  transform: scale(1.08, 1.08);
}
.article-images {
  overflow: hidden;
  margin: 0 15%;
}
.article-images a {
  float: left;
  width: 23%;
  margin: 0 2% 20px 0;
}
.article-images a:hover {
  opacity: 0.8;
}
@media (max-width: 1480px) {
  .article-images a {
    width: 23%;
    margin: 0 2% 20px 0;
  }
}
@media (max-width: 1280px) {
  .article-images a {
    width: 31%;
    margin: 0 2% 20px 0;
  }
}
@media (max-width: 991px) {
  .article-images {
    margin: 0;
  }
}
@media (max-width: 620px) {
  .article-images a {
    width: 48%;
    margin: 0 2% 20px 0;
  }
}
@media (max-width: 767px) {
  .video-container {
    display: block;
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
  }
  .video-container iframe,
  .video-container object,
  .video-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}
/* @end */
/* @group ARTICLE-GRID */
.article-grid .article-item {
  margin-bottom: 60px;
}
@media (max-width: 480px) {
  .article-grid .article-item {
    width: 100%;
    clear: both;
  }
}
/* @end */
/* @group VOLG */
.main-column {
  padding-top: 60px;
  padding-bottom: 60px;
}
.article-single .page-header,
.article-single .article-output {
  margin: 0 15%;
}
.article-single .page-header {
  padding-bottom: 200px;
}
.article-single .page-header h1 {
  margin-bottom: 30px;
}
.article-single .page-header p {
  font-size: 25px;
  line-height: 1.4em;
}
.article-single h1,
.article-single h2,
.article-single h3 {
  text-transform: none;
}
.article-single .article-image {
  border-radius: 5px;
  margin: -300px 0 60px;
  overflow: hidden;
  position: relative;
  z-index: 50;
}
.article-single .article-image:before {
  display: block;
  content: "";
  width: 60px;
  height: 60px;
  background: url(../img/hoekje.png);
  background-size: contain;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}
.article-single .article-video .bgvideo {
  display: block;
  width: 100%;
}
.article-single .article-video .animation-actions {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 0);
  transition: opacity 0.4s ease-in-out 0s;
  opacity: 0;
  pointer-events: none;
}
.article-single .article-video .animation-actions.show {
  opacity: 1;
  pointer-events: auto;
}
.article-single .article-video .replayVideo {
  display: block;
  text-align: center;
  line-height: 180px;
  font-size: 80px;
  color: #e4190f;
}
.article-single .article-video .replayVideo i:before {
  margin: 0;
}
.article-single .article-video .replayVideo:hover {
  color: #e4190f;
}
.project-page .article-output {
  margin: 0;
}
@media (max-width: 1280px) {
  .article-single .page-header p {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .article-single .page-header,
  .article-single .article-output {
    margin: 0;
  }
  .article-single .page-header {
    padding-bottom: 120px;
  }
  .article-single .article-image {
    margin-top: -250px;
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .article-single .page-header p {
    font-size: 18px;
  }
  .article-single .article-video .replayVideo {
    width: 120px;
    height: 120px;
    line-height: 120px;
    font-size: 60px;
  }
}
@media (max-width: 600px) {
  .article-single .page-header {
    padding-bottom: 60px;
  }
  .article-single .page-header p {
    font-size: 16px;
  }
  .article-single .article-image {
    margin-top: -180px;
    margin-bottom: 40px;
  }
  .article-single .article-image:before {
    width: 50px;
    height: 50px;
  }
}
@media (max-width: 560px) {
  .article-single .page-header,
  .article-single .article-output {
    margin: 0;
  }
}
@media (max-width: 420px) {
  .article-single .page-banner {
    padding-top: 60px;
  }
  .article-single .page-header {
    padding-bottom: 10px;
  }
  .article-single .article-image {
    margin-top: -140px;
    margin-bottom: 40px;
  }
  .article-single .article-image:before {
    width: 40px;
    height: 40px;
  }
}
/* @end */
/* @group MOD-DEFAULTS */
.inner-padding .container {
  padding-top: 80px;
  padding-bottom: 80px;
}
.section {
  padding-top: 80px;
  padding-bottom: 80px;
}
.mod-header {
  color: #fff;
  margin-bottom: 80px;
}
.mod-header h1 {
  color: inherit;
  text-transform: uppercase;
}
.mod-header.centered {
  text-align: center;
}
/* @end */
/* @group mod-whatwedo */
.mod-whatwedo {
  background: #fff;
  color: #1c1e2a;
  padding: 0;
  overflow: hidden;
}
.mod-whatwedo .container {
  padding-top: 210px;
  padding-bottom: 160px;
}
.mod-whatwedo .ribbon {
  width: 140px;
  height: 100%;
  background: url(../img/pb-logo-ribbon.png) no-repeat;
  background-size: 140px auto;
  position: absolute;
  top: 0;
  left: 70px;
  z-index: 50;
}
.mod-whatwedo .article-l,
.mod-whatwedo .article-r {
  width: 50%;
  float: left;
}
.mod-whatwedo .article-l {
  height: 400px;
  position: relative;
}
.mod-whatwedo .article-l .bg {
  display: block;
  width: 150%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  background: #f9f9f9;
  background-size: cover;
  background-position: center center;
  border-radius: 5px;
}
.mod-whatwedo .article-l:before {
  display: block;
  content: "";
  width: 1600px;
  height: 100%;
  background: url('../img/reddot.gif');
  position: absolute;
  top: -90px;
  right: -227px;
}
.mod-whatwedo .article-l .btn-video {
  text-align: center;
  line-height: 180px;
  font-size: 80px;
  color: #fff;
  position: absolute;
  top: 50%;
  right: 20%;
  z-index: 5;
  transform: translateY(-50%);
}
.mod-whatwedo .article-l .btn-video i:before {
  margin: 0;
}
.mod-whatwedo .article-l .btn-video:hover {
  color: #e4190f;
}
.mod-whatwedo .article-r {
  padding: 0 90px;
  position: relative;
  z-index: 5;
}
.mod-whatwedo .article-header,
.mod-whatwedo .article-output {
  margin-bottom: 30px;
}
@media (max-width: 1280px) {
  .mod-whatwedo .container {
    padding-bottom: 100px;
  }
  .mod-whatwedo .article-l {
    width: 40%;
  }
  .mod-whatwedo .article-r {
    width: 60%;
    padding: 0 0 0 40px;
  }
  .mod-whatwedo .ribbon {
    display: none;
  }
}
@media (max-width: 767px) {
  .mod-whatwedo .container {
    padding-top: 170px;
  }
}
@media (max-width: 680px) {
  .mod-whatwedo .article-l {
    width: 100%;
    height: 300px;
  }
  .mod-whatwedo .article-l .bg {
    width: 100% !important;
  }
  .mod-whatwedo .article-l .btn-video {
    right: auto;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .mod-whatwedo .article-r {
    width: 100%;
    padding: 40px 0 0 0;
  }
  .mod-whatwedo .ribbon {
    display: none;
  }
}
/* @end */
/* @group mod-solutions */
.mod-solutions {
  background: #1c1e2a url(../img/bg-printplaat.gif) center bottom no-repeat;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.mod-solutions:before {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#1c1e2a+0,1c1e2a+100&1+36,0.5+100 */
  background: -moz-linear-gradient(top, #1c1e2a 0%, #1c1e2a 36%, rgba(28, 30, 42, 0.5) 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #1c1e2a 0%, #1c1e2a 36%, rgba(28, 30, 42, 0.5) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #1c1e2a 0%, #1c1e2a 36%, rgba(28, 30, 42, 0.5) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#1c1e2a', endColorstr='#801c1e2a', GradientType=0);
  /* IE6-9 */
  opacity: 1;
  position: absolute;
  top: 0;
  right: 0;
}
.mod-solutions .mod-header {
  position: relative;
}
.mod-solutions .mod-header .actions {
  position: absolute;
  top: 0;
  right: 10%;
}
.mod-solutions .mod-header .button:hover {
  border-color: #fff;
  color: #e4190f;
}
.mod-solutions .mod-header .button:hover:before {
  background-image: url(../img/button-white.svg);
}
.mod-solutions .article-item .inner:before {
  background-image: url(../img/hoekje.png);
}
@media (max-width: 1280px) {
  .mod-solutions .article-item .inner {
    height: 450px;
  }
}
@media (max-width: 991px) {
  .mod-solutions .mod-header .actions {
    position: static;
  }
  .mod-solutions .article-item:last-child {
    display: none;
  }
}
@media (max-width: 767px) {
  .mod-solutions .article-item .inner {
    margin-right: 30px;
  }
}
@media (max-width: 600px) {
  .mod-solutions .article-item {
    width: 100%;
    float: none;
    margin-bottom: 60px;
  }
  .mod-solutions .article-item .inner {
    margin-right: 40px;
  }
  .mod-solutions .article-item:last-child {
    display: block;
  }
}
/* @end */
/* @group ARTICLE-ITEM */
.article-item .inner {
  background: #1c1e2a;
  background-position: center center;
  background-size: cover;
  height: 500px;
  position: relative;
  border-radius: 5px;
}
.article-item .inner:before {
  display: block;
  content: "";
  width: 60px;
  height: 60px;
  background: url(../img/hoekje-wit.png);
  background-size: contain;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}
.article-item .inner:after {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: url(../img/pb-gradient.png) center bottom repeat-x;
  position: absolute;
  top: 0;
  left: 0;
}
.article-item h2 {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  color: #fff;
  z-index: 20;
  padding: 30px;
  font-size: 20px;
  line-height: 1.6em;
  transition: all 0.3s ease-in-out 0s;
}
.article-item .overlay {
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: url(../img/pb-overlay.png);
  background-size: contain;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: all 0.4s ease-in-out 0s;
  transform: scale(0.8);
}
.article-item .actions {
  width: 100%;
  height: 36px;
  position: absolute;
  bottom: 40px;
  right: 0;
  z-index: 28;
}
.article-item .more {
  display: block;
  line-height: 36px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 25;
  transition: all 0.4s ease-in-out 0s;
  opacity: 0;
}
.article-item .arrow {
  display: block;
  width: 36px;
  height: 36px;
  font-size: 36px;
  color: #fff;
  position: absolute;
  bottom: 0;
  right: -18px;
  z-index: 28;
}
.article-item .arrow:before {
  display: block;
  content: "";
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #1c1e2a;
  position: absolute;
  top: 4px;
  left: 4px;
  z-index: 2;
}
.article-item .arrow i {
  position: relative;
  z-index: 5;
}
.article-item .arrow i:before {
  margin: 0;
}
.article-item .ballen {
  position: absolute;
  bottom: 120px;
  right: -40px;
  z-index: 30;
  transition: all 0.4s ease-in-out 0s;
}
.article-item .ballen .bal {
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  position: absolute;
  bottom: 0;
  right: 0;
  font-weight: 700;
  text-align: center;
  font-size: 13px;
  line-height: 1.2em;
}
.article-item .ballen .bal:nth-child(3) {
  bottom: 60px;
  z-index: 8;
  transition: all 0.4s ease-in-out 0s;
}
.article-item .ballen .bal:nth-child(2) {
  bottom: 30px;
  z-index: 5;
  transition: all 0.4s ease-in-out 0s;
}
.article-item .ballen .bal:nth-child(2) .innerbal {
  transition: all 0.4s ease-in-out 0s;
  opacity: 0;
}
.article-item .ballen .bal:nth-child(1) .innerbal {
  transition: all 0.4s ease-in-out 0s;
  opacity: 0;
}
.article-item .ballen .bal .innerbal {
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.article-item .ballen .bal .innerbal .text1 {
  display: block;
}
.article-item .ballen .type-11 {
  background: #1c1e2a;
}
.article-item .ballen .type-14 {
  background-color: #1c1e2a;
}
.article-item .ballen .type-14 .innerbal {
  height: 60px;
  width: 60px;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}
.article-item .ballen .type-12 {
  background: #7a0822;
}
.article-item .ballen .type-13 {
  background: rgba(28, 31, 42, 0.5);
  border: 2px solid #e4190f;
}
.article-item:hover .overlay {
  opacity: 0.7;
  transform: scale(1);
}
.article-item:hover h2 {
  bottom: -30px;
  opacity: 0;
}
.article-item:hover .more {
  right: 30px;
  opacity: 1;
}
.article-item:hover .ballen {
  bottom: 140px;
}
.article-item:hover .ballen .bal:nth-child(3) {
  bottom: 180px;
}
.article-item:hover .ballen .bal:nth-child(2) {
  bottom: 90px;
}
.article-item:hover .ballen .bal:nth-child(2) .innerbal {
  opacity: 1;
}
.article-item:hover .ballen .bal:nth-child(1) .innerbal {
  opacity: 1;
}
@media (max-width: 1280px) {
  .tpl-volg .article-item .inner {
    height: 420px;
  }
}
@media (max-width: 991px) {
  .article-item .ballen .bal:nth-child(3) {
    bottom: 180px;
  }
  .article-item .ballen .bal:nth-child(2) {
    bottom: 90px;
  }
  .article-item .ballen .bal:nth-child(2) .innerbal {
    opacity: 1;
  }
  .article-item .ballen .bal:nth-child(1) .innerbal {
    opacity: 1;
  }
}
/* @end */
/* @group mod-vacatures */
.mod-vacatures {
  background: #fff;
  color: #1c1e2a;
}
.mod-vacatures .mod-header {
  position: absolute;
  top: 50px;
  right: 70px;
  z-index: 100;
  color: #fff;
}
.mod-vacatures .mod-header h1 {
  color: inherit;
  margin-bottom: 15px;
}
.mod-vacatures .bg-inner {
  background: #1c1e2a;
  background-size: cover;
  background-position: center center;
  position: relative;
}
.mod-vacatures .bg-inner:before {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(30, 34, 44, 0.4);
}
.mod-vacatures .inner {
  min-height: 500px;
  background: #fff;
  padding: 50px;
}
.mod-vacatures .stats-box {
  position: relative;
}
.mod-vacatures .stats {
  padding: 30px 0;
  position: absolute;
  top: 0;
  left: -40px;
}
.mod-vacatures .stat-circle {
  margin: 30px 0;
  color: #fff;
  font-weight: 700;
}
.mod-vacatures .stat-circle span {
  display: block;
  text-align: center;
}
.mod-vacatures .stat-circle .number {
  font-size: 40px;
  padding: 52px 0 10px;
}
.mod-vacatures .stat-circle .text {
  font-size: 15px;
  text-transform: uppercase;
  line-height: 1.2em;
  padding: 0 22px;
}
.mod-vacatures .stat-circle:nth-child(2):before {
  -webkit-animation: spinner-inner 7s infinite;
  animation: spinner-inner 7s infinite;
}
.mod-vacatures .stat-circle:nth-child(2):after {
  -webkit-animation: spinner-inner 10s infinite;
  animation: spinner-inner 10s infinite;
}
.mod-vacatures .stat-circle:nth-child(3):before {
  -webkit-animation: spinner-inner 12s infinite;
  animation: spinner-inner 12s infinite;
}
.mod-vacatures .stat-circle:nth-child(3):after {
  -webkit-animation: spinner-inner 9s infinite;
  animation: spinner-inner 9s infinite;
}
.mod-vacatures .superhero {
  height: 100%;
  background-size: contain !important;
  position: absolute;
  right: 0;
  bottom: 0;
}
.mod-vacatures .superhero.superhero-1 {
  width: 275px;
  background: url(../img/superheros/fantastic4-1.png) bottom left no-repeat;
  background-color: rgba(86, 63, 25, 0);
  right: 584px;
  z-index: 30;
}
.mod-vacatures .superhero.superhero-2 {
  width: 288px;
  background: url(../img/superheros/fantastic4-2.png) bottom left no-repeat;
  background-color: rgba(186, 63, 125, 0);
  right: 397px;
  z-index: 40;
}
.mod-vacatures .superhero.superhero-3 {
  width: 490px;
  background: url(../img/superheros/fantastic4-3.png) bottom left no-repeat;
  background-color: rgba(16, 163, 125, 0);
  right: 140px;
  z-index: 30;
}
.mod-vacatures .superhero.superhero-4 {
  width: 342px;
  background: url(../img/superheros/fantastic4-4.png) bottom left no-repeat;
  background-color: rgba(175, 140, 105, 0);
  right: 0;
  z-index: 20;
}
@media (max-width: 1480px) {
  .mod-vacatures .stats {
    left: -20px;
  }
  .mod-vacatures .superhero.superhero-1 {
    width: 260px;
    right: 470px;
  }
  .mod-vacatures .superhero.superhero-2 {
    width: 275px;
    right: 290px;
  }
  .mod-vacatures .superhero.superhero-3 {
    width: 475px;
    right: 50px;
  }
  .mod-vacatures .superhero.superhero-4 {
    width: 325px;
    right: -50px;
  }
}
@media (max-width: 1280px) {
  .mod-vacatures .mod-header {
    right: 30px;
  }
  .mod-vacatures .panel {
    width: 45%;
  }
  .mod-vacatures .panel .inner {
    padding: 40px 30px;
  }
  .mod-vacatures .stats {
    left: -20px;
    display: none;
  }
  .mod-vacatures .spinner {
    width: 150px;
    height: 150px;
  }
  .mod-vacatures .stat-circle .number {
    font-size: 36px;
    padding-top: 42px;
  }
  .mod-vacatures .stat-circle .text {
    font-size: 13px;
  }
  .mod-vacatures .superhero.superhero-1 {
    width: 260px;
    right: 290px;
  }
  .mod-vacatures .superhero.superhero-2 {
    width: 275px;
    right: 100px;
  }
  .mod-vacatures .superhero.superhero-3 {
    width: 475px;
    right: -150px;
  }
  .mod-vacatures .superhero.superhero-4 {
    display: none;
  }
}
@media (max-width: 991px) {
  .mod-vacatures .mod-header h1 {
    display: none;
  }
  .mod-vacatures .panel {
    width: 55%;
  }
  .mod-vacatures .superhero.superhero-1 {
    display: none;
  }
  .mod-vacatures .superhero.superhero-2 {
    right: 120px;
  }
  .mod-vacatures .superhero.superhero-3 {
    right: -153px;
  }
}
@media (max-width: 767px) {
  .mod-vacatures .panel {
    width: 60%;
  }
  .mod-vacatures .superhero.superhero-2 {
    right: 20px;
  }
  .mod-vacatures .superhero.superhero-3 {
    display: none;
  }
}
@media (max-width: 600px) {
  .mod-vacatures .mod-header {
    display: none;
  }
  .mod-vacatures .panel {
    width: auto;
    margin: 30px 0;
  }
  .mod-vacatures .superhero {
    display: none;
  }
}
/* @end */
/* @group mod-klanten */
.mod-klanten {
  background: #1c1e2a;
  color: #fff;
}
.mod-klanten .logo-container {
  padding: 60px 0;
  position: relative;
}
.mod-klanten .logo-container:before {
  display: block;
  content: "";
  width: 4000px;
  height: 100%;
  background: url('../img/reddot.gif');
  position: absolute;
  top: 0;
  right: -50%;
}
.mod-klanten .logo-row-top {
  margin-bottom: 30px;
}
.mod-klanten .logo-row-top,
.mod-klanten .logo-row-bottom {
  overflow: hidden;
  position: relative;
  z-index: 200;
}
.mod-klanten .logo-row-top .toggle,
.mod-klanten .logo-row-bottom .toggle {
  width: 12.5%;
  float: left;
  text-align: center;
  color: #fff;
  font-size: 40px;
  line-height: 120px;
}
.mod-klanten .logo-row-top .toggle:hover,
.mod-klanten .logo-row-bottom .toggle:hover {
  color: #e4190f;
}
.mod-klanten .logo-row-bottom .logos {
  float: right;
}
.mod-klanten .logos {
  width: 87.5%;
  float: left;
  overflow: hidden;
}
.mod-klanten .logos .logo-box {
  display: block;
  float: left;
  width: 14.27%;
  text-align: center;
}
.mod-klanten .logos .logo-box.spacer {
  opacity: 0;
}
.mod-klanten .logos .logo {
  display: block;
  width: 120px;
  height: 120px;
  line-height: 120px;
  margin: 0 auto;
  text-align: center;
  border-radius: 50%;
  border: 2px solid #7a0822;
  font-size: 0;
  background-position: center center;
  background-size: 80px auto;
  background-repeat: no-repeat;
}
.mod-klanten .logos-all {
  display: none;
}
.mod-klanten .logo-row-top .logo-box:nth-child(1) {
  transition: all 0.2s ease-in-out 0s;
}
.mod-klanten .logo-row-top .logo-box:nth-child(2) {
  transition: all 0.2s ease-in-out 0.05s;
}
.mod-klanten .logo-row-top .logo-box:nth-child(3) {
  transition: all 0.2s ease-in-out 0.1s;
}
.mod-klanten .logo-row-top .logo-box:nth-child(4) {
  transition: all 0.2s ease-in-out 0.15s;
}
.mod-klanten .logo-row-top .logo-box:nth-child(5) {
  transition: all 0.2s ease-in-out 0.2s;
}
.mod-klanten .logo-row-top .logo-box:nth-child(6) {
  transition: all 0.2s ease-in-out 0.25s;
}
.mod-klanten .logo-row-top .logo-box:nth-child(7) {
  transition: all 0.2s ease-in-out 0.3s;
}
.mod-klanten .logo-row-bottom .logo-box:nth-child(1) {
  transition: all 0.2s ease-in-out 0.35s;
}
.mod-klanten .logo-row-bottom .logo-box:nth-child(2) {
  transition: all 0.2s ease-in-out 0.3s;
}
.mod-klanten .logo-row-bottom .logo-box:nth-child(3) {
  transition: all 0.2s ease-in-out 0.25s;
}
.mod-klanten .logo-row-bottom .logo-box:nth-child(4) {
  transition: all 0.2s ease-in-out 0.2s;
}
.mod-klanten .logo-row-bottom .logo-box:nth-child(5) {
  transition: all 0.2s ease-in-out 0.15s;
}
.mod-klanten .logo-row-bottom .logo-box:nth-child(6) {
  transition: all 0.2s ease-in-out 0.1s;
}
.mod-klanten .logo-row-bottom .logo-box:nth-child(7) {
  transition: all 0.2s ease-in-out 0.05s;
}
.mod-klanten .logos-top.disappear .logo-box {
  transform: scale(0.8) translateX(30px);
  opacity: 0;
}
.mod-klanten .logos-bottom.disappear .logo-box {
  transform: scale(0.8) translateX(-30px);
  opacity: 0;
}
@media (max-width: 1280px) {
  .mod-klanten .logo-row-top .toggle,
  .mod-klanten .logo-row-bottom .toggle {
    width: 16.6667%;
  }
  .mod-klanten .logos {
    width: 83.3333%;
  }
  .mod-klanten .logos .logo-box {
    width: 20%;
  }
  .mod-klanten .logos .logo-box:nth-child(n+6):nth-child(-n+8) {
    display: none;
  }
}
@media (max-width: 991px) {
  .mod-klanten .logo-row-top .toggle,
  .mod-klanten .logo-row-bottom .toggle {
    width: 20%;
  }
  .mod-klanten .logos {
    width: 80%;
  }
  .mod-klanten .logos .logo-box {
    width: 25%;
  }
  .mod-klanten .logos .logo-box:nth-child(n+5):nth-child(-n+8) {
    display: none;
  }
}
@media (max-width: 700px) {
  .mod-klanten .logo-row-top .toggle,
  .mod-klanten .logo-row-bottom .toggle {
    width: 25%;
  }
  .mod-klanten .logos {
    width: 75%;
  }
  .mod-klanten .logos .logo-box {
    width: 33.33334%;
  }
  .mod-klanten .logos .logo-box:nth-child(n+4):nth-child(-n+8) {
    display: none;
  }
}
@media (max-width: 580px) {
  .mod-klanten .logo-row-top .toggle,
  .mod-klanten .logo-row-bottom .toggle {
    width: 33.33334%;
  }
  .mod-klanten .logos {
    width: 66.66667%;
  }
  .mod-klanten .logos .logo-box {
    width: 50%;
  }
  .mod-klanten .logos .logo-box:nth-child(n+3):nth-child(-n+8) {
    display: none;
  }
}
@media (max-width: 460px) {
  .mod-klanten .logo-row-top .toggle,
  .mod-klanten .logo-row-bottom .toggle {
    line-height: 100px;
  }
  .mod-klanten .logos .logo {
    width: 100px;
    height: 100px;
    background-size: 70px auto;
  }
}
@media (max-width: 380px) {
  .mod-klanten .logo-row-top .toggle,
  .mod-klanten .logo-row-bottom .toggle {
    line-height: 80px;
  }
  .mod-klanten .logos .logo {
    width: 80px;
    height: 80px;
    background-size: 50px auto;
  }
}
/* @end */
/* @group mod-prefooter */
.mod-prefooter {
  background: #2b2f3b url(../img/bg-contact.jpg) center center no-repeat;
  background-size: cover;
  color: #fff;
  position: relative;
}
.mod-prefooter:before {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(30, 34, 44, 0.9);
}
.mod-prefooter .form {
  margin: 0 20%;
}
.mod-prefooter .grecaptcha-badge {
  position: fixed;
  bottom: 60px;
  left: -280px;
  z-index: 500;
  transition: all 0.4s ease-in-out 0s;
}
.mod-prefooter .rsform h2 {
  display: none;
}
.mod-prefooter .rsform fieldset {
  padding: 0;
  margin: 0;
  border: none;
}
.mod-prefooter .rsform input[type="text"] {
  width: 100%;
  height: 36px;
  padding-left: 10px;
  background: none;
  border: 1px solid #fff;
}
.mod-prefooter .rsform .formDescription,
.mod-prefooter .rsform .formRequired {
  display: none;
}
.mod-prefooter .rsform .rsform-block-naam,
.mod-prefooter .rsform .rsform-block-bedrijf,
.mod-prefooter .rsform .rsform-block-telefoonnummer,
.mod-prefooter .rsform .rsform-block-email {
  width: 50%;
  float: left;
  margin-bottom: 30px;
}
.mod-prefooter .rsform .rsform-block-naam .formBody,
.mod-prefooter .rsform .rsform-block-bedrijf .formBody,
.mod-prefooter .rsform .rsform-block-telefoonnummer .formBody,
.mod-prefooter .rsform .rsform-block-email .formBody {
  width: 100%;
  float: none;
  position: relative;
}
.mod-prefooter .rsform .rsform-block-naam .formValidation,
.mod-prefooter .rsform .rsform-block-bedrijf .formValidation,
.mod-prefooter .rsform .rsform-block-telefoonnummer .formValidation,
.mod-prefooter .rsform .rsform-block-email .formValidation {
  position: absolute;
  bottom: -26px;
  left: 0;
}
.mod-prefooter .rsform .rsform-block-naam,
.mod-prefooter .rsform .rsform-block-telefoonnummer {
  padding-right: 15px;
}
.mod-prefooter .rsform .rsform-block-bedrijf,
.mod-prefooter .rsform .rsform-block-email {
  padding-left: 15px;
}
.mod-prefooter .rsform .rsform-block-bericht {
  width: 100%;
  clear: both;
  margin-bottom: 30px;
}
.mod-prefooter .rsform .rsform-block-bericht .formBody {
  width: 100%;
  float: none;
  position: relative;
}
.mod-prefooter .rsform .rsform-block-bericht .formValidation {
  position: absolute;
  bottom: -26px;
  left: 0;
}
.mod-prefooter .rsform .rsform-block-bericht textarea {
  width: 100%;
  height: 140px;
  background: none;
  border: 1px solid #fff;
  padding: 10px;
}
.mod-prefooter .rsform button {
  color: #fff;
  padding-top: 2px;
}
.mod-prefooter .rsform button:hover {
  color: #fff;
  border-color: #fff;
}
.mod-prefooter .rsform button:hover:before {
  background-image: url(../img/button-white.svg);
}
.showcaptcha .mod-prefooter .grecaptcha-badge {
  left: -188px;
}
.showcaptcha .mod-prefooter .grecaptcha-badge:hover {
  left: -3px;
}
@media (max-width: 1280px) {
  .mod-prefooter .form {
    margin: 0 10%;
  }
}
@media (max-width: 991px) {
  .mod-prefooter .form {
    margin: 0;
  }
}
@media (max-width: 500px) {
  .mod-prefooter .rsform .rsform-block-naam,
  .mod-prefooter .rsform .rsform-block-bedrijf,
  .mod-prefooter .rsform .rsform-block-telefoonnummer,
  .mod-prefooter .rsform .rsform-block-email {
    width: 100%;
    float: none;
  }
  .mod-prefooter .rsform .rsform-block-naam,
  .mod-prefooter .rsform .rsform-block-telefoonnummer {
    padding-right: 0;
  }
  .mod-prefooter .rsform .rsform-block-bedrijf,
  .mod-prefooter .rsform .rsform-block-email {
    padding-left: 0;
  }
}
/* @end */
/* @group PROJECT DETAIL */
.project-page .page-banner .bigspin {
  opacity: 0.3;
  margin: 50px 0 0 590px;
}
.project-page .project-image {
  margin: -300px 80px 60px 80px;
  position: relative;
}
.project-page .project-image .article-image {
  margin: 0;
}
.project-page .project-image .btn-more-images {
  position: absolute;
  bottom: 30px;
  left: 30px;
  z-index: 100;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
}
.project-page .project-image .btn-more-images i {
  font-size: 30px;
  position: relative;
  top: 3px;
}
.project-page .project-image .btn-more-images:hover {
  color: #e4190f;
}
.project-page .ballen {
  position: absolute;
  top: -50px;
  right: -50px;
  z-index: 100;
  transition: all 0.4s ease-in-out 0s;
}
.project-page .ballen .bal {
  display: block;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-bottom: 10px;
  font-weight: 700;
  text-align: center;
  font-size: 15px;
  line-height: 1.2em;
  color: #fff;
}
.project-page .ballen .bal .innerbal {
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.project-page .ballen .bal .innerbal .text1 {
  display: block;
}
.project-page .ballen .type-11 {
  background: #1c1e2a;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}
.project-page .ballen .type-14 {
  background-color: #1c1e2a;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}
.project-page .ballen .type-14 .innerbal {
  height: 60px;
  width: 60px;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}
.project-page .ballen .type-12 {
  background: #7a0822;
}
.project-page .ballen .type-13 {
  background: rgba(28, 31, 42, 0.5);
  border: 2px solid #e4190f;
}
.project-page .project-stats {
  text-align: center;
}
.project-page .project-stats .item {
  margin: 20px 0 40px;
}
.project-page .project-stats .item .icon {
  height: 60px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  margin-bottom: 20px;
}
.project-page .project-stats .item .number {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 10px;
}
.project-page .project-stats .item .text {
  display: block;
  color: #e4190f;
  font-size: 18px;
}
@media (max-width: 1480px) {
  .project-page .page-banner .bigspin {
    margin: 50px 0 0 525px;
  }
}
@media (max-width: 1280px) {
  .project-page .page-banner .bigspin {
    opacity: 0.3;
    margin: 50px 0 0 400px;
  }
  .project-page .project-image {
    margin-left: 50px;
    margin-right: 50px;
  }
  .project-page .ballen {
    top: -40px;
    right: -40px;
  }
  .project-page .ballen .bal {
    width: 80px;
    height: 80px;
    font-size: 13px;
  }
}
@media (max-width: 991px) {
  .project-page .page-banner {
    padding-top: 100px;
  }
  .project-page .page-banner .bigspin {
    margin: 50px 0 0 310px;
  }
  .project-page .project-image {
    margin: -240px 40px 50px 0;
  }
  .project-page .project-info .col-left {
    width: 30%;
    float: left;
  }
  .project-page .project-info .col-right {
    width: 70%;
    float: left;
  }
  .project-page .project-info .article-output {
    margin: 0 40px 0 0;
  }
}
@media (max-width: 650px) {
  .project-page .page-banner {
    padding-bottom: 100px;
  }
  .project-page .page-banner .bigspin {
    margin: 150px 0 0 220px;
  }
  .project-page .ballen {
    width: 300px;
    top: -15px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }
  .project-page .ballen .bal {
    float: left;
    margin: 10px;
  }
  .project-page .project-image {
    margin: -270px 0 50px 0;
    padding-top: 100px;
  }
  .project-page .project-image .article-image {
    clear: both;
  }
  .project-page .project-info .col-left {
    width: 30%;
  }
  .project-page .project-info .col-right {
    width: 70%;
  }
  .project-page .project-info .article-output {
    margin: 0;
  }
}
@media (max-width: 600px) {
  .project-page .page-banner {
    padding-bottom: 220px;
  }
  .project-page .page-header {
    padding-bottom: 0;
  }
}
@media (max-width: 560px) {
  .project-page .project-info .col-left {
    width: 100%;
    float: none;
  }
  .project-page .project-info .col-right {
    width: 100%;
    float: none;
  }
  .project-page .project-stats {
    overflow: hidden;
  }
  .project-page .project-stats .item {
    width: 33.3334%;
    float: left;
  }
  .project-page .project-stats .item .icon {
    height: 50px;
  }
}
@media (max-width: 420px) {
  .project-page .project-stats .item {
    margin: 0 0 30px 0;
  }
  .project-page .project-stats .item .number {
    font-size: 28px;
  }
  .project-page .project-stats .item .text {
    padding: 0 15px;
    font-size: 14px;
  }
}
@media (max-width: 380px) {
  .project-page .ballen {
    width: 272px;
  }
  .project-page .ballen .bal {
    width: 70px;
    height: 70px;
    font-size: 12px;
  }
}
.mod-project-products {
  margin-bottom: 110px;
}
.mod-project-products .mod-header {
  margin-bottom: 0;
  padding-bottom: 40px;
}
.mod-project-products .mod-header h2 {
  text-transform: uppercase;
  font-size: 30px;
  margin-bottom: 15px;
}
.mod-project-products .project-map-box {
  height: 380px;
  position: relative;
}
.mod-project-products .project-map {
  height: 100%;
  width: 1000px;
  position: absolute;
  top: 0;
  right: -100px;
}
.mod-project-products .project-map button:before {
  display: none;
}
.mod-project-products .project-map-title {
  position: absolute;
  bottom: 40px;
  right: -70px;
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  text-shadow: 0 0 2px #ffffff;
}
.mod-project-products .product-row {
  width: 645px;
  margin-left: -45px;
}
.mod-project-products .product-row .c-col-3 {
  width: 50%;
  float: left;
  padding-left: 45px;
}
.mod-project-products .product-row .article-item .inner {
  height: 380px;
}
@media (max-width: 1480px) {
  .mod-project-products .project-map {
    right: -35px;
  }
  .mod-project-products .project-map-title {
    right: 10px;
  }
  .mod-project-products .product-row {
    width: 604px;
  }
}
@media (max-width: 1280px) {
  .mod-project-products .project-map {
    right: -20px;
  }
  .mod-project-products .product-row {
    width: 544px;
  }
}
@media (max-width: 991px) {
  .mod-project-products .project-map-title {
    right: 20px;
  }
  .mod-project-products .col-left {
    width: 30%;
    float: left;
  }
  .mod-project-products .col-right {
    width: 70%;
    float: left;
  }
  .mod-project-products .project-map {
    right: -5px;
  }
  .mod-project-products .product-row {
    width: 512px;
  }
}
@media (max-width: 767px) {
  .mod-project-products {
    margin-bottom: 70px;
  }
  .mod-project-products .col-left {
    width: 100%;
    float: none;
    margin-bottom: 70px;
  }
  .mod-project-products .col-right {
    width: 100%;
    float: none;
  }
  .mod-project-products .project-map {
    position: static;
    right: auto;
    width: 100% !important;
  }
  .mod-project-products .product-row {
    width: 100%;
  }
}
@media (max-width: 620px) {
  .mod-project-products .product-row .article-item .inner {
    height: 320px;
  }
}
@media (max-width: 500px) {
  .mod-project-products .product-row {
    margin: 0;
  }
  .mod-project-products .product-row .c-col-3 {
    width: 100%;
    float: none;
    padding: 0;
    margin-bottom: 40px;
  }
  .mod-project-products .product-row .article-item .inner {
    height: 320px;
  }
}
.mod-project-images {
  padding: 60px 0;
  background: #1c1e2a;
  color: #fff;
}
.mod-project-images h2 {
  color: inherit;
  margin: 0 30px;
  font-size: 40px;
  text-transform: uppercase;
}
.slick-images {
  position: relative;
}
.slick-images .slick-prev,
.slick-images .slick-next {
  font-size: 34px;
  color: #fff;
  position: absolute;
  top: 50%;
  z-index: 30;
  transform: translateY(-50%);
}
.slick-images .slick-prev:hover,
.slick-images .slick-next:hover {
  color: #e4190f;
}
.slick-images .slick-prev {
  left: 100px;
}
.slick-images .slick-next {
  right: 100px;
}
.slick-images .item {
  height: 280px;
  position: relative;
}
.slick-images .item .bgimg {
  position: absolute;
  top: 0;
  right: 10px;
  bottom: 0;
  left: 10px;
  background-size: cover;
}
.slick-images .item .zoom {
  display: block;
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  font-size: 40px;
  font-weight: bold;
  color: #fff;
  background: url(../img/button-circle-white.png);
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 0%);
  transition: all 0.4s ease-in-out 0s;
  opacity: 0;
}
.slick-images .item:hover .zoom {
  transform: translate(-50%, -50%);
  opacity: 1;
}
@media (max-width: 700px) {
  .mod-project-images .mod-header {
    margin-bottom: 60px;
  }
  .mod-project-images h2 {
    font-size: 32px;
  }
}
@media (max-width: 460px) {
  .slick-images .item {
    height: 220px;
  }
  .slick-images .slick-prev {
    left: 27px;
  }
  .slick-images .slick-next {
    right: 27px;
  }
}
@media (max-width: 400px) {
  .mod-project-images {
    padding: 50px 0 40px;
  }
  .mod-project-images .mod-header {
    margin-bottom: 40px;
  }
  .mod-project-images h2 {
    font-size: 28px;
  }
  .slick-images .item {
    height: 180px;
  }
}
.mod-project-projects {
  padding: 60px 0;
  background: #1c1e2a;
  color: #fff;
}
.mod-project-projects h2 {
  color: inherit;
  margin: 0;
  font-size: 30px;
  text-transform: uppercase;
}
.mod-project-projects .logo-container {
  padding: 60px 0;
  position: relative;
}
.mod-project-projects .logo-container:before {
  display: block;
  content: "";
  width: 4000px;
  height: 100%;
  background: url('../img/reddot.gif');
  position: absolute;
  top: 0;
  right: -50%;
}
.mod-project-projects .logo-row-top {
  overflow: hidden;
  position: relative;
  z-index: 200;
}
.mod-project-projects .logo-row-top .toggle {
  width: 15%;
  float: left;
  text-align: center;
  color: #fff;
  font-size: 40px;
  line-height: 120px;
}
.mod-project-projects .logo-row-top .toggle:hover {
  color: #e4190f;
}
.mod-project-projects .logos {
  width: 70%;
  float: left;
  overflow: hidden;
}
.mod-project-projects .logos .logo-box {
  display: block;
  float: left;
  width: 16.666%;
  text-align: center;
}
.mod-project-projects .logos .logo-box.spacer {
  opacity: 0;
}
.mod-project-projects .logos .logo {
  display: block;
  width: 120px;
  height: 120px;
  line-height: 120px;
  margin: 0 auto;
  text-align: center;
  border-radius: 50%;
  border: 2px solid #7a0822;
  font-size: 0;
  background-position: center center;
  background-size: 80px auto;
  background-repeat: no-repeat;
  transition: all 0.2s ease-in-out 0s;
  position: relative;
}
.mod-project-projects .logos .logo span {
  display: block;
  width: 100%;
  padding: 0 15px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2em;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.mod-project-projects .logos .logo:hover {
  border-color: #e4190f;
}
.mod-project-projects .logos-all {
  display: none;
}
.mod-project-projects .logo-row-top .logo-box:nth-child(1) {
  transition: all 0.2s ease-in-out 0s;
}
.mod-project-projects .logo-row-top .logo-box:nth-child(2) {
  transition: all 0.2s ease-in-out 0.05s;
}
.mod-project-projects .logo-row-top .logo-box:nth-child(3) {
  transition: all 0.2s ease-in-out 0.1s;
}
.mod-project-projects .logo-row-top .logo-box:nth-child(4) {
  transition: all 0.2s ease-in-out 0.15s;
}
.mod-project-projects .logo-row-top .logo-box:nth-child(5) {
  transition: all 0.2s ease-in-out 0.2s;
}
.mod-project-projects .logo-row-top .logo-box:nth-child(6) {
  transition: all 0.2s ease-in-out 0.25s;
}
.mod-project-projects .logo-row-top .logo-box:nth-child(7) {
  transition: all 0.2s ease-in-out 0.3s;
}
.mod-project-projects .logos-top.disappear .logo-box {
  transform: scale(0.8) translateX(30px);
  opacity: 0;
}
@media (max-width: 1280px) {
  .mod-project-projects .logos .logo-box {
    width: 25%;
  }
  .mod-project-projects .logos .logo-box:nth-child(1),
  .mod-project-projects .logos .logo-box:nth-child(2) {
    display: none;
  }
}
@media (max-width: 991px) {
  .mod-project-projects .logos .logo-box {
    width: 33.3334%;
  }
  .mod-project-projects .logos .logo-box:nth-child(1),
  .mod-project-projects .logos .logo-box:nth-child(2),
  .mod-project-projects .logos .logo-box:nth-child(3) {
    display: none;
  }
}
@media (max-width: 700px) {
  .mod-project-projects {
    padding: 20px 0 60px;
  }
  .mod-project-projects .mod-header {
    margin-bottom: 60px;
  }
}
@media (max-width: 580px) {
  .mod-project-projects .logos .logo-box {
    width: 50%;
  }
  .mod-project-projects .logos .logo-box:nth-child(1),
  .mod-project-projects .logos .logo-box:nth-child(2),
  .mod-project-projects .logos .logo-box:nth-child(3),
  .mod-project-projects .logos .logo-box:nth-child(4) {
    display: none;
  }
}
@media (max-width: 420px) {
  .mod-project-projects .mod-header {
    margin-bottom: 40px;
  }
  .mod-project-projects h2 {
    font-size: 28px;
  }
  .mod-project-projects .logo-row-top .toggle {
    width: 20%;
  }
  .mod-project-projects .logos {
    width: 60%;
  }
  .mod-project-projects .logos .logo-box {
    width: 100%;
  }
  .mod-project-projects .logos .logo-box:nth-child(1),
  .mod-project-projects .logos .logo-box:nth-child(2),
  .mod-project-projects .logos .logo-box:nth-child(3),
  .mod-project-projects .logos .logo-box:nth-child(4),
  .mod-project-projects .logos .logo-box:nth-child(5) {
    display: none;
  }
}
/* @end */
/* @group SITE FOOTER */
.site-footer {
  padding: 20px 0 10px;
  background: #fff;
  font-size: 16px;
}
.site-footer .pb-logo {
  margin: 0 auto;
}
.site-footer a {
  color: #1c1e2a;
}
.site-footer a:hover {
  color: #e4190f;
}
.site-footer ul {
  padding: 30px 0 0;
  text-align: center;
}
.site-footer ul li {
  display: inline-block;
  margin: 0 20px;
}
.site-footer ul:last-child {
  padding: 15px 0 30px;
}
.site-footer .logos {
  padding: 15px 0 0 0;
  text-align: center;
}
.site-footer .logos img {
  display: inline-block;
  height: 50px;
  margin: 0 10px;
}
/* @end */
/* @group FONTELLO */
@font-face {
  font-family: 'fontello';
  src: url('../font/fontello.eot?49273397ab');
  src: url('../font/fontello.eot?49273397ab#iefix') format('embedded-opentype'), url('../font/fontello.woff2?49273397ab') format('woff2'), url('../font/fontello.woff?49273397ab') format('woff'), url('../font/fontello.ttf?49273397ab') format('truetype'), url('../font/fontello.svg?49273397ab#fontello') format('svg');
  font-weight: normal;
  font-style: normal;
}
/* Chrome hack: SVG is rendered more smooth in Windozze. 100% magic, uncomment if you need it. */
/* Note, that will break hinting! In other OS-es font will be not as sharp as it could be */
/*
@media screen and (-webkit-min-device-pixel-ratio:0) {
  @font-face {
    font-family: 'fontello';
    src: url('../font/fontello.svg?49273397#fontello') format('svg');
  }
}
*/
[class^="icn-"]:before,
[class*=" icn-"]:before {
  font-family: "fontello";
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: 0.2em;
  text-align: center;
  /* opacity: .8; */
  /* For safety - reset parent styles, that can break glyph codes*/
  font-variant: normal;
  text-transform: none;
  /* fix buttons height, for twitter bootstrap */
  line-height: 1em;
  /* Animation center compensation - margins should be symmetric */
  /* remove if not needed */
  margin-left: 0.2em;
  /* you can be more comfortable with increased icons size */
  /* font-size: 120%; */
  /* Font smoothing. That was taken from TWBS */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Uncomment for 3D effect */
  /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
}
.icn-down-circle:before {
  content: '\e800';
}
/* '' */
.icn-left-circle:before {
  content: '\e801';
}
/* '' */
.icn-right-circle:before {
  content: '\e802';
}
/* '' */
.icn-up-circle:before {
  content: '\e803';
}
/* '' */
.icn-right-open-mini:before {
  content: '\e804';
}
/* '' */
.icn-left-open-mini:before {
  content: '\e805';
}
/* '' */
.icn-right-open:before {
  content: '\e806';
}
/* '' */
.icn-left-open:before {
  content: '\e807';
}
/* '' */
.icn-play-1:before {
  content: '\e80a';
}
/* '' */
.icn-down-open:before {
  content: '\f004';
}
/* '' */
.icn-up-open:before {
  content: '\f005';
}
/* '' */
.icn-right-open-2:before {
  content: '\f006';
}
/* '' */
.icn-left-open-2:before {
  content: '\f007';
}
/* '' */
/* @end */
/* @group ANIMATE */
/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.6.0
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2018 Daniel Eden
 */
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
@-webkit-keyframes bounce {
  from,
  20%,
  53%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
@keyframes bounce {
  from,
  20%,
  53%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}
@-webkit-keyframes flash {
  from,
  50%,
  to {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}
@keyframes flash {
  from,
  50%,
  to {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}
.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}
@-webkit-keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}
@-webkit-keyframes shake {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
@keyframes shake {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}
@-webkit-keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.headShake {
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-name: headShake;
  animation-name: headShake;
}
@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}
@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes wobble {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}
@-webkit-keyframes jello {
  from,
  11.1%,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
@keyframes jello {
  from,
  11.1%,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
.jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  transform-origin: center;
}
@-webkit-keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.bounceIn {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}
@-webkit-keyframes bounceInDown {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInDown {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}
@-webkit-keyframes bounceInLeft {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInLeft {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}
@-webkit-keyframes bounceInRight {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInRight {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}
@-webkit-keyframes bounceInUp {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInUp {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}
@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%,
  55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%,
  55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.bounceOut {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}
@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}
@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}
@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}
@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}
@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}
@-webkit-keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}
@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}
@-webkit-keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}
@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}
@-webkit-keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}
@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}
@-webkit-keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}
@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}
@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}
@-webkit-keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}
@-webkit-keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}
@-webkit-keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}
@-webkit-keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}
@-webkit-keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}
@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}
@-webkit-keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}
@-webkit-keyframes flip {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
@keyframes flip {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}
@-webkit-keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}
@-webkit-keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}
@-webkit-keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.flipOutX {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}
@-webkit-keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
.flipOutY {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}
@-webkit-keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}
@-webkit-keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}
@-webkit-keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}
@-webkit-keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}
@-webkit-keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}
@-webkit-keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}
@-webkit-keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}
@-webkit-keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
@keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}
@-webkit-keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}
@-webkit-keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}
@-webkit-keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}
@-webkit-keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}
@-webkit-keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%,
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%,
  80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
@keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%,
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%,
  80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-name: hinge;
  animation-name: hinge;
}
@-webkit-keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }
  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }
  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.jackInTheBox {
  -webkit-animation-name: jackInTheBox;
  animation-name: jackInTheBox;
}
@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}
@-webkit-keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}
@-webkit-keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}
@-webkit-keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}
@-webkit-keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}
@-webkit-keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
@keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}
@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
}
@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}
.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
}
@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}
.zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
}
@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
}
@-webkit-keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}
@-webkit-keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}
@-webkit-keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}
@-webkit-keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}
@-webkit-keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}
@-webkit-keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}
@-webkit-keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}
@-webkit-keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}
/* @end */
.pagination {
  margin-top: -40px;
  margin-bottom: 80px;
  text-align: center;
  position: relative;
  z-index: 100;
}
.pagination ul {
  display: inline-block;
}
.pagination ul li {
  display: inline-block;
  padding: 0 8px;
}
.tpl-contact .page-content {
  margin: 0 10%;
}
.tpl-contact .page-content .article-output {
  margin: 0;
}
.tpl-contact .tab-nav {
  overflow: hidden;
  margin-bottom: 30px;
  position: relative;
  padding-left: 10px;
}
.tpl-contact .tab-nav:before {
  display: block;
  content: "";
  width: 100%;
  height: 1px;
  background-color: #ddd;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
}
.tpl-contact .tab-nav li {
  display: block;
  float: left;
  margin-left: 10px;
  position: relative;
}
.tpl-contact .tab-nav li a {
  display: block;
  padding: 8px 20px;
  border: 1px solid #eee;
  position: relative;
}
.tpl-contact .tab-nav li a.selected {
  border-color: #ddd;
  border-bottom-color: #fff;
  z-index: 2;
}
.tpl-contact .tab-content .primary {
  margin-bottom: 60px;
}
.tpl-contact .tab-row {
  overflow: hidden;
}
.tpl-contact .tab-row .col {
  width: 50%;
  float: left;
  padding: 0 20px;
}
@media (max-width: 1280px) {
  .tpl-contact .page-content {
    margin: 0;
  }
}
@media (max-width: 767px) {
  .tpl-contact .tab-content .primary {
    margin-bottom: 0;
  }
  .tpl-contact .tab-row {
    overflow: hidden;
  }
  .tpl-contact .tab-row .col {
    width: 100%;
    float: none;
    padding: 0;
    margin-bottom: 40px;
  }
}
@media (max-width: 660px) {
  .tpl-contact .tab-nav {
    margin-bottom: 30px;
    padding-left: 0;
  }
  .tpl-contact .tab-nav:before {
    display: none;
  }
  .tpl-contact .tab-nav li {
    display: block;
    width: 50%;
    margin-left: 0;
    padding: 3px;
  }
  .tpl-contact .tab-nav li a {
    display: block;
    text-align: center;
  }
  .tpl-contact .tab-nav li a.selected {
    border-color: #888;
    border-bottom-color: #888;
  }
}
.bigspinner {
  position: relative;
}
.bigspinner .c {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-position: center center;
  background-size: contain;
}
.bigspinner .c:before,
.bigspinner .c:after,
.bigspinner .c .inner,
.bigspinner .c .inner:before,
.bigspinner .c .inner:after {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  will-change: transform;
}
.bigspinner .circles-1:before {
  background-image: url('../img/bigspinner/circle-2a.png');
  background-size: 450px auto;
}
.bigspinner .circles-1:after {
  background-image: url('../img/bigspinner/circle-2.png');
  background-size: 490px auto;
}
.bigspinner .circles-2:before {
  background-image: url('../img/bigspinner/circle-1a.png');
  background-size: 520px auto;
}
.bigspinner .circles-2:after {
  background-image: url('../img/bigspinner/circle-4a.png');
  background-size: contain;
}
.bigspinner .circles-3:before {
  background-image: url('../img/bigspinner/circle-4.png');
  background-size: 640px auto;
}
.bigspinner .circles-3:after {
  background-image: url('../img/bigspinner/circle-4b.png');
  background-size: 680px auto;
}
.bigspinner.spinmearound .circles-1:before {
  -webkit-animation: rtcw 25s ease-in-out infinite;
  animation: rtcw 25s ease-in-out infinite;
}
.bigspinner.spinmearound .circles-1:after {
  -webkit-animation: rtcw 15s ease-in-out infinite;
  animation: rtcc 15s ease-in-out infinite;
}
.bigspinner.spinmearound .circles-2:before {
  -webkit-animation: bigspin2 12s ease-in-out infinite;
  animation: bigspin2 12s ease-in-out infinite;
}
.bigspinner.spinmearound .circles-2:after {
  -webkit-animation: bigspin2 20s ease-in-out infinite;
  animation: bigspin2 20s ease-in-out infinite;
}
.bigspinner.spinmearound .circles-3:after {
  -webkit-animation: rtcw 17s ease-in-out infinite;
  animation: rtcw 17s ease-in-out infinite;
}
.mod-hero-about {
  background: #1c1e2a;
  overflow: hidden;
  position: relative;
  padding: 140px 0 80px;
}
.mod-hero-about:after {
  display: block;
  content: "";
  background: url('../img/reddot.gif');
  position: absolute;
  top: 300px;
  right: 35%;
  bottom: 100px;
  left: 0;
  z-index: 5;
}
.mod-hero-about .container {
  position: relative;
}
.mod-hero-about .bgimg-main {
  width: 100%;
  height: 100%;
  background-position: center center;
  background-size: cover;
  opacity: 0.4;
  position: absolute;
  top: 0;
  left: 0;
}
.mod-hero-about .bgimg-main:before {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#1c1e2a+0,1c1e2a+100&0.5+0,1+40 */
  background: -moz-linear-gradient(top, rgba(28, 30, 42, 0.5) 0%, #1c1e2a 40%, #1c1e2a 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(28, 30, 42, 0.5) 0%, #1c1e2a 40%, #1c1e2a 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(28, 30, 42, 0.5) 0%, #1c1e2a 40%, #1c1e2a 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#801c1e2a', endColorstr='#1c1e2a', GradientType=0);
  /* IE6-9 */
  opacity: 1;
  position: absolute;
  top: 0;
  right: 0;
}
.mod-hero-about .page-header-mobile {
  display: none;
  max-width: 500px;
  text-align: center;
  margin: 30px auto;
}
.mod-hero-about .about-content {
  width: 675px;
  height: 675px;
  position: absolute;
  left: 35%;
  top: 20px;
}
.mod-hero-about .bigspinner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  position: absolute;
  left: 0;
  top: 0;
}
.mod-hero-about .arrow {
  display: block;
  width: 120px;
  height: 300px;
  background-image: url(../img/services/arrow.svg);
  background-position: right center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 61%;
  right: -15%;
  transform: translateY(-50%);
  pointer-events: none;
}
.mod-hero-about .service-icon {
  display: block;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background-color: rgba(28, 30, 42, 0.85);
  background-size: 70%;
  background-position: center center;
  background-repeat: no-repeat;
  position: absolute;
  top: 22%;
  left: 18%;
}
.mod-hero-about .mod-services {
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.mod-hero-about .mod-services .slick-services {
  width: 320px;
  margin: 0 auto;
}
.mod-hero-about .mod-services .slick-services .item {
  text-align: center;
}
.mod-hero-about .mod-services .slick-services .item h2 {
  display: none;
  font-size: 26px;
  color: #e4190f;
  text-transform: uppercase;
}
.mod-hero-about .mod-services .slick-services .item p {
  margin-bottom: 0;
}
.mod-hero-about .mod-services .slick-services .slick-dots {
  bottom: -40px;
}
.mod-hero-about .service-point {
  display: block;
  text-transform: uppercase;
  color: #666;
  position: absolute;
  top: 0;
  line-height: 30px;
  font-weight: 700;
}
.mod-hero-about .service-point:before {
  display: block;
  content: "";
  width: calc(100% + 40px);
  height: 2px;
  background: #e4190f;
  position: absolute;
  bottom: -10px;
}
.mod-hero-about .service-point:after {
  display: block;
  content: "";
  height: 100px;
  width: 2px;
  background: #e4190f;
  position: absolute;
  bottom: -8px;
}
.mod-hero-about .service-point .circle {
  display: block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  font-weight: 700;
  color: #1c1e2a;
  background: #666;
  border-radius: 50%;
  float: left;
  margin-right: 8px;
}
.mod-hero-about .service-point.active {
  color: #fff;
}
.mod-hero-about .service-point.active .circle {
  background: #fff;
}
.mod-hero-about .service-point.sp-1 {
  top: 100px;
  right: -182px;
}
.mod-hero-about .service-point.sp-1:before {
  right: 0;
}
.mod-hero-about .service-point.sp-1:after {
  left: -42px;
  transform-origin: bottom right;
  transform: rotate(-135deg);
}
.mod-hero-about .service-point.sp-2 {
  top: 42%;
  left: -140px;
}
.mod-hero-about .service-point.sp-2:before {
  left: 0;
}
.mod-hero-about .service-point.sp-2:after {
  right: -39px;
  bottom: -9px;
  transform-origin: bottom right;
  transform: rotate(135deg);
}
.mod-hero-about .service-point.sp-3 {
  top: 75%;
  left: -200px;
}
.mod-hero-about .service-point.sp-3:before {
  left: 0;
}
.mod-hero-about .service-point.sp-3:after {
  right: -39px;
  bottom: -11px;
  transform-origin: bottom right;
  transform: rotate(40deg);
}
.mod-hero-about .service-point.sp-4 {
  top: 90%;
  right: -100px;
}
.mod-hero-about .service-point.sp-4:before {
  right: 0;
}
.mod-hero-about .service-point.sp-4:after {
  left: -41px;
  transform-origin: bottom right;
  transform: rotate(-40deg);
}
.mod-hero-about .container {
  min-height: 720px;
  position: relative;
  z-index: 200;
  color: #fff;
}
.mod-hero-about .page-header {
  max-width: 500px;
  margin-left: 60px;
  margin-top: 40px;
}
.mod-hero-about .page-header h1 {
  margin-bottom: 20px;
  text-transform: uppercase;
}
.mod-hero-about .page-header .article-output {
  margin-right: 145px;
}
.mod-hero-about .page-header-actions {
  display: none;
  position: absolute;
  bottom: 15px;
  left: 130px;
}
@media (max-width: 1480px) {
  .mod-hero-about .arrow {
    right: -12%;
  }
  .mod-hero-about .service-point.sp-1 {
    top: 24px;
    right: -45px;
  }
  .mod-hero-about .service-point.sp-4 {
    top: 97%;
    right: -29px;
  }
}
@media (max-width: 1280px) {
  .bigspinner .circles-2:after {
    background-size: 590px auto;
  }
  .bigspinner .circles-3:before {
    display: none;
  }
  .bigspinner .circles-3:after {
    background-size: 600px auto;
  }
  .mod-hero-about .page-header {
    margin-left: 0;
    margin-top: 30px;
  }
  .mod-hero-about .about-content {
    width: 600px;
    height: 600px;
    left: 31%;
    top: 80px;
  }
  .mod-hero-about .page-header-actions {
    left: 30px;
  }
  .mod-hero-about .service-icon {
    top: 17%;
    left: 17%;
  }
  .mod-hero-about .service-point.sp-1 {
    top: -9px;
    right: -25px;
  }
}
@media (max-width: 991px) {
  .mod-hero-about {
    padding: 80px 0;
  }
  .mod-hero-about:after {
    bottom: 92px;
  }
  .mod-hero-about .container {
    min-height: 770px;
  }
  .mod-hero-about .page-header {
    margin: 40px auto;
    text-align: center;
  }
  .mod-hero-about .page-header .article-output {
    margin: 0;
  }
  .mod-hero-about .about-content {
    width: 520px;
    height: 520px;
    position: relative;
    left: 0;
    top: 0;
    margin: -10px auto 0;
  }
  .mod-hero-about .service-points {
    display: none;
  }
  .mod-hero-about .service-icon {
    top: 10%;
    left: 12%;
  }
  .mod-hero-about .bigspinner {
    border-radius: 0;
  }
  .mod-hero-about .bigspinner .circles-2:after {
    display: none;
  }
  .mod-hero-about .bigspinner .circles-3:before {
    display: none;
  }
  .mod-hero-about .bigspinner .circles-3:after {
    display: none;
  }
  .mod-hero-about .mod-services .slick-services .item h2 {
    display: block;
  }
  .mod-hero-about .page-header-actions {
    bottom: 0;
  }
}
@media (max-width: 767px) {
  .mod-hero-about .page-header {
    display: none;
  }
  .mod-hero-about .page-header-mobile {
    display: block;
  }
  .mod-hero-about .page-header-actions {
    display: block;
    position: static;
    text-align: center;
  }
}
@media (max-width: 670px) {
  .mod-hero-about .arrow {
    display: none;
  }
  .mod-hero-about .about-content {
    position: relative;
    left: 50%;
    margin-left: -260px;
  }
}
@media (max-width: 470px) {
  .mod-hero-about .page-header {
    margin: 30px auto 40px;
  }
  .mod-hero-about .page-header h1 {
    font-size: 28px;
  }
}
.mod-about-grid .mod-header {
  text-align: center;
  max-width: 800px;
  margin: 80px auto;
}
.mod-about-grid .mod-header .title {
  margin-bottom: 20px;
}
/*# sourceMappingURL=screen.css.map */