@import url(https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400;500;600;700&display=swap);
@charset "UTF-8";
/* =============================================================================
   HTML5 CSS Reset
   ========================================================================== */
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
}

body {
  line-height: 1;
  transition: 0.5s all ease;
  font-family: "Roboto Condensed", sans-serif;
  color: #5c5c5c;
  overflow-x: hidden;
}

html {
  overflow-x: hidden;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
  transition: 0.3s all ease;
}

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

li {
  list-style: none;
}

main {
  overflow: hidden;
}

h2 {
  font-size: 32px;
  font-weight: 600;
  color: #000000;
}

p, a, input, button, blockquote, span, li {
  font-size: 21px;
}

.p-60 {
  margin-top: 90px;
}

.col-md-12 {
  padding: 0;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: "";
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir=rtl] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* Arrows */
.slick-prev,
.slick-next {
  font-size: 0;
  line-height: 40px;
  position: absolute;
  top: 50%;
  display: block;
  width: 50px;
  height: 50px;
  padding: 0;
  transform: translate(0, -50%);
  cursor: pointer;
  color: transparent;
  outline: none;
  border: none;
  background: transparent;
  transition: 0.5s all ease;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  border: none;
  color: transparent;
  outline: none;
  background: transparent;
}

.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
  color: #3e3f3f;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}

.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 40px;
  opacity: 0.75;
  color: white;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: 25px;
  z-index: 99;
}

[dir=rtl] .slick-prev {
  right: -25px;
  left: auto;
}

.slick-prev:before {
  content: "‹";
  font-size: 100px;
}

[dir=rtl] .slick-prev:before {
  content: "‹";
}

.slick-next {
  right: 25px;
}

[dir=rtl] .slick-next {
  right: auto;
  left: -25px;
}

.slick-next:before {
  content: "›";
  font-size: 100px;
}

[dir=rtl] .slick-next:before {
  content: "›";
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: 60px;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  z-index: 2;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 4px;
  margin: 0 5px;
  padding: 0;
  background-color: #3e3f3f;
  cursor: pointer;
  z-index: -1;
}

.slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 40px;
  height: 4px;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  background-color: transparent;
  border: 0;
  outline: none;
  z-index: -1;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
}

.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  opacity: 1;
}

.slick-dots li button:before {
  content: "";
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 4px;
  background-color: #fff;
  text-align: center;
  opacity: 0;
  color: black;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  z-index: -1;
}

.slick-dots li.slick-active button:before {
  opacity: 1;
  color: black;
}

/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license - http://opensource.org/licenses/MIT

Copyright (c) 2015 Daniel Eden
*/
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

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

.animated.bounceIn,
.animated.bounceOut {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
}

.animated.flipOutX,
.animated.flipOutY {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
}

@-webkit-keyframes bounce {
  0%, 20%, 53%, 80%, 100% {
    -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);
    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);
    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);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    transform: translate3d(0, -4px, 0);
  }
}
@keyframes bounce {
  0%, 20%, 53%, 80%, 100% {
    -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);
    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);
    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);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    transform: translate3d(0, -4px, 0);
  }
}
.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  transform-origin: center bottom;
}

@-webkit-keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
@keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes pulse {
  0% {
    transform: scale3d(1, 1, 1);
  }
  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }
  100% {
    transform: scale3d(1, 1, 1);
  }
}
@keyframes pulse {
  0% {
    transform: scale3d(1, 1, 1);
  }
  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }
  100% {
    transform: scale3d(1, 1, 1);
  }
}
.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

@-webkit-keyframes rubberBand {
  0% {
    transform: scale3d(1, 1, 1);
  }
  30% {
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    transform: scale3d(1.05, 0.95, 1);
  }
  100% {
    transform: scale3d(1, 1, 1);
  }
}
@keyframes rubberBand {
  0% {
    transform: scale3d(1, 1, 1);
  }
  30% {
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    transform: scale3d(1.05, 0.95, 1);
  }
  100% {
    transform: scale3d(1, 1, 1);
  }
}
.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}

@-webkit-keyframes shake {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    transform: translate3d(10px, 0, 0);
  }
}
@keyframes shake {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    transform: translate3d(10px, 0, 0);
  }
}
.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}

