/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
.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;touch-action:manipulation;-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;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel .owl-nav button.owl-next,.owl-carousel .owl-nav button.owl-prev,.owl-carousel button.owl-dot{background:0 0;color:inherit;border:none;padding:0!important;font:inherit}.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{-ms-touch-action:pan-y;touch-action:pan-y;-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 .owl-lazy:not([src]),.owl-carousel .owl-item .owl-lazy[src^=""]{max-height:0}.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.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
/*
 * 	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;
}

.owl-theme .owl-nav.disabled + .owl-dots {
    margin-top: 0px;
    position: absolute;
    bottom: 10px;
    text-align: center;
    width: 100%;
}

.owl-theme .owl-dots .owl-dot span {
    width: 12px;
    height: 12px;
    background: #fff;
    border: 1px solid #fff;
}

.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    background: #ff315d;
    border: 1px solid #ff315d;
}
@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;
}
body {
  overflow-x: hidden;
}

.safari .pricing-section {
  padding-top: 200px !important;
}

@-moz-document url-prefix() {
  footer {
    position: absolute !important;
    width: 100% !important;
    bottom: -70px !important;
  }
  .personal-branding-section {
    padding-bottom: 470px !important;
  }
  .moz-section-padding {
    padding: 65px 0 400px 0 !important;
  }
  .business-pricing-page footer, .pricing-page footer {
    bottom: initial !important;
  }
}
@supports (display: -ms-grid) {
  .landing-page {
    position: relative !important;
    top: -70px !important;
  }
  footer {
    position: absolute !important;
    width: 100% !important;
    bottom: -70px !important;
  }
  .personal-branding-section {
    padding-bottom: 470px !important;
  }
  .moz-section-padding {
    padding: 65px 0 400px 0 !important;
  }
  .business-pricing-page footer, .pricing-page footer {
    bottom: initial !important;
  }
  .branding-buttons {
    justify-content: space-around !important;
  }
}
.no-scroll {
  overflow: hidden !important;
}

a:not(.landing-button, .btn-outline-transparent):hover, a:not(.landing-button, .btn-outline-transparent):focus, a:not(.landing-button, .btn-outline-transparent):active {
  color: #ed385f !important;
}

@-moz-document url-prefix() {
  .landing-page {
    top: -70px;
    position: relative;
  }
}
.selector:not(*:root), .landing-page:not(.jury-page, .info-page, .countdown-page) {
  margin-top: -70px;
}

.mobile-profile-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.mobile-profile-container .mobile-profile-image {
  height: 100px;
  width: 100px;
  background-position: center !important;
  background-size: cover !important;
  border-radius: 100%;
  margin-bottom: 16px;
}
.mobile-profile-container .mobile-profile-name {
  text-decoration: none;
}
.mobile-profile-container .mobile-profile-name:hover, .mobile-profile-container .mobile-profile-name:active, .mobile-profile-container .mobile-profile-name:focus {
  color: #fff;
}
.mobile-profile-container .mobile-profile-name p {
  font-family: "Poppins-Regular", Arial, "Helvetica Neue", Helvetica, sans-serif;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #fff;
  font-size: 22px;
  max-width: 200px;
  margin-bottom: 27px;
}
.mobile-profile-container > a.primary-button-small {
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  width: auto;
  padding: 0 22px;
}

.mobile-menu-logout {
  margin-top: 25px;
}
.mobile-menu-logout a {
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 15px;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-decoration: none;
  color: #ff315d;
}
.mobile-menu-logout a:hover, .mobile-menu-logout a:focus, .mobile-menu-logout a:active {
  color: #ff315d !important;
}

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

.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: 22.5px;
  background-color: #333;
  color: #fff;
  padding: 10px 0;
  position: absolute;
  top: 13px;
  z-index: 1;
}
.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: #fff;
  color: #333;
}

header .navbar-default {
  background-color: #171717;
  border: 0 !important;
  min-height: 60px;
  border-radius: 0 !important;
  margin-bottom: 0 !important;
}
header .navbar-default .navbar-header {
  display: flex;
  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", 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;
  text-decoration: none !important;
}
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", 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", 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 .navbar-collapse .navbar-nav .global-search-input {
  width: 0;
}
header .navbar-default .navbar-collapse .navbar-nav .session_date {
  padding: 15px;
  color: #fff !important;
  margin: 0;
}
header .navbar-default .navbar-collapse .navbar-nav .session_date > span:first-of-type {
  margin-right: 5px;
}
header .navbar-default li > a {
  padding: 0;
}

.page-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.landing-page .offer-carousel-container {
  background-size: contain !important;
  background: url(/assets/themes/backend/icollectivo/images/landing_new/bean-large.svg) no-repeat;
  padding-bottom: 50px;
  margin-bottom: 150px;
}
.landing-page .offer-carousel-container .offer-item {
  display: flex;
}
.landing-page .offer-carousel-container .offer-item .image-container img {
  max-width: 543px;
}
.landing-page .offer-carousel-container .offer-item .offer-data {
  max-width: 457px;
  padding-left: 140px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.landing-page .offer-carousel-container .offer-item .offer-data h2 {
  font-family: Poppins, Arial, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 28px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 48px;
  letter-spacing: normal;
  color: #fff;
  margin: 0 0 21px 0;
}
.landing-page .offer-carousel-container .offer-item .offer-data p {
  font-family: Poppins, Arial, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 28px;
  letter-spacing: normal;
  color: #fff;
  margin-bottom: 32px;
}
.landing-page .offer-carousel-container .offer-item .offer-data .btn {
  max-width: 165px;
}
.landing-page .testimonial-fluid-section {
  position: relative;
  overflow: hidden;
  padding-top: 170px;
  margin-top: -100px;
}
.landing-page .testimonial-fluid-section img.leaf {
  position: absolute;
}
.landing-page .testimonial-fluid-section img.leaf.leaf-medium, .landing-page .testimonial-fluid-section img.leaf.leaf-small {
  display: none;
}
.landing-page .testimonial-fluid-section .leaf-left {
  right: -90px;
  top: 120px;
}
.landing-page .testimonial-fluid-section .leaf-right {
  left: -140px;
  top: 0;
}
.landing-page .testimonial-fluid-section .testimonial-section h2 {
  font-family: Poppins, Arial, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 40px;
  font-weight: 300;
  font-stretch: normal;
  font-style: normal;
  line-height: 65px;
  letter-spacing: normal;
  color: #333333;
  text-align: center;
  margin-top: 75px;
  margin-bottom: 100px;
}
.landing-page .testimonial-fluid-section .testimonial-section .testimonials-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1900px;
  margin: 0 auto;
}
.landing-page .testimonial-fluid-section .testimonial-section .testimonials-container .testimonial-card {
  width: 360px;
  height: 420px;
  border-radius: 12px;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.25);
  background-color: #ffffff;
  padding: 0 20px 49px 20px;
  margin: 0 60px 100px 60px;
  text-align: center;
  z-index: 1;
}
.landing-page .testimonial-fluid-section .testimonial-section .testimonials-container .testimonial-card:nth-child(3n+2) {
  margin-top: 50px;
}
.landing-page .testimonial-fluid-section .testimonial-section .testimonials-container .testimonial-card .profile {
  width: 136px;
  height: 136px;
  border-radius: 100%;
  margin-top: -68px;
}
.landing-page .testimonial-fluid-section .testimonial-section .testimonials-container .testimonial-card h3.name {
  font-family: Poppins, Arial, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 20px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #333333;
  margin-bottom: 8px;
  margin-top: 28px;
}
.landing-page .testimonial-fluid-section .testimonial-section .testimonials-container .testimonial-card p.specialization {
  font-family: Poppins, Arial, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 18px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #555555;
}
.landing-page .testimonial-fluid-section .testimonial-section .testimonials-container .testimonial-card p.description {
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-size: 17px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #333333;
  margin-bottom: 32px;
  min-height: 135px;
}
.landing-page .testimonial-fluid-section .testimonial-section .testimonials-container .testimonial-card .btn-outline {
  font-family: Poppins, Arial, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 0.14px;
  color: #ed385f;
  width: 140px;
  height: 45px;
  border-radius: 22.5px;
  border: solid 2px #ed385f;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  text-transform: uppercase;
}
.landing-page .testimonial-fluid-section .testimonial-section .testimonial-registration-container {
  flex-direction: column;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
}
.landing-page .testimonial-fluid-section .testimonial-section .testimonial-registration-container .registration-desk {
  margin-top: -75px;
}
.landing-page .testimonial-fluid-section .testimonial-section .testimonial-registration-container .btn {
  z-index: 1;
}
.landing-page .section-tos, .landing-page .section-faq {
  padding-top: 110px;
}
.landing-page .section-tos h2, .landing-page .section-faq h2 {
  line-height: 34px !important;
  text-align: center;
  margin-bottom: 40px;
}
.landing-page .section-tos .panel-group, .landing-page .section-faq .panel-group {
  width: 100%;
  margin: 0 auto 20px auto;
}
.landing-page .section-tos .panel-group .panel, .landing-page .section-faq .panel-group .panel {
  border-color: #ececec !important;
  border-radius: 0;
}
.landing-page .section-tos .panel-group .panel .panel-heading, .landing-page .section-faq .panel-group .panel .panel-heading {
  color: #171717;
  background-color: #ececec;
  border-color: #9b9b9b;
  height: 70px;
  display: flex;
  align-items: center;
  border-radius: 0;
  position: relative;
}
.landing-page .section-tos .panel-group .panel .panel-heading a, .landing-page .section-faq .panel-group .panel .panel-heading a {
  font-size: 18px;
  font-family: "Rubik-Regular", sans-serif;
  text-decoration: none;
  transition: none !important;
}
.landing-page .section-tos .panel-group .panel .panel-heading a i, .landing-page .section-faq .panel-group .panel .panel-heading a i {
  color: #171717;
}
.landing-page .section-tos .panel-group .panel .panel-heading a:hover, .landing-page .section-tos .panel-group .panel .panel-heading a:active, .landing-page .section-tos .panel-group .panel .panel-heading a:focus, .landing-page .section-faq .panel-group .panel .panel-heading a:hover, .landing-page .section-faq .panel-group .panel .panel-heading a:active, .landing-page .section-faq .panel-group .panel .panel-heading a:focus {
  color: #171717;
}
.landing-page .section-tos .panel-group .panel .panel-heading .panel-heading-arrow, .landing-page .section-faq .panel-group .panel .panel-heading .panel-heading-arrow {
  position: absolute;
  right: 15px;
}
.landing-page .section-tos .panel-group .panel .panel-heading .panel-heading-arrow i, .landing-page .section-faq .panel-group .panel .panel-heading .panel-heading-arrow i {
  font-size: 24px;
}
.landing-page .section-tos .panel-group .panel .panel-heading .rotated-arrow, .landing-page .section-faq .panel-group .panel .panel-heading .rotated-arrow {
  transform: rotate(-180deg);
  -webkit-transform: rotate(-180deg);
  -moz-transform: rotate(-180deg);
  -o-transform: rotate(-180deg);
}
.landing-page .section-tos .panel-group .panel .selected-panel-heading, .landing-page .section-faq .panel-group .panel .selected-panel-heading {
  color: #ffffff !important;
  background-color: #ff315d !important;
  transition: background-color 0.5s ease;
  -webkit-transition: background-color 0.5s ease;
  -moz-transition: background-color 0.5s ease;
  -o-transition: background-color 0.5s ease;
}
.landing-page .section-tos .panel-group .panel .selected-panel-heading a i, .landing-page .section-faq .panel-group .panel .selected-panel-heading a i {
  color: #ffffff !important;
}
.landing-page .section-tos .panel-group .panel .selected-panel-heading a:hover, .landing-page .section-tos .panel-group .panel .selected-panel-heading a:active, .landing-page .section-tos .panel-group .panel .selected-panel-heading a:focus, .landing-page .section-faq .panel-group .panel .selected-panel-heading a:hover, .landing-page .section-faq .panel-group .panel .selected-panel-heading a:active, .landing-page .section-faq .panel-group .panel .selected-panel-heading a:focus {
  color: #ffffff !important;
}
.landing-page .section-tos .panel-group .panel .selected-panel-heading .panel-heading-arrow, .landing-page .section-faq .panel-group .panel .selected-panel-heading .panel-heading-arrow {
  transform: rotate(-180deg);
  -webkit-transform: rotate(-180deg);
  -moz-transform: rotate(-180deg);
  -o-transform: rotate(-180deg);
}
.landing-page .section-tos .panel-group .panel .panel-body, .landing-page .section-faq .panel-group .panel .panel-body {
  background-color: #fafafa;
  color: #171717;
}
.landing-page .hero-fluid-section {
  background: url(/assets/themes/backend/icollectivo/images/landing/bg.svg);
  background-position: top left !important;
  background-repeat: no-repeat !important;
  width: 100%;
  height: 782px;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.landing-page .business-hero h1 {
  width: 420px;
}
.landing-page .hero-section {
  position: relative;
}
.landing-page .hero-section h1 {
  width: 400px;
  font-family: "Poppins-Medium", sans-serif;
  font-size: 50px;
  font-weight: 500;
  font-style: normal;
  font-stretch: normal;
  line-height: 65px;
  letter-spacing: normal;
  color: #ffffff;
}
.landing-page .hero-section p {
  width: 360px;
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  font-weight: 600;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #333333;
  margin-bottom: 33px;
}
.landing-page .hero-section p.video {
  width: 116px;
  height: 26px;
  font-family: "Open Sans", sans-serif;
  font-size: 12px;
  font-weight: 600;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: center;
  color: #333333;
  margin-top: 20px;
  margin-left: 11px;
}
.landing-page .hero-section p.video a {
  font-weight: bold;
  text-decoration: underline;
  color: #333;
  font-family: "Open Sans", sans-serif;
}
.landing-page .hero-section .hero-desktop {
  position: absolute;
  left: 8vw;
  top: -25px;
  visibility: hidden;
  width: 55vw;
  max-width: 700px;
}
.landing-page .hero-section .hero-mobile {
  position: absolute;
  top: 80px;
  left: 0;
  visibility: hidden;
}
.landing-page section {
  margin-bottom: 50px;
}
.landing-page .pricing-section {
  padding-top: 130px;
}
.landing-page .pricing-section .business-description {
  max-width: 550px !important;
}
.landing-page .pricing-section .section-title {
  width: 747.7px;
  font-family: "Poppins-Medium", sans-serif;
  font-size: 40px;
  font-weight: 500;
  font-style: normal;
  font-stretch: normal;
  line-height: 50px;
  letter-spacing: normal;
  margin: 0 auto;
  color: #333333;
  text-align: center;
}
.landing-page .pricing-section .section-description {
  max-width: 400px;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  line-height: 22px;
  letter-spacing: normal;
  text-align: center;
  color: #555555;
  margin: 15px auto 0 auto;
}
.landing-page .pricing-section .pricing-table-cont {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 45px 0;
}
.landing-page .pricing-section .pricing-table-cont .pricing-table {
  max-width: 260px;
  text-align: center;
  box-shadow: 4px 5px 15px 0 rgba(0, 0, 0, 0.15);
  border-radius: 15px;
  padding: 35px 15px 15px 15px;
  position: relative;
  margin-right: 30px;
  width: 100%;
}
.landing-page .pricing-section .pricing-table-cont .pricing-table .pricing-table-content .icon-container {
  height: 175px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.landing-page .pricing-section .pricing-table-cont .pricing-table .pricing-table-content .icon-container .package-icon {
  max-width: 170px;
}
.landing-page .pricing-section .pricing-table-cont .pricing-table .pricing-table-content .package-name {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 60%;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  margin: 0 auto;
  padding: 5px 0;
  opacity: 0.8;
  background-color: #5286bc;
}
.landing-page .pricing-section .pricing-table-cont .pricing-table .pricing-table-content .package-properties ul {
  padding: 0;
  list-style: none;
}
.landing-page .pricing-section .pricing-table-cont .pricing-table .pricing-table-content .package-properties ul li {
  padding: 15px;
  border-bottom: 1px solid #d3d3d3;
  font-family: "Open Sans", sans-serif;
  color: #333;
  line-height: 20px;
  font-size: 14px;
  height: 71px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.landing-page .pricing-section .pricing-table-cont .pricing-table .pricing-table-content .package-properties ul li:last-of-type {
  border-bottom: 0;
}
.landing-page .pricing-section .pricing-table-cont .pricing-table .pricing-table-content .package-properties ul li:first-of-type {
  font-family: "Poppins-SemiBold", sans-serif;
  font-size: 28px;
  font-weight: bold;
  display: block;
  text-transform: uppercase;
}
.landing-page .pricing-section .pricing-table-cont .pricing-table .pricing-table-content .package-properties ul li:first-of-type span {
  font-size: 28px;
  font-weight: bold;
  text-transform: uppercase;
}
.landing-page .business-pricing-section {
  display: flex;
  flex-direction: column;
}
.landing-page .business-pricing-section a {
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  font-style: normal;
  font-stretch: normal;
  line-height: 30px;
  letter-spacing: normal;
  color: #000000;
}
.landing-page .testimonial-section .section-title {
  width: 747.7px;
  font-family: "Poppins-Medium", sans-serif;
  font-size: 40px;
  font-weight: 500;
  font-style: normal;
  font-stretch: normal;
  line-height: 50px;
  letter-spacing: normal;
  margin: 0 auto;
  color: #333333;
  text-align: center;
}
.landing-page .testimonial-section .section-description {
  width: 552px;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  line-height: 22px;
  letter-spacing: normal;
  text-align: center;
  color: #555555;
  margin: 15px auto 0 auto;
}
.landing-page .testimonial-section .has-tag {
  font-family: "Poppins-Medium", sans-serif;
  font-size: 16px;
  font-weight: 500;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: center;
  color: #333333;
  margin: 0 auto;
}
.landing-page .testimonial-section .testimonial-container {
  margin: 36px 0;
  display: flex;
  padding: 0 75px;
}
.landing-page .testimonial-section .testimonial-container ul {
  width: 525px;
  padding: 0;
}
.landing-page .testimonial-section .testimonial-container ul li {
  display: flex;
  align-items: center;
  position: relative;
  padding: 15px;
  border-bottom: 1px solid #dddddd;
}
.landing-page .testimonial-section .testimonial-container ul li .testimonial-image-cont .testimonial-image {
  width: 72px;
  height: 72px;
  background: url(https://work.buzz/files/profile/86/154712791730574.png);
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  border-radius: 40px;
  box-shadow: 4px 8px 15px 0 rgba(0, 0, 0, 0.15);
}
.landing-page .testimonial-section .testimonial-container ul li .testimonial-personal {
  margin: 0 22px;
}
.landing-page .testimonial-section .testimonial-container ul li .testimonial-personal .name {
  font-family: "Poppins-SemiBold", sans-serif;
  font-size: 16px;
  font-weight: 600;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #333333;
  margin-bottom: 0;
}
.landing-page .testimonial-section .testimonial-container ul li .testimonial-personal .specialization {
  font-family: "Open Sans", sans-serif;
  font-size: 12px;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #555555;
}
.landing-page .testimonial-section .testimonial-container ul li .selector {
  width: 10px;
}
.landing-page .testimonial-section .testimonial-container ul li .selector.active {
  background-image: linear-gradient(to bottom, #f76998, #ed385f);
  position: absolute;
  height: calc(100% + 2px);
  bottom: -1px;
  right: 0;
}
.landing-page .testimonial-section .testimonial-container ul li.active {
  background-image: linear-gradient(to right, #ffffff, #e1e1e1);
}
.landing-page .testimonial-section .testimonial-container ul li:last-of-type {
  border-bottom: 0 !important;
}
.landing-page .testimonial-section .testimonial-container ul li:hover {
  cursor: pointer;
}
.landing-page .testimonial-section .testimonial-container ul li.empty {
  height: 70px;
}
.landing-page .testimonial-section .testimonial-container .testimonial-content-container {
  width: 100%;
  border-radius: 15px;
  box-shadow: 5px 9px 24px 0 rgba(0, 0, 0, 0.2);
  background-color: #ffffff;
  min-height: 393px;
}
.landing-page .testimonial-section .testimonial-container .testimonial-content-container .quote {
  width: 53px;
  height: 48px;
  object-fit: contain;
}
.landing-page .testimonial-section .testimonial-container .testimonial-content-container .testimonial-content {
  padding: 50px;
  display: none;
  height: 100%;
}
.landing-page .testimonial-section .testimonial-container .testimonial-content-container .testimonial-content .testimonial-text {
  height: 150px;
  display: flex;
  align-items: center;
  margin: 25px 0;
}
.landing-page .testimonial-section .testimonial-container .testimonial-content-container .testimonial-content p {
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  font-weight: normal;
  font-style: italic;
  font-stretch: normal;
  line-height: 26px;
  letter-spacing: normal;
  color: #555555;
}
.landing-page .testimonial-section .testimonial-container .testimonial-content-container .testimonial-content .landing-button {
  color: #fff;
}
.landing-page .testimonial-section .testimonial-container .testimonial-content-container .testimonial-content.open {
  display: block !important;
}
.landing-page .testimonial-section .testimonial-container-mobile .panel {
  margin-top: 0 !important;
}
.landing-page .testimonial-section .testimonial-container-mobile .testimonial-panel {
  padding: 5px;
  background-image: linear-gradient(to right, #ffffff, #e1e1e1);
}
.landing-page .testimonial-section .testimonial-container-mobile .testimonial-head {
  display: flex;
  align-items: center;
  position: relative;
  padding: 5px;
  background-color: #fff;
  transition: 300ms ease-in-out;
}
.landing-page .testimonial-section .testimonial-container-mobile .testimonial-head .testimonial-image-cont {
  display: flex;
  align-items: center;
  position: relative;
  padding: 15px;
}
.landing-page .testimonial-section .testimonial-container-mobile .testimonial-head .testimonial-image-cont .testimonial-image {
  width: 72px;
  height: 72px;
  background: url(https://work.buzz/files/profile/86/154712791730574.png);
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  border-radius: 40px;
  box-shadow: 4px 8px 15px 0 rgba(0, 0, 0, 0.15);
}
.landing-page .testimonial-section .testimonial-container-mobile .testimonial-head .testimonial-personal {
  margin: 0 22px 0 5px;
}
.landing-page .testimonial-section .testimonial-container-mobile .testimonial-head .testimonial-personal .name {
  font-family: "Poppins-SemiBold", sans-serif;
  font-size: 16px;
  font-weight: 600;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #333333;
  margin-bottom: 0;
}
.landing-page .testimonial-section .testimonial-container-mobile .testimonial-head .testimonial-personal .specialization {
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #555555;
}
.landing-page .testimonial-section .testimonial-container-mobile .testimonial-head .accordion-arrow {
  font-size: 32px;
  position: absolute;
  right: 30px;
  top: 35%;
  transition: 300ms ease-in-out;
  color: #333333;
}
.landing-page .testimonial-section .testimonial-container-mobile .testimonial-head .accordion-arrow.active {
  transform: rotate(180deg);
  color: #ed385f;
}
.landing-page .testimonial-section .testimonial-container-mobile .testimonial-head .selector {
  width: 10px;
}
.landing-page .testimonial-section .testimonial-container-mobile .testimonial-head .selector.active {
  background-image: linear-gradient(to bottom, #f76998, #ed385f);
  position: absolute;
  right: 0;
  height: 100%;
}
.landing-page .testimonial-section .testimonial-container-mobile .testimonial-head:hover {
  cursor: pointer;
}
.landing-page .testimonial-section .testimonial-container-mobile .testimonial-head[aria-expanded=true] {
  background-image: linear-gradient(to right, #ffffff, #e1e1e1);
}
.landing-page .testimonial-section .testimonial-container-mobile .testimonial-content {
  flex-direction: column;
  height: 100%;
  justify-content: center;
  border: 0 !important;
}
.landing-page .testimonial-section .testimonial-container-mobile .testimonial-content .testimonial-text {
  margin: 0 0 25px 0;
}
.landing-page .testimonial-section .testimonial-container-mobile .testimonial-content p {
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  font-weight: normal;
  font-style: italic;
  font-stretch: normal;
  line-height: 26px;
  letter-spacing: normal;
  color: #555555;
}
.landing-page .testimonial-section .testimonial-container-mobile .testimonial-content.open {
  display: flex !important;
}
.landing-page .offer-section {
  margin-bottom: 50px;
}
.landing-page .offer-section .section-title {
  width: 571.7px;
  font-family: "Poppins-Medium", sans-serif;
  font-size: 40px;
  font-weight: 500;
  font-style: normal;
  font-stretch: normal;
  line-height: 50px;
  letter-spacing: normal;
  text-align: center;
  color: #333333;
  margin: 0 auto;
}
.landing-page .offer-section .card {
  margin-top: 70px;
  padding: 0 15px !important;
  visibility: hidden;
}
.landing-page .offer-section .card .card-image {
  width: 162px;
  height: 118px;
  object-fit: contain;
  margin: 5px auto 34px auto;
  display: block;
}
.landing-page .offer-section .card .card-title {
  height: 80px;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.landing-page .offer-section .card .card-title h4 {
  font-family: "Poppins-SemiBold", sans-serif;
  font-size: 20px;
  font-weight: 600;
  font-style: normal;
  font-stretch: normal;
  line-height: 26px;
  letter-spacing: normal;
  text-align: center;
  color: #333333;
}
.landing-page .offer-section .card .card-content p {
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  line-height: 22px;
  letter-spacing: normal;
  text-align: center;
  color: #555555;
  margin-bottom: 5px;
}
.landing-page .offer-section .card .card-content p.has-tag {
  font-family: "Poppins-Medium", sans-serif;
  font-size: 12px;
  font-weight: 500 !important;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: center;
  color: #333333;
}
.landing-page .offer-section .offer-button-container {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.landing-page .benchmark-fluid-section {
  height: 523px;
  background: url(/assets/themes/backend/icollectivo/images/landing/subscribe/subscribe-bg.svg);
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  margin-bottom: -100px;
  padding-bottom: 100px;
}
.landing-page .benchmark-fluid-section .benchmark-section {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.landing-page .benchmark-fluid-section .benchmark-section .section-inner-title {
  width: 707px;
  font-family: "Poppins-Medium", sans-serif;
  font-size: 40px;
  font-weight: 500;
  font-style: normal;
  font-stretch: normal;
  line-height: 50px;
  letter-spacing: normal;
  text-align: center;
  color: #ffffff;
  margin-bottom: 10px;
}
.landing-page .benchmark-fluid-section .benchmark-section .section-description {
  width: 554px;
  height: 44px;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  font-style: normal;
  font-stretch: normal;
  line-height: 22px;
  letter-spacing: normal;
  text-align: center;
  color: #333333;
  margin-bottom: 40px;
}
.landing-page .benchmark-fluid-section .benchmark-section .benchmark-input {
  background: transparent;
  box-shadow: none;
  border: 2px solid white;
  color: #fff;
  width: 300px;
  height: 45px;
  border-radius: 22.5px;
  padding: 0 15px;
  font-size: 14px;
  margin-right: 13px;
}
.landing-page .benchmark-fluid-section .benchmark-section .benchmark-input::-webkit-input-placeholder {
  color: #fff !important;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
}
.landing-page .benchmark-fluid-section .benchmark-section .benchmark-input::-moz-placeholder {
  color: #fff !important;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
}
.landing-page .benchmark-fluid-section .benchmark-section .benchmark-input:-ms-input-placeholder {
  color: #fff !important;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
}
.landing-page .benchmark-fluid-section .benchmark-section .benchmark-input:-moz-placeholder {
  color: #fff !important;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
}
.landing-page .benchmark-fluid-section .benchmark-section .first-step, .landing-page .benchmark-fluid-section .benchmark-section .final-step {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.landing-page .partners-fluid-section .partners-section {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.landing-page .partners-fluid-section .partners-section .partners-registration-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  clear: both;
}
.landing-page .partners-fluid-section .partners-section .partners-registration-container > img {
  margin-top: 100px;
}
.landing-page .partners-fluid-section .partners-section .partners-registration-container .btn {
  margin-top: -25px;
}
.landing-page .partners-fluid-section .partners-section .section-inner-title {
  width: 707px;
  font-family: "Poppins-Medium", sans-serif;
  font-size: 40px;
  font-weight: 500;
  font-style: normal;
  font-stretch: normal;
  line-height: 50px;
  letter-spacing: normal;
  text-align: center;
  color: #333333;
  margin-bottom: 50px;
  margin-top: 60px;
}
.landing-page .partners-fluid-section .partners-section .section-description {
  width: 554px;
  height: 44px;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  font-style: normal;
  font-stretch: normal;
  line-height: 22px;
  letter-spacing: normal;
  text-align: center;
  color: #333333;
  margin-bottom: 40px;
}
.landing-page .partners-fluid-section .partners-section .partners-logo-container {
  width: 100%;
  max-width: 65vw;
  margin-top: 30px;
  text-align: center;
}
.landing-page .partners-fluid-section .partners-section .partners-logo-container img {
  margin: 25px;
}
.landing-page .cards-section {
  background: url(/assets/themes/backend/icollectivo/images/landing/subscribe/subscribe-bg.svg);
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}
.landing-page .cards-section .blog-section {
  padding: 150px 0;
}
.landing-page .cards-section .blog-section .card-container:nth-of-type(3) {
  margin-top: 30px;
}
.landing-page .cards-section .blog-section .blog-card {
  border-radius: 15px;
  box-shadow: 4px 5px 15px 0 rgba(0, 0, 0, 0.15);
  background-color: #ffffff;
  padding-bottom: 20px;
  transition: transform 0.3s ease-out 0s;
  -webkit-transition: transform 0.3s ease-out 0s;
  -moz-transition: transform 0.3s ease-out 0s;
  -o-transition: transform 0.3s ease-out 0s;
}
.landing-page .cards-section .blog-section .blog-card .card-image {
  height: 180px;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}
.landing-page .cards-section .blog-section .blog-card .card-title {
  font-family: "Poppins-SemiBold", sans-serif;
  font-size: 20px;
  font-weight: 600;
  font-style: normal;
  font-stretch: normal;
  line-height: 26px;
  letter-spacing: normal;
  color: #333333;
  padding: 20px 20px 0 20px;
  margin: 0;
}
.landing-page .cards-section .blog-section .blog-card .card-content {
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  line-height: 22px;
  letter-spacing: normal;
  color: #555555;
  padding: 5px 20px 5px 20px;
}
.landing-page .cards-section .blog-section .blog-card .card-link {
  font-family: "Poppins-SemiBold", sans-serif;
  font-size: 12px;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: 1px;
  color: #ed385f;
  padding: 0 20px;
  text-decoration: none;
  text-transform: uppercase;
}
.landing-page .cards-section .blog-section .blog-card:hover {
  cursor: pointer;
  -moz-transform: translateY(-15px);
  -o-transform: translateY(-15px);
  -webkit-transform: translateY(-15px);
  transform: translateY(-15px);
}
.landing-page .personal-branding-section {
  margin-top: 50px;
  padding-bottom: 70px;
  background-position: center -100% !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}
.landing-page .personal-branding-section .section-title {
  width: 747.7px;
  font-family: "Poppins-Medium", sans-serif;
  font-size: 40px;
  font-weight: 500;
  font-style: normal;
  font-stretch: normal;
  line-height: 50px;
  letter-spacing: normal;
  margin: 0 auto;
  color: #333333;
  text-align: center;
  margin-bottom: 18px !important;
}
.landing-page .personal-branding-section .section-description {
  width: 552px;
  font-family: "OpenSans-Regular", sans-serif;
  font-size: 14px;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  line-height: 22px;
  letter-spacing: normal;
  text-align: center;
  color: #555555;
  margin: 15px auto 0 auto;
}
.landing-page .personal-branding-section .has-tag {
  font-family: "Poppins-Medium", sans-serif;
  font-size: 16px;
  font-weight: 500;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: center;
  color: #333333;
  margin: 0 auto;
}
.landing-page .personal-branding-section .branding-buttons {
  display: flex;
  margin-top: 50px;
  justify-content: space-evenly;
}
.landing-page .personal-branding-section .branding-buttons .branding-button-1, .landing-page .personal-branding-section .branding-buttons .branding-button-2, .landing-page .personal-branding-section .branding-buttons .branding-button-3, .landing-page .personal-branding-section .branding-buttons .branding-button-4, .landing-page .personal-branding-section .branding-buttons .branding-button-5, .landing-page .personal-branding-section .branding-buttons .branding-button-6 {
  position: relative;
}
.landing-page .personal-branding-section .branding-buttons .branding-button-1 img, .landing-page .personal-branding-section .branding-buttons .branding-button-2 img, .landing-page .personal-branding-section .branding-buttons .branding-button-3 img, .landing-page .personal-branding-section .branding-buttons .branding-button-4 img, .landing-page .personal-branding-section .branding-buttons .branding-button-5 img, .landing-page .personal-branding-section .branding-buttons .branding-button-6 img {
  -webkit-transition: all ease-in-out 0.2s;
  -moz-transition: all ease-in-out 0.2s;
  -ms-transition: all ease-in-out 0.2s;
  -o-transition: all ease-in-out 0.2s;
  transition: all ease-in-out 0.2s;
}
.landing-page .personal-branding-section .branding-buttons .branding-button-1 span, .landing-page .personal-branding-section .branding-buttons .branding-button-2 span, .landing-page .personal-branding-section .branding-buttons .branding-button-3 span, .landing-page .personal-branding-section .branding-buttons .branding-button-4 span, .landing-page .personal-branding-section .branding-buttons .branding-button-5 span, .landing-page .personal-branding-section .branding-buttons .branding-button-6 span {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
}
.landing-page .personal-branding-section .branding-buttons .branding-button-1 span img, .landing-page .personal-branding-section .branding-buttons .branding-button-2 span img, .landing-page .personal-branding-section .branding-buttons .branding-button-3 span img, .landing-page .personal-branding-section .branding-buttons .branding-button-4 span img, .landing-page .personal-branding-section .branding-buttons .branding-button-5 span img, .landing-page .personal-branding-section .branding-buttons .branding-button-6 span img {
  align-self: center;
}
.landing-page .personal-branding-section .branding-buttons .branding-button-1:hover img, .landing-page .personal-branding-section .branding-buttons .branding-button-2:hover img, .landing-page .personal-branding-section .branding-buttons .branding-button-3:hover img, .landing-page .personal-branding-section .branding-buttons .branding-button-4:hover img, .landing-page .personal-branding-section .branding-buttons .branding-button-5:hover img, .landing-page .personal-branding-section .branding-buttons .branding-button-6:hover img {
  -webkit-transform: scale(0.95, 0.95);
  -moz-transform: scale(0.95, 0.95);
  -ms-transform: scale(0.95, 0.95);
  -o-transform: scale(0.95, 0.95);
  transform: scale(0.95, 0.95);
}
.landing-page .personal-branding-section .branding-buttons .branding-button-1 span img {
  max-width: 130px;
  margin-top: -30px;
  margin-left: 11px;
}
.landing-page .personal-branding-section .branding-buttons .branding-button-2 span img {
  max-width: 150px;
}
.landing-page .personal-branding-section .branding-buttons .branding-button-3 span img {
  max-width: 85px;
  margin-top: 0;
  margin-left: -5px;
}
.landing-page .personal-branding-section .branding-buttons .branding-button-4 span img {
  max-width: 100px;
  margin-top: 10px;
  margin-left: 15px;
}
.landing-page .personal-branding-section .branding-buttons .branding-button-4.hvg span img {
  max-width: 75px !important;
  margin-top: -20px !important;
  margin-left: 15px !important;
}
.landing-page .personal-branding-section .branding-buttons .branding-button-5 span img {
  max-width: 150px;
  margin-top: 20px;
}
.landing-page .personal-branding-section .branding-buttons .branding-button-6 span img {
  max-width: 150px;
  margin-top: 0;
  margin-left: -5px;
}
.landing-page .personal-branding-section .shadow {
  -webkit-filter: drop-shadow(3px 3px 2px rgba(0, 0, 0, 0.7));
  filter: drop-shadow(3px 3px 2px rgba(0, 0, 0, 0.7));
}
.landing-page.business .personal-branding-section .branding-buttons .branding-button-4.hvg span img {
  max-width: 120px !important;
  margin-top: -20px !important;
}

footer {
  background: url(/assets/themes/backend/icollectivo/images/landing/footer.svg);
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  padding: 100px 0 0 0 !important;
  height: 400px;
}
footer .contact .site-name {
  font-family: "Poppins-Light", sans-serif;
  font-size: 30px;
  font-weight: 300;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #ed385f;
  text-decoration: none;
}
footer .contact .address {
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  font-style: normal;
  font-stretch: normal;
  line-height: 30px;
  letter-spacing: normal;
  color: #ffffff;
  margin: 0;
}
footer .contact .email {
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  font-style: normal;
  font-stretch: normal;
  line-height: 30px;
  letter-spacing: normal;
  color: #ffffff;
}
footer .contact .social-container {
  display: flex;
}
footer .contact .social-container svg {
  margin-right: 10px;
  background-color: #141414;
  border-radius: 30px;
}
footer .contact .social-container svg:hover {
  background-color: #fff;
}
footer .contact .social-container svg:hover .social-svg {
  fill: #ff315d;
  -webkit-transition: all ease-in-out 0.2s;
  -moz-transition: all ease-in-out 0.2s;
  -ms-transition: all ease-in-out 0.2s;
  -o-transition: all ease-in-out 0.2s;
  transition: all ease-in-out 0.2s;
}
footer .footer-list li {
  list-style-type: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
footer .footer-list li a {
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-stretch: normal;
  line-height: 36px;
  letter-spacing: normal;
  color: #ffffff;
  font-size: 14px;
  text-decoration: none;
}
footer .footer-list li:last-of-type {
  border-bottom: 0 !important;
}
footer .footer-bottom {
  padding: 30px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #000;
}
footer .footer-bottom p {
  font-family: "Open Sans", sans-serif;
  font-size: 12px;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  line-height: 22px;
  letter-spacing: normal;
  color: #aaaaaa;
}

.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: #333 !important;
  font-family: "Poppins-SemiBold", sans-serif !important;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: normal;
}
.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;
}
.navbar-default .navbar-nav li a.admin-button:hover, .navbar-default .navbar-nav li a.admin-button:active, .navbar-default .navbar-nav li a.admin-button:focus {
  color: #333 !important;
}
.navbar-default.affix {
  top: -70px;
}

.navbar-default .navbar-nav li a:not(.landing-button):hover, .navbar-default .navbar-nav li a:not(.landing-button):focus, .navbar-default .navbar-nav li a:not(.landing-button):active, .navbar-subpage .navbar-nav li a:not(.landing-button):hover, .navbar-subpage .navbar-nav li a:not(.landing-button):focus, .navbar-subpage .navbar-nav li a:not(.landing-button):active {
  color: #ff315d !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;
}

.landing-button {
  letter-spacing: 1px;
  font-size: 14px !important;
  padding: 5px 12px !important;
  width: auto !important;
  min-width: 140px;
  height: 45px !important;
  color: #fff !important;
  font-family: "Poppins-SemiBold", sans-serif !important;
  background-color: #ff315d !important;
  border-radius: 22.5px !important;
  font-weight: 600 !important;
  font-style: normal;
  font-stretch: normal;
  text-align: center !important;
  text-transform: uppercase;
  line-height: 33px !important;
}
.landing-button:hover {
  color: #fff !important;
  background-color: #aa2340 !important;
}

.owl-theme .owl-dots {
  width: auto !important;
  right: 28%;
  bottom: -10px !important;
  position: initial !important;
}
.owl-theme .owl-dots .owl-dot span {
  transition: background-color 0.3s;
  border: 2px solid #fff;
  margin: 12px;
  background: transparent;
}
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
  background: #fff;
  border: 1px solid #fff;
}
.owl-theme .owl-nav [class*=owl-]:hover {
  color: #000;
}
.bootstrap-select .filter-option {
  font-family: "Poppins-SemiBold", sans-serif !important;
  color: #333;
}

@media screen and (min-width: 1920px) {
  .hero-mobile {
    width: 44%;
  }
  .hero-desktop {
    width: 95%;
  }
  .landing-page .hero-section h1 {
    font-size: 50px;
    line-height: 65px;
  }
  .landing-page .hero-section p {
    font-size: 18px;
  }
}
@media screen and (min-width: 1600px) and (max-width: 1919px) {
  .hero-mobile {
    width: 44%;
  }
  .hero-desktop {
    width: 95%;
  }
  .landing-page .hero-section h1 {
    font-size: 50px;
    line-height: 65px;
  }
  .landing-page .hero-section p {
    font-size: 18px;
  }
}
@media screen and (max-width: 1546px) {
  .landing-page .testimonial-fluid-section .testimonial-section h2 {
    margin-bottom: 145px;
  }
  .landing-page .testimonial-fluid-section .testimonial-section .testimonials-container {
    margin-bottom: 100px;
  }
  .landing-page .testimonial-fluid-section .testimonial-section .testimonials-container .testimonial-card {
    margin-top: 35px;
    margin-bottom: 0;
  }
  .landing-page .testimonial-fluid-section .testimonial-section .testimonials-container .testimonial-card:nth-child(3n+2) {
    margin-top: 0;
  }
  .landing-page .testimonial-fluid-section .testimonial-section .testimonials-container .testimonial-card:nth-child(2n+2) {
    margin-top: 185px;
  }
}
@media screen and (max-width: 1230px) {
  .landing-page .testimonial-fluid-section .testimonial-section .testimonials-container .testimonial-card {
    margin-bottom: 80px !important;
    margin-top: 35px !important;
  }
  .landing-page .testimonial-fluid-section .testimonial-section .testimonials-container .testimonial-card:nth-child(3n+2) {
    margin-top: initial;
  }
  .landing-page .testimonial-fluid-section .testimonial-section .testimonials-container .testimonial-card:nth-child(2n+2) {
    margin-top: initial;
  }
}
@media screen and (min-width: 1440px) and (max-width: 1599px) {
  .hero-mobile {
    width: 44%;
  }
  .hero-desktop {
    width: 95%;
  }
  .landing-page .hero-section h1 {
    font-size: 50px;
    line-height: 65px;
  }
  .landing-page .hero-section p {
    font-size: 18px;
  }
}
@media screen and (max-width: 1530px) {
  .landing-page .testimonial-fluid-section .testimonial-section .testimonials-container .testimonial-card {
    margin: 0 30px 100px 30px;
  }
}
@media screen and (min-width: 1366px) and (max-width: 1439px) {
  .hero-mobile {
    left: 15px;
    width: 40%;
  }
  .hero-desktop {
    width: 85%;
  }
  .landing-page .hero-section h1 {
    font-size: 50px;
    line-height: 65px;
  }
  .landing-page .hero-section p {
    font-size: 18px;
  }
}
@media screen and (max-width: 1350px) {
  .landing-page .testimonial-fluid-section .testimonial-section .testimonials-container .testimonial-card {
    width: 320px;
    height: 450px;
  }
}
@media screen and (min-width: 1200px) and (max-width: 1365px) {
  .hero-mobile {
    left: 40px;
    width: 35%;
  }
  .hero-desktop {
    width: 80%;
  }
  .landing-page .hero-section h1 {
    font-size: 50px;
    line-height: 65px;
  }
  .landing-page .hero-section p {
    font-size: 18px;
  }
}
@media screen and (min-width: 1100px) and (max-width: 1199px) {
  .offer-section {
    margin: 0 auto;
    width: 95%;
  }
  .offer-section .offer-items-container .offer-item .image-container img {
    max-width: 42vw;
  }
  .offer-section .offer-items-container .offer-item .offer-data {
    padding-left: 80px;
  }
  .offer-section .offer-items-container .offer-item .offer-data h2 {
    font-size: 30px;
  }
  .offer-section .offer-items-container .offer-item .offer-data p {
    font-size: 14px;
  }
}
@media screen and (min-width: 1000px) and (max-width: 1100px) {
  .offer-section {
    margin: 0 auto;
    width: 95%;
  }
  .offer-section .offer-items-container .offer-item .image-container img {
    max-width: 42vw;
  }
  .offer-section .offer-items-container .offer-item .offer-data {
    padding-left: 80px;
  }
  .offer-section .offer-items-container .offer-item .offer-data h2 {
    font-size: 22px;
  }
  .offer-section .offer-items-container .offer-item .offer-data p {
    font-size: 14px;
  }
}
@media screen and (min-width: 992px) and (max-width: 1000px) {
  .offer-section {
    margin: 0 auto;
    width: 95%;
  }
  .offer-section .offer-items-container .offer-item .image-container img {
    max-width: 42vw;
  }
  .offer-section .offer-items-container .offer-item .offer-data {
    padding-left: 80px;
  }
  .offer-section .offer-items-container .offer-item .offer-data h2 {
    font-size: 22px;
  }
  .offer-section .offer-items-container .offer-item .offer-data p {
    font-size: 14px;
  }
  .hero-mobile {
    top: 55px !important;
    width: 35% !important;
    left: 45px !important;
  }
  .hero-desktop {
    width: 75%;
  }
}
@media screen and (min-width: 992px) {
  #desktop-menu .bootstrap-select .dropdown-toggle {
    box-shadow: none !important;
  }
  #desktop-menu .filter-option {
    text-transform: uppercase;
    font-size: 14px !important;
    color: #333 !important;
    font-family: "Poppins-SemiBold", sans-serif !important;
  }
  .benchmark-section {
    background: url(/assets/themes/backend/icollectivo/images/landing/benchmark/dots/subscribe-pattern-dots@3x.png);
    background-size: 600px;
    background-repeat: no-repeat !important;
    background-attachment: fixed !important;
    background-position: bottom left !important;
  }
}
@media screen and (max-width: 991px) {
  .landing-page .hero-section h1 {
    width: 420px;
    font-size: 36px;
    line-height: 50px;
  }
  .landing-page .hero-section p {
    width: 360px;
    height: 26px;
    font-size: 16px;
  }
  .safari .pricing-section {
    padding-top: 185px !important;
  }
  .safari .hero-fluid-section {
    height: 700px !important;
  }
  .safari .hero-fluid-section .hero-section {
    margin-top: -250px !important;
  }
  .safari .hero-fluid-section .hero-section h1 {
    margin-top: 20px !important;
  }
  @-moz-document url-prefix() {
    .personal-branding-section {
      padding-bottom: 850px !important;
    }
    .moz-section-padding {
      padding: 65px 0 850px 0 !important;
    }
  }
  .section-tos .section-title, .section-faq .section-title {
    margin: 0 0 20px 0 !important;
    text-align: left !important;
  }
  .section-tos .panel-body h1, .section-faq .panel-body h1 {
    font-size: 22px !important;
  }
  .section-tos .panel-body ol, .section-tos .panel-body ul, .section-faq .panel-body ol, .section-faq .panel-body ul {
    padding-left: 10px !important;
  }
  .section-tos .panel-body p, .section-faq .panel-body p {
    margin-left: 0 !important;
  }
  .pricing-section .section-title {
    font-size: 40px !important;
  }
  .pricing-section .pricing-table-cont {
    display: block !important;
  }
  .pricing-section .pricing-table-cont .pricing-table {
    max-width: 330px !important;
    margin: 35px auto !important;
  }
  #mobileMenuLanding {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-image: linear-gradient(345deg, #95e3e1, #23bbb8);
    justify-content: center;
    flex-direction: column;
    align-items: center;
    z-index: 10;
    overflow: auto;
  }
  #mobileMenuLanding .language-select-container {
    left: 40px !important;
  }
  #mobileMenuLanding .language-select-container .language-item {
    margin-top: 2px;
  }
  #mobileMenuLanding.in {
    display: block !important;
  }
  .navbar-header {
    display: block !important;
    height: auto !important;
    padding: 10px;
  }
  .navbar-header .navbar-toggle {
    border: 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;
  }
  .hero-section {
    text-align: center;
    margin-top: -250px !important;
  }
  .hero-section > div {
    padding: 0 15px !important;
  }
  .hero-section > div h1 {
    width: auto !important;
    height: auto !important;
  }
  .hero-section > div p {
    width: auto !important;
    height: auto !important;
  }
  .benchmark-fluid-section {
    background: url(/assets/themes/backend/icollectivo/images/landing/benchmark/bg@3x.png);
  }
  .benchmark-fluid-section.webP-style {
    background: url(/assets/themes/backend/icollectivo/images/landing/benchmark/bg@3x.webp);
  }
  .benchmark-fluid-section .benchmark-section .section-inner-title {
    font-size: 30px !important;
    width: auto !important;
  }
  .benchmark-fluid-section .benchmark-section h2 {
    margin-top: -45px;
    line-height: 34px !important;
  }
  .benchmark-fluid-section .benchmark-section .section-description {
    margin-bottom: 20px !important;
    width: auto !important;
  }
  .benchmark-fluid-section .benchmark-section .input-container form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .benchmark-fluid-section .benchmark-section .input-container input {
    margin-bottom: 20px;
    margin-right: 0 !important;
  }
  .benchmark-fluid-section .benchmark-section .input-container button {
    width: 12vw !important;
    min-width: 160px;
  }
  .partners-fluid-section .partners-section .section-inner-title {
    font-size: 30px !important;
    width: auto !important;
    line-height: 34px !important;
  }
  .partners-fluid-section .partners-section .section-description {
    margin-bottom: 20px !important;
    width: auto !important;
  }
  footer {
    height: auto;
    text-align: center;
    background: url(/assets/themes/backend/icollectivo/images/landing/footer-mobile.svg);
    background-position: unset !important;
    padding: 60px 0 0 0 !important;
  }
  footer .footer-section {
    padding-bottom: 150px;
    width: 100%;
  }
  footer .footer-section .footer-list {
    padding: 0;
    margin: 0;
  }
  footer .footer-section .footer-list li {
    padding: 10px 0;
  }
  footer .footer-section .footer-list li a {
    font-size: 16px;
  }
  footer .footer-section .footer-list li:last-of-type {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2) !important;
  }
  footer .footer-section .no-border-last-item li:last-of-type {
    border-bottom: 0 !important;
  }
  footer .footer-section .emblem {
    margin-bottom: 20px;
  }
  footer .footer-section .contact .address {
    margin-top: 20px;
  }
  footer .footer-section .contact .site-name {
    font-size: 30px !important;
  }
  footer .footer-section .contact p {
    font-size: 16px;
  }
  footer .footer-section .contact a {
    font-size: 16px;
  }
  footer .footer-section .contact .social-container {
    justify-content: center;
    margin-bottom: 50px;
    margin-top: 20px;
  }
  footer .footer-bottom p {
    text-align: center;
  }
  footer .footer-bottom .designed-by {
    text-align: center !important;
  }
  .testimonial-section {
    width: 100%;
    padding: 0;
  }
  .testimonial-section h2 {
    font-size: 30px !important;
  }
  .testimonial-section .has-tag {
    margin-bottom: 35px !important;
  }
  .offer-section h2 {
    font-size: 30px !important;
  }
  .offer-section .card-title {
    display: block !important;
    height: auto !important;
  }
  .personal-branding-section h2 {
    font-size: 30px !important;
  }
  .section-title, .section-description {
    width: 85vw !important;
    height: auto !important;
  }
  .section-title {
    line-height: 35px !important;
  }
  .section-description {
    line-height: 22px !important;
    margin-bottom: 10px !important;
  }
  .blog-card {
    max-width: 400px;
    margin: 0 auto 20px auto !important;
  }
  .mobile-previews-section {
    position: relative;
    height: 50vw;
  }
  .mobile-previews-section .hero-desktop {
    width: 80vw;
    position: absolute;
    top: -350px;
    right: 10vw;
  }
  .mobile-previews-section .hero-mobile {
    position: absolute;
    top: -195px;
    width: 38vw;
  }
  .mobile-previews-section .hero-mobile-business {
    width: 100% !important;
    position: absolute;
    top: -300px;
    right: unset !important;
  }
  .personal-branding-section {
    background: transparent !important;
  }
  .personal-branding-section .branding-buttons.owl-carousel {
    display: block !important;
  }
  .personal-branding-section .branding-buttons.owl-carousel .branding-button a > img {
    max-width: 400px;
    margin: 0 auto;
  }
  .personal-branding-section .branding-buttons.owl-carousel .branding-button-1 a > img {
    max-width: 400px;
    margin: 0 auto;
  }
  .personal-branding-section .branding-buttons.owl-carousel .branding-button-1 a span > img {
    margin-top: 0 !important;
  }
  .personal-branding-section .branding-buttons.owl-carousel .branding-button-1 span img {
    max-width: 165px;
    margin-top: -30px;
    margin-left: 11px;
  }
  .personal-branding-section .branding-buttons.owl-carousel .branding-button-2 span img {
    max-width: 200px;
    margin-top: 20px;
  }
  .personal-branding-section .branding-buttons.owl-carousel .branding-button-3 span img {
    max-width: 85px;
    margin-top: 0;
    margin-left: -5px;
  }
  .personal-branding-section .branding-buttons.owl-carousel .branding-button-4 span img {
    max-width: 100px;
    margin-top: 10px;
    margin-left: 15px;
  }
  .personal-branding-section .branding-buttons.owl-carousel .branding-button-5 span img {
    max-width: 150px;
    margin-top: 20px;
  }
  .personal-branding-section .branding-buttons.owl-carousel .branding-button-6 span img {
    max-width: 150px;
    margin-top: 0;
    margin-left: -5px;
  }
  .cards-section .blog-card:hover {
    cursor: pointer;
    -moz-transform: translateY(0px) !important;
    -o-transform: translateY(0px) !important;
    -webkit-transform: translateY(0px) !important;
    transform: translateY(0px) !important;
  }
  .offer-section {
    max-width: 100%;
    margin: 0 auto;
    width: auto;
    padding: 0;
  }
  .offer-section .offer-carousel-container {
    padding: 0;
    height: 600px;
    overflow: visible;
    margin-bottom: 170px;
    background-size: auto !important;
    background: url(/assets/themes/backend/icollectivo/images/landing_new/bean-small.svg) no-repeat !important;
    background-position: bottom !important;
  }
  .offer-section .offer-carousel-container .offer-item {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .offer-section .offer-carousel-container .offer-item .image-container {
    margin-top: 15px;
  }
  .offer-section .offer-carousel-container .offer-item .image-container img {
    margin: 0 auto;
    max-width: 400px;
  }
  .offer-section .offer-carousel-container .offer-item .offer-data {
    padding: 0 20px;
    max-width: 457px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .offer-section .offer-carousel-container .offer-item .offer-data h2 {
    font-size: 22px;
  }
  .offer-section .offer-carousel-container .offer-item .offer-data p {
    font-size: 14px;
  }
  .offer-section .offer-carousel-container .offer-item .offer-data .btn {
    margin: 0 auto;
  }
  .offer-section .offer-carousel-container .owl-dots {
    margin-top: 15px !important;
  }
  .offer-section .card {
    visibility: visible !important;
  }
  header .navbar > .container {
    width: 100%;
  }
  header .navbar > .container .navbar-header {
    margin: 0 !important;
    width: 100%;
  }
  header .navbar > .container .navbar-header .navbar-brand {
    padding: 12px 12px 12px 5px !important;
  }
  header .navbar > .container .navbar-header .navbar-toggle {
    margin: 0;
  }
  .landing-page .hero-fluid-section {
    background-position: top center !important;
  }
  .landing-page .testimonial-fluid-section .testimonial-section .testimonials-container {
    margin-top: -60px;
    margin-bottom: 0;
  }
  .landing-page .testimonial-fluid-section .testimonial-section .testimonials-container .testimonial-card {
    margin: 0 auto;
    padding-top: 90px;
    position: relative;
    height: 450px;
    margin-bottom: 0 !important;
  }
  .landing-page .testimonial-fluid-section .testimonial-section .testimonials-container .testimonial-card .profile {
    position: absolute;
    top: -60px;
    left: calc(50% - 65px);
    margin-top: 0;
  }
  .landing-page .testimonial-fluid-section .testimonial-section .testimonials-container .testimonial-items-owl .owl-item {
    padding: 60px 0;
  }
  .landing-page .testimonial-fluid-section .testimonial-section .testimonials-container .owl-nav {
    display: block !important;
    max-width: 430px;
    left: calc(50% - 215px);
    top: calc(50% - 40px);
  }
  .landing-page .testimonial-fluid-section .testimonial-section .testimonials-container .owl-nav > button {
    font-size: 28px;
    width: 40px;
    height: 40px;
    box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.25);
    background-color: #fff;
    border-radius: 100%;
  }
  .landing-page .cards-section .blog-registration-container > img {
    margin-top: 0;
  }
}
@media screen and (max-width: 767px) {
  .mobile-previews-section {
    height: 30vw;
  }
  .landing-page .hero-section h1 {
    font-size: 28px;
    line-height: 34px;
  }
  .landing-page .hero-section p {
    font-size: 19px;
  }
  .landing-page .testimonial-fluid-section img.leaf.leaf-large {
    display: none;
  }
  .landing-page .testimonial-fluid-section img.leaf.leaf-medium {
    display: block;
  }
  .landing-page .partners-fluid-section .partners-section .partners-logo-container {
    max-width: 80vw;
  }
  .landing-page .partners-fluid-section .partners-section .partners-logo-container img {
    margin: 25px 0;
    max-width: 100%;
  }
}
@media screen and (max-width: 550px) {
  .landing-page .testimonial-fluid-section {
    padding: 0 !important;
  }
}
@media screen and (max-width: 500px) {
  .mobile-previews-section {
    height: 20vw;
  }
  .benchmark-fluid-section .benchmark-section .section-inner-title {
    font-size: 30px !important;
    width: auto !important;
    height: auto !important;
  }
  .benchmark-fluid-section .benchmark-section .input-container {
    width: 100%;
  }
  .benchmark-fluid-section .benchmark-section .input-container .benchmark-input {
    width: 100%;
  }
  .benchmark-fluid-section .benchmark-section .input-container .benchmark-button {
    width: 100% !important;
  }
  .landing-page .testimonial-fluid-section {
    padding-top: 72px;
  }
  .landing-page .testimonial-fluid-section .testimonial-section h2 {
    font-size: 24px !important;
    margin: 70px 0 70px;
  }
  .landing-page .testimonial-fluid-section .leaf-right {
    left: -42px;
    top: 0;
  }
  .landing-page .testimonial-fluid-section .leaf-left {
    right: -17px;
    top: 40px;
  }
  .landing-page .testimonial-fluid-section img.leaf.leaf-large {
    display: none;
  }
  .landing-page .testimonial-fluid-section img.leaf.leaf-medium {
    display: none;
  }
  .landing-page .testimonial-fluid-section img.leaf.leaf-small {
    display: block;
  }
}
@media screen and (max-width: 400px) {
  .mobile-previews-section {
    height: 5vw;
  }
  .benchmark-fluid-section .benchmark-section .section-inner-title {
    font-size: 30px !important;
    width: auto !important;
    height: auto !important;
  }
  .benchmark-fluid-section .benchmark-section .input-container {
    width: 100%;
  }
  .benchmark-fluid-section .benchmark-section .input-container .benchmark-input {
    width: 100%;
  }
  .benchmark-fluid-section .benchmark-section .input-container .benchmark-button {
    width: 100% !important;
  }
  .landing-page .hero-section h1 {
    font-size: 22px;
  }
  .landing-page .hero-section p {
    font-size: 15px;
  }
  .landing-page .testimonial-fluid-section {
    padding: 0 !important;
  }
  .landing-page .testimonial-fluid-section .testimonial-section .testimonials-container .testimonial-card {
    width: 280px;
    height: 470px;
  }
  .landing-page .testimonial-fluid-section .testimonial-section .testimonials-container .testimonial-card:last-of-type {
    margin-bottom: 0;
  }
  .landing-page .testimonial-fluid-section .leaf-right {
    left: -70px;
    top: 0;
  }
  .landing-page .testimonial-fluid-section .leaf-left {
    right: -50px;
    top: 54px;
  }
}
@media screen and (max-width: 320px) {
  .mobile-previews-section {
    height: 0;
  }
  .landing-page .testimonial-fluid-section {
    padding: 0 !important;
  }
  .landing-page .testimonial-fluid-section .testimonial-section .testimonials-container .owl-nav {
    display: block !important;
    max-width: 100% !important;
    left: calc(50% - 160px) !important;
    top: calc(50% - 40px) !important;
  }
  .landing-page .testimonial-fluid-section .testimonial-section .testimonials-container .owl-nav > button {
    margin-left: 0;
    margin-right: 0;
  }
}
@media screen and (max-width: 435px) {
  .landing-page .testimonial-fluid-section .testimonial-section .testimonials-container .testimonial-card {
    width: 280px;
    height: 470px;
  }
  .landing-page .testimonial-fluid-section .testimonial-section .testimonials-container .owl-nav {
    display: block !important;
    max-width: 350px;
    left: calc(50% - 175px);
    top: calc(50% - 40px);
  }
}
@media screen and (max-width: 475px) {
  .mobile-previews-section {
    height: 0;
  }
  header .navbar > .container {
    width: 100%;
  }
  header .navbar > .container .navbar-header {
    margin-right: -15px !important;
    margin-left: -15px !important;
    width: auto !important;
  }
  header .navbar > .container .navbar-header .navbar-toggle {
    margin: 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .navbar-collapse.collapse {
    display: none !important;
  }
  .navbar-collapse.collapse.in {
    display: block !important;
  }
  .navbar-header .collapse, .navbar-toggle {
    display: block !important;
  }
  .navbar-header {
    float: none;
  }
}
.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: 50px;
  width: 100%;
  text-align: center;
  padding: 15px 30px 15px 30px;
}
.overlay .overlay-content ul {
  padding: 0 !important;
  list-style: none;
  margin-top: 25px;
}
.overlay .overlay-content ul li {
  border-bottom: 1px solid #fff;
}
.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", sans-serif;
  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: #ff315d;
}
.overlay .overlay-content ul li:last-of-type {
  border-bottom: 0 !important;
}
.overlay .overlay-content ul li .landing-button {
  max-width: 150px !important;
  line-height: 33px !important;
  font-size: 14px;
  margin: 10px auto 0 auto;
}
.overlay .overlay-content ul.navbar-nav {
  margin: 0;
  width: 100%;
  display: flex;
  justify-content: center;
}
.overlay .bootstrap-select {
  position: absolute;
  top: 25px;
  left: 15px;
}
.overlay .bootstrap-select .dropdown-toggle .filter-option {
  text-align: center !important;
  font-size: 18px !important;
  text-transform: uppercase;
  display: flex !important;
  align-items: center;
  align-content: center;
  justify-content: center;
  color: #fff;
}
.overlay .bootstrap-select .dropdown-toggle .filter-option .flag-icon {
  height: 28px;
  margin-right: 10px;
}
.overlay .bootstrap-select .dropdown-menu {
  background-color: transparent !important;
  box-shadow: none !important;
  border: 0;
}
.overlay .bootstrap-select .dropdown-menu ul li a {
  font-size: 18px !important;
  text-decoration: none !important;
  color: #fff !important;
  font-family: "Poppins-SemiBold", sans-serif;
}
.overlay .bootstrap-select .dropdown-menu ul li a:hover, .overlay .bootstrap-select .dropdown-menu ul li a:focus, .overlay .bootstrap-select .dropdown-menu ul li a:active {
  background-color: transparent !important;
}
.overlay .bootstrap-select .dropdown-menu ul li:hover, .overlay .bootstrap-select .dropdown-menu ul li:focus, .overlay .bootstrap-select .dropdown-menu ul li:active {
  background-color: transparent !important;
}
.overlay .open > .dropdown-toggle.btn-default {
  border: 0 !important;
  box-shadow: none !important;
}

.close-btn {
  color: #333;
  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: #ff315d !important;
}

@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;
  }
}
.section-title {
  margin-top: 80px !important;
  margin-bottom: 80px !important;
  font-size: 40px !important; }

.btn-outline-transparent {
  height: 45px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  margin-left: 15px;
  background: transparent !important;
  color: #fff !important;
  border: 2px solid #fff !important;
  border-radius: 22.5px !important;
  font-style: normal;
  font-stretch: normal;
  text-align: center !important;
  text-transform: uppercase; }
  .btn-outline-transparent:hover {
    color: #fff !important; }

.button-container {
  margin-top: 50px; }

.feature {
  display: flex;
  margin-bottom: 138px; }
  .feature:nth-child(odd) {
    flex-direction: row-reverse; }
  .feature:nth-of-type(4) {
    margin-bottom: 60px !important; }
  .feature .feature-image {
    height: 386px;
    flex: 1;
    background-size: contain !important;
    background-position: center !important;
    background-repeat: no-repeat !important; }
  .feature .feature-data {
    flex: 1;
    margin-left: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center; }
    .feature .feature-data h2 {
      font-family: 'Poppins-SemiBold', Arial, 'Helvetica Neue', Helvetica, sans-serif;
      font-size: 36px;
      font-weight: 600;
      font-style: normal;
      font-stretch: normal;
      line-height: 48px;
      letter-spacing: normal;
      color: #333333; }
    .feature .feature-data p {
      font-family: 'OpenSans-Regular', Arial, 'Helvetica Neue', Helvetica, sans-serif;
      font-size: 18px;
      font-weight: normal;
      font-style: normal;
      font-stretch: normal;
      line-height: 28px;
      letter-spacing: normal;
      color: #555555; }

@media screen and (max-width: 991px) {
  .section-title {
    margin-top: 0 !important; }

  .feature {
    flex-direction: column !important;
    margin-bottom: 80px !important; }
    .feature .feature-image {
      flex: initial !important;
      height: 200px !important; }
    .feature .feature-data {
      margin-left: 0 !important;
      text-align: center; } }
@media screen and (max-width: 550px) {
  .button-container {
    display: flex;
    flex-direction: column; }
    .button-container a {
      margin: 0; }
      .button-container a:first-of-type {
        margin-bottom: 10px; } }
