@charset "UTF-8";

/**
 * Owl Carousel v2.2.1
 * Copyright 2013-2017 David Deutsch
 * Licensed under  ()
 */
/*
 *  Owl Carousel - Core
 */
/* line 9, ../vendor.min.scss */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}

/* line 16, ../vendor.min.scss */
.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  -moz-backface-visibility: hidden;
  /* fix firefox animation glitch */
}

/* line 21, ../vendor.min.scss */
.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

/* line 28, ../vendor.min.scss */
.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}

/* line 33, ../vendor.min.scss */
.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -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);
}

/* line 41, ../vendor.min.scss */
.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

/* line 48, ../vendor.min.scss */
.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}

/* line 51, ../vendor.min.scss */
.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
  display: none;
}

/* line 54, ../vendor.min.scss */
.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
  cursor: pointer;
  cursor: hand;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* line 64, ../vendor.min.scss */
.owl-carousel.owl-loaded {
  display: block;
}

/* line 66, ../vendor.min.scss */
.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}

/* line 69, ../vendor.min.scss */
.owl-carousel.owl-hidden {
  opacity: 0;
}

/* line 71, ../vendor.min.scss */
.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}

/* line 73, ../vendor.min.scss */
.owl-carousel.owl-drag .owl-item {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* line 78, ../vendor.min.scss */
.owl-carousel.owl-grab {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

/* line 81, ../vendor.min.scss */
.owl-carousel.owl-rtl {
  direction: rtl;
}

/* line 83, ../vendor.min.scss */
.owl-carousel.owl-rtl .owl-item {
  float: right;
}

/* No Js */
/* line 87, ../vendor.min.scss */
.no-js .owl-carousel {
  display: block;
}

/*
 *  Owl Carousel - Animate Plugin
 */
/* line 93, ../vendor.min.scss */
.owl-carousel .animated {
  -webkit-animation-duration: 1000ms;
  animation-duration: 1000ms;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

/* line 97, ../vendor.min.scss */
.owl-carousel .owl-animated-in {
  z-index: 0;
}

/* line 100, ../vendor.min.scss */
.owl-carousel .owl-animated-out {
  z-index: 1;
}

/* line 103, ../vendor.min.scss */
.owl-carousel .fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

/*
 * 	Owl Carousel - Auto Height Plugin
 */
/* line 115, ../vendor.min.scss */
.owl-height {
  -webkit-transition: height 500ms ease-in-out;
  transition: height 500ms ease-in-out;
}

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
/* line 121, ../vendor.min.scss */
.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  -webkit-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}

/* line 125, ../vendor.min.scss */
.owl-carousel .owl-item img.owl-lazy {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

/*
 * 	Owl Carousel - Video Plugin
 */
/* line 131, ../vendor.min.scss */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}

/* line 136, ../vendor.min.scss */
.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;
  -webkit-transition: -webkit-transform 100ms ease;
  transition: -webkit-transform 100ms ease;
  transition: transform 100ms ease;
  transition: transform 100ms ease, -webkit-transform 100ms ease;
}

/* line 150, ../vendor.min.scss */
.owl-carousel .owl-video-play-icon:hover {
  -webkit-transform: scale(1.3, 1.3);
  transform: scale(1.3, 1.3);
}

/* line 154, ../vendor.min.scss */
.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none;
}

/* line 158, ../vendor.min.scss */
.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}

/* line 166, ../vendor.min.scss */
.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}

/**
 * Owl Carousel v2.2.1
 * Copyright 2013-2017 David Deutsch
 * Licensed under  ()
 */
/*
 * 	Default theme - Owl Carousel CSS File
 */
/* line 180, ../vendor.min.scss */
.owl-theme .owl-nav {
  margin-top: 10px;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

/* line 184, ../vendor.min.scss */
.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;
}

/* line 193, ../vendor.min.scss */
.owl-theme .owl-nav [class*='owl-']:hover {
  background: #869791;
  color: #FFF;
  text-decoration: none;
}

/* line 197, ../vendor.min.scss */
.owl-theme .owl-nav .disabled {
  opacity: 0.5;
  cursor: default;
}

/* line 201, ../vendor.min.scss */
.owl-theme .owl-nav.disabled+.owl-dots {
  margin-top: 10px;
}

/* line 204, ../vendor.min.scss */
.owl-theme .owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

/* line 207, ../vendor.min.scss */
.owl-theme .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
  *display: inline;
}

/* line 211, ../vendor.min.scss */
.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  background: #D6D6D6;
  display: block;
  -webkit-backface-visibility: visible;
  -webkit-transition: opacity 200ms ease;
  transition: opacity 200ms ease;
  border-radius: 30px;
}

/* line 220, ../vendor.min.scss */
.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: #869791;
}

/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.7.0
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2018 Daniel Eden
 */
@-webkit-keyframes bounce {

  from,
  20%,
  53%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

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

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}

@keyframes bounce {

  from,
  20%,
  53%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

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

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}

/* line 299, ../vendor.min.scss */
.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;
  }
}

/* line 332, ../vendor.min.scss */
.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);
  }
}

/* line 373, ../vendor.min.scss */
.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

@-webkit-keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }

  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }

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

@keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }

  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }

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

/* line 452, ../vendor.min.scss */
.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);
  }
}

/* line 507, ../vendor.min.scss */
.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);
  }
}

/* line 576, ../vendor.min.scss */
.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);
  }
}

/* line 637, ../vendor.min.scss */
.swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}

@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }

  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

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

@keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }

  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

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

/* line 710, ../vendor.min.scss */
.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }

  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }

  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }

  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }

  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes wobble {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }

  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }

  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }

  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }

  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

/* line 791, ../vendor.min.scss */
.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

@-webkit-keyframes jello {

  from,
  11.1%,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }

  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }

  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }

  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }

  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }

  77.7% {
    -webkit-transform: skewX(0.39063deg) skewY(0.39063deg);
    transform: skewX(0.39063deg) skewY(0.39063deg);
  }

  88.8% {
    -webkit-transform: skewX(-0.19531deg) skewY(-0.19531deg);
    transform: skewX(-0.19531deg) skewY(-0.19531deg);
  }
}

@keyframes jello {

  from,
  11.1%,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }

  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }

  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }

  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }

  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }

  77.7% {
    -webkit-transform: skewX(0.39063deg) skewY(0.39063deg);
    transform: skewX(0.39063deg) skewY(0.39063deg);
  }

  88.8% {
    -webkit-transform: skewX(-0.19531deg) skewY(-0.19531deg);
    transform: skewX(-0.19531deg) skewY(-0.19531deg);
  }
}

/* line 884, ../vendor.min.scss */
.jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  transform-origin: center;
}

@-webkit-keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

/* line 945, ../vendor.min.scss */
.heartBeat {
  -webkit-animation-name: heartBeat;
  animation-name: heartBeat;
  -webkit-animation-duration: 1.3s;
  animation-duration: 1.3s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

@-webkit-keyframes bounceIn {

  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

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

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

  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }

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

@keyframes bounceIn {

  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

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

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

  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }

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

/* line 1044, ../vendor.min.scss */
.bounceIn {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {

  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes bounceInDown {

  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

/* line 1127, ../vendor.min.scss */
.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {

  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes bounceInLeft {

  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

/* line 1208, ../vendor.min.scss */
.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {

  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes bounceInRight {

  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

/* line 1289, ../vendor.min.scss */
.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {

  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes bounceInUp {

  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

/* line 1370, ../vendor.min.scss */
.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  50%,
  55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

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

@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  50%,
  55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

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

/* line 1415, ../vendor.min.scss */
.bounceOut {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

/* line 1462, ../vendor.min.scss */
.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);
  }
}

/* line 1495, ../vendor.min.scss */
.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);
  }
}

/* line 1528, ../vendor.min.scss */
.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);
  }
}

/* line 1573, ../vendor.min.scss */
.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;
  }
}

/* line 1598, ../vendor.min.scss */
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

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

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

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

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

/* line 1631, ../vendor.min.scss */
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

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

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

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

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

/* line 1664, ../vendor.min.scss */
.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

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

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

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

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

/* line 1697, ../vendor.min.scss */
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

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

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

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

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

/* line 1730, ../vendor.min.scss */
.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

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

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

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

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

/* line 1763, ../vendor.min.scss */
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

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

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

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

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

/* line 1796, ../vendor.min.scss */
.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

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

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

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

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

/* line 1829, ../vendor.min.scss */
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

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

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

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

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

/* line 1862, ../vendor.min.scss */
.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;
  }
}

/* line 1887, ../vendor.min.scss */
.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);
  }
}

/* line 1916, ../vendor.min.scss */
.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);
  }
}

/* line 1945, ../vendor.min.scss */
.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);
  }
}

/* line 1974, ../vendor.min.scss */
.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);
  }
}

/* line 2003, ../vendor.min.scss */
.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);
  }
}

/* line 2032, ../vendor.min.scss */
.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);
  }
}

/* line 2061, ../vendor.min.scss */
.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);
  }
}

/* line 2090, ../vendor.min.scss */
.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);
  }
}

/* line 2119, ../vendor.min.scss */
.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

@-webkit-keyframes flip {
  from {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) scale3d(1, 1, 1) 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) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  to {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

@keyframes flip {
  from {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) scale3d(1, 1, 1) 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) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  to {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

/* line 2214, ../vendor.min.scss */
.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);
  }
}

/* line 2287, ../vendor.min.scss */
.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);
  }
}

/* line 2360, ../vendor.min.scss */
.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;
  }
}

/* line 2405, ../vendor.min.scss */
.flipOutX {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }

  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}

@keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }

  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}

/* line 2452, ../vendor.min.scss */
.flipOutY {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}

@-webkit-keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@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);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

/* line 2509, ../vendor.min.scss */
.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;
  }
}

/* line 2540, ../vendor.min.scss */
.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

@-webkit-keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

/* line 2583, ../vendor.min.scss */
.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}

@-webkit-keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

/* line 2624, ../vendor.min.scss */
.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}

@-webkit-keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

/* line 2665, ../vendor.min.scss */
.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}

@-webkit-keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

/* line 2706, ../vendor.min.scss */
.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

/* line 2747, ../vendor.min.scss */
.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;
  }
}

/* line 2784, ../vendor.min.scss */
.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;
  }
}

/* line 2821, ../vendor.min.scss */
.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;
  }
}

/* line 2858, ../vendor.min.scss */
.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;
  }
}

/* line 2895, ../vendor.min.scss */
.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;
  }
}

/* line 2932, ../vendor.min.scss */
.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;
  }
}

/* line 3009, ../vendor.min.scss */
.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-name: hinge;
  animation-name: hinge;
}

@-webkit-keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }

  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }

  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }

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

@keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }

  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }

  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }

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

/* line 3068, ../vendor.min.scss */
.jackInTheBox {
  -webkit-animation-name: jackInTheBox;
  animation-name: jackInTheBox;
}

/* 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: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@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: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

/* line 3103, ../vendor.min.scss */
.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);
  }
}

/* line 3134, ../vendor.min.scss */
.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}

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

  50% {
    opacity: 1;
  }
}

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

  50% {
    opacity: 1;
  }
}

/* line 3163, ../vendor.min.scss */
.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

@-webkit-keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

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

@keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

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

/* line 3204, ../vendor.min.scss */
.zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}

@-webkit-keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

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

@keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

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

/* line 3245, ../vendor.min.scss */
.zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}

@-webkit-keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

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

@keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

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

/* line 3286, ../vendor.min.scss */
.zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}

@-webkit-keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

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

@keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

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

/* line 3327, ../vendor.min.scss */
.zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}

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

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

  to {
    opacity: 0;
  }
}

@keyframes zoomOut {
  from {
    opacity: 1;
  }

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

  to {
    opacity: 0;
  }
}

/* line 3364, ../vendor.min.scss */
.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}

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

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

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

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

/* line 3409, ../vendor.min.scss */
.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
}

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

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

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

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

/* line 3446, ../vendor.min.scss */
.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
}

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

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

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

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

/* line 3483, ../vendor.min.scss */
.zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
}

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

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

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

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

/* line 3528, ../vendor.min.scss */
.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);
  }
}

/* line 3559, ../vendor.min.scss */
.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);
  }
}

/* line 3590, ../vendor.min.scss */
.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);
  }
}

/* line 3621, ../vendor.min.scss */
.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);
  }
}

/* line 3652, ../vendor.min.scss */
.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);
  }
}

/* line 3683, ../vendor.min.scss */
.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);
  }
}

/* line 3714, ../vendor.min.scss */
.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);
  }
}

/* line 3745, ../vendor.min.scss */
.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);
  }
}

/* line 3776, ../vendor.min.scss */
.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}

/* line 3781, ../vendor.min.scss */
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

/* line 3788, ../vendor.min.scss */
.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

/* line 3793, ../vendor.min.scss */
.animated.delay-1s {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

/* line 3798, ../vendor.min.scss */
.animated.delay-2s {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

/* line 3803, ../vendor.min.scss */
.animated.delay-3s {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}

/* line 3808, ../vendor.min.scss */
.animated.delay-4s {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}

/* line 3813, ../vendor.min.scss */
.animated.delay-5s {
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
}

/* line 3818, ../vendor.min.scss */
.animated.fast {
  -webkit-animation-duration: 800ms;
  animation-duration: 800ms;
}

/* line 3823, ../vendor.min.scss */
.animated.faster {
  -webkit-animation-duration: 500ms;
  animation-duration: 500ms;
}

/* line 3828, ../vendor.min.scss */
.animated.slow {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

/* line 3833, ../vendor.min.scss */
.animated.slower {
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
}

@media (prefers-reduced-motion) {

  /* line 3839, ../vendor.min.scss */
  .animated {
    -webkit-animation: unset !important;
    animation: unset !important;
    -webkit-transition: none !important;
    transition: none !important;
  }
}

/*!
 * Bootstrap v3.3.7 (http://getbootstrap.com)
 * Copyright 2011-2016 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
@media (max-width: 768px) {

  /* line 185, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-xs-1 {
    -webkit-column-gap: 20px;
    column-gap: 20px;
    -webkit-columns: auto 1;
    columns: auto 1;
  }

  /* line 185, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-xs-2 {
    -webkit-column-gap: 20px;
    column-gap: 20px;
    -webkit-columns: auto 2;
    columns: auto 2;
  }

  /* line 185, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-xs-3 {
    -webkit-column-gap: 20px;
    column-gap: 20px;
    -webkit-columns: auto 3;
    columns: auto 3;
  }

  /* line 185, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-xs-4 {
    -webkit-column-gap: 20px;
    column-gap: 20px;
    -webkit-columns: auto 4;
    columns: auto 4;
  }

  /* line 185, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-xs-5 {
    -webkit-column-gap: 20px;
    column-gap: 20px;
    -webkit-columns: auto 5;
    columns: auto 5;
  }

  /* line 185, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-xs-6 {
    -webkit-column-gap: 20px;
    column-gap: 20px;
    -webkit-columns: auto 6;
    columns: auto 6;
  }

  /* line 185, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-xs-7 {
    -webkit-column-gap: 20px;
    column-gap: 20px;
    -webkit-columns: auto 7;
    columns: auto 7;
  }

  /* line 185, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-xs-8 {
    -webkit-column-gap: 20px;
    column-gap: 20px;
    -webkit-columns: auto 8;
    columns: auto 8;
  }

  /* line 185, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-xs-9 {
    -webkit-column-gap: 20px;
    column-gap: 20px;
    -webkit-columns: auto 9;
    columns: auto 9;
  }

  /* line 185, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-xs-10 {
    -webkit-column-gap: 20px;
    column-gap: 20px;
    -webkit-columns: auto 10;
    columns: auto 10;
  }

  /* line 185, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-xs-11 {
    -webkit-column-gap: 20px;
    column-gap: 20px;
    -webkit-columns: auto 11;
    columns: auto 11;
  }

  /* line 185, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-xs-12 {
    -webkit-column-gap: 20px;
    column-gap: 20px;
    -webkit-columns: auto 12;
    columns: auto 12;
  }
}

@media (min-width: 768px) {

  /* line 193, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-sm-1 {
    -webkit-column-gap: 20px;
    column-gap: 20px;
    -webkit-columns: auto 1;
    columns: auto 1;
  }

  /* line 193, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-sm-2 {
    -webkit-column-gap: 20px;
    column-gap: 20px;
    -webkit-columns: auto 2;
    columns: auto 2;
  }

  /* line 193, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-sm-3 {
    -webkit-column-gap: 20px;
    column-gap: 20px;
    -webkit-columns: auto 3;
    columns: auto 3;
  }

  /* line 193, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-sm-4 {
    -webkit-column-gap: 20px;
    column-gap: 20px;
    -webkit-columns: auto 4;
    columns: auto 4;
  }

  /* line 193, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-sm-5 {
    -webkit-column-gap: 20px;
    column-gap: 20px;
    -webkit-columns: auto 5;
    columns: auto 5;
  }

  /* line 193, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-sm-6 {
    -webkit-column-gap: 20px;
    column-gap: 20px;
    -webkit-columns: auto 6;
    columns: auto 6;
  }

  /* line 193, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-sm-7 {
    -webkit-column-gap: 20px;
    column-gap: 20px;
    -webkit-columns: auto 7;
    columns: auto 7;
  }

  /* line 193, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-sm-8 {
    -webkit-column-gap: 20px;
    column-gap: 20px;
    -webkit-columns: auto 8;
    columns: auto 8;
  }

  /* line 193, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-sm-9 {
    -webkit-column-gap: 20px;
    column-gap: 20px;
    -webkit-columns: auto 9;
    columns: auto 9;
  }

  /* line 193, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-sm-10 {
    -webkit-column-gap: 20px;
    column-gap: 20px;
    -webkit-columns: auto 10;
    columns: auto 10;
  }

  /* line 193, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-sm-11 {
    -webkit-column-gap: 20px;
    column-gap: 20px;
    -webkit-columns: auto 11;
    columns: auto 11;
  }

  /* line 193, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-sm-12 {
    -webkit-column-gap: 20px;
    column-gap: 20px;
    -webkit-columns: auto 12;
    columns: auto 12;
  }
}

@media (min-width: 992px) {

  /* line 201, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-md-1 {
    -webkit-column-gap: 20px;
    column-gap: 20px;
    -webkit-columns: auto 1;
    columns: auto 1;
  }

  /* line 201, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-md-2 {
    -webkit-column-gap: 20px;
    column-gap: 20px;
    -webkit-columns: auto 2;
    columns: auto 2;
  }

  /* line 201, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-md-3 {
    -webkit-column-gap: 20px;
    column-gap: 20px;
    -webkit-columns: auto 3;
    columns: auto 3;
  }

  /* line 201, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-md-4 {
    -webkit-column-gap: 20px;
    column-gap: 20px;
    -webkit-columns: auto 4;
    columns: auto 4;
  }

  /* line 201, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-md-5 {
    -webkit-column-gap: 20px;
    column-gap: 20px;
    -webkit-columns: auto 5;
    columns: auto 5;
  }

  /* line 201, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-md-6 {
    -webkit-column-gap: 20px;
    column-gap: 20px;
    -webkit-columns: auto 6;
    columns: auto 6;
  }

  /* line 201, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-md-7 {
    -webkit-column-gap: 20px;
    column-gap: 20px;
    -webkit-columns: auto 7;
    columns: auto 7;
  }

  /* line 201, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-md-8 {
    -webkit-column-gap: 20px;
    column-gap: 20px;
    -webkit-columns: auto 8;
    columns: auto 8;
  }

  /* line 201, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-md-9 {
    -webkit-column-gap: 20px;
    column-gap: 20px;
    -webkit-columns: auto 9;
    columns: auto 9;
  }

  /* line 201, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-md-10 {
    -webkit-column-gap: 20px;
    column-gap: 20px;
    -webkit-columns: auto 10;
    columns: auto 10;
  }

  /* line 201, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-md-11 {
    -webkit-column-gap: 20px;
    column-gap: 20px;
    -webkit-columns: auto 11;
    columns: auto 11;
  }

  /* line 201, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-md-12 {
    -webkit-column-gap: 20px;
    column-gap: 20px;
    -webkit-columns: auto 12;
    columns: auto 12;
  }
}

@media (min-width: 1100px) {

  /* line 209, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-lg-1 {
    -webkit-column-gap: 20px;
    column-gap: 20px;
    -webkit-columns: auto 1;
    columns: auto 1;
  }

  /* line 209, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-lg-2 {
    -webkit-column-gap: 20px;
    column-gap: 20px;
    -webkit-columns: auto 2;
    columns: auto 2;
  }

  /* line 209, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-lg-3 {
    -webkit-column-gap: 20px;
    column-gap: 20px;
    -webkit-columns: auto 3;
    columns: auto 3;
  }

  /* line 209, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-lg-4 {
    -webkit-column-gap: 20px;
    column-gap: 20px;
    -webkit-columns: auto 4;
    columns: auto 4;
  }

  /* line 209, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-lg-5 {
    -webkit-column-gap: 20px;
    column-gap: 20px;
    -webkit-columns: auto 5;
    columns: auto 5;
  }

  /* line 209, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-lg-6 {
    -webkit-column-gap: 20px;
    column-gap: 20px;
    -webkit-columns: auto 6;
    columns: auto 6;
  }

  /* line 209, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-lg-7 {
    -webkit-column-gap: 20px;
    column-gap: 20px;
    -webkit-columns: auto 7;
    columns: auto 7;
  }

  /* line 209, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-lg-8 {
    -webkit-column-gap: 20px;
    column-gap: 20px;
    -webkit-columns: auto 8;
    columns: auto 8;
  }

  /* line 209, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-lg-9 {
    -webkit-column-gap: 20px;
    column-gap: 20px;
    -webkit-columns: auto 9;
    columns: auto 9;
  }

  /* line 209, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-lg-10 {
    -webkit-column-gap: 20px;
    column-gap: 20px;
    -webkit-columns: auto 10;
    columns: auto 10;
  }

  /* line 209, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-lg-11 {
    -webkit-column-gap: 20px;
    column-gap: 20px;
    -webkit-columns: auto 11;
    columns: auto 11;
  }

  /* line 209, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-lg-12 {
    -webkit-column-gap: 20px;
    column-gap: 20px;
    -webkit-columns: auto 12;
    columns: auto 12;
  }
}

@media (min-width: 1320px) {

  /* line 217, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-xl-1 {
    -webkit-column-gap: 20px;
    column-gap: 20px;
    -webkit-columns: auto 1;
    columns: auto 1;
  }

  /* line 217, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-xl-2 {
    -webkit-column-gap: 20px;
    column-gap: 20px;
    -webkit-columns: auto 2;
    columns: auto 2;
  }

  /* line 217, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-xl-3 {
    -webkit-column-gap: 20px;
    column-gap: 20px;
    -webkit-columns: auto 3;
    columns: auto 3;
  }

  /* line 217, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-xl-4 {
    -webkit-column-gap: 20px;
    column-gap: 20px;
    -webkit-columns: auto 4;
    columns: auto 4;
  }

  /* line 217, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-xl-5 {
    -webkit-column-gap: 20px;
    column-gap: 20px;
    -webkit-columns: auto 5;
    columns: auto 5;
  }

  /* line 217, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-xl-6 {
    -webkit-column-gap: 20px;
    column-gap: 20px;
    -webkit-columns: auto 6;
    columns: auto 6;
  }

  /* line 217, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-xl-7 {
    -webkit-column-gap: 20px;
    column-gap: 20px;
    -webkit-columns: auto 7;
    columns: auto 7;
  }

  /* line 217, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-xl-8 {
    -webkit-column-gap: 20px;
    column-gap: 20px;
    -webkit-columns: auto 8;
    columns: auto 8;
  }

  /* line 217, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-xl-9 {
    -webkit-column-gap: 20px;
    column-gap: 20px;
    -webkit-columns: auto 9;
    columns: auto 9;
  }

  /* line 217, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-xl-10 {
    -webkit-column-gap: 20px;
    column-gap: 20px;
    -webkit-columns: auto 10;
    columns: auto 10;
  }

  /* line 217, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-xl-11 {
    -webkit-column-gap: 20px;
    column-gap: 20px;
    -webkit-columns: auto 11;
    columns: auto 11;
  }

  /* line 217, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-xl-12 {
    -webkit-column-gap: 20px;
    column-gap: 20px;
    -webkit-columns: auto 12;
    columns: auto 12;
  }
}

/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
/* line 9, bootstrap/bootstrap/_normalize.scss */
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

/* line 19, bootstrap/bootstrap/_normalize.scss */
body {
  margin: 0;
}

/* line 33, bootstrap/bootstrap/_normalize.scss */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

/* line 54, bootstrap/bootstrap/_normalize.scss */
audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}

/* line 67, bootstrap/bootstrap/_normalize.scss */
audio:not([controls]) {
  display: none;
  height: 0;
}

/* line 77, bootstrap/bootstrap/_normalize.scss */
[hidden],
template {
  display: none;
}

/* line 89, bootstrap/bootstrap/_normalize.scss */
a {
  background-color: transparent;
}

/* line 98, bootstrap/bootstrap/_normalize.scss */
a:active,
a:hover {
  outline: 0;
}

/* line 110, bootstrap/bootstrap/_normalize.scss */
abbr[title] {
  border-bottom: 1px dotted;
}

/* line 118, bootstrap/bootstrap/_normalize.scss */
b,
strong {
  font-weight: bold;
}

/* line 127, bootstrap/bootstrap/_normalize.scss */
dfn {
  font-style: italic;
}

/* line 136, bootstrap/bootstrap/_normalize.scss */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* line 145, bootstrap/bootstrap/_normalize.scss */
mark {
  background: #ff0;
  color: #000;
}

/* line 154, bootstrap/bootstrap/_normalize.scss */
small {
  font-size: 80%;
}

/* line 162, bootstrap/bootstrap/_normalize.scss */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

/* line 170, bootstrap/bootstrap/_normalize.scss */
sup {
  top: -0.5em;
}

/* line 174, bootstrap/bootstrap/_normalize.scss */
sub {
  bottom: -0.25em;
}

/* line 185, bootstrap/bootstrap/_normalize.scss */
img {
  border: 0;
}

/* line 193, bootstrap/bootstrap/_normalize.scss */
svg:not(:root) {
  overflow: hidden;
}

/* line 204, bootstrap/bootstrap/_normalize.scss */
figure {
  margin: 1em 40px;
}

/* line 212, bootstrap/bootstrap/_normalize.scss */
hr {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/* line 221, bootstrap/bootstrap/_normalize.scss */
pre {
  overflow: auto;
}

/* line 229, bootstrap/bootstrap/_normalize.scss */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* line 252, bootstrap/bootstrap/_normalize.scss */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}

/* line 266, bootstrap/bootstrap/_normalize.scss */
button {
  overflow: visible;
}

/* line 277, bootstrap/bootstrap/_normalize.scss */
button,
select {
  text-transform: none;
}

/* line 290, bootstrap/bootstrap/_normalize.scss */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}

/* line 302, bootstrap/bootstrap/_normalize.scss */
button[disabled],
html input[disabled] {
  cursor: default;
}

/* line 311, bootstrap/bootstrap/_normalize.scss */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/* line 322, bootstrap/bootstrap/_normalize.scss */
input {
  line-height: normal;
}

/* line 334, bootstrap/bootstrap/_normalize.scss */
input[type="checkbox"],
input[type="radio"] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
}