@-webkit-keyframes swing {
  20% {
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    transform: rotate3d(0, 0, 1, -5deg);
  }
  100% {
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
@keyframes swing {
  20% {
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    transform: rotate3d(0, 0, 1, -5deg);
  }
  100% {
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.swing {
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}

@-webkit-keyframes tada {
  0% {
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  100% {
    transform: scale3d(1, 1, 1);
  }
}
@keyframes tada {
  0% {
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  100% {
    transform: scale3d(1, 1, 1);
  }
}
.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
  0% {
    transform: none;
  }
  15% {
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  100% {
    transform: none;
  }
}
@keyframes wobble {
  0% {
    transform: none;
  }
  15% {
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  100% {
    transform: none;
  }
}
.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

@-webkit-keyframes jello {
  11.1% {
    transform: none;
  }
  22.2% {
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
  100% {
    transform: none;
  }
}
@keyframes jello {
  11.1% {
    transform: none;
  }
  22.2% {
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
  100% {
    transform: none;
  }
}
.jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  transform-origin: center;
}

@-webkit-keyframes bounceIn {
  0%, 20%, 40%, 60%, 80%, 100% {
    -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;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }
  100% {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}
@keyframes bounceIn {
  0%, 20%, 40%, 60%, 80%, 100% {
    -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;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }
  100% {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}
.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
  0%, 60%, 75%, 90%, 100% {
    -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;
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }
  75% {
    transform: translate3d(0, -10px, 0);
  }
  90% {
    transform: translate3d(0, 5px, 0);
  }
  100% {
    transform: none;
  }
}
@keyframes bounceInDown {
  0%, 60%, 75%, 90%, 100% {
    -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;
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }
  75% {
    transform: translate3d(0, -10px, 0);
  }
  90% {
    transform: translate3d(0, 5px, 0);
  }
  100% {
    transform: none;
  }
}
.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
  0%, 60%, 75%, 90%, 100% {
    -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;
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }
  75% {
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    transform: translate3d(5px, 0, 0);
  }
  100% {
    transform: none;
  }
}
@keyframes bounceInLeft {
  0%, 60%, 75%, 90%, 100% {
    -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;
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }
  75% {
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    transform: translate3d(5px, 0, 0);
  }
  100% {
    transform: none;
  }
}
.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
  0%, 60%, 75%, 90%, 100% {
    -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;
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    transform: translate3d(10px, 0, 0);
  }
  90% {
    transform: translate3d(-5px, 0, 0);
  }
  100% {
    transform: none;
  }
}
@keyframes bounceInRight {
  0%, 60%, 75%, 90%, 100% {
    -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;
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    transform: translate3d(10px, 0, 0);
  }
  90% {
    transform: translate3d(-5px, 0, 0);
  }
  100% {
    transform: none;
  }
}
.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
  0%, 60%, 75%, 90%, 100% {
    -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;
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  75% {
    transform: translate3d(0, 10px, 0);
  }
  90% {
    transform: translate3d(0, -5px, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInUp {
  0%, 60%, 75%, 90%, 100% {
    -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;
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  75% {
    transform: translate3d(0, 10px, 0);
  }
  90% {
    transform: translate3d(0, -5px, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut {
  20% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1);
  }
  100% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
@keyframes bounceOut {
  20% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1);
  }
  100% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.bounceOut {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

@-webkit-keyframes bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  100% {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  100% {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }
  100% {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }
  100% {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }
  100% {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }
  100% {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0);
  }
  100% {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0);
  }
  100% {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes fadeOutDown {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
}
.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes fadeOutLeft {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
}
.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes fadeOutRight {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
}
.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes fadeOutUp {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}
.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

@-webkit-keyframes flip {
  0% {
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  100% {
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
@keyframes flip {
  0% {
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  100% {
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}

@-webkit-keyframes flipInX {
  0% {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  100% {
    transform: perspective(400px);
  }
}
@keyframes flipInX {
  0% {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  100% {
    transform: perspective(400px);
  }
}
.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}

@-webkit-keyframes flipInY {
  0% {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  100% {
    transform: perspective(400px);
  }
}
@keyframes flipInY {
  0% {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  100% {
    transform: perspective(400px);
  }
}
.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
  0% {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  100% {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutX {
  0% {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  100% {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.flipOutX {
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
  0% {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  100% {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutY {
  0% {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  100% {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
.flipOutY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}

@-webkit-keyframes lightSpeedIn {
  0% {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    transform: skewX(-5deg);
    opacity: 1;
  }
  100% {
    transform: none;
    opacity: 1;
  }
}
@keyframes lightSpeedIn {
  0% {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    transform: skewX(-5deg);
    opacity: 1;
  }
  100% {
    transform: none;
    opacity: 1;
  }
}
.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOut {
  0% {
    opacity: 1;
  }
  100% {
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOut {
  0% {
    opacity: 1;
  }
  100% {
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

@-webkit-keyframes rotateIn {
  0% {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  100% {
    transform-origin: center;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateIn {
  0% {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  100% {
    transform-origin: center;
    transform: none;
    opacity: 1;
  }
}
.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}

@-webkit-keyframes rotateInDownLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  100% {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInDownLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  100% {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}

@-webkit-keyframes rotateInDownRight {
  0% {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  100% {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInDownRight {
  0% {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  100% {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}

@-webkit-keyframes rotateInUpLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  100% {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInUpLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  100% {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInUpRight {
  0% {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  100% {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInUpRight {
  0% {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  100% {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateOut {
  0% {
    transform-origin: center;
    opacity: 1;
  }
  100% {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
@keyframes rotateOut {
  0% {
    transform-origin: center;
    opacity: 1;
  }
  100% {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}

@-webkit-keyframes rotateOutDownLeft {
  0% {
    transform-origin: left bottom;
    opacity: 1;
  }
  100% {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownLeft {
  0% {
    transform-origin: left bottom;
    opacity: 1;
  }
  100% {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutDownRight {
  0% {
    transform-origin: right bottom;
    opacity: 1;
  }
  100% {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownRight {
  0% {
    transform-origin: right bottom;
    opacity: 1;
  }
  100% {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}

@-webkit-keyframes rotateOutUpLeft {
  0% {
    transform-origin: left bottom;
    opacity: 1;
  }
  100% {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpLeft {
  0% {
    transform-origin: left bottom;
    opacity: 1;
  }
  100% {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutUpRight {
  0% {
    transform-origin: right bottom;
    opacity: 1;
  }
  100% {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpRight {
  0% {
    transform-origin: right bottom;
    opacity: 1;
  }
  100% {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}

@-webkit-keyframes hinge {
  0% {
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    transform: rotate3d(0, 0, 1, 80deg);
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    transform: rotate3d(0, 0, 1, 60deg);
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  100% {
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
@keyframes hinge {
  0% {
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    transform: rotate3d(0, 0, 1, 80deg);
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    transform: rotate3d(0, 0, 1, 60deg);
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  100% {
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.hinge {
  -webkit-animation-name: hinge;
  animation-name: hinge;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollIn {
  0% {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@keyframes rollIn {
  0% {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
@keyframes rollOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}

@-webkit-keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

@-webkit-keyframes zoomInDown {
  0% {
    opacity: 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;
    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 {
  0% {
    opacity: 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;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}

@-webkit-keyframes zoomInLeft {
  0% {
    opacity: 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;
    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 {
  0% {
    opacity: 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;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}

@-webkit-keyframes zoomInRight {
  0% {
    opacity: 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;
    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 {
  0% {
    opacity: 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;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}

@-webkit-keyframes zoomInUp {
  0% {
    opacity: 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;
    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 {
  0% {
    opacity: 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;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}

@-webkit-keyframes zoomOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  100% {
    opacity: 0;
  }
}
@keyframes zoomOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  100% {
    opacity: 0;
  }
}
.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    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);
  }
  100% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    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;
    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);
  }
  100% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
}

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  100% {
    opacity: 0;
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform-origin: left center;
  }
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  100% {
    opacity: 0;
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform-origin: left center;
  }
}
.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
}

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  100% {
    opacity: 0;
    transform: scale(0.1) translate3d(2000px, 0, 0);
    transform-origin: right center;
  }
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  100% {
    opacity: 0;
    transform: scale(0.1) translate3d(2000px, 0, 0);
    transform-origin: right center;
  }
}
.zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
}

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    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);
  }
  100% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    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;
    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);
  }
  100% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
}

@-webkit-keyframes slideInDown {
  0% {
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInDown {
  0% {
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
  0% {
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInLeft {
  0% {
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
  0% {
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInRight {
  0% {
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

@-webkit-keyframes slideInUp {
  0% {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInUp {
  0% {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}

@-webkit-keyframes slideOutDown {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    visibility: hidden;
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes slideOutDown {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    visibility: hidden;
    transform: translate3d(0, 100%, 0);
  }
}
.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}

@-webkit-keyframes slideOutLeft {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    visibility: hidden;
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes slideOutLeft {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    visibility: hidden;
    transform: translate3d(-100%, 0, 0);
  }
}
.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    visibility: hidden;
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes slideOutRight {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    visibility: hidden;
    transform: translate3d(100%, 0, 0);
  }
}
.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    visibility: hidden;
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes slideOutUp {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    visibility: hidden;
    transform: translate3d(0, -100%, 0);
  }
}
.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}

#subscribe-block-message {
  position: fixed;
  z-index: 99999;
  background-color: #3e3f3f;
  bottom: 40px;
  left: 50%;
  transform: translate(-50%);
}
#subscribe-block-message .alert {
  background-color: #3e3f3f;
  border: none;
  color: #fff;
  font-size: 20px;
  width: 400px;
  padding: 40px;
}

header #top-header {
  transition: 0.5s all ease-in;
  width: 100%;
  position: fixed !important;
  z-index: 999;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

header #top-header.top-heading {
  background-color: #3e3f3f;
}

header #top-header.top-heading .col-md-3, header #top-header.top-heading .col-md-7, header #top-header.top-heading .col-md-2 {
  padding: 0;
}

header #top-header.top-heading .col-md-12 {
  padding-left: 0;
}

header #top-header.top-heading .top-header-img .logo {
  padding: 20px 0 10px;
  position: relative;
}

header #top-header.top-heading .top-header-img .logo a img {
  width: 220px;
}

#close-menu {
  background-color: #fff;
  height: 79.4px;
  padding: 0px -15px;
  margin: 0px -15px;
  position: relative;
}
#close-menu .cross {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 40px;
  cursor: pointer;
}
#close-menu .cross span.line1, #close-menu .cross span.line2 {
  position: absolute;
  display: block;
  background-color: #5c5c5c;
  width: 70%;
  top: 16px;
  left: 7px;
  transform: rotate(45deg);
  height: 4px;
}
#close-menu .cross span.line2 {
  transform: rotate(-45deg);
}

header #top-header.top-heading .top-menu-block {
  display: flex;
  justify-content: space-around;
  height: 45px;
  margin-top: 28px !important;
}

header #top-header.top-heading .top-menu-block nav ul {
  display: flex;
  position: relative;
}

header #top-header.top-heading .top-menu-block nav ul li:hover a {
  color: #f59b0b;
}

header #top-header.top-heading .top-menu-block nav ul li {
  position: relative;
  z-index: 0;
}

header #top-header.top-heading .top-menu-block nav ul li .cross {
  cursor: pointer;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 7px;
  right: -30px;
  z-index: 2;
}

header #top-header.top-heading .top-menu-block nav ul li a {
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  font-size: 19px;
  display: block;
  padding: 15px 20px;
  text-decoration: none;
  color: #fff;
  text-transform: uppercase;
  transition: 0.3s all ease;
  position: relative;
  z-index: 999;
}

header #top-header.top-heading .top-menu-block nav ul li a.orange-link {
  color: #f59b0b;
}

header #top-header.top-heading .top-menu-block nav ul li a span.top-menu-img {
  position: absolute;
  right: -650px;
  transform: translateX(-50%);
  top: 0;
  display: block;
  background-size: cover;
  background-position: center center;
  width: 300px;
  height: 200px;
  z-index: 9999999999;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s all ease-in;
  border: 2px solid #fff;
  border-radius: 2px;
}

header #top-header.top-heading .top-menu-block nav ul li a:hover > span.top-menu-img {
  opacity: 1;
  visibility: visible;
  right: -450px;
}

header #top-header.top-heading .top-menu-block nav ul li ul {
  position: absolute;
  z-index: 99999999999999;
  background: rgba(255, 255, 255, 0.9);
  flex-direction: column;
  top: 50px;
  opacity: 0;
  visibility: hidden;
  padding: 15px;
}

header #top-header.top-heading .top-menu-block nav ul li ul li a {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  margin: 0;
  padding: 7px;
  text-transform: none;
  font-size: 18px;
  display: block;
  min-width: 200px;
  color: #3e3f3f !important;
}

header #top-header.top-heading .top-menu-block nav ul li ul li a:hover {
  color: #f59b0b !important;
}

header #top-header.top-heading .top-menu-block nav ul li:hover ul {
  position: absolute;
  z-index: 9999999;
  top: 42px;
  opacity: 1;
  visibility: visible;
}

header #top-header.top-heading .top-header-right-block {
  display: flex;
  justify-content: flex-end;
  height: 30px;
  margin-top: 28px !important;
}

.burger-menu {
  display: flex;
  justify-content: flex-end;
}
.burger-menu .burger {
  cursor: pointer;
  width: 50px;
  height: 40px;
  border: 2px solid gray;
  position: relative;
}
.burger-menu .burger span.line1, .burger-menu .burger span.line2, .burger-menu .burger span.line3 {
  position: absolute;
  display: block;
  background-color: #fff;
  height: 3px;
  width: 60%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s all ease;
}
.burger-menu .burger span.line2 {
  top: 70%;
}
.burger-menu .burger span.line3 {
  top: 30%;
}
.burger-menu .burger.opened span.line3 {
  left: 20%;
  top: 48%;
  transform: rotate(45deg);
}
.burger-menu .burger.opened span.line2 {
  left: 20%;
  top: 48%;
  transform: rotate(-45deg);
}
.burger-menu .burger.opened span.line1 {
  left: 225%;
  visibility: hidden;
  opacity: 0;
}

header #top-header.top-heading .top-header-right-block .search-block {
  position: relative;
  margin-top: 13px;
  margin-right: 40px;
}

header #top-header.top-heading .top-header-right-block .search-block a {
  color: #fff;
  text-decoration: none;
  font-size: 20px;
}

header #top-header.top-heading .top-header-right-block .search-block a:hover {
  color: #f59b0b;
}

header #top-header.top-heading .top-header-right-block .search-block .search-field {
  position: absolute;
  top: 23px;
  right: -20px;
  transition: 0.5s all ease;
  visibility: hidden;
  opacity: 0;
}

header #top-header.top-heading .top-header-right-block .search-block .search-field form input {
  padding: 10px 20px;
  width: 500px;
}

header #top-header.top-heading .top-header-right-block .search-block:hover .search-field {
  visibility: visible;
  opacity: 1;
}

header #top-header.top-heading .top-header-right-block .lang-block {
  position: relative;
  display: flex;
  margin-top: 5px;
  margin-right: 30px;
}

header #top-header.top-heading .top-header-right-block .lang-block a {
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  display: block;
  margin: 12px 0;
  font-size: 16px;
  color: #fff;
  text-decoration: none;
}
header #top-header.top-heading .top-header-right-block .lang-block a i {
  font-style: normal;
}

header #top-header.top-heading .top-header-right-block .lang-block a:hover {
  color: #f59b0b;
}

header #top-header.top-heading .top-header-right-block .lang-block a span {
  margin-right: 7px;
  display: inline-block;
  width: 17px;
  height: 15px;
  background-size: cover;
  background-position: center center;
}

header #top-header.top-heading .top-header-right-block .lang-block ul {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 0 20px;
  top: 35px;
  left: -20px;
  z-index: 999;
  transition: 0.5s all ease;
  opacity: 0;
  visibility: hidden;
}

header #top-header.top-heading .top-header-right-block .lang-block ul li a {
  display: flex;
  color: #fff;
}

header #top-header.top-heading .top-header-right-block .lang-block ul li a span {
  margin-right: 10px;
  display: inline-block;
  width: 20px;
  height: 17px;
  background-size: cover;
  background-position: center center;
}

header #top-header.top-heading .top-header-right-block .lang-block:hover ul {
  opacity: 1;
  visibility: visible;
}

header #top-header.top-heading .top-header-right-block .login-block {
  position: relative;
  padding: 10px;
}

header #top-header.top-heading .top-header-right-block .login-block a {
  display: block;
  width: 22px;
  height: 22px;
  background-position: center center;
}

header #top-header.top-heading .top-header-right-block .login-block .login-form {
  position: absolute;
  top: 37px;
  right: 0;
  z-index: 9999;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.8);
  transition: 0.5s all ease;
  visibility: hidden;
  opacity: 0;
}

header #top-header.top-heading .top-header-right-block .login-block .login-form a.auth-btn {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 40px;
  text-align: center;
  border: 1px solid #fff;
  padding: 15px;
  text-decoration: none;
}

header #top-header.top-heading .top-header-right-block .login-block .login-form a.auth-btn:hover {
  color: #3e3f3f;
  background-color: #fff;
}

header #top-header.top-heading .top-header-right-block .login-block .login-form a.auth-btn:nth-child(2) {
  margin-top: 15px;
}

header #top-header.top-heading .top-header-right-block .login-block .login-form form input {
  padding: 10px;
  margin-bottom: 10px;
  background-color: rgba(255, 255, 255, 0.9);
  border: 1px solid #f59b0b;
}

header #top-header.top-heading .top-header-right-block .login-block .login-form form a {
  color: #fff;
  text-decoration: none;
  width: 100%;
  margin: 0 0 10px 10px;
  font-size: 15px;
}

header #top-header.top-heading .top-header-right-block .login-block .login-form form a:hover {
  color: #f59b0b;
}

header #top-header.top-heading .top-header-right-block .login-block .login-form form button {
  width: 100%;
  padding: 10px;
  border: none;
}

header #top-header.top-heading .top-header-right-block .login-block .login-form form a.register-btn {
  margin: 10px 0 0 10px;
  display: inline-block;
}

header #top-header.top-heading .top-header-right-block .login-block:hover .login-form {
  visibility: visible;
  opacity: 1;
}

header .top-heading-footer {
  margin-top: 75px !important;
  position: relative;
  z-index: 2;
}

header .top-heading-footer .top-heading-footer-block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 0 20px 20px;
}

header .top-heading-footer .top-heading-footer-block h3 {
  font-family: "Oswald", sans-serif;
  font-weight: 200;
  font-size: 30px;
  color: #f59b0b;
  line-height: 20px;
}

header .top-heading-footer .top-heading-footer-block .socials {
  display: flex;
  align-items: center;
}

header .top-heading-footer .top-heading-footer-block .socials a {
  color: #f59b0b;
  padding: 0 10px;
  font-size: 20px;
  text-decoration: none;
}

header .top-heading-footer .top-heading-footer-block .socials a.socials-phone {
  color: #3e3f3f;
  font-size: 18px;
  margin-top: 8px;
  margin-right: 20px;
}

header .top-heading-footer .top-heading-footer-block .socials a.socials-phone:hover {
  color: #f59b0b;
}

header .top-heading-footer .top-heading-footer-block .socials a i {
  display: inline-block;
  width: 15px;
  height: 15px;
  background-size: cover;
  background-position: center center;
}

header .top-heading-footer .top-heading-footer-block .socials a:hover {
  color: #3e3f3f;
}

section.header-slider {
  min-height: 81vh;
}

section.header-slider .top-header-slider {
  min-height: 81vh;
  overflow: hidden;
}

section.header-slider .top-header-slider .slider-item {
  display: block;
  width: 100%;
  min-height: 81vh;
  background-size: cover;
  background-repeat: no-repeat;
  text-decoration: none;
  background-position: center center;
}

section.header-slider .top-header-slider .slider-item.slick-active .slider-item-content h1 {
  -webkit-animation: 1s ease-in forwards move_h1;
  animation: 1s ease-in forwards move_h1;
}

section.header-slider .top-header-slider .slider-item.slick-active .slider-item-content p {
  -webkit-animation: 1.2s ease-in forwards move_h1;
  animation: 1.2s ease-in forwards move_h1;
}

section.header-slider .top-header-slider .slider-item.slick-active .slider-item-content a {
  -webkit-animation: 1.4s ease-in forwards move_h1;
  animation: 1.4s ease-in forwards move_h1;
}

section.header-slider .top-header-slider .slider-item.slick-active .slider-item-content::before {
  -webkit-animation: 1s ease-in forwards show_before;
  animation: 1s ease-in forwards show_before;
}

section.header-slider .top-header-slider .slider-item .slider-item-content {
  min-width: 400px;
  max-width: 700px;
  padding: 40px 50px;
  position: relative;
}

section.header-slider .top-header-slider .slider-item .slider-item-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 110%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
  opacity: 0;
  visibility: hidden;
}

section.header-slider .top-header-slider .slider-item .slider-item-content h1, section.header-slider .top-header-slider .slider-item .slider-item-content p, section.header-slider .top-header-slider .slider-item .slider-item-content a {
  top: 50px;
  opacity: 0;
  visibility: hidden;
  position: relative;
  z-index: 2;
}

section.header-slider .top-header-slider .slider-item .slider-item-content h1 {
  color: #fff;
  font-size: 45px;
  line-height: 65px;
  padding-right: 50px;
  font-weight: 700;
  font-family: "Roboto Condensed", sans-serif;
  text-transform: uppercase;
}

section.header-slider .top-header-slider .slider-item .slider-item-content p {
  color: #fff;
  font-weight: normal;
  font-family: "Roboto Condensed", sans-serif;
  margin: 20px 0 30px;
  font-size: 24px;
  line-height: 30px;
}

section.header-slider .top-header-slider .slider-item .slider-item-content a {
  border: 1px solid #fff;
  padding: 10px 20px;
  display: inline-block;
  font-weight: 400;
  margin-top: 5px;
  font-family: "Roboto Condensed", sans-serif;
  color: #fff;
  transition: 0.5s all ease;
  font-size: 20px;
  text-decoration: none;
}

section.header-slider .top-header-slider .slider-item .slider-item-content a:hover {
  background-color: #fff;
  color: #3e3f3f;
}

section.second {
  margin-top: -25px;
}

section.second .col-md-6, section.second .col-lg-6, section.second .col-xl-3 {
  padding: 5px;
  margin-bottom: 2px;
}

section.second a.second-content {
  display: block;
  margin-right: 2px;
  color: #fff;
  text-decoration: none;
  border: 10px solid #fff;
  height: 225px;
  background-size: cover;
  background-position: center center;
  overflow: hidden;
}

section.second a.second-content p.second-content-desc {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  padding: 20px 20px 20px 20px;
  height: 82px;
  background-color: rgba(0, 0, 0, 0.5);
  transition: 0.3s all ease;
  position: relative;
  text-align: center;
  font-family: "Roboto Condensed", sans-serif;
}

section.second a.second-content p.second-content-desc .second-content-desc-title {
  font-weight: bold;
  text-transform: uppercase;
  width: 100%;
  font-size: 20px;
}

section.second a.second-content p.second-content-desc .second-content-desc-details {
  transition: 0.3s all ease;
  height: 0;
  opacity: 0;
  visibility: hidden;
  font-size: 19px;
}

section.second a.second-content:hover p.second-content-desc {
  height: 225px;
}

section.second a.second-content:hover p.second-content-desc span.second-content-desc-details {
  height: auto;
  opacity: 1;
  visibility: visible;
}

section.about {
  overflow: hidden;
  padding-top: 10px;
  margin-top: 50px;
}

section.about .about-desc h2 {
  color: #f59b0b;
}

section.about .about-desc blockquote {
  margin-top: 20px;
  background-color: #3e3f3f;
  padding: 20px 10px 20px 50px;
  line-height: 25px;
  position: relative;
  color: #fff;
  font-size: 18px;
}

section.about .about-desc blockquote p {
  margin-top: 0;
}

section.about .about-desc blockquote::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 10px;
  height: 100%;
  background-color: #f59b0b;
}

section.about .about-desc p {
  margin-top: 20px;
  line-height: 25px;
  font-size: 18px;
}

section.about .about-desc a {
  display: inline-block;
  margin: 20px 0;
  border: 1px solid #f59b0b;
  padding: 15px 20px;
  text-decoration: none;
  transition: 0.5s all ease;
  color: #f59b0b;
  font-size: 20px;
}

section.about .about-desc a:hover {
  color: #fff;
  background-color: #f59b0b;
}

section.about .about-img {
  height: 350px;
  background-size: cover;
  background-position: center center;
  transition: 0.5s all ease;
  position: relative;
}

section.about .about-img:hover {
  transform: scale(1.05);
}

section.products {
  margin-top: 40px;
}

section.products .container .product-items-block .row {
  width: 100%;
  margin: 0 auto;
}

section.products .col-md-6 {
  padding: 5px;
}

section.products .products-heading {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

section.products .products-heading h2 {
  text-transform: uppercase;
  color: #3e3f3f;
  font-size: 50px;
}

section.products .products-heading a {
  display: inline-block;
  padding: 15px 20px;
  text-decoration: none;
  transition: 0.5s all ease;
  color: #3e3f3f;
  font-size: 20px;
  font-weight: bold;
}

section.products .products-heading a:hover {
  color: #f59b0b;
}

section.products .product-items-block {
  width: 100%;
}

section.products .product-items-block .product-item {
  margin-bottom: 5px;
  position: relative;
  overflow: hidden;
}

section.products .product-items-block .product-item > a {
  width: 100%;
  height: 360px;
  display: inline-block;
  background-size: cover;
  background-position: center center;
  overflow: hidden;
  position: relative;
  text-decoration: none;
}

section.products .product-items-block .product-item a h3 {
  padding: 15px 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 75px;
  width: 100%;
  color: #3e3f3f;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: bold;
  font-size: 20px;
  background-color: rgba(255, 255, 255, 0.8);
  margin-top: 285px;
  transition: 0.5s all ease;
}

section.products .product-items-block .product-item a:hover h3 {
  background-color: #f59b0b;
  color: #fff;
}

section.products .product-items-block .product-item .product-links {
  background-color: rgba(255, 255, 255, 0.8);
  color: #3e3f3f;
  position: absolute;
  top: 280px;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  visibility: visible;
  transition: 0.3s all ease-in-out;
}
section.products .product-items-block .product-item .product-links a {
  font-size: 24px;
  padding: 20px 20px 20px 20px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80px;
  width: 100%;
  color: #3e3f3f;
  text-decoration: none;
}
section.products .product-items-block .product-item .product-links ul {
  margin-top: 10px;
  padding: 0 20px 0 40px;
  height: 250px;
  overflow-y: auto;
}
section.products .product-items-block .product-item .product-links ul li a {
  font-size: 22px;
  display: inline-block;
  height: 50px;
  color: #fff;
  position: relative;
  text-decoration: none;
}
section.products .product-items-block .product-item .product-links ul li a:hover {
  color: #222 !important;
}
section.products .product-items-block .product-item .product-links ul li a:hover:before {
  background-color: #222;
}

section.products .product-items-block .product-item:hover .product-links a {
  color: #fff;
  background-color: #f59b0b;
}

section.subscribe {
  margin-top: 40px;
  padding: 100px 0;
  color: #fff;
  background-size: cover;
  background-position: top center;
}

section.subscribe .col-xl-3, section.subscribe .col-xl-4, section.subscribe .col-xl-5 {
  padding: 0;
}

section.subscribe .subscribe-block {
  padding: 50px 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

section.subscribe .subscribe-block p {
  font-size: 20px;
  padding: 0 20px;
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 1px 0 1px #000, 0 1px 2px #000, -1px 0 1px #000, 0 -1px 1px #000;
}

section.subscribe .subscribe-block form {
  margin-bottom: 50px;
  display: flex;
}

section.subscribe .subscribe-block form input {
  padding: 15px 10px 15px 20px;
  background-color: rgba(255, 255, 255, 0);
  border: 1px solid #fff;
  margin: 0 10px 0 0;
  width: 300px;
  color: #fff;
}

section.subscribe .subscribe-block form input::-moz-placeholder {
  color: #fff;
}

section.subscribe .subscribe-block form input:-ms-input-placeholder {
  color: #fff;
}

section.subscribe .subscribe-block form input::placeholder {
  color: #fff;
}

section.subscribe .subscribe-block form button {
  border: 1px solid #fff;
  color: #fff;
  padding: 15px 20px;
  background-color: rgba(255, 255, 255, 0);
  transition: 0.5s all ease;
}

section.subscribe .subscribe-block form button:hover {
  color: #f59b0b;
  background-color: #fff;
}

section.subscribe .subscribe-block ul.subscribe-socials {
  display: flex;
  flex-flow: wrap;
  justify-content: center;
}

section.subscribe .subscribe-block ul.subscribe-socials li {
  margin: 0 10px 8px 0;
}

section.subscribe .subscribe-block ul.subscribe-socials li a {
  padding: 15px 20px;
  color: #fff;
  font-size: 22px;
  text-decoration: none;
}

section.subscribe .subscribe-block ul.subscribe-socials li a:hover {
  color: #f59b0b;
}

section.news {
  margin: 50px 0;
}

section.news .news-item {
  border: 1px solid #c1c1c1;
  padding: 20px 30px 60px;
  margin-bottom: 20px;
  min-height: 220px;
  position: relative;
}

section.news .news-item:hover {
  background-color: #c1c1c1;
}

section.news .news-item:hover a.news-item-btn {
  border: 1px solid #fff;
  color: #fff;
}

section.news .news-item h2 {
  font-weight: 800;
}

section.news .news-item p {
  margin: 10px 0;
}

section.news .news-item a.news-item-btn {
  position: absolute;
  bottom: 20px;
  left: 30px;
  border: 1px solid #f59b0b;
  padding: 15px 20px;
  color: #f59b0b;
  text-decoration: none;
  transition: 0.5s all ease;
}

section.news .news-item a.news-item-btn:hover {
  background-color: #f59b0b;
  color: #fff;
  border: 1px solid #f59b0b;
}

footer {
  padding: 80px 0 0;
  background-color: #37404d;
}

footer h4 {
  font-size: 20px;
  color: #f59b0b;
  position: relative;
  padding-bottom: 10px;
  text-transform: uppercase;
}

footer h4::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  border-bottom: 1px solid #c1c1c1;
}

footer ul {
  margin: 20px 0px;
}

footer ul li {
  padding: 5px 0;
}

footer ul li a {
  color: #c1c1c1;
}

footer ul li a:hover {
  text-decoration: none;
  color: gray;
}

footer ul li a i {
  display: inline-block;
  position: relative;
  top: 1px;
  width: 20px;
  height: 15px;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}

footer ul.footer-social {
  display: flex;
}

footer ul.footer-social li a {
  margin: 0 10px;
  font-size: 25px;
}

footer .footer-rights {
  margin-top: 60px;
  padding: 20px 0;
  color: #f1f1f1;
  background-color: #212730;
}
footer .footer-rights .container {
  display: flex;
  justify-content: space-between;
}
footer .footer-rights .container a {
  margin-top: 10px;
  color: #fff;
}

@-webkit-keyframes move_h1 {
  from {
    top: 50px;
    opacity: 0;
    visibility: hidden;
  }
  to {
    top: 0;
    opacity: 1;
    visibility: visible;
  }
}
@keyframes move_h1 {
  from {
    top: 50px;
    opacity: 0;
    visibility: hidden;
  }
  to {
    top: 0;
    opacity: 1;
    visibility: visible;
  }
}
@-webkit-keyframes show_before {
  from {
    opacity: 0;
    visibility: hidden;
  }
  to {
    opacity: 1;
    visibility: visible;
  }
}
@keyframes show_before {
  from {
    opacity: 0;
    visibility: hidden;
  }
  to {
    opacity: 1;
    visibility: visible;
  }
}
.booklet {
  display: flex;
  align-items: center;
  margin: 20px 0;
}

.booklet a {
  border: none;
  padding: 0;
}

.booklet .booklet-details h2, .booklet .booklet-details a {
  margin-left: 20px;
}

section.privacy-policy {
  margin: 50px 0;
}
section.privacy-policy h2 {
  text-align: center;
  margin: 30px 0;
}
section.privacy-policy p {
  margin: 10px 0;
}

section#news-page .about-page-block a.big-button {
  display: inline-block;
  margin: 5px 0;
  border: 1px solid #f59b0b;
  padding: 10px 20px;
  text-decoration: none;
  transition: 0.5s all ease;
  font-size: 20px;
  color: #f59b0b;
}
section#news-page .about-page-block a.big-button:hover {
  background-color: #f59b0b;
  color: #fff;
}

section.articles-filter {
  margin-top: 50px;
}
section.articles-filter .search-block form input {
  padding: 10px;
  width: 87%;
  border: 1px solid #3e3f3f;
  height: 43px;
}
section.articles-filter .search-block form input::-moz-placeholder {
  font-size: 15px;
}
section.articles-filter .search-block form input:-ms-input-placeholder {
  font-size: 15px;
}
section.articles-filter .search-block form input::placeholder {
  font-size: 15px;
}
section.articles-filter .search-block form button {
  border: 1px solid #3e3f3f;
  background-color: #616161;
  color: #fff;
  padding: 10px;
  margin-left: -5px;
  position: relative;
  top: 2px;
  height: 43px;
  width: 43px;
  transition: 0.5s all ease;
}
section.articles-filter .search-block form button:hover {
  background-color: #f59b0b;
}
section.articles-filter .subscribe-block form input {
  padding: 10px;
  width: 60%;
  height: 43px;
  margin-top: 1px;
  border: 1px solid #3e3f3f;
}
section.articles-filter .subscribe-block form input::-moz-placeholder {
  font-size: 15px;
}
section.articles-filter .subscribe-block form input:-ms-input-placeholder {
  font-size: 15px;
}
section.articles-filter .subscribe-block form input::placeholder {
  font-size: 15px;
}
section.articles-filter .subscribe-block form button {
  border: 1px solid #3e3f3f;
  background-color: #fff;
  color: #616161;
  margin-left: -5px;
  position: relative;
  top: 1px;
  height: 43px;
  width: 40%;
  font-size: 15px;
  transition: 0.5s all ease;
}
section.articles-filter .subscribe-block form button:hover {
  background-color: #616161;
  color: #fff;
}
section.articles-filter .date-block {
  display: flex;
  justify-content: flex-end;
}
section.articles-filter .date-block form {
  margin-left: 20px;
}
section.articles-filter .date-block form select {
  width: 95px;
  margin-top: 2px;
  padding: 10px;
  border: 1px solid #3e3f3f;
  color: #616161;
}

section.articles {
  margin-top: 40px;
  margin-bottom: 40px;
}
section.articles .col-xl-4 {
  padding: 0 5px;
}
section.articles .article-item {
  margin-bottom: 10px;
  position: relative;
  padding: 10px;
  height: 420px;
}
section.articles .article-item > a.article-img {
  background-color: orange;
  display: block;
  height: 250px;
  background-size: cover;
  background-position: center center;
}
section.articles .article-item p.article-date {
  margin-top: 5px;
  width: 50%;
  background-color: #3e3f3f;
  color: #fff;
  padding: 7px;
  font-size: 15px;
}
section.articles .article-item h2 {
  font-size: 20px;
  margin: 10px 0;
  font-weight: normal;
  text-align: justify;
  text-transform: uppercase;
}
section.articles .article-item h2 a {
  color: #3e3f3f;
  text-decoration: none;
}
section.articles .article-item:hover a.article-img {
  transform: scale(1.02);
}
section.articles .article-item:hover h2 a {
  color: #f59b0b;
}
section.articles .articles-paginate {
  margin: 75px 0;
  display: flex;
  justify-content: center;
}
section.articles .articles-paginate nav div.flex, section.articles .articles-paginate nav p.text-sm {
  display: none;
}
section.articles .articles-paginate nav svg {
  width: 20px;
}
section.articles .articles-paginate nav span.current {
  color: red;
}
section.articles .articles-paginate nav ul li {
  margin: 10px;
}
section.articles .articles-paginate nav ul li.page-item:last-child a.page-link, section.articles .articles-paginate nav ul li.page-item:first-child a.page-link {
  background-color: #fff;
  color: #9e9f9f;
  top: -10px;
  font-size: 30px;
}
section.articles .articles-paginate nav ul li.page-item:last-child a.page-link:hover, section.articles .articles-paginate nav ul li.page-item:first-child a.page-link:hover {
  color: #f59b0b;
  background-color: #fff;
}
section.articles .articles-paginate nav ul li.page-item a.page-link {
  border: none;
  background-color: #9e9f9f;
  color: #fff;
}
section.articles .articles-paginate nav ul li.page-item a.page-link:hover {
  background-color: #f59b0b;
}
section.articles .articles-paginate nav ul li.page-item span.page-link {
  border: none;
}
section.articles .articles-paginate nav ul li.page-item.active span.page-link {
  border: none;
  background-color: #f59b0b !important;
}

/*
*
* Page Loaders
* --------------------------------------------------
*/
#page-loader {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 20px 10%;
  z-index: 9999999999999;
  background: #f59b0b;
  transition: 0.3s all ease;
}

#page-loader.loaded {
  opacity: 0;
  visibility: hidden;
  z-index: -1;
}

#page-loader.ending {
  display: none;
}

#page-loader > * {
  width: 100%;
  text-align: center;
}

#page-loader .page-loader-body {
  margin-top: 40px;
  text-align: center;
}

[data-x-mode=design-mode] #page-loader {
  display: none;
}

#loadingProgressG {
  width: 400px;
  max-width: 90%;
  height: 5px;
  overflow: hidden;
  background: #2a2a2a;
  border-radius: 0;
  margin: auto;
}

.loadingProgressG {
  background: #fff;
  margin-top: 0;
  margin-left: -400px;
  -webkit-animation-name: bounce_loadingProgressG;
  animation-name: bounce_loadingProgressG;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  width: 400px;
  height: 5px;
}

@-webkit-keyframes bounce_loadingProgressG {
  0% {
    margin-left: -400px;
  }
  100% {
    margin-left: 400px;
  }
}
@keyframes bounce_loadingProgressG {
  0% {
    margin-left: -400px;
  }
  100% {
    margin-left: 400px;
  }
}
section.downloads {
  margin: 50px 0;
}
section.downloads .col-md-12 {
  padding-right: 30px;
}
section.downloads .download-item {
  padding: 25px 20px 20px 40px;
  margin: 20px 0;
  background-color: #ededed;
  min-height: 570px;
}
section.downloads .download-item h3 {
  text-transform: uppercase;
  color: #3e3f3f;
  font-size: 28px;
  min-height: 70px;
}
section.downloads .download-item .download-item-content {
  display: flex;
  justify-content: space-between;
  flex-flow: row-reverse;
}
section.downloads .download-item .download-item-content .download-links {
  margin: 20px 0 30px 0;
  width: 100%;
  height: 110px;
  overflow: hidden;
  padding-top: 10px;
  overflow-y: auto;
  padding-left: 30px;
}
section.downloads .download-item .download-item-content .download-links.book {
  width: 48%;
  height: 330px;
}
section.downloads .download-item .download-item-content .download-links a {
  position: relative;
  color: #f59b0b;
  display: block;
  text-decoration: none;
  margin-bottom: 20px;
}
section.downloads .download-item .download-item-content .download-links a:hover {
  color: #3e3f3f;
}
section.downloads .download-item .download-item-content .download-links a i {
  font-size: 30px;
  position: absolute;
  left: -30px;
  top: -10px;
}
section.downloads .download-item .download-item-content .download-img {
  width: 47%;
}
section.downloads .download-item .download-item-content .download-img a {
  display: block;
  width: 100%;
  height: 456px;
  background-size: cover;
  background-position: center bottom;
}
section.downloads .download-item .download-item-content .download-img a:hover {
  transform: scale(1.02);
}
section.downloads .album .download-item h3 {
  min-height: 36px;
}
section.downloads .album .download-item .download-item-content {
  display: block;
  flex-direction: column;
}
section.downloads .album .download-item .download-item-content .download-links {
  margin-top: 15px;
  height: 86px;
}
section.downloads .album .download-item .download-item-content .download-img {
  position: absolute;
  bottom: 40px;
  width: 75%;
}
section.downloads .album .download-item .download-item-content .download-img a {
  height: 384px;
}

section#products .product-items-block .download-item:hover h3 {
  color: #f59b0b;
}
section#products .product-items-block .download-item:hover .download-item-content .download-img a {
  transform: scale(1.05);
}
section#products .product-items-block .download-item {
  padding: 25px 20px 50px 40px;
  height: 366px !important;
}
section#products .product-items-block .download-item h3 {
  font-size: 35px;
}
section#products .product-items-block .download-item .download-item-content .download-links {
  margin: 0;
  padding-top: 0;
}
section#products .product-items-block .download-item .download-item-content .download-links a {
  font-size: 20px;
  position: relative;
}
section#products .product-items-block .download-item .download-item-content .download-links a:before {
  content: "";
  position: absolute;
  top: 6px;
  left: -23px;
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: #f59b0b;
}
section#products .product-items-block .download-item .download-item-content .download-img {
  width: 49%;
}
section#products .product-items-block .download-item .download-item-content .download-img a {
  height: 330px;
}
section#products .product-items-block .yellow .download-item {
  background-color: #f59b0b;
}
section#products .product-items-block .yellow .download-item h3, section#products .product-items-block .yellow .download-item .download-item-content a {
  color: #fff;
}
section#products .product-items-block .yellow .download-item .download-item-content a:hover {
  color: #222;
}
section#products .product-items-block .yellow .download-item .download-links a:before {
  background-color: #fff;
}

section.about-page {
  margin: 50px 0;
}
section.about-page .about-page-block {
  padding-left: 160px;
  padding-right: 140px;
  text-align: justify;
}
section.about-page .about-page-block h1 {
  text-transform: uppercase;
  color: #3e3f3f;
  font-weight: 600;
  font-size: 40px;
  margin: 0 0 20px;
}
section.about-page .about-page-block h1 strong, section.about-page .about-page-block h1 strong span {
  font-weight: bold;
}
section.about-page .about-page-block h1 span {
  font-weight: 400;
  font-size: 40px;
}
section.about-page .about-page-block h2 {
  font-weight: 400;
  color: #3e3f3f;
  font-size: 40px;
  margin: 0 0 20px;
}
section.about-page .about-page-block h2 strong, section.about-page .about-page-block h2 strong span {
  font-weight: bold;
}
section.about-page .about-page-block h2 span {
  font-weight: 400;
  font-size: 40px;
}
section.about-page .about-page-block h3 {
  font-weight: 400;
  color: #3e3f3f;
  font-size: 30px;
  margin: 0 0 20px;
}
section.about-page .about-page-block h3 strong, section.about-page .about-page-block h3 strong span {
  font-weight: bold;
}
section.about-page .about-page-block h3 span {
  font-weight: 400;
  font-size: 30px;
}
section.about-page .about-page-block p {
  margin: 30px 0 40px;
  font-size: 18px;
  line-height: 30px;
}
section.about-page .about-page-block blockquote {
  border-left: 10px solid #f59b0b;
  background-color: #333333;
  color: #fff;
  margin: 50px 0;
  padding: 20px 60px;
}
section.about-page .about-page-block .gray blockquote {
  border-left: 10px solid #f59b0b;
  background-color: #eee;
  color: #5c5c5c;
  margin: 50px 0;
  padding: 10px 60px;
}
section.about-page .about-page-block .yellow blockquote {
  border-left: 10px solid #333333;
  background-color: #f59b0b;
  color: #fff;
  font-style: italic;
  margin: 50px 0;
  padding: 10px 60px;
}
section.about-page .about-page-block ul {
  margin-bottom: 40px;
}
section.about-page .about-page-block ul li {
  font-size: 21px;
  margin: 10px 0 10px 40px;
  line-height: 30px;
  position: relative;
}
section.about-page .about-page-block ul li::before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: #f59b0b;
  top: 9px;
  left: -20px;
}
section.about-page .about-page-block .booklet {
  position: relative;
}
section.about-page .about-page-block .booklet a {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%);
  display: inline-block;
  color: #f59b0b;
  text-transform: uppercase;
  font-size: 25px;
  margin-left: 100px;
  text-decoration: none;
}
section.about-page .about-page-block .booklet a::after {
  content: "";
  background-image: url("/img/download-to-storage-drive.png");
  background-position: center center;
  background-size: cover;
  position: absolute;
  width: 40px;
  height: 40px;
  top: -5px;
  left: -60px;
}
section.about-page .about-page-block table {
  margin-bottom: 40px;
}
section.about-page .about-page-block table thead th {
  text-align: center;
  text-transform: uppercase;
  font-size: 30px !important;
  font-weight: normal;
  background-color: #f2b70d;
  color: #fff;
}
section.about-page .about-page-block table tr, section.about-page .about-page-block table td, section.about-page .about-page-block table thead th {
  font-size: 16px;
  padding: 10px;
}
section.about-page .about-page-block table tr p, section.about-page .about-page-block table td p, section.about-page .about-page-block table thead th p {
  margin: 0;
  padding: 0;
  line-height: 16px;
  font-size: 16px;
}
section.about-page .about-page-block table tr, section.about-page .about-page-block table td {
  border: 1px solid #3e3f3f;
}
section.about-page .about-page-block table tr:nth-child(1) {
  color: #f2b70d;
}
section.about-page .about-page-block table tr:nth-child(2), section.about-page .about-page-block table tr:nth-child(4), section.about-page .about-page-block table tr:nth-child(6), section.about-page .about-page-block table tr:nth-child(8), section.about-page .about-page-block table tr:nth-child(10), section.about-page .about-page-block table tr:nth-child(12), section.about-page .about-page-block table tr:nth-child(14), section.about-page .about-page-block table tr:nth-child(16), section.about-page .about-page-block table tr:nth-child(18), section.about-page .about-page-block table tr:nth-child(20), section.about-page .about-page-block table tr:nth-child(22), section.about-page .about-page-block table tr:nth-child(24), section.about-page .about-page-block table tr:nth-child(26), section.about-page .about-page-block table tr:nth-child(28), section.about-page .about-page-block table tr:nth-child(30), section.about-page .about-page-block table tr:nth-child(32), section.about-page .about-page-block table tr:nth-child(34), section.about-page .about-page-block table tr:nth-child(36), section.about-page .about-page-block table tr:nth-child(38), section.about-page .about-page-block table tr:nth-child(40) {
  background-color: #f2b70d;
}
section.about-page .about-page-img {
  position: relative;
  height: 100%;
}
section.about-page .about-page-img .about-page-join {
  display: block;
  position: sticky;
  top: 40px;
  left: 0;
}
section.about-page .about-page-img .about-page-join p {
  margin-top: 20px;
  font-size: 25px;
  font-weight: 600;
  color: #000;
}
section.about-page .about-page-img .about-page-join a {
  margin: 10px 5px;
  color: #f59b0b;
  font-size: 20px;
  text-decoration: none;
  border: 1px solid #f59b0b;
  padding: 12px 10px;
  text-align: center;
  width: 45px;
}
section.about-page .about-page-img .about-page-join a:hover {
  background-color: #f59b0b;
  color: #fff;
}
section.about-page .about-page-img .about-page-join .about-contacts-block span {
  display: block;
  margin-top: 20px;
}
section.about-page .about-page-img .about-page-join .about-contacts-block a {
  color: inherit;
  display: block;
  font-weight: 400;
  width: 100%;
  border: none;
  text-align: left;
  padding: 0;
  margin: 10px 0 0 30px;
  position: relative;
  font-size: 15px;
}
section.about-page .about-page-img .about-page-join .about-contacts-block a:hover {
  color: #f59b0b;
  background-color: transparent;
}
section.about-page .about-page-img .about-page-join .about-contacts-block a i {
  position: absolute;
  color: #f59b0b;
  top: 0;
  left: -30px;
}

section#breadcrumbs {
  height: 600px;
}
section#breadcrumbs .breadcrumb-block h2 {
  text-transform: none;
}

section.product-item-page .product-item-page-header {
  margin: 30px 0;
  display: flex;
  justify-content: flex-end;
}
section.product-item-page .product-item-page-header a {
  margin-left: 30px;
}
section.product-item-page .product-item-page-header a i {
  color: #f59b0b;
  font-size: 35px;
  transition: 0.5s all ease;
}
section.product-item-page .product-item-page-header a:hover i {
  color: #616161;
}
section.product-item-page .product-item-page-block {
  padding-left: 160px;
  padding-right: 140px;
  text-align: justify;
}
section.product-item-page .product-item-page-block .btgrid {
  margin-top: 40px !important;
}
section.product-item-page .product-item-page-block .btgrid .row {
  padding-left: 160px;
  padding-right: 140px;
}
section.product-item-page .product-item-page-block .btgrid .row .col-md-6 {
  padding-left: 0;
  padding-right: 0;
}
section.product-item-page .product-item-page-block .btgrid .row .col-md-6:first-child {
  padding-right: 20px;
}
section.product-item-page .product-item-page-block .btgrid .row .col-md-6:last-child {
  padding-left: 20px;
}
section.product-item-page .product-item-page-block .btgrid .row p {
  margin: 0 !important;
}
section.product-item-page .product-item-page-block h1 {
  text-transform: uppercase;
  color: #f59b0b;
  font-weight: 600;
  font-size: 40px;
  margin: 40px 0 20px;
}
section.product-item-page .product-item-page-block h2 {
  color: #f59b0b;
  font-weight: 400;
  font-size: 40px;
  margin: 40px 0 20px;
}
section.product-item-page .product-item-page-block h3 {
  color: #f59b0b;
  font-weight: 400;
  font-size: 30px;
  margin: 40px 0 20px;
}
section.product-item-page .product-item-page-block p {
  margin: 30px 0 40px;
  font-size: 21px;
  line-height: 30px;
}
section.product-item-page .product-item-page-block img {
  display: inline-block;
  margin: 10px;
}
section.product-item-page .product-item-page-block blockquote {
  border-left: 10px solid #f59b0b;
  background-color: #333333;
  color: #fff;
  margin: 50px 0;
  padding: 20px 60px;
}
section.product-item-page .product-item-page-block blockquote p {
  width: 65%;
}
section.product-item-page .product-item-page-block .yellow blockquote {
  border-left: 10px solid #333333;
  background-color: #f59b0b;
  color: #fff;
  font-style: italic;
  margin: 50px 0;
  padding: 10px 60px;
}
section.product-item-page .product-item-page-block .yellow blockquote p {
  width: 65%;
}
section.product-item-page .product-item-page-block ul {
  margin-bottom: 40px;
}
section.product-item-page .product-item-page-block ul li {
  font-size: 18px;
  margin: 10px 0 10px 40px;
  line-height: 30px;
  position: relative;
}
section.product-item-page .product-item-page-block ul li::before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: #f59b0b;
  top: 9px;
  left: -35px;
}
section.product-item-page .product-item-page-block .booklet {
  position: relative;
}
section.product-item-page .product-item-page-block .booklet a {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: inline-block;
  color: #f59b0b;
  text-transform: uppercase;
  font-size: 25px;
  margin-left: 100px;
  text-decoration: none;
}
section.product-item-page .product-item-page-block .booklet a::after {
  content: "";
  background-image: url("/img/download-to-storage-drive.png");
  background-position: center center;
  background-size: cover;
  position: absolute;
  width: 40px;
  height: 40px;
  top: -5px;
  left: -60px;
}
section.product-item-page .product-item-page-block table {
  margin-left: -160px !important;
  width: 1600px !important;
  margin-bottom: 40px;
}
section.product-item-page .product-item-page-block table thead th {
  text-align: center;
  text-transform: uppercase;
  font-size: 30px !important;
  font-weight: normal;
  background-color: #f2b70d;
  color: #fff;
}
section.product-item-page .product-item-page-block table tr, section.product-item-page .product-item-page-block table td, section.product-item-page .product-item-page-block table thead th {
  font-size: 16px;
  padding: 10px;
}
section.product-item-page .product-item-page-block table tr p, section.product-item-page .product-item-page-block table td p, section.product-item-page .product-item-page-block table thead th p {
  margin: 0;
  padding: 0;
  line-height: 16px;
  font-size: 16px;
}
section.product-item-page .product-item-page-block table tr, section.product-item-page .product-item-page-block table td {
  border: 1px solid #3e3f3f;
}
section.product-item-page .product-item-page-block table td:first-child {
  padding: 0 20px 0 40px;
}
section.product-item-page .product-item-page-block table tr td:first-child {
  min-width: 300px;
}
section.product-item-page .product-item-page-block table tr:nth-child(1) {
  color: #f2b70d;
}
section.product-item-page .product-item-page-block table tr:nth-child(2), section.product-item-page .product-item-page-block table tr:nth-child(4), section.product-item-page .product-item-page-block table tr:nth-child(6), section.product-item-page .product-item-page-block table tr:nth-child(8), section.product-item-page .product-item-page-block table tr:nth-child(10), section.product-item-page .product-item-page-block table tr:nth-child(12), section.product-item-page .product-item-page-block table tr:nth-child(14), section.product-item-page .product-item-page-block table tr:nth-child(16), section.product-item-page .product-item-page-block table tr:nth-child(18), section.product-item-page .product-item-page-block table tr:nth-child(20), section.product-item-page .product-item-page-block table tr:nth-child(22), section.product-item-page .product-item-page-block table tr:nth-child(24), section.product-item-page .product-item-page-block table tr:nth-child(26), section.product-item-page .product-item-page-block table tr:nth-child(28), section.product-item-page .product-item-page-block table tr:nth-child(30), section.product-item-page .product-item-page-block table tr:nth-child(32), section.product-item-page .product-item-page-block table tr:nth-child(34), section.product-item-page .product-item-page-block table tr:nth-child(36), section.product-item-page .product-item-page-block table tr:nth-child(38), section.product-item-page .product-item-page-block table tr:nth-child(40) {
  background-color: #f2b70d;
}
section.product-item-page .product-item-page-block a.button {
  display: inline-block;
  margin: 20px 0;
  border: 1px solid #f59b0b;
  padding: 15px 20px;
  text-decoration: none;
  transition: 0.5s all ease;
  font-size: 20px;
  color: #f59b0b;
}
section.product-item-page .product-item-page-block a.button:hover {
  background-color: #f59b0b;
  color: #fff;
}
section.product-item-page .product-item-page-block a.booklet {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  display: inline-block;
  color: #f59b0b;
  font-size: 20px;
  margin-left: 45px;
  text-decoration: none;
}
section.product-item-page .product-item-page-block a.booklet::after {
  content: "";
  background-image: url("/img/download-to-storage-drive.png");
  background-position: center center;
  background-size: cover;
  position: absolute;
  width: 30px;
  height: 30px;
  top: 0;
  left: -40px;
}

.booklet {
  display: flex;
  align-items: center;
  margin: 20px 0;
}
.booklet a {
  border: none;
  padding: 0;
}
.booklet .booklet-details h2, .booklet .booklet-details a {
  margin-left: 20px;
}

#products .product-items-block .download-item a {
  display: inline-block;
  text-decoration: none;
}
#products .product-items-block .download-item a h3 {
  display: inline-block;
}
#products .product-items-block .download-item a:hover h3 {
  color: #f59b0b;
}

