@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 {
  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 {
  color: inherit;
}
h1 {
  font-size: 32px;
  color: #1c1e2a;
}
h2 {
  font-size: 25px;
  line-height: 1.3em;
  color: #1c1e2a;
}
h3 {
  font-size: 20px;
  line-height: 1.3em;
}
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;
}
.txt-red {
  color: #e4190f;
}
.txt-white {
  color: #fff;
}
.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;
}
.fullscreen .button.cta-fixed {
  opacity: 0 !important;
}
@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;
}
.fullscreen .site-header {
  transform: translateY(-100px);
  opacity: 0;
}
@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 PAGE-BANNER-HOME */
.page-banner-home {
  background: #1c1e2a;
  position: relative;
  overflow: hidden;
}
.page-banner-home .container {
  height: 900px;
}
.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 .bigspin {
  width: 2546px;
  height: 1800px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}
.page-banner-home .bigspin .c {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-position: center center;
  background-size: contain;
}
.page-banner-home .bigspin .c:before,
.page-banner-home .bigspin .c:after,
.page-banner-home .bigspin .c .inner,
.page-banner-home .bigspin .c .inner:before,
.page-banner-home .bigspin .c .inner:after {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-position: center center;
  background-size: contain;
}
.page-banner-home .bigspin .center {
  background-image: url('../img/bigspin/lg/center.png');
}
.page-banner-home .bigspin .center:before {
  background-image: url('../img/bigspin/svg/Laag-18.svg');
}
.page-banner-home .bigspin .logo {
  background-image: url('../img/bigspin/lg/logo.png');
}
.page-banner-home .bigspin .circles-1:before {
  background-image: url('../img/bigspin/lg/circle-1.png');
}
.page-banner-home .bigspin .circles-1:after {
  background-image: url('../img/bigspin/lg/circle-1a.png');
}
.page-banner-home .bigspin .circles-2:before {
  background-image: url('../img/bigspin/svg/Laag-5.svg');
}
.page-banner-home .bigspin .circles-2:after {
  background-image: url('../img/bigspin/svg/Laag-5.svg');
}
.page-banner-home .bigspin .circles-4:before {
  background-image: url('../img/bigspin/lg/circle-4.png');
}
.page-banner-home .bigspin .circles-4:after {
  background-image: url('../img/bigspin/lg/circle-4a.png');
}
.page-banner-home .bigspin .circles-4 .inner:before {
  background-image: url('../img/bigspin/lg/circle-4b.png');
}
.page-banner-home .bigspin .circles-5:before {
  background-image: url('../img/bigspin/lg/circle-5.png');
}
.page-banner-home .bigspin .circles-5:after {
  background-image: url('../img/bigspin/lg/circle-5a.png');
}
.page-banner-home .bigspin .circles-5 .inner:before {
  background-image: url('../img/bigspin/lg/circle-5b.png');
}
.page-banner-home .bigspin .circles-5 .inner:after {
  background-image: url('../img/bigspin/lg/circle-5b.png');
}
.page-banner-home .bigspin.spinmearound .center:before {
  -webkit-animation: bigspin1 40s ease-in-out infinite;
  animation: bigspin1 40s ease-in-out infinite;
}
.page-banner-home .bigspin.spinmearound .circles-1:before {
  -webkit-animation: rtcw 25s ease-in-out infinite;
  animation: rtcw 25s ease-in-out infinite;
}
.page-banner-home .bigspin.spinmearound .circles-1:after {
  -webkit-animation: rtcw 25s ease-in-out infinite;
  animation: rtcw 25s ease-in-out infinite;
}
.page-banner-home .bigspin.spinmearound .circles-2:before {
  -webkit-animation: rtcc 35s linear infinite;
  animation: rtcc 35s linear infinite;
}
.page-banner-home .bigspin.spinmearound .circles-2:after {
  -webkit-animation: rtcc 35s ease-in-out infinite;
  animation: rtcc 35s ease-in-out infinite;
}
.page-banner-home .bigspin.spinmearound .circles-3:before {
  -webkit-animation: rtcw 28s linear infinite;
  animation: rtcw 28s linear infinite;
}
.page-banner-home .bigspin.spinmearound .circles-3:after {
  -webkit-animation: bigspin2 12s ease-in-out infinite;
  animation: bigspin2 12s ease-in-out infinite;
}
.page-banner-home .bigspin.spinmearound .circles-3 .inner:before {
  -webkit-animation: rtcc 28s linear infinite;
  animation: rtcc 28s linear infinite;
}
.page-banner-home .bigspin.spinmearound .circles-3 .inner:after {
  -webkit-animation: rtcw 15s linear infinite;
  animation: rtcw 15s linear infinite;
}
.page-banner-home .bigspin.spinmearound .circles-4:before {
  -webkit-animation: rtcw 28s linear infinite;
  animation: rtcw 28s linear infinite;
}
.page-banner-home .bigspin.spinmearound .circles-4:after {
  -webkit-animation: bigspin2 20s ease-in-out infinite;
  animation: bigspin2 20s ease-in-out infinite;
}
.page-banner-home .bigspin.spinmearound .circles-4 .inner:before {
  -webkit-animation: rtcc 28s linear infinite;
  animation: rtcc 28s linear infinite;
}
.page-banner-home .bigspin.spinmearound .circles-5:before {
  -webkit-animation: rtcw 28s linear infinite;
  animation: rtcw 28s linear infinite;
}
.page-banner-home .bigspin.spinmearound .circles-5:after {
  -webkit-animation: rtcc 20s ease-in-out infinite;
  animation: rtcc 20s ease-in-out infinite;
}
.page-banner-home .bigspin.spinmearound .circles-5 .inner:before {
  -webkit-animation: bigspin2 20s ease-in-out infinite;
  animation: bigspin2 20s ease-in-out infinite;
}
.page-banner-home .bigspin.spinmearound .circles-5 .inner:after {
  -webkit-animation: bigspin2 28s ease-in-out infinite;
  animation: bigspin2 28s ease-in-out infinite;
}
.page-banner-home .bigspin.paused .center:before,
.page-banner-home .bigspin.paused .circles-1:before,
.page-banner-home .bigspin.paused .circles-2:before,
.page-banner-home .bigspin.paused .circles-3:before,
.page-banner-home .bigspin.paused .circles-4:before,
.page-banner-home .bigspin.paused .circles-5:before,
.page-banner-home .bigspin.paused .center:after,
.page-banner-home .bigspin.paused .circles-1:after,
.page-banner-home .bigspin.paused .circles-2:after,
.page-banner-home .bigspin.paused .circles-3:after,
.page-banner-home .bigspin.paused .circles-4:after,
.page-banner-home .bigspin.paused .circles-5:after {
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
}
.page-banner-home .bigspin.paused .center .inner:before,
.page-banner-home .bigspin.paused .circles-1 .inner:before,
.page-banner-home .bigspin.paused .circles-2 .inner:before,
.page-banner-home .bigspin.paused .circles-3 .inner:before,
.page-banner-home .bigspin.paused .circles-4 .inner:before,
.page-banner-home .bigspin.paused .circles-5 .inner:before,
.page-banner-home .bigspin.paused .center .inner:after,
.page-banner-home .bigspin.paused .circles-1 .inner:after,
.page-banner-home .bigspin.paused .circles-2 .inner:after,
.page-banner-home .bigspin.paused .circles-3 .inner:after,
.page-banner-home .bigspin.paused .circles-4 .inner:after,
.page-banner-home .bigspin.paused .circles-5 .inner:after {
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
}
.page-banner-home .info-box {
  display: block;
  position: absolute;
  top: 20%;
  left: 130px;
  z-index: 600;
  color: #fff;
}
.page-banner-home .info-box span {
  display: block;
}
.page-banner-home .info-box .title {
  font-size: 18px;
  font-weight: bold;
  padding-bottom: 10px;
  margin-bottom: 10px;
  text-transform: uppercase;
  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: 16px;
  width: 175px;
}
.page-banner-home .banner-title {
  width: 550px;
  font-weight: bold;
  color: #fff;
  font-size: 35px;
  line-height: 1.1em;
  text-align: center;
  position: absolute;
  top: 100px;
  left: 50%;
  z-index: 600;
  transform: translateX(-50%);
}
.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;
}
.page-banner-home .workers {
  width: 50%;
  height: 100px;
  position: absolute;
  left: 50%;
  bottom: -10px;
  z-index: 20;
}
.page-banner-home .workers .worker {
  width: 300px;
  height: 500px;
  text-align: center;
  line-height: 300px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-position: center bottom;
  background-size: contain;
  background-repeat: no-repeat;
}
.page-banner-home .workers .worker-1 {
  left: -600px;
  background-image: url(../img/workers/pb-workers-1.png);
  background-size: 290px auto;
  background-color: rgba(33, 76, 123, 0);
  z-index: 20;
}
.page-banner-home .workers .worker-2 {
  left: -490px;
  background-image: url(../img/workers/pb-workers-2.png);
  background-size: 215px auto;
  background-color: rgba(133, 76, 123, 0);
  z-index: 30;
}
.page-banner-home .workers .worker-3 {
  left: -320px;
  background-image: url(../img/workers/pb-workers-3.png);
  background-size: 260px auto;
  background-color: rgba(133, 16, 200, 0);
  z-index: 40;
}
.page-banner-home .workers .worker-4 {
  left: -150px;
  background-image: url(../img/workers/pb-workers-4.png);
  background-size: 270px auto;
  background-color: rgba(10, 190, 200, 0);
  z-index: 50;
}
.page-banner-home .workers .worker-5 {
  left: 50px;
  background-image: url(../img/workers/pb-workers-5.png);
  background-size: 470px auto;
  background-position: right bottom;
  background-color: rgba(220, 190, 20, 0);
  z-index: 40;
}
.page-banner-home .workers .worker-6 {
  left: 120px;
  background-image: url(../img/workers/pb-workers-6.png);
  background-size: 330px auto;
  background-color: rgba(15, 15, 20, 0);
  z-index: 30;
}
.page-banner-home .workers .worker-7 {
  width: 350px;
  left: 280px;
  background-image: url(../img/workers/pb-workers-7.png);
  background-size: 370px auto;
  background-color: rgba(133, 16, 200, 0);
  z-index: 20;
}
.page-banner-home .stats-panel {
  width: 100%;
  padding: 100px 0 40px;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 50;
  color: #fff;
}
.page-banner-home .stats-panel:before {
  display: block;
  content: "";
  width: 3000px;
  height: 100%;
  position: absolute;
  left: -1000px;
  bottom: 0;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#1e222c+0,1e222c+100&0+0,1+100 */
  background: -moz-linear-gradient(top, rgba(30, 34, 44, 0) 0%, #1e222c 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(30, 34, 44, 0) 0%, #1e222c 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(30, 34, 44, 0) 0%, #1e222c 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#001e222c', endColorstr='#1e222c', GradientType=0);
  /* IE6-9 */
  opacity: 1;
}
.page-banner-home .stats {
  float: left;
  overflow: hidden;
  text-align: center;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
.page-banner-home .stats .stat {
  float: left;
  width: 160px;
  margin: 0 30px;
}
.page-banner-home .stats .stat .icon {
  height: 60px;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  margin-bottom: 15px;
}
.page-banner-home .stats .stat .number {
  font-size: 40px;
  line-height: 1;
  font-weight: bold;
  margin-bottom: 10px;
}
.page-banner-home .stats .stat .text {
  display: block;
  font-size: 18px;
}
@-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 .eq-box {
    right: 40px;
  }
  .page-banner-home .bigspin .circles-5 {
    display: none;
  }
}
@media (max-width: 1280px) {
  .page-banner-home .info-box {
    display: none;
  }
  .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: 180px;
  }
  .page-banner-home .cases-box .slick-cases-toggle:after {
    right: 180px;
  }
  .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(-240px);
  }
  .page-banner-home .eq-box {
    top: 50%;
    transform: translateY(-180px);
  }
}
@media (max-width: 680px) {
  .page-banner-home .stats .stat {
    width: 140px;
    margin: 0 10px;
  }
  .page-banner-home .stats .stat .icon {
    height: 40px;
  }
  .page-banner-home .stats .stat .number {
    font-size: 32px;
  }
  .page-banner-home .stats .stat .text {
    font-size: 16px;
  }
}
@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: 120px;
  }
  .page-banner-home .cases-box .slick-cases-toggle:after {
    right: 119px;
  }
}
@media (max-width: 550px) {
  .page-banner-home .banner-title {
    width: 100%;
    padding: 0 30px;
    font-size: 28px;
    position: absolute;
    top: 100px;
    left: 0;
    transform: translateX(0);
  }
}
@media (max-width: 480px) {
  .page-banner-home .stats-panel {
    padding: 125px 0 25px;
  }
  .page-banner-home .stats-panel:before {
    opacity: 0.9;
  }
  .page-banner-home .stats .stat {
    width: 100%;
    margin: 0;
    padding: 0;
    text-align: left;
    margin-bottom: 15px;
    position: relative;
  }
  .page-banner-home .stats .stat .icon {
    height: 40px;
    width: 40px;
    float: none;
    margin: 0;
    position: absolute;
    top: 0;
    left: 25px;
  }
  .page-banner-home .stats .stat .number {
    width: 100%;
    padding-left: 85px;
    font-size: 32px;
    float: left;
    margin: 0 15px 0 0;
  }
  .page-banner-home .stats .stat .text {
    width: 100%;
    padding-left: 85px;
    font-size: 16px;
  }
}
@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);
  }
}
@media (max-width: 375px) and (min-height: 692px) {
  .page-banner-home .info-box {
    transform: translateY(280px);
  }
  .page-banner-home .cases-box {
    transform: translateY(-224px);
  }
}
/* @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);
}
@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;
}
@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 10%;
  }
  .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: #fff;
  color: #1c1e2a;
  position: relative;
  overflow: hidden;
  padding-bottom: 0;
}
.mod-solutions .mod-header {
  position: relative;
  color: #1c1e2a;
}
.mod-solutions .mod-header .actions {
  position: absolute;
  top: 0;
  right: 10%;
}
.mod-solutions .mod-header .button:hover {
  border-color: #1c1e2a;
  color: #e4190f;
}
.mod-solutions .mod-header .button:hover:before {
  background-image: url(../img/button-dark.svg);
}
.mod-solutions .article-item {
  margin-bottom: 60px;
}
.mod-solutions .article-item .inner:before {
  background-image: url(../img/hoekje-wit.png);
}
.mod-solutions .grid-more {
  display: none;
}
.mod-solutions .grid-more.open {
  display: block;
}
.mod-solutions .grid-switch {
  background: #fff;
  text-align: center;
  position: relative;
  z-index: 100;
  padding: 30px 0 60px;
  transition: all 0.8s ease-in-out 0s;
}
.mod-solutions .grid-switch .grid-toggle {
  display: inline-block;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 30px;
  color: #1c1e2a;
  text-decoration: none;
}
.mod-solutions .grid-switch .dark-spinner {
  display: block;
  width: 86px;
  height: 86px;
  margin: 0 auto 15px;
  background: url(../img/dark-spinner.png);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  line-height: 86px;
  color: #e4190f;
  text-align: center;
  font-size: 36px;
}
@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 {
  overflow: hidden;
}
.article-item .inner {
  background: #1c1e2a;
  background-position: center center;
  background-size: cover;
  height: 450px;
  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 .worker {
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: -100px;
  background-size: contain;
  background-position: bottom left;
  background-repeat: no-repeat;
  z-index: 10;
  transition: all 0.3s ease-in-out 0.15s;
}
.article-item .worker.worker5 {
  left: -90px;
}
.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.isvacancy h2 {
  padding-left: 45%;
}
.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 .worker {
  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: 1480px) {
  .article-item .worker {
    left: -90px;
  }
  .article-item .worker.worker5 {
    left: -62px;
  }
}
@media (max-width: 1280px) {
  .tpl-volg .article-item .inner {
    height: 420px;
  }
  .article-item .worker {
    left: 0;
    z-index: 2;
    background-size: auto 420px;
    background-position: center bottom;
  }
  .article-item .worker.worker5 {
    left: 0;
  }
  .article-item.isvacancy .inner:after {
    z-index: 3;
  }
  .article-item.isvacancy h2 {
    padding-left: 30px;
  }
}
@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-VIDEO */
.mod-video {
  background: #fff;
  color: #1c1e2a;
  padding-top: 0;
  padding-bottom: 0;
  position: relative;
}
.mod-video.dark {
  border: 10px solid red;
}
.mod-video .bg-inner {
  background: #1c1e2a;
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  position: relative;
}
.mod-video .vr-tour {
  display: block;
  border: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.4s ease-in-out 1s;
}
.mod-video .inner {
  height: 500px;
  transition: all 1s ease-in-out 0s;
}
.mod-video .btn-close {
  display: block;
  color: #e4190f;
  text-transform: uppercase;
  position: absolute;
  top: 0;
  right: 10px;
  z-index: 5;
  transition: all 0.5s ease-in-out 0s;
  opacity: 0;
  font-size: 90px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.mod-video .btn-close i:before {
  margin: 0;
}
.mod-video .playbutton {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 5;
  transition: all 0.5s ease-in-out 0s;
  transform: translate(-50%, -50%);
}
.mod-video .playbutton .tag-line {
  color: #fff;
  text-transform: uppercase;
  width: 400px;
  position: absolute;
  top: 135px;
  left: 180px;
}
.mod-video .playbutton .tag-line .title {
  display: block;
  font-size: 20px;
  font-weight: bold;
  padding-bottom: 10px;
  margin-bottom: 10px;
  position: relative;
}
.mod-video .playbutton .tag-line .title:before {
  display: block;
  content: "";
  width: 250px;
  height: 2px;
  background: #e4190f;
  position: absolute;
  bottom: 0;
  left: -15px;
}
.mod-video .playbutton .tag-line .title:after {
  display: block;
  content: "";
  width: 90px;
  height: 2px;
  background: #e4190f;
  position: absolute;
  bottom: 1px;
  left: -14px;
  transform: rotate(-135deg);
  transform-origin: bottom left;
}
.mod-video .playbutton .tag-line .subtitle {
  display: block;
  font-size: 18px;
}
.mod-video .btn-vr {
  display: block;
  text-align: center;
  line-height: 180px;
  font-size: 80px;
  color: #fff;
}
.mod-video .btn-vr i:before {
  margin: 0;
}
.mod-video .btn-vr:hover {
  color: #e4190f;
}
.mod-video.open .inner {
  height: 100vh;
  pointer-events: none;
}
.mod-video.open .btn-close {
  top: 10px;
  opacity: 1;
}
.mod-video.open .playbutton {
  top: -80px;
  opacity: 0;
}
.mod-video.open .vr-tour {
  opacity: 1;
}
@media (max-width: 991px) {
  .mod-video .playbutton .tag-line {
    top: 200px;
    left: 50px;
  }
  .mod-video .playbutton .tag-line .title:before {
    width: 280px;
    left: -35px;
  }
  .mod-video .playbutton .tag-line .title:after {
    width: 140px;
    left: -34px;
    transform: rotate(-70deg);
  }
}
@media (max-width: 730px) {
  .mod-video .playbutton .btn-vr {
    margin: 0 auto;
  }
  .mod-video .playbutton .tag-line {
    position: static;
    text-align: center;
    margin-top: 20px;
  }
  .mod-video .playbutton .tag-line .title:before,
  .mod-video .playbutton .tag-line .title:after {
    display: none;
  }
}
@media (max-width: 600px) {
  .mod-video .bg-inner {
    background: #1c1e2a;
    background-size: cover;
    background-position: center center;
    background-attachment: scroll;
  }
  .mod-video .inner {
    height: 320px;
  }
}
@media (max-width: 420px) {
  .mod-video .inner {
    height: auto;
  }
  .mod-video .playbutton {
    position: static;
    transform: translate(0);
    margin: 30px 0 30px;
  }
  .mod-video .playbutton .tag-line {
    width: 100%;
  }
}
/* @end */
/* @group MOD-ABOUT */
.mod-about {
  background: #1c1e2a;
  color: #fff;
  padding-top: 80px;
}
.mod-about .mod-header p {
  color: #e4190f;
}
.mod-about .c-row .c-col-6 {
  width: 48%;
  float: left;
}
.mod-about .c-row .c-col-3 {
  width: 26%;
  float: left;
  padding-left: 45px;
}
.mod-about .article-item {
  overflow: visible;
}
.mod-about .article-item .inner {
  height: 380px;
}
.mod-about .article-item .inner:before {
  background-image: url(../img/hoekje.png);
}
.mod-about .article-item h2 {
  padding: 20px;
  line-height: 1.2em;
}
.mod-about .ervaring-item {
  position: relative;
}
.mod-about .ervaring-item .bgimg {
  width: 1000px;
  height: 100%;
  background-color: #fff;
  background-size: cover;
  background-position: center center;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}
.mod-about .ervaring-item .inner {
  position: relative;
  z-index: 1;
}
.mod-about .ervaring-item .quote {
  width: 80%;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
.mod-about .ervaring-item .quote h3 {
  font-size: 30px;
}
@media (max-width: 991px) {
  .mod-about {
    padding-bottom: 20px;
  }
  .mod-about .c-row .c-col-3,
  .mod-about .c-row .c-col-6 {
    width: 33.3334%;
  }
  .mod-about .c-row .c-col-3 {
    padding-left: 30px;
  }
  .mod-about .article-item .inner {
    height: 320px;
  }
  .mod-about .ervaring-item .bgimg {
    width: 450px;
  }
  .mod-about .ervaring-item .quote {
    width: 90%;
  }
  .mod-about .ervaring-item .quote h3 {
    font-size: 20px;
    margin-bottom: 30px;
  }
}
@media (max-width: 720px) {
  .mod-about .mod-header {
    margin-bottom: 40px;
  }
  .mod-about .c-row .c-col-6 {
    width: 100%;
    margin-bottom: 30px;
    padding-right: 0;
  }
  .mod-about .c-row .c-col-3 {
    width: 50%;
    padding-left: 0;
    padding-right: 30px;
  }
  .mod-about .ervaring-item .inner {
    height: 300px;
  }
  .mod-about .ervaring-item .bgimg {
    width: 130%;
    right: -60px;
  }
  .mod-about .ervaring-item .quote h3 {
    font-size: 30px;
  }
  .mod-about .article-item .inner {
    height: 360px;
  }
}
@media (max-width: 500px) {
  .mod-about {
    padding-bottom: 0;
  }
  .mod-about .c-row .c-col-3 {
    width: 100%;
    margin-bottom: 40px;
  }
  .mod-about .ervaring-item .bgimg {
    width: 120%;
    right: -25px;
  }
  .mod-about .ervaring-item .quote h3 {
    font-size: 24px;
  }
}
/* @end */
/* @group MOD-STATS */
.mod-stats {
  clear: both;
  background: #1c1e2a;
  color: #fff;
  padding-top: 60px;
  position: relative;
}
.tpl-vacature .mod-stats {
  padding-top: 0px;
  padding-bottom: 60px;
}
.tpl-vacature .mod-stats .tagline {
  position: absolute;
  bottom: 0;
  right: 70px;
}
.mod-stats .mod-header h1 {
  margin-bottom: 30px;
}
.mod-stats .header-info {
  max-width: 600px;
  margin: 0 auto 0;
  text-align: center;
}
.mod-stats .header-info p {
  margin-bottom: 15px;
}
.mod-stats .row {
  margin-right: -50px;
  margin-left: -50px;
}
.mod-stats .col-xs-1,
.mod-stats .col-sm-1,
.mod-stats .col-md-1,
.mod-stats .col-lg-1,
.mod-stats .col-xs-2,
.mod-stats .col-sm-2,
.mod-stats .col-md-2,
.mod-stats .col-lg-2,
.mod-stats .col-xs-3,
.mod-stats .col-sm-3,
.mod-stats .col-md-3,
.mod-stats .col-lg-3,
.mod-stats .col-xs-4,
.mod-stats .col-sm-4,
.mod-stats .col-md-4,
.mod-stats .col-lg-4,
.mod-stats .col-xs-5,
.mod-stats .col-sm-5,
.mod-stats .col-md-5,
.mod-stats .col-lg-5,
.mod-stats .col-xs-6,
.mod-stats .col-sm-6,
.mod-stats .col-md-6,
.mod-stats .col-lg-6,
.mod-stats .col-xs-7,
.mod-stats .col-sm-7,
.mod-stats .col-md-7,
.mod-stats .col-lg-7,
.mod-stats .col-xs-8,
.mod-stats .col-sm-8,
.mod-stats .col-md-8,
.mod-stats .col-lg-8,
.mod-stats .col-xs-9,
.mod-stats .col-sm-9,
.mod-stats .col-md-9,
.mod-stats .col-lg-9,
.mod-stats .col-xs-10,
.mod-stats .col-sm-10,
.mod-stats .col-md-10,
.mod-stats .col-lg-10,
.mod-stats .col-xs-11,
.mod-stats .col-sm-11,
.mod-stats .col-md-11,
.mod-stats .col-lg-11,
.mod-stats .col-xs-12,
.mod-stats .col-sm-12,
.mod-stats .col-md-12,
.mod-stats .col-lg-12 {
  padding-right: 50px;
  padding-left: 50px;
}
.mod-stats .diagram-title {
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  font-size: 20px;
}
.mod-stats.hasdots .col-4 .diagram:before {
  display: block;
  content: "";
  width: 4000px;
  height: 100%;
  background: url('../img/reddot2.gif');
  background-position: center bottom;
  position: absolute;
  bottom: 0;
  left: -1500px;
  z-index: 0;
}
.mod-stats.haspattern {
  background: #1c1e2a url(../img/bg-printplaat.gif) center bottom no-repeat;
}
.mod-stats.haspattern: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-stats .row-diagrams {
  position: relative;
}
.mod-stats .row-diagrams .refline {
  width: 150%;
  height: 1px;
  background: #fff;
  position: absolute;
  bottom: 50%;
  left: -25%;
  z-index: 100;
}
.mod-stats .diagram {
  position: relative;
  margin-bottom: 15px;
}
.mod-stats .diagram .inner {
  height: 280px;
  position: relative;
  overflow: hidden;
}
.mod-stats .diagram .bar {
  width: 30%;
  position: absolute;
  z-index: 5;
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-bottom: none;
  bottom: -20%;
  opacity: 0;
  transition: all 0.4s ease-in-out 0s;
}
.mod-stats .diagram .bar:nth-child(1) {
  left: 0;
}
.mod-stats .diagram .bar:nth-child(2) {
  left: 50%;
  transform: translateX(-50%);
  background: rgba(122, 8, 34, 0.4);
  border-color: rgba(122, 8, 34, 0.8);
  transition: all 0.6s ease-in-out 0.05s;
}
.mod-stats .diagram .bar:nth-child(3) {
  right: 0;
  background: rgba(228, 25, 15, 0.4);
  border-color: rgba(228, 25, 15, 0.8);
  transition: all 0.8s ease-in-out 0.1s;
}
.mod-stats .diagram .bar .txt {
  display: block;
  width: 100%;
  text-align: center;
  color: #fff;
  position: absolute;
  bottom: 0px;
  left: 0;
  opacity: 0;
  transition: all 0.4s ease-in-out 0.15s;
}
.mod-stats .diagram.animated .bar {
  bottom: 0;
  opacity: 1;
}
.mod-stats .diagram.animated .bar .txt {
  bottom: 20px;
  opacity: 0.6;
}
.mod-stats .diagram.animated .bar:hover {
  transition: background 0.3s ease-in-out 0s;
  background: rgba(255, 255, 255, 0.6);
}
.mod-stats .diagram.animated .bar:hover:nth-child(2) {
  background: rgba(122, 8, 34, 0.6);
}
.mod-stats .diagram.animated .bar:hover:nth-child(3) {
  background: rgba(228, 25, 15, 0.6);
}
.mod-stats .diagram.animated .bar:hover .txt {
  opacity: 1;
}
.mod-stats .legenda {
  margin-top: 40px;
  overflow: hidden;
}
.mod-stats .legenda li {
  float: left;
  margin-right: 30px;
  line-height: 24px;
}
.mod-stats .legenda li:nth-child(2) .box {
  background: rgba(122, 8, 34, 0.4);
  border-color: rgba(122, 8, 34, 0.8);
}
.mod-stats .legenda li:nth-child(3) .box {
  background: rgba(228, 25, 15, 0.4);
  border-color: rgba(228, 25, 15, 0.8);
}
.mod-stats .legenda .box {
  display: block;
  float: left;
  width: 24px;
  height: 24px;
  margin-right: 10px;
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.8);
}
.mod-stats .legenda .text {
  display: block;
  float: left;
  line-height: 24px;
  text-transform: lowercase;
}
@media (max-width: 1280px) {
  .mod-stats .row {
    margin-right: -20px;
    margin-left: -20px;
  }
  .mod-stats .col-xs-1,
  .mod-stats .col-sm-1,
  .mod-stats .col-md-1,
  .mod-stats .col-lg-1,
  .mod-stats .col-xs-2,
  .mod-stats .col-sm-2,
  .mod-stats .col-md-2,
  .mod-stats .col-lg-2,
  .mod-stats .col-xs-3,
  .mod-stats .col-sm-3,
  .mod-stats .col-md-3,
  .mod-stats .col-lg-3,
  .mod-stats .col-xs-4,
  .mod-stats .col-sm-4,
  .mod-stats .col-md-4,
  .mod-stats .col-lg-4,
  .mod-stats .col-xs-5,
  .mod-stats .col-sm-5,
  .mod-stats .col-md-5,
  .mod-stats .col-lg-5,
  .mod-stats .col-xs-6,
  .mod-stats .col-sm-6,
  .mod-stats .col-md-6,
  .mod-stats .col-lg-6,
  .mod-stats .col-xs-7,
  .mod-stats .col-sm-7,
  .mod-stats .col-md-7,
  .mod-stats .col-lg-7,
  .mod-stats .col-xs-8,
  .mod-stats .col-sm-8,
  .mod-stats .col-md-8,
  .mod-stats .col-lg-8,
  .mod-stats .col-xs-9,
  .mod-stats .col-sm-9,
  .mod-stats .col-md-9,
  .mod-stats .col-lg-9,
  .mod-stats .col-xs-10,
  .mod-stats .col-sm-10,
  .mod-stats .col-md-10,
  .mod-stats .col-lg-10,
  .mod-stats .col-xs-11,
  .mod-stats .col-sm-11,
  .mod-stats .col-md-11,
  .mod-stats .col-lg-11,
  .mod-stats .col-xs-12,
  .mod-stats .col-sm-12,
  .mod-stats .col-md-12,
  .mod-stats .col-lg-12 {
    padding-right: 20px;
    padding-left: 20px;
  }
  .mod-stats .legenda li {
    margin-right: 20px;
    font-size: 16px;
  }
  .tpl-vacature .mod-stats .tagline {
    right: 30px;
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .tpl-vacature .mod-stats .tagline {
    max-width: 550px;
    position: static;
    text-align: center;
    font-size: 18px;
    margin: 0 auto 30px;
  }
  .mod-stats .col-3 {
    display: none;
  }
}
@media (max-width: 720px) {
  .mod-stats .header-info {
    margin: -20px auto 0;
  }
}
@media (max-width: 550px) {
  .mod-stats .col-2 {
    display: none;
  }
  .mod-stats .col-1,
  .mod-stats .col-2,
  .mod-stats .col-3,
  .mod-stats .col-4 {
    width: 50%;
  }
}
/* @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 .logos {
  width: 75%;
  float: left;
  overflow: hidden;
}
.mod-klanten .logos .logo-box {
  display: block;
  float: left;
  width: 16.6667%;
  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 .logos-top.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: 66.6667%;
  }
  .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: 991px) {
  .mod-klanten .logo-row-top .toggle,
  .mod-klanten .logo-row-bottom .toggle {
    width: 20%;
  }
  .mod-klanten .logos {
    width: 60%;
  }
  .mod-klanten .logos .logo-box {
    width: 33.3334%;
  }
  .mod-klanten .logos .logo-box:nth-child(n+4):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 .toggle-box.prev {
    display: none;
  }
  .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-CTA */
.mod-cta {
  background: #fff;
  padding: 50px 0;
}
.mod-cta .box {
  text-align: right;
  position: relative;
}
.mod-cta .button {
  position: absolute;
  top: 0;
  left: 100%;
}
.mod-cta p {
  margin: 0;
}
@media (max-width: 991px) {
  .mod-cta {
    padding: 30px 0;
  }
  .mod-cta .box {
    text-align: center;
  }
  .mod-cta h2 {
    margin-bottom: 20px;
  }
  .mod-cta .button {
    position: static;
    position: relative;
    top: auto;
    left: auto;
  }
  .mod-cta p {
    padding-top: 20px;
  }
}
/* @end */
/* @group VACATURE DETAIL */
.vacature-banner {
  background-color: #1c1e2a;
  background-size: cover;
  background-position: center center;
  color: #fff;
  position: relative;
}
.vacature-banner:before,
.vacature-banner:after {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
}
.vacature-banner:before {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#1c1e2a+0,1c1e2a+60&0+0,1+60 */
  background: -moz-linear-gradient(left, rgba(28, 30, 42, 0) 0%, #1c1e2a 60%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(left, rgba(28, 30, 42, 0) 0%, #1c1e2a 60%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, rgba(28, 30, 42, 0) 0%, #1c1e2a 60%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#001c1e2a', endColorstr='#1c1e2a', GradientType=1);
  /* IE6-9 */
  opacity: 0.9;
}
.vacature-banner:after {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#1c1e2a+0,1c1e2a+100&0+0,1+100 */
  background: -moz-linear-gradient(top, rgba(28, 30, 42, 0) 0%, #1c1e2a 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(28, 30, 42, 0) 0%, #1c1e2a 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(28, 30, 42, 0) 0%, #1c1e2a 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#001c1e2a', endColorstr='#1c1e2a', GradientType=0);
  /* IE6-9 */
  opacity: 1;
}
.vacature-banner .inner {
  position: relative;
}
.vacature-banner .inner:before {
  display: block;
  content: "";
  width: 1000px;
  height: 500px;
  background: url('../img/reddot.gif');
  position: absolute;
  bottom: 120px;
  right: 50%;
  z-index: 1;
}
.vacature-banner .container {
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.vacature-banner .col-lft,
.vacature-banner .col-rgt {
  width: 50%;
  height: 960px;
  padding-top: 160px;
  float: left;
  position: relative;
}
.vacature-banner .col-rgt {
  float: right;
  padding-left: 80px;
  position: relative;
  z-index: 10;
}
.vacature-banner .col-rgt .button {
  color: #fff;
}
.vacature-banner .col-rgt .button:hover {
  color: #e4190f;
  border-color: #fff;
}
.vacature-banner .col-rgt .button:hover:before {
  background-image: url(../img/button-white.svg);
}
.vacature-banner .usps {
  margin-top: 30px;
  width: 300px;
  float: right;
}
.vacature-banner .usps .usp {
  padding-left: 110px;
  font-size: 18px;
  margin-bottom: 60px;
  position: relative;
}
.vacature-banner .usps .usp:last-child {
  margin-bottom: 0;
}
.vacature-banner .usps .usp .icon {
  display: block;
  width: 90px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top center;
}
.vacature-banner .usps .usp strong {
  display: block;
  text-transform: uppercase;
  font-size: 25px;
}
.vacature-banner .worker {
  width: 200%;
  height: 850px;
  background-size: 670px auto;
  background-position: bottom left;
  background-repeat: no-repeat;
  position: absolute;
  left: 40px;
  bottom: 0;
}
.vacature-banner h1 {
  color: inherit;
  line-height: 1.2em;
  margin-bottom: 60px;
}
.vacature-banner .h2 {
  font-family: alwyn-new-web, sans-serif;
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 600;
  color: #e4190f;
}
.vacature-banner .spin-1 {
  display: block;
  width: 200px;
  height: 200px;
  position: relative;
  font-size: 60px;
}
.vacature-banner .spin-1 i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.vacature-banner .spin-2 {
  width: 110px;
  height: 110px;
}
.vacature-banner .spin-2:after {
  -webkit-animation: spinner-inner 12s infinite;
  animation: spinner-inner 12s infinite;
}
.vacature-banner .infobox-1,
.vacature-banner .infobox-2 {
  position: absolute;
  z-index: 30;
  color: #fff;
}
.vacature-banner .infobox-1 .tag-line,
.vacature-banner .infobox-2 .tag-line {
  display: inline-block;
  text-transform: uppercase;
  color: inherit;
}
.vacature-banner .infobox-1 .tag-line .title,
.vacature-banner .infobox-2 .tag-line .title {
  display: block;
  font-size: 16px;
  font-weight: bold;
  padding-bottom: 10px;
  margin-bottom: 10px;
  position: relative;
}
.vacature-banner .infobox-1 .tag-line .title:before,
.vacature-banner .infobox-2 .tag-line .title:before {
  display: block;
  content: "";
  width: 210px;
  height: 2px;
  background: #e4190f;
  position: absolute;
  bottom: 0;
  left: 0;
}
.vacature-banner .infobox-1 .tag-line .title:after,
.vacature-banner .infobox-2 .tag-line .title:after {
  display: block;
  content: "";
  width: 70px;
  height: 2px;
  background: #e4190f;
  position: absolute;
  bottom: 0;
  left: 209px;
  transform: rotate(-45deg);
  transform-origin: bottom left;
}
.vacature-banner .infobox-1 .tag-line .subtitle,
.vacature-banner .infobox-2 .tag-line .subtitle {
  display: block;
  font-size: 20px;
}
.vacature-banner .infobox-1 {
  top: 320px;
  left: 440px;
}
.vacature-banner .infobox-1 .tag-action {
  position: absolute;
  left: 310px;
}
.vacature-banner .infobox-1 .tag-line {
  width: 240px;
  position: absolute;
  bottom: auto;
  top: 170px;
  right: 160px;
}
.vacature-banner .infobox-1 .tag-line .title,
.vacature-banner .infobox-1 .tag-line .subtitle {
  text-shadow: 0 0 10px #000000;
}
.vacature-banner .infobox-1 .tag-line .title:before {
  width: 240px;
}
.vacature-banner .infobox-1 .tag-line .title:after {
  left: 239px;
}
.vacature-banner .infobox-2 {
  top: 605px;
  left: 200px;
}
.vacature-banner .infobox-2 .tag-line {
  position: absolute;
  top: 70px;
  left: -200px;
}
@media (max-width: 1480px) {
  .vacature-banner .col-lft,
  .vacature-banner .col-rgt {
    height: 850px;
  }
  .vacature-banner .col-rgt {
    padding-top: 140px;
  }
  .vacature-banner .usps .usp {
    padding-left: 90px;
    margin-bottom: 40px;
  }
  .vacature-banner .usps .usp .icon {
    width: 70px;
  }
  .vacature-banner .worker {
    width: 800px;
  }
  .vacature-banner .infobox-1 {
    top: 200px;
  }
}
@media (max-width: 1280px) {
  .vacature-banner .col-lft,
  .vacature-banner .col-rgt {
    height: 800px;
  }
  .vacature-banner .col-rgt {
    padding-top: 120px;
  }
  .vacature-banner h1 {
    margin-bottom: 40px;
  }
  .vacature-banner .usps {
    margin-top: 40px;
    width: 100%;
  }
  .vacature-banner .usps .usp {
    padding-left: 80px;
    margin-bottom: 20px;
    font-size: 16px;
  }
  .vacature-banner .usps .usp .icon {
    width: 70px;
  }
  .vacature-banner .usps .usp strong {
    font-size: 22px;
  }
  .vacature-banner .worker {
    background-size: 600px auto;
    left: 0;
  }
  .vacature-banner .infobox-1 {
    top: 220px;
    left: 360px;
  }
  .vacature-banner .infobox-1 .tag-line {
    top: 140px;
    right: 140px;
  }
  .vacature-banner .infobox-1 .tag-line .title:after {
    width: 90px;
  }
  .vacature-banner .spin-1 {
    width: 140px;
    height: 140px;
  }
}
@media (max-width: 991px) {
  .vacature-banner h1 {
    margin-bottom: 30px;
  }
  .vacature-banner .col-lft,
  .vacature-banner .col-rgt {
    width: 100%;
    float: none;
    height: auto;
    padding: 120px 0 0;
  }
  .vacature-banner .col-lft {
    clear: both;
    height: 500px;
    padding-top: 0;
  }
  .vacature-banner .usps {
    float: left;
  }
  .vacature-banner .usps .usp {
    width: 50%;
    float: left;
  }
  .vacature-banner .worker {
    width: 120%;
    background-size: auto 600px;
    background-position: center bottom;
    margin-left: -25px;
  }
  .vacature-banner .infobox-1 {
    top: 50px;
    left: auto;
    right: 50px;
  }
}
@media (max-width: 480px) {
  .vacature-banner .infobox-1 {
    top: 30px;
    right: 0;
  }
  .vacature-banner .infobox-1 .tag-line {
    right: 70px;
  }
  .vacature-banner .infobox-1 .tag-line .title:after {
    width: 70px;
    left: 240px;
    transform: rotate(-90deg);
  }
  .vacature-banner .usps {
    float: none;
    margin-bottom: 20px;
  }
  .vacature-banner .usps .usp {
    width: 100%;
    float: none;
    padding-left: 65px;
  }
  .vacature-banner .usps .usp .icon {
    width: 50px;
  }
  .vacature-banner .usps .usp strong {
    font-size: 20px;
  }
}
@media (max-width: 350px) {
  .vacature-banner .infobox-1 {
    top: 230px;
  }
  .vacature-banner .infobox-1 .tag-line {
    right: 30px;
  }
  .vacature-banner .infobox-1 .tag-line .title:after {
    width: 80px;
    bottom: 1px;
    left: 241px;
    transform: rotate(-115deg);
  }
}
.vacature-info {
  padding: 80px 0;
}
.vacature-info h2 {
  margin-bottom: 30px;
}
.vacature-info .col-rgt {
  position: relative;
  padding-bottom: 140px;
}
.vacature-info .slick-cases-wrap {
  width: 510px;
  height: 510px;
  border-radius: 50%;
  overflow: hidden;
  position: absolute;
  right: 100px;
  top: -240px;
  z-index: 30;
}
.vacature-info .slick-cases-wrap .spinner {
  width: 510px;
  height: 510px;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 10;
  opacity: 1;
  pointer-events: none;
}
.vacature-info .slick-cases-wrap .spinner:before {
  background-image: url(../img/smallspin/circle-1.svg);
  background-size: 94%;
}
.vacature-info .slick-cases-wrap .spinner:after {
  background-image: url(../img/smallspin/circle-2.svg);
  background-size: 98%;
}
.vacature-info .slick-cases-wrap .spinner:before {
  -webkit-animation: spinner-inner 14s infinite;
  animation: spinner-inner 14s infinite;
}
.vacature-info .slick-cases-wrap .spinner:after {
  -webkit-animation: spinner-inner 18s infinite;
  animation: spinner-inner 18s infinite;
}
.vacature-info .slick-box {
  width: 200px;
  position: relative;
  top: 100px;
  z-index: 50;
}
.vacature-info .slick-box .slick-nav {
  width: 100%;
  height: 1px;
  font-size: 36px;
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 10;
  transform: translateY(-18px);
}
.vacature-info .slick-box .slick-nav .prev,
.vacature-info .slick-box .slick-nav .next {
  position: absolute;
  top: 0;
  color: #fff;
}
.vacature-info .slick-box .slick-nav .prev:before,
.vacature-info .slick-box .slick-nav .next:before {
  display: block;
  content: "";
  width: 22px;
  height: 22px;
  background: #1c1e2a;
  position: absolute;
  top: 8px;
  left: 14px;
}
.vacature-info .slick-box .slick-nav .prev i,
.vacature-info .slick-box .slick-nav .next i {
  position: relative;
}
.vacature-info .slick-box .slick-nav .prev {
  left: -26px;
}
.vacature-info .slick-box .slick-nav .next {
  right: -26px;
}
.vacature-info .slick-box .tagline {
  position: absolute;
  bottom: -60px;
  left: 220px;
  z-index: 8;
}
.vacature-info .slick-box .tagline .title,
.vacature-info .slick-box .tagline .subtitle {
  display: block;
  font-size: 20px;
  text-transform: uppercase;
  text-align: right;
  white-space: nowrap;
}
.vacature-info .slick-box .tagline .title {
  font-weight: bold;
  padding-bottom: 6px;
  margin-bottom: 6px;
  position: relative;
}
.vacature-info .slick-box .tagline .title:before {
  display: block;
  content: "";
  width: 240px;
  height: 2px;
  background: #e4190f;
  position: absolute;
  bottom: 0;
  right: 0;
}
.vacature-info .slick-box .tagline .title:after {
  display: block;
  content: "";
  width: 90px;
  height: 2px;
  background: #e4190f;
  position: absolute;
  bottom: 0;
  right: 240px;
  transform: rotate(45deg);
  transform-origin: bottom right;
}
.vacature-info .slick-logos-wrap {
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #e4190f;
  position: relative;
  z-index: 5;
}
.vacature-info .slick-cases .item {
  width: 510px;
  height: 510px;
  background: #1c1e2a;
  background-position: center center;
  background-size: cover;
  position: relative;
}
.vacature-info .slick-cases .item .button {
  position: absolute;
  top: 50%;
  right: 70px;
  transform: translateY(-50%);
}
.vacature-info .slick-logos .item {
  width: 200px;
  height: 200px;
  background: #1c1e2a;
  background-position: center center;
  background-size: 50%;
  background-repeat: no-repeat;
  color: #fff;
  position: relative;
}
.vacature-info .slick-logos .item span {
  display: block;
  width: 100%;
  padding: 0 35px;
  font-size: 28px;
  line-height: 1.2em;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
@media (max-width: 1280px) {
  .vacature-info .slick-box .tagline {
    display: none;
  }
  .vacature-info .slick-cases-wrap {
    width: 450px;
    height: 450px;
    right: 30px;
    top: -220px;
  }
  .vacature-info .slick-cases-wrap .spinner {
    width: 450px;
    height: 450px;
  }
  .vacature-info .slick-cases .item {
    width: 450px;
    height: 450px;
  }
  .vacature-info .slick-box {
    top: 110px;
  }
}
@media (max-width: 991px) {
  .vacature-info .col-rgt {
    height: 400px;
    padding-bottom: 0;
  }
  .vacature-info .slick-cases-wrap {
    position: absolute;
    top: -60px;
    right: 25px;
  }
  .vacature-info .slick-box {
    position: absolute;
    right: 390px;
    top: 170px;
  }
}
@media (max-width: 600px) {
  .vacature-info .col-rgt {
    height: 300px;
  }
  .vacature-info .slick-cases-wrap {
    width: 320px;
    height: 320px;
    right: 25px;
    top: -30px;
  }
  .vacature-info .slick-cases-wrap .spinner {
    width: 320px;
    height: 320px;
  }
  .vacature-info .slick-cases .item {
    width: 320px;
    height: 320px;
  }
  .vacature-info .slick-box {
    width: 150px;
    right: 280px;
    top: 130px;
  }
  .vacature-info .slick-logos-wrap {
    height: 150px;
  }
  .vacature-info .slick-logos .item {
    width: 150px;
    height: 150px;
  }
  .vacature-info .slick-logos .item span {
    padding: 0 35px;
    font-size: 22px;
  }
}
@media (max-width: 500px) {
  .vacature-info .col-rgt {
    height: 360px;
    margin-top: 40px;
  }
  .vacature-info .slick-cases-wrap {
    width: 280px;
    height: 280px;
    top: 0;
  }
  .vacature-info .slick-cases-wrap .spinner {
    width: 280px;
    height: 280px;
  }
  .vacature-info .slick-cases .item {
    width: 280px;
    height: 280px;
  }
  .vacature-info .slick-box {
    right: 200px;
    top: 200px;
  }
}
@media (max-width: 380px) {
  .vacature-info .col-rgt {
    height: 370px;
  }
  .vacature-info .slick-cases-wrap {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }
  .vacature-info .slick-box {
    right: auto;
    left: 50%;
    top: 220px;
    transform: translateX(-50%);
  }
}
.vacature-specs {
  padding: 60px 0;
  color: #fff;
  background: #1c1e2a;
  position: relative;
  overflow: hidden;
}
.vacature-specs.haspattern {
  background: #1c1e2a url(../img/bg-printplaat.gif) center bottom no-repeat;
}
.vacature-specs.haspattern: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;
}
.vacature-specs .container {
  min-height: 200px;
}
.vacature-specs h2 {
  color: #fff;
  margin-bottom: 30px;
}
.vacature-specs ul {
  margin-bottom: 0;
}
.vacature-specs ul li {
  padding: 20px 0;
  background: url(../img/thin-red-line.png) center bottom no-repeat;
  background-size: 100% 2px;
  border-bottom: 0px solid #7a0822;
}
.vacature-specs ul li:last-child {
  border: none;
}
@media (max-width: 767px) {
  .vacature-specs h2 {
    margin-bottom: 10px;
  }
  .vacature-specs .col-lft {
    margin-bottom: 60px;
  }
}
.vacature-story {
  background: #fff;
  background-size: cover;
  background-position: center center;
  position: relative;
}
.vacature-story:before {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #1c1e2a;
  opacity: 0.3;
}
.vacature-story .col {
  height: 650px;
  position: relative;
}
.vacature-story .col .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;
}
.vacature-story .quote {
  position: absolute;
  top: 50%;
  left: 300px;
  transform: translateY(-50%);
}
.vacature-story h3 {
  color: #fff;
  font-size: 30px;
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
  margin-bottom: 30px;
}
@media (max-width: 1480px) {
  .vacature-story .col {
    height: 550px;
  }
}
@media (max-width: 1280px) {
  .vacature-story .col {
    height: 450px;
  }
}
@media (max-width: 991px) {
  .vacature-story .col {
    height: 350px;
  }
  .vacature-story .col .ribbon {
    display: none;
  }
  .vacature-story .col .quote {
    width: 100%;
    left: 0;
    padding: 0 40px;
  }
}
@media (max-width: 767px) {
  .vacature-story .col {
    height: 300px;
  }
  .vacature-story h3 {
    font-size: 24px;
  }
}
@media (max-width: 480px) {
  .vacature-story .col {
    height: 260px;
  }
}
.vacature-form {
  background: #fff;
  padding: 60px 0;
  color: #1c1e2a;
}
.vacature-form .container {
  min-height: 400px;
}
.vacature-form .mod-header {
  margin-bottom: 30px;
}
.vacature-form h2 {
  font-size: 40px;
  text-transform: uppercase;
}
.vacature-form p {
  color: #1c1e2a;
}
.rsform-sollicitatie.rsform {
  /* CUSTOM FILE UPLOAD BUTTON */
}
.rsform-sollicitatie.rsform h2 {
  display: none;
}
.rsform-sollicitatie.rsform fieldset {
  padding: 0;
  margin: 0;
  border: none;
}
.rsform-sollicitatie.rsform input[type="text"] {
  width: 100%;
  height: 36px;
  padding-left: 10px;
  background: #f4f4f4;
  border: 1px solid #1c1e2a;
}
.rsform-sollicitatie.rsform .formDescription,
.rsform-sollicitatie.rsform .formRequired {
  display: none;
}
.rsform-sollicitatie.rsform .rsform-block-naam,
.rsform-sollicitatie.rsform .rsform-block-bedrijf,
.rsform-sollicitatie.rsform .rsform-block-telefoonnummer,
.rsform-sollicitatie.rsform .rsform-block-linkedin,
.rsform-sollicitatie.rsform .rsform-block-email,
.rsform-sollicitatie.rsform .rsform-block-motivatie,
.rsform-sollicitatie.rsform .rsform-block-cv {
  width: 50%;
  float: left;
  margin-bottom: 30px;
}
.rsform-sollicitatie.rsform .rsform-block-naam .formBody,
.rsform-sollicitatie.rsform .rsform-block-bedrijf .formBody,
.rsform-sollicitatie.rsform .rsform-block-telefoonnummer .formBody,
.rsform-sollicitatie.rsform .rsform-block-linkedin .formBody,
.rsform-sollicitatie.rsform .rsform-block-email .formBody,
.rsform-sollicitatie.rsform .rsform-block-motivatie .formBody,
.rsform-sollicitatie.rsform .rsform-block-cv .formBody {
  width: 100%;
  float: none;
  position: relative;
}
.rsform-sollicitatie.rsform .rsform-block-naam .formValidation,
.rsform-sollicitatie.rsform .rsform-block-bedrijf .formValidation,
.rsform-sollicitatie.rsform .rsform-block-telefoonnummer .formValidation,
.rsform-sollicitatie.rsform .rsform-block-linkedin .formValidation,
.rsform-sollicitatie.rsform .rsform-block-email .formValidation,
.rsform-sollicitatie.rsform .rsform-block-motivatie .formValidation,
.rsform-sollicitatie.rsform .rsform-block-cv .formValidation {
  position: absolute;
  bottom: -26px;
  left: 0;
}
.rsform-sollicitatie.rsform .rsform-block-naam,
.rsform-sollicitatie.rsform .rsform-block-telefoonnummer {
  padding-right: 15px;
}
.rsform-sollicitatie.rsform .rsform-block-bedrijf,
.rsform-sollicitatie.rsform .rsform-block-email,
.rsform-sollicitatie.rsform .rsform-block-linkedin,
.rsform-sollicitatie.rsform .rsform-block-cv {
  padding-left: 15px;
}
.rsform-sollicitatie.rsform .rsform-block-motivatie,
.rsform-sollicitatie.rsform .rsform-block-cv {
  margin-bottom: 15px;
}
.rsform-sollicitatie.rsform .rsform-block-motivatie label,
.rsform-sollicitatie.rsform .rsform-block-cv label {
  display: block;
  margin-bottom: 8px;
}
.rsform-sollicitatie.rsform .rsform-block-bestandsformaten {
  clear: both;
  width: 100%;
  margin-bottom: 20px;
}
.rsform-sollicitatie.rsform .rsform-block-bestandsformaten .formBody {
  width: 100%;
  float: none;
  position: relative;
}
.rsform-sollicitatie.rsform .rsform-block-bestandsformaten {
  font-size: 80%;
  font-style: italic;
}
.rsform-sollicitatie.rsform .rsform-block-veiligheidscode {
  clear: both;
  width: 100%;
  padding-top: 30px;
}
.rsform-sollicitatie.rsform .rsform-block-veiligheidscode .formBody {
  width: 100%;
  float: none;
  position: relative;
}
.rsform-sollicitatie.rsform button {
  color: #1c1e2a;
  padding-top: 2px;
}
.rsform-sollicitatie.rsform button:hover {
  color: #1c1e2a;
  border-color: #e4190f;
}
.rsform-sollicitatie.rsform button:hover:before {
  background-image: url(../img/button-red.svg);
}
.rsform-sollicitatie.rsform .upload-wrapper {
  position: relative;
}
.rsform-sollicitatie.rsform .upload-wrapper:before {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background-color: #1c1e2a;
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 0;
}
.rsform-sollicitatie.rsform .upload-wrapper input[type=file] {
  height: 100px;
  position: relative;
  z-index: 10;
  opacity: 0;
}
.rsform-sollicitatie.rsform .upload-file-info {
  padding-top: 8px;
  font-size: 80%;
  line-height: 1.2em;
  font-style: italic;
}
.rsform-sollicitatie.rsform .rsform-block-motivatie {
  padding-right: 15px;
}
.rsform-sollicitatie.rsform .rsform-block-motivatie .upload-wrapper:before {
  background-image: url(../img/btn-upload-motivatie.gif);
}
.rsform-sollicitatie.rsform .rsform-block-cv .upload-wrapper:before {
  background-image: url(../img/btn-upload-cv.gif);
}
@media (max-width: 1280px) {
  .rsform-sollicitatie.rsform .upload-wrapper input[type=file] {
    height: 70px;
  }
}
@media (max-width: 991px) {
  .rsform-sollicitatie.rsform .upload-wrapper input[type=file] {
    height: 55px;
  }
}
@media (max-width: 767px) {
  .rsform-sollicitatie.rsform .upload-wrapper input[type=file] {
    height: 82px;
    width: 100%;
  }
}
@media (max-width: 700px) {
  .rsform-sollicitatie.rsformxx .rsform-block-motivatie,
  .rsform-sollicitatie.rsformxx .rsform-block-cv {
    width: 100%;
    float: none;
    clear: both;
    margin-bottom: 30px;
    padding-left: 0;
  }
}
@media (max-width: 500px) {
  .rsform-sollicitatie.rsform .rsform-block-naam,
  .rsform-sollicitatie.rsform .rsform-block-bedrijf,
  .rsform-sollicitatie.rsform .rsform-block-telefoonnummer,
  .rsform-sollicitatie.rsform .rsform-block-email,
  .rsform-sollicitatie.rsform .rsform-block-linkedin,
  .rsform-sollicitatie.rsform .rsform-block-motivatie,
  .rsform-sollicitatie.rsform .rsform-block-cv {
    width: 100%;
    float: none;
  }
  .rsform-sollicitatie.rsform .rsform-block-naam,
  .rsform-sollicitatie.rsform .rsform-block-telefoonnummer,
  .rsform-sollicitatie.rsform .rsform-block-motivatie,
  .rsform-sollicitatie.rsform .rsform-block-motivatie {
    padding-right: 0;
  }
  .rsform-sollicitatie.rsform .rsform-block-bedrijf,
  .rsform-sollicitatie.rsform .rsform-block-email,
  .rsform-sollicitatie.rsform .rsform-block-linkedin,
  .rsform-sollicitatie.rsform .rsform-block-cv {
    padding-left: 0;
  }
}
@media (max-width: 360px) {
  .rsform-sollicitatie.rsform .rsform-block-motivatie,
  .rsform-sollicitatie.rsform .rsform-block-cv {
    width: 270px;
    overflow: hidden;
  }
}
/* @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-linkedin,
.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-linkedin .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-linkedin .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-linkedin,
.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-linkedin,
  .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-linkedin,
  .mod-prefooter .rsform .rsform-block-email {
    padding-left: 0;
  }
}
/* @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;
}
/* @end */
/* @group FONTELLO */
@font-face {
  font-family: 'fontello';
  src: url('../font/fontello.eot?49273397abc');
  src: url('../font/fontello.eot?49273397abc#iefix') format('embedded-opentype'), url('../font/fontello.woff2?49273397abc') format('woff2'), url('../font/fontello.woff?49273397abc') format('woff'), url('../font/fontello.ttf?49273397abc') format('truetype'), url('../font/fontello.svg?49273397abc#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-plus:before {
  content: '\e808';
}
/* '' */
.icn-minus:before {
  content: '\e809';
}
/* '' */
.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 */
/*# sourceMappingURL=screen.css.map */