/* line 346, bootstrap/bootstrap/_normalize.scss */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/* line 356, bootstrap/bootstrap/_normalize.scss */
input[type="search"] {
  -webkit-appearance: textfield;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

/* line 367, bootstrap/bootstrap/_normalize.scss */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/* line 376, bootstrap/bootstrap/_normalize.scss */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/* line 387, bootstrap/bootstrap/_normalize.scss */
legend {
  border: 0;
  padding: 0;
}

/* line 396, bootstrap/bootstrap/_normalize.scss */
textarea {
  overflow: auto;
}

/* line 405, bootstrap/bootstrap/_normalize.scss */
optgroup {
  font-weight: bold;
}

/* line 416, bootstrap/bootstrap/_normalize.scss */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* line 421, bootstrap/bootstrap/_normalize.scss */
td,
th {
  padding: 0;
}

/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */
/* line 11, bootstrap/bootstrap/_scaffolding.scss */
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* line 14, bootstrap/bootstrap/_scaffolding.scss */
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* line 22, bootstrap/bootstrap/_scaffolding.scss */
html {
  font-size: 10px;
  -webkit-tap-highlight-color: transparent;
}

/* line 27, bootstrap/bootstrap/_scaffolding.scss */
body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.42857;
  color: #707070;
  background-color: #fff;
}

/* line 36, bootstrap/bootstrap/_scaffolding.scss */
input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

/* line 48, bootstrap/bootstrap/_scaffolding.scss */
a {
  color: #f78d29;
  text-decoration: none;
}

/* line 52, bootstrap/bootstrap/_scaffolding.scss */
a:hover,
a:focus {
  color: #cc6708;
  text-decoration: underline;
}

/* line 58, bootstrap/bootstrap/_scaffolding.scss */
a:focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

/* line 69, bootstrap/bootstrap/_scaffolding.scss */
figure {
  margin: 0;
}

/* line 76, bootstrap/bootstrap/_scaffolding.scss */
img {
  vertical-align: middle;
}

.empty-space-44 {
  padding-bottom: 77px;
}

@media (max-width: 768px) {
  .empty-space-44 {
    padding-bottom: 0px;
  }
}

.empty-space-150 {
  padding-bottom: 200px;
}


/* line 81, bootstrap/bootstrap/_scaffolding.scss */
.img-responsive {
  display: block;
  max-width: 100%;
  height: auto;
  /* margin: 0 auto; */
}

/* line 86, bootstrap/bootstrap/_scaffolding.scss */
.img-rounded {
  border-radius: 6px;
}

/* line 93, bootstrap/bootstrap/_scaffolding.scss */
.img-thumbnail {
  padding: 4px;
  line-height: 1.42857;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  display: inline-block;
  max-width: 100%;
  height: auto;
}

/* line 106, bootstrap/bootstrap/_scaffolding.scss */
.img-circle {
  border-radius: 50%;
}

/* line 113, bootstrap/bootstrap/_scaffolding.scss */
hr {
  margin-top: 20px;
  margin-bottom: 20px;
  border: 0;
  border-top: 1px solid #56585A;
}

/* line 125, bootstrap/bootstrap/_scaffolding.scss */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* line 141, bootstrap/bootstrap/_scaffolding.scss */
.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}

/* line 159, bootstrap/bootstrap/_scaffolding.scss */
[role="button"] {
  cursor: pointer;
}

/* line 9, bootstrap/bootstrap/_type.scss */
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: inherit;
  font-weight: 500;
  line-height: 1.1;
  color: inherit;
}

/* line 16, bootstrap/bootstrap/_type.scss */
h1 small,
h1 .small,
h2 small,
h2 .small,
h3 small,
h3 .small,
h4 small,
h4 .small,
h5 small,
h5 .small,
h6 small,
h6 .small,
.h1 small,
.h1 .small,
.h2 small,
.h2 .small,
.h3 small,
.h3 .small,
.h4 small,
.h4 .small,
.h5 small,
.h5 .small,
.h6 small,
.h6 .small {
  font-weight: normal;
  line-height: 1;
  color: #56585A;
}

/* line 24, bootstrap/bootstrap/_type.scss */
h1,
.h1,
h2,
.h2,
h3,
.h3 {
  margin-top: 20px;
  margin-bottom: 10px;
}

/* line 30, bootstrap/bootstrap/_type.scss */
h1 small,
h1 .small,
.h1 small,
.h1 .small,
h2 small,
h2 .small,
.h2 small,
.h2 .small,
h3 small,
h3 .small,
.h3 small,
.h3 .small {
  font-size: 65%;
}

/* line 35, bootstrap/bootstrap/_type.scss */
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  margin-top: 10px;
  margin-bottom: 10px;
}

/* line 41, bootstrap/bootstrap/_type.scss */
h4 small,
h4 .small,
.h4 small,
.h4 .small,
h5 small,
h5 .small,
.h5 small,
.h5 .small,
h6 small,
h6 .small,
.h6 small,
.h6 .small {
  font-size: 75%;
}

/* line 47, bootstrap/bootstrap/_type.scss */
h1,
.h1 {
  font-size: 36px;
}

/* line 48, bootstrap/bootstrap/_type.scss */
h2,
.h2 {
  font-size: 30px;
}

/* line 49, bootstrap/bootstrap/_type.scss */
h3,
.h3 {
  font-size: 24px;
}

/* line 50, bootstrap/bootstrap/_type.scss */
h4,
.h4 {
  font-size: 18px;
}

/* line 51, bootstrap/bootstrap/_type.scss */
h5,
.h5 {
  font-size: 14px;
}

/* line 52, bootstrap/bootstrap/_type.scss */
h6,
.h6 {
  font-size: 12px;
}

/* line 58, bootstrap/bootstrap/_type.scss */
p {
  margin: 0 0 10px;
}

/* line 62, bootstrap/bootstrap/_type.scss */
.lead {
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.4;
}

@media (min-width: 768px) {

  /* line 62, bootstrap/bootstrap/_type.scss */
  .lead {
    font-size: 21px;
  }
}

/* line 78, bootstrap/bootstrap/_type.scss */
small,
.small {
  font-size: 85%;
}

/* line 83, bootstrap/bootstrap/_type.scss */
mark,
.mark {
  background-color: #fcf8e3;
  padding: .2em;
}

/* line 90, bootstrap/bootstrap/_type.scss */
.text-left {
  text-align: left;
}

/* line 91, bootstrap/bootstrap/_type.scss */
.text-right {
  text-align: right;
}

/* line 92, bootstrap/bootstrap/_type.scss */
.text-center {
  text-align: center;
}

/* line 93, bootstrap/bootstrap/_type.scss */
.text-justify {
  text-align: justify;
}

/* line 94, bootstrap/bootstrap/_type.scss */
.text-nowrap {
  white-space: nowrap;
}

/* line 97, bootstrap/bootstrap/_type.scss */
.text-lowercase {
  text-transform: lowercase;
}

/* line 98, bootstrap/bootstrap/_type.scss */
.text-uppercase,
.initialism {
  text-transform: uppercase;
}

/* line 99, bootstrap/bootstrap/_type.scss */
.text-capitalize {
  text-transform: capitalize;
}

/* line 102, bootstrap/bootstrap/_type.scss */
.text-muted {
  color: #56585A;
}

/* line 5, bootstrap/bootstrap/mixins/_text-emphasis.scss */
.text-primary {
  color: #f78d29;
}

/* line 8, bootstrap/bootstrap/mixins/_text-emphasis.scss */
a.text-primary:hover,
a.text-primary:focus {
  color: #e47309;
}

/* line 5, bootstrap/bootstrap/mixins/_text-emphasis.scss */
.text-success {
  color: #3c763d;
}

/* line 8, bootstrap/bootstrap/mixins/_text-emphasis.scss */
a.text-success:hover,
a.text-success:focus {
  color: #2b542c;
}

/* line 5, bootstrap/bootstrap/mixins/_text-emphasis.scss */
.text-info {
  color: #31708f;
}

/* line 8, bootstrap/bootstrap/mixins/_text-emphasis.scss */
a.text-info:hover,
a.text-info:focus {
  color: #245269;
}

/* line 5, bootstrap/bootstrap/mixins/_text-emphasis.scss */
.text-warning {
  color: #8a6d3b;
}

/* line 8, bootstrap/bootstrap/mixins/_text-emphasis.scss */
a.text-warning:hover,
a.text-warning:focus {
  color: #66512c;
}

/* line 5, bootstrap/bootstrap/mixins/_text-emphasis.scss */
.text-danger {
  color: #a94442;
}

/* line 8, bootstrap/bootstrap/mixins/_text-emphasis.scss */
a.text-danger:hover,
a.text-danger:focus {
  color: #843534;
}

/* line 119, bootstrap/bootstrap/_type.scss */
.bg-primary {
  color: #fff;
}

/* line 5, bootstrap/bootstrap/mixins/_background-variant.scss */
.bg-primary {
  background-color: #f78d29;
}

/* line 8, bootstrap/bootstrap/mixins/_background-variant.scss */
a.bg-primary:hover,
a.bg-primary:focus {
  background-color: #e47309;
}

/* line 5, bootstrap/bootstrap/mixins/_background-variant.scss */
.bg-success {
  background-color: #dff0d8;
}

/* line 8, bootstrap/bootstrap/mixins/_background-variant.scss */
a.bg-success:hover,
a.bg-success:focus {
  background-color: #c1e2b3;
}

/* line 5, bootstrap/bootstrap/mixins/_background-variant.scss */
.bg-info {
  background-color: #d9edf7;
}

/* line 8, bootstrap/bootstrap/mixins/_background-variant.scss */
a.bg-info:hover,
a.bg-info:focus {
  background-color: #afd9ee;
}

/* line 5, bootstrap/bootstrap/mixins/_background-variant.scss */
.bg-warning {
  background-color: #fcf8e3;
}

/* line 8, bootstrap/bootstrap/mixins/_background-variant.scss */
a.bg-warning:hover,
a.bg-warning:focus {
  background-color: #f7ecb5;
}

/* line 5, bootstrap/bootstrap/mixins/_background-variant.scss */
.bg-danger {
  background-color: #f2dede;
}

/* line 8, bootstrap/bootstrap/mixins/_background-variant.scss */
a.bg-danger:hover,
a.bg-danger:focus {
  background-color: #e4b9b9;
}

/* line 138, bootstrap/bootstrap/_type.scss */
.page-header {
  padding-bottom: 9px;
  margin: 40px 0 20px;
  border-bottom: 1px solid #56585A;
}

/* line 149, bootstrap/bootstrap/_type.scss */
ul,
ol {
  margin-top: 0;
  margin-bottom: 10px;
}

/* line 153, bootstrap/bootstrap/_type.scss */
ul ul,
ul ol,
ol ul,
ol ol {
  margin-bottom: 0;
}

/* line 167, bootstrap/bootstrap/_type.scss */
.list-unstyled {
  padding-left: 0;
  list-style: none;
}

/* line 173, bootstrap/bootstrap/_type.scss */
.list-inline {
  padding-left: 0;
  list-style: none;
  margin-left: -5px;
}

/* line 177, bootstrap/bootstrap/_type.scss */
.list-inline>li {
  display: inline-block;
  padding-left: 5px;
  padding-right: 5px;
}

/* line 185, bootstrap/bootstrap/_type.scss */
dl {
  margin-top: 0;
  margin-bottom: 20px;
}

/* line 189, bootstrap/bootstrap/_type.scss */
dt,
dd {
  line-height: 1.42857;
}

/* line 193, bootstrap/bootstrap/_type.scss */
dt {
  font-weight: bold;
}

/* line 196, bootstrap/bootstrap/_type.scss */
dd {
  margin-left: 0;
}

/* line 14, bootstrap/bootstrap/mixins/_clearfix.scss */
.dl-horizontal dd:before,
.dl-horizontal dd:after {
  content: " ";
  display: table;
}

/* line 19, bootstrap/bootstrap/mixins/_clearfix.scss */
.dl-horizontal dd:after {
  clear: both;
}

@media (min-width: 992px) {

  /* line 211, bootstrap/bootstrap/_type.scss */
  .dl-horizontal dt {
    float: left;
    width: 160px;
    clear: left;
    text-align: right;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  /* line 218, bootstrap/bootstrap/_type.scss */
  .dl-horizontal dd {
    margin-left: 180px;
  }
}

/* line 229, bootstrap/bootstrap/_type.scss */
abbr[title],
abbr[data-original-title] {
  cursor: help;
  border-bottom: 1px dotted #56585A;
}

/* line 235, bootstrap/bootstrap/_type.scss */
.initialism {
  font-size: 90%;
}

/* line 241, bootstrap/bootstrap/_type.scss */
blockquote {
  padding: 10px 20px;
  margin: 0 0 20px;
  font-size: 17.5px;
  border-left: 5px solid #56585A;
}

/* line 250, bootstrap/bootstrap/_type.scss */
blockquote p:last-child,
blockquote ul:last-child,
blockquote ol:last-child {
  margin-bottom: 0;
}

/* line 257, bootstrap/bootstrap/_type.scss */
blockquote footer,
blockquote small,
blockquote .small {
  display: block;
  font-size: 80%;
  line-height: 1.42857;
  color: #56585A;
}

/* line 265, bootstrap/bootstrap/_type.scss */
blockquote footer:before,
blockquote small:before,
blockquote .small:before {
  content: '\2014 \00A0';
}

/* line 274, bootstrap/bootstrap/_type.scss */
.blockquote-reverse,
blockquote.pull-right {
  padding-right: 15px;
  padding-left: 0;
  border-right: 5px solid #56585A;
  border-left: 0;
  text-align: right;
}

/* line 286, bootstrap/bootstrap/_type.scss */
.blockquote-reverse footer:before,
.blockquote-reverse small:before,
.blockquote-reverse .small:before,
blockquote.pull-right footer:before,
blockquote.pull-right small:before,
blockquote.pull-right .small:before {
  content: '';
}

/* line 287, bootstrap/bootstrap/_type.scss */
.blockquote-reverse footer:after,
.blockquote-reverse small:after,
.blockquote-reverse .small:after,
blockquote.pull-right footer:after,
blockquote.pull-right small:after,
blockquote.pull-right .small:after {
  content: '\00A0 \2014';
}

/* line 294, bootstrap/bootstrap/_type.scss */
address {
  margin-bottom: 20px;
  font-style: normal;
  line-height: 1.42857;
}

/* line 10, bootstrap/bootstrap/_grid.scss */
.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 10px;
  padding-right: 10px;
}