@media only screen and (max-width: 920px) {
  section#breadcrumbs {
    height: 300px !important;
  }
}
@media only screen and (max-width: 580px) {
  section.product-item-page.custom .product-item-page-block .btgrid .row {
    padding-left: 15px;
  }
  section.product-item-page.custom .product-item-page-block .btgrid .row img {
    margin: 20px 0;
  }
  section.product-item-page.custom .product-item-page-block .btgrid .row .col-md-6 {
    padding-right: 0;
  }
  section.product-item-page.custom .product-item-page-block .btgrid .row .col-md-6:last-child {
    padding-left: 0;
  }
}
section#news-page.about-page {
  margin-top: 100px;
}
section#news-page.about-page .news-item-header {
  display: flex;
  justify-content: space-between;
  padding-right: 60px;
  padding-left: 160px;
  margin-bottom: 20px;
  margin-top: -50px;
}
section#news-page.about-page .news-item-header .news-item-header-date {
  font-size: 20px;
  color: #f59b0b;
}
section#news-page.about-page .news-item-header .news-item-header-block {
  margin-top: -10px;
}
section#news-page.about-page .news-item-header .news-item-header-block a {
  margin-right: 30px;
  color: #f59b0b;
  font-size: 25px;
}
section#news-page.about-page .news-item-header .news-item-header-block a i {
  font-weight: 300;
}
section#news-page.about-page .news-item-header .news-item-header-block a i:hover {
  font-weight: 400;
}
section#news-page.about-page .about-page-block {
  padding-right: 60px;
}
section#news-page.about-page .about-page-block img {
  margin: 10px;
}
section#news-page.about-page .about-page-block p {
  font-size: 21px;
  margin-top: 0;
}
section#news-page.about-page .about-page-block ul li {
  line-height: 25px;
  list-style: none;
  margin-left: 25px;
}
section#news-page.about-page .about-page-block a.button {
  display: inline-block;
  margin: 5px 0;
  border: 1px solid #f59b0b;
  padding: 5px 20px;
  text-decoration: none;
  transition: 0.5s all ease;
  font-size: 20px;
  color: #f59b0b;
}
section#news-page.about-page .about-page-block a.button:hover {
  background-color: #f59b0b;
  color: #fff;
}
section#news-page.about-page .about-page-block p {
  margin-bottom: 10px;
}
section#news-page.about-page .about-page-block p a {
  margin: 20px 0 0 0;
}
section#news-page.about-page .about-page-block a.booklet {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  display: inline-block;
  color: #f59b0b;
  font-size: 20px;
  margin-left: 45px;
  text-decoration: none;
}
section#news-page.about-page .about-page-block a.booklet::after {
  content: "";
  background-image: url("/img/download-to-storage-drive.png");
  background-position: center center;
  background-size: cover;
  position: absolute;
  width: 30px;
  height: 30px;
  top: 0;
  left: -40px;
}
section#news-page.about-page .about-page-img .about-page-join .img-block a {
  margin: 0;
  padding: 0;
}
section#news-page.about-page .about-page-img .about-page-join .img-block a.img-slider-item {
  border: none;
}
section#news-page.about-page .about-page-img .about-page-join .img-block a.img-slider-item:hover {
  background-color: transparent;
}
section#news-page.about-page .about-page-img .about-page-join .img-block a img {
  transition: 0.5s all ease;
}
section#news-page.about-page .about-page-img .about-page-join .img-block a:hover img {
  transform: scale(1.02);
}
section#news-page.about-page .about-page-img .about-page-join .about-page-join-form {
  margin-top: 40px;
}
section#news-page.about-page .about-page-img .about-page-join .about-page-join-form form {
  display: flex;
}
section#news-page.about-page .about-page-img .about-page-join .about-page-join-form form input {
  padding: 20px;
  width: 65%;
  border: 1px solid #222;
  margin: 0;
  height: 64px;
}
section#news-page.about-page .about-page-img .about-page-join .about-page-join-form form button {
  border: 1px solid #222;
  width: 34%;
  padding: 20px;
  height: 64px;
  background-color: transparent;
  transition: 0.3s all ease;
}
section#news-page.about-page .about-page-img .about-page-join .about-page-join-form form button:hover {
  background-color: #f59b0b;
  color: #fff;
}
section#news-page.about-page .about-page-img .about-page-join .about-page-join-socials {
  margin-top: 15px;
}
section#news-page.about-page .about-page-img .about-page-join .about-page-join-socials a {
  margin: 25px 25px 0 0;
  padding: 20px;
  width: 76px;
  font-size: 30px;
}
section#news-page.about-page .about-page-img .about-page-join .about-page-join-socials a:nth-child(5), section#news-page.about-page .about-page-img .about-page-join .about-page-join-socials a:nth-child(10) {
  margin: 0 0 0 0;
}
section#news-page.about-page .about-page-img .about-page-join p {
  text-transform: uppercase;
  font-size: 27px;
  margin-top: 50px;
}
section#news-page.about-page .about-page-img .about-page-join .about-contacts-block span, section#news-page.about-page .about-page-img .about-page-join .about-contacts-block a {
  margin-left: 0;
  font-size: 20px;
}

