@media only screen and (min-width: 1170px) {
  .cd-is-hidden {
    visibility: hidden;
  }
}

.cd-timeline {
  overflow: hidden;
  margin: 2em auto;
}

.cd-timeline__container {
  position: relative;
  width: 90%;
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 0 2em 0;
}

.cd-timeline__container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 18px;
  height: 100%;
  width: 4px;
  background: #0396ff;
  background: -moz-linear-gradient(top, #0396ff 0%, #07c7ff 50%, #ffffff 100%);
  background: -webkit-linear-gradient(top, #0396ff 0%,#07c7ff 50%,#ffffff 100%);
  background: linear-gradient(to bottom, #0396ff 0%,#07c7ff 50%,#ffffff 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0396ff', endColorstr='#ffffff',GradientType=0 );
}

@media only screen and (min-width: 1170px) {
  .cd-timeline {
    margin-top: 3em;
    margin-bottom: 3em;
  }
  .cd-timeline__container::before {
    left: 50%;
    margin-left: -2px;
  }
}

.cd-timeline__block {
  position: relative;
  /*margin: -150px 0 2em 0;*/
  height: auto;
}

.cd-timeline__block:after {
  content: "";
  display: table;
  clear: both;
}

.cd-timeline__block:first-child {
  margin-top: 5px;
}

.cd-timeline__block:last-child {
  margin-bottom: 0;
}

.cd-timeline__block:first-of-type .bullet{
  display: none;
}

.cd-timeline__img {
  position: absolute;
  top: 0;
  left: 10px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cd-timeline__img .bullet{
  width: 10px;
  height: 10px;
  background-color: #fff;
  display: block;
  border-radius: 10px;
}

.cd-timeline__img.cd-timeline__img {
  background: #05A9FF;
}

@media only screen and (min-width: 1170px) {
  .cd-timeline__img {
    width: 20px;
    height: 20px;
    left: 50%;
    margin-left: -10px;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

.cd-timeline__block:nth-of-type(odd) .cd-timeline__content{
  border-top-right-radius: 0;
}

.cd-timeline__block:nth-of-type(even) .cd-timeline__content{
  border-top-left-radius: 0;
}

.cd-timeline__content {
  position: relative;
  margin-left: 60px;
  border-radius: 10px;
  box-shadow: 0 2px 10px 0 #ddd;
  background-color: #fff;
  visibility: hidden;
  padding: 1.6em;
}

.cd-timeline__content .date{
  font-family: Montserrat, sans-serif;
  font-size: 18px;
  font-weight: bold;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #0396ff;
  margin-bottom: 12px;
}

.cd-timeline__content .title{
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  font-weight: bold;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #000000;
  margin-bottom: 12px;
}

.cd-timeline__content .location{
  font-family: SourceSansPro, sans-serif;
  font-size: 16px;
  font-weight: 600;
  font-style: normal;
  font-stretch: normal;
  line-height: 24px;
  letter-spacing: normal;
  color: #000000;
  margin-bottom: 12px;
}

.cd-timeline__content .location i{
  margin-right: 5px;
}

.cd-timeline__content .description{
  font-family: SourceSansPro, sans-serif;
  font-size: 14px;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  line-height: 20px;
  letter-spacing: normal;
  color: #444444;
  margin-bottom: 12px;
}

.cd-timeline__content p:not(.date):not(.title){
  font-family: SourceSansPro, sans-serif;
  color: #444444;
  word-break: break-word;
}

.cd-timeline__content:after {
  /* clearfix */
  content: "";
  display: table;
  clear: both;
}

@media only screen and (min-width: 768px) {
  .cd-timeline__content h2 {
    font-size: 2rem;
  }
  .cd-timeline__read-more,
  .cd-timeline__date {
    font-size: 1.4rem;
  }
}

@media only screen and (min-width: 1170px) {
  .cd-timeline__content {
    margin-left: 0;
    padding: 1.6em;
    width: 45%;
    /* Force Hardware Acceleration */
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
  }
  .cd-timeline__content::before {
    top: 24px;
    left: 100%;
    border-color: transparent;
    border-left-color: white;
  }
  .cd-timeline__read-more {
    float: left;
  }
  .cd-timeline__date {
    position: absolute;
    width: 100%;
    left: 122%;
    top: 6px;
    font-size: 1.6rem;
  }
  .cd-timeline__block:nth-child(even) .cd-timeline__content {
    float: right;
  }
  .cd-timeline__block:nth-child(even) .cd-timeline__content::before {
    top: 24px;
    left: auto;
    right: 100%;
    border-color: transparent;
    border-right-color: white;
  }
  .cd-timeline__block:nth-child(even) .cd-timeline__read-more {
    float: right;
  }
  .cd-timeline__block:nth-child(even) .cd-timeline__date {
    left: auto;
    right: 122%;
    text-align: right;
  }
}

@media screen and (max-width: 1169px) {
  .cd-timeline__block:nth-of-type(odd) .cd-timeline__content{
    border-radius: 10px;
  }
  .cd-timeline__block:nth-of-type(even) .cd-timeline__content{
    border-radius: 10px;
  }
  .cd-timeline__block:first-of-type{
    margin: 5px 0 2em 0!important;
  }
  .cd-timeline__block {
    position: relative;
    /*margin: -50px 0 2em 0!important;*/
    /*height: 300px;*/
  }
}

@media screen and (max-width: 991px) {
  .cd-timeline__block {
    height: auto!important;
    margin: 0!important;
    margin-top: 50px!important;
  }
  .cd-timeline__block .cd-timeline__content{
    border-radius: 0 10px 10px 10px!important;
  }
}@charset "UTF-8";

/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.0
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2016 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;
}

.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

.animated.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
  -webkit-animation-duration: .75s;
  animation-duration: .75s;
}

@-webkit-keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }

  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    -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.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }

  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    -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(.95, 1.05, 1);
    transform: scale3d(.95, 1.05, 1);
  }

  75% {
    -webkit-transform: scale3d(1.05, .95, 1);
    transform: scale3d(1.05, .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(.95, 1.05, 1);
    transform: scale3d(.95, 1.05, 1);
  }

  75% {
    -webkit-transform: scale3d(1.05, .95, 1);
    transform: scale3d(1.05, .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(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(.9, .9, .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(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(.9, .9, .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: none;
    transform: none;
  }

  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: none;
    transform: none;
  }
}

@keyframes wobble {
  from {
    -webkit-transform: none;
    transform: none;
  }

  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: none;
    transform: none;
  }
}

.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

@-webkit-keyframes jello {
  from, 11.1%, to {
    -webkit-transform: none;
    transform: none;
  }

  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: none;
    transform: none;
  }

  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.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(.9, .9, .9);
    transform: scale3d(.9, .9, .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(.97, .97, .97);
    transform: scale3d(.97, .97, .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.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(.9, .9, .9);
    transform: scale3d(.9, .9, .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(.97, .97, .97);
    transform: scale3d(.97, .97, .97);
  }

  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  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: none;
    transform: none;
  }
}

@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  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: none;
    transform: none;
  }
}

.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.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  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: none;
    transform: none;
  }
}

@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  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: none;
    transform: none;
  }
}

.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.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  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: none;
    transform: none;
  }
}

@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  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: none;
    transform: none;
  }
}

.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.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  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.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  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(.9, .9, .9);
    transform: scale3d(.9, .9, .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(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }
}

@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(.9, .9, .9);
    transform: scale3d(.9, .9, .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(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }
}

.bounceOut {
  -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, -20%, 0);
    transform: translate3d(0, -20%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -20%, 0);
    transform: translate3d(0, -20%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.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: none;
    transform: none;
  }
}

@keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-20%, 0, 0);
    transform: translate3d(-20%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-20%, 0, 0);
    transform: translate3d(-20%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.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: none;
    transform: none;
  }
}

@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(20%, 0, 0);
    transform: translate3d(20%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(20%, 0, 0);
    transform: translate3d(20%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.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: none;
    transform: none;
  }
}

@keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 20%, 0);
    transform: translate3d(0, 20%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 20%, 0);
    transform: translate3d(0, 20%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.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: none;
    transform: none;
  }
}

@keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.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(.95, .95, .95);
    transform: perspective(400px) scale3d(.95, .95, .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(.95, .95, .95);
    transform: perspective(400px) scale3d(.95, .95, .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-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-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: none;
    transform: none;
    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: none;
    transform: none;
    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: none;
    transform: none;
    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: none;
    transform: none;
    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: none;
    transform: none;
    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: none;
    transform: none;
    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: none;
    transform: none;
    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: none;
    transform: none;
    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: none;
    transform: none;
    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: none;
    transform: none;
    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: none;
    transform: none;
    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: none;
    transform: none;
    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-name: hinge;
  animation-name: hinge;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes rollOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}

@keyframes rollOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}

.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}

@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  50% {
    opacity: 1;
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  50% {
    opacity: 1;
  }
}

.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

@-webkit-keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}

@-webkit-keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}

@-webkit-keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}

@-webkit-keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}