/* .footerContact{
  margin-top:-180px;
  display:grid;
} */


/* line 14, bootstrap/bootstrap/mixins/_clearfix.scss */
.container:before,
.container:after {
  content: " ";
  display: table;
}

/* line 19, bootstrap/bootstrap/mixins/_clearfix.scss */
.container:after {
  clear: both;
}

@media (min-width: 768px) {

  /* line 10, bootstrap/bootstrap/_grid.scss */
  .container {
    max-width: 768px;
  }
}

@media (min-width: 992px) {

  /* line 10, bootstrap/bootstrap/_grid.scss */
  .container {
    max-width: 992px;
  }
}

@media (min-width: 1100px) {

  /* line 10, bootstrap/bootstrap/_grid.scss */
  .container {
    max-width: 1100px;
  }
}

@media (min-width: 1320px) {

  /* line 10, bootstrap/bootstrap/_grid.scss */
  .container {
    max-width: 1220px;
  }
}

/* line 33, bootstrap/bootstrap/_grid.scss */
.container-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-left: 10px;
  padding-right: 10px;
}

/* line 14, bootstrap/bootstrap/mixins/_clearfix.scss */
.container-fluid:before,
.container-fluid:after {
  content: " ";
  display: table;
}

/* line 19, bootstrap/bootstrap/mixins/_clearfix.scss */
.container-fluid:after {
  clear: both;
}

/* line 42, bootstrap/bootstrap/_grid.scss */
.row {
  margin-left: -10px;
  margin-right: -10px;
}

/* line 14, bootstrap/bootstrap/mixins/_clearfix.scss */
.row:before,
.row:after {
  content: " ";
  display: table;
}

/* line 19, bootstrap/bootstrap/mixins/_clearfix.scss */
.row:after {
  clear: both;
}

/* line 11, bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-1,
.col-sm-1,
.col-md-1,
.col-lg-1,
.col-xs-2,
.col-sm-2,
.col-md-2,
.col-lg-2,
.col-xs-3,
.col-sm-3,
.col-md-3,
.col-lg-3,
.col-xs-4,
.col-sm-4,
.col-md-4,
.col-lg-4,
.col-xs-5,
.col-sm-5,
.col-md-5,
.col-lg-5,
.col-xs-6,
.col-sm-6,
.col-md-6,
.col-lg-6,
.col-xs-7,
.col-sm-7,
.col-md-7,
.col-lg-7,
.col-xs-8,
.col-sm-8,
.col-md-8,
.col-lg-8,
.col-xs-9,
.col-sm-9,
.col-md-9,
.col-lg-9,
.col-xs-10,
.col-sm-10,
.col-md-10,
.col-lg-10,
.col-xs-11,
.col-sm-11,
.col-md-11,
.col-lg-11,
.col-xs-12,
.col-sm-12,
.col-md-12,
.col-lg-12 {
  position: relative;
  min-height: 1px;
  padding-left: 10px;
  padding-right: 10px;
}

/* line 27, bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-1,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9,
.col-xs-10,
.col-xs-11,
.col-xs-12 {
  float: left;
}

/* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-1 {
  width: 8.33333%;
}

/* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-2 {
  width: 16.66667%;
}

/* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-3 {
  width: 25%;
}

/* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-4 {
  width: 33.33333%;
}

/* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-5 {
  width: 41.66667%;
}

/* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-6 {
  width: 50%;
}

/* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-7 {
  width: 58.33333%;
}

/* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-8 {
  width: 66.66667%;
}

/* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-9 {
  width: 75%;
}

/* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-10 {
  width: 83.33333%;
}

/* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-11 {
  width: 91.66667%;
}

/* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-12 {
  width: 100%;
}

/* line 55, bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-pull-0 {
  right: auto;
}

/* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-pull-1 {
  right: 8.33333%;
}

/* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-pull-2 {
  right: 16.66667%;
}

/* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-pull-3 {
  right: 25%;
}

/* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-pull-4 {
  right: 33.33333%;
}

/* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-pull-5 {
  right: 41.66667%;
}

/* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-pull-6 {
  right: 50%;
}

/* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-pull-7 {
  right: 58.33333%;
}

/* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-pull-8 {
  right: 66.66667%;
}

/* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-pull-9 {
  right: 75%;
}

/* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-pull-10 {
  right: 83.33333%;
}

/* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-pull-11 {
  right: 91.66667%;
}

/* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-pull-12 {
  right: 100%;
}

/* line 45, bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-push-0 {
  left: auto;
}

/* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-push-1 {
  left: 8.33333%;
}

/* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-push-2 {
  left: 16.66667%;
}

/* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-push-3 {
  left: 25%;
}

/* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-push-4 {
  left: 33.33333%;
}

/* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-push-5 {
  left: 41.66667%;
}

/* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-push-6 {
  left: 50%;
}

/* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-push-7 {
  left: 58.33333%;
}

/* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-push-8 {
  left: 66.66667%;
}

/* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-push-9 {
  left: 75%;
}

/* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-push-10 {
  left: 83.33333%;
}

/* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-push-11 {
  left: 91.66667%;
}

/* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-push-12 {
  left: 100%;
}

/* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-offset-0 {
  margin-left: 0%;
}

/* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-offset-1 {
  margin-left: 8.33333%;
}

/* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-offset-2 {
  margin-left: 16.66667%;
}

/* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-offset-3 {
  margin-left: 25%;
}

/* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-offset-4 {
  margin-left: 33.33333%;
}

/* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-offset-5 {
  margin-left: 41.66667%;
}

/* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-offset-6 {
  margin-left: 50%;
}

/* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-offset-7 {
  margin-left: 58.33333%;
}

/* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-offset-8 {
  margin-left: 66.66667%;
}

/* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-offset-9 {
  margin-left: 75%;
}

/* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-offset-10 {
  margin-left: 83.33333%;
}

/* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-offset-11 {
  margin-left: 91.66667%;
}

/* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-offset-12 {
  margin-left: 100%;
}

@media (min-width: 768px) {

  /* line 27, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-1,
  .col-sm-2,
  .col-sm-3,
  .col-sm-4,
  .col-sm-5,
  .col-sm-6,
  .col-sm-7,
  .col-sm-8,
  .col-sm-9,
  .col-sm-10,
  .col-sm-11,
  .col-sm-12 {
    float: left;
  }

  /* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-1 {
    width: 8.33333%;
  }

  /* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-2 {
    width: 16.66667%;
  }

  /* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-3 {
    width: 25%;
  }

  /* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-4 {
    width: 33.33333%;
  }

  /* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-5 {
    width: 41.66667%;
  }

  /* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-6 {
    width: 50%;
  }

  /* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-7 {
    width: 58.33333%;
  }

  /* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-8 {
    width: 66.66667%;
  }

  /* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-9 {
    width: 75%;
  }

  /* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-10 {
    width: 83.33333%;
  }

  /* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-11 {
    width: 91.66667%;
  }

  /* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-12 {
    width: 100%;
  }

  /* line 55, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-pull-0 {
    right: auto;
  }

  /* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-pull-1 {
    right: 8.33333%;
  }

  /* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-pull-2 {
    right: 16.66667%;
  }

  /* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-pull-3 {
    right: 25%;
  }

  /* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-pull-4 {
    right: 33.33333%;
  }

  /* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-pull-5 {
    right: 41.66667%;
  }

  /* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-pull-6 {
    right: 50%;
  }

  /* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-pull-7 {
    right: 58.33333%;
  }

  /* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-pull-8 {
    right: 66.66667%;
  }

  /* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-pull-9 {
    right: 75%;
  }

  /* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-pull-10 {
    right: 83.33333%;
  }

  /* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-pull-11 {
    right: 91.66667%;
  }

  /* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-pull-12 {
    right: 100%;
  }

  /* line 45, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-push-0 {
    left: auto;
  }

  /* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-push-1 {
    left: 8.33333%;
  }

  /* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-push-2 {
    left: 16.66667%;
  }

  /* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-push-3 {
    left: 25%;
  }

  /* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-push-4 {
    left: 33.33333%;
  }

  /* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-push-5 {
    left: 41.66667%;
  }

  /* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-push-6 {
    left: 50%;
  }

  /* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-push-7 {
    left: 58.33333%;
  }

  /* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-push-8 {
    left: 66.66667%;
  }

  /* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-push-9 {
    left: 75%;
  }

  /* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-push-10 {
    left: 83.33333%;
  }

  /* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-push-11 {
    left: 91.66667%;
  }

  /* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-push-12 {
    left: 100%;
  }

  /* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-offset-0 {
    margin-left: 0%;
  }

  /* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-offset-1 {
    margin-left: 8.33333%;
  }

  /* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-offset-2 {
    margin-left: 16.66667%;
  }

  /* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-offset-3 {
    margin-left: 25%;
  }

  /* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-offset-4 {
    margin-left: 33.33333%;
  }

  /* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-offset-5 {
    margin-left: 41.66667%;
  }

  /* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-offset-6 {
    margin-left: 50%;
  }

  /* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-offset-7 {
    margin-left: 58.33333%;
  }

  /* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-offset-8 {
    margin-left: 66.66667%;
  }

  /* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-offset-9 {
    margin-left: 75%;
  }

  /* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-offset-10 {
    margin-left: 83.33333%;
  }

  /* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-offset-11 {
    margin-left: 91.66667%;
  }

  /* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-offset-12 {
    margin-left: 100%;
  }
}

@media (min-width: 992px) {

  /* line 27, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-1,
  .col-md-2,
  .col-md-3,
  .col-md-4,
  .col-md-5,
  .col-md-6,
  .col-md-7,
  .col-md-8,
  .col-md-9,
  .col-md-10,
  .col-md-11,
  .col-md-12 {
    float: left;
  }

  /* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-1 {
    width: 8.33333%;
  }

  /* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-2 {
    width: 16.66667%;
  }

  /* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-3 {
    width: 25%;
  }

  /* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-4 {
    width: 33.33333%;
  }

  /* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-5 {
    width: 41.66667%;
  }

  /* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-6 {
    width: 50%;
  }

  /* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-7 {
    width: 58.33333%;
  }

  /* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-8 {
    width: 66.66667%;
  }

  /* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-9 {
    width: 75%;
  }

  /* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-10 {
    width: 83.33333%;
  }

  /* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-11 {
    width: 91.66667%;
  }

  /* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-12 {
    width: 100%;
  }

  /* line 55, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-pull-0 {
    right: auto;
  }

  /* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-pull-1 {
    right: 8.33333%;
  }

  /* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-pull-2 {
    right: 16.66667%;
  }

  /* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-pull-3 {
    right: 25%;
  }

  /* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-pull-4 {
    right: 33.33333%;
  }

  /* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-pull-5 {
    right: 41.66667%;
  }

  /* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-pull-6 {
    right: 50%;
  }

  /* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-pull-7 {
    right: 58.33333%;
  }

  /* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-pull-8 {
    right: 66.66667%;
  }

  /* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-pull-9 {
    right: 75%;
  }

  /* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-pull-10 {
    right: 83.33333%;
  }

  /* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-pull-11 {
    right: 91.66667%;
  }

  /* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-pull-12 {
    right: 100%;
  }

  /* line 45, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-push-0 {
    left: auto;
  }

  /* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-push-1 {
    left: 8.33333%;
  }

  /* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-push-2 {
    left: 16.66667%;
  }

  /* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-push-3 {
    left: 25%;
  }

  /* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-push-4 {
    left: 33.33333%;
  }

  /* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-push-5 {
    left: 41.66667%;
  }

  /* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-push-6 {
    left: 50%;
  }

  /* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-push-7 {
    left: 58.33333%;
  }

  /* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-push-8 {
    left: 66.66667%;
  }

  /* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-push-9 {
    left: 75%;
  }

  /* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-push-10 {
    left: 83.33333%;
  }

  /* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-push-11 {
    left: 91.66667%;
  }

  /* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-push-12 {
    left: 100%;
  }

  /* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-offset-0 {
    margin-left: 0%;
  }

  /* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-offset-1 {
    margin-left: 8.33333%;
  }

  /* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-offset-2 {
    margin-left: 16.66667%;
  }

  /* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-offset-3 {
    margin-left: 25%;
  }

  /* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-offset-4 {
    margin-left: 33.33333%;
  }

  /* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-offset-5 {
    margin-left: 41.66667%;
  }

  /* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-offset-6 {
    margin-left: 50%;
  }

  /* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-offset-7 {
    margin-left: 58.33333%;
  }

  /* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-offset-8 {
    margin-left: 66.66667%;
  }

  /* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-offset-9 {
    margin-left: 75%;
  }

  /* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-offset-10 {
    margin-left: 83.33333%;
  }

  /* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-offset-11 {
    margin-left: 91.66667%;
  }

  /* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-offset-12 {
    margin-left: 100%;
  }
}

@media (min-width: 1100px) {

  /* line 27, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-1,
  .col-lg-2,
  .col-lg-3,
  .col-lg-4,
  .col-lg-5,
  .col-lg-6,
  .col-lg-7,
  .col-lg-8,
  .col-lg-9,
  .col-lg-10,
  .col-lg-11,
  .col-lg-12 {
    float: left;
  }

  /* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-1 {
    width: 8.33333%;
  }

  /* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-2 {
    width: 16.66667%;
  }

  /* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-3 {
    width: 25%;
  }

  /* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-4 {
    width: 33.33333%;
  }

  /* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-5 {
    width: 41.66667%;
  }

  /* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-6 {
    width: 50%;
  }

  /* .col-lg-6.full-col{
    width:100%;
  } */

  /* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-7 {
    width: 58.33333%;
  }

  /* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-8 {
    width: 66.66667%;
  }

  /* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-9 {
    width: 75%;
  }

  /* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-10 {
    width: 83.33333%;
  }

  /* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-11 {
    width: 91.66667%;
  }

  /* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-12 {
    width: 100%;
  }

  /* line 55, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-pull-0 {
    right: auto;
  }

  /* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-pull-1 {
    right: 8.33333%;
  }

  /* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-pull-2 {
    right: 16.66667%;
  }

  /* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-pull-3 {
    right: 25%;
  }

  /* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-pull-4 {
    right: 33.33333%;
  }

  /* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-pull-5 {
    right: 41.66667%;
  }

  /* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-pull-6 {
    right: 50%;
  }

  /* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-pull-7 {
    right: 58.33333%;
  }

  /* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-pull-8 {
    right: 66.66667%;
  }

  /* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-pull-9 {
    right: 75%;
  }

  /* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-pull-10 {
    right: 83.33333%;
  }

  /* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-pull-11 {
    right: 91.66667%;
  }

  /* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-pull-12 {
    right: 100%;
  }

  /* line 45, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-push-0 {
    left: auto;
  }

  /* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-push-1 {
    left: 8.33333%;
  }

  /* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-push-2 {
    left: 16.66667%;
  }

  /* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-push-3 {
    left: 25%;
  }

  /* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-push-4 {
    left: 33.33333%;
  }

  /* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-push-5 {
    left: 41.66667%;
  }

  /* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-push-6 {
    left: 50%;
  }

  /* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-push-7 {
    left: 58.33333%;
  }

  /* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-push-8 {
    left: 66.66667%;
  }

  /* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-push-9 {
    left: 75%;
  }

  /* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-push-10 {
    left: 83.33333%;
  }

  /* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-push-11 {
    left: 91.66667%;
  }

  /* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-push-12 {
    left: 100%;
  }

  /* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-offset-0 {
    margin-left: 0%;
  }

  /* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-offset-1 {
    margin-left: 8.33333%;
  }

  /* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-offset-2 {
    margin-left: 16.66667%;
  }

  /* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-offset-3 {
    margin-left: 25%;
  }

  /* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-offset-4 {
    margin-left: 33.33333%;
  }

  /* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-offset-5 {
    margin-left: 41.66667%;
  }

  /* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-offset-6 {
    margin-left: 50%;
  }

  /* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-offset-7 {
    margin-left: 58.33333%;
  }

  /* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-offset-8 {
    margin-left: 66.66667%;
  }

  /* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-offset-9 {
    margin-left: 75%;
  }

  /* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-offset-10 {
    margin-left: 83.33333%;
  }

  /* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-offset-11 {
    margin-left: 91.66667%;
  }

  /* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-offset-12 {
    margin-left: 100%;
  }
}

@media (min-width: 1320px) {

  /* line 27, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-xl-1,
  .col-xl-2,
  .col-xl-3,
  .col-xl-4,
  .col-xl-5,
  .col-xl-6,
  .col-xl-7,
  .col-xl-8,
  .col-xl-9,
  .col-xl-10,
  .col-xl-11,
  .col-xl-12 {
    float: left;
  }

  /* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-xl-1 {
    width: 8.33333%;
  }

  /* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-xl-2 {
    width: 16.66667%;
  }

  /* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-xl-3 {
    width: 25%;
  }

  /* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-xl-4 {
    width: 33.33333%;
  }

  /* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-xl-5 {
    width: 41.66667%;
  }

  /* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-xl-6 {
    width: 50%;
  }

  /* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-xl-7 {
    width: 58.33333%;
  }

  /* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-xl-8 {
    width: 66.66667%;
  }

  /* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-xl-9 {
    width: 75%;
  }

  /* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-xl-10 {
    width: 83.33333%;
  }

  /* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-xl-11 {
    width: 91.66667%;
  }

  /* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-xl-12 {
    width: 100%;
  }

  /* line 55, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-xl-pull-0 {
    right: auto;
  }

  /* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-xl-pull-1 {
    right: 8.33333%;
  }

  /* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-xl-pull-2 {
    right: 16.66667%;
  }

  /* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-xl-pull-3 {
    right: 25%;
  }

  /* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-xl-pull-4 {
    right: 33.33333%;
  }

  /* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-xl-pull-5 {
    right: 41.66667%;
  }

  /* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-xl-pull-6 {
    right: 50%;
  }

  /* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-xl-pull-7 {
    right: 58.33333%;
  }

  /* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-xl-pull-8 {
    right: 66.66667%;
  }

  /* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-xl-pull-9 {
    right: 75%;
  }

  /* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-xl-pull-10 {
    right: 83.33333%;
  }

  /* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-xl-pull-11 {
    right: 91.66667%;
  }

  /* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-xl-pull-12 {
    right: 100%;
  }

  /* line 45, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-xl-push-0 {
    left: auto;
  }

  /* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-xl-push-1 {
    left: 8.33333%;
  }

  /* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-xl-push-2 {
    left: 16.66667%;
  }

  /* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-xl-push-3 {
    left: 25%;
  }

  /* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-xl-push-4 {
    left: 33.33333%;
  }

  /* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-xl-push-5 {
    left: 41.66667%;
  }

  /* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-xl-push-6 {
    left: 50%;
  }

  /* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-xl-push-7 {
    left: 58.33333%;
  }

  /* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-xl-push-8 {
    left: 66.66667%;
  }

  /* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-xl-push-9 {
    left: 75%;
  }

  /* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-xl-push-10 {
    left: 83.33333%;
  }

  /* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-xl-push-11 {
    left: 91.66667%;
  }

  /* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-xl-push-12 {
    left: 100%;
  }

  /* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-xl-offset-0 {
    margin-left: 0%;
  }

  /* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-xl-offset-1 {
    margin-left: 8.33333%;
  }

  /* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-xl-offset-2 {
    margin-left: 16.66667%;
  }

  /* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-xl-offset-3 {
    margin-left: 25%;
  }

  /* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-xl-offset-4 {
    margin-left: 33.33333%;
  }

  /* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-xl-offset-5 {
    margin-left: 41.66667%;
  }

  /* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-xl-offset-6 {
    margin-left: 50%;
  }

  /* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-xl-offset-7 {
    margin-left: 58.33333%;
  }

  /* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-xl-offset-8 {
    margin-left: 66.66667%;
  }

  /* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-xl-offset-9 {
    margin-left: 75%;
  }

  /* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-xl-offset-10 {
    margin-left: 83.33333%;
  }

  /* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-xl-offset-11 {
    margin-left: 91.66667%;
  }

  /* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-xl-offset-12 {
    margin-left: 100%;
  }
}

/* line 11, bootstrap/bootstrap/_alerts.scss */
.alert {
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 4px;
}

/* line 18, bootstrap/bootstrap/_alerts.scss */
.alert h4 {
  margin-top: 0;
  color: inherit;
}

/* line 25, bootstrap/bootstrap/_alerts.scss */
.alert .alert-link {
  font-weight: bold;
}

/* line 30, bootstrap/bootstrap/_alerts.scss */
.alert>p,
.alert>ul {
  margin-bottom: 0;
}

/* line 35, bootstrap/bootstrap/_alerts.scss */
.alert>p+p {
  margin-top: 5px;
}

/* line 44, bootstrap/bootstrap/_alerts.scss */
.alert-dismissable,
.alert-dismissible {
  padding-right: 35px;
}

/* line 49, bootstrap/bootstrap/_alerts.scss */
.alert-dismissable .close,
.alert-dismissible .close {
  position: relative;
  top: -2px;
  right: -21px;
  color: inherit;
}