section.section-block {
  background-color: #f59b0b;
}
section.section-block .container {
  position: relative;
}
section.section-block .container .background-title span {
  text-transform: uppercase;
  position: absolute;
  right: 0;
  bottom: -127px;
  font-size: 227px;
  font-family: "Oswald", sans-serif;
  font-style: normal;
  color: #f5aa31;
}

section.dealers {
  margin: 50px 0;
}
section.dealers .col-xl-6 {
  padding-right: 50px;
}
section.dealers .dealers-item {
  padding: 20px 25px;
  display: flex;
  flex-flow: column;
  min-height: 330px;
  background-color: #ededed;
  margin-bottom: 60px;
}
section.dealers .dealers-item h2 {
  color: #3e3f3f;
}
section.dealers .dealers-item a {
  padding-left: 25px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 20px;
  color: #f59b0b;
  text-decoration: none;
  position: relative;
}
section.dealers .dealers-item a i {
  color: #f59b0b;
  position: absolute;
  left: 0px;
}
section.dealers .dealers-item a:hover {
  color: #3e3f3f;
}

section.hf-dealer {
  margin-top: -50px;
  background-size: cover;
  background-position: center center;
  padding: 75px 75px 25px 75px;
}
section.hf-dealer h4 {
  font-size: 70px;
  font-weight: bold;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
}
section.hf-dealer .hf-dealer-img {
  margin-top: 40px;
  display: flex;
  justify-content: space-around;
  flex-flow: wrap;
}
section.hf-dealer .hf-dealer-img .hf-dealer-img-item {
  margin-bottom: 25px;
  width: 300px;
  height: 100px;
  background-size: cover;
  background-position: center center;
}