@-webkit-keyframes zoomOut {
  from {
    opacity: 1;
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  to {
    opacity: 0;
  }
}

@keyframes zoomOut {
  from {
    opacity: 1;
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  to {
    opacity: 0;
  }
}

.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    transform: scale3d(.1, .1, .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.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    transform: scale3d(.1, .1, .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.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
}

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
    transform: scale(.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
    transform: scale(.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(.475, .475, .475) translate3d(-42px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(.1) translate3d(2000px, 0, 0);
    transform: scale(.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(.1) translate3d(2000px, 0, 0);
    transform: scale(.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(.475, .475, .475) translate3d(0, 60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    transform: scale3d(.1, .1, .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.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    transform: scale3d(.1, .1, .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.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 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;
}
/**
 * Owl Carousel v2.2.1
 * Copyright 2013-2017 David Deutsch
 * Licensed under  ()
 */
.owl-carousel,.owl-carousel .owl-item{-webkit-tap-highlight-color:transparent;position:relative}.owl-carousel{display:none;width:100%;z-index:1}.owl-carousel .owl-stage{position:relative;-ms-touch-action:pan-Y;-moz-backface-visibility:hidden}.owl-carousel .owl-stage:after{content:".";display:block;clear:both;visibility:hidden;line-height:0;height:0}.owl-carousel .owl-stage-outer{position:relative;overflow:hidden;-webkit-transform:translate3d(0,0,0)}.owl-carousel .owl-item,.owl-carousel .owl-wrapper{-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0)}.owl-carousel .owl-item{min-height:1px;float:left;-webkit-backface-visibility:hidden;-webkit-touch-callout:none}.owl-carousel .owl-item img{display:block;width:100%}.owl-carousel .owl-dots.disabled,.owl-carousel .owl-nav.disabled{display:none}.no-js .owl-carousel,.owl-carousel.owl-loaded{display:block}.owl-carousel .owl-dot,.owl-carousel .owl-nav .owl-next,.owl-carousel .owl-nav .owl-prev{cursor:pointer;cursor:hand;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel.owl-loading{opacity:0;display:block}.owl-carousel.owl-hidden{opacity:0}.owl-carousel.owl-refresh .owl-item{visibility:hidden}.owl-carousel.owl-drag .owl-item{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel.owl-grab{cursor:move;cursor:grab}.owl-carousel.owl-rtl{direction:rtl}.owl-carousel.owl-rtl .owl-item{float:right}.owl-carousel .animated{animation-duration:1s;animation-fill-mode:both}.owl-carousel .owl-animated-in{z-index:0}.owl-carousel .owl-animated-out{z-index:1}.owl-carousel .fadeOut{animation-name:fadeOut}@keyframes fadeOut{0%{opacity:1}100%{opacity:0}}.owl-height{transition:height .5s ease-in-out}.owl-carousel .owl-item .owl-lazy{opacity:0;transition:opacity .4s ease}.owl-carousel .owl-item img.owl-lazy{transform-style:preserve-3d}.owl-carousel .owl-video-wrapper{position:relative;height:100%;background:#000}.owl-carousel .owl-video-play-icon{position:absolute;height:80px;width:80px;left:50%;top:50%;margin-left:-40px;margin-top:-40px;background:url(owl.video.play.png) no-repeat;cursor:pointer;z-index:1;-webkit-backface-visibility:hidden;transition:transform .1s ease}.owl-carousel .owl-video-play-icon:hover{-ms-transform:scale(1.3,1.3);transform:scale(1.3,1.3)}.owl-carousel .owl-video-playing .owl-video-play-icon,.owl-carousel .owl-video-playing .owl-video-tn{display:none}.owl-carousel .owl-video-tn{opacity:0;height:100%;background-position:center center;background-repeat:no-repeat;background-size:contain;transition:opacity .4s ease}.owl-carousel .owl-video-frame{position:relative;z-index:1;height:100%;width:100%}/**
 * Owl Carousel v2.2.1
 * Copyright 2013-2017 David Deutsch
 * Licensed under  ()
 */
/*
 * 	Default theme - Owl Carousel CSS File
 */
.owl-theme .owl-nav {
  margin-top: 10px;
  text-align: center;
  -webkit-tap-highlight-color: transparent; }
  .owl-theme .owl-nav [class*='owl-'] {
    color: #FFF;
    font-size: 14px;
    margin: 5px;
    padding: 4px 7px;
    background: #D6D6D6;
    display: inline-block;
    cursor: pointer;
    border-radius: 3px; }
    .owl-theme .owl-nav [class*='owl-']:hover {
      background: #869791;
      color: #FFF;
      text-decoration: none; }
  .owl-theme .owl-nav .disabled {
    opacity: 0.5;
    cursor: default; }

.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 10px; }

.owl-theme .owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent; }
  .owl-theme .owl-dots .owl-dot {
    display: inline-block;
    zoom: 1;
    *display: inline; }
    .owl-theme .owl-dots .owl-dot span {
      width: 10px;
      height: 10px;
      margin: 5px 7px;
      background: #D6D6D6;
      display: block;
      -webkit-backface-visibility: visible;
      transition: opacity 200ms ease;
      border-radius: 30px; }
    .owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
      background: #869791; }
.lb-loader,.lightbox{text-align:center;line-height:0}.lb-dataContainer:after,.lb-outerContainer:after{content:"";clear:both}html.lb-disable-scrolling{overflow:hidden;position:fixed;height:100vh;width:100vw}.lightboxOverlay{position:absolute;top:0;left:0;z-index:9999;background-color:#000;filter:alpha(Opacity=80);opacity:.8;display:none}.lightbox{position:absolute;left:0;width:100%;z-index:10000;font-weight:400}.lightbox .lb-image{display:block;height:auto;max-width:inherit;max-height:none;border-radius:3px;border:4px solid #fff}.lightbox a img{border:none}.lb-outerContainer{position:relative;width:250px;height:250px;margin:0 auto;border-radius:4px;background-color:#fff}.lb-loader,.lb-nav{position:absolute;left:0}.lb-outerContainer:after{display:table}.lb-loader{top:43%;height:25%;width:100%}.lb-cancel{display:block;width:32px;height:32px;margin:0 auto;background:url(/assets/plugins/lightbox2-master/dist/images/loading.gif) no-repeat}.lb-nav{top:0;height:100%;width:100%;z-index:10}.lb-container>.nav{left:0}.lb-nav a{outline:0;background-image:url(data:image/gif;base64,R0lGODlhAQABAPAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==)}.lb-next,.lb-prev{height:100%;cursor:pointer;display:block}.lb-nav a.lb-prev{width:34%;left:0;float:left;background:url(/assets/plugins/lightbox2-master/dist/images/prev.png) left 48% no-repeat;filter:alpha(Opacity=0);opacity:0;-webkit-transition:opacity .6s;-moz-transition:opacity .6s;-o-transition:opacity .6s;transition:opacity .6s}.lb-nav a.lb-prev:hover{filter:alpha(Opacity=100);opacity:1}.lb-nav a.lb-next{width:64%;right:0;float:right;background:url(/assets/plugins/lightbox2-master/dist/images/next.png) right 48% no-repeat;filter:alpha(Opacity=0);opacity:0;-webkit-transition:opacity .6s;-moz-transition:opacity .6s;-o-transition:opacity .6s;transition:opacity .6s}.lb-nav a.lb-next:hover{filter:alpha(Opacity=100);opacity:1}.lb-dataContainer{margin:0 auto;padding-top:5px;width:100%;border-bottom-left-radius:4px;border-bottom-right-radius:4px}.lb-dataContainer:after{display:table}.lb-data{padding:0 4px;color:#ccc}.lb-data .lb-details{width:85%;float:left;text-align:left;line-height:1.1em}.lb-data .lb-caption{font-size:13px;font-weight:700;line-height:1em}.lb-data .lb-caption a{color:#4ae}.lb-data .lb-number{display:block;clear:left;padding-bottom:1em;font-size:12px;color:#999}.lb-data .lb-close{display:block;float:right;width:30px;height:30px;background:url(/assets/plugins/lightbox2-master/dist/images/close.png) top right no-repeat;text-align:right;outline:0;filter:alpha(Opacity=70);opacity:.7;-webkit-transition:opacity .2s;-moz-transition:opacity .2s;-o-transition:opacity .2s;transition:opacity .2s}.lb-data .lb-close:hover{cursor:pointer;filter:alpha(Opacity=100);opacity:1}button, .btn, a.btn {
  transition: All 0.2s ease;
  -webkit-transition: All 0.2s ease;
  -moz-transition: All 0.2s ease;
  -o-transition: All 0.2s ease; }

a {
  color: #9b9b9b;
  text-decoration: underline; }
  a:hover, a:active, a:focus {
    color: #1c1c1c; }

button:not(.dropdown-toggle):active, a.btn:active {
  transform: scale(0.9, 0.9); }

.cd-timeline__content ul, .cd-timeline__content ol {
  padding-left: 15px !important; }

.cd-timeline__content .date {
  color: #ee3da8; }

.cd-timeline__img.cd-timeline__img {
  background: #ee3da8; }

.cd-timeline__container::before {
  background: #ee3da8;
  background: -moz-linear-gradient(top, #ee3da8 0%, #ee3da8 50%, #ffffff 100%);
  background: -webkit-linear-gradient(top, #ee3da8 0%, #ee3da8 50%, #ffffff 100%);
  background: linear-gradient(to bottom, #ee3da8 0%, #ee3da8 50%, #ffffff 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0396ff', endColorstr='#ffffff',GradientType=0 ); }

.owl-carousel-modal .owl-stage-outer {
  height: 100%; }
  .owl-carousel-modal .owl-stage-outer .owl-stage {
    height: 100%; }
    .owl-carousel-modal .owl-stage-outer .owl-stage .owl-item {
      height: 100%; }
.owl-carousel-modal .carousel-item {
  height: 100%;
  width: 100%;
  background-size: cover !important;
  background-position: center !important; }
.owl-carousel-modal .owl-nav {
  display: block !important;
  top: 80px; }
  .owl-carousel-modal .owl-nav button {
    border-radius: 100% !important;
    height: 35px;
    width: 35px;
    border: 0;
    display: flex !important;
    align-items: center;
    justify-content: center; }
    .owl-carousel-modal .owl-nav button i {
      font-size: 12px !important; }
    .owl-carousel-modal .owl-nav button.owl-next i {
      margin: 0 0 0 2px; }
    .owl-carousel-modal .owl-nav button.owl-prev i {
      margin: 0 2px 0 0; }

/**
  Language selector
 */
.navbar.affix .language-navbar .language-select-container {
  background-color: #ee3da8 !important;
  color: #fff !important; }

.navbar.affix-top {
  background-color: rgba(0, 0, 0, 0.3) !important; }

.language-navbar {
  width: 65px; }
  .language-navbar .language-select-container {
    user-select: none;
    width: 45px;
    min-height: 45px;
    text-align: center;
    font-size: 14px;
    font-family: 'Poppins-SemiBold', sans-serif;
    border-radius: 0;
    background-color: #ee3da8;
    color: #fff;
    padding: 10px 0;
    position: absolute;
    top: 12px; }
    .language-navbar .language-select-container hr {
      display: none; }
    .language-navbar .language-select-container hr {
      margin: 10px;
      border-width: 2px; }
    .language-navbar .language-select-container .language-item {
      cursor: pointer; }
    .language-navbar .language-select-container .language-item:hover {
      cursor: pointer; }
    .language-navbar .language-select-container .language-item:not(:first-of-type) {
      display: none; }
    .language-navbar .language-select-container hr:not(:first-of-type) {
      display: none; }
    .language-navbar .language-select-container.white {
      background-color: #ee3da8;
      color: #fff; }

header .navbar-default {
  border: 0 !important;
  min-height: 60px;
  border-radius: 0 !important;
  margin-bottom: 0 !important; }
  header .navbar-default .navbar-header {
    height: 70px;
    align-items: center; }
    header .navbar-default .navbar-header .navbar-brand {
      height: 45px !important;
      padding: 12px !important; }
      header .navbar-default .navbar-header .navbar-brand img {
        height: 100%; }
  header .navbar-default .navbar-collapse .navbar-nav {
    height: 70px;
    line-height: 25px; }
    header .navbar-default .navbar-collapse .navbar-nav .avatar-dropdown .avatar {
      display: inline-block;
      height: 30px;
      width: 30px;
      border-radius: 30px;
      margin-right: 10px; }
    header .navbar-default .navbar-collapse .navbar-nav .avatar-dropdown a {
      display: inline-block;
      padding-left: 5px;
      font-family: 'Rubik-Medium', Arial, Helvetica, sans-serif;
      text-decoration: none;
      color: #fafafa; }
      header .navbar-default .navbar-collapse .navbar-nav .avatar-dropdown a i {
        margin-right: 5px; }
      header .navbar-default .navbar-collapse .navbar-nav .avatar-dropdown a:hover, header .navbar-default .navbar-collapse .navbar-nav .avatar-dropdown a:active, header .navbar-default .navbar-collapse .navbar-nav .avatar-dropdown a:focus {
        background-color: transparent;
        color: #fafafa; }
    header .navbar-default .navbar-collapse .navbar-nav .avatar-dropdown span.fa {
      font-weight: 300; }
    header .navbar-default .navbar-collapse .navbar-nav .avatar-dropdown .dropdown-menu {
      background-color: #fff;
      padding: 10px;
      z-index: 1080; }
      header .navbar-default .navbar-collapse .navbar-nav .avatar-dropdown .dropdown-menu li a {
        color: #171717;
        font-size: 12px;
        font-family: 'Rubik-Medium', Arial, Helvetica, sans-serif; }
    header .navbar-default .navbar-collapse .navbar-nav > li {
      display: flex;
      align-items: center;
      height: 70px;
      margin: 0 10px; }
      header .navbar-default .navbar-collapse .navbar-nav > li a {
        font-family: 'Rubik-Medium', Arial, Helvetica, sans-serif;
        text-decoration: none;
        color: #fafafa; }
        header .navbar-default .navbar-collapse .navbar-nav > li a:hover, header .navbar-default .navbar-collapse .navbar-nav > li a:active, header .navbar-default .navbar-collapse .navbar-nav > li a:focus {
          background-color: transparent;
          color: #ff315d;
          text-decoration: none; }
        header .navbar-default .navbar-collapse .navbar-nav > li a > .nav-icon {
          font-size: 18px !important; }
      header .navbar-default .navbar-collapse .navbar-nav > li a.dropdown-toggle:hover, header .navbar-default .navbar-collapse .navbar-nav > li a.dropdown-toggle:active, header .navbar-default .navbar-collapse .navbar-nav > li a.dropdown-toggle:focus {
        text-decoration: none !important; }
      header .navbar-default .navbar-collapse .navbar-nav > li .primary-button-small {
        line-height: 30px !important; }
        header .navbar-default .navbar-collapse .navbar-nav > li .primary-button-small:hover, header .navbar-default .navbar-collapse .navbar-nav > li .primary-button-small:active, header .navbar-default .navbar-collapse .navbar-nav > li .primary-button-small:focus {
          background-color: #ff1849;
          color: #fff;
          text-decoration: none; }
    header .navbar-default .navbar-collapse .navbar-nav .nav-separator {
      padding: 0;
      height: 25px;
      border-right: 1px dashed rgba(255, 255, 255, 0.25);
      margin-top: 22px; }
    header .navbar-default .navbar-collapse .navbar-nav .open > a {
      background-color: transparent; }
  header .navbar-default li > a {
    padding: 0; }

.navbar-default {
  background-color: transparent !important;
  transition: top 0.5s ease 0s;
  -webkit-transition: top 0.5s ease 0s;
  -moz-transition: top 0.5s ease 0s;
  -o-transition: top 0.5s ease 0s;
  z-index: 2; }
  .navbar-default .navbar-nav li a:not(.landing-button) {
    font-size: 14px;
    color: #fff !important;
    font-family: 'Poppins-SemiBold', sans-serif !important;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: normal;
    border-bottom: 2px solid transparent; }
    .navbar-default .navbar-nav li a:not(.landing-button):hover, .navbar-default .navbar-nav li a:not(.landing-button):active, .navbar-default .navbar-nav li a:not(.landing-button):focus {
      color: #ffffff !important;
      border-color: #fff; }
  .navbar-default.affix {
    top: -70px; }
    .navbar-default.affix .navbar-header .navbar-toggle .icon-bar {
      background-color: #333 !important; }
  .navbar-default.affix-top .navbar-default {
    background-color: rgba(0, 0, 0, 0.3) !important; }

.navbar-subpage {
  box-shadow: 0 1px 5px #d3d3d3 !important;
  transition: top 0.5s ease 0s;
  -webkit-transition: top 0.5s ease 0s;
  -moz-transition: top 0.5s ease 0s;
  -o-transition: top 0.5s ease 0s;
  width: 100%;
  background-color: #fff !important;
  z-index: 2; }
  .navbar-subpage .navbar-nav li a:not(.landing-button) {
    font-size: 14px;
    color: #333 !important;
    font-family: 'Poppins-SemiBold', sans-serif !important;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: normal; }
    .navbar-subpage .navbar-nav li a:not(.landing-button):hover, .navbar-subpage .navbar-nav li a:not(.landing-button):active, .navbar-subpage .navbar-nav li a:not(.landing-button):focus {
      color: #ff315d !important; }
  .navbar-subpage.affix {
    top: -70px; }
    .navbar-subpage.affix .navbar-header .navbar-toggle .icon-bar {
      background-color: #333 !important; }

.btn-personal {
  border-radius: 25px;
  background-color: #ee3da8;
  width: auto;
  padding: 10px 20px;
  font-family: Montserrat, sans-serif;
  font-weight: bold;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: 0.9px;
  text-align: center;
  color: #ffffff; }

.personal-page-container {
  padding: 0 !important;
  margin-top: -70px; }
  .personal-page-container .banner-container {
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: center !important;
    height: 420px; }
    .personal-page-container .banner-container .personal-info-container {
      display: flex;
      border-radius: 0;
      box-shadow: 0 2px 11px 0 #d3d3d3;
      width: 820px;
      position: absolute;
      left: calc(50% - 410px);
      background-color: #fff;
      padding: 40px;
      top: 200px;
      height: 410px; }
      .personal-page-container .banner-container .personal-info-container .personal-photo-container {
        background-repeat: no-repeat !important;
        background-size: cover !important;
        background-position: center !important;
        width: 310px;
        margin-right: 40px; }
      .personal-page-container .banner-container .personal-info-container .personal-data {
        display: flex;
        flex-direction: column;
        justify-content: center; }
        .personal-page-container .banner-container .personal-info-container .personal-data h2 {
          font-family: Montserrat, sans-serif;
          font-size: 46px !important;
          font-weight: 300;
          font-style: normal;
          font-stretch: normal;
          line-height: normal;
          letter-spacing: normal;
          color: #000000;
          margin-top: 0; }
        .personal-page-container .banner-container .personal-info-container .personal-data h3 {
          font-family: Montserrat, sans-serif;
          font-size: 18px;
          font-weight: 900;
          font-style: normal;
          font-stretch: normal;
          line-height: normal;
          letter-spacing: 1.3px;
          color: #ee3da8;
          margin: 5px 0 25px 0; }
        .personal-page-container .banner-container .personal-info-container .personal-data p {
          font-family: 'SourceSansPro-Regular', sans-serif;
          font-size: 18px;
          font-weight: normal;
          font-style: normal;
          font-stretch: normal;
          line-height: 1.67;
          letter-spacing: normal;
          color: #444444;
          margin-bottom: 25px !important; }
          .personal-page-container .banner-container .personal-info-container .personal-data p span {
            margin-left: 40px;
            font-weight: 600 !important;
            font-family: 'SourceSansPro-SemiBold', Arial, Helvetica, sans-serif; }
        .personal-page-container .banner-container .personal-info-container .personal-data button.btn-contact {
          border-radius: 0;
          background-color: #ee3da8;
          height: 50px;
          font-family: Montserrat, sans-serif;
          border: 2px solid transparent;
          font-size: 12px;
          font-weight: bold;
          font-style: normal;
          font-stretch: normal;
          line-height: normal;
          letter-spacing: 0.9px;
          text-align: center;
          color: #fff;
          max-width: 200px;
          padding: 10px 20px !important;
          outline: none; }
          .personal-page-container .banner-container .personal-info-container .personal-data button.btn-contact:hover {
            background-color: #fff;
            border-color: #ee3da8;
            color: #ee3da8; }
  .personal-page-container .personal-description-section {
    text-align: center;
    margin-top: 250px; }
    .personal-page-container .personal-description-section .personal-data {
      display: flex;
      flex-direction: column;
      justify-content: center;
      margin-bottom: 70px; }
      .personal-page-container .personal-description-section .personal-data h2 {
        font-family: Montserrat, sans-serif;
        font-size: 40px !important;
        font-weight: 300;
        font-style: normal;
        font-stretch: normal;
        line-height: normal;
        letter-spacing: normal;
        color: #000000;
        margin-top: 0; }
      .personal-page-container .personal-description-section .personal-data h3 {
        font-family: 'SourceSansPro-Black', sans-serif;
        font-size: 16px;
        font-weight: 900;
        font-style: normal;
        font-stretch: normal;
        line-height: normal;
        letter-spacing: 1.3px;
        color: #ee3da8;
        margin: 5px auto 15px auto !important;
        max-width: 85%; }
      .personal-page-container .personal-description-section .personal-data p {
        font-family: 'Source Sans Pro', sans-serif;
        font-size: 18px;
        font-weight: normal;
        font-style: normal;
        font-stretch: normal;
        line-height: 1.67;
        letter-spacing: normal;
        color: #444444;
        margin-bottom: 25px; }
      .personal-page-container .personal-description-section .personal-data p.location-title {
        margin: 15px 0 0 0 !important; }
      .personal-page-container .personal-description-section .personal-data p.location {
        font-weight: 600 !important; }
      .personal-page-container .personal-description-section .personal-data button.btn-contact {
        border-radius: 0;
        background-color: #ee3da8;
        height: 50px;
        font-family: Montserrat, sans-serif;
        font-size: 12px;
        font-weight: bold;
        font-style: normal;
        font-stretch: normal;
        line-height: normal;
        letter-spacing: 0.9px;
        text-align: center;
        color: #fff;
        max-width: 200px;
        display: block;
        margin: 0 auto;
        outline: none;
        padding: 10px 20px !important;
        border: 2px solid transparent; }
        .personal-page-container .personal-description-section .personal-data button.btn-contact:hover {
          border-color: #ee3da8;
          background-color: #fff;
          color: #ee3da8; }
    .personal-page-container .personal-description-section .description {
      font-family: 'Source Sans Pro', sans-serif;
      font-size: 20px;
      font-weight: normal;
      font-style: normal;
      font-stretch: normal;
      line-height: 30px;
      letter-spacing: normal;
      text-align: center;
      color: #444444;
      width: 750px;
      margin: 0 auto 50px auto; }
    .personal-page-container .personal-description-section button.btn-resume-download {
      border-radius: 0;
      box-shadow: 0 2px 10px 0 #ddd;
      background-color: #ffffff;
      font-family: Montserrat, sans-serif;
      font-size: 12px;
      font-weight: bold;
      font-style: normal;
      font-stretch: normal;
      line-height: normal;
      letter-spacing: 0.9px;
      text-align: center;
      color: #ee3da8;
      height: 50px;
      padding: 10px 25px;
      text-transform: uppercase;
      outline: none; }
      .personal-page-container .personal-description-section button.btn-resume-download:hover {
        background-color: #ee3da8;
        color: #fff;
        box-shadow: none; }
  .personal-page-container .competence-section {
    width: 750px;
    margin: 100px auto 0 auto; }
    .personal-page-container .competence-section h2 {
      font-family: Montserrat, sans-serif;
      font-size: 60px;
      font-weight: 300;
      font-style: normal;
      font-stretch: normal;
      line-height: normal;
      letter-spacing: normal;
      text-align: center;
      color: #000000;
      margin-bottom: 75px; }
    .personal-page-container .competence-section .graph-container {
      display: flex;
      flex-wrap: wrap;
      margin: 0px -30px; }
      .personal-page-container .competence-section .graph-container .graph {
        width: 50%;
        padding: 20px; }
        .personal-page-container .competence-section .graph-container .graph .graph-top {
          display: flex;
          align-items: center;
          justify-content: space-between;
          margin-bottom: 10px; }
          .personal-page-container .competence-section .graph-container .graph .graph-top p:first-of-type {
            width: 250px;
            height: 40px;
            font-family: 'Source Sans Pro', sans-serif;
            font-size: 16px;
            font-weight: normal;
            font-style: normal;
            font-stretch: normal;
            line-height: 20px;
            letter-spacing: normal;
            color: #000000;
            display: flex;
            align-items: center;
            margin: 0; }
          .personal-page-container .competence-section .graph-container .graph .graph-top p:last-of-type {
            font-family: Montserrat, sans-serif;
            font-size: 26px;
            font-weight: bold;
            font-style: normal;
            font-stretch: normal;
            line-height: normal;
            letter-spacing: normal;
            text-align: right;
            color: #000000;
            margin: 0; }
        .personal-page-container .competence-section .graph-container .graph .graph-bottom .line {
          height: 10px;
          border-radius: 10px;
          background-color: #e4e4e4;
          position: relative;
          width: 100%; }
          .personal-page-container .competence-section .graph-container .graph .graph-bottom .line span.loader {
            height: 10px;
            border-radius: 10px;
            background-color: #ee3da8;
            display: block;
            -webkit-transition: width 1s ease-in-out;
            -moz-transition: width 1s ease-in-out;
            -ms-transition: width 1s ease-in-out;
            -o-transition: width 1s ease-in-out;
            transition: width 1s ease-in-out;
            width: 0;
            background-image: linear-gradient(264deg, #2b7ce1, #ee3da8); }
  .personal-page-container .languages-section {
    width: 800px;
    margin: 100px auto 0 auto; }
    .personal-page-container .languages-section h2 {
      font-family: Montserrat, sans-serif;
      font-size: 60px;
      font-weight: 300;
      font-style: normal;
      font-stretch: normal;
      line-height: normal;
      letter-spacing: normal;
      text-align: center;
      color: #000000;
      margin-bottom: 75px; }
    .personal-page-container .languages-section .language-container {
      display: flex;
      flex-flow: row nowrap;
      margin: 0px -30px; }
      .personal-page-container .languages-section .language-container .single-chart {
        width: 20%;
        justify-content: space-around; }
        .personal-page-container .languages-section .language-container .single-chart .circular-chart {
          display: block;
          margin: 10px auto;
          max-width: 80%;
          max-height: 250px; }
          .personal-page-container .languages-section .language-container .single-chart .circular-chart .circular-chart {
            display: block;
            margin: 10px auto;
            max-width: 80%;
            max-height: 250px; }
          .personal-page-container .languages-section .language-container .single-chart .circular-chart .circle-bg {
            fill: none;
            stroke: #eee;
            stroke-width: 2px; }
          .personal-page-container .languages-section .language-container .single-chart .circular-chart .circle {
            fill: none;
            stroke-width: 2.1px;
            stroke-linecap: round;
            animation: progress 1s ease-out forwards; }
          .personal-page-container .languages-section .language-container .single-chart .circular-chart .percentage {
            font-size: 0.4em;
            text-anchor: middle;
            font-family: Montserrat, sans-serif;
            font-weight: bold;
            font-style: normal;
            font-stretch: normal;
            line-height: normal;
            letter-spacing: normal;
            text-align: right;
            fill: #000000; }
        .personal-page-container .languages-section .language-container .single-chart .chart-title {
          text-align: center;
          font-family: 'Source Sans Pro', sans-serif;
          font-size: 16px;
          font-weight: normal;
          font-style: normal;
          font-stretch: normal;
          line-height: 1.25;
          letter-spacing: normal;
          color: #000000; }
    .personal-page-container .languages-section .owl-carousel .owl-prev, .personal-page-container .languages-section .owl-carousel .owl-next {
      background-color: #E4E4E4 !important; }
      .personal-page-container .languages-section .owl-carousel .owl-prev:hover, .personal-page-container .languages-section .owl-carousel .owl-next:hover {
        background-color: #d7d7d7 !important; }
    .personal-page-container .languages-section .switch-container {
      margin-top: 30px;
      display: flex;
      justify-content: center; }
      .personal-page-container .languages-section .switch-container .tabs {
        margin-top: 50px;
        font-size: 15px;
        padding: 0;
        list-style: none;
        background: #f3f3f3;
        display: inline-block;
        border-radius: 0;
        position: relative;
        height: 40px; }
        .personal-page-container .languages-section .switch-container .tabs a {
          text-decoration: none;
          color: #333;
          text-transform: uppercase;
          padding: 10px 20px;
          display: inline-block;
          position: relative;
          z-index: 1;
          transition-duration: 0.6s;
          font-family: Montserrat, sans-serif;
          font-size: 12px;
          font-weight: bold;
          font-style: normal;
          font-stretch: normal;
          letter-spacing: 0.9px;
          text-align: center;
          height: 40px;
          line-height: 22px; }
          .personal-page-container .languages-section .switch-container .tabs a.active {
            color: #fff; }
        .personal-page-container .languages-section .switch-container .tabs .selector {
          height: 100%;
          display: inline-block;
          position: absolute;
          left: 0;
          top: 0;
          z-index: 1;
          border-radius: 0;
          transition-duration: 0.6s;
          transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
          background: #ee3da8; }
  .personal-page-container .wall-section {
    margin: 100px auto 0 auto;
    background: url(/assets/themes/backend/icollectivo/images/landing/wall/pattern@2x.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding-bottom: 40px; }
    .personal-page-container .wall-section h2 {
      font-family: Montserrat, sans-serif;
      font-size: 60px;
      font-weight: 300;
      font-style: normal;
      font-stretch: normal;
      line-height: normal;
      letter-spacing: normal;
      text-align: center;
      color: #000000;
      margin-bottom: 75px; }
    .personal-page-container .wall-section .card-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: flex-start; }
      .personal-page-container .wall-section .card-container .card {
        width: 30%;
        border-radius: 10px;
        box-shadow: 0 2px 10px 0 #ddd;
        background-color: #ffffff;
        padding: 0;
        height: 310px;
        margin-bottom: 25px;
        position: relative;
        margin-right: 3%; }
        .personal-page-container .wall-section .card-container .card .header {
          height: 50%;
          background-repeat: no-repeat !important;
          background-position: center !important;
          background-size: cover !important;
          border-top-left-radius: 10px;
          border-top-right-radius: 10px;
          display: flex;
          position: relative;
          padding: 20px;
          border-bottom: 1px solid #e6e6e6;
          -webkit-filter: grayscale(100%);
          /* Ch 23+, Saf 6.0+, BB 10.0+ */
          filter: grayscale(100%);
          /* FF 35+ */
          -webkit-transition: filter .2s ease-in-out;
          -moz-transition: filter .2s ease-in-out;
          -ms-transition: filter .2s ease-in-out;
          -o-transition: filter .2s ease-in-out;
          transition: filter .2s ease-in-out; }
          .personal-page-container .wall-section .card-container .card .header .card-title {
            margin: 0 0 15px 0;
            font-family: Montserrat, sans-serif;
            font-size: 18px;
            font-weight: bold;
            font-style: normal;
            font-stretch: normal;
            line-height: 24px;
            letter-spacing: normal;
            color: #ffffff;
            display: flex;
            align-items: flex-end; }
          .personal-page-container .wall-section .card-container .card .header .card-share {
            width: 55px;
            height: 55px;
            background-color: #fd6e6e;
            position: absolute;
            border-radius: 55px;
            display: flex;
            align-items: center;
            justify-content: center;
            bottom: -28px;
            right: 15px;
            box-shadow: 0 2px 10px 0 #00000033;
            border: 0 !important; }
            .personal-page-container .wall-section .card-container .card .header .card-share:hover {
              cursor: pointer; }
          .personal-page-container .wall-section .card-container .card .header:hover {
            -webkit-filter: grayscale(0%);
            /* Ch 23+, Saf 6.0+, BB 10.0+ */
            filter: grayscale(0%);
            /* FF 35+ */ }
        .personal-page-container .wall-section .card-container .card .content {
          padding: 20px; }
          .personal-page-container .wall-section .card-container .card .content .card-category {
            position: absolute;
            border-radius: 0;
            padding: 5px 30px 2px 25px;
            background: url(/assets/themes/backend/icollectivo/images/personal/card-category-egyenlito.svg);
            text-transform: uppercase;
            font-family: Montserrat, sans-serif;
            font-size: 10px;
            font-weight: bold;
            font-style: normal;
            font-stretch: normal;
            line-height: 21px;
            letter-spacing: 0.5px;
            color: #ffffff;
            top: 127px;
            left: 0;
            max-width: 100%;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            background-repeat: no-repeat;
            background-position: right;
            background-size: cover;
            -webkit-filter: grayscale(0%) !important;
            filter: grayscale(0%) !important;
            z-index: 1; }
          .personal-page-container .wall-section .card-container .card .content p:first-of-type {
            margin-bottom: 5px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            margin-top: 0;
            font-size: 18px;
            font-weight: bold;
            font-style: normal;
            font-stretch: normal;
            line-height: 1.33;
            letter-spacing: normal;
            color: #000000;
            font-family: Montserrat, Arial, Helvetica, sans-serif;
            -webkit-transition: color .2s linear;
            -moz-transition: color .2s linear;
            -ms-transition: color .2s linear;
            -o-transition: color .2s linear;
            transition: color .2s linear; }
          .personal-page-container .wall-section .card-container .card .content p:last-of-type {
            font-family: 'Source Sans Pro', sans-serif;
            font-size: 16px;
            font-weight: normal;
            font-style: normal;
            font-stretch: normal;
            line-height: 24px;
            letter-spacing: normal;
            color: #000000; }
            .personal-page-container .wall-section .card-container .card .content p:last-of-type span {
              font-family: 'Source Sans Pro', sans-serif;
              font-size: 16px;
              font-weight: normal;
              font-style: normal;
              font-stretch: normal;
              line-height: 24px;
              letter-spacing: normal;
              color: #000000; }
          .personal-page-container .wall-section .card-container .card .content .tags-cont {
            position: absolute;
            bottom: 10px;
            left: 0;
            padding: 0 20px;
            width: 100%; }
            .personal-page-container .wall-section .card-container .card .content .tags-cont p.tag {
              font-family: Montserrat, sans-serif;
              font-size: 10px;
              font-weight: 600;
              font-style: normal;
              font-stretch: normal;
              line-height: 2.4;
              letter-spacing: normal;
              color: #444444;
              margin-right: 5px;
              white-space: nowrap;
              overflow: hidden;
              text-overflow: ellipsis; }
        .personal-page-container .wall-section .card-container .card:hover {
          cursor: pointer; }
          .personal-page-container .wall-section .card-container .card:hover .content > p:first-of-type {
            color: #ee3da8; }
      .personal-page-container .wall-section .card-container .card-qualification .content {
        padding: 20px; }
        .personal-page-container .wall-section .card-container .card-qualification .content p:first-of-type {
          font-size: 18px; }
  .personal-page-container .workplaces-section {
    margin: 100px auto 0 auto; }
    .personal-page-container .workplaces-section h2 {
      font-family: Montserrat, sans-serif;
      font-size: 60px;
      font-weight: 300;
      font-style: normal;
      font-stretch: normal;
      line-height: normal;
      letter-spacing: normal;
      text-align: center;
      color: #000000;
      margin-bottom: 75px; }
  .personal-page-container .qualification-section, .personal-page-container .hobby-section {
    margin: 100px auto 0 auto; }
    .personal-page-container .qualification-section h2, .personal-page-container .hobby-section h2 {
      font-family: Montserrat, sans-serif;
      font-size: 60px;
      font-weight: 300;
      font-style: normal;
      font-stretch: normal;
      line-height: normal;
      letter-spacing: normal;
      text-align: center;
      color: #000000;
      margin-bottom: 75px; }
  .personal-page-container .hobby-section .hobbies-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; }
    .personal-page-container .hobby-section .hobbies-container .hobby {
      min-width: 170px;
      display: flex;
      flex-direction: column;
      align-items: center;
      margin: 0 15px 35px 15px; }
      .personal-page-container .hobby-section .hobbies-container .hobby .image-container {
        background-color: #FFFFFF;
        border-radius: 100%;
        box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.2);
        width: 120px;
        height: 120px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 10px; }
        .personal-page-container .hobby-section .hobbies-container .hobby .image-container img {
          height: 50%; }
      .personal-page-container .hobby-section .hobbies-container .hobby .hobby-name {
        color: #000000;
        font-family: Montserrat, sans-serif;
        font-size: 18px;
        font-weight: 700;
        line-height: 22px;
        width: 165px;
        text-align: center;
        margin-top: 20px; }
      .personal-page-container .hobby-section .hobbies-container .hobby .hobby-category {
        color: #000000;
        font-family: SourceSansPro, sans-serif;
        font-size: 16px;
        font-weight: 400;
        line-height: 19px;
        width: 165px;
        text-align: center; }
  .personal-page-container .contact-section {
    background-image: linear-gradient(113deg, #2b7ce1, #ee3da8);
    margin-top: 50px; }
    .personal-page-container .contact-section .contact-inner {
      margin: 100px auto;
      width: 555px; }
      .personal-page-container .contact-section .contact-inner h2 {
        font-family: Montserrat, sans-serif;
        font-size: 60px;
        font-weight: 300;
        font-style: normal;
        font-stretch: normal;
        line-height: normal;
        letter-spacing: normal;
        text-align: center;
        color: #ffffff;
        margin: 0; }
      .personal-page-container .contact-section .contact-inner .description {
        font-family: 'Source Sans Pro', sans-serif;
        font-size: 16px;
        font-weight: normal;
        font-style: normal;
        font-stretch: normal;
        line-height: 1.38;
        letter-spacing: normal;
        text-align: center;
        color: #fff;
        margin-bottom: 35px;
        margin-top: 25px; }
      .personal-page-container .contact-section .contact-inner form {
        padding: 0 75px; }
        .personal-page-container .contact-section .contact-inner form input, .personal-page-container .contact-section .contact-inner form textarea {
          background-color: transparent;
          border: 2px solid #fff;
          border-radius: 0;
          padding: 6px 20px;
          font-family: 'SourceSansPro-SemiBold', sans-serif;
          font-size: 16px;
          font-weight: 600;
          font-style: normal;
          font-stretch: normal;
          line-height: 32px;
          letter-spacing: normal;
          color: #fff; }
          .personal-page-container .contact-section .contact-inner form input::-webkit-input-placeholder, .personal-page-container .contact-section .contact-inner form textarea::-webkit-input-placeholder {
            opacity: 0.3;
            font-family: 'SourceSansPro-SemiBold', sans-serif;
            color: #fff; }
          .personal-page-container .contact-section .contact-inner form input::-moz-placeholder, .personal-page-container .contact-section .contact-inner form textarea::-moz-placeholder {
            opacity: 0.3;
            font-family: 'SourceSansPro-SemiBold', sans-serif;
            color: #fff; }
          .personal-page-container .contact-section .contact-inner form input::-ms-input-placeholder, .personal-page-container .contact-section .contact-inner form textarea::-ms-input-placeholder {
            opacity: 0.3;
            font-family: 'SourceSansPro-SemiBold', sans-serif;
            color: #fff; }
          .personal-page-container .contact-section .contact-inner form input::-moz-placeholder, .personal-page-container .contact-section .contact-inner form textarea::-moz-placeholder {
            opacity: 0.3;
            font-family: 'SourceSansPro-SemiBold', sans-serif;
            color: #fff; }
        .personal-page-container .contact-section .contact-inner form textarea {
          overflow: hidden; }
        .personal-page-container .contact-section .contact-inner form input {
          height: 50px !important; }
        .personal-page-container .contact-section .contact-inner form .btn-form-send {
          border-radius: 0;
          font-family: Montserrat, sans-serif;
          font-size: 12px;
          font-weight: bold;
          font-style: normal;
          font-stretch: normal;
          line-height: normal;
          letter-spacing: 0.9px;
          text-align: center;
          color: #a355be;
          background-color: #fff;
          display: block;
          margin: 0 auto;
          height: 50px;
          padding: 10px 15px;
          min-width: 120px;
          text-transform: uppercase; }
          .personal-page-container .contact-section .contact-inner form .btn-form-send i {
            margin: 0;
            font-size: 20px !important; }
          .personal-page-container .contact-section .contact-inner form .btn-form-send:hover {
            background-color: #000;
            color: #fff; }
    .personal-page-container .contact-section .form-submission-success-container {
      margin: 100px auto;
      display: flex;
      align-items: center; }
      .personal-page-container .contact-section .form-submission-success-container img {
        display: block;
        margin: 0 auto;
        max-width: 250px;
        border-radius: 100%; }
      .personal-page-container .contact-section .form-submission-success-container .text-holder {
        border-radius: 10px;
        box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.2);
        padding: 20px 30px 35px 30px;
        background-color: #fff;
        min-width: 650px; }
        .personal-page-container .contact-section .form-submission-success-container .text-holder .form-submission-success-heading {
          font-family: Montserrat, Arial, Helvetica, sans-serif;
          font-size: 60px;
          font-weight: 300;
          font-style: normal;
          font-stretch: normal;
          line-height: normal;
          letter-spacing: normal;
          color: #ee3da8;
          text-align: left;
          margin-bottom: 14px; }
        .personal-page-container .contact-section .form-submission-success-container .text-holder .form-submission-success-text {
          font-size: 20px;
          font-weight: normal;
          font-style: normal;
          font-stretch: normal;
          line-height: 1.5;
          letter-spacing: normal;
          color: #000000;
          text-align: left;
          font-family: SourceSansPro, Arial, Helvetica, sans-serif; }
  .personal-page-container footer {
    padding: 50px 0 0 0; }
    .personal-page-container footer .footer-top {
      display: flex;
      align-items: center;
      width: 1030px;
      margin: 0 auto; }
      .personal-page-container footer .footer-top .logo-container {
        margin-right: 50px; }
      .personal-page-container footer .footer-top .content-container {
        flex: 1;
        align-self: baseline; }
        .personal-page-container footer .footer-top .content-container h4 {
          font-family: 'Poppins-SemiBold', sans-serif;
          font-size: 20px;
          font-weight: 600;
          font-style: normal;
          font-stretch: normal;
          line-height: 25px;
          letter-spacing: normal;
          color: #000000;
          margin-bottom: 5px; }
        .personal-page-container footer .footer-top .content-container p {
          font-family: 'Source Sans Pro', sans-serif;
          font-size: 16px;
          font-weight: normal;
          font-style: normal;
          font-stretch: normal;
          line-height: 22px;
          letter-spacing: normal;
          color: #444444;
          width: 75%; }
    .personal-page-container footer .footer-bottom {
      display: flex;
      align-items: center;
      width: 1030px;
      margin: 0 auto;
      height: 80px;
      justify-content: center; }
      .personal-page-container footer .footer-bottom p {
        font-family: 'Source Sans Pro', sans-serif;
        font-size: 12px;
        font-weight: normal;
        font-style: normal;
        font-stretch: normal;
        line-height: 22px;
        letter-spacing: normal;
        text-align: center;
        color: #444444;
        margin: 0; }
    .personal-page-container footer a {
      letter-spacing: 1px;
      font-size: 14px;
      padding: 5px 12px !important;
      width: auto !important;
      min-width: 140px;
      height: 40px !important;
      color: #fff !important;
      font-family: 'Poppins-SemiBold', sans-serif !important;
      background-color: #ff315d !important;
      border-radius: 22.5px;
      font-weight: 600;
      font-style: normal;
      font-stretch: normal;
      line-height: 29px !important;
      text-align: center;
      text-transform: uppercase; }
      .personal-page-container footer a:hover {
        color: #fff !important;
        background-color: #aa2340 !important; }

.circular-chart.blue .circle {
  stroke: #ee3da8; }

@keyframes progress {
  0% {
    stroke-dasharray: 0 100; } }
.overlay {
  height: 0;
  width: 100%;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  overflow-y: hidden;
  transition: 0.3s ease-in; }
  .overlay .overlay-content {
    position: relative;
    top: 100px;
    width: 100%;
    text-align: center;
    padding: 0 30px 15px 30px; }
    .overlay .overlay-content ul {
      padding: 0 !important;
      list-style: none; }
      .overlay .overlay-content ul li {
        border-bottom: 2px solid rgba(51, 51, 51, 0.1); }
        .overlay .overlay-content ul li a {
          color: #fff;
          padding: 15px 0;
          text-decoration: none;
          font-size: 22px;
          display: block;
          transition: 0.3s;
          font-family: 'Poppins-SemiBold';
          font-weight: 600;
          font-style: normal;
          font-stretch: normal;
          line-height: normal;
          letter-spacing: 1px;
          text-transform: uppercase; }
          .overlay .overlay-content ul li a:hover, .overlay .overlay-content ul li a:active, .overlay .overlay-content ul li a:focus {
            color: #333; }
        .overlay .overlay-content ul li:last-of-type {
          border-bottom: 0 !important; }
        .overlay .overlay-content ul li .mobile-personal-button {
          width: 232px;
          height: 50px;
          border-radius: 25px;
          background-color: #fff;
          font-family: Montserrat, sans-serif;
          font-size: 14px;
          font-weight: bold;
          font-style: normal;
          font-stretch: normal;
          line-height: normal;
          letter-spacing: 1px;
          text-align: center;
          color: #ee3da8;
          margin: 15px auto 0 auto; }
          .overlay .overlay-content ul li .mobile-personal-button:hover, .overlay .overlay-content ul li .mobile-personal-button:active, .overlay .overlay-content ul li .mobile-personal-button:focus {
            color: #333; }
      .overlay .overlay-content ul:nth-of-type(2) {
        display: flex;
        justify-content: center;
        width: 100%;
        margin: 0;
        text-transform: uppercase; }
  .overlay .open > .dropdown-toggle.btn-default {
    border: 0 !important;
    box-shadow: none !important; }

.close-btn {
  color: #fff;
  position: absolute;
  top: 0;
  right: 30px;
  font-size: 60px;
  text-decoration: none !important; }
  .close-btn:hover, .close-btn:focus, .close-btn:active {
    text-decoration: none !important;
    color: #fff !important; }

.owl-carousel-language .owl-item {
  display: flex;
  justify-content: center; }

.personal-menu.menu-dark {
  display: none; }

#modal-view-reference .modal-dialog, #modal-view-publication .modal-dialog, #modal-view-public-activity .modal-dialog, #modal-view-workplace .modal-dialog, #modal-view-education .modal-dialog {
  width: 500px; }
  #modal-view-reference .modal-dialog .modal-content, #modal-view-publication .modal-dialog .modal-content, #modal-view-public-activity .modal-dialog .modal-content, #modal-view-workplace .modal-dialog .modal-content, #modal-view-education .modal-dialog .modal-content {
    border-radius: 12px;
    box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.5); }
    #modal-view-reference .modal-dialog .modal-content .modal-header, #modal-view-publication .modal-dialog .modal-content .modal-header, #modal-view-public-activity .modal-dialog .modal-content .modal-header, #modal-view-workplace .modal-dialog .modal-content .modal-header, #modal-view-education .modal-dialog .modal-content .modal-header {
      border-bottom: 0 !important;
      height: 237px;
      background-repeat: no-repeat !important;
      background-position: center !important;
      background-size: cover !important;
      border-top-left-radius: 10px;
      border-top-right-radius: 10px;
      display: flex;
      position: relative;
      padding: 20px;
      border-bottom: 1px solid #e6e6e6 !important; }
      #modal-view-reference .modal-dialog .modal-content .modal-header .close, #modal-view-publication .modal-dialog .modal-content .modal-header .close, #modal-view-public-activity .modal-dialog .modal-content .modal-header .close, #modal-view-workplace .modal-dialog .modal-content .modal-header .close, #modal-view-education .modal-dialog .modal-content .modal-header .close {
        position: absolute;
        right: 20px;
        top: 18px;
        color: #fff;
        text-shadow: 0 0 4px #000;
        opacity: 1;
        z-index: 1; }
      #modal-view-reference .modal-dialog .modal-content .modal-header .card-url, #modal-view-publication .modal-dialog .modal-content .modal-header .card-url, #modal-view-public-activity .modal-dialog .modal-content .modal-header .card-url, #modal-view-workplace .modal-dialog .modal-content .modal-header .card-url, #modal-view-education .modal-dialog .modal-content .modal-header .card-url {
        width: 55px;
        height: 55px;
        background-color: #abdcff;
        position: absolute;
        border-radius: 55px;
        display: flex;
        align-items: center;
        justify-content: center;
        bottom: -28px;
        right: 15px;
        box-shadow: 0 2px 10px 0 #00000033;
        border: 0 !important;
        z-index: 1; }
        #modal-view-reference .modal-dialog .modal-content .modal-header .card-url:hover, #modal-view-publication .modal-dialog .modal-content .modal-header .card-url:hover, #modal-view-public-activity .modal-dialog .modal-content .modal-header .card-url:hover, #modal-view-workplace .modal-dialog .modal-content .modal-header .card-url:hover, #modal-view-education .modal-dialog .modal-content .modal-header .card-url:hover {
          cursor: pointer; }
      #modal-view-reference .modal-dialog .modal-content .modal-header .card-category, #modal-view-publication .modal-dialog .modal-content .modal-header .card-category, #modal-view-public-activity .modal-dialog .modal-content .modal-header .card-category, #modal-view-workplace .modal-dialog .modal-content .modal-header .card-category, #modal-view-education .modal-dialog .modal-content .modal-header .card-category {
        position: absolute;
        border-radius: 0;
        padding: 5px 30px 2px 25px;
        background: url(/assets/themes/backend/icollectivo/images/personal/card-category.svg);
        text-transform: uppercase;
        font-family: Montserrat, sans-serif;
        font-size: 10px;
        font-weight: bold;
        font-style: normal;
        font-stretch: normal;
        line-height: 21px;
        letter-spacing: 0.5px;
        color: #ffffff;
        bottom: -1px;
        left: 0;
        max-width: 100%;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        background-repeat: no-repeat;
        background-position: right;
        z-index: 1; }
    #modal-view-reference .modal-dialog .modal-content .modal-body, #modal-view-publication .modal-dialog .modal-content .modal-body, #modal-view-public-activity .modal-dialog .modal-content .modal-body, #modal-view-workplace .modal-dialog .modal-content .modal-body, #modal-view-education .modal-dialog .modal-content .modal-body {
      padding: 0 85px 15px 25px !important; }
      #modal-view-reference .modal-dialog .modal-content .modal-body .tags-cont, #modal-view-publication .modal-dialog .modal-content .modal-body .tags-cont, #modal-view-public-activity .modal-dialog .modal-content .modal-body .tags-cont, #modal-view-workplace .modal-dialog .modal-content .modal-body .tags-cont, #modal-view-education .modal-dialog .modal-content .modal-body .tags-cont {
        margin: 13px 0;
        min-height: 15px;
        display: flex;
        flex-wrap: wrap; }
        #modal-view-reference .modal-dialog .modal-content .modal-body .tags-cont .tag-item a, #modal-view-publication .modal-dialog .modal-content .modal-body .tags-cont .tag-item a, #modal-view-public-activity .modal-dialog .modal-content .modal-body .tags-cont .tag-item a, #modal-view-workplace .modal-dialog .modal-content .modal-body .tags-cont .tag-item a, #modal-view-education .modal-dialog .modal-content .modal-body .tags-cont .tag-item a {
          font-family: Montserrat, Arial, Helvetica, sans-serif;
          font-size: 10px;
          font-weight: 600;
          font-style: normal;
          font-stretch: normal;
          line-height: 2.4;
          letter-spacing: normal;
          color: #444444;
          text-decoration: none; }
          #modal-view-reference .modal-dialog .modal-content .modal-body .tags-cont .tag-item a:hover, #modal-view-publication .modal-dialog .modal-content .modal-body .tags-cont .tag-item a:hover, #modal-view-public-activity .modal-dialog .modal-content .modal-body .tags-cont .tag-item a:hover, #modal-view-workplace .modal-dialog .modal-content .modal-body .tags-cont .tag-item a:hover, #modal-view-education .modal-dialog .modal-content .modal-body .tags-cont .tag-item a:hover {
            cursor: text; }
      #modal-view-reference .modal-dialog .modal-content .modal-body .title, #modal-view-publication .modal-dialog .modal-content .modal-body .title, #modal-view-public-activity .modal-dialog .modal-content .modal-body .title, #modal-view-workplace .modal-dialog .modal-content .modal-body .title, #modal-view-education .modal-dialog .modal-content .modal-body .title {
        font-family: Montserrat, Arial, Helvetica, sans-serif;
        font-size: 22px;
        font-weight: bold;
        font-style: normal;
        font-stretch: normal;
        line-height: 1.27;
        letter-spacing: normal;
        color: #000000;
        margin-bottom: 12px; }
      #modal-view-reference .modal-dialog .modal-content .modal-body .list, #modal-view-publication .modal-dialog .modal-content .modal-body .list, #modal-view-public-activity .modal-dialog .modal-content .modal-body .list, #modal-view-workplace .modal-dialog .modal-content .modal-body .list, #modal-view-education .modal-dialog .modal-content .modal-body .list {
        padding: 0;
        list-style: none; }
        #modal-view-reference .modal-dialog .modal-content .modal-body .list li, #modal-view-publication .modal-dialog .modal-content .modal-body .list li, #modal-view-public-activity .modal-dialog .modal-content .modal-body .list li, #modal-view-workplace .modal-dialog .modal-content .modal-body .list li, #modal-view-education .modal-dialog .modal-content .modal-body .list li {
          padding-left: 15px;
          margin-bottom: 6px;
          font-size: 16px;
          font-weight: normal;
          font-style: normal;
          font-stretch: normal;
          line-height: 1.5;
          letter-spacing: normal;
          color: #000000;
          position: relative;
          border-left: solid 3px #000000;
          font-family: 'Source Sans Pro', Arial, Helvetica, sans-serif; }
          #modal-view-reference .modal-dialog .modal-content .modal-body .list li:first-of-type, #modal-view-publication .modal-dialog .modal-content .modal-body .list li:first-of-type, #modal-view-public-activity .modal-dialog .modal-content .modal-body .list li:first-of-type, #modal-view-workplace .modal-dialog .modal-content .modal-body .list li:first-of-type, #modal-view-education .modal-dialog .modal-content .modal-body .list li:first-of-type {
            font-family: 'Source Sans Pro', Arial, Helvetica, sans-serif;
            font-weight: 600; }
      #modal-view-reference .modal-dialog .modal-content .modal-body .description, #modal-view-publication .modal-dialog .modal-content .modal-body .description, #modal-view-public-activity .modal-dialog .modal-content .modal-body .description, #modal-view-workplace .modal-dialog .modal-content .modal-body .description, #modal-view-education .modal-dialog .modal-content .modal-body .description {
        margin-top: 21px;
        font-size: 14px;
        font-weight: normal;
        font-style: normal;
        font-stretch: normal;
        line-height: 1.43;
        letter-spacing: normal;
        color: #444444;
        font-family: 'Source Sans Pro', Arial, Helvetica, sans-serif; }

@media screen and (max-height: 450px) {
  .overlay {
    overflow-y: auto; }

  .overlay a {
    font-size: 20px; }

  .overlay .close-btn {
    font-size: 40px;
    top: 15px;
    right: 35px; } }
@media screen and (max-width: 991px) {
  .owl-carousel-language .owl-nav {
    height: 100% !important;
    display: flex !important;
    align-items: center !important;
    margin: -20px 0 !important;
    top: 0 !important; }
    .owl-carousel-language .owl-nav .owl-prev, .owl-carousel-language .owl-nav .owl-next {
      border-radius: 50px !important;
      border: 0 !important;
      color: #333 !important;
      padding: 10px !important; }
      .owl-carousel-language .owl-nav .owl-prev i, .owl-carousel-language .owl-nav .owl-next i {
        margin: 0 !important; }

  h2 {
    font-size: 36px !important; }

  #mobileMenuLanding {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-image: linear-gradient(325deg, #2b7ce1, #ee3da8);
    justify-content: center;
    flex-direction: column;
    align-items: center;
    z-index: 10; }
    #mobileMenuLanding .language-select-container {
      left: 40px !important; }
      #mobileMenuLanding .language-select-container .language-item {
        margin-top: 2px; }
      #mobileMenuLanding .language-select-container.white {
        background-color: #fff !important;
        color: #333 !important; }

  #mobileMenuLanding.in {
    display: block !important; }

  .navbar-header {
    display: block !important;
    height: auto !important;
    padding: 10px;
    width: 100%;
    margin-right: -15px !important;
    margin-left: -15px !important;
    width: auto !important;
    float: initial; }
    .navbar-header .navbar-toggle {
      border: 0;
      margin: 3px 0 0 0; }
      .navbar-header .navbar-toggle .icon-bar {
        height: 3px;
        background-color: #333; }
      .navbar-header .navbar-toggle:hover, .navbar-header .navbar-toggle:active, .navbar-header .navbar-toggle:focus {
        background-color: transparent; }

  .navbar-collapse.collapse {
    display: none !important; }

  .navbar-collapse.collapse.in {
    display: block !important; }

  .navbar-header .collapse, .navbar-toggle {
    display: block !important; }

  .navbar > .container {
    width: auto; }

  .navbar-default .navbar-toggle {
    border-color: #fff; }
    .navbar-default .navbar-toggle .icon-bar {
      background-color: #fff; }

  .personal-info-container {
    width: 410px !important;
    padding: 10px !important;
    left: calc(50% - 205px) !important;
    top: 140px !important;
    height: 410px !important; }
    .personal-info-container .personal-photo-container {
      width: 100% !important;
      margin: 0 !important; }
    .personal-info-container .personal-data {
      display: none !important; }

  .personal-description-section {
    margin-top: 175px !important; }
    .personal-description-section .description {
      width: initial !important; }

  .competence-section .graph-container .graph {
    width: 100% !important; }
    .competence-section .graph-container .graph .graph-top .competence-name {
      width: 100% !important;
      height: auto !important; }

  .languages-section {
    width: initial !important; }
    .languages-section h2 {
      font-size: 36px !important; }
    .languages-section .language-container {
      flex-flow: wrap !important;
      margin: 0 !important; }
      .languages-section .language-container .single-chart {
        width: 48% !important;
        margin-bottom: 0; }
    .languages-section .switch-container {
      margin-top: 0 !important; }
      .languages-section .switch-container .tabs {
        margin-top: 25px !important;
        height: 45px !important;
        line-height: 45px !important; }

  .workplaces-section, .qualification-section, .hobby-section {
    padding: 0 15px 15px 0 !important; }
    .workplaces-section h2, .qualification-section h2, .hobby-section h2 {
      font-size: 36px !important; }
    .workplaces-section .cd-timeline__container, .qualification-section .cd-timeline__container, .hobby-section .cd-timeline__container {
      width: 98% !important; }
      .workplaces-section .cd-timeline__container .cd-timleline__content, .qualification-section .cd-timeline__container .cd-timleline__content, .hobby-section .cd-timeline__container .cd-timleline__content {
        margin-left: 50px !important; }

  .wall-section h2 {
    font-size: 36px !important; }
  .wall-section .card-container .card {
    width: 47% !important; }

  .competence-section {
    width: initial !important; }
    .competence-section h2 {
      font-size: 36px !important;
      margin-bottom: 45px !important; }
    .competence-section .graph-container {
      margin: 0 !important; }

  .languages-section h2 {
    font-size: 36px !important; }

  .contact-section h2 {
    font-size: 36px !important; }
  .contact-section .contact-inner {
    width: 100% !important; }
    .contact-section .contact-inner form {
      width: 500px;
      margin: 0 auto; }

  footer {
    padding: 50px 15px 15px 15px !important; }
    footer .footer-top {
      flex-direction: column;
      justify-content: center;
      align-items: center; }
      footer .footer-top .logo-container {
        margin: 0 0 30px 0 !important; }
      footer .footer-top .content-container {
        text-align: center;
        margin: 0 0 30px 0;
        align-self: center; }
        footer .footer-top .content-container p {
          width: 100% !important; }

  .wall-section {
    background: none !important; }

  .personal-menu.menu-dark {
    display: none; }

  .personal-menu.menu-white {
    display: inline-block; }

  .navbar.affix .personal-menu.menu-dark {
    display: inline-block; }
  .navbar.affix .personal-menu.menu-white {
    display: none; }

  .form-submission-success-container {
    flex-direction: column; }
    .form-submission-success-container img {
      margin: 0 auto 50px auto !important; }
    .form-submission-success-container .text-holder {
      min-width: auto !important; }
      .form-submission-success-container .text-holder .form-submission-success-heading {
        word-break: break-word;
        text-align: center !important; }
      .form-submission-success-container .text-holder .form-submission-success-text {
        text-align: center !important; } }
@media screen and (max-width: 1169px) {
  footer .footer-bottom {
    width: auto !important; }
  footer .footer-top {
    width: auto !important; } }
@media screen and (max-width: 768px) {
  .wall-section .card-container {
    flex-direction: column;
    align-items: center; }
    .wall-section .card-container .card {
      width: 100% !important;
      height: 380px !important; }
      .wall-section .card-container .card .content .card-category {
        top: 162px !important; }

  .personal-info-container {
    width: 300px !important;
    left: calc(50% - 150px) !important;
    top: 230px !important;
    height: 300px !important; } }
@media screen and (max-width: 550px) {
  .contact-section .contact-inner form {
    padding: 0 !important;
    width: 100% !important; }

  .form-submission-success-container .text-holder .form-submission-success-heading {
    font-size: 36px !important; }
  .form-submission-success-container .text-holder .form-submission-success-text {
    font-size: 16px !important; } }
@media screen and (max-width: 467px) {
  .banner-container {
    height: 300px !important; }
    .banner-container .personal-info-container {
      width: 250px !important;
      padding: 10px !important;
      left: calc(50% - 125px) !important;
      top: 150px !important;
      height: 250px !important; }

  .personal-description-section {
    margin-top: 140px !important; } }
.owl-theme .owl-nav [class*='owl-'] {
  background: rgba(255, 49, 93, 0.5) !important; }
  .owl-theme .owl-nav [class*='owl-']:hover {
    background: #ff315d !important; }