/* line 61, bootstrap/bootstrap/_alerts.scss */
.alert-success {
  background-color: #dff0d8;
  border-color: #d6e9c6;
  color: #3c763d;
}

/* line 8, bootstrap/bootstrap/mixins/_alerts.scss */
.alert-success hr {
  border-top-color: #c9e2b3;
}

/* line 11, bootstrap/bootstrap/mixins/_alerts.scss */
.alert-success .alert-link {
  color: #2b542c;
}

/* line 65, bootstrap/bootstrap/_alerts.scss */
.alert-info {
  background-color: #d9edf7;
  border-color: #bce8f1;
  color: #31708f;
}

/* line 8, bootstrap/bootstrap/mixins/_alerts.scss */
.alert-info hr {
  border-top-color: #a6e1ec;
}

/* line 11, bootstrap/bootstrap/mixins/_alerts.scss */
.alert-info .alert-link {
  color: #245269;
}

/* line 69, bootstrap/bootstrap/_alerts.scss */
.alert-warning {
  background-color: #fcf8e3;
  border-color: #faebcc;
  color: #8a6d3b;
}

/* line 8, bootstrap/bootstrap/mixins/_alerts.scss */
.alert-warning hr {
  border-top-color: #f7e1b5;
}

/* line 11, bootstrap/bootstrap/mixins/_alerts.scss */
.alert-warning .alert-link {
  color: #66512c;
}

/* line 73, bootstrap/bootstrap/_alerts.scss */
.alert-danger {
  background-color: #f2dede;
  border-color: #ebccd1;
  color: #a94442;
}

/* line 8, bootstrap/bootstrap/mixins/_alerts.scss */
.alert-danger hr {
  border-top-color: #e4b9c0;
}

/* line 11, bootstrap/bootstrap/mixins/_alerts.scss */
.alert-danger .alert-link {
  color: #843534;
}

/* line 14, bootstrap/bootstrap/mixins/_clearfix.scss */
.clearfix:before,
.clearfix:after {
  content: " ";
  display: table;
}

/* line 19, bootstrap/bootstrap/mixins/_clearfix.scss */
.clearfix:after {
  clear: both;
}