section.breadcrumbs {
  position: relative;
  z-index: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  padding: 0 0 100px;
}
section.breadcrumbs .breadcrumb-block {
  color: #fff;
  background-color: rgba(0, 0, 0, 0.2);
  padding: 30px 60px 30px 30px;
  min-width: 350px;
  min-height: 150px;
}
section.breadcrumbs .breadcrumb-block ul {
  display: flex;
}
section.breadcrumbs .breadcrumb-block ul li {
  margin-right: 30px;
  position: relative;
}
section.breadcrumbs .breadcrumb-block ul li a {
  color: #fff;
}
section.breadcrumbs .breadcrumb-block ul li::before {
  content: ">";
  position: absolute;
  width: 2px;
  height: 10px;
  top: 0;
  right: -14px;
}
section.breadcrumbs .breadcrumb-block ul li:last-child::before {
  content: "";
}
section.breadcrumbs .breadcrumb-block h2 {
  color: #fff;
  margin-top: 20px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 30px;
  letter-spacing: -0.5px;
}

section.contact .contact-info {
  background-color: #ededed;
  margin: 100px 0 40px;
  padding: 35px 50px 30px 70px;
  min-height: 369px;
}
section.contact .contact-info h2 {
  font-size: 32px;
}
section.contact .contact-info p {
  font-size: 20px;
  line-height: 25px;
  color: #f59b0b;
  margin-top: 20px;
  margin-bottom: 15px;
  position: relative;
}
section.contact .contact-info a {
  font-size: 20px;
  position: relative;
  color: #f59b0b;
  display: block;
  margin-bottom: 15px;
  text-decoration: none;
}
section.contact .contact-info a:hover {
  color: #222 !important;
}
section.contact .contact-info p:hover, section.contact .contact-info a:hover {
  color: #f59b0b;
}
section.contact .contact-info p i, section.contact .contact-info a i {
  color: #f59b0b;
  position: absolute;
  left: -32px;
}
section.contact .contact-info p i.contact-icon-map, section.contact .contact-info a i.contact-icon-map {
  left: -30px;
  top: 15px;
}
section.contact .contact-info p i.contact-icon-phone, section.contact .contact-info a i.contact-icon-phone {
  left: -29px;
}
section.contact .contact-form {
  background-color: #ededed;
  margin: 100px 0 20px;
  padding: 35px 75px 30px 80px;
}
section.contact .contact-form h2 {
  font-size: 32px;
  text-align: center;
}
section.contact .contact-form p {
  text-align: center;
}
section.contact .contact-form form input {
  border: 1px solid #3e3f3f;
  margin-top: 20px;
  width: 49%;
  padding: 10px 20px;
  background-color: transparent;
}
section.contact .contact-form form input::-moz-placeholder {
  color: #3e3f3f;
}
section.contact .contact-form form input:-ms-input-placeholder {
  color: #3e3f3f;
}
section.contact .contact-form form input::placeholder {
  color: #3e3f3f;
}
section.contact .contact-form form input.contact-form-btn {
  color: #3e3f3f;
  padding: 12px 20px;
  transition: 0.5s all ease;
  cursor: pointer !important;
}
section.contact .contact-form form input.contact-form-btn:hover {
  background-color: #f59b0b;
  color: #fff;
}
section.contact .contact-form form textarea {
  background-color: transparent;
  padding: 10px 20px;
  border: 1px solid #3e3f3f;
  margin-top: 20px;
  width: 99%;
  min-height: 100px;
}
section.contact .contact-form form textarea::-moz-placeholder {
  color: #3e3f3f;
}
section.contact .contact-form form textarea:-ms-input-placeholder {
  color: #3e3f3f;
}
section.contact .contact-form form textarea::placeholder {
  color: #3e3f3f;
}

section.contact-map {
  margin-top: 30px;
}

#kookies {
  position: fixed;
  left: 50%;
  transform: translate(-50%);
  z-index: 9999;
  transition: 1s all ease-in;
  visibility: visible;
  opacity: 1;
  width: 90%;
  -webkit-animation: 3s showCookies forwards ease-in;
          animation: 3s showCookies forwards ease-in;
}
#kookies #cookies {
  background-color: #3e3f3f;
  padding: 15px 50px;
  color: #fff;
  border: 1px solid #f59b0b;
}
#kookies #cookies h4 {
  font-size: 30px;
}
#kookies #cookies p {
  margin: 10px 0 20px 0;
}
#kookies #cookies a {
  color: #fff;
  border: 1px solid #fff;
  padding: 10px 20px;
  margin-right: 20px;
  display: inline-block;
  text-decoration: none;
}
#kookies #cookies a:hover {
  background-color: #fff;
  color: #3e3f3f;
}
#kookies.hide-cookies {
  visibility: hidden;
  opacity: 0;
}

@-webkit-keyframes showCookies {
  from {
    bottom: -220px;
  }
  to {
    bottom: 20px;
  }
}

@keyframes showCookies {
  from {
    bottom: -220px;
  }
  to {
    bottom: 20px;
  }
}
@media (max-width: 1200px) {
  header #top-header #top-menu-block {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    height: 100vh;
    width: 40%;
    z-index: 9999;
    background-color: #3e3f3f;
    top: 0;
    left: -1000px;
    transition: 0.5s all ease;
  }
  header #top-header #top-menu-block.opened {
    visibility: visible;
    opacity: 1;
    left: -2px;
  }
  header #top-header #top-menu-block .top-menu-block nav {
    width: 100%;
  }
  header #top-header #top-menu-block .top-menu-block nav ul {
    display: block;
  }
  header #top-header #top-menu-block .top-menu-block nav ul li {
    display: block;
    width: 90%;
    position: relative;
  }
  header #top-header #top-menu-block .top-menu-block nav ul li:after {
    content: "";
    position: absolute;
    width: 110%;
    display: block;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: darkgray;
  }
  header #top-header #top-menu-block .top-menu-block nav ul li .cross .line1, header #top-header #top-menu-block .top-menu-block nav ul li .cross .line2 {
    position: absolute;
    top: 10px;
    pointer-events: all;
    right: 10px;
    display: block;
    cursor: pointer;
    width: 5px;
    height: 20px;
    background-color: #fff;
  }
  header #top-header #top-menu-block .top-menu-block nav ul li .cross .line2 {
    transform: rotate(90deg);
  }
  header #top-header #top-menu-block .top-menu-block nav ul li ul {
    height: 0;
    position: relative;
    opacity: 0;
    top: 0;
    visibility: hidden;
    background-color: transparent;
    padding: 0;
  }
  header #top-header #top-menu-block .top-menu-block nav ul li ul.opened-submenu {
    opacity: 1;
    visibility: visible;
    height: auto;
  }
  header #top-header #top-menu-block .top-menu-block nav ul li ul li {
    padding: 5px 10px 5px 20px;
  }
  header #top-header #top-menu-block .top-menu-block nav ul li ul li a {
    color: #fff !important;
  }
}
@media (max-width: 1800px) {
  section.about-page .about-page-block table tr, section.about-page .about-page-block table td, section.about-page .about-page-block table thead th,
section.product-item-page .product-item-page-block table tr,
section.product-item-page .product-item-page-block table td,
section.product-item-page .product-item-page-block table thead th {
    font-size: 15px;
    padding: 10px 5px;
  }
}
@media (max-width: 1600px) {
  section.downloads .download-item {
    min-height: 500px;
  }

  section.downloads .download-item .download-item-content .download-img a {
    height: 370px;
  }

  section.downloads .album .download-item .download-item-content .download-img a {
    height: 300px;
  }

  section.product-item-page .product-item-page-block {
    padding-left: 15px;
    padding-right: 15px;
  }

  section.about-page .about-page-block blockquote p {
    width: 100%;
  }

  header #top-header .top-menu-block nav ul li a {
    font-size: 17px !important;
  }

  section.header-slider .top-header-slider .slider-item .slider-item-content h1 {
    font-size: 40px;
  }

  section.header-slider .top-header-slider .slider-item .slider-item-content p {
    font-size: 25px;
    line-height: 25px;
  }

  header #top-header.top-heading .top-menu-block nav ul li a {
    padding: 15px;
  }

  header #top-header.top-heading .top-header-img .logo a img {
    margin-top: 10px;
    width: 150px;
  }

  header #top-header.top-heading .top-menu-block {
    margin-top: 43px;
  }

  header #top-header.top-heading .top-header-right-block {
    margin-top: 42px;
  }
  header #top-header.top-heading .top-header-right-block .search-block {
    margin-right: 20px;
  }
  header #top-header.top-heading .top-header-right-block .lang-block {
    margin-right: 10px;
  }

  header .top-heading-footer {
    margin-top: 95px;
  }

  section.second a.second-content p.second-content-desc .second-content-desc-title {
    font-size: 17px;
    line-height: 17px;
  }

  section.second a.second-content p.second-content-desc .second-content-desc-details {
    font-size: 15px;
  }

  section.about-page .about-page-block table tr, section.about-page .about-page-block table td, section.about-page .about-page-block table thead th,