/* line 12, bootstrap/bootstrap/_utilities.scss */
.center-block {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* line 15, bootstrap/bootstrap/_utilities.scss */
.pull-right {
  float: right !important;
}

/* line 18, bootstrap/bootstrap/_utilities.scss */
.pull-left {
  float: left !important;
}

/* line 27, bootstrap/bootstrap/_utilities.scss */
.hide {
  display: none !important;
}

/* line 30, bootstrap/bootstrap/_utilities.scss */
.show {
  display: block !important;
}

/* line 33, bootstrap/bootstrap/_utilities.scss */
.invisible {
  visibility: hidden;
}

/* line 36, bootstrap/bootstrap/_utilities.scss */
.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

/* line 45, bootstrap/bootstrap/_utilities.scss */
.hidden {
  display: none !important;
}

/* line 53, bootstrap/bootstrap/_utilities.scss */
.affix {
  position: fixed;
}

@-ms-viewport {
  width: device-width;
}

/* line 18, bootstrap/bootstrap/mixins/_responsive-visibility.scss */
.visible-xs {
  display: none !important;
}

/* line 18, bootstrap/bootstrap/mixins/_responsive-visibility.scss */
.visible-sm {
  display: none !important;
}

/* line 18, bootstrap/bootstrap/mixins/_responsive-visibility.scss */
.visible-md {
  display: none !important;
}

/* line 18, bootstrap/bootstrap/mixins/_responsive-visibility.scss */
.visible-lg {
  display: none !important;
}

/* line 18, bootstrap/bootstrap/mixins/_responsive-visibility.scss */
.visible-xl {
  display: none !important;
}

/* line 37, bootstrap/bootstrap/_responsive-utilities.scss */
.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block,
.visible-xl-block,
.visible-xl-inline,
.visible-xl-inline-block {
  display: none !important;
}

@media (max-width: 767px) {

  /* line 7, bootstrap/bootstrap/mixins/_responsive-visibility.scss */
  .visible-xs {
    display: block !important;
  }

  /* line 10, bootstrap/bootstrap/mixins/_responsive-visibility.scss */
  table.visible-xs {
    display: table !important;
  }

  /* line 11, bootstrap/bootstrap/mixins/_responsive-visibility.scss */
  tr.visible-xs {
    display: table-row !important;
  }

  /* line 12, bootstrap/bootstrap/mixins/_responsive-visibility.scss */
  th.visible-xs,
  td.visible-xs {
    display: table-cell !important;
  }
}

@media (max-width: 767px) {

  /* line 58, bootstrap/bootstrap/_responsive-utilities.scss */
  .visible-xs-block {
    display: block !important;
  }
}

@media (max-width: 767px) {

  /* line 63, bootstrap/bootstrap/_responsive-utilities.scss */
  .visible-xs-inline {
    display: inline !important;
  }
}

@media (max-width: 767px) {

  /* line 68, bootstrap/bootstrap/_responsive-utilities.scss */
  .visible-xs-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {

  /* line 7, bootstrap/bootstrap/mixins/_responsive-visibility.scss */
  .visible-sm {
    display: block !important;
  }

  /* line 10, bootstrap/bootstrap/mixins/_responsive-visibility.scss */
  table.visible-sm {
    display: table !important;
  }

  /* line 11, bootstrap/bootstrap/mixins/_responsive-visibility.scss */
  tr.visible-sm {
    display: table-row !important;
  }

  /* line 12, bootstrap/bootstrap/mixins/_responsive-visibility.scss */
  th.visible-sm,
  td.visible-sm {
    display: table-cell !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {

  /* line 77, bootstrap/bootstrap/_responsive-utilities.scss */
  .visible-sm-block {
    display: block !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {

  /* line 82, bootstrap/bootstrap/_responsive-utilities.scss */
  .visible-sm-inline {
    display: inline !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {

  /* line 87, bootstrap/bootstrap/_responsive-utilities.scss */
  .visible-sm-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 992px) and (max-width: 1099px) {

  /* line 7, bootstrap/bootstrap/mixins/_responsive-visibility.scss */
  .visible-md {
    display: block !important;
  }

  /* line 10, bootstrap/bootstrap/mixins/_responsive-visibility.scss */
  table.visible-md {
    display: table !important;
  }

  /* line 11, bootstrap/bootstrap/mixins/_responsive-visibility.scss */
  tr.visible-md {
    display: table-row !important;
  }

  /* line 12, bootstrap/bootstrap/mixins/_responsive-visibility.scss */
  th.visible-md,
  td.visible-md {
    display: table-cell !important;
  }
}

@media (min-width: 992px) and (max-width: 1099px) {

  /* line 96, bootstrap/bootstrap/_responsive-utilities.scss */
  .visible-md-block {
    display: block !important;
  }
}

@media (min-width: 992px) and (max-width: 1099px) {

  /* line 101, bootstrap/bootstrap/_responsive-utilities.scss */
  .visible-md-inline {
    display: inline !important;
  }
}

@media (min-width: 992px) and (max-width: 1099px) {

  /* line 106, bootstrap/bootstrap/_responsive-utilities.scss */
  .visible-md-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 1100px) {

  /* line 7, bootstrap/bootstrap/mixins/_responsive-visibility.scss */
  .visible-lg {
    display: block !important;
  }

  /* line 10, bootstrap/bootstrap/mixins/_responsive-visibility.scss */
  table.visible-lg {
    display: table !important;
  }

  /* line 11, bootstrap/bootstrap/mixins/_responsive-visibility.scss */
  tr.visible-lg {
    display: table-row !important;
  }

  /* line 12, bootstrap/bootstrap/mixins/_responsive-visibility.scss */
  th.visible-lg,
  td.visible-lg {
    display: table-cell !important;
  }
}

@media (min-width: 1100px) {

  /* line 115, bootstrap/bootstrap/_responsive-utilities.scss */
  .visible-lg-block {
    display: block !important;
  }
}

@media (min-width: 1100px) {

  /* line 120, bootstrap/bootstrap/_responsive-utilities.scss */
  .visible-lg-inline {
    display: inline !important;
  }
}

@media (min-width: 1100px) {

  /* line 125, bootstrap/bootstrap/_responsive-utilities.scss */
  .visible-lg-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 1320px) {

  /* line 7, bootstrap/bootstrap/mixins/_responsive-visibility.scss */
  .visible-xl {
    display: block !important;
  }

  /* line 10, bootstrap/bootstrap/mixins/_responsive-visibility.scss */
  table.visible-xl {
    display: table !important;
  }

  /* line 11, bootstrap/bootstrap/mixins/_responsive-visibility.scss */
  tr.visible-xl {
    display: table-row !important;
  }

  /* line 12, bootstrap/bootstrap/mixins/_responsive-visibility.scss */
  th.visible-xl,
  td.visible-xl {
    display: table-cell !important;
  }
}

@media (min-width: 1320px) {

  /* line 134, bootstrap/bootstrap/_responsive-utilities.scss */
  .visible-xl-block {
    display: block !important;
  }
}

@media (min-width: 1320px) {

  /* line 139, bootstrap/bootstrap/_responsive-utilities.scss */
  .visible-xl-inline {
    display: inline !important;
  }
}

@media (min-width: 1320px) {

  /* line 144, bootstrap/bootstrap/_responsive-utilities.scss */
  .visible-xl-inline-block {
    display: inline-block !important;
  }
}

@media (max-width: 767px) {

  /* line 18, bootstrap/bootstrap/mixins/_responsive-visibility.scss */
  .hidden-xs {
    display: none !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {

  /* line 18, bootstrap/bootstrap/mixins/_responsive-visibility.scss */
  .hidden-sm {
    display: none !important;
  }
}

@media (min-width: 992px) and (max-width: 1099px) {

  /* line 18, bootstrap/bootstrap/mixins/_responsive-visibility.scss */
  .hidden-md {
    display: none !important;
  }
}

@media (min-width: 1100px) {

  /* line 18, bootstrap/bootstrap/mixins/_responsive-visibility.scss */
  .hidden-lg {
    display: none !important;
  }
}

@media (min-width: 1320px) {

  /* line 18, bootstrap/bootstrap/mixins/_responsive-visibility.scss */
  .hidden-xl {
    display: none !important;
  }
}

/* line 18, bootstrap/bootstrap/mixins/_responsive-visibility.scss */
.visible-print {
  display: none !important;
}

@media print {

  /* line 7, bootstrap/bootstrap/mixins/_responsive-visibility.scss */
  .visible-print {
    display: block !important;
  }

  /* line 10, bootstrap/bootstrap/mixins/_responsive-visibility.scss */
  table.visible-print {
    display: table !important;
  }

  /* line 11, bootstrap/bootstrap/mixins/_responsive-visibility.scss */
  tr.visible-print {
    display: table-row !important;
  }

  /* line 12, bootstrap/bootstrap/mixins/_responsive-visibility.scss */
  th.visible-print,
  td.visible-print {
    display: table-cell !important;
  }
}

/* line 182, bootstrap/bootstrap/_responsive-utilities.scss */
.visible-print-block {
  display: none !important;
}

@media print {

  /* line 182, bootstrap/bootstrap/_responsive-utilities.scss */
  .visible-print-block {
    display: block !important;
  }
}

/* line 189, bootstrap/bootstrap/_responsive-utilities.scss */
.visible-print-inline {
  display: none !important;
}

@media print {

  /* line 189, bootstrap/bootstrap/_responsive-utilities.scss */
  .visible-print-inline {
    display: inline !important;
  }
}

/* line 196, bootstrap/bootstrap/_responsive-utilities.scss */
.visible-print-inline-block {
  display: none !important;
}

@media print {

  /* line 196, bootstrap/bootstrap/_responsive-utilities.scss */
  .visible-print-inline-block {
    display: inline-block !important;
  }
}

@media print {

  /* line 18, bootstrap/bootstrap/mixins/_responsive-visibility.scss */
  .hidden-print {
    display: none !important;
  }
}

@font-face {
  font-family: 'icomoon';
  src: url("../fonts/icomoon.eot?utw9sy");
  src: url("../fonts/icomoon.eot?utw9sy#iefix") format("embedded-opentype"), url("../fonts/icomoon.ttf?utw9sy") format("truetype"), url("../fonts/icomoon.woff?utw9sy") format("woff"), url("../fonts/icomoon.svg?utw9sy#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
}

/* define a new css font */
/* line 18, base/_icons.scss */
[class^="icon-"]:before,
[class*=" icon-"]:before {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* line 39, base/_icons.scss */
.icon-example:before {
  content: "";
}

/* line 43, base/_icons.scss */
.icon-areaAeronautica:before {
  content: "\e900";
}

/* line 46, base/_icons.scss */
.icon-areaAlimentar:before {
  content: "\e901";
}

/* line 49, base/_icons.scss */
.icon-areaCelulose:before {
  content: "\e902";
}

/* line 52, base/_icons.scss */
.icon-areaFarmacia:before {
  content: "\e903";
}

/* line 55, base/_icons.scss */
.icon-areaNuclear:before {
  content: "\e904";
}

/* line 58, base/_icons.scss */
.icon-areaQuimica:before {
  content: "\e905";
}

/* line 61, base/_icons.scss */
.icon-areaTratamento:before {
  content: "\e906";
}

/* line 64, base/_icons.scss */
.icon-btnArrow:before {
  content: "\e907";
}

/* line 67, base/_icons.scss */
.icon-icoCertificacao:before {
  content: "\e908";
}

/* line 70, base/_icons.scss */
.icon-icoContact:before {
  content: "\e909";
}

/* line 73, base/_icons.scss */
.icon-icoMorada:before {
  content: "\e90a";
}

/* line 76, base/_icons.scss */
.icon-loba:before {
  content: "\e933";
}

/* line 79, base/_icons.scss */
.icon-menuHamburger:before {
  content: "\e934";
}

/* line 82, base/_icons.scss */
.icon-menuTopArrow:before {
  content: "\e935";
  color: #f28c2b;
}

/* line 86, base/_icons.scss */
.icon-norte2020:before {
  content: "\e936";
  color: #fff;
}

/* line 90, base/_icons.scss */
.icon-pdf:before {
  content: "\e937";
}

/* line 93, base/_icons.scss */
.icon-sliderArrow:before {
  content: "\e938";
}

/* INICIO - Font: Gotham-Bold - Gerado automaticamente :D*/
@font-face {
  font-family: 'Gotham-Bold';
  src: url("../fonts/gotham-bold.eot");
  src: url("../fonts/gotham-bold.eot#iefix") format("embedded-opentype"), url("../fonts/gotham-bold.ttf") format("truetype"), url("../fonts/gotham-bold.woff") format("woff"), url("../fonts/gotham-bold.woff2") format("woff2"), url("../fonts/gotham-bold.svg#gotham-bold") format("svg");
  font-weight: normal;
  font-style: normal;
}

/* FIM - Font: Gotham-Bold - Gerado automaticamente :D*/
@font-face {
  font-family: 'Gotham-Medium';
  src: url("../fonts/Gotham-Medium_gdi.eot");
  src: url("../fonts/Gotham-Medium_gdi.eot?#iefix") format("embedded-opentype"), url("../fonts/Gotham-Medium_gdi.woff") format("woff"), url("../fonts/Gotham-Medium_gdi.ttf") format("truetype"), url("../fonts/Gotham-Medium_gdi.svg#Gotham-Medium") format("svg");
  font-weight: 350;
  font-style: normal;
  font-stretch: normal;
  unicode-range: U+0020-2212;
}

@font-face {
  font-family: 'Gotham-Regular';
  src: url("../fonts/Gotham-Regular.eot");
  src: url("../fonts/Gotham-Regular.woff") format("woff"), url("../fonts/Gotham-Regular.ttf") format("truetype"), url("../fonts/Gotham-Regular.svg") format("svg");
  font-weight: normal;
  font-style: normal;
}

/* line 2, base/_fonts.scss */
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  color: #707070;
  font-family: "Gotham-Bold", Arial, sans-serif;
}

/* line 58, base/_fonts.scss */
.h1_desktop_size {
  font-size: 45px;
}

@media (max-width: 991px) {

  /* line 58, base/_fonts.scss */
  .h1_desktop_size {
    font-size: 35px;
  }
}

/* line 64, base/_fonts.scss */
.h1_color {
  color: #f0f0f0;
}

/* line 67, base/_fonts.scss */
.h_bold {
  font-weight: bold;
}

/* line 70, base/_fonts.scss */
.h_color_dark {
  color: #56585A;
}

/* line 73, base/_fonts.scss */
.h2_color {
  color: #56585A;
}

/* line 76, base/_fonts.scss */
.h2_desktop_size {
  font-size: 35px;
}

/* line 79, base/_fonts.scss */
.h2_mobile_size {
  font-size: 13px;
}

/* line 82, base/_fonts.scss */
.h3_desktop_size {
  font-size: 25px;
}

@media (max-width: 991px) {

  /* line 82, base/_fonts.scss */
  .h3_desktop_size {
    font-size: 16px;
  }
}

/* line 88, base/_fonts.scss */
.h3_bold {
  font-weight: bold;
}

/* line 92, base/_fonts.scss */
.h3_color {
  color: #56585a;
}

/* line 95, base/_fonts.scss */
.h3_no-margin {
  margin-top: 0;
}

/* line 98, base/_fonts.scss */
.breadcrumbs {
  color: #f78d29;
  font-size: 13px;
  font-weight: bold;
  font-family: "Gotham-Bold", Arial, sans-serif;
}

@media (max-width: 767px) {

  /* line 98, base/_fonts.scss */
  .breadcrumbs {
    font-size: 11px;
  }
}

/* line 107, base/_fonts.scss */
.breadcrumbs_large {
  font-size: 15px;
}

/* line 110, base/_fonts.scss */
.paragraph {
  font-size: 15px;
  color: #707070;
  font-family: 'Open-Sans', sans-serif;
}

/* line 114, base/_fonts.scss */
.paragraph_bold {
  font-weight: bold;
}

@media (max-width: 991px) {

  /* line 117, base/_fonts.scss */
  h3 {
    font-size: 16px;
  }
}

/* line 123, base/_fonts.scss */
.h3__decoration {
  /* position: absolute; */
  position: relative;
  ;
  width: -moz-fit-content;
  text-transform: uppercase;
  letter-spacing: 4px;
}

.h3__decoration_rel {
  position: relative;
  width: -moz-fit-content;
  text-transform: uppercase;
  letter-spacing: 4px;
}

.timeline .h3__decoration {
  margin-top: 65px;
}

@media (max-width: 991px) {

  /* line 123, base/_fonts.scss */
  .h3__decoration {
    margin: auto;
    position: relative;
    text-align: center;
  }

  .h3__decoration_rel {
    letter-spacing: 1px;
    margin: 0 auto;
  }
}

/* line 134, base/_fonts.scss */
.h3__decoration::before {
  content: "";
  width: 2px;
  height: 23px;
  background-color: #f78d29;
  display: block;
  position: absolute;
  left: 50%;
  top: -25px;
  -webkit-transform: rotate(28deg);
  transform: rotate(28deg);
}

/* line 145, base/_fonts.scss */
.h3__decoration::after {
  content: "";
  width: 2px;
  height: 23px;
  background-color: #f78d29;
  display: block;
  position: absolute;
  left: 50%;
  margin-left: -30px;
  bottom: -25px;
  -webkit-transform: rotate(28deg);
  transform: rotate(28deg);
}

.h3__decoration_rel::before {
  content: "";
  width: 2px;
  height: 23px;
  background-color: #f78d29;
  display: block;
  position: absolute;
  left: 50%;
  top: -25px;
  -webkit-transform: rotate(28deg);
  transform: rotate(28deg);
}

/* line 145, base/_fonts.scss */
.h3__decoration_rel::after {
  content: "";
  width: 2px;
  height: 23px;
  background-color: #f78d29;
  display: block;
  position: absolute;
  left: 50%;
  margin-left: -30px;
  bottom: -25px;
  -webkit-transform: rotate(28deg);
  transform: rotate(28deg);
}

/* line 159, base/_fonts.scss */
.h3__one-line-decoration {
  position: relative;
}

@media (max-width: 991px) {

  /* line 159, base/_fonts.scss */
  .h3__one-line-decoration {
    line-height: 20px !important;
  }
}

/* line 164, base/_fonts.scss */
.h3__one-line-decoration::after {
  content: "";
  width: 30px;
  height: 3px;
  background: #f78d29;
  display: block;
  margin-top: 10px;
}

/* line 1, base/_base.scss */
body {
  font-family: "Gotham-Regular", Arial, sans-serif;
  font-size: 15px;
  line-height: 22px;
  overflow-x: hidden;
}

/* line 24, base/_base.scss */
body.in-modal {
  overflow: hidden;
}

/* line 30, base/_base.scss */
.icon-loba:hover {
  color: #fff;
}

/* line 34, base/_base.scss */
.no-padding-right {
  padding-right: 0;
}

/* line 37, base/_base.scss */
.center {
  position: absolute;
  top: -5px;
}

@media (max-width: 991px) {

  /* line 37, base/_base.scss */
  .center {
    position: initial;
  }
}

@media (min-width: 992px) and (max-width: 1300px) {

  /* line 37, base/_base.scss */
  .center {
    top: -65px;
  }
}

/* line 47, base/_base.scss */
.relative {
  position: relative;
}

/* line 50, base/_base.scss */
.lh_40 {
  line-height: 40px;
}

@media (max-width: 991px) {

  /* line 50, base/_base.scss */
  .lh_40 {
    line-height: 0;
  }
}

/* line 56, base/_base.scss */
.mt5 {
  margin-top: 5px;
}

/* line 59, base/_base.scss */
.auto {
  margin: auto;
  width: fit-content;
  display: table;
}

/* line 62, base/_base.scss */
.background_gray {
  background-color: #f0f0f0;
}

/* line 65, base/_base.scss */
.ml_negative {
  margin-left: -10px;
}

/* line 3, base/_inputs.scss */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="phone"],
textarea {
  display: block;
  width: 100%;
  height: 40px;
  padding: 6px 20px;
  border: none;
  background-color: #f0f0f0;
  font-size: 14px;
}

/* line 24, base/_inputs.scss */
input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="number"]:focus,
input[type="phone"]:focus,
textarea:focus {
  -webkit-box-shadow: 0 2px 7px #ccc;
  box-shadow: 0 2px 7px #ccc;
  border-color: #f78d29;
  outline: none;
}

/* line 36, base/_inputs.scss */
input[type="number"] {
  -moz-appearance: textfield;
}

/* line 40, base/_inputs.scss */
textarea {
  max-width: 100%;
  min-height: 100px;
}

/* line 47, base/_inputs.scss */
select {
  display: block;
  width: 100%;
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857;
  color: #666;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
}

/* line 111, base/_inputs.scss */
input[type="checkbox"] {
  display: block;
  width: 23px;
  height: 23px;
  position: relative;
  margin-top: 0 !important;
  float: left;
  z-index: 10;
  opacity: 0;
  vertical-align: middle;
}

/* line 116, base/_inputs.scss */
input[type="checkbox"][disabled]+label.form-check-label,
input[type="checkbox"][disabled]+label+label.form-check-label {
  opacity: 0.5;
  cursor: not-allowed;
}

/* line 126, base/_inputs.scss */
input[type="checkbox"]:checked+label.form-check-label:after,
input[type="checkbox"]:checked+label+label.form-check-label:after {
  border-color: #f78d29;
}

/* line 133, base/_inputs.scss */
input[type="checkbox"]:focus+label.form-check-label:before,
input[type="checkbox"]:focus+label+label.form-check-label:before {
  -webkit-box-shadow: 0;
  box-shadow: 0;
}

/* line 139, base/_inputs.scss */
input[type="checkbox"]+label.form-check-label,
input[type="checkbox"]+label+label.form-check-label {
  padding-left: 33px;
  position: relative;
  margin-left: -23px;
  float: left;
  cursor: pointer;
  font-size: 14px;
  font-weight: normal;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* line 143, base/_inputs.scss */
input[type="checkbox"]+label.form-check-label:before,
input[type="checkbox"]+label+label.form-check-label:before {
  content: '';
  width: 23px;
  height: 23px;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #f0f0f0;
}

/* line 147, base/_inputs.scss */
input[type="checkbox"]+label.form-check-label:after,
input[type="checkbox"]+label+label.form-check-label:after {
  content: '';
  width: 11px;
  height: 7px;
  position: absolute;
  top: 7px;
  left: 6px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  border-radius: 0 0 0 2px;
  border-bottom: 3px solid transparent;
  border-left: 3px solid transparent;
}

/* line 165, base/_inputs.scss */
input[type="radio"] {
  display: block;
  width: 23px;
  height: 23px;
  position: relative;
  margin-top: 0 !important;
  float: left;
  z-index: 10;
  opacity: 0;
  vertical-align: middle;
}

/* line 170, base/_inputs.scss */
input[type="radio"][disabled]+label.form-check-label,
input[type="radio"][disabled]+label+label.form-check-label {
  opacity: 0.5;
  cursor: not-allowed;
}

/* line 177, base/_inputs.scss */
input[type="radio"]:checked+label.form-check-label,
input[type="radio"]:checked+label+label.form-check-label {
  position: relative;
}

/* line 181, base/_inputs.scss */
input[type="radio"]:checked+label.form-check-label:after,
input[type="radio"]:checked+label+label.form-check-label:after {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  position: absolute;
  top: 6px;
  left: 6px;
  border-radius: 50%;
  background-color: #f78d29;
}

/* line 196, base/_inputs.scss */
input[type="radio"]:focus+label.form-check-label:before,
input[type="radio"]:focus+label+label.form-check-label:before {
  -webkit-box-shadow: 0;
  box-shadow: 0;
}

/* line 202, base/_inputs.scss */
input[type="radio"]+label.form-check-label,
input[type="radio"]+label+label.form-check-label {
  padding-left: 33px;
  position: relative;
  margin-left: -23px;
  float: left;
  cursor: pointer;
  font-size: 14px;
  font-weight: normal;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* line 206, base/_inputs.scss */
input[type="radio"]+label.form-check-label:before,
input[type="radio"]+label+label.form-check-label:before {
  content: '';
  width: 23px;
  height: 23px;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #f0f0f0;
  border-radius: 50%;
}

/*the container must be positioned relative:*/
/* line 2, base/select.scss */
.custom-select {
  position: relative;
  font-size: 14px;
  /* Let's get this party started */
  /* Track */
  /* Handle */
}

/* line 6, base/select.scss */
.custom-select select {
  display: block;
  /*hide original SELECT element:*/
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  opacity: 0;
  z-index: -1;
}

/* line 16, base/select.scss */
.custom-select select.custom-select__mobile {
  z-index: 99;
}

/* line 22, base/select.scss */
.custom-select ::-webkit-scrollbar {
  width: 10px;
}

/* line 27, base/select.scss */
.custom-select ::-webkit-scrollbar-track {
  border-left: 1px solid #eee;
  background: rgba(0, 0, 0, 0.05);
}

/* line 33, base/select.scss */
.custom-select ::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.25);
}

/* line 36, base/select.scss */
.custom-select ::-webkit-scrollbar-thumb:window-inactive {
  background: rgba(0, 0, 0, 0.25);
}

/* line 41, base/select.scss */
.select-selected {
  height: 34px;
  padding: 0 14px;
  border-radius: 3px;
  border: 1px solid #ddd;
  position: relative;
  background-color: white;
  line-height: 34px;
  color: #3f4041;
  cursor: pointer;
  vertical-align: middle;
  /*style the arrow inside the select element:*/
  /*point the arrow upwards when the select box is open (active):*/
}

/* line 54, base/select.scss */
.select-selected:after {
  content: '';
  width: 0;
  height: 0;
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translate(0, -2px);
  transform: translate(0, -2px);
  border: 4px solid transparent;
  border-color: #7c7c7c transparent transparent transparent;
}

/* line 67, base/select.scss */
.select-selected.select-arrow-active {
  border-radius: 3px 3px 0 0;
}

/* line 70, base/select.scss */
.select-selected.select-arrow-active:after {
  border-color: transparent transparent #7c7c7c transparent;
  -webkit-transform: translate(0, -6px);
  transform: translate(0, -6px);
}

/*style the items (options), including the selected item:*/
/* line 79, base/select.scss */
.select-items div {
  height: 34px;
  padding: 0 14px;
  border: 1px solid transparent;
  border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
  color: #ffffff;
  line-height: 34px;
  cursor: pointer;
  vertical-align: middle;
}

/*style items (options):*/
/* line 91, base/select.scss */
.select-items {
  max-height: 250px;
  position: absolute;
  top: 34px;
  left: 0;
  right: 0;
  z-index: 99;
  overflow: auto;
  margin-top: -1px;
  border-radius: 0 0 3px 3px;
  border: 1px solid #ddd;
  background-color: white;
}

/*hide the items when the select box is closed:*/
/* line 106, base/select.scss */
.select-hide {
  display: none;
}

/* line 110, base/select.scss */
.select-items div {
  background-color: white;
  color: #3f4041;
}

/* line 114, base/select.scss */
.select-items div:last-child {
  border-bottom: none;
}

/* line 118, base/select.scss */
.select-items div:hover {
  background-color: #f78d29;
  color: white;
}

/* line 1, base/_file.scss */
.custom-file {
  position: relative;
}

/* line 4, base/_file.scss */
.custom-file input {
  width: 1px;
  height: 1px;
  position: absolute;
  opacity: 0;
  visibility: hidden;
}

/* line 13, base/_file.scss */
.custom-file__mask {
  display: block;
  height: 34px;
  padding: 0 10px;
  border-radius: 3px;
  border: 1px solid #ddd;
  background-color: white;
  color: #3f4041;
  cursor: pointer;
  font-size: 14px;
  font-weight: normal;
  line-height: 34px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

/* line 27, base/_file.scss */
.custom-file__mask:hover,
.custom-file__mask:focus,
.custom-file__mask:active {
  background-color: #ddd;
}

/* line 1, base/_forms.scss */
input[type="text"]:disabled,
input[type="number"]:disabled,
input[type="email"]:disabled,
input[type="phone"]:disabled,
input[type="radio"]:disabled,
input[type="checkbox"]:disabled {
  cursor: not-allowed;
}

/* line 10, base/_forms.scss */
.form-group {
  position: relative;
  margin-bottom: 15px;
  font-size: 13px;
}

/* line 14, base/_forms.scss */
.form-group:after {
  content: '';
  display: block;
  width: 100%;
  clear: both;
}

/* line 22, base/_forms.scss */
label {
  display: inline-block;
  max-width: 100%;
  color: #707070;
  font-weight: bold;
}

/* line 31, base/_forms.scss */
label.error {
  margin: 5px 0 0 0;
  color: #ba0d0d;
  font-size: 11px;
  font-family: 'Gotham-Medium', sans-serif;
}

.form-group.info-accept label.error {
  color: #ba0d0d;
}

/* line 36, base/_forms.scss */
label.error+label {
  margin-bottom: 20px;
}

/* line 44, base/_forms.scss */
input[type="checkbox"].valid+label.error+label,
input[type="radio"].valid+label.error+label {
  margin-bottom: 0;
}

/* line 54, base/_forms.scss */
input[type="checkbox"]+label.error,
input[type="radio"]+label.error {
  position: absolute;
  bottom: 0;
  left: 33px;
  margin: 0;
  font-size: 12px;
}

/* line 1, base/_warnings.scss */
.warnings {
  font-size: 14px;
}

@media (max-width: 991px) {

  /* line 1, base/_warnings.scss */
  .warnings {
    font-size: 12px;
  }
}

/* line 11, base/_warnings.scss */
.warnings.warnings--show p {
  display: block !important;
}

/* line 18, base/_warnings.scss */
.warnings p {
  display: none;
  padding: 10px 20px;
  border-radius: 3px;
}

/* line 28, base/_warnings.scss */
.warnings p.success {
  border: 1px solid #95db94;
  background-color: rgba(149, 219, 148, 0.6);
  color: white;
}

/* line 40, base/_warnings.scss */
.warnings p.error {
  border: 1px solid #ff4301;
  background-color: rgba(255, 67, 1, 0.6);
  color: white;
}

/* line 5, base/_buttons.scss */
.button:hover .main-button,
.btn-primary:hover .main-button {
  position: relative;
  color: #fff;
}

/* line 9, base/_buttons.scss */
.button:hover .main-button::before,
.btn-primary:hover .main-button::before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

/* line 17, base/_buttons.scss */
.owl-nav {
  position: absolute;
  left: 110px;
  display: inline-block;
  bottom: -10px;
}

/* line 23, base/_buttons.scss */
.owl-prev,
.owl-next {
  width: 44px;
  height: 44px;
  background-color: #f78d29;
  color: #fff;
  font-size: 10px;
  line-height: 44px;
  text-align: center;
  margin-right: 3px;
  border: 1px solid #f78d29;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

/* line 34, base/_buttons.scss */
.owl-prev:hover,
.owl-next:hover {
  background-color: #fff;
}

/* line 36, base/_buttons.scss */
.owl-prev:hover .icon-btnArrow,
.owl-next:hover .icon-btnArrow {
  color: #f78d29;
}

@media (max-width: 991px) {

  /* line 23, base/_buttons.scss */
  .owl-prev,
  .owl-next {
    width: 25px;
    height: 25px;
    line-height: 25px;
  }
}

@media (min-width: 992px) and (max-width: 1500px) {

  /* line 23, base/_buttons.scss */
  .owl-prev,
  .owl-next {
    width: 44px;
    height: 44px;
    line-height: 44px;
  }
}

@media (max-width: 991px) {

  /* line 50, base/_buttons.scss */
  .owl-prev .icon-seta-large,
  .owl-next .icon-seta-large {
    font-size: 4px;
  }
}

@media (min-width: 992px) and (max-width: 1500px) {

  /* line 50, base/_buttons.scss */
  .owl-prev .icon-seta-large,
  .owl-next .icon-seta-large {
    font-size: 7px;
  }
}

/* line 59, base/_buttons.scss */
.owl-prev {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  float: left;
}

@media (max-width: 991px) {

  /* line 59, base/_buttons.scss */
  .owl-prev {
    left: -12.5px;
  }
}

@media (min-width: 992px) and (max-width: 1500px) {

  /* line 59, base/_buttons.scss */
  .owl-prev {
    left: -22px;
  }
}

/* line 69, base/_buttons.scss */
.owl-next {
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg);
  float: left;
}

@media (max-width: 991px) {

  /* line 69, base/_buttons.scss */
  .owl-next {
    right: -9.5px;
  }
}

@media (min-width: 992px) and (max-width: 1500px) {

  /* line 69, base/_buttons.scss */
  .owl-next {
    right: -22px;
  }
}

/* line 80, base/_buttons.scss */
.main-button {
  border-right: 2px solid #f78d29;
  display: inline-block;
  padding: 0 25px;
  margin-right: 15px;
  line-height: 40px;
  text-transform: uppercase;
  font-weight: bold;
  font-family: "Gotham-Bold", Arial, sans-serif;
  position: relative;
}

/* line 90, base/_buttons.scss */
.main-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f78d29;
  z-index: -1;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: -webkit-transform .5s;
  transition: -webkit-transform .5s;
  transition: transform .5s;
  transition: transform .5s, -webkit-transform .5s;
}

/* line 106, base/_buttons.scss */
.main-button_white {
  border-right: 2px solid #fff;
}

/* line 109, base/_buttons.scss */
.btn-primary.btn-primary_white {
  border: 2px solid #fff;
  color: #fff;
}

/* line 115, base/_buttons.scss */
.btn-primary:hover .main-button_white {
  border-right: 2px solid #f78d29;
}

/* line 120, base/_buttons.scss */
.btn {
  display: inline-block;
  padding: 0px 15px 0 0;
  border: none;
  cursor: pointer;
  font-size: 11px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

/* line 134, base/_buttons.scss */
.btn:hover {
  text-decoration: none;
}

/* line 141, base/_buttons.scss */
.btn:focus,
.btn:active {
  text-decoration: none;
}

/* line 147, base/_buttons.scss */
.btn-default {
  border: 1px solid #e9e9e9;
  background-color: transparent;
  color: #3f4041;
}

/* line 154, base/_buttons.scss */
.btn-default:hover,
.btn-default:focus,
.btn-default:active {
  border: 1px solid #e9e9e9;
  background-color: #e9e9e9;
  color: #252524;
}

/* line 165, base/_buttons.scss */
.btn-primary {
  border: 2px solid #f78d29;
  background-color: transparent;
  color: #f78d29;
}

/* line 172, base/_buttons.scss */
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
  border: 2px solid #f78d29;
  background-color: 0;
  color: 0;
}

/* line 183, base/_buttons.scss */
.btn-success {
  background-color: #95db94;
  color: #f78d29;
}

/* line 190, base/_buttons.scss */
.btn-success:hover,
.btn-success:focus,
.btn-success:active {
  background-color: #6bc4ff;
  color: white;
}

/* line 201, base/_buttons.scss */
.btn-xs {
  padding: 1px 15px;
  font-size: 10px;
}

/* line 206, base/_buttons.scss */
.btn-sm {
  padding: 5px 20px;
  font-size: 12px;
}

/* line 211, base/_buttons.scss */
.btn-lg {
  padding: 15px 40px;
  font-size: 18px;
}

/* line 216, base/_buttons.scss */
.btn-xl {
  padding: 25px 50px;
  font-size: 24px;
}

/* line 221, base/_buttons.scss */
.btn-block {
  display: block;
}

/* Barra cookies */
/* line 3, base/_cookies.scss */
.in-modal .cookies-wrapper {
  overflow: auto;
}

/* line 7, base/_cookies.scss */
.cookies-wrapper {
  display: none;
  padding: 20px;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 99999;
  background-color: rgba(0, 0, 0, 0.6);
  font-size: 12px;
}

/* line 19, base/_cookies.scss */
.cookies-wrapper * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* line 23, base/_cookies.scss */
.cookies-wrapper button {
  margin-bottom: 10px;
}

@media (max-width: 767px) {

  /* line 23, base/_cookies.scss */
  .cookies-wrapper button {
    display: block;
    width: 100%;
  }
}

/* line 33, base/_cookies.scss */
.cookies-box {
  max-width: 800px;
  padding: 10px 10px 20px 10px;
  position: relative;
  margin: 0 auto;
  border-radius: 4px;
  background-color: white;
}

@media (min-width: 768px) {

  /* line 33, base/_cookies.scss */
  .cookies-box {
    padding: 20px 20px 40px 20px;
  }
}

/* line 46, base/_cookies.scss */
.cookies__title {
  display: block;
  width: 100%;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 24px;
  font-weight: bold;
  line-height: 30px;
}

/* line 56, base/_cookies.scss */
.cookies-bar-message {
  display: block;
  float: left;
  margin-bottom: 20px;
  color: #3f4041;
  font-size: 1em;
  line-height: 20px;
}

@media (min-width: 768px) {

  /* line 65, base/_cookies.scss */
  .cookies-settings-link {
    text-align: right;
  }
}

/* line 71, base/_cookies.scss */
.cookies-settings {
  display: none;
}

@media (min-width: 768px) {

  /* line 75, base/_cookies.scss */
  .cookies-settings-cancel {
    text-align: right;
  }
}

/* line 81, base/_cookies.scss */
.cookie-info {
  display: block;
  padding-left: 33px;
  line-height: 16px;
}

/* line 87, base/_cookies.scss */
.cookies-policy-link {
  padding: 0 10px;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 0 0 4px 4px;
  background-color: #eee;
  text-align: center;
}

@media (min-width: 768px) {

  /* line 87, base/_cookies.scss */
  .cookies-policy-link {
    padding: 0 30px;
  }
}

/* line 102, base/_cookies.scss */
.cookies-bar-know-more {
  color: #9a9a9a;
  font-size: 0.85em;
  line-height: 30px;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

/* line 108, base/_cookies.scss */
.cookies-bar-know-more:hover {
  color: white;
}

/* line 114, base/_cookies.scss */
.cookies-message p {
  display: none;
}

/* line 118, base/_cookies.scss */
.cookies-message b {
  display: block;
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

@media (max-width: 991px) {

  /* line 127, base/_cookies.scss */
  .cookies-bar-message {
    height: auto;
  }

  /* line 131, base/_cookies.scss */
  .cookies-bar-know-more {
    padding-left: 0;
  }
}

/* Barra cookies END */
/* line 1, modules/_product-gallery.scss */
.box {
  border: 1px solid #f78d29;
}

/* line 4, modules/_product-gallery.scss */
.triangle {
  width: 0;
  height: 0;
  border-bottom: 180px solid #252525;
  border-right: 180px solid transparent;
  margin: 25px auto 0;
  position: absolute;
  bottom: -10px;
  left: 0px;
  z-index: 9;
}

.triangle-decoration-large {
  width: 0;
  height: 0;
  border-bottom: 280px solid #151515;
  border-right: 280px solid transparent;
  /* margin: 25px auto 0; */
  position: absolute;
  bottom: 45px;
  transform: rotate(270deg);
  left: 0px;
  z-index: 1;
}

@media (max-width: 991px) {

  /* line 4, modules/_product-gallery.scss */
  .triangle {
    display: none;
  }

  .triangle-decoration-large {
    display: none;
  }
}

/* line 18, modules/_product-gallery.scss */
.product-type {
  width: 200px;
  height: 200px;
  position: absolute;
  top: 160px;
  left: -100px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 70px;
}

@media (max-width: 991px) {

  /* line 18, modules/_product-gallery.scss */
  .product-type {
    width: 90px;
    height: 90px;
    left: 10px;
    top: -55px;
    padding: 20px 0;
  }
}

@media (min-width: 992px) and (max-width: 1319px) {

  /* line 18, modules/_product-gallery.scss */
  .product-type {
    width: 180px;
    height: 180px;
    padding: 50px;
  }
}

/* Feel free to change duration  */
/* line 2, modules/_owl-animated.scss */
.animated {
  -webkit-animation-duration: 1000 ms;
  animation-duration: 1000 ms;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

/* .owl-animated-out - only for current item */
/* This is very important class. Use z-index if you want move Out item above In item */
/* line 10, modules/_owl-animated.scss */
.owl-animated-out {
  z-index: 1;
}

/* .owl-animated-in - only for upcoming item
/* This is very important class. Use z-index if you want move In item above Out item */
/* line 15, modules/_owl-animated.scss */
.owl-animated-in {
  z-index: 0;
}

/* .fadeOut is style taken from Animation.css and this is how it looks in owl.carousel.css:  */
/* line 19, modules/_owl-animated.scss */
.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

/* line 1, modules/_box-with-borders.scss */
.box-with-borders {
  padding: 110px 0;
}

@media (max-width: 991px) {

  /* line 1, modules/_box-with-borders.scss */
  .box-with-borders {
    padding: 35px 0;
  }
}

/* line 6, modules/_box-with-borders.scss */
.box-with-borders.background_gray {
  background-color: #f0f0f0;
}

/* line 9, modules/_box-with-borders.scss */
.box-with-borders .box-with-borders__h3 {
  margin: -20px auto 80px auto;
  background-color: #fff;
  display: table;
  border-left: 45px solid #fff;
  border-right: 45px solid #fff;
  letter-spacing: 2px;
}

@media (max-width: 991px) {

  /* line 9, modules/_box-with-borders.scss */
  .box-with-borders .box-with-borders__h3 {
    margin: -10px auto 50px auto;
    border-left: 15px solid #fff;
    border-right: 15px solid #fff;
  }
}

/* line 22, modules/_box-with-borders.scss */
.box-with-borders .box-with-borders__h3_var {
  margin: -20px auto 80px auto;
  background-color: #f0f0f0;
  display: table;
  border-left: 45px solid #f0f0f0;
  border-right: 45px solid #f0f0f0;
  letter-spacing: 2px;
}

@media (max-width: 991px) {

  /* line 22, modules/_box-with-borders.scss */
  .box-with-borders .box-with-borders__h3_var {
    margin: -10px auto 40px auto;
    text-align: center;
    border-left: 15px solid #f0f0f0;
    border-right: 15px solid #f0f0f0;
  }
}

/* line 36, modules/_box-with-borders.scss */
.box-with-borders .box-with-borders__h3_left {
  margin: -20px 0 0 -42px;
  background-color: #fff;
  display: table;
  border-right: 45px solid #fff;
  border-bottom: 45px solid #fff;
}

/* line 43, modules/_box-with-borders.scss */
.box-with-borders .box-with-borders__list {
  padding-left: 0;
  list-style-type: none;
  width: 95%;
}

/* line 47, modules/_box-with-borders.scss */
.box-with-borders .box-with-borders__list .box-with-borders__list__item {
  color: #707070;
}

/* line 49, modules/_box-with-borders.scss */
.box-with-borders .box-with-borders__list .box-with-borders__list__item::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 2px;
  background-color: #a9a9a9;
  margin: 0 5px 0 0;
}

/* line 59, modules/_box-with-borders.scss */
.box-with-borders .box-with-borders__container {
  padding-bottom: 85px;
  border: 1px solid #f78d29;
  margin: 30px 0 0 0;
}

@media (max-width: 991px) {

  /* line 59, modules/_box-with-borders.scss */
  .box-with-borders .box-with-borders__container {
    padding-bottom: 30px;
  }
}

/* line 68, modules/_box-with-borders.scss */
.box-with-borders .box-with-borders__container_small {
  border: 2px solid #f78d29;
  padding: 0 40px 50px 40px;
  margin: 30px 0 0 0;
}

@media (max-width: 991px) {

  /* line 68, modules/_box-with-borders.scss */
  .box-with-borders .box-with-borders__container_small {
    padding: 0 10px 40px 10px;
  }
}

/* line 77, modules/_box-with-borders.scss */
.box-with-borders .box-with-borders__paragraph_margin {
  margin-top: 30px;
}

@media (max-width: 991px) {

  /* line 77, modules/_box-with-borders.scss */
  .box-with-borders .box-with-borders__paragraph_margin {
    margin: 20px 0 40px 0;
  }
}

/* line 1, layout/_loba.scss */
.loba {
  display: inline-block;
  max-width: 50px;
  opacity: 0.4;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}

/* line 7, layout/_loba.scss */
.loba:hover {
  opacity: 1;
}

/* line 11, layout/_loba.scss */
.loba img {
  width: 100%;
}

/* line 1, layout/_contactos.scss */
.small-form-group {
  width: calc(50% - 10px);
  float: left;
  margin-right: 20px;
  z-index: 9;
}

@media (max-width: 991px) {

  /* line 1, layout/_contactos.scss */
  .small-form-group {
    width: 100%;
    margin-right: 0;
  }
}

/* line 10, layout/_contactos.scss */
.small-form-group.mr0 {
  margin-right: 0;
}

/* line 14, layout/_contactos.scss */
.contact-form {
  margin-top: 65px;
}

@media (max-width: 991px) {

  /* line 14, layout/_contactos.scss */
  .contact-form {
    margin-top: 30px;
  }
}

@media (max-width: 991px) {

  /* line 21, layout/_contactos.scss */
  .form-box {
    padding: 0 0 50px 0;
  }
}

/* line 25, layout/_contactos.scss */
.form-box .form-box__breadcrumbs {
  display: block;
  text-transform: uppercase;
  margin-top: 20px;
}

/* line 30, layout/_contactos.scss */
.form-box .form-box__paragraph {
  display: block;
  font-size: 13px;
}

/* line 36, layout/_contactos.scss */
.form-group.info-accept {
  font-size: 12px;
  color: #949598;
}

@media (max-width: 991px) {

  /* line 36, layout/_contactos.scss */
  .form-group.info-accept {
    margin-bottom: 35px;
  }
}

/* line 42, layout/_contactos.scss */
.form-group.info-accept label {
  font-size: 12px;
  color: #949598;
}

/* line 45, layout/_contactos.scss */
.form-group.info-accept label b {
  color: #3f4041;
}

/* line 51, layout/_contactos.scss */
.map {
  height: 500px;
}

@media (max-width: 991px) {

  /* line 51, layout/_contactos.scss */
  .map {
    height: 370px;
  }
}

/* line 57, layout/_contactos.scss */
.divided-background {
  position: relative;
  z-index: 2;
  padding-top: 60px;
  padding-bottom: 100px;
}

@media (max-width: 991px) {

  /* line 57, layout/_contactos.scss */
  .divided-background {
    padding-top: unset;
    padding-bottom: unset;
  }
}

/* line 66, layout/_contactos.scss */
.divided-background::before {
  content: "";
  background-color: #f0f0f0;
  z-index: 1;
  height: 100%;
  width: 38.5%;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
}

@media (max-width: 991px) {

  /* line 66, layout/_contactos.scss */
  .divided-background::before {
    display: none;
  }
}

/* line 80, layout/_contactos.scss */
.divided-background-col {
  z-index: 3;
}

@media (max-width: 991px) {

  /* line 80, layout/_contactos.scss */
  .divided-background-col {
    background-color: #f0f0f0;
    padding-top: 55px;
    padding-bottom: 50px;
  }
}

/* line 2, layout/_final.scss */
.footer-top {
  background-color: #252525;
  border-bottom: 1px solid #3b3b3b;
  /* padding: 300px 0 10px; */
  line-height: 20px;
  font-family: 'Open-Sans', sans-serif;
}

@media (max-width: 1100px) {

  /* line 2, layout/_final.scss */
  .footer-top {
    padding: 0 0 40px 0;
  }
}

/* line 10, layout/_final.scss */
.footer-top .footer-top__box {
  display: inline-block;
  width: 100%;
}

/* line 12, layout/_final.scss */
.footer-top .footer-top__box .icon {
  float: left;
  margin-right: 15px;
  color: #f78d29;
  font-size: 19px;
}

/* line 18, layout/_final.scss */
.footer-top .footer-top__box .footer-top__address {
  color: #c0c0c0;
  font-size: 13px;
  float: left;
}

.button-back {
  position: relative;
  bottom: 300px;
  /* right: 18%; */
}

/* line 24, layout/_final.scss */
.footer-top .footer-top__scroll {
  border: none;
  background: transparent;
  color: #c0c0c0;
  float: right;
  margin: -8px 0 55px 0;
  font-size: 13px;
  font-weight: bold;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.footer-top .footer-top__scroll.button-back {
  margin-right: -5px;
}

/* line 33, layout/_final.scss */
.footer-top .footer-top__scroll:hover {
  color: #f78d29;
}

@media (max-width: 991px) {

  /* line 24, layout/_final.scss */
  .footer-top .footer-top__scroll {
    float: none;
    display: block;
    margin: 60px auto 50px auto;
  }

  .footer-top .footer-top__scroll.button-back {
    margin: 60px auto 50px auto;
  }

  .button-back {
    position: relative;
    margin: auto;
    text-align: center;
    bottom: 0px;
    left: 0%;
  }
}


/* line 41, layout/_final.scss */
.footer-top .footer-top__scroll .icon {
  -webkit-transform: rotate(270deg);
  transform: rotate(270deg);
  display: inline-block;
  margin-left: 15px;
}

/* line 47, layout/_final.scss */
.footer-top .footer-top__link {
  color: #c0c0c0;
  display: block;
  font-size: 13px;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.footer-top .footer-top__fax {
  margin-left: 30px;
  display: none;
}

/* line 52, layout/_final.scss */
.footer-top .footer-top__link:hover {
  color: #f78d29;
  text-decoration: none;
}

/* line 57, layout/_final.scss */
.footer-top .footer-top__link__email {
  margin-left: 30px;
}

/* line 60, layout/_final.scss */
.footer-top .icon-icoCertificacao {
  color: #f78d29;
  font-size: 19px;
}

@media (max-width: 991px) {

  /* line 60, layout/_final.scss */
  .footer-top .icon-icoCertificacao {
    display: none;
  }
}

/* line 67, layout/_final.scss */
.footer-top .icon-norte2020 {
  font-size: 43px;
  margin-left: 15px;
}

@media (max-width: 991px) {

  /* line 67, layout/_final.scss */
  .footer-top .icon-norte2020 {
    display: block;
    margin: 45px 0 10px 0;
    font-size: 35px;
  }
}

/* line 77, layout/_final.scss */
.footer-top .certificate-img {
  margin-top: -15px;
  margin-left: -32px;
}

@media (max-width: 991px) {

  /* line 77, layout/_final.scss */
  .footer-top .certificate-img {
    margin: 0 auto;
    display: block;
    /* padding-bottom: 50px; */
  }
}

/* line 88, layout/_final.scss */
.footer-bottom {
  background-color: #252525;
  /* height: 65px; */
  line-height: 63px;
  font-family: 'Open-Sans', sans-serif;
}

@media (max-width: 991px) {

  /* line 88, layout/_final.scss */
  .footer-bottom {
    height: auto;
    line-height: unset;
    text-align: center;
  }
}

/* line 97, layout/_final.scss */
.footer-bottom .footer-bottom__slogan {
  font-size: 15px;
  font-weight: bold;
  color: #f78d29;
}

@media (max-width: 991px) {

  /* line 97, layout/_final.scss */
  .footer-bottom .footer-bottom__slogan {
    margin: 20px 0;
    display: block;
  }
}

/* line 106, layout/_final.scss */
.footer-bottom .footer-bottom__copyright {
  font-size: 10px;
  color: #555;
  text-transform: uppercase;
}

@media (max-width: 991px) {

  /* line 106, layout/_final.scss */
  .footer-bottom .footer-bottom__copyright {
    display: block;
    width: 80%;
    margin: 0 auto 15px auto;
    line-height: 15px;
  }
}

/* line 117, layout/_final.scss */
.footer-bottom .footer-bottom__politica {
  color: #555;
  text-transform: uppercase;
  font-size: 11px;
}

/* line 121, layout/_final.scss */
.footer-bottom .footer-bottom__politica:hover {
  text-decoration: none;
  color: #f78d29;
}

@media (max-width: 991px) {

  /* line 117, layout/_final.scss */
  .footer-bottom .footer-bottom__politica {
    display: block;
    margin-bottom: 15px;
  }
}

/* line 131, layout/_final.scss */
.certificate-text {
  width: 70%;
  float: right;
  color: #f78d29;
  font-size: 12px;
  line-height: 15px;
}

@media (max-width: 991px) {

  /* line 131, layout/_final.scss */
  .certificate-text {
    display: none;
  }
}

/* //POP UPPPPPPP!!! */
/* line 146, layout/_final.scss */
.open-modal {
  cursor: pointer;
}

.open-modal:hover {
  text-decoration: none;
}

/* line 151, layout/_final.scss */
.modal-pop .modal-pop__box {
  background: #fff;
  padding: 110px;
}

@media (max-width: 991px) {

  /* line 151, layout/_final.scss */
  .modal-pop .modal-pop__box {
    width: 100%;
    padding: 35px;
  }
}

/* line 160, layout/_final.scss */
.modal-pop .modal-pop__img {
  margin-bottom: 60px;
}

@media (max-width: 991px) {

  /* line 160, layout/_final.scss */
  .modal-pop .modal-pop__img {
    width: 100%;
    margin-bottom: 40px;
    max-width: 530px;
  }
}

/* line 167, layout/_final.scss */
.modal-pop .modal-pob__box__section {
  width: calc(50% - 10px);
  float: left;
  margin-right: 10px;
}

/* line 171, layout/_final.scss */
.modal-pop .modal-pob__box__section:last-of-type {
  margin-right: 0;
  margin-left: 10px;
}

@media (max-width: 991px) {

  /* line 175, layout/_final.scss */
  .modal-pop .modal-pob__box__section .paragraph {
    font-size: 12px;
  }
}

/* line 181, layout/_final.scss */
.modal-pop .modal-pop__content {
  border: 1px solid #f68d29;
  padding: 25px 50px;
}

.modal-pop .modal-pop__content .projects {
  position: relative;
  display: inline-block;
  top: -37px;
  width: auto;
  background-color: white;
  margin: 0 -15px;
  padding: 0 15px;
}

.modal-pop .modal-pop__content .projects .change-project {
  display: inline-block;
  padding: 0 15px 0 0;
  cursor: pointer;
  font-weight: bold;
  color: rgba(112, 112, 112, 0.59)
}

.modal-pop .modal-pop__content .projects .change-project:hover {
  color: rgba(112, 112, 112, 1)
}

.modal-pop .modal-pop__content .projects .change-project.active {
  color: rgba(112, 112, 112, 1)
}

.modal-pop .modal-pop__content .row.row-modal-active {
  display: block;
}

.modal-pop .modal-pop__content .row {
  display: none;
}


@media (max-width: 991px) {

  /* line 181, layout/_final.scss */
  .modal-pop .modal-pop__content .projects {
    top: 0;
    padding: 0;
    margin: 20px 0;
    /* padding-top: 40px; */
  }

  .modal-pop .modal-pop__content .projects .change-project.active {
    color: #f68d29;
  }

  .modal-pop .modal-pop__content .row {
    display: block;
  }

}

/* line 190, layout/_final.scss */
.window_overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  z-index: 999999;
  height: auto;
}

/* line 202, layout/_final.scss */
.window_overlay.opened {
  opacity: 1;
  -webkit-transition: opacity 100ms;
  transition: opacity 100ms;
  visibility: visible;
}

/* line 208, layout/_final.scss */
.window_content {
  position: fixed;
  top: 10vh;
  left: calc((100vw - 1085px) / 2);
  visibility: hidden;
  z-index: 999999;
  max-width: 1085px;
  width: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  /* // max-height: 900px; */
}

/* line 221, layout/_final.scss */
.window_content.opened {
  visibility: visible;
  max-height: 100vh;
}

@media (max-width: 991px) {

  /* line 230, layout/_final.scss */
  .window_content.opened {
    left: calc((100vw - 90vw) / 2);
    overflow-y: scroll;
    max-height: 90vh;
    max-width: 90vw;
  }
}

/* line 236, layout/_final.scss */
.window_content .window_close {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: #fff;
  color: #9d9d9d;
  position: absolute;
  right: -10px;
  top: -15px;
  text-align: center;
  line-height: 30px;
  font-size: 45px;
  font-weight: 300;
  z-index: 999;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

/* line 252, layout/_final.scss */
.window_content .window_close:hover {
  text-decoration: none;
  background-color: #0082c4;
  color: #fff;
}

@media (max-width: 991px) {

  /* line 258, layout/_final.scss */
  .window_content .window_close {
    top: 0px;
    right: 0px;
  }
}

/* line 263, layout/_final.scss */
.modal-off {
  color: #707070;
  font-weight: bold;
  position: absolute;
  right: 30px;
  top: 10px;
  cursor: pointer;
}

@media (max-width: 991px) {

  /* line 263, layout/_final.scss */
  .modal-off {
    right: 20px;
  }
}


/* line 278, layout/_final.scss */
.loba-site:hover {
  text-decoration: none;
}

/* line 281, layout/_final.scss */
.loba-site .icon-loba {
  color: #56585a;
  -webkit-transition: color 0.3s ease-in;
  transition: color 0.3s ease-in;
}

@media (min-width:992px) {
  .loba-site .icon-loba {
    float: right;
  }
}

/* line 284, layout/_final.scss */
.loba-site .icon-loba:hover {
  color: #fff;
}

/* line 1, layout/_home.scss */
.wrapper {
  margin-top: 714px;
}

@media (max-width: 991px) {

  /* line 1, layout/_home.scss */
  .wrapper {
    margin-top: 363px;
  }
}

/* line 7, layout/_home.scss */
.banner-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  max-height: 720px;
}

/* line 14, layout/_home.scss */
.banner-main .banner-main__cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #202020;
  opacity: 0.8;
}

/* line 23, layout/_home.scss */
.banner-main .banner-main__text {
  position: absolute;
  top: 205px;
  z-index: 9;
  padding: 45px;
  border: 3px solid #f78d29;
}

@media (min-width: 800px) and (max-width: 1024px) {

  /* line 23, layout/_home.scss */
  .banner-main {
    top: 55px;
  }
}

@media (max-width: 991px) {

  /* line 23, layout/_home.scss */
  .banner-main .banner-main__text {
    top: 110px;
    padding: 25px;
    margin-right: 10px;
  }

}



/* line 34, layout/_home.scss */
.banner-main .banner-main__text .banner-main__text__h1 {
  text-transform: uppercase;
  margin: 0 0 150px 0;
  font-size: 40px;
  width: 80%;
  font-family: 'Gotham-Bold';
}

@media (max-width: 991px) {

  /* line 34, layout/_home.scss */
  .banner-main .banner-main__text .banner-main__text__h1 {
    margin: 0 0 75px 0;
    font-size: 20px;
  }
}

/* line 45, layout/_home.scss */
.banner-main .banner-main__text .banner-main__text__breadcrumbs {
  font-size: 18px;
  text-transform: uppercase;
  font-family: "Gotham-Bold", Arial, sans-serif;
}

/* line 51, layout/_home.scss */
.banner-main .banner-main__slogan {
  position: absolute;
  top: 205px;
  z-index: 9;
  border: 3px solid #f78d29;
  padding: 30px 20px;
  border-left: none;
  width: 130px;
  color: #fff;
  font-family: "Gotham-Regular", Arial, sans-serif;
  font-weight: 300;
  /* letter-spacing: 0.5px; */
  font-size: 14px;
}

/* line 64, layout/_home.scss */
.banner-main .item {
  width: 100%;
  height: 720px;
  background-size: cover !important;
  background-position: center !important;
}

@media (max-width: 991px) {

  /* line 64, layout/_home.scss */
  .banner-main .item {
    height: 405px;
  }
}

.contact-footer {
  position: relative;
  /* top: -200px; */
}

/* line 76, layout/_home.scss */
.about {
  padding: 120px 0px;
  position: relative;
}

.about .container {
  position: relative;
  z-index: 99;
}

.about__image {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  background-size: cover;
  background-position: center center;
}


@media (max-width: 991px) {

  /* line 76, layout/_home.scss */
  .about {
    padding: 100px 0 60px 0;
    height: unset;
  }
}

@media (min-width: 800px) and (max-width: 1024px) {

  /* line 23, layout/_home.scss */
  .about {
    padding: 150px 0 60px 0;
  }
}


/* line 83, layout/_home.scss */
.about .about__h2 {
  font-weight: bold;
  margin-bottom: 25px;
}

/* line 87, layout/_home.scss */
.about .about__picture {
  margin-top: -140px;
}

/* line 90, layout/_home.scss */
.about .about__breadcrumbs {
  font-weight: bold;
  text-transform: uppercase;
}

/* line 94, layout/_home.scss */
.about .button {
  margin: 50px 0 30px 0;
}

@media (max-width: 991px) {

  /* line 94, layout/_home.scss */
  .about .button {
    margin: 25px 0 0 0;
  }
}

@media (max-width: 991px) {

  /* line 100, layout/_home.scss */
  .about .h2_desktop_size {
    font-size: 20px;
  }
}

/* line 107, layout/_home.scss */
.products {
  padding: 100px 0 75px 0;
  background-color: #f0f0f0;
  margin-top: -80px;
}

@media (max-width: 991px) {

  /* line 107, layout/_home.scss */
  .products {
    margin-top: 0;
    padding: 100px 0 25px 0;
  }
}

/* line 116, layout/_home.scss */
.product-container {
  margin: 60px 0 0 0;
  background-color: #f0f0f0;
}

/* line 120, layout/_home.scss */
.product-box {
  width: 100%;
  height: 245px;
  background-color: #fff;
  text-align: center;
  padding: 50px 0 50px 0;
  margin-bottom: 20px;
  position: relative;
}

@media (min-width: 992px) and (max-width: 1300px) {

  /* line 120, layout/_home.scss */
  .product-box {
    height: 200px;
    padding: 40px 0;
  }
}

/* line 133, layout/_home.scss */
.product-box:hover .product-box__cover {
  background-color: #f78d29;
}

/* line 137, layout/_home.scss */
.product-box .product-box__name {
  font-size: 20px;
  color: #56585A;
  font-weight: 600;
  display: block;
  max-width: 50%;
  margin: 5px auto 0 auto;
  font-family: 'Gotham-Regular', Arial, sans-serif;
}

@media (min-width: 992px) and (max-width: 1300px) {

  /* line 137, layout/_home.scss */
  .product-box .product-box__name {
    font-size: 15px;
  }
}

/* line 147, layout/_home.scss */
.product-box .product-box__cover {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #252524;
  width: 100%;
  height: 100%;
  display: block;
  padding-top: 100px;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}

/* line 157, layout/_home.scss */
.product-box .product-box__cover .product-box__cover__text {
  color: #fff;
  text-transform: uppercase;
  font-size: 20px;
  text-align: center;
  vertical-align: middle;
  display: block;
  font-family: 'Gotham-Medium', Arial, sans-serif;

}

@media (min-width: 992px) and (max-width: 1300px) {

  /* line 157, layout/_home.scss */
  .product-box .product-box__cover .product-box__cover__text {
    font-size: 15px;
  }
}

/* line 168, layout/_home.scss */
.product-box .product-box__cover .icon {
  display: block;
  color: #fff;
  margin-top: 20px;
  font-size: 12px;
}

@media (min-width: 992px) and (max-width: 1300px) {

  /* line 168, layout/_home.scss */
  .product-box .product-box__cover .icon {
    margin-top: 5px;
  }
}

/* line 179, layout/_home.scss */
.product-box .product-box__icon .icon {
  font-size: 70px;
  color: #f78d29;
}

@media (min-width: 992px) and (max-width: 1300px) {

  /* line 179, layout/_home.scss */
  .product-box .product-box__icon .icon {
    font-size: 60px;
  }
}

/* line 187, layout/_home.scss */
.product-box .product-box__link {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

/* line 207, layout/_home.scss */
.news {
  padding: 100px 0 300px 0;
}

/* line 209, layout/_home.scss */
.news .news-carousel {
  position: relative;
}

/* line 211, layout/_home.scss */
.news .news-carousel .owl-nav {
  left: 99px;
}

/* line 213, layout/_home.scss */
.news .news-carousel .owl-nav .owl-prev,
.news .news-carousel .owl-nav .owl-next {
  background-color: transparent;
  color: #707070;
  width: unset;
  height: unset;
}

/* line 223, layout/_home.scss */
.banner-main .container_slider {
  position: absolute;
  width: 100%;
  top: 0;
  z-index: 8;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  height: 720px;
}

/* line 233, layout/_home.scss */
.banner-main .counter_numbers_main {
  display: block;
  width: 30px;
  padding-left: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 11;
  right: 15px;
  list-style: none;
}

/* line 244, layout/_home.scss */
.banner-main .counter_numbers_main li {
  padding-left: 13px;
  padding-bottom: 30px;
}

/* line 248, layout/_home.scss */
.banner-main .counter_numbers_main li.current a {
  color: #f68d29;
}

/* line 253, layout/_home.scss */
.banner-main .counter_numbers_main li a {
  color: #fff;
}

/* line 258, layout/_home.scss */
.banner-main .counter_numbers_main .owl-prev,
.banner-main .counter_numbers_main .owl-next {
  background-color: transparent;
  color: #ffffff;
  border: none;
}

/* line 264, layout/_home.scss */
.banner-main .counter_numbers_main .owl-prev {
  -webkit-transform: rotate(-90deg) !important;
  transform: rotate(-90deg) !important;
  margin-bottom: 25px;
}

/* line 268, layout/_home.scss */
.banner-main .counter_numbers_main .owl-next {
  -webkit-transform: rotate(90deg) !important;
  transform: rotate(90deg) !important;
}

/* line 273, layout/_home.scss */
.counter_numbers {
  padding: 0;
}

/* line 278, layout/_home.scss */
.counter_numbers li.current a {
  color: #f68d29;
}

/* line 284, layout/_home.scss */
.counter_numbers .owl-prev,
.counter_numbers .owl-next {
  background-color: transparent;
  color: #707070;
  border: none;
}

/* line 290, layout/_home.scss */
.text-box-picture {
  padding: 90px 110px 45px 110px;
  background-color: #f0f0f0;
  position: absolute;
  top: 0;
  width: 640px;
  margin-left: 10px;
}

@media (max-width: 991px) {
  .banner-main .counter_numbers_main .owl-prev {
    -webkit-transform: rotate(-180deg) !important;
    transform: rotate(-180deg) !important;
  }

  /* line 268, layout/_home.scss */
  .banner-main .counter_numbers_main .owl-next {
    -webkit-transform: rotate(0deg) !important;
    transform: rotate(0deg) !important;
  }

  .banner-main .counter_numbers_main li {
    padding-left: 5px;
    padding-right: 5px;
  }

  .banner-main .counter_numbers_main {
    display: inline-flex;
    left: 15px;
  }


}

@media (max-width: 991px) {

  /* line 290, layout/_home.scss */
  .text-box-picture {
    position: initial;
    width: 90%;
    padding: 40px 20px 35px 20px;
  }
}

@media (min-width: 992px) and (max-width: 1300px) {

  /* line 290, layout/_home.scss */
  .text-box-picture {
    padding: 90px 60px 45px 60px;
    width: 530px;
  }
}

/* line 306, layout/_home.scss */
.text-box-picture .text-box-picture__paragraph {
  margin: 45px 0;
  color: #707070;
  line-height: 25px;
}

@media (max-width: 991px) {

  /* line 306, layout/_home.scss */
  .text-box-picture .text-box-picture__paragraph {
    margin: 15px 0 0 0;
  }
}

/* line 313, layout/_home.scss */
.text-box-picture .text-box-picture__paragraph b {
  color: #3f4041;
}

/* line 317, layout/_home.scss */
.text-box-picture .text-box-picture__paragraph__span {
  display: block;
}

/* line 320, layout/_home.scss */
.text-box-picture .text-box-picture__small-text {
  font-family: "Gotham-Regular", Arial, sans-serif;
  font-weight: bold;
  font-size: 15px;
  color: #3f4041;
}

/* line 329, layout/_home.scss */
.slider-counter-news .slider-counter__link,
.slider-counter-news a {
  color: #707070;
}

/* line 331, layout/_home.scss */
.slider-counter-news .slider-counter__link.current,
.slider-counter-news a.current {
  color: #f78d29;
}

/* line 334, layout/_home.scss */
.slider-counter-news .slider-counter__link:hover,
.slider-counter-news a:hover {
  text-decoration: none;
}

/* line 339, layout/_home.scss */
.slider-counter-news a:hover {
  text-decoration: none;
}

/* line 343, layout/_home.scss */
.slider-counter-news .counter_numbers {
  list-style-type: none;
}

/* line 348, layout/_home.scss */
.news .slider-counter-news {
  display: inline-block;
  position: absolute;
  left: 120px;
  /*bottom: 25px;*/
  z-index: 9;
}

@media (max-width: 991px) {

  /* line 348, layout/_home.scss */
  .news .slider-counter-news {
    left: 10px;
    bottom: -35px;
  }
}

@media (min-width: 992px) and (max-width: 1300px) {

  /* line 348, layout/_home.scss */
  .news .slider-counter-news {
    bottom: 10px;
  }
}

/* line 361, layout/_home.scss */
.news .slider-counter-news .owl-prev,
.news .slider-counter-news .owl-next,
.news .slider-counter-news li {
  float: left;
  width: unset;
  height: unset;
  line-height: unset;
  cursor: pointer;
}

/* line 368, layout/_home.scss */
.news .slider-counter-news .owl-prev {
  margin-right: 40px;
}

/* line 370, layout/_home.scss */
.news .slider-counter-news .owl-prev:hover {
  color: #f78d29;
}

/* line 374, layout/_home.scss */
.news .slider-counter-news .owl-next {
  margin-left: 40px;
}

/* line 376, layout/_home.scss */
.news .slider-counter-news .owl-next:hover {
  color: #f78d29;
}

/* line 380, layout/_home.scss */
.news .slider-counter-news li {
  margin-right: 30px;
}

/* line 382, layout/_home.scss */
.news .slider-counter-news li:last-of-type {
  margin-right: 0;
}

/* line 389, layout/_home.scss */
.p0 {
  padding: 0;
}

/* line 392, layout/_home.scss */
.contact-box {
  width: 70%;
  position: relative;
  height: 570px;
  background-position: center;
  background-size: cover;
  margin-top: -200px;
  z-index: 9;
}

@media (max-width: 767px) {
  .contact-box {
    width: 95%;
    position: relative;
    height: 570px;
    background-position: center;
    background-size: cover;
  }
}

/* line 398, layout/_home.scss */
.contact-box .contact-box_big {
  height: 570px;
}


/* line 401, layout/_home.scss */
.contact-box .contact-box__grid {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 9;
  left: 22%;
}

@media (max-width: 767px) {

  /* line 401, layout/_home.scss */
  .contact-box .contact-box__grid {
    left: 10%;
  }
}


/* line 407, layout/_home.scss */
.contact-box .contact-box__header {
  color: #fff;
  font-weight: bold;
  width: 70%;
  margin-bottom: 30px;

}


@media (max-width: 767px) {

  /* line 407, layout/_home.scss */
  .contact-box .contact-box__header {
    color: #fff;
    font-weight: bold;
    width: 100%;
    margin-bottom: 30px;
    font-size: 25px;

  }
}

p {
  font-family: 'Open-Sans', sans-serif;
}

/* line 413, layout/_home.scss */
.contact-box .contact-box__breadcrumbs {
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 60px;
  font-family: 'Open-Sans', sans-serif;
}

/* line 419, layout/_home.scss */
.contact-box .contact-box__cover {
  background-color: #f68d29;
  opacity: 0.8;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.barra-apoios {
  position: relative;
  top: 0;
  left: 0;
  height: 60px;
  color: white;
  width: 100%;
  background-color: #fff;
}

.barra-apoios .img-apoios {
  padding: 10px 25px;
  text-align: right;
}


.barra-apoios .img-apoios img {
  width: 100%;
  max-width: 275px;
}


/* line 1, layout/_inicial.scss */
.nav {
  position: fixed;
  top: 0;
  width: 100%;
  height: 180px;
  z-index: 9;
  background-color: transparent;
  padding: 0px 0 25px 0;
  transition: background-color 0.3s ease-in-out;
}

.navigation {
  padding: 35px 0;
}

@media (max-width: 767px) {
  .barra-apoios {
    height: 40px;
  }

  .barra-apoios .img-apoios img {
    width: 100%;
    max-width: 150px;
  }

  /* line 1, layout/_inicial.scss */
  .nav {
    height: 100px;
    /* padding: 25px 0 0 0; */
  }

  .nav .navigation {
    padding: 15px 0;
  }
}

/* line 12, layout/_inicial.scss */
.nav.navbarScroll {
  background-color: #f8f8f8;
  color: #949598;
  z-index: 100;
  transition: background-color 0.2s ease-in-out;
}

@media (max-width: 767px) {

  /* line 12, layout/_inicial.scss */
  .nav.navbarScroll {
    /* padding-top: 12px; */
  }

  /* line 18, layout/_inicial.scss */
  .nav.navbarScroll .icon-menuHamburger {
    color: #707070;
  }
}

/* line 24, layout/_inicial.scss */
.menu {
  text-align: right;
}

@media (max-width: 767px) {

  /* line 24, layout/_inicial.scss */
  .menu {
    background-color: #56585a;
    padding-bottom: 75px;
    display: none;
    position: absolute;
    right: 10px;
    width: 245px;
  }
}

@media (max-width: 767px) {

  /* line 35, layout/_inicial.scss */
  .menu-col {
    position: absolute;
    right: -10px;
    top: -25px;
  }
}

/* line 42, layout/_inicial.scss */
.menu-list {
  display: inline-block;
  list-style-type: none;
  margin-bottom: 0;
}

@media (max-width: 767px) {

  /* line 42, layout/_inicial.scss */
  .menu-list {
    display: block;
    margin: auto;
    padding: 0;
  }
}

/* line 51, layout/_inicial.scss */
.menu-list .icon {
  font-size: 9px;
  position: absolute;
  top: 20px;
  right: -10px;
  display: none;
}

@media (max-width: 767px) {

  /* line 51, layout/_inicial.scss */
  .menu-list .icon {
    top: 30px;
    right: -8px;
  }
}

/* line 62, layout/_inicial.scss */
.menu-list .menu-list__item {
  float: left;
  margin-left: 55px;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 13px;
  padding-top: 30px;
  position: relative;
}

@media (max-width: 767px) {

  /* line 62, layout/_inicial.scss */
  .menu-list .menu-list__item {
    float: none;
    margin-left: 0;
    display: table;
    margin: auto;
    padding-top: 40px;
  }
}

@media (min-width: 768px) and (max-width: 992px) {

  /* line 62, layout/_inicial.scss */
  .menu-list .menu-list__item {
    font-size: 12px;
    margin-left: 30px;
  }
}

/* line 82, layout/_inicial.scss */
.menu-list .menu-list__item:hover .icon {
  display: block;
}

/* line 85, layout/_inicial.scss */
.menu-list .menu-list__item:hover .menu-list__link {
  color: #f78d29;
}

/* line 90, layout/_inicial.scss */
.menu-list .menu-list__link {
  color: #fff;
  -webkit-transition: color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out;
}

/* line 93, layout/_inicial.scss */
.menu-list .menu-list__link:hover {
  text-decoration: none;
  color: #f78d29;
}

/* line 97, layout/_inicial.scss */
.menu-list .menu-list__link.navbarScroll {
  color: #949598;
}

/* line 99, layout/_inicial.scss */
.menu-list .menu-list__link.navbarScroll:hover {
  text-decoration: none;
  color: #f78d29;
}

/* line 106, layout/_inicial.scss */
.logo-scroll {
  display: none;
}

/* line 108, layout/_inicial.scss */
.logo-scroll.visible {
  display: block;
}

@media (max-width: 991px) {

  /* line 112, layout/_inicial.scss */
  .navigation__logo {
    width: 100%;
  }
}

@media (max-width: 767px) {

  /* line 117, layout/_inicial.scss */
  .logo-regular,
  .logo-scroll {
    max-height: 30px;
  }
}

/* line 122, layout/_inicial.scss */
.icon-menuHamburger {
  float: right;
  margin-top: -25px;
  color: #fff;
  cursor: pointer;
}

/* line 127, layout/_inicial.scss */
.icon-menuHamburger.hamburger-menu-open {
  float: none;
  position: absolute;
  left: -40px;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  top: 60px;
}

/* line 136, layout/_inicial.scss */
.languages {
  float: right;
  margin-top: -25px;
}

@media (max-width: 767px) {

  /* line 136, layout/_inicial.scss */
  .languages {
    float: none;
    display: block;
    text-align: center;
    margin-top: 35px;
  }
}

/* line 145, layout/_inicial.scss */
.languages .languages__option {
  color: #c0c0c0;
  font-size: 11px;
  text-transform: uppercase;
}

/* line 149, layout/_inicial.scss */
.languages .languages__option.active {
  color: #f78d29;
  font-weight: bold;
}

/* line 153, layout/_inicial.scss */
.languages .languages__option:hover,
.languages .languages__option :focus {
  color: #f78d29;
  text-decoration: none;
}

/* line 157, layout/_inicial.scss */
.languages .languages__option::after {
  content: "|";
  display: inline-block;
  margin: 0 10px;
  color: #c0c0c0;
}

/* line 164, layout/_inicial.scss */
.languages .languages__option:last-of-type::after {
  content: "";
  display: none;
}

/* line 1, layout/_institucional.scss */
.banner-other-pages {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 26%;
  background-size: cover !important;
  background-position: center !important;
  overflow: hidden;
}

@media (max-width: 767px) {

  /* line 1, layout/_institucional.scss */
  .banner-other-pages {
    min-height: 215px;
  }
}

/* line 12, layout/_institucional.scss */
.banner-other-pages .banner-other-pages__cover {
  position: absolute;
  left: 0;
  top: 0;
  background: #202020;
  opacity: 0.7;
  width: 100%;
  height: 100%;
}

/* line 21, layout/_institucional.scss */
.banner-other-pages .banner-other-pages__h1 {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 8;
  font-weight: bold;
  margin: 0 0 0 -10px;
  text-align: center;
  width: 100%;
}

/* line 31, layout/_institucional.scss */
.banner-other-pages .banner-other-pages__h1 .icon {
  font-size: 15px;
  position: absolute;
}

/* line 36, layout/_institucional.scss */
.banner-other-pages .banner-other-pages__decoration {
  position: absolute;
  bottom: 0;
  right: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

@media (max-width: 991px) {

  /* line 36, layout/_institucional.scss */
  .banner-other-pages .banner-other-pages__decoration {
    bottom: -80px;
  }
}

@media (min-width: 993px) and (max-width: 1500px) {

  /* line 36, layout/_institucional.scss */
  .banner-other-pages .banner-other-pages__decoration {
    bottom: -50px;
  }
}

/* line 49, layout/_institucional.scss */
.text-section {
  padding: 120px 0;
}

@media (max-width: 991px) {

  /* line 49, layout/_institucional.scss */
  .text-section {
    padding: 50px 0;
  }
}

/* line 54, layout/_institucional.scss */
.text-section .paragraph {
  margin-bottom: 35px;
}

@media (max-width: 991px) {

  /* line 54, layout/_institucional.scss */
  .text-section .paragraph {
    margin-bottom: 15px;
  }
}

/* line 61, layout/_institucional.scss */
.simple-list_column {
  -webkit-column-count: 2;
  column-count: 2;
}

@media (max-width: 767px) {

  /* line 61, layout/_institucional.scss */
  .simple-list_column {
    -webkit-column-count: 1;
    column-count: 1;
  }
}

@media (min-width:992px) {
  .mobile-m-45 {
    margin-bottom: 45px;
  }
}

/* line 68, layout/_institucional.scss */
.timeline {
  padding: 0 0 10px 0;
  background-color: #f0f0f0;
  position: relative;
  overflow: hidden;
}

#sync2 .owl-stage {
  cursor: url("http://irmaosvalente.dev.loba.pt/assets/img/cursor.png"), auto;
  padding: 120px 0 100px 0;
}

@media (max-width: 991px) {

  /* line 68, layout/_institucional.scss */
  .timeline {
    padding: 65px 0 55px 0;
  }
}

/* line 75, layout/_institucional.scss */
.timeline .gray-line {
  position: absolute;
  top: 230px;
  width: 100%;
  background: #dadada;
  height: 17px;
}

@media (min-width: 768px) and (max-width: 992px) {

  /* line 75, layout/_institucional.scss */
  .timeline .gray-line {
    top: 167px;
  }
}

/* line 86, layout/_institucional.scss */
.white-box-decoration {
  width: 70%;
  background-color: #fff;
  height: 45px;
  position: absolute;
  top: 0;
  right: 0;
}

@media (max-width:767px) {
  .white-box-decoration {
    display: none;
  }
}

/* line 94, layout/_institucional.scss */
.text-box-picture_right {
  right: 0;
  z-index: 9;
}

/* line 98, layout/_institucional.scss */
.text-box-picture_dark {
  background: #56585A;
  padding: 65px 50px 45px 50px;
  width: 530px;
  top: 0;
  margin-top: 126px;
}

@media (max-width: 991px) {

  /* line 98, layout/_institucional.scss */
  .text-box-picture_dark {
    width: 90%;
    margin: 0;
    padding: 65px 20px 30px 15px;
  }
}

/* line 109, layout/_institucional.scss */
.text-box-picture_dark h3 {
  color: #fff;
}

/* line 112, layout/_institucional.scss */
.text-box-picture_dark .text-box-picture__paragraph {
  color: #fff;
}

.text-box-picture__paragraph_inst p {
  color: #fff;
}

/* line 116, layout/_institucional.scss */
.visao-box {
  margin: 0 50px;
}

@media (max-width: 991px) {

  /* line 116, layout/_institucional.scss */
  .visao-box {
    margin: 0;
  }
}

/* line 122, layout/_institucional.scss */
.production {
  padding: 60px 0 0 0;
}

/* line 124, layout/_institucional.scss */
.production .production-carousel {
  margin-top: 100px;
}

@media (max-width: 991px) {

  /* line 124, layout/_institucional.scss */
  .production .production-carousel {
    margin-top: 55px;
  }
}

/* line 131, layout/_institucional.scss */
.simple-pix-with-text {
  padding-bottom: 95px;
}

@media (max-width: 767px) {

  /* line 135, layout/_institucional.scss */
  .new-parent {
    overflow: hidden;
    /* height: 500px; */
  }
}

@media (max-width: 767px) {

  /* line 140, layout/_institucional.scss */
  .new-parent #sync2 {
    overflow-y: scroll;
    height: 500px;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    padding-right: 20px;
  }
}

.table {
  display: table;
}

/* line 149, layout/_institucional.scss */
#sync2 {
  margin: 0;
}

/* line 151, layout/_institucional.scss */
#sync2 .owl-stage-outer {
  overflow: visible;
}

/* line 157, layout/_institucional.scss */
#sync2 .inner__info::nth-of-type(2) {
  padding-top: 60px;
}

/* line 164, layout/_institucional.scss */
.inner .inner__box {
  border-left: 1px solid #cacaca;
  height: auto;
  margin-left: 46px;
}

@media (max-width: 767px) {

  /* line 164, layout/_institucional.scss */
  .inner .inner__box {
    border-left: 17px solid #f78d29;
    margin-left: 5px;
  }
}

/* line 173, layout/_institucional.scss */
.inner .inner__paragraph {
  margin: 0 0 0 10px;
  display: block;
  /* max-width: 145px; */
  max-width: 75%;
}

@media (max-width: 767px) {

  /* line 173, layout/_institucional.scss */
  .inner .inner__paragraph {
    margin-left: 15px;
    max-width: unset;
    width: 88%;
  }
}

@media (min-width: 768px) and (max-width:991px) {
  .inner .inner__paragraph {
    font-size: 11px;
  }
}

/* line 183, layout/_institucional.scss */
.inner .inner__info {
  display: block;
  margin: 0 0 0 10px;
  padding-top: 40px;
  max-width: 145px;
  font-weight: bold;
}

@media (max-width: 767px) {

  /* line 183, layout/_institucional.scss */
  .inner .inner__info {
    padding-top: 25px;
    margin-left: 15px;
  }
}

/* line 195, layout/_institucional.scss */
#sync2 .owl-stage::before {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 16px;
  border: 8px solid #f78d29;
  border-radius: 20px;
  top: 130px;
}

/* line 205, layout/_institucional.scss */
#sync2 .inner {
  display: inline-block;
  font-size: 15px;
  position: relative;
  color: #f78d29;
  width: 220px;
  padding-top: 29px;
}

@media (max-width: 767px) {

  /* line 205, layout/_institucional.scss */
  #sync2 .inner {
    padding-top: 0;
    width: 100%;
  }
}

/* line 216, layout/_institucional.scss */
#sync2 .inner::before {
  content: "";
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  display: block;
  position: absolute;
  border: 5px solid #56585a;
  top: 7px;
  left: 35px;
}

@media (max-width: 767px) {

  /* line 216, layout/_institucional.scss */
  #sync2 .inner::before {
    top: 25px;
    left: 2px;
  }
}

/* line 235, layout/_institucional.scss */
.rodape-box .rodape {
  background-color: #f68d29;
  width: 100%;
  padding: 50px;
  color: #fff;
  margin-bottom: -60px;
}

@media (max-width: 991px) {

  /* line 235, layout/_institucional.scss */
  .rodape-box .rodape {
    padding: 40px 10px 20px 20px;
    margin-bottom: -20px;
  }
}

/* line 245, layout/_institucional.scss */
.rodape-box .rodape .rodape_h1 {
  font-size: 35px;
  margin: 0 0 60px 0;
  color: #fff;
}

@media (max-width: 991px) {

  /* line 245, layout/_institucional.scss */
  .rodape-box .rodape .rodape_h1 {
    font-size: 16px;
    margin: 0 0 10px 0;
  }
}

/* line 254, layout/_institucional.scss */
.rodape-box .rodape .rodape__link {
  color: #fff;
  font-weight: bold;
  font-size: 16px;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

/* line 259, layout/_institucional.scss */
.rodape-box .rodape .rodape__link:hover {
  text-decoration: none;
  color: #56585A;
}

/* line 263, layout/_institucional.scss */
.rodape-box .rodape .rodape__link .icon {
  margin-right: 15px;
}

@media (max-width: 991px) {

  /* line 263, layout/_institucional.scss */
  .rodape-box .rodape .rodape__link .icon {
    text-align: right;
    margin-right: 0;
    display: block;
  }
}

@media (max-width: 991px) {

  /* line 274, layout/_institucional.scss */
  .box-with-borders .box-with-borders__container_small.no-border {
    border: none;
    padding: 0;
  }

  /* line 278, layout/_institucional.scss */
  .box-with-borders .box-with-borders__container_small.no-border .box-with-borders__h3_left {
    border: none;
    display: block;
    margin: 0 0 20px 0;
  }

  /* line 283, layout/_institucional.scss */
  .box-with-borders .box-with-borders__container_small.no-border .box-with-borders__list {
    margin-left: -10px;
  }
}

@media (max-width: 991px) {

  /* line 290, layout/_institucional.scss */
  .box-with-borders .box-with-borders__paragraph_margin.nm {
    margin-bottom: 0;
  }
}

/* line 1, layout/_produtos.scss */
.product-list {
  padding: 100px 0;
  background-color: #f0f0f0;
}

@media (max-width: 991px) {

  /* line 1, layout/_produtos.scss */
  .product-list {
    padding: 60px 0;
  }
}

/* line 7, layout/_produtos.scss */
.product-list .product-carousel {
  margin-top: 100px;
}

/* line 9, layout/_produtos.scss */
.product-list .product-carousel .owl-nav {
  right: 110px;
  left: auto;
}

@media (max-width: 991px) {

  /* line 9, layout/_produtos.scss */
  .product-list .product-carousel .owl-nav {
    display: none;
  }
}

/* line 17, layout/_produtos.scss */
.product-list .product-type {
  /* padding: 95px 70px 80px 70px; */
  text-align: center;
}

@media (max-width: 991px) {

  /* line 17, layout/_produtos.scss */
  .product-list .product-type {
    /* padding: 20px 10px; */
  }
}

@media (min-width: 992px) and (max-width: 1319px) {

  /* line 17, layout/_produtos.scss */
  .product-list .product-type {
    /* padding: 50px 60px 80px 60px; */
  }
}

/* line 26, layout/_produtos.scss */
.product-list .product-type .icon {
  font-size: 70px;
  color: #f78d29;
}

@media (max-width: 991px) {

  /* line 26, layout/_produtos.scss */
  .product-list .product-type .icon {
    font-size: 25px;
  }
}

@media (min-width: 992px) and (max-width: 1319px) {

  /* line 26, layout/_produtos.scss */
  .product-list .product-type .icon {
    font-size: 50px;
  }
}

/* line 36, layout/_produtos.scss */
.product-list .product-type .product-type_name {
  font-size: 20px;
  color: #56585A;
  font-weight: 600;
  margin-top: 20px;
  display: block;
  font-family: 'Gotham-Medium';
}

@media (max-width: 991px) {

  /* line 36, layout/_produtos.scss */
  .product-list .product-type .product-type_name {
    font-size: 11px;
    margin-top: 0;
    line-height: 14px;
    text-align: center;
  }
}

@media (min-width: 992px) and (max-width: 1319px) {

  /* line 36, layout/_produtos.scss */
  .product-list .product-type .product-type_name {
    font-size: 18px;
  }
}

/* line 53, layout/_produtos.scss */
.product-list .product-list__decoration {
  text-align: center;
}

/* line 56, layout/_produtos.scss */
.product-list .product-list__decoration_small {
  margin-top: -55px;
  margin-bottom: 10px;
}

@media (min-width: 992px) and (max-width: 1319px) {

  /* line 56, layout/_produtos.scss */
  .product-list .product-list__decoration_small {
    height: 130px;
    overflow: hidden;
    margin-top: 0;
  }
}

@media (min-width: 1100px) and (max-width: 1319px) {

  /* line 56, layout/_produtos.scss */
  .product-list .product-list__decoration_small {
    margin-left: 10px;
  }
}

.product-list .product-list__img {
  padding-top: 20px;
  margin: 0 auto;
  width: 30px;
}

@media (max-width:1099px) {
  .product-list .product-list__img {
    padding-top: 20px;
  }
}

/* line 69, layout/_produtos.scss */
.product-list .product-list__icons-decoration .product-list__icons-decoration__link {
  display: block;
  width: 70px;
  height: 70px;
  margin-left: 10px;
  text-align: center;
  z-index: 19;
  margin-bottom: 20px;
}

/* line 76, layout/_produtos.scss */
.product-list .product-list__icons-decoration .product-list__icons-decoration__link .icon {
  line-height: 70px;
  font-size: 27px;
  opacity: 0.7;
}

/* line 81, layout/_produtos.scss */
.product-list .product-list__icons-decoration .product-list__icons-decoration__link:hover {
  background: #fff;
  text-decoration: none;
}

@media (min-width: 992px) and (max-width: 1100px) {

  /* line 69, layout/_produtos.scss */
  .product-list .product-list__icons-decoration .product-list__icons-decoration__link {
    width: 60px;
    height: 60px;
    margin-left: 5px;
  }
}

/* line 93, layout/_produtos.scss */
.mt125 {
  margin-top: -125px;
}

/* line 96, layout/_produtos.scss */
.world-map {
  padding: 100px 0 50px 0;
}

@media (max-width: 991px) {

  /* line 96, layout/_produtos.scss */
  .world-map {
    padding: 60px 0;
  }
}

/* line 101, layout/_produtos.scss */
.world-map .worl-map__img {
  padding-top: 70px;
}

@media (max-width: 991px) {

  /* line 101, layout/_produtos.scss */
  .world-map .worl-map__img {
    padding-top: 70px;
  }
}

/* line 107, layout/_produtos.scss */
.world-map .world-map__box {
  border: 2px solid #f78d29;
  padding: 60px 220px;
  margin-top: 100px;
}

@media (max-width: 991px) {

  /* line 107, layout/_produtos.scss */
  .world-map .world-map__box {
    padding: 35px 10px;
    margin-top: 35px;
  }
}

/* line 115, layout/_produtos.scss */
.world-map .world-map__box .world-map__box__item {
  display: block;
  color: #707070;
  font-family: 'Open-Sans', sans-serif;
}

/* line 1, layout/_qualidade.scss */
.certificate {
  margin: 120px 0 130px 0;
}

@media (max-width: 991px) {

  /* line 1, layout/_qualidade.scss */
  .certificate {
    margin: 50px 0 30px 0;
  }
}

/* line 6, layout/_qualidade.scss */
.certificate .certificate__paragraph {
  font-weight: bold;
  margin-bottom: 30px;
  display: block;
  font-family: 'Gotham-Bold', sans-serif;
}

@media (max-width: 991px) {

  /* line 6, layout/_qualidade.scss */
  .certificate .certificate__paragraph {
    margin-bottom: 10px;
  }

  /* line 12, layout/_qualidade.scss */
  .certificate .certificate__paragraph:last-of-type {
    margin-top: 30px;
  }
}

/* line 17, layout/_qualidade.scss */
.certificate .certificate__link {
  display: block;
  color: #707070;
  margin-bottom: 10px;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  font-family: 'Open-Sans', sans-serif;
}

.certificate .certificate__link_off {
  display: block;
  color: #707070;
  margin-bottom: 10px;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  font-family: 'Open-Sans', sans-serif;
}

/* line 22, layout/_qualidade.scss */
.certificate .certificate__link:hover {
  text-decoration: none;
  color: #f78d29;
}

/* line 26, layout/_qualidade.scss */
.certificate .certificate__link .icon {
  color: #f78d29;
  font-size: 20px;
  margin-right: 10px;
  display: inline-block;
  vertical-align: top;
}

.certificate .certificate__link_off .icon {
  color: #f78d29;
  font-size: 20px;
  margin-right: 10px;
  display: inline-block;
  vertical-align: top;
}

/* line 34, layout/_qualidade.scss */
.certificate .certificate__text {
  display: inline-block;
  width: 91%;
}

@media (max-width: 767px) {

  /* line 34, layout/_qualidade.scss */
  .certificate .certificate__text {
    width: 87%;
  }
}

/* line 42, layout/_qualidade.scss */
.quality {
  padding: 70px 0;
  background-color: #f0f0f0;
}

@media (max-width: 991px) {

  /* line 42, layout/_qualidade.scss */
  .quality {
    padding: 55px 0;
  }
}

/* line 48, layout/_qualidade.scss */
.quality .quality__paragraph {
  margin-top: 70px;
}

/* line 55, layout/_qualidade.scss */
.simple-list {
  padding-left: 60px;
  list-style-type: none;
  margin-top: 25px;
}

@media (max-width: 991px) {

  /* line 55, layout/_qualidade.scss */
  .simple-list {
    padding-left: 0;
    margin: 15px 0 30px 0;
  }

  /* line 62, layout/_qualidade.scss */
  .simple-list:last-of-type {
    margin-bottom: 0;
  }
}

/* line 66, layout/_qualidade.scss */
.simple-list .simple-list__item {
  margin-bottom: 5px;
}

/* line 68, layout/_qualidade.scss */
.simple-list .simple-list__item::before {
  content: "";
  width: 5px;
  height: 5px;
  display: inline-block;
  border-radius: 50%;
  background-color: #f78d29;
  margin-right: 8px;
}

/* line 79, layout/_qualidade.scss */
.simple-list_no-padding-left {
  padding-left: 0;
}

/* line 84, layout/_qualidade.scss */
.other-carousel .owl-nav {
  right: -25px;
  left: auto;
  display: block;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  bottom: auto;
}

@media (max-width: 991px) {

  /* line 84, layout/_qualidade.scss */
  .other-carousel .owl-nav {
    display: none;
  }
}

/* line 94, layout/_qualidade.scss */
.other-carousel .owl-nav .owl-prev,
.other-carousel .owl-nav .owl-next {
  float: none;
}

/* line 97, layout/_qualidade.scss */
.other-carousel .owl-nav .owl-prev {
  -webkit-transform: rotate(270deg);
  transform: rotate(270deg);
  margin-bottom: 5px;
}

/* line 101, layout/_qualidade.scss */
.other-carousel .owl-nav .owl-next {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

/* line 106, layout/_qualidade.scss */
.mt {
  margin-top: -110px;
}

@media (max-width: 991px) {

  /* line 106, layout/_qualidade.scss */
  .mt {
    margin-top: 0;
  }
}

/* line 113, layout/_qualidade.scss */
.slider-counter {
  margin-top: 136px;
  margin-left: 30px;
  color: #fff;
}

/* line 117, layout/_qualidade.scss */
.slider-counter .current {
  font-weight: bold;
  font-size: 30px;
}

/* line 121, layout/_qualidade.scss */
.slider-counter .total {
  font-size: 13px;
}

/* adicionado por hugo*/
.footer-top .footer-top__box .footer-top__address {
  float: none;
  padding-left: 30px;
}

/* morada no rodape */
.certificate-text {
  width: 70px;
  float: none;
  display: inline-block;
  line-height: 12px;
  position: relative;
  top: 3px;
}

.icon-wrapper {
  float: left;
}

.certificates-wrapper {
  float: left;
}

.footer-top .icon-norte2020 {
  margin-left: 10px;
}

.footer-top .certificate-img {
  margin-right: 0;
  margin-left: 30px;
}

.certificates-wrapper .open-modal {
  display: inline-block;
}

@media (max-width: 768px) {
  body {
    overflow-x: hidden;
  }

  /*  */
  .new_col_style {
    column-count: 1;
  }

  /* página de empresa: colocar numa coluna só um conjunto de itens que em mobile ficava mto apertado*/
  .icon-norte2020::before {
    margin: 0 auto;
    display: block;
    width: 270px;
  }

  /* icon do norte 2020 em mobile ficar centrado - acho que fica melhor */
}

@media (min-width: 1025px) {
  .certificate-img {
    float: right;
  }
}

@media (max-width: 991px) {

  /* line 131, layout/_final.scss */
  .certificate-text {
    display: none;
  }

  .footer-top .certificate-img {
    margin-left: 0;
  }

  .footer-bottom {
    padding-bottom: 30px;
  }
}

@media (min-width:992px) and (max-width:1319px) {
  .footer-bottom .footer-bottom__slogan {
    font-size: 12px;
  }

  .footer-bottom .footer-bottom__copyright {
    font-size: 9px;
    letter-spacing: 0.3px;
  }
}

@media (min-width: 1100px) and (max-width:1319px) {
  .footer-top .icon-norte2020 {
    font-size: 39px;
  }

  .footer-top .certificate-img {
    max-width: 100px;
  }
}

/* @media (min-width:1100px) and (max-width:1520px){
  .col-top{
    margin-top:-68px;
  }
} */
@media (min-width:992px) and (max-width:1300px) {
  .product-box .product-box__name {
    margin-top: 7px;
    line-height: 18px;
  }
}

@media(max-width:992px) {
  .product-large-img {
    max-width: 25px;
  }
}

.product-large-img {
  margin: auto;
}

@media(min-width:992px) {
  .fleft {
    float: left;
  }
}

.box-with-borders .new_li__style ul li {
  margin-top: 8px;
}

.quality ul {
  border-left: 1px dashed #f78d29;
}

.quality .new_li_default_style p {
  margin-bottom: 40px;
}

.new_li_style li,
.new_li__style li {
  font-family: 'Open-Sans', sans-serif;
}

.paragraph_bold p {
  font-family: 'Gotham-Bold';
}

.success-msg {
  background-color: #fff;
  height: 83%;
  width: 100%;
  z-index: 99;
  opacity: 0.94;
  position: absolute;
  top: 0;
}

.success-msg .message-content {
  display: block;
  margin-left: 60px;
  line-height: 30px;
  text-align: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Gotham-Bold', sans-serif;
  font-size: 25px;
  color: #949598;
}

@media (max-width:992px) {
  .success-msg {
    height: 67%;
  }

  .success-msg .message-content {
    font-size: 20px;
    margin-left: 0;
    left: 50%;
    line-height: 20px;
    transform: translate(-50%, -50%);
  }
}

/* #sync2 .owl-prev, #sync2 .owl-next{
  background-color: transparent;
  border:none;
  color:#c9c9c9;
  width:initial;
  height:initial;
  line-height:initial;
}
#sync2 .owl-next::before{
  content:"";
  display: inline-block;
  width:11px;
  height:11px;
  border-radius:50%;
  border:2px solid #c9c9c9;
  background-color:#f0f0f0;
  z-index:999;
  position:relative;
}
#sync2 .owl-next .icon-sliderArrow{
  margin-left:-10px;
  position:absolute;
  top:0px;
}
#sync2 .owl-prev{
  margin-right:-9px;
} */

.posRel {
  position: relative;
}

/*--- linha adicional certificados .--*/
.m_row {
  margin-bottom: 20px;
}

.no_lmargin {
  margin-left: 0 !important;
}

@media (max-width: 768px) {
  .m_row {
    margin: 10px 0 20px 0;
  }

  .no_lmargin {
    margin-top: 10px !important;
  }
}


/* 27/12/2019 */

.mt35 {
  margin-top: 35px;
}

.mt65 {
  margin-top: 35px;
}

.two-coluns {
  display: grid;
  grid-template-rows: repeat(2, auto);
  grid-gap: 0 40px;
  grid-auto-flow: column;
}


.two-coluns p {
  font-size: 15px;
  color: #707070;
  font-family: 'Open-Sans', sans-serif;
  line-height: 28px;
  font-weight: 600;
}

.lineHeight {
  line-height: 28px;
}

.semi-bold {
  font-weight: 600;
}

.lastUpdate {
  font-family: 'Open-Sans', sans-serif;
  font-size: 13px;
  color: #56585a;
  line-height: 20px;
}

@media (max-width: 992px) {
  .two-coluns {
    grid-template-rows: none;
    grid-auto-flow: row;
  }

  .container_politica .h2_desktop_size {
    font-size: 20px;
  }
}

.certificate__text__{
  text-indent: 7px;
}

.certificate__text__:before{
  content: ' - ';
  display: inline-block;
  color: #707070;
  margin-left: -23px;
  margin-right: 5px;
}