section.product-item-page .product-item-page-block table tr,
section.product-item-page .product-item-page-block table td,
section.product-item-page .product-item-page-block table thead th {
    font-size: 13px;
    padding: 10px 5px;
  }
  section.about-page .about-page-block table tr p, section.about-page .about-page-block table td p, section.about-page .about-page-block table thead th p,
section.product-item-page .product-item-page-block table tr p,
section.product-item-page .product-item-page-block table td p,
section.product-item-page .product-item-page-block table thead th p {
    font-size: 13px;
  }
  section.about-page .about-page-block table tr td:first-child,
section.product-item-page .product-item-page-block table tr td:first-child {
    min-width: 150px;
  }

  header .top-heading-footer .top-heading-footer-block {
    padding: 20px 0 20px 20px;
  }

  section.about-page .about-page-block {
    padding-left: 0;
  }

  section#news-page.about-page .news-item-header {
    padding-left: 0;
  }

  section#news-page.about-page .about-page-img .about-page-join .about-page-join-form form input {
    padding: 10px;
    height: 50px;
  }

  section#news-page.about-page .about-page-img .about-page-join .about-page-join-form form button {
    padding: 10px;
    height: 50px;
  }
}
@media (max-width: 1200px) {
  section.about-page .about-page-block table tr, section.about-page .about-page-block table td, section.about-page .about-page-block table thead th,
section.product-item-page .product-item-page-block table tr,
section.product-item-page .product-item-page-block table td,
section.product-item-page .product-item-page-block table thead th {
    font-size: 11px;
    padding: 10px 5px;
  }
  section.about-page .about-page-block table tr p, section.about-page .about-page-block table td p, section.about-page .about-page-block table thead th p,
section.product-item-page .product-item-page-block table tr p,
section.product-item-page .product-item-page-block table td p,
section.product-item-page .product-item-page-block table thead th p {
    font-size: 11px;
  }
  section.about-page .about-page-block table tr td:first-child,
section.product-item-page .product-item-page-block table tr td:first-child {
    max-width: 100px;
  }

  section.hf-dealer h4 {
    font-size: 50px;
  }

  section#news-page.about-page .about-page-block {
    padding-right: 10px;
  }

  section#news-page.about-page .about-page-img .about-page-join .about-page-join-form form button {
    font-size: 15px;
  }

  section#news-page.about-page .about-page-img .about-page-join .about-page-join-socials a {
    font-size: 20px;
    margin: 10px 10px 0 0 !important;
  }
}
@media (max-width: 992px) {
  header #top-header #top-menu-block {
    width: 50% !important;
  }

  header .top-heading-footer .top-heading-footer-block .socials .social-links {
    position: absolute;
    visibility: hidden;
    opacity: 0;
    right: 0;
    width: 100%;
    padding: 10px;
    top: 40px;
    background-color: #fff;
    transition: 0.5s all ease;
    display: flex;
    flex-flow: wrap;
    justify-content: center;
    z-index: 1;
  }
  header .top-heading-footer .top-heading-footer-block .socials .social-links .socials-phone {
    display: block;
    width: 100%;
    text-align: center;
  }
  header .top-heading-footer .top-heading-footer-block .socials .social-links.socials-show {
    visibility: visible;
    opacity: 1;
    top: 100%;
  }
  header .top-heading-footer .top-heading-footer-block .socials .social-links a {
    padding: 10px;
    margin: 5px;
  }

  header .top-heading-footer .top-heading-footer-block .socials #all-socials {
    font-size: 30px !important;
    margin-right: 10px;
  }

  section.dealers .col-xl-6 {
    padding-right: 15px;
  }
  section.dealers .dealers-item h2 {
    font-size: 25px;
  }

  section.hf-dealer h4 {
    font-size: 40px;
  }

  #kookies #cookies {
    display: flex;
    flex-flow: wrap;
    justify-content: center;
  }
  #kookies #cookies a {
    margin-top: 20px;
    text-align: center;
  }

  section#news-page .about-page-img {
    margin-top: 50px;
  }

  section#news-page .about-page-img .about-page-join .about-contacts-block {
    padding-bottom: 50px;
  }

  section#news-page .about-page-img .about-page-join .about-page-join-socials {
    display: flex;
    justify-content: center;
  }

  section#news-page .about-page-img .about-page-join p {
    text-align: center;
  }

  section#news-page .about-page-img .about-page-join .about-contacts-block * {
    text-align: center;
  }

  section.about-page .about-page-block h2 {
    text-align: center;
  }
}
@media (max-width: 768px) {
  section.about-page .about-page-block .booklet {
    margin-bottom: 80px;
  }

  section.about-page .about-page-block .booklet p {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
  }

  section.about-page .about-page-block .booklet p a {
    top: 105%;
    left: 33%;
  }

  section.product-item-page .product-item-page-block h1 {
    text-align: center;
    font-size: 30px;
  }

  section.product-item-page .product-item-page-block .booklet p {
    display: flex;
  }

  section.product-item-page .product-item-page-block .btgrid .row {
    padding-left: 0px;
    padding-right: 15px;
    display: flex;
    flex-direction: column;
  }

  section.product-item-page .product-item-page-block .booklet a {
    top: 100%;
  }

  section.product-item-page .product-item-page-block blockquote {
    padding: 20px;
  }

  section.product-item-page .product-item-page-block blockquote p {
    width: 100%;
  }

  section.contact .contact-form {
    padding: 35px 25px 30px 20px;
  }

  section.about-page .about-page-block h2 {
    font-size: 30px;
  }

  section#news-page.about-page .about-page-block img {
    margin: 0;
  }

  section#news-page .about-page-block .btgrid .row .col-md-6 {
    padding-left: 30px;
    padding-right: 0;
  }

  section#news-page .about-page-block .btgrid .row,
section#news-page .about-page-block .btgrid .row-1 {
    width: 100%;
    display: flex;
    flex-direction: column;
  }

  section#news-page.about-page .about-page-block blockquote p {
    font-size: 21px;
    line-height: 27px;
  }

  section.about-page .about-page-block blockquote {
    padding: 20px;
  }

  section.breadcrumbs .breadcrumb-block ul li a,
section.breadcrumbs .breadcrumb-block ul li {
    font-size: 12px;
  }

  section.breadcrumbs .breadcrumb-block ul li::before {
    right: -7px;
  }

  section.breadcrumbs .breadcrumb-block ul li {
    margin-right: 15px;
  }

  section.header-slider .top-header-slider .slider-item .slider-item-content h1 {
    font-size: 30px;
    line-height: 35px;
    padding: 0;
  }
  section.header-slider .top-header-slider .slider-item .slider-item-content p {
    font-size: 22px;
    line-height: 20px;
  }

  header #top-header.top-heading .top-header-right-block .search-block .search-field {
    top: 28px;
    right: -120px;
  }

  header #top-header.top-heading .top-header-right-block .search-block .search-field form input {
    width: 300px;
  }

  section.downloads .col-md-12 {
    padding-right: 0;
  }
  section.downloads .album .download-item {
    min-height: 420px;
  }
  section.downloads .album .download-item .download-item-content .download-img a {
    height: 200px;
  }
  section.downloads .download-item {
    min-height: 360px;
  }
  section.downloads .download-item .download-item-content .download-links.book {
    height: 200px;
  }
  section.downloads .download-item .download-item-content .download-img a {
    height: 250px;
  }

  section#products .product-items-block .download-item .download-item-content .download-img a {
    height: 210px;
  }

  section.articles-filter .subscribe-block {
    margin-top: 20px;
  }
  section.articles-filter .subscribe-block form {
    display: flex;
  }

  section.articles .article-item {
    height: 380px;
  }

  footer h4 {
    text-align: center;
  }
  footer ul li {
    text-align: center;
  }
  footer ul.footer-social {
    justify-content: center;
  }
  footer .footer-rights .container {
    flex-flow: wrap;
    justify-content: center;
  }
}
@media (max-width: 576px) {
  section.header-slider .top-header-slider .slider-item .slider-item-content h1 {
    font-size: 30px;
    line-height: 35px;
    padding: 0;
    text-align: center;
  }
  section.header-slider .top-header-slider .slider-item .slider-item-content p {
    font-size: 20px;
    line-height: 20px;
    text-align: center;
  }
  section.header-slider .top-header-slider .slider-item .slider-item-content a {
    display: flex;
    justify-content: center;
  }

  header .top-heading-footer .top-heading-footer-block h3 {
    font-size: 20px;
  }

  header #top-header #top-menu-block {
    min-width: 70% !important;
  }

  header #top-header .top-header-right-block .lang-block a i {
    display: none !important;
  }

  #cursor {
    display: none;
  }

  section.about .about-desc h2 {
    text-align: center;
  }
  section.about .about-desc p {
    text-align: justify;
  }
  section.about .about-desc a {
    display: block;
    width: 160px;
    text-align: center;
    margin: 10px auto 40px;
  }

  section.products .products-heading h2 {
    padding: 10px 20px;
    font-size: 25px;
  }

  section.subscribe .subscribe-block form {
    display: flex;
    flex-flow: wrap;
    justify-content: center;
  }
  section.subscribe .subscribe-block form input {
    margin-bottom: 20px;
  }

  footer .footer-subscribe-block .footer-subscribe {
    display: inline-block;
    text-align: center;
  }
  footer .footer-subscribe-block .footer-subscribe img {
    margin-bottom: 10px;
  }
  footer .footer-subscribe-block .footer-subscribe form input {
    margin-bottom: 20px;
  }

  section.hf-dealer h4 {
    font-size: 30px;
  }

  #kookies #cookies {
    padding: 10px 15px;
  }
  #kookies #cookies p {
    font-size: 15px;
  }
  #kookies #cookies a {
    margin: 5px 5px 0 0;
    font-size: 15px;
  }
}
@media (min-width: 1600px) {
  #products .container {
    width: 1400px !important;
    z-index: 1;
  }
  #products .container .product-items-block .row {
    z-index: 1;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    width: 1400px !important;
  }

  .container > {
    width: 1400px !important;
    z-index: 1;
  }
  .container > .row {
    z-index: 1;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    width: 1400px !important;
  }
}
@media (min-width: 1800px) {
  #products .container {
    width: 1600px !important;
    z-index: 1;
  }
  #products .container .product-items-block .row {
    z-index: 1;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    width: 1600px !important;
  }

  .container > {
    width: 1600px !important;
    z-index: 1;
  }
  .container > .row {
    z-index: 1;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    width: 1600px !important;
  }

  section.articles .article-item {
    height: 440px;
  }

  section.subscribe {
    padding: 150px 0;
  }

  section.breadcrumbs .breadcrumb-block {
    min-width: 500px;
    min-height: 200px;
  }

  section.section-block .container .background-title span {
    bottom: -77px;
  }

  section.hf-dealer h3 {
    font-size: 100px;
  }
  section.hf-dealer .hf-dealer-img .hf-dealer-img-item {
    width: 300px;
    height: 100px;
  }
}
@media (min-width: 1200px) {
  section.product-item-page .product-item-page-block .btgrid .row {
    padding-left: 15px;
    padding-right: 15px;
  }

  .burger-menu, #close-menu {
    display: none !important;
  }

  #top-header .container .row .col-xl-2, #top-header .container .row .col-6 {
    padding: 0;
    margin: 0;
  }
}
@media (min-width: 992px) {
  section.product-item-page .product-item-page-block .btgrid .row {
    padding-left: 15px;
    padding-right: 15px;
  }

  header .top-heading-footer .top-heading-footer-block .socials #all-socials {
    display: none;
  }
}
@media (min-width: 768px) {
  section.product-item-page .product-item-page-block .btgrid .row {
    padding-left: 15px;
    padding-right: 15px;
  }
}
