/**
 * Swiper 4.3.5
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * http://www.idangero.us/swiper/
 *
 * Copyright 2014-2018 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: July 31, 2018
 */
.swiper-container {
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
}
.swiper-container-no-flexbox .swiper-slide {
  float: left;
}
.swiper-container-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}
.swiper-container-android .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
  transform: translate3d(0px, 0, 0);
}
.swiper-container-multirow > .swiper-wrapper {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.swiper-container-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  margin: 0 auto;
}
.swiper-slide {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}
.swiper-invisible-blank-slide {
  visibility: hidden;
}
/* Auto Height */
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}
.swiper-container-autoheight .swiper-wrapper {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  -o-transition-property: transform, height;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform;
}
/* 3D Effects */
.swiper-container-3d {
  -webkit-perspective: 1200px;
  perspective: 1200px;
}
.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-container-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
/* IE10 Windows Phone 8 Fixes */
.swiper-container-wp8-horizontal,
.swiper-container-wp8-horizontal > .swiper-wrapper {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}
.swiper-container-wp8-vertical,
.swiper-container-wp8-vertical > .swiper-wrapper {
  -ms-touch-action: pan-x;
  touch-action: pan-x;
}
.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: 27px;
  height: 44px;
  margin-top: -22px;
  z-index: 10;
  cursor: pointer;
  background-size: 27px 44px;
  background-position: center;
  background-repeat: no-repeat;
}
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}
.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  left: 10px;
  right: auto;
}
.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  right: 10px;
  left: auto;
}
.swiper-button-prev.swiper-button-white,
.swiper-container-rtl .swiper-button-next.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-next.swiper-button-white,
.swiper-container-rtl .swiper-button-prev.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-prev.swiper-button-black,
.swiper-container-rtl .swiper-button-next.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-next.swiper-button-black,
.swiper-container-rtl .swiper-button-prev.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-lock {
  display: none;
}
.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: 300ms opacity;
  -o-transition: 300ms opacity;
  transition: 300ms opacity;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  z-index: 10;
}
.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}
/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 10px;
  left: 0;
  width: 100%;
}
/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
  position: relative;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -webkit-transform: scale(0.66);
  -ms-transform: scale(0.66);
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -webkit-transform: scale(0.66);
  -ms-transform: scale(0.66);
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
}
.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: 0.2;
}
button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}
.swiper-pagination-bullet-active {
  opacity: 1;
  background: #007aff;
}
.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0px, -50%, 0);
  transform: translate3d(0px, -50%, 0);
}
.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 6px 0;
  display: block;
}
.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 8px;
}
.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  -webkit-transition: 200ms top, 200ms -webkit-transform;
  transition: 200ms top, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms top;
  transition: 200ms transform, 200ms top;
  transition: 200ms transform, 200ms top, 200ms -webkit-transform;
}
.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px;
}
.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  white-space: nowrap;
}
.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms left, 200ms -webkit-transform;
  transition: 200ms left, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms left;
  transition: 200ms transform, 200ms left;
  transition: 200ms transform, 200ms left, 200ms -webkit-transform;
}
.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms right, 200ms -webkit-transform;
  transition: 200ms right, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms right;
  transition: 200ms transform, 200ms right;
  transition: 200ms transform, 200ms right, 200ms -webkit-transform;
}
/* Progress */
.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #007aff;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
}
.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
  -ms-transform-origin: right top;
  transform-origin: right top;
}
.swiper-container-horizontal > .swiper-pagination-progressbar,
.swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}
.swiper-container-vertical > .swiper-pagination-progressbar,
.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}
.swiper-pagination-white .swiper-pagination-bullet-active {
  background: #ffffff;
}
.swiper-pagination-progressbar.swiper-pagination-white {
  background: rgba(255, 255, 255, 0.25);
}
.swiper-pagination-progressbar.swiper-pagination-white .swiper-pagination-progressbar-fill {
  background: #ffffff;
}
.swiper-pagination-black .swiper-pagination-bullet-active {
  background: #000000;
}
.swiper-pagination-progressbar.swiper-pagination-black {
  background: rgba(0, 0, 0, 0.25);
}
.swiper-pagination-progressbar.swiper-pagination-black .swiper-pagination-progressbar-fill {
  background: #000000;
}
.swiper-pagination-lock {
  display: none;
}
/* Scrollbar */
.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}
.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}
.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}
.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}
.swiper-scrollbar-cursor-drag {
  cursor: move;
}
.swiper-scrollbar-lock {
  display: none;
}
.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}
.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.swiper-slide-zoomed {
  cursor: move;
}
/* Preloader */
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
  -ms-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
  animation: swiper-preloader-spin 1s steps(12, end) infinite;
}
.swiper-lazy-preloader:after {
  display: block;
  content: '';
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-position: 50%;
  background-size: 100%;
  background-repeat: no-repeat;
}
.swiper-lazy-preloader-white:after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
@-webkit-keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/* a11y */
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}
.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.swiper-container-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity;
}
.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-cube {
  overflow: visible;
}
.swiper-container-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}
.swiper-container-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-cube.swiper-container-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
  -ms-transform-origin: 100% 0;
  transform-origin: 100% 0;
}
.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-prev,
.swiper-container-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}
.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  -webkit-filter: blur(50px);
  filter: blur(50px);
  z-index: 0;
}
.swiper-container-flip {
  overflow: visible;
}
.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}
.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-flip .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.swiper-container-coverflow .swiper-wrapper {
  /* Windows 8 IE 10 fix */
  -ms-perspective: 1200px;
}
/*! normalize.css v7.0.0 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in
 *    IE on Windows Phone and in iOS.
 */

html {
  line-height: 1.15;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/* Sections
     ========================================================================== */

/**
   * Remove the margin in all browsers (opinionated).
   */

body {
  margin: 0;
}

/**
   * Add the correct display in IE 9-.
   */

article,
aside,
footer,
header,
nav,
section {
  display: block;
}

/**
   * Correct the font size and margin on `h1` elements within `section` and
   * `article` contexts in Chrome, Firefox, and Safari.
   */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
     ========================================================================== */

/**
   * Add the correct display in IE 9-.
   * 1. Add the correct display in IE.
   */

figcaption,
figure,
main {
  /* 1 */
  display: block;
}

/**
   * Add the correct margin in IE 8.
   */

figure {
  margin: 1em 40px;
}

/**
   * 1. Add the correct box sizing in Firefox.
   * 2. Show the overflow in Edge and IE.
   */

hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}

/**
   * 1. Correct the inheritance and scaling of font size in all browsers.
   * 2. Correct the odd `em` font sizing in all browsers.
   */

pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/* Text-level semantics
     ========================================================================== */

/**
   * 1. Remove the gray background on active links in IE 10.
   * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
   */

a {
  background-color: transparent;
  /* 1 */
  -webkit-text-decoration-skip: objects;
  /* 2 */
}

/**
   * 1. Remove the bottom border in Chrome 57- and Firefox 39-.
   * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
   */

abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  /* 2 */
}

/**
   * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
   */

b,
strong {
  font-weight: inherit;
}

/**
   * Add the correct font weight in Chrome, Edge, and Safari.
   */

b,
strong {
  font-weight: bolder;
}

/**
   * 1. Correct the inheritance and scaling of font size in all browsers.
   * 2. Correct the odd `em` font sizing in all browsers.
   */

code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/**
   * Add the correct font style in Android 4.3-.
   */

dfn {
  font-style: italic;
}

/**
   * Add the correct background and color in IE 9-.
   */

mark {
  background-color: #ff0;
  color: #000;
}

/**
   * Add the correct font size in all browsers.
   */

small {
  font-size: 80%;
}

/**
   * Prevent `sub` and `sup` elements from affecting the line height in
   * all browsers.
   */

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
     ========================================================================== */

/**
   * Add the correct display in IE 9-.
   */

audio,
video {
  display: inline-block;
}

/**
   * Add the correct display in iOS 4-7.
   */

audio:not([controls]) {
  display: none;
  height: 0;
}

/**
   * Remove the border on images inside links in IE 10-.
   */

img {
  border-style: none;
}

/**
   * Hide the overflow in IE.
   */

svg:not(:root) {
  overflow: hidden;
}

/* Forms
     ========================================================================== */

/**
   * 1. Change the font styles in all browsers (opinionated).
   * 2. Remove the margin in Firefox and Safari.
   */

button,
input,
optgroup,
select,
textarea {
  font-family: sans-serif;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */
}

/**
   * Show the overflow in IE.
   * 1. Show the overflow in Edge.
   */

button,
input {
  /* 1 */
  overflow: visible;
}

/**
   * Remove the inheritance of text transform in Edge, Firefox, and IE.
   * 1. Remove the inheritance of text transform in Firefox.
   */

button,
select {
  /* 1 */
  text-transform: none;
}

/**
   * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
   *    controls in Android 4.
   * 2. Correct the inability to style clickable types in iOS and Safari.
   */

button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
}

/**
   * Remove the inner border and padding in Firefox.
   */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
   * Restore the focus styles unset by the previous rule.
   */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
   * Correct the padding in Firefox.
   */

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
   * 1. Correct the text wrapping in Edge and IE.
   * 2. Correct the color inheritance from `fieldset` elements in IE.
   * 3. Remove the padding so developers are not caught out when they zero out
   *    `fieldset` elements in all browsers.
   */

legend {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}

/**
   * 1. Add the correct display in IE 9-.
   * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
   */

progress {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}

/**
   * Remove the default vertical scrollbar in IE.
   */

textarea {
  overflow: auto;
}

/**
   * 1. Add the correct box sizing in IE 10-.
   * 2. Remove the padding in IE 10-.
   */

[type="checkbox"],
[type="radio"] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
   * Correct the cursor style of increment and decrement buttons in Chrome.
   */

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
   * 1. Correct the odd appearance in Chrome and Safari.
   * 2. Correct the outline style in Safari.
   */

[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/**
   * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
   */

[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
   * 1. Correct the inability to style clickable types in iOS and Safari.
   * 2. Change font properties to `inherit` in Safari.
   */

::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/* Interactive
     ========================================================================== */

/*
   * Add the correct display in IE 9-.
   * 1. Add the correct display in Edge, IE, and Firefox.
   */

details,
menu {
  display: block;
}

/*
   * Add the correct display in all browsers.
   */

summary {
  display: list-item;
}

/* Scripting
     ========================================================================== */

/**
   * Add the correct display in IE 9-.
   */

canvas {
  display: inline-block;
}

/**
   * Add the correct display in IE.
   */

template {
  display: none;
}

/* Hidden
     ========================================================================== */

/**
   * Add the correct display in IE 10-.
   */

[hidden] {
  display: none;
}

/*  =====  reset  =====  */

body,
html {
  margin: 0;
  padding: 0;
  font-family: "roboto";
}

html {
  font-size: 16px;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

ul {
  list-style: none;
}

input {
  outline: none;
  font-family: "roboto";
}

button {
  outline: none;
  font-family: "roboto";
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}

.horizontal-line {
  border: 1px solid #e1e4e6;
}

.text--up {
  text-transform: uppercase;
}

/*  =====  reset end  =====  */

@font-face {
  font-family: "roboto";
  src: url("/fonts/roboto.ttf");
  font-style: normal;
  font-stretch: normal;
}

@font-face {
  font-family: "roboto-black";
  src: url("/fonts/Roboto-Black.ttf");
  font-style: normal;
  font-stretch: normal;
}

@font-face {
  font-family: "roboto-bold";
  src: url("/fonts/Roboto-Bold.ttf");
  font-style: normal;
  font-stretch: normal;
}

@font-face {
  font-family: "roboto-medium";
  src: url("/fonts/Roboto-Medium.ttf");
  font-style: normal;
  font-stretch: normal;
}

@font-face {
  font-family: "roboto-light";
  src: url("/fonts/Roboto-Light.ttf");
  font-style: normal;
  font-stretch: normal;
}

@font-face {
  font-family: "roboto-thin";
  src: url("/fonts/Roboto-Thin.ttf");
  font-style: normal;
  font-stretch: normal;
}

@font-face {
  font-family: "ubuntu-med";
  src: url("/fonts/Ubuntu-Medium.ttf");
  font-style: normal;
  font-stretch: normal;
}

@font-face {
  font-family: "ubuntu-reg";
  src: url("/fonts/Ubuntu-Regular.ttf");
  font-style: normal;
  font-stretch: normal;
}

/*  =====  flex  =====  */

/*  =====  flex end  =====  */

/*  =====  spacing helpers  =====  */

.m-t-0 {
  margin-top: 0px !important;
}

.p-t-0 {
  padding-top: 0px !important;
}

.m-b-0 {
  margin-bottom: 0px !important;
}

.p-b-0 {
  padding-bottom: 0px !important;
}

.m-l-0 {
  margin-left: 0px !important;
}

.p-l-0 {
  padding-left: 0px !important;
}

.m-r-0 {
  margin-right: 0px !important;
}

.p-r-0 {
  padding-right: 0px !important;
}

.m-t-5 {
  margin-top: 5px !important;
}

.p-t-5 {
  padding-top: 5px !important;
}

.m-b-5 {
  margin-bottom: 5px !important;
}

.p-b-5 {
  padding-bottom: 5px !important;
}

.m-l-5 {
  margin-left: 5px !important;
}

.p-l-5 {
  padding-left: 5px !important;
}

.m-r-5 {
  margin-right: 5px !important;
}

.p-r-5 {
  padding-right: 5px !important;
}

.m-t-10 {
  margin-top: 10px !important;
}

.p-t-10 {
  padding-top: 10px !important;
}

.m-b-10 {
  margin-bottom: 10px !important;
}

.p-b-10 {
  padding-bottom: 10px !important;
}

.m-l-10 {
  margin-left: 10px !important;
}

.p-l-10 {
  padding-left: 10px !important;
}

.m-r-10 {
  margin-right: 10px !important;
}

.p-r-10 {
  padding-right: 10px !important;
}

.m-t-15 {
  margin-top: 15px !important;
}

.p-t-15 {
  padding-top: 15px !important;
}

.m-b-15 {
  margin-bottom: 15px !important;
}

.p-b-15 {
  padding-bottom: 15px !important;
}

.m-l-15 {
  margin-left: 15px !important;
}

.p-l-15 {
  padding-left: 15px !important;
}

.m-r-15 {
  margin-right: 15px !important;
}

.p-r-15 {
  padding-right: 15px !important;
}

.m-t-20 {
  margin-top: 20px !important;
}

.p-t-20 {
  padding-top: 20px !important;
}

.m-b-20 {
  margin-bottom: 20px !important;
}

.p-b-20 {
  padding-bottom: 20px !important;
}

.m-l-20 {
  margin-left: 20px !important;
}

.p-l-20 {
  padding-left: 20px !important;
}

.m-r-20 {
  margin-right: 20px !important;
}

.p-r-20 {
  padding-right: 20px !important;
}

.m-t-25 {
  margin-top: 25px !important;
}

.p-t-25 {
  padding-top: 25px !important;
}

.m-b-25 {
  margin-bottom: 25px !important;
}

.p-b-25 {
  padding-bottom: 25px !important;
}

.m-l-25 {
  margin-left: 25px !important;
}

.p-l-25 {
  padding-left: 25px !important;
}

.m-r-25 {
  margin-right: 25px !important;
}

.p-r-25 {
  padding-right: 25px !important;
}

.m-t-30 {
  margin-top: 30px !important;
}

.p-t-30 {
  padding-top: 30px !important;
}

.m-b-30 {
  margin-bottom: 30px !important;
}

.p-b-30 {
  padding-bottom: 30px !important;
}

.m-l-30 {
  margin-left: 30px !important;
}

.p-l-30 {
  padding-left: 30px !important;
}

.m-r-30 {
  margin-right: 30px !important;
}

.p-r-30 {
  padding-right: 30px !important;
}

.m-t-35 {
  margin-top: 35px !important;
}

.p-t-35 {
  padding-top: 35px !important;
}

.m-b-35 {
  margin-bottom: 35px !important;
}

.p-b-35 {
  padding-bottom: 35px !important;
}

.m-l-35 {
  margin-left: 35px !important;
}

.p-l-35 {
  padding-left: 35px !important;
}

.m-r-35 {
  margin-right: 35px !important;
}

.p-r-35 {
  padding-right: 35px !important;
}

.m-t-40 {
  margin-top: 40px !important;
}

.p-t-40 {
  padding-top: 40px !important;
}

.m-b-40 {
  margin-bottom: 40px !important;
}

.p-b-40 {
  padding-bottom: 40px !important;
}

.m-l-40 {
  margin-left: 40px !important;
}

.p-l-40 {
  padding-left: 40px !important;
}

.m-r-40 {
  margin-right: 40px !important;
}

.p-r-40 {
  padding-right: 40px !important;
}

.m-t-45 {
  margin-top: 45px !important;
}

.p-t-45 {
  padding-top: 45px !important;
}

.m-b-45 {
  margin-bottom: 45px !important;
}

.p-b-45 {
  padding-bottom: 45px !important;
}

.m-l-45 {
  margin-left: 45px !important;
}

.p-l-45 {
  padding-left: 45px !important;
}

.m-r-45 {
  margin-right: 45px !important;
}

.p-r-45 {
  padding-right: 45px !important;
}

.m-t-50 {
  margin-top: 50px !important;
}

.p-t-50 {
  padding-top: 50px !important;
}

.m-b-50 {
  margin-bottom: 50px !important;
}

.p-b-50 {
  padding-bottom: 50px !important;
}

.m-l-50 {
  margin-left: 50px !important;
}

.p-l-50 {
  padding-left: 50px !important;
}

.m-r-50 {
  margin-right: 50px !important;
}

.p-r-50 {
  padding-right: 50px !important;
}

.m-t-60 {
  margin-top: 60px !important;
}

.p-t-60 {
  padding-top: 60px !important;
}

.m-b-60 {
  margin-bottom: 60px !important;
}

.p-b-60 {
  padding-bottom: 60px !important;
}

.m-l-60 {
  margin-left: 60px !important;
}

.p-l-60 {
  padding-left: 60px !important;
}

.m-r-60 {
  margin-right: 60px !important;
}

.p-r-60 {
  padding-right: 60px !important;
}

.m-t-75 {
  margin-top: 75px !important;
}

.p-t-75 {
  padding-top: 75px !important;
}

.m-b-75 {
  margin-bottom: 75px !important;
}

.p-b-75 {
  padding-bottom: 75px !important;
}

.m-l-75 {
  margin-left: 75px !important;
}

.p-l-75 {
  padding-left: 75px !important;
}

.m-r-75 {
  margin-right: 75px !important;
}

.p-r-75 {
  padding-right: 75px !important;
}

.m-t-90 {
  margin-top: 90px !important;
}

.p-t-90 {
  padding-top: 90px !important;
}

.m-b-90 {
  margin-bottom: 90px !important;
}

.p-b-90 {
  padding-bottom: 90px !important;
}

.m-l-90 {
  margin-left: 90px !important;
}

.p-l-90 {
  padding-left: 90px !important;
}

.m-r-90 {
  margin-right: 90px !important;
}

.p-r-90 {
  padding-right: 90px !important;
}

.m-t-100 {
  margin-top: 100px !important;
}

.p-t-100 {
  padding-top: 100px !important;
}

.m-b-100 {
  margin-bottom: 100px !important;
}

.p-b-100 {
  padding-bottom: 100px !important;
}

.m-l-100 {
  margin-left: 100px !important;
}

.p-l-100 {
  padding-left: 100px !important;
}

.m-r-100 {
  margin-right: 100px !important;
}

.p-r-100 {
  padding-right: 100px !important;
}

/*  =====  spacing helpers end  =====  */

.inline__block {
  display: inline-block;
}

.right {
  float: right;
}

.left {
  float: left;
}

.clear {
  clear: both;
}

.success-alert {
  background-color: #EEFAEA;
  color: #67c23a;
  padding: 20px;
  margin-top: 40px;
}
.error-alert {
  background-color: #faeaea;
  color: #c23a3a;
  padding: 20px;
  margin-top: 40px;
}

/*!
 *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */

@font-face {
  font-family: 'FontAwesome';
  src: url("/fonts/fontawesome-webfont.eot?v=4.7.0");
  src: url("/fonts/fontawesome-webfont.eot?#iefix&v=4.7.0") format("embedded-opentype"), url("/fonts/fontawesome-webfont.woff2?v=4.7.0") format("woff2"), url("/fonts/fontawesome-webfont.woff?v=4.7.0") format("woff"), url("/fonts/fontawesome-webfont.ttf?v=4.7.0") format("truetype"), url("/fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular") format("svg");
  font-weight: normal;
  font-style: normal;
}

.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.fa-lg {
  font-size: 1.33333333em;
  line-height: .75em;
  vertical-align: -15%;
}

.fa-2x {
  font-size: 2em;
}

.fa-3x {
  font-size: 3em;
}

.fa-4x {
  font-size: 4em;
}

.fa-5x {
  font-size: 5em;
}

.fa-fw {
  width: 1.28571429em;
  text-align: center;
}

.fa-ul {
  padding-left: 0;
  margin-left: 2.14285714em;
  list-style-type: none;
}

.fa-ul > li {
  position: relative;
}

.fa-li {
  position: absolute;
  left: -2.14285714em;
  width: 2.14285714em;
  top: .14285714em;
  text-align: center;
}

.fa-li.fa-lg {
  left: -1.85714286em;
}

.fa-border {
  padding: .2em .25em .15em;
  border: solid .08em #eee;
  border-radius: .1em;
}

.fa-pull-left {
  float: left;
}

.fa-pull-right {
  float: right;
}

.fa.fa-pull-left {
  margin-right: .3em;
}

.fa.fa-pull-right {
  margin-left: .3em;
}

.pull-right {
  float: right;
}

.pull-left {
  float: left;
}

.fa.pull-left {
  margin-right: .3em;
}

.fa.pull-right {
  margin-left: .3em;
}

.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}

.fa-pulse {
  -webkit-animation: fa-spin 1s infinite steps(8);
  animation: fa-spin 1s infinite steps(8);
}

@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}

@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}

.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  -webkit-transform: rotate(270deg);
  transform: rotate(270deg);
}

.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  -webkit-transform: scale(-1, 1);
  transform: scale(-1, 1);
}

.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  -webkit-transform: scale(1, -1);
  transform: scale(1, -1);
}

:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
  -webkit-filter: none;
          filter: none;
}

.fa-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle;
}

.fa-stack-1x,
.fa-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
}

.fa-stack-1x {
  line-height: inherit;
}

.fa-stack-2x {
  font-size: 2em;
}

.fa-inverse {
  color: #fff;
}

.fa-glass:before {
  content: "\F000";
}

.fa-music:before {
  content: "\F001";
}

.fa-search:before {
  content: "\F002";
}

.fa-envelope-o:before {
  content: "\F003";
}

.fa-heart:before {
  content: "\F004";
}

.fa-star:before {
  content: "\F005";
}

.fa-star-o:before {
  content: "\F006";
}

.fa-user:before {
  content: "\F007";
}

.fa-film:before {
  content: "\F008";
}

.fa-th-large:before {
  content: "\F009";
}

.fa-th:before {
  content: "\F00A";
}

.fa-th-list:before {
  content: "\F00B";
}

.fa-check:before {
  content: "\F00C";
}

.fa-remove:before,
.fa-close:before,
.fa-times:before {
  content: "\F00D";
}

.fa-search-plus:before {
  content: "\F00E";
}

.fa-search-minus:before {
  content: "\F010";
}

.fa-power-off:before {
  content: "\F011";
}

.fa-signal:before {
  content: "\F012";
}

.fa-gear:before,
.fa-cog:before {
  content: "\F013";
}

.fa-trash-o:before {
  content: "\F014";
}

.fa-home:before {
  content: "\F015";
}

.fa-file-o:before {
  content: "\F016";
}

.fa-clock-o:before {
  content: "\F017";
}

.fa-road:before {
  content: "\F018";
}

.fa-download:before {
  content: "\F019";
}

.fa-arrow-circle-o-down:before {
  content: "\F01A";
}

.fa-arrow-circle-o-up:before {
  content: "\F01B";
}

.fa-inbox:before {
  content: "\F01C";
}

.fa-play-circle-o:before {
  content: "\F01D";
}

.fa-rotate-right:before,
.fa-repeat:before {
  content: "\F01E";
}

.fa-refresh:before {
  content: "\F021";
}

.fa-list-alt:before {
  content: "\F022";
}

.fa-lock:before {
  content: "\F023";
}

.fa-flag:before {
  content: "\F024";
}

.fa-headphones:before {
  content: "\F025";
}

.fa-volume-off:before {
  content: "\F026";
}

.fa-volume-down:before {
  content: "\F027";
}

.fa-volume-up:before {
  content: "\F028";
}

.fa-qrcode:before {
  content: "\F029";
}

.fa-barcode:before {
  content: "\F02A";
}

.fa-tag:before {
  content: "\F02B";
}

.fa-tags:before {
  content: "\F02C";
}

.fa-book:before {
  content: "\F02D";
}

.fa-bookmark:before {
  content: "\F02E";
}

.fa-print:before {
  content: "\F02F";
}

.fa-camera:before {
  content: "\F030";
}

.fa-font:before {
  content: "\F031";
}

.fa-bold:before {
  content: "\F032";
}

.fa-italic:before {
  content: "\F033";
}

.fa-text-height:before {
  content: "\F034";
}

.fa-text-width:before {
  content: "\F035";
}

.fa-align-left:before {
  content: "\F036";
}

.fa-align-center:before {
  content: "\F037";
}

.fa-align-right:before {
  content: "\F038";
}

.fa-align-justify:before {
  content: "\F039";
}

.fa-list:before {
  content: "\F03A";
}

.fa-dedent:before,
.fa-outdent:before {
  content: "\F03B";
}

.fa-indent:before {
  content: "\F03C";
}

.fa-video-camera:before {
  content: "\F03D";
}

.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
  content: "\F03E";
}

.fa-pencil:before {
  content: "\F040";
}

.fa-map-marker:before {
  content: "\F041";
}

.fa-adjust:before {
  content: "\F042";
}

.fa-tint:before {
  content: "\F043";
}

.fa-edit:before,
.fa-pencil-square-o:before {
  content: "\F044";
}

.fa-share-square-o:before {
  content: "\F045";
}

.fa-check-square-o:before {
  content: "\F046";
}

.fa-arrows:before {
  content: "\F047";
}

.fa-step-backward:before {
  content: "\F048";
}

.fa-fast-backward:before {
  content: "\F049";
}

.fa-backward:before {
  content: "\F04A";
}

.fa-play:before {
  content: "\F04B";
}

.fa-pause:before {
  content: "\F04C";
}

.fa-stop:before {
  content: "\F04D";
}

.fa-forward:before {
  content: "\F04E";
}

.fa-fast-forward:before {
  content: "\F050";
}

.fa-step-forward:before {
  content: "\F051";
}

.fa-eject:before {
  content: "\F052";
}

.fa-chevron-left:before {
  content: "\F053";
}

.fa-chevron-right:before {
  content: "\F054";
}

.fa-plus-circle:before {
  content: "\F055";
}

.fa-minus-circle:before {
  content: "\F056";
}

.fa-times-circle:before {
  content: "\F057";
}

.fa-check-circle:before {
  content: "\F058";
}

.fa-question-circle:before {
  content: "\F059";
}

.fa-info-circle:before {
  content: "\F05A";
}

.fa-crosshairs:before {
  content: "\F05B";
}

.fa-times-circle-o:before {
  content: "\F05C";
}

.fa-check-circle-o:before {
  content: "\F05D";
}

.fa-ban:before {
  content: "\F05E";
}

.fa-arrow-left:before {
  content: "\F060";
}

.fa-arrow-right:before {
  content: "\F061";
}

.fa-arrow-up:before {
  content: "\F062";
}

.fa-arrow-down:before {
  content: "\F063";
}

.fa-mail-forward:before,
.fa-share:before {
  content: "\F064";
}

.fa-expand:before {
  content: "\F065";
}

.fa-compress:before {
  content: "\F066";
}

.fa-plus:before {
  content: "\F067";
}

.fa-minus:before {
  content: "\F068";
}

.fa-asterisk:before {
  content: "\F069";
}

.fa-exclamation-circle:before {
  content: "\F06A";
}

.fa-gift:before {
  content: "\F06B";
}

.fa-leaf:before {
  content: "\F06C";
}

.fa-fire:before {
  content: "\F06D";
}

.fa-eye:before {
  content: "\F06E";
}

.fa-eye-slash:before {
  content: "\F070";
}

.fa-warning:before,
.fa-exclamation-triangle:before {
  content: "\F071";
}

.fa-plane:before {
  content: "\F072";
}

.fa-calendar:before {
  content: "\F073";
}

.fa-random:before {
  content: "\F074";
}

.fa-comment:before {
  content: "\F075";
}

.fa-magnet:before {
  content: "\F076";
}

.fa-chevron-up:before {
  content: "\F077";
}

.fa-chevron-down:before {
  content: "\F078";
}

.fa-retweet:before {
  content: "\F079";
}

.fa-shopping-cart:before {
  content: "\F07A";
}

.fa-folder:before {
  content: "\F07B";
}

.fa-folder-open:before {
  content: "\F07C";
}

.fa-arrows-v:before {
  content: "\F07D";
}

.fa-arrows-h:before {
  content: "\F07E";
}

.fa-bar-chart-o:before,
.fa-bar-chart:before {
  content: "\F080";
}

.fa-twitter-square:before {
  content: "\F081";
}

.fa-facebook-square:before {
  content: "\F082";
}

.fa-camera-retro:before {
  content: "\F083";
}

.fa-key:before {
  content: "\F084";
}

.fa-gears:before,
.fa-cogs:before {
  content: "\F085";
}

.fa-comments:before {
  content: "\F086";
}

.fa-thumbs-o-up:before {
  content: "\F087";
}

.fa-thumbs-o-down:before {
  content: "\F088";
}

.fa-star-half:before {
  content: "\F089";
}

.fa-heart-o:before {
  content: "\F08A";
}

.fa-sign-out:before {
  content: "\F08B";
}

.fa-linkedin-square:before {
  content: "\F08C";
}

.fa-thumb-tack:before {
  content: "\F08D";
}

.fa-external-link:before {
  content: "\F08E";
}

.fa-sign-in:before {
  content: "\F090";
}

.fa-trophy:before {
  content: "\F091";
}

.fa-github-square:before {
  content: "\F092";
}

.fa-upload:before {
  content: "\F093";
}

.fa-lemon-o:before {
  content: "\F094";
}

.fa-phone:before {
  content: "\F095";
}

.fa-square-o:before {
  content: "\F096";
}

.fa-bookmark-o:before {
  content: "\F097";
}

.fa-phone-square:before {
  content: "\F098";
}

.fa-twitter:before {
  content: "\F099";
}

.fa-facebook-f:before,
.fa-facebook:before {
  content: "\F09A";
}

.fa-github:before {
  content: "\F09B";
}

.fa-unlock:before {
  content: "\F09C";
}

.fa-credit-card:before {
  content: "\F09D";
}

.fa-feed:before,
.fa-rss:before {
  content: "\F09E";
}

.fa-hdd-o:before {
  content: "\F0A0";
}

.fa-bullhorn:before {
  content: "\F0A1";
}

.fa-bell:before {
  content: "\F0F3";
}

.fa-certificate:before {
  content: "\F0A3";
}

.fa-hand-o-right:before {
  content: "\F0A4";
}

.fa-hand-o-left:before {
  content: "\F0A5";
}

.fa-hand-o-up:before {
  content: "\F0A6";
}

.fa-hand-o-down:before {
  content: "\F0A7";
}

.fa-arrow-circle-left:before {
  content: "\F0A8";
}

.fa-arrow-circle-right:before {
  content: "\F0A9";
}

.fa-arrow-circle-up:before {
  content: "\F0AA";
}

.fa-arrow-circle-down:before {
  content: "\F0AB";
}

.fa-globe:before {
  content: "\F0AC";
}

.fa-wrench:before {
  content: "\F0AD";
}

.fa-tasks:before {
  content: "\F0AE";
}

.fa-filter:before {
  content: "\F0B0";
}

.fa-briefcase:before {
  content: "\F0B1";
}

.fa-arrows-alt:before {
  content: "\F0B2";
}

.fa-group:before,
.fa-users:before {
  content: "\F0C0";
}

.fa-chain:before,
.fa-link:before {
  content: "\F0C1";
}

.fa-cloud:before {
  content: "\F0C2";
}

.fa-flask:before {
  content: "\F0C3";
}

.fa-cut:before,
.fa-scissors:before {
  content: "\F0C4";
}

.fa-copy:before,
.fa-files-o:before {
  content: "\F0C5";
}

.fa-paperclip:before {
  content: "\F0C6";
}

.fa-save:before,
.fa-floppy-o:before {
  content: "\F0C7";
}

.fa-square:before {
  content: "\F0C8";
}

.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
  content: "\F0C9";
}

.fa-list-ul:before {
  content: "\F0CA";
}

.fa-list-ol:before {
  content: "\F0CB";
}

.fa-strikethrough:before {
  content: "\F0CC";
}

.fa-underline:before {
  content: "\F0CD";
}

.fa-table:before {
  content: "\F0CE";
}

.fa-magic:before {
  content: "\F0D0";
}

.fa-truck:before {
  content: "\F0D1";
}

.fa-pinterest:before {
  content: "\F0D2";
}

.fa-pinterest-square:before {
  content: "\F0D3";
}

.fa-google-plus-square:before {
  content: "\F0D4";
}

.fa-google-plus:before {
  content: "\F0D5";
}

.fa-money:before {
  content: "\F0D6";
}

.fa-caret-down:before {
  content: "\F0D7";
}

.fa-caret-up:before {
  content: "\F0D8";
}

.fa-caret-left:before {
  content: "\F0D9";
}

.fa-caret-right:before {
  content: "\F0DA";
}

.fa-columns:before {
  content: "\F0DB";
}

.fa-unsorted:before,
.fa-sort:before {
  content: "\F0DC";
}

.fa-sort-down:before,
.fa-sort-desc:before {
  content: "\F0DD";
}

.fa-sort-up:before,
.fa-sort-asc:before {
  content: "\F0DE";
}

.fa-envelope:before {
  content: "\F0E0";
}

.fa-linkedin:before {
  content: "\F0E1";
}

.fa-rotate-left:before,
.fa-undo:before {
  content: "\F0E2";
}

.fa-legal:before,
.fa-gavel:before {
  content: "\F0E3";
}

.fa-dashboard:before,
.fa-tachometer:before {
  content: "\F0E4";
}

.fa-comment-o:before {
  content: "\F0E5";
}

.fa-comments-o:before {
  content: "\F0E6";
}

.fa-flash:before,
.fa-bolt:before {
  content: "\F0E7";
}

.fa-sitemap:before {
  content: "\F0E8";
}

.fa-umbrella:before {
  content: "\F0E9";
}

.fa-paste:before,
.fa-clipboard:before {
  content: "\F0EA";
}

.fa-lightbulb-o:before {
  content: "\F0EB";
}

.fa-exchange:before {
  content: "\F0EC";
}

.fa-cloud-download:before {
  content: "\F0ED";
}

.fa-cloud-upload:before {
  content: "\F0EE";
}

.fa-user-md:before {
  content: "\F0F0";
}

.fa-stethoscope:before {
  content: "\F0F1";
}

.fa-suitcase:before {
  content: "\F0F2";
}

.fa-bell-o:before {
  content: "\F0A2";
}

.fa-coffee:before {
  content: "\F0F4";
}

.fa-cutlery:before {
  content: "\F0F5";
}

.fa-file-text-o:before {
  content: "\F0F6";
}

.fa-building-o:before {
  content: "\F0F7";
}

.fa-hospital-o:before {
  content: "\F0F8";
}

.fa-ambulance:before {
  content: "\F0F9";
}

.fa-medkit:before {
  content: "\F0FA";
}

.fa-fighter-jet:before {
  content: "\F0FB";
}

.fa-beer:before {
  content: "\F0FC";
}

.fa-h-square:before {
  content: "\F0FD";
}

.fa-plus-square:before {
  content: "\F0FE";
}

.fa-angle-double-left:before {
  content: "\F100";
}

.fa-angle-double-right:before {
  content: "\F101";
}

.fa-angle-double-up:before {
  content: "\F102";
}

.fa-angle-double-down:before {
  content: "\F103";
}

.fa-angle-left:before {
  content: "\F104";
}

.fa-angle-right:before {
  content: "\F105";
}

.fa-angle-up:before {
  content: "\F106";
}

.fa-angle-down:before {
  content: "\F107";
}

.fa-desktop:before {
  content: "\F108";
}

.fa-laptop:before {
  content: "\F109";
}

.fa-tablet:before {
  content: "\F10A";
}

.fa-mobile-phone:before,
.fa-mobile:before {
  content: "\F10B";
}

.fa-circle-o:before {
  content: "\F10C";
}

.fa-quote-left:before {
  content: "\F10D";
}

.fa-quote-right:before {
  content: "\F10E";
}

.fa-spinner:before {
  content: "\F110";
}

.fa-circle:before {
  content: "\F111";
}

.fa-mail-reply:before,
.fa-reply:before {
  content: "\F112";
}

.fa-github-alt:before {
  content: "\F113";
}

.fa-folder-o:before {
  content: "\F114";
}

.fa-folder-open-o:before {
  content: "\F115";
}

.fa-smile-o:before {
  content: "\F118";
}

.fa-frown-o:before {
  content: "\F119";
}

.fa-meh-o:before {
  content: "\F11A";
}

.fa-gamepad:before {
  content: "\F11B";
}

.fa-keyboard-o:before {
  content: "\F11C";
}

.fa-flag-o:before {
  content: "\F11D";
}

.fa-flag-checkered:before {
  content: "\F11E";
}

.fa-terminal:before {
  content: "\F120";
}

.fa-code:before {
  content: "\F121";
}

.fa-mail-reply-all:before,
.fa-reply-all:before {
  content: "\F122";
}

.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
  content: "\F123";
}

.fa-location-arrow:before {
  content: "\F124";
}

.fa-crop:before {
  content: "\F125";
}

.fa-code-fork:before {
  content: "\F126";
}

.fa-unlink:before,
.fa-chain-broken:before {
  content: "\F127";
}

.fa-question:before {
  content: "\F128";
}

.fa-info:before {
  content: "\F129";
}

.fa-exclamation:before {
  content: "\F12A";
}

.fa-superscript:before {
  content: "\F12B";
}

.fa-subscript:before {
  content: "\F12C";
}

.fa-eraser:before {
  content: "\F12D";
}

.fa-puzzle-piece:before {
  content: "\F12E";
}

.fa-microphone:before {
  content: "\F130";
}

.fa-microphone-slash:before {
  content: "\F131";
}

.fa-shield:before {
  content: "\F132";
}

.fa-calendar-o:before {
  content: "\F133";
}

.fa-fire-extinguisher:before {
  content: "\F134";
}

.fa-rocket:before {
  content: "\F135";
}

.fa-maxcdn:before {
  content: "\F136";
}

.fa-chevron-circle-left:before {
  content: "\F137";
}

.fa-chevron-circle-right:before {
  content: "\F138";
}

.fa-chevron-circle-up:before {
  content: "\F139";
}

.fa-chevron-circle-down:before {
  content: "\F13A";
}

.fa-html5:before {
  content: "\F13B";
}

.fa-css3:before {
  content: "\F13C";
}

.fa-anchor:before {
  content: "\F13D";
}

.fa-unlock-alt:before {
  content: "\F13E";
}

.fa-bullseye:before {
  content: "\F140";
}

.fa-ellipsis-h:before {
  content: "\F141";
}

.fa-ellipsis-v:before {
  content: "\F142";
}

.fa-rss-square:before {
  content: "\F143";
}

.fa-play-circle:before {
  content: "\F144";
}

.fa-ticket:before {
  content: "\F145";
}

.fa-minus-square:before {
  content: "\F146";
}

.fa-minus-square-o:before {
  content: "\F147";
}

.fa-level-up:before {
  content: "\F148";
}

.fa-level-down:before {
  content: "\F149";
}

.fa-check-square:before {
  content: "\F14A";
}

.fa-pencil-square:before {
  content: "\F14B";
}

.fa-external-link-square:before {
  content: "\F14C";
}

.fa-share-square:before {
  content: "\F14D";
}

.fa-compass:before {
  content: "\F14E";
}

.fa-toggle-down:before,
.fa-caret-square-o-down:before {
  content: "\F150";
}

.fa-toggle-up:before,
.fa-caret-square-o-up:before {
  content: "\F151";
}

.fa-toggle-right:before,
.fa-caret-square-o-right:before {
  content: "\F152";
}

.fa-euro:before,
.fa-eur:before {
  content: "\F153";
}

.fa-gbp:before {
  content: "\F154";
}

.fa-dollar:before,
.fa-usd:before {
  content: "\F155";
}

.fa-rupee:before,
.fa-inr:before {
  content: "\F156";
}

.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
  content: "\F157";
}

.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
  content: "\F158";
}

.fa-won:before,
.fa-krw:before {
  content: "\F159";
}

.fa-bitcoin:before,
.fa-btc:before {
  content: "\F15A";
}

.fa-file:before {
  content: "\F15B";
}

.fa-file-text:before {
  content: "\F15C";
}

.fa-sort-alpha-asc:before {
  content: "\F15D";
}

.fa-sort-alpha-desc:before {
  content: "\F15E";
}

.fa-sort-amount-asc:before {
  content: "\F160";
}

.fa-sort-amount-desc:before {
  content: "\F161";
}

.fa-sort-numeric-asc:before {
  content: "\F162";
}

.fa-sort-numeric-desc:before {
  content: "\F163";
}

.fa-thumbs-up:before {
  content: "\F164";
}

.fa-thumbs-down:before {
  content: "\F165";
}

.fa-youtube-square:before {
  content: "\F166";
}

.fa-youtube:before {
  content: "\F167";
}

.fa-xing:before {
  content: "\F168";
}

.fa-xing-square:before {
  content: "\F169";
}

.fa-youtube-play:before {
  content: "\F16A";
}

.fa-dropbox:before {
  content: "\F16B";
}

.fa-stack-overflow:before {
  content: "\F16C";
}

.fa-instagram:before {
  content: "\F16D";
}

.fa-flickr:before {
  content: "\F16E";
}

.fa-adn:before {
  content: "\F170";
}

.fa-bitbucket:before {
  content: "\F171";
}

.fa-bitbucket-square:before {
  content: "\F172";
}

.fa-tumblr:before {
  content: "\F173";
}

.fa-tumblr-square:before {
  content: "\F174";
}

.fa-long-arrow-down:before {
  content: "\F175";
}

.fa-long-arrow-up:before {
  content: "\F176";
}

.fa-long-arrow-left:before {
  content: "\F177";
}

.fa-long-arrow-right:before {
  content: "\F178";
}

.fa-apple:before {
  content: "\F179";
}

.fa-windows:before {
  content: "\F17A";
}

.fa-android:before {
  content: "\F17B";
}

.fa-linux:before {
  content: "\F17C";
}

.fa-dribbble:before {
  content: "\F17D";
}

.fa-skype:before {
  content: "\F17E";
}

.fa-foursquare:before {
  content: "\F180";
}

.fa-trello:before {
  content: "\F181";
}

.fa-female:before {
  content: "\F182";
}

.fa-male:before {
  content: "\F183";
}

.fa-gittip:before,
.fa-gratipay:before {
  content: "\F184";
}

.fa-sun-o:before {
  content: "\F185";
}

.fa-moon-o:before {
  content: "\F186";
}

.fa-archive:before {
  content: "\F187";
}

.fa-bug:before {
  content: "\F188";
}

.fa-vk:before {
  content: "\F189";
}

.fa-weibo:before {
  content: "\F18A";
}

.fa-renren:before {
  content: "\F18B";
}

.fa-pagelines:before {
  content: "\F18C";
}

.fa-stack-exchange:before {
  content: "\F18D";
}

.fa-arrow-circle-o-right:before {
  content: "\F18E";
}

.fa-arrow-circle-o-left:before {
  content: "\F190";
}

.fa-toggle-left:before,
.fa-caret-square-o-left:before {
  content: "\F191";
}

.fa-dot-circle-o:before {
  content: "\F192";
}

.fa-wheelchair:before {
  content: "\F193";
}

.fa-vimeo-square:before {
  content: "\F194";
}

.fa-turkish-lira:before,
.fa-try:before {
  content: "\F195";
}

.fa-plus-square-o:before {
  content: "\F196";
}

.fa-space-shuttle:before {
  content: "\F197";
}

.fa-slack:before {
  content: "\F198";
}

.fa-envelope-square:before {
  content: "\F199";
}

.fa-wordpress:before {
  content: "\F19A";
}

.fa-openid:before {
  content: "\F19B";
}

.fa-institution:before,
.fa-bank:before,
.fa-university:before {
  content: "\F19C";
}

.fa-mortar-board:before,
.fa-graduation-cap:before {
  content: "\F19D";
}

.fa-yahoo:before {
  content: "\F19E";
}

.fa-google:before {
  content: "\F1A0";
}

.fa-reddit:before {
  content: "\F1A1";
}

.fa-reddit-square:before {
  content: "\F1A2";
}

.fa-stumbleupon-circle:before {
  content: "\F1A3";
}

.fa-stumbleupon:before {
  content: "\F1A4";
}

.fa-delicious:before {
  content: "\F1A5";
}

.fa-digg:before {
  content: "\F1A6";
}

.fa-pied-piper-pp:before {
  content: "\F1A7";
}

.fa-pied-piper-alt:before {
  content: "\F1A8";
}

.fa-drupal:before {
  content: "\F1A9";
}

.fa-joomla:before {
  content: "\F1AA";
}

.fa-language:before {
  content: "\F1AB";
}

.fa-fax:before {
  content: "\F1AC";
}

.fa-building:before {
  content: "\F1AD";
}

.fa-child:before {
  content: "\F1AE";
}

.fa-paw:before {
  content: "\F1B0";
}

.fa-spoon:before {
  content: "\F1B1";
}

.fa-cube:before {
  content: "\F1B2";
}

.fa-cubes:before {
  content: "\F1B3";
}

.fa-behance:before {
  content: "\F1B4";
}

.fa-behance-square:before {
  content: "\F1B5";
}

.fa-steam:before {
  content: "\F1B6";
}

.fa-steam-square:before {
  content: "\F1B7";
}

.fa-recycle:before {
  content: "\F1B8";
}

.fa-automobile:before,
.fa-car:before {
  content: "\F1B9";
}

.fa-cab:before,
.fa-taxi:before {
  content: "\F1BA";
}

.fa-tree:before {
  content: "\F1BB";
}

.fa-spotify:before {
  content: "\F1BC";
}

.fa-deviantart:before {
  content: "\F1BD";
}

.fa-soundcloud:before {
  content: "\F1BE";
}

.fa-database:before {
  content: "\F1C0";
}

.fa-file-pdf-o:before {
  content: "\F1C1";
}

.fa-file-word-o:before {
  content: "\F1C2";
}

.fa-file-excel-o:before {
  content: "\F1C3";
}

.fa-file-powerpoint-o:before {
  content: "\F1C4";
}

.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
  content: "\F1C5";
}

.fa-file-zip-o:before,
.fa-file-archive-o:before {
  content: "\F1C6";
}

.fa-file-sound-o:before,
.fa-file-audio-o:before {
  content: "\F1C7";
}

.fa-file-movie-o:before,
.fa-file-video-o:before {
  content: "\F1C8";
}

.fa-file-code-o:before {
  content: "\F1C9";
}

.fa-vine:before {
  content: "\F1CA";
}

.fa-codepen:before {
  content: "\F1CB";
}

.fa-jsfiddle:before {
  content: "\F1CC";
}

.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
  content: "\F1CD";
}

.fa-circle-o-notch:before {
  content: "\F1CE";
}

.fa-ra:before,
.fa-resistance:before,
.fa-rebel:before {
  content: "\F1D0";
}

.fa-ge:before,
.fa-empire:before {
  content: "\F1D1";
}

.fa-git-square:before {
  content: "\F1D2";
}

.fa-git:before {
  content: "\F1D3";
}

.fa-y-combinator-square:before,
.fa-yc-square:before,
.fa-hacker-news:before {
  content: "\F1D4";
}

.fa-tencent-weibo:before {
  content: "\F1D5";
}

.fa-qq:before {
  content: "\F1D6";
}

.fa-wechat:before,
.fa-weixin:before {
  content: "\F1D7";
}

.fa-send:before,
.fa-paper-plane:before {
  content: "\F1D8";
}

.fa-send-o:before,
.fa-paper-plane-o:before {
  content: "\F1D9";
}

.fa-history:before {
  content: "\F1DA";
}

.fa-circle-thin:before {
  content: "\F1DB";
}

.fa-header:before {
  content: "\F1DC";
}

.fa-paragraph:before {
  content: "\F1DD";
}

.fa-sliders:before {
  content: "\F1DE";
}

.fa-share-alt:before {
  content: "\F1E0";
}

.fa-share-alt-square:before {
  content: "\F1E1";
}

.fa-bomb:before {
  content: "\F1E2";
}

.fa-soccer-ball-o:before,
.fa-futbol-o:before {
  content: "\F1E3";
}

.fa-tty:before {
  content: "\F1E4";
}

.fa-binoculars:before {
  content: "\F1E5";
}

.fa-plug:before {
  content: "\F1E6";
}

.fa-slideshare:before {
  content: "\F1E7";
}

.fa-twitch:before {
  content: "\F1E8";
}

.fa-yelp:before {
  content: "\F1E9";
}

.fa-newspaper-o:before {
  content: "\F1EA";
}

.fa-wifi:before {
  content: "\F1EB";
}

.fa-calculator:before {
  content: "\F1EC";
}

.fa-paypal:before {
  content: "\F1ED";
}

.fa-google-wallet:before {
  content: "\F1EE";
}

.fa-cc-visa:before {
  content: "\F1F0";
}

.fa-cc-mastercard:before {
  content: "\F1F1";
}

.fa-cc-discover:before {
  content: "\F1F2";
}

.fa-cc-amex:before {
  content: "\F1F3";
}

.fa-cc-paypal:before {
  content: "\F1F4";
}

.fa-cc-stripe:before {
  content: "\F1F5";
}

.fa-bell-slash:before {
  content: "\F1F6";
}

.fa-bell-slash-o:before {
  content: "\F1F7";
}

.fa-trash:before {
  content: "\F1F8";
}

.fa-copyright:before {
  content: "\F1F9";
}

.fa-at:before {
  content: "\F1FA";
}

.fa-eyedropper:before {
  content: "\F1FB";
}

.fa-paint-brush:before {
  content: "\F1FC";
}

.fa-birthday-cake:before {
  content: "\F1FD";
}

.fa-area-chart:before {
  content: "\F1FE";
}

.fa-pie-chart:before {
  content: "\F200";
}

.fa-line-chart:before {
  content: "\F201";
}

.fa-lastfm:before {
  content: "\F202";
}

.fa-lastfm-square:before {
  content: "\F203";
}

.fa-toggle-off:before {
  content: "\F204";
}

.fa-toggle-on:before {
  content: "\F205";
}

.fa-bicycle:before {
  content: "\F206";
}

.fa-bus:before {
  content: "\F207";
}

.fa-ioxhost:before {
  content: "\F208";
}

.fa-angellist:before {
  content: "\F209";
}

.fa-cc:before {
  content: "\F20A";
}

.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
  content: "\F20B";
}

.fa-meanpath:before {
  content: "\F20C";
}

.fa-buysellads:before {
  content: "\F20D";
}

.fa-connectdevelop:before {
  content: "\F20E";
}

.fa-dashcube:before {
  content: "\F210";
}

.fa-forumbee:before {
  content: "\F211";
}

.fa-leanpub:before {
  content: "\F212";
}

.fa-sellsy:before {
  content: "\F213";
}

.fa-shirtsinbulk:before {
  content: "\F214";
}

.fa-simplybuilt:before {
  content: "\F215";
}

.fa-skyatlas:before {
  content: "\F216";
}

.fa-cart-plus:before {
  content: "\F217";
}

.fa-cart-arrow-down:before {
  content: "\F218";
}

.fa-diamond:before {
  content: "\F219";
}

.fa-ship:before {
  content: "\F21A";
}

.fa-user-secret:before {
  content: "\F21B";
}

.fa-motorcycle:before {
  content: "\F21C";
}

.fa-street-view:before {
  content: "\F21D";
}

.fa-heartbeat:before {
  content: "\F21E";
}

.fa-venus:before {
  content: "\F221";
}

.fa-mars:before {
  content: "\F222";
}

.fa-mercury:before {
  content: "\F223";
}

.fa-intersex:before,
.fa-transgender:before {
  content: "\F224";
}

.fa-transgender-alt:before {
  content: "\F225";
}

.fa-venus-double:before {
  content: "\F226";
}

.fa-mars-double:before {
  content: "\F227";
}

.fa-venus-mars:before {
  content: "\F228";
}

.fa-mars-stroke:before {
  content: "\F229";
}

.fa-mars-stroke-v:before {
  content: "\F22A";
}

.fa-mars-stroke-h:before {
  content: "\F22B";
}

.fa-neuter:before {
  content: "\F22C";
}

.fa-genderless:before {
  content: "\F22D";
}

.fa-facebook-official:before {
  content: "\F230";
}

.fa-pinterest-p:before {
  content: "\F231";
}

.fa-whatsapp:before {
  content: "\F232";
}

.fa-server:before {
  content: "\F233";
}

.fa-user-plus:before {
  content: "\F234";
}

.fa-user-times:before {
  content: "\F235";
}

.fa-hotel:before,
.fa-bed:before {
  content: "\F236";
}

.fa-viacoin:before {
  content: "\F237";
}

.fa-train:before {
  content: "\F238";
}

.fa-subway:before {
  content: "\F239";
}

.fa-medium:before {
  content: "\F23A";
}

.fa-yc:before,
.fa-y-combinator:before {
  content: "\F23B";
}

.fa-optin-monster:before {
  content: "\F23C";
}

.fa-opencart:before {
  content: "\F23D";
}

.fa-expeditedssl:before {
  content: "\F23E";
}

.fa-battery-4:before,
.fa-battery:before,
.fa-battery-full:before {
  content: "\F240";
}

.fa-battery-3:before,
.fa-battery-three-quarters:before {
  content: "\F241";
}

.fa-battery-2:before,
.fa-battery-half:before {
  content: "\F242";
}

.fa-battery-1:before,
.fa-battery-quarter:before {
  content: "\F243";
}

.fa-battery-0:before,
.fa-battery-empty:before {
  content: "\F244";
}

.fa-mouse-pointer:before {
  content: "\F245";
}

.fa-i-cursor:before {
  content: "\F246";
}

.fa-object-group:before {
  content: "\F247";
}

.fa-object-ungroup:before {
  content: "\F248";
}

.fa-sticky-note:before {
  content: "\F249";
}

.fa-sticky-note-o:before {
  content: "\F24A";
}

.fa-cc-jcb:before {
  content: "\F24B";
}

.fa-cc-diners-club:before {
  content: "\F24C";
}

.fa-clone:before {
  content: "\F24D";
}

.fa-balance-scale:before {
  content: "\F24E";
}

.fa-hourglass-o:before {
  content: "\F250";
}

.fa-hourglass-1:before,
.fa-hourglass-start:before {
  content: "\F251";
}

.fa-hourglass-2:before,
.fa-hourglass-half:before {
  content: "\F252";
}

.fa-hourglass-3:before,
.fa-hourglass-end:before {
  content: "\F253";
}

.fa-hourglass:before {
  content: "\F254";
}

.fa-hand-grab-o:before,
.fa-hand-rock-o:before {
  content: "\F255";
}

.fa-hand-stop-o:before,
.fa-hand-paper-o:before {
  content: "\F256";
}

.fa-hand-scissors-o:before {
  content: "\F257";
}

.fa-hand-lizard-o:before {
  content: "\F258";
}

.fa-hand-spock-o:before {
  content: "\F259";
}

.fa-hand-pointer-o:before {
  content: "\F25A";
}

.fa-hand-peace-o:before {
  content: "\F25B";
}

.fa-trademark:before {
  content: "\F25C";
}

.fa-registered:before {
  content: "\F25D";
}

.fa-creative-commons:before {
  content: "\F25E";
}

.fa-gg:before {
  content: "\F260";
}

.fa-gg-circle:before {
  content: "\F261";
}

.fa-tripadvisor:before {
  content: "\F262";
}

.fa-odnoklassniki:before {
  content: "\F263";
}

.fa-odnoklassniki-square:before {
  content: "\F264";
}

.fa-get-pocket:before {
  content: "\F265";
}

.fa-wikipedia-w:before {
  content: "\F266";
}

.fa-safari:before {
  content: "\F267";
}

.fa-chrome:before {
  content: "\F268";
}

.fa-firefox:before {
  content: "\F269";
}

.fa-opera:before {
  content: "\F26A";
}

.fa-internet-explorer:before {
  content: "\F26B";
}

.fa-tv:before,
.fa-television:before {
  content: "\F26C";
}

.fa-contao:before {
  content: "\F26D";
}

.fa-500px:before {
  content: "\F26E";
}

.fa-amazon:before {
  content: "\F270";
}

.fa-calendar-plus-o:before {
  content: "\F271";
}

.fa-calendar-minus-o:before {
  content: "\F272";
}

.fa-calendar-times-o:before {
  content: "\F273";
}

.fa-calendar-check-o:before {
  content: "\F274";
}

.fa-industry:before {
  content: "\F275";
}

.fa-map-pin:before {
  content: "\F276";
}

.fa-map-signs:before {
  content: "\F277";
}

.fa-map-o:before {
  content: "\F278";
}

.fa-map:before {
  content: "\F279";
}

.fa-commenting:before {
  content: "\F27A";
}

.fa-commenting-o:before {
  content: "\F27B";
}

.fa-houzz:before {
  content: "\F27C";
}

.fa-vimeo:before {
  content: "\F27D";
}

.fa-black-tie:before {
  content: "\F27E";
}

.fa-fonticons:before {
  content: "\F280";
}

.fa-reddit-alien:before {
  content: "\F281";
}

.fa-edge:before {
  content: "\F282";
}

.fa-credit-card-alt:before {
  content: "\F283";
}

.fa-codiepie:before {
  content: "\F284";
}

.fa-modx:before {
  content: "\F285";
}

.fa-fort-awesome:before {
  content: "\F286";
}

.fa-usb:before {
  content: "\F287";
}

.fa-product-hunt:before {
  content: "\F288";
}

.fa-mixcloud:before {
  content: "\F289";
}

.fa-scribd:before {
  content: "\F28A";
}

.fa-pause-circle:before {
  content: "\F28B";
}

.fa-pause-circle-o:before {
  content: "\F28C";
}

.fa-stop-circle:before {
  content: "\F28D";
}

.fa-stop-circle-o:before {
  content: "\F28E";
}

.fa-shopping-bag:before {
  content: "\F290";
}

.fa-shopping-basket:before {
  content: "\F291";
}

.fa-hashtag:before {
  content: "\F292";
}

.fa-bluetooth:before {
  content: "\F293";
}

.fa-bluetooth-b:before {
  content: "\F294";
}

.fa-percent:before {
  content: "\F295";
}

.fa-gitlab:before {
  content: "\F296";
}

.fa-wpbeginner:before {
  content: "\F297";
}

.fa-wpforms:before {
  content: "\F298";
}

.fa-envira:before {
  content: "\F299";
}

.fa-universal-access:before {
  content: "\F29A";
}

.fa-wheelchair-alt:before {
  content: "\F29B";
}

.fa-question-circle-o:before {
  content: "\F29C";
}

.fa-blind:before {
  content: "\F29D";
}

.fa-audio-description:before {
  content: "\F29E";
}

.fa-volume-control-phone:before {
  content: "\F2A0";
}

.fa-braille:before {
  content: "\F2A1";
}

.fa-assistive-listening-systems:before {
  content: "\F2A2";
}

.fa-asl-interpreting:before,
.fa-american-sign-language-interpreting:before {
  content: "\F2A3";
}

.fa-deafness:before,
.fa-hard-of-hearing:before,
.fa-deaf:before {
  content: "\F2A4";
}

.fa-glide:before {
  content: "\F2A5";
}

.fa-glide-g:before {
  content: "\F2A6";
}

.fa-signing:before,
.fa-sign-language:before {
  content: "\F2A7";
}

.fa-low-vision:before {
  content: "\F2A8";
}

.fa-viadeo:before {
  content: "\F2A9";
}

.fa-viadeo-square:before {
  content: "\F2AA";
}

.fa-snapchat:before {
  content: "\F2AB";
}

.fa-snapchat-ghost:before {
  content: "\F2AC";
}

.fa-snapchat-square:before {
  content: "\F2AD";
}

.fa-pied-piper:before {
  content: "\F2AE";
}

.fa-first-order:before {
  content: "\F2B0";
}

.fa-yoast:before {
  content: "\F2B1";
}

.fa-themeisle:before {
  content: "\F2B2";
}

.fa-google-plus-circle:before,
.fa-google-plus-official:before {
  content: "\F2B3";
}

.fa-fa:before,
.fa-font-awesome:before {
  content: "\F2B4";
}

.fa-handshake-o:before {
  content: "\F2B5";
}

.fa-envelope-open:before {
  content: "\F2B6";
}

.fa-envelope-open-o:before {
  content: "\F2B7";
}

.fa-linode:before {
  content: "\F2B8";
}

.fa-address-book:before {
  content: "\F2B9";
}

.fa-address-book-o:before {
  content: "\F2BA";
}

.fa-vcard:before,
.fa-address-card:before {
  content: "\F2BB";
}

.fa-vcard-o:before,
.fa-address-card-o:before {
  content: "\F2BC";
}

.fa-user-circle:before {
  content: "\F2BD";
}

.fa-user-circle-o:before {
  content: "\F2BE";
}

.fa-user-o:before {
  content: "\F2C0";
}

.fa-id-badge:before {
  content: "\F2C1";
}

.fa-drivers-license:before,
.fa-id-card:before {
  content: "\F2C2";
}

.fa-drivers-license-o:before,
.fa-id-card-o:before {
  content: "\F2C3";
}

.fa-quora:before {
  content: "\F2C4";
}

.fa-free-code-camp:before {
  content: "\F2C5";
}

.fa-telegram:before {
  content: "\F2C6";
}

.fa-thermometer-4:before,
.fa-thermometer:before,
.fa-thermometer-full:before {
  content: "\F2C7";
}

.fa-thermometer-3:before,
.fa-thermometer-three-quarters:before {
  content: "\F2C8";
}

.fa-thermometer-2:before,
.fa-thermometer-half:before {
  content: "\F2C9";
}

.fa-thermometer-1:before,
.fa-thermometer-quarter:before {
  content: "\F2CA";
}

.fa-thermometer-0:before,
.fa-thermometer-empty:before {
  content: "\F2CB";
}

.fa-shower:before {
  content: "\F2CC";
}

.fa-bathtub:before,
.fa-s15:before,
.fa-bath:before {
  content: "\F2CD";
}

.fa-podcast:before {
  content: "\F2CE";
}

.fa-window-maximize:before {
  content: "\F2D0";
}

.fa-window-minimize:before {
  content: "\F2D1";
}

.fa-window-restore:before {
  content: "\F2D2";
}

.fa-times-rectangle:before,
.fa-window-close:before {
  content: "\F2D3";
}

.fa-times-rectangle-o:before,
.fa-window-close-o:before {
  content: "\F2D4";
}

.fa-bandcamp:before {
  content: "\F2D5";
}

.fa-grav:before {
  content: "\F2D6";
}

.fa-etsy:before {
  content: "\F2D7";
}

.fa-imdb:before {
  content: "\F2D8";
}

.fa-ravelry:before {
  content: "\F2D9";
}

.fa-eercast:before {
  content: "\F2DA";
}

.fa-microchip:before {
  content: "\F2DB";
}

.fa-snowflake-o:before {
  content: "\F2DC";
}

.fa-superpowers:before {
  content: "\F2DD";
}

.fa-wpexplorer:before {
  content: "\F2DE";
}

.fa-meetup:before {
  content: "\F2E0";
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}

/* Slider */

.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          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;
  -ms-touch-action: pan-y;
  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 {
  -webkit-transform: translate3d(0, 0, 0);
  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;
}

.pretty * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.pretty input:not([type='checkbox']):not([type='radio']) {
  display: none;
}

.pretty {
  position: relative;
  display: inline-block;
  margin-right: 1em;
  white-space: nowrap;
  line-height: 1;
}

.pretty input {
  position: absolute;
  left: 0;
  top: 0;
  min-width: 1em;
  width: 100%;
  height: 100%;
  z-index: 2;
  opacity: 0;
  margin: 0;
  padding: 0;
  cursor: pointer;
}

.pretty .state label {
  position: initial;
  display: inline-block;
  font-weight: normal;
  margin: 0;
  text-indent: 1.5em;
  min-width: calc(1em + 2px);
}

.pretty .state label:before,
.pretty .state label:after {
  content: '';
  width: calc(1em + 2px);
  height: calc(1em + 2px);
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 0;
  border: 1px solid transparent;
  z-index: 0;
  position: absolute;
  left: 0;
  top: calc((0% - (100% - 1em)) - 8%);
  background-color: transparent;
}

.pretty .state label:before {
  border-color: #bdc3c7;
}

.pretty .state.p-is-hover,
.pretty .state.p-is-indeterminate {
  display: none;
}

@-webkit-keyframes zoom {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
  }
}

@keyframes zoom {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
  }
}

@-webkit-keyframes tada {
  0% {
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
    opacity: 0;
    -webkit-transform: scale(7);
            transform: scale(7);
  }

  38% {
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }

  55% {
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
  }

  72% {
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
    -webkit-transform: scale(1);
            transform: scale(1);
  }

  81% {
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
    -webkit-transform: scale(1.24);
            transform: scale(1.24);
  }

  89% {
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
    -webkit-transform: scale(1);
            transform: scale(1);
  }

  95% {
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
    -webkit-transform: scale(1.04);
            transform: scale(1.04);
  }

  100% {
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes tada {
  0% {
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
    opacity: 0;
    -webkit-transform: scale(7);
            transform: scale(7);
  }

  38% {
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }

  55% {
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
  }

  72% {
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
    -webkit-transform: scale(1);
            transform: scale(1);
  }

  81% {
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
    -webkit-transform: scale(1.24);
            transform: scale(1.24);
  }

  89% {
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
    -webkit-transform: scale(1);
            transform: scale(1);
  }

  95% {
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
    -webkit-transform: scale(1.04);
            transform: scale(1.04);
  }

  100% {
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@-webkit-keyframes jelly {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }

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

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

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

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

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

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

@keyframes jelly {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }

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

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

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

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

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

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

@-webkit-keyframes rotate {
  0% {
    opacity: 0;
    -webkit-transform: translateZ(-200px) rotate(-45deg);
            transform: translateZ(-200px) rotate(-45deg);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateZ(0) rotate(0);
            transform: translateZ(0) rotate(0);
  }
}

@keyframes rotate {
  0% {
    opacity: 0;
    -webkit-transform: translateZ(-200px) rotate(-45deg);
            transform: translateZ(-200px) rotate(-45deg);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateZ(0) rotate(0);
            transform: translateZ(0) rotate(0);
  }
}

@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0px 0px 0px 0px #bdc3c7;
            box-shadow: 0px 0px 0px 0px #bdc3c7;
  }

  100% {
    -webkit-box-shadow: 0px 0px 0px 1.5em rgba(189, 195, 199, 0);
            box-shadow: 0px 0px 0px 1.5em rgba(189, 195, 199, 0);
  }
}

@keyframes pulse {
  0% {
    -webkit-box-shadow: 0px 0px 0px 0px #bdc3c7;
            box-shadow: 0px 0px 0px 0px #bdc3c7;
  }

  100% {
    -webkit-box-shadow: 0px 0px 0px 1.5em rgba(189, 195, 199, 0);
            box-shadow: 0px 0px 0px 1.5em rgba(189, 195, 199, 0);
  }
}

.pretty.p-default.p-fill .state label:after {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.pretty.p-default .state label:after {
  -webkit-transform: scale(0.6);
          transform: scale(0.6);
}

.pretty.p-default input:checked ~ .state label:after {
  background-color: #bdc3c7 !important;
}

.pretty.p-default.p-thick .state label:before,
.pretty.p-default.p-thick .state label:after {
  border-width: calc(1em / 7);
}

.pretty.p-default.p-thick .state label:after {
  -webkit-transform: scale(0.4) !important;
          transform: scale(0.4) !important;
}

.pretty.p-icon .state .icon {
  position: absolute;
  font-size: 1em;
  width: calc(1em + 2px);
  height: calc(1em + 2px);
  left: 0;
  z-index: 1;
  text-align: center;
  line-height: normal;
  top: calc((0% - (100% - 1em)) - 8%);
  border: 1px solid transparent;
  opacity: 0;
}

.pretty.p-icon .state .icon:before {
  margin: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1;
}

.pretty.p-icon input:checked ~ .state .icon {
  opacity: 1;
}

.pretty.p-icon input:checked ~ .state label:before {
  border-color: #5a656b;
}

.pretty.p-svg .state .svg {
  position: absolute;
  font-size: 1em;
  width: calc(1em + 2px);
  height: calc(1em + 2px);
  left: 0;
  z-index: 1;
  text-align: center;
  line-height: normal;
  top: calc((0% - (100% - 1em)) - 8%);
  border: 1px solid transparent;
  opacity: 0;
}

.pretty.p-svg .state svg {
  margin: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1;
}

.pretty.p-svg input:checked ~ .state .svg {
  opacity: 1;
}

.pretty.p-image .state img {
  opacity: 0;
  position: absolute;
  width: calc(1em + 2px);
  height: calc(1em + 2px);
  top: 0;
  top: calc((0% - (100% - 1em)) - 8%);
  left: 0;
  z-index: 0;
  text-align: center;
  line-height: normal;
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
}

.pretty.p-image input:checked ~ .state img {
  opacity: 1;
}

.pretty.p-switch input {
  min-width: 2em;
}

.pretty.p-switch .state {
  position: relative;
}

.pretty.p-switch .state:before {
  content: '';
  border: 1px solid #bdc3c7;
  border-radius: 60px;
  width: 2em;
  -webkit-box-sizing: unset;
          box-sizing: unset;
  height: calc(1em + 2px);
  position: absolute;
  top: 0;
  top: calc((0% - (100% - 1em)) - 16%);
  z-index: 0;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.pretty.p-switch .state label {
  text-indent: 2.5em;
}

.pretty.p-switch .state label:before,
.pretty.p-switch .state label:after {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  border-radius: 100%;
  left: 0;
  border-color: transparent;
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
}

.pretty.p-switch .state label:after {
  background-color: #bdc3c7 !important;
}

.pretty.p-switch input:checked ~ .state:before {
  border-color: #5a656b;
}

.pretty.p-switch input:checked ~ .state label:before {
  opacity: 0;
}

.pretty.p-switch input:checked ~ .state label:after {
  background-color: #5a656b !important;
  left: 1em;
}

.pretty.p-switch.p-fill input:checked ~ .state:before {
  border-color: #5a656b;
  background-color: #5a656b !important;
}

.pretty.p-switch.p-fill input:checked ~ .state label:before {
  opacity: 0;
}

.pretty.p-switch.p-fill input:checked ~ .state label:after {
  background-color: #fff !important;
  left: 1em;
}

.pretty.p-switch.p-slim .state:before {
  height: 0.1em;
  background: #bdc3c7 !important;
  top: calc(50% - 0.1em);
}

.pretty.p-switch.p-slim input:checked ~ .state:before {
  border-color: #5a656b;
  background-color: #5a656b !important;
}

.pretty.p-has-hover input:hover ~ .state:not(.p-is-hover) {
  display: none;
}

.pretty.p-has-hover input:hover ~ .state.p-is-hover {
  display: block;
}

.pretty.p-has-hover input:hover ~ .state.p-is-hover .icon {
  display: block;
}

.pretty.p-has-focus input:focus ~ .state label:before {
  -webkit-box-shadow: 0px 0px 3px 0px #bdc3c7;
          box-shadow: 0px 0px 3px 0px #bdc3c7;
}

.pretty.p-has-indeterminate input[type='checkbox']:indeterminate ~ .state:not(.p-is-indeterminate) {
  display: none;
}

.pretty.p-has-indeterminate input[type='checkbox']:indeterminate ~ .state.p-is-indeterminate {
  display: block;
}

.pretty.p-has-indeterminate input[type='checkbox']:indeterminate ~ .state.p-is-indeterminate .icon {
  display: block;
  opacity: 1;
}

.pretty.p-toggle .state.p-on {
  opacity: 0;
  display: none;
}

.pretty.p-toggle .state.p-off,
.pretty.p-toggle .state .icon,
.pretty.p-toggle .state .svg,
.pretty.p-toggle .state img {
  opacity: 1;
  display: inherit;
}

.pretty.p-toggle .state.p-off .icon {
  color: #bdc3c7;
}

.pretty.p-toggle input:checked ~ .state.p-on {
  opacity: 1;
  display: inherit;
}

.pretty.p-toggle input:checked ~ .state.p-off {
  opacity: 0;
  display: none;
}

.pretty.p-plain input:checked ~ .state label:before,
.pretty.p-plain.p-toggle .state label:before {
  content: none;
}

.pretty.p-plain.p-plain .icon {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.pretty.p-round .state label:before,
.pretty.p-round .state label:after {
  border-radius: 100%;
}

.pretty.p-round.p-icon .state .icon {
  border-radius: 100%;
  overflow: hidden;
}

.pretty.p-round.p-icon .state .icon:before {
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
}

.pretty.p-curve .state label:before,
.pretty.p-curve .state label:after {
  border-radius: 20%;
}

.pretty.p-smooth label:before,
.pretty.p-smooth label:after,
.pretty.p-smooth .icon,
.pretty.p-smooth .svg {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.pretty.p-smooth input:checked + .state label:after {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.pretty.p-smooth input:checked + .state .icon,
.pretty.p-smooth input:checked + .state .svg,
.pretty.p-smooth input:checked + .state img {
  -webkit-animation: zoom 0.2s ease;
          animation: zoom 0.2s ease;
}

.pretty.p-smooth.p-default input:checked + .state label:after {
  -webkit-animation: zoom 0.2s ease;
          animation: zoom 0.2s ease;
}

.pretty.p-smooth.p-plain input:checked + .state label:before {
  content: '';
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.pretty.p-tada:not(.p-default) input:checked + .state .icon,
.pretty.p-tada:not(.p-default) input:checked + .state .svg,
.pretty.p-tada:not(.p-default) input:checked + .state img,
.pretty.p-tada:not(.p-default) input:checked + .state label:before,
.pretty.p-tada:not(.p-default) input:checked + .state label:after {
  -webkit-animation: tada 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1 alternate;
          animation: tada 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1 alternate;
  opacity: 1;
}

.pretty.p-jelly:not(.p-default) input:checked + .state .icon,
.pretty.p-jelly:not(.p-default) input:checked + .state .svg,
.pretty.p-jelly:not(.p-default) input:checked + .state img,
.pretty.p-jelly:not(.p-default) input:checked + .state label:before,
.pretty.p-jelly:not(.p-default) input:checked + .state label:after {
  -webkit-animation: jelly 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
          animation: jelly 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 1;
}

.pretty.p-jelly:not(.p-default) input:checked + .state label:before {
  border-color: transparent;
}

.pretty.p-rotate:not(.p-default) input:checked ~ .state .icon,
.pretty.p-rotate:not(.p-default) input:checked ~ .state .svg,
.pretty.p-rotate:not(.p-default) input:checked ~ .state img,
.pretty.p-rotate:not(.p-default) input:checked ~ .state label:before,
.pretty.p-rotate:not(.p-default) input:checked ~ .state label:after {
  -webkit-animation: rotate 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
          animation: rotate 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 1;
}

.pretty.p-rotate:not(.p-default) input:checked ~ .state label:before {
  border-color: transparent;
}

.pretty.p-pulse:not(.p-switch) input:checked ~ .state label:before {
  -webkit-animation: pulse 1s;
          animation: pulse 1s;
}

.pretty input[disabled] {
  cursor: not-allowed;
  display: none;
}

.pretty input[disabled] ~ * {
  opacity: .5;
}

.pretty.p-locked input {
  display: none;
  cursor: not-allowed;
}

.pretty input:checked ~ .state.p-primary label:after,
.pretty.p-toggle .state.p-primary label:after {
  background-color: #428bca !important;
}

.pretty input:checked ~ .state.p-primary .icon,
.pretty input:checked ~ .state.p-primary .svg,
.pretty.p-toggle .state.p-primary .icon,
.pretty.p-toggle .state.p-primary .svg {
  color: #fff;
  stroke: #fff;
}

.pretty input:checked ~ .state.p-primary-o label:before,
.pretty.p-toggle .state.p-primary-o label:before {
  border-color: #428bca;
}

.pretty input:checked ~ .state.p-primary-o label:after,
.pretty.p-toggle .state.p-primary-o label:after {
  background-color: transparent;
}

.pretty input:checked ~ .state.p-primary-o .icon,
.pretty input:checked ~ .state.p-primary-o .svg,
.pretty input:checked ~ .state.p-primary-o svg,
.pretty.p-toggle .state.p-primary-o .icon,
.pretty.p-toggle .state.p-primary-o .svg,
.pretty.p-toggle .state.p-primary-o svg {
  color: #428bca;
  stroke: #428bca;
}

.pretty.p-default:not(.p-fill) input:checked ~ .state.p-primary-o label:after {
  background-color: #428bca !important;
}

.pretty.p-switch input:checked ~ .state.p-primary:before {
  border-color: #428bca;
}

.pretty.p-switch.p-fill input:checked ~ .state.p-primary:before {
  background-color: #428bca !important;
}

.pretty.p-switch.p-slim input:checked ~ .state.p-primary:before {
  border-color: #245682;
  background-color: #245682 !important;
}

.pretty input:checked ~ .state.p-info label:after,
.pretty.p-toggle .state.p-info label:after {
  background-color: #5bc0de !important;
}

.pretty input:checked ~ .state.p-info .icon,
.pretty input:checked ~ .state.p-info .svg,
.pretty.p-toggle .state.p-info .icon,
.pretty.p-toggle .state.p-info .svg {
  color: #fff;
  stroke: #fff;
}

.pretty input:checked ~ .state.p-info-o label:before,
.pretty.p-toggle .state.p-info-o label:before {
  border-color: #5bc0de;
}

.pretty input:checked ~ .state.p-info-o label:after,
.pretty.p-toggle .state.p-info-o label:after {
  background-color: transparent;
}

.pretty input:checked ~ .state.p-info-o .icon,
.pretty input:checked ~ .state.p-info-o .svg,
.pretty input:checked ~ .state.p-info-o svg,
.pretty.p-toggle .state.p-info-o .icon,
.pretty.p-toggle .state.p-info-o .svg,
.pretty.p-toggle .state.p-info-o svg {
  color: #5bc0de;
  stroke: #5bc0de;
}

.pretty.p-default:not(.p-fill) input:checked ~ .state.p-info-o label:after {
  background-color: #5bc0de !important;
}

.pretty.p-switch input:checked ~ .state.p-info:before {
  border-color: #5bc0de;
}

.pretty.p-switch.p-fill input:checked ~ .state.p-info:before {
  background-color: #5bc0de !important;
}

.pretty.p-switch.p-slim input:checked ~ .state.p-info:before {
  border-color: #2390b0;
  background-color: #2390b0 !important;
}

.pretty input:checked ~ .state.p-success label:after,
.pretty.p-toggle .state.p-success label:after {
  background-color: #5cb85c !important;
}

.pretty input:checked ~ .state.p-success .icon,
.pretty input:checked ~ .state.p-success .svg,
.pretty.p-toggle .state.p-success .icon,
.pretty.p-toggle .state.p-success .svg {
  color: #fff;
  stroke: #fff;
}

.pretty input:checked ~ .state.p-success-o label:before,
.pretty.p-toggle .state.p-success-o label:before {
  border-color: #5cb85c;
}

.pretty input:checked ~ .state.p-success-o label:after,
.pretty.p-toggle .state.p-success-o label:after {
  background-color: transparent;
}

.pretty input:checked ~ .state.p-success-o .icon,
.pretty input:checked ~ .state.p-success-o .svg,
.pretty input:checked ~ .state.p-success-o svg,
.pretty.p-toggle .state.p-success-o .icon,
.pretty.p-toggle .state.p-success-o .svg,
.pretty.p-toggle .state.p-success-o svg {
  color: #5cb85c;
  stroke: #5cb85c;
}

.pretty.p-default:not(.p-fill) input:checked ~ .state.p-success-o label:after {
  background-color: #5cb85c !important;
}

.pretty.p-switch input:checked ~ .state.p-success:before {
  border-color: #5cb85c;
}

.pretty.p-switch.p-fill input:checked ~ .state.p-success:before {
  background-color: #5cb85c !important;
}

.pretty.p-switch.p-slim input:checked ~ .state.p-success:before {
  border-color: #357935;
  background-color: #357935 !important;
}

.pretty input:checked ~ .state.p-warning label:after,
.pretty.p-toggle .state.p-warning label:after {
  background-color: #f0ad4e !important;
}

.pretty input:checked ~ .state.p-warning .icon,
.pretty input:checked ~ .state.p-warning .svg,
.pretty.p-toggle .state.p-warning .icon,
.pretty.p-toggle .state.p-warning .svg {
  color: #fff;
  stroke: #fff;
}

.pretty input:checked ~ .state.p-warning-o label:before,
.pretty.p-toggle .state.p-warning-o label:before {
  border-color: #f0ad4e;
}

.pretty input:checked ~ .state.p-warning-o label:after,
.pretty.p-toggle .state.p-warning-o label:after {
  background-color: transparent;
}

.pretty input:checked ~ .state.p-warning-o .icon,
.pretty input:checked ~ .state.p-warning-o .svg,
.pretty input:checked ~ .state.p-warning-o svg,
.pretty.p-toggle .state.p-warning-o .icon,
.pretty.p-toggle .state.p-warning-o .svg,
.pretty.p-toggle .state.p-warning-o svg {
  color: #f0ad4e;
  stroke: #f0ad4e;
}

.pretty.p-default:not(.p-fill) input:checked ~ .state.p-warning-o label:after {
  background-color: #f0ad4e !important;
}

.pretty.p-switch input:checked ~ .state.p-warning:before {
  border-color: #f0ad4e;
}

.pretty.p-switch.p-fill input:checked ~ .state.p-warning:before {
  background-color: #f0ad4e !important;
}

.pretty.p-switch.p-slim input:checked ~ .state.p-warning:before {
  border-color: #c77c11;
  background-color: #c77c11 !important;
}

.pretty input:checked ~ .state.p-danger label:after,
.pretty.p-toggle .state.p-danger label:after {
  background-color: #d9534f !important;
}

.pretty input:checked ~ .state.p-danger .icon,
.pretty input:checked ~ .state.p-danger .svg,
.pretty.p-toggle .state.p-danger .icon,
.pretty.p-toggle .state.p-danger .svg {
  color: #fff;
  stroke: #fff;
}

.pretty input:checked ~ .state.p-danger-o label:before,
.pretty.p-toggle .state.p-danger-o label:before {
  border-color: #d9534f;
}

.pretty input:checked ~ .state.p-danger-o label:after,
.pretty.p-toggle .state.p-danger-o label:after {
  background-color: transparent;
}

.pretty input:checked ~ .state.p-danger-o .icon,
.pretty input:checked ~ .state.p-danger-o .svg,
.pretty input:checked ~ .state.p-danger-o svg,
.pretty.p-toggle .state.p-danger-o .icon,
.pretty.p-toggle .state.p-danger-o .svg,
.pretty.p-toggle .state.p-danger-o svg {
  color: #d9534f;
  stroke: #d9534f;
}

.pretty.p-default:not(.p-fill) input:checked ~ .state.p-danger-o label:after {
  background-color: #d9534f !important;
}

.pretty.p-switch input:checked ~ .state.p-danger:before {
  border-color: #d9534f;
}

.pretty.p-switch.p-fill input:checked ~ .state.p-danger:before {
  background-color: #d9534f !important;
}

.pretty.p-switch.p-slim input:checked ~ .state.p-danger:before {
  border-color: #a02622;
  background-color: #a02622 !important;
}

.pretty.p-bigger label:before,
.pretty.p-bigger label:after,
.pretty.p-bigger .icon,
.pretty.p-bigger .svg,
.pretty.p-bigger .img {
  font-size: 1.2em !important;
  top: calc((0% - (100% - 1em)) - 35%) !important;
}

.pretty.p-bigger label {
  text-indent: 1.7em;
}

@media print {
  .pretty .state:before,
  .pretty .state label:before,
  .pretty .state label:after,
  .pretty .state .icon {
    color-adjust: exact;
    /* stylelint-disable */
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
}

.loader {
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.bodyOverflow {
  overflow: hidden;
}

.car__body {
  -webkit-animation: shake 0.2s ease-in-out infinite alternate;
          animation: shake 0.2s ease-in-out infinite alternate;
}

.car__line {
  -webkit-transform-origin: center right;
          transform-origin: center right;
  stroke-dasharray: 22;
  -webkit-animation: line 0.8s ease-in-out infinite;
          animation: line 0.8s ease-in-out infinite;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.car__line--top {
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}

.car__line--middle {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}

.car__line--bottom {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}

@-webkit-keyframes shake {
  0% {
    -webkit-transform: translateY(-1%);
            transform: translateY(-1%);
  }

  100% {
    -webkit-transform: translateY(3%);
            transform: translateY(3%);
  }
}

@keyframes shake {
  0% {
    -webkit-transform: translateY(-1%);
            transform: translateY(-1%);
  }

  100% {
    -webkit-transform: translateY(3%);
            transform: translateY(3%);
  }
}

@-webkit-keyframes line {
  0% {
    stroke-dashoffset: 22;
  }

  25% {
    stroke-dashoffset: 22;
  }

  50% {
    stroke-dashoffset: 0;
  }

  51% {
    stroke-dashoffset: 0;
  }

  80% {
    stroke-dashoffset: -22;
  }

  100% {
    stroke-dashoffset: -22;
  }
}

@keyframes line {
  0% {
    stroke-dashoffset: 22;
  }

  25% {
    stroke-dashoffset: 22;
  }

  50% {
    stroke-dashoffset: 0;
  }

  51% {
    stroke-dashoffset: 0;
  }

  80% {
    stroke-dashoffset: -22;
  }

  100% {
    stroke-dashoffset: -22;
  }
}

body {
  -webkit-animation: fadein 2s;
  /* Safari, Chrome and Opera > 12.1 */
  /* Firefox < 16 */
  /* Internet Explorer */
  /* Opera < 12.1 */
  animation: fadein 2s;
  background: #f8fcfe;
  overflow-x: hidden;
}

@keyframes fadein {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Firefox < 16 */

/* Safari, Chrome and Opera > 12.1 */

@-webkit-keyframes fadein {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Internet Explorer */

/* Opera < 12.1 */

/*  =====  header  =====  */

.nav ul li a {
  text-decoration: none;
}

.nav ul li a:hover {
  color: #c0888b;
}

.mobile__menu {
  display: none;
}

.mobile__menu .top__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 10px 50px 10px 50px;
  position: relative;
  z-index: 4;
  background: #f7fcfe;
}

.mobile__menu .top__header .mobile__logo img {
  width: 200px;
}

.mobile__menu .top__header .hamburger {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: -webkit-transform 800ms ease-in-out;
  transition: -webkit-transform 800ms ease-in-out;
  transition: transform 800ms ease-in-out;
  transition: transform 800ms ease-in-out, -webkit-transform 800ms ease-in-out;
  cursor: pointer;
}

.mobile__menu .top__header .hamburger span {
  width: 30px;
  margin: 3px;
  height: 5px;
  background-color: #1a1a1a;
}

.mobile__menu .top__header .rotate {
  -webkit-transform: rotate(270deg);
  transform: rotate(270deg);
}

.mobile__menu .mobile__menu__dropdown {
  background: whitesmoke;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 10px 50px 10px 50px;
  -webkit-transform: translateY(-600px);
          transform: translateY(-600px);
  position: absolute;
  width: 100%;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
  z-index: 1;
}

.mobile__menu .mobile__menu__dropdown .dropdown__items__dropdown__trigger {
  cursor: pointer;
}

.mobile__menu .mobile__menu__dropdown a {
  margin-bottom: 10px;
  text-decoration: none;
  color: #c0888b;
}

.mobile__menu .mobile__menu__dropdown a.active {
  color: #1a1a1a;
}

.mobile__menu .mobile__menu__dropdown .dropdown__2 .dropdown__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-left: 20px;
  max-height: 0px;
  overflow: hidden;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}

.mobile__menu .mobile__menu__dropdown .dropdown__2 .active__dropdown {
  max-height: 1000px;
  -webkit-transition: max-height 1s ease;
  transition: max-height 1s ease;
}

.mobile__menu .mobile_dropdown_active {
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
  z-index: 1;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}

#for-mobile {
  display: none;
}

#for-mobile .main__title button {
  margin-top: 50px;
}

.nav__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.nav__social a {
  margin: 10px 10px 0 0;
}

.nav__social a img {
  width: 30px;
  height: 30px;
}

.nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.nav .nav__logo {
  width: 29%;
}

.nav .nav__logo img {
  height: auto;
}

.nav ul {
  width: 80%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.nav ul li a {
  color: #6a6a6a;
  font-size: 1rem;
}

.nav span {
  width: 1px;
  height: 20px;
  background-color: #010101;
}

.nav .nav__num {
  width: 20%;
  color: #010101;
  font-size: 1.1rem;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.nav .nav__num img {
  width: 20px;
  height: 20px;
  margin: 0 10px 0 0;
}

.nav__num__mobile {
  width: 20%;
  color: #010101;
  font-size: 1.1rem;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  display: none;
}

.nav__num__mobile img {
  width: 20px !important;
  height: 20px !important;
  margin-right: 10px;
  -ms-flex-item-align: center;
      align-self: center;
}

hr.top-hr {
  margin-top: 10px;
}

ul.dropdown {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-sizing: border-box !important;
          box-sizing: border-box !important;
  position: absolute;
  top: 44px;
  left: 0;
  background: #f8fcfe;
  min-width: 170px;
  -webkit-box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.14);
          box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.14);
  border: none;
  max-height: 500px;
  border-top: 3px solid #891519;
  -webkit-transition: all 500ms ease-in-out;
  transition: all 500ms ease-in-out;
  box-sizing: border-box;
  overflow: hidden;
  z-index: 2;
}

ul.dropdown li {
  line-height: 2.3em;
}

ul.dropdown li a {
  -webkit-transition: all 100ms ease-in-out;
  transition: all 100ms ease-in-out;
  display: inline-block;
}

ul.dropdown li a:hover {
  text-decoration: none;
  border-left: 2px solid #891519;
  padding-left: 10px;
  color: #1a1a1a;
  font-weight: 700;
  margin: 5px 0;
}

ul.dropdown:not(.hideDropDown) {
  padding: 20px;
}

.products__navLink {
  position: relative;
}

.products__navLink button {
  border: none;
  outline: none;
  cursor: pointer;
}

.hideDropDown {
  max-height: 0 !important;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: none !important;
}

/*  =====  header end  =====  */

/*  =====  main  =====  */

.main__head {
  width: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.main__head video {
  position: absolute;
  width: 100%;
  height: auto;
  top: 0;
  left: 0;
  z-index: 0;
}

#video {
  width: 100%;
}

#for-safari .main__title {
  margin: 20px 0 0;
  margin-top: 26px;
  background-color: transparent;
}

#for-safari .main__title div {
  margin-top: 100px;
}

.main__title {
  width: 100%;
  color: #fff;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.main__title div {
  color: rgba(255, 255, 255, 0.3);
  font-family: roboto-bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.main__title div p {
  margin: 0;
  font-size: 1.95rem;
}

.main__title div span {
  width: 2px;
  height: 30px;
  margin: 0 35px;
  background-color: rgba(255, 255, 255, 0.2);
}

.main__title h1 {
  margin: 6px 0 10px 0;
  border-top: 1px solid white;
  border-bottom: 1px solid white;
  font-size: 4.3rem;
  letter-spacing: 3px;
  color: #fff;
  font-family: roboto-black;
}

.main__title h1 span {
  font-family: roboto-thin;
}

.main__title .main__desc {
  margin: 0;
  font-size: 1.2rem;
  text-align: center;
  font-family: roboto-black;
}

.main__title button {
  padding: 5px;
  width: 250px;
  height: 54px;
  margin: 48px 0 0;
  font-size: 12px;
  color: #fff;
  background-color: rgba(137, 21, 25, 0.502);
  border: transparent;
  cursor: pointer;
}

.main__title button:hover {
  background-color: #891519;
}

.main__title button:active {
  -webkit-transform: scale(0.99);
  transform: scale(0.99);
}

.main__title button:active {
  -webkit-box-shadow: 1px 1px 10px 1px rgba(0, 0, 0, 0.75);
  box-shadow: 1px 1px 10px 1px rgba(0, 0, 0, 0.75);
}

.main__title a {
  margin: 120px 0 0;
  -webkit-animation: upDown 3s ease infinite;
          animation: upDown 3s ease infinite;
}

.mobile__footer {
  display: none;
}

@-webkit-keyframes upDown {
  from {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
    opacity: 1;
  }

  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 0;
  }
}

@keyframes upDown {
  from {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
    opacity: 1;
  }

  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 0;
  }
}

.main__head--links {
  margin: -80px 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 20px;
  position: relative;
  z-index: 2;
}

.main__head--links div {
  position: relative;
}

.main__head--links div img {
  width: 100%;
  height: auto;
}

.main__head--links div a {
  width: 90%;
  height: 50px;
  position: absolute;
  bottom: 20px;
  left: 50%;
  font-size: 1.6rem;
  color: #fff;
  border: 1px solid #fff;
  text-align: center;
  -webkit-transform: translate(-50%, 0%);
  transform: translate(-50%, 0%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.main__head--links div a:hover {
  color: #222;
  background-color: #fff;
  text-decoration: none;
}

.btn {
  padding: 5px;
  width: 190px;
  height: 46px;
  color: #fff;
  background-color: rgba(137, 21, 25, 0.502);
  border: 1px solid transparent;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}

.btn:hover {
  background-color: #891519;
}

.btn:active {
  -webkit-transform: scale(0.99);
  transform: scale(0.99);
}

.content__title {
  padding: 10px 0 29px 30px;
  font-family: roboto-medium;
  font-size: 1.8rem;
  color: #1a1a1a;
  border-left: 5px solid #891519;
}

.content__title--grey {
  padding: 10px 0 10px 10px;
  font-size: 2.8rem;
  color: rgba(255, 255, 255, 0.4);
  border-left: 5px solid rgba(255, 255, 255, 0.4);
}

.content__bg--grey {
  background-color: #eeeff1;
}

.content__bg--red {
  background-color: #891519;
}

.content__education,
.content__install {
  margin: 80px 0 0;
  padding: 60px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 50px;
}

.content__education .education__desc,
.content__education .install__desc,
.content__install .education__desc,
.content__install .install__desc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.content__education .education__desc h2,
.content__education .education__desc h4,
.content__education .install__desc h2,
.content__education .install__desc h4,
.content__install .education__desc h2,
.content__install .education__desc h4,
.content__install .install__desc h2,
.content__install .install__desc h4 {
  margin: 0 0 20px;
}

.content__education .education__desc p,
.content__education .install__desc p,
.content__install .education__desc p,
.content__install .install__desc p {
  font-size: 14px;
  color: #888888;
  font-weight: bold;
}

.content__education .education__desc button,
.content__education .install__desc button,
.content__install .education__desc button,
.content__install .install__desc button {
  margin: 20px 0 0;
}

.content__education img,
.content__install img {
  width: 100%;
  height: auto;
  -ms-flex-item-align: center;
      align-self: center;
}

.content__news,
.content__works {
  margin: 80px 0 0;
}

.news__control,
.works__control {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.news__control .news__control--left,
.news__control .works__control--left,
.works__control .news__control--left,
.works__control .works__control--left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.news__control .news__control--left h3,
.news__control .news__control--left h5,
.news__control .works__control--left h3,
.news__control .works__control--left h5,
.works__control .news__control--left h3,
.works__control .news__control--left h5,
.works__control .works__control--left h3,
.works__control .works__control--left h5 {
  margin: 0 40px 0 0;
}

.news__control .news__control--left button,
.news__control .works__control--left button,
.works__control .news__control--left button,
.works__control .works__control--left button {
  color: rgba(137, 21, 25, 0.502);
  background-color: #fff;
  border: 1px solid rgba(137, 21, 25, 0.502);
  cursor: pointer;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.news__control .news__control--left button:hover,
.news__control .works__control--left button:hover,
.works__control .news__control--left button:hover,
.works__control .works__control--left button:hover {
  color: #fff;
  background-color: #891519;
}

.news__control .news__control--left button:active,
.news__control .works__control--left button:active,
.works__control .news__control--left button:active,
.works__control .works__control--left button:active {
  -webkit-transform: scale(0.99);
  transform: scale(0.99);
}

.news__control .news__control--arrows a,
.news__control .works__control--arrows a,
.works__control .news__control--arrows a,
.works__control .works__control--arrows a {
  margin: 10px 30px 0;
}

.news__control .news__control--arrows a img,
.news__control .works__control--arrows a img,
.works__control .news__control--arrows a img,
.works__control .works__control--arrows a img {
  width: 20px;
  height: auto;
}

.works__gallery {
  margin: 50px 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-gap: 20px;
}

.works__gallery a img {
  width: 100%;
  height: 100%;
}

.slider__container__single__post {
  border-right: 1px solid #e1e4e6;
  padding-right: 40px;
}

.slider__container__single__post + div {
  border-right: 1px solid #e1e4e6;
  padding-right: 40px;
}

.news__posts div .news__title {
  color: #1a1a1a;
  font-size: 20px;
  font-weight: bold;
}

.news__posts div .news__date {
  font-size: 14px;
}

.news__posts div .news__text {
  font-size: 14px;
  color: #888888;
}

.news__posts div a.text--up {
  color: #891519;
  font-size: 13px;
  font-weight: bold;
  text-decoration: underline;
}

.news__posts div a:hover {
  text-decoration: none;
}

.content__partners {
  margin: 80px 0 0;
  padding: 50px 0 30px;
}

.content__partners .content__title--grey {
  margin: 0;
}

.content__partners div {
  margin: 50px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.content__partners div img {
  width: auto;
  height: 100%;
  margin: 20px;
}

/*  =====  main end  =====  */

/*  =====  footer  =====  */

.footer__map {
  height: 300px;
}

.footer__bg--black {
  background-color: #0a0a0a;
}

.footer {
  padding: 30px 0;
}

.footer .nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.footer .nav .nav__logo {
  width: 20%;
}

.footer .nav .nav__logo img {
  width: 200px;
  height: auto;
}

.footer .nav ul {
  width: 80%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.footer .nav ul li a {
  color: white;
  font-size: 16px;
}

.footer .nav ul li a:hover {
  text-decoration: underline;
}

.footer .nav span {
  width: 1px;
  height: 20px;
  background-color: white;
}

.footer .nav .nav__phones {
  width: 18%;
  margin-left: 2%;
}
.footer .nav .nav__num {
  width: 100%;
  color: white;
  font-size: 1.1rem;
  font-weight: bold;
  display: flex;
  /*-webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;*/
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.footer .nav .nav__num img {
  width: 20px;
  height: 20px;
  margin: 0 10px 0 0;
}

.footer__copyright {
  margin: 20px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.footer__copyright a:hover {
  text-decoration: underline;
}

.footer__copyright .copyright__left a {
  color: #891519;
}

.footer__copyright .copyright__left p {
  font-size: 12px;
  color: #fff;
}

.footer__copyright .copyright__right p {
  font-size: 12px;
  color: #fff;
}

.footer__copyright .copyright__right p a {
  color: #891519;
}

/*  =====  footer end  =====  */

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(26, 26, 26, 0.3);
  z-index: -1;
}

.breadcrum {
  letter-spacing: 1px;
  margin-top: 25px;
  margin-bottom: 40px;
}

.breadcrum a {
  color: #891519;
}

.breadcrum .active {
  color: #7c7c7c !important;
}

.grey__paragraph {
  color: #888 !important;
  line-height: 1.5em;
  font-size: 14px;
  text-align: justify;
}

.posts__wrapper {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 20px;
  margin-bottom: 60px;
}

.posts__wrapper .without__image {
  border: 1px solid #ddd;
}

.posts__wrapper .without__image .post__title {
  margin-top: 0;
}

.posts__wrapper .without__image div {
  grid-column: 1/3;
  padding: 20px;
}

.posts__wrapper .post__title {
  color: #1a1a1a;
  font-size: 1.25rem;
  font-family: roboto-bold;
  margin: 0px 0 20px 0;
}

.posts__wrapper .other__posts {
  display: grid;
  grid-template-columns: 2fr 2fr;
  grid-gap: 20px;
}

.posts__wrapper .other__posts img {
  width: 100%;
}

.posts__wrapper .post__date {
  color: #1a1a1a;
  font-size: 14px;
}

.posts__wrapper .read__more {
  color: #891519;
  text-decoration: underline;
  font-size: 13px;
  text-transform: uppercase;
  font-family: roboto-bold;
}

.posts__wrapper .post_paragraph {
  color: #888;
  line-height: 1.5em;
  font-size: 14px;
}

.posts__wrapper .first__post {
  grid-column: 1/3;
  display: grid;
  grid-template-columns: 60% 40%;
  margin-bottom: 60px;
}

.posts__wrapper .first__post .first__post__content {
  padding: 42px 20px;
  border: 1px solid #ddd;
}

.posts__wrapper .first__post .first__post__image_wrapper {
  background-size: cover;
  background-position: center center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  padding: 4em;
  position: relative;
  z-index: 1;
  font-family: roboto-bold;
  font-size: 1.5rem;
}

.posts__wrapper .other__posts {
  border: 1px solid #ddd;
}

.posts__wrapper .other__posts .other__post__image__wrapper {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
}

.posts__wrapper .other__posts .other__post__content {
  -webkit-box-sizing: border-box !important;
          box-sizing: border-box !important;
  padding: 60px 20px 60px 0;
}

.single_post_image img {
  width: 50%;
  float: left;
  margin-right: 40px;
  margin-bottom: 30px;
}

.single__post__title {
  font-size: 1.3rem;
  color: #1a1a1a;
  font-family: roboto-medium;
  border-left: 4px solid #891519;
  margin-left: calc(50% + 40px);
  padding-left: 10px;
}

.single__product__title {
  margin-left: 0;
  font-size: 1.5rem;
}

.single__pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 20px 0 20px 0;
}

.single__pagination a {
  color: #1a1a1a;
}

.isDisabled {
  color: currentColor;
  cursor: not-allowed;
  opacity: 0.5;
  pointer-events: none;
  text-decoration: none;
}

.product__list .category__header {
  text-align: center;
  background-position: center;
  background-size: cover;
}

.product__list .category__header h2 {
  color: #f8fcfe;
  padding: 0;
  margin: 0;
  font-family: roboto-medium;
  font-size: 1.6rem;
  padding: 4em 0 4em 0;
}

.products__wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 20px;
}

.products__wrapper img {
  width: 100%;
}

.products__wrapper a {
  color: #1a1a1a;
  text-decoration: underline;
  display: block;
  padding: 0 20px 0 20px;
}

.products__wrapper .product__box {
  text-align: center;
  border: 1px solid #e8e8e8;
  padding-bottom: 20px;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  position: relative;
}

.products__wrapper .product__box .sale__label {
  position: absolute;
  left: 20px;
  top: 20px;
  color: #3884a7;
  font-family: roboto-bold;
  font-size: 1.1rem;
}

.products__wrapper .product__box .prices {
  margin: auto;
}

.products__wrapper .product__box .discount__price {
  font-family: #1a1a1a;
  font-size: 1.2rem;
  color: #888;
  text-decoration: line-through;
}

.products__wrapper .product__box:hover {
  -webkit-box-shadow: 0px 0px 30px 9px #e8e8e8;
  box-shadow: 0px 0px 30px 9px #e8e8e8;
}

.products__wrapper .product__box .price {
  font-size: 1rem;
  color: #1a1a1a;
}

.products__wrapper .product__box .price span:nth-child(1) {
  color: #891519;
  font-family: roboto-black;
  font-size: 1.75rem;
}

.products__wrapper .product__box .price span:nth-child(2) {
  color: #891519;
}

.recomended .prices {
  margin: auto;
}

.pagination__box .pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.pagination__box .pagination li a {
  color: #1a1a1a;
}

.pagination__box .pagination li .page-link {
  margin: 20px;
}

.product__main__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-bottom: 40px;
  grid-column-gap: 120px;
}

.product__main__wrapper .horizontal-line {
  border: 1px solid #dee1e3;
}

.product__main__wrapper .slider__wrapper .current img {
  width: 100%;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}

.product__main__wrapper .slider__wrapper .current img.active {
  opacity: 1;
}

.product__main__wrapper #slider {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-self: start;
  grid-gap: 20px;
  margin-top: 20px;
}

.product__main__wrapper #slider img.selected {
  border: 2px solid #891519;
}

.product__main__wrapper #slider img {
  width: 100%;
  border: 1px solid #e1e4e6;
  cursor: pointer;
}

.product__main__wrapper #slider img:hover {
  border: 2px solid #891519;
}

.single__product__title {
  grid-column: 1/3;
  margin-top: 0;
}

.discount__price {
  color: #888;
  text-decoration: line-through;
  font-size: 1.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.prices {
  width: -webkit-fit-content;
  width: fit-content;
  width: -moz-fit-content;
}

.price {
  font-size: 1rem;
  color: #1a1a1a;
  font-family: roboto-medium;
}

.price span:nth-child(1) {
  color: #891519;
  font-family: roboto-black;
  font-size: 1.75rem;
}

.price span:nth-child(2) {
  color: #891519;
}

.top__word {
  font-family: roboto-medium;
}

.delivery {
  background: #eeeff1;
  padding: 30px 0 30px 20px;
}

.delivery div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 10px;
}

.delivery div span:nth-child(2) {
  color: #1a1a1a;
  padding-left: 10px;
  font-size: roboto-medium;
}

.delivery div span:nth-child(3) {
  font-family: roboto-light;
}

/* Style the tab */

.tab {
  overflow: hidden;
  border: 1px solid #e1e4e6;
  border-right: none;
  border-left: none;
}

/* Style the buttons that are used to open the tab content */

.tab button {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: #888;
  font-family: roboto-medium;
}

/* Change background color of buttons on hover */

.tab button:hover {
  background-color: #eeeff1;
}

/* Create an active/current tablink class */

.tab button.active {
  border-bottom: 2px solid #891519;
  color: #1a1a1a;
}

/* Style the tab content */

.tabcontent {
  display: none;
  padding: 20px 0px;
  border-top: none;
}

.tabcontent {
  -webkit-animation: fadeEffect 1s;
          animation: fadeEffect 1s;
  /* Fading effect takes 1 second */
}

/* Go from zero to full opacity */

@-webkit-keyframes fadeEffect {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeEffect {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.recomended {
  background: #eeeff1;
  padding: 3.7em 0 3.7em 0;
}

.recomended .content__title {
  margin-left: 15px;
}

/* Slick Slider Css Ruls */

.slick-slider {
  position: relative;
  display: block;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  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: hand;
}

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

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

.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;
  min-height: 1px;
}

.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;
}

/* Slider Theme Style */

.Container:after,
.Container .Head:after {
  content: "";
  display: block;
  clear: both;
}

.Container .Head {
  font: 20px/50px NeoSansR;
  color: #222;
  height: 52px;
  overflow: hidden;
}

.Container .Head .Arrows,
.Container .Head .Arrows2 {
  float: right;
}

.Container .Head .Slick-Next,
.Container .Head .Slick-Prev {
  display: inline-block;
  width: 38px;
  height: 38px;
  margin-top: 6px;
  background: #2b2b2b;
  color: #fff;
  margin-left: 5px;
  cursor: pointer;
  font: 18px/36px FontAwesome;
  text-align: center;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.Container .Head .Slick-Next:hover,
.Container .Head .Slick-Prev:hover {
  background: #891519;
}

.Container .Head .Slick-Next:before {
  content: "\F105";
}

.Container .Head .Slick-Prev:before {
  content: "\F104";
}

.SlickCarousel {
  margin: 0 -7.5px;
  margin-top: 10px;
}

.ProductBlock {
  padding: 0 7.5px;
}

.ProductBlock .img-fill {
  height: 200px;
}

.ProductBlock h3 {
  font: 15px/36px RalewayR;
  color: #393939;
  margin-top: 5px;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.25);
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.04);
}

.panel {
  position: relative;
  text-align: center;
  border: 1px solid #e8e8e8;
  background: #fff;
}

.panel .sale__label {
  position: absolute;
  top: 20px;
  left: 20px;
  color: #3884a7;
}

.panel a.product__name {
  color: #1a1a1a;
  text-decoration: underline;
}

.panel .discount__price {
  margin-top: 20px;
}

.panel img {
  width: 100%;
}

.work__slider {
  padding: 3.7em 0 3.7em 0;
}

.work__slider .content__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.work__slider .content__title a {
  color: #891519;
  margin-left: 30px;
}

.work__slider .content__title a:hover {
  color: #b51c21;
}

.work__slider .Head {
  margin-top: 0;
  margin-bottom: 10px;
  margin-right: 7.5px;
}

.slider__container {
  position: relative;
}

.slider__container .swiper-button-prev--custom,
.slider__container .swiper-button-prev--custom-2 {
  position: absolute;
  top: -87px;
  right: 24px;
  width: 12px;
  height: 12px;
  cursor: pointer;
  border: 3px solid;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  border-top: none;
  border-right: none;
  outline: none;
}

.slider__container .swiper-button-next--custom,
.slider__container .swiper-button-next--custom-2 {
  position: absolute;
  top: -87px;
  right: 3px;
  width: 12px;
  height: 12px;
  cursor: pointer;
  border: 3px solid;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  border-bottom: none;
  border-left: none;
  outline: none;
}

.slider__container .slide__wrapper {
  position: relative;
  cursor: pointer;
}

.slider__container .slide__wrapper .redoverlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(137, 21, 25, 0.5);
  z-index: -1;
  opacity: 0;
  -webkit-transition: all 0.5s ease 0.3s;
  transition: all 0.5s ease 0.3s;
}

.slider__container .slide__wrapper .hoverArrows {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 60px;
  z-index: -1;
  opacity: 0;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.slider__container .slide__wrapper:hover .redoverlay {
  z-index: 1;
  opacity: 1;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.slider__container .slide__wrapper:hover .hoverArrows {
  z-index: 2;
  opacity: 1;
  -webkit-transition: all 0.5s ease 0.3s;
  transition: all 0.5s ease 0.3s;
}

.transparent__btn {
  border: 1px solid #891519;
  padding: 10px;
  font-size: 1rem;
  color: #891519;
  border-radius: 2px;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

.transparent__btn:hover {
  text-decoration: none;
  border: 1.3px solid #b51c21;
}

.title__box,
.amount,
.info,
.delivery__options {
  padding: 20px;
}

.title__box {
  padding-right: 4em;
}

.modal__product__name {
  font-size: 1.5rem;
  font-family: roboto-medium;
  color: #000;
}

.amount {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.info input,
.info textarea {
  display: block;
  width: 100%;
  margin-bottom: 10px;
  padding: 8px;
  padding-left: 10px;
  border: 1px solid #ddd;
  -webkit-transition: 1s ease;
  transition: 1s ease;
  outline: none !important;
}

.info input:focus,
.info textarea:focus {
  border: 1px solid #891519;
}

.info input:last-child,
.info textarea:last-child {
  margin-bottom: 0px;
}

.modal-wrapper .horizontal-line {
  border: 0.5px solid #dee1e3 !important;
}

::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #c5c8ca;
}

::-moz-placeholder {
  /* Firefox 19+ */
  color: #c5c8ca;
}

:-ms-input-placeholder {
  /* IE 10+ */
  color: #c5c8ca;
}

:-moz-placeholder {
  /* Firefox 18- */
  color: #c5c8ca;
}

.total {
  color: #1a1a1a;
}

.total span:first-child {
  color: #891519;
  font-size: 1.8rem;
  font-family: roboto-black;
}

.amount input {
  border: none;
  outline: none;
  max-width: 20px;
  text-align: center;
}

.amount .qty {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.amount .qty .qty__meter {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 40px;
  height: 30px;
  padding: 5px 5px;
  margin-left: 20px;
  border: 1px solid #ddd;
}

.amount .qty .qty__meter span:nth-child(1) {
  padding-left: 10px;
  padding-right: 10px;
  cursor: pointer;
}

.amount .qty .qty__meter span:nth-child(3) {
  padding-left: 10px;
  padding-right: 10px;
  cursor: pointer;
}

.amount .qty .qty__meter span:nth-child(2) {
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
  padding-left: 10px;
  padding-right: 10px;
}

.delivery__options {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.delivery__options .delivery__headline {
  grid-column: 1/3;
  color: #1a1a1a;
  font-family: roboto-medium;
}

.delivery__options span {
  color: #1a1a1a;
  font-family: roboto-medium;
}

.delivery__options img {
  padding-right: 5px;
  padding-left: 5px;
}

.delivery__options .opt2 {
  justify-self: end;
}

.save__btn__wrapper {
  padding: 20px;
  padding-left: 30px;

  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}

.form__response {
  margin: 0 10px;
	padding: 16px 20px;
	-ms-flex-positive: 1;
	    flex-grow: 1;
	text-align: center;
  font-size: 14px;
	line-height: 1;
}

.subnav__wrapper {
  display: grid;
  grid-template-columns: 1fr 3fr;
  grid-gap: 60px;
  margin-bottom: 50px;
}

.subnav__wrapper .subnav {
  border: 1px solid #d9d9d9;
  padding: 20px;
  padding-bottom: 0;
}

.subnav__wrapper .subnav span {
  font-family: roboto-bold;
  font-size: 1.5rem;
  padding-left: 25px;
  display: block;
  margin-bottom: 40px;
  padding-top: 30px;
}

.subnav__wrapper .subnav ul {
  padding: 0;
  padding-left: 25px;
}

.subnav__wrapper .subnav ul li a {
  font-size: 1.1rem;
  color: #888;
  display: block;
  line-height: 2.5;
  margin-bottom: 10px;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

.subnav__wrapper .subnav ul li a:hover {
  text-decoration: none;
  color: #000;
  padding-left: 10px;
}

.subnav__wrapper .subnav ul li a.active {
  color: #000;
  border-left: 2px solid #891519;
  padding-left: 10px;
}

.subnav__wrapper .category__header {
  display: grid;
  grid-row-gap: 20px;
}

.subnav__wrapper .category__header .grey__paragraph {
  margin-bottom: 0;
}

.subnav__wrapper .category__header .imageWrapper {
  text-align: center;
  background-position: center;
  background-size: cover;
}

.subnav__wrapper .category__header .imageWrapper h2 {
  color: #f8fcfe;
  padding: 0;
  margin: 0;
  font-family: roboto-medium;
  font-size: 2.8rem;
  padding: 4em 0 4em 0;
}

.top-hr {
  margin-bottom: 5px;
}

.bottom-hr {
  margin-top: 5px;
}

.installation__list .installation__list__wrapper:nth-child(odd) {
  background: #eeeff1;
}

.installation__list img.installation__image {
  width: 100%;
  display: block;
  -ms-flex-item-align: center;
      align-self: center;
}

.installation__list .container {
  display: grid;
  grid-template-columns: 5fr 7fr;
  padding: 50px 0 50px 0;
}

.installation__list .container .installation__details h2 {
  font-family: roboto-medium;
  color: #1a1a1a;
  font-size: 1.8rem;
  border-left: 3px solid #891519;
  padding-left: 20px;
}

.installation__list .container .installation__details ul {
  padding-left: 0;
}

.installation__list .container .installation__details li {
  list-style-type: none;
  line-height: 2.3;
}

.installation__list .container .installation__details li:before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: #891519;
  margin-right: 10px;
  vertical-align: middle;
  margin-top: -3px;
}

.installation__list .container .installation__details h1 {
  font-size: 1.2rem;
  color: black;
  font-family: roboto-medium;
  margin-bottom: 2.18rem;
}

.installation__list .container .installation__details h1 span:nth-child(1) {
  color: #891519;
  font-size: 1.8rem;
  font-family: roboto-black;
}

.installation__list .container .installation__details h1 span:nth-child(2) {
  color: #891519;
}

.installation__list .container .installation__details .social {
  margin-bottom: 2.18rem;
}

.installation__list .container .installation__details .social i {
  background-color: #c5c6c7;
  color: #fff;
  display: inline-block;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  line-height: 35px;
  text-align: center;
  font-size: 1rem;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  cursor: pointer;
  margin-right: 3px;
}

.installation__list .container .installation__details .social i:hover {
  background-color: #888;
}

.portfolio__nav {
  border-top: 1px solid #e1e4e6;
  border-bottom: 1px solid #e1e4e6;
  padding: 10px 0;
  margin-bottom: 40px;
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.portfolio__nav a {
  display: inline-block;
  margin-right: 20px;
  color: #888;
  position: relative;
}

.portfolio__nav a:hover {
  text-decoration: none;
  color: #000;
}

.portfolio__nav a.active {
  color: #000;
}

.portfolio__nav a.active:after {
  content: "";
  width: 100%;
  height: 3px;
  background-color: #891519;
  border-radius: 5px;
  position: absolute;
  left: 0;
  bottom: -10px;
}

.portfolio__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 5px;
}

.image__wrapper {
  position: relative;
}

.image__wrapper .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0;
  -webkit-transition: all 0.5s ease 0.3s;
  transition: all 0.5s ease 0.3s;
  background: rgba(137, 21, 25, 0.6);
}

.image__wrapper .hoverArrow {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: -1;
  opacity: 0;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  width: 60px;
}

.image__wrapper:hover .overlay {
  opacity: 1;
  z-index: 22;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.image__wrapper:hover .hoverArrow {
  opacity: 1 !important;
  z-index: 24;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.single__work {
  display: grid;
  grid-template-columns: 6fr 6fr;
  grid-gap: 60px;
}

.single__work .content__title {
  font-size: 1.8rem;
}

.single__work .slider__wrapper .current img {
  width: 100%;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}

.single__work .slider__wrapper .current img.active {
  opacity: 1;
}

.single__work #slider {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-self: start;
  grid-gap: 20px;
  margin-top: 20px;
}

.single__work #slider img.selected {
  border: 2px solid red;
}

.single__work #slider img {
  width: 100%;
  border: 1px solid #e1e4e6;
  cursor: pointer;
}

.single__work #slider img:hover {
  border: 2px solid red;
}

.work__info .grey__paragraph {
  margin-top: 40px;
}

.training .product__list .category__header h2 {
  padding: 4em 0 4em 0;
}

.price__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  border-top: 1px solid #e1e4e6;
  border-bottom: 1px solid #e1e4e6;
  padding-top: 8px;
}

.price__wrapper .price__time {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}

.price__wrapper .price__time h4 {
  font-size: 1.2rem;
  color: black;
  font-family: roboto-medium;
  margin-bottom: 2.18rem;
  padding-right: 30px;
  margin: 0;
}

.price__wrapper .price__time h4 span:nth-child(1) {
  color: #891519;
  font-size: 1.8rem;
  font-family: roboto-black;
}

.price__wrapper .price__time h4 span:nth-child(2) {
  color: #891519;
  padding-left: 5px;
}

.price__wrapper .price__time h3 {
  font-family: roboto-medium;
  color: #000;
  font-size: 1rem;
  padding-left: 30px;
  border-left: 1px solid #c6cacb;
}

.price__wrapper .price__time h3 span {
  font-size: 1.5rem;
  font-family: roboto-black;
  color: #891519;
}

.certificates {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 20px;
}

.certificates .content__title {
  grid-column: 1 / span 4;
}

.trainers .trainers__slider__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.trainers .trainers__slider__wrapper .my-swiper-button-prev {
  display: inline-block;
  width: 20px;
  height: 20px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  border: 4px solid #000;
  border-bottom: none;
  border-right: none;
  margin-left: 5px;
  outline: none;
  cursor: pointer;
}

.trainers .trainers__slider__wrapper .my-swiper-button-next {
  display: inline-block;
  width: 20px;
  height: 20px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  border: 4px solid #000;
  border-left: none;
  border-top: none;
  margin-right: 5px;
  outline: none;
  cursor: pointer;
}

.trainers .swiper-container {
  width: 80%;
  -webkit-box-shadow: 0px 0px 23px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 23px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
  border-radius: 2px;
}

.trainers .trainer__card {
  display: grid;
  grid-template-columns: 2fr 8fr;
  grid-column-gap: 30px;
  padding: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #f8fcfe;
  border: none;
}

.trainers .trainer__card img {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  border: 4px solid rgba(137, 21, 25, 0.5);
  border-radius: 50%;
}

.trainers .trainer__card h4 {
  color: #1a1a1a;
  font-size: 22px;
  font-family: roboto-medium;
}

.office__heading {
  color: #891519;
  font-size: 16px;
  font-family: roboto;
  display: block;
  position: relative;
  margin-left: 10px;
  margin-bottom: 30px;
  margin-top: 30px;
}

.office__heading:before {
  content: "";
  position: absolute;
  top: 10px;
  left: -10px;
  width: 5px;
  height: 5px;
  background-color: #891519;
}

.map__address__wrapper {
  display: grid;
  grid-template-columns: 8fr 4fr;
  grid-gap: 35px;
}

.map__address__wrapper img {
  width: 100%;
}

.map__address__wrapper iframe {
  width: 100%;
  height: 350px;
}

.address {
  -ms-flex-item-align: center;
      align-self: center;
}

.address h2 {
  font-family: roboto-black;
  font-size: 1.5rem;
  color: #000;
}

.address p {
  font-family: roboto-medium;
  font-size: 16px;
  color: #000;
}

.address .address__line {
  font-family: roboto;
}

.address .email__address {
  color: #891519;
  text-decoration: underline;
}

.address .ph_no {
  color: #891519;
  font-size: 1.25rem;
  font-family: roboto-bold;
}

.single__portfolio .work__slider {
  padding: 0;
}

.products__navLink button {
  background: transparent;
  color: #6a6a6a;
}

.products__navLink button:hover {
  color: #c0888b;
}

a.active,
button.active {
  color: #c0888b !important;
}

.modal-container img.modal-image {
  width: 100% !important;
}

.review__form {
  margin-top: 30px;
  width: 50%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px;
  background: #fff;
  padding: 20px;
}

.review__form textarea {
  grid-column: 1 / span 2;
  border: none;
  padding: 20px;
  background: whitesmoke;
  color: #666;
}

.review__form textarea:focus {
  outline: none;
}

.review__form input {
  height: 45px;
  border: none;
  padding: 20px;
  background: whitesmoke;
  color: #666;
}

.fade-enter-active,
.fade-leave-active {
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}

.fade-enter,
.fade-leave-to {
  opacity: 0;
}

.error {
  border: 1px solid red !important;
}

.successMessage {
  background: #d6fbd6;
  padding: 10px;
  width: 50%;
  margin-top: 20px;
  color: #736464;
}

.allreviews {
  display: grid;
  grid-template-columns: 40px 2fr auto;
  padding-top: 40px;
  grid-column-gap: 40px;
}

.allreviews p {
  grid-column: 2 / span 2;
  margin: 0;
}

.allreviews .user__name {
  color: #000;
}

.allreviews .letter__avatar {
  width: 40px;
  background: #e8c6c6;
  height: 40px;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  padding: 0;
  margin: 0;
  color: white;
  font-size: 30px;
}

.review__count {
  color: #aba9a9;
  font-size: 14px;
}

.mobile__top__bar {
  display: none;
}

.mobile__top__bar .top__bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid #eaeaea;
}

.mobile__top__bar .top__bar img {
  width: 180px;
}

.mobile__top__bar .top__bar .burger {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: -webkit-transform 800ms ease-in-out;
  transition: -webkit-transform 800ms ease-in-out;
  transition: transform 800ms ease-in-out;
  transition: transform 800ms ease-in-out, -webkit-transform 800ms ease-in-out;
  cursor: pointer;
  position: relative;
  z-index: 99999;
}

.mobile__top__bar .top__bar .burger span {
  width: 31px;
  margin: 4px;
  height: 3px;
  background: #891519;
  -webkit-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
}

.mobile__nav {
  font-family: "PT Sans Narrow", sans-serif;
  background: #fff;
  min-height: 100vh;
  width: 0%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-transition: width 250ms ease-in-out;
  transition: width 250ms ease-in-out;
}

.mobile__nav .top__bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid #eaeaea;
}

.mobile__nav .top__bar img {
  width: 180px;
}

.mobile__nav .burger {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: -webkit-transform 800ms ease-in-out;
  transition: -webkit-transform 800ms ease-in-out;
  transition: transform 800ms ease-in-out;
  transition: transform 800ms ease-in-out, -webkit-transform 800ms ease-in-out;
  cursor: pointer;
}

.mobile__nav .burger span {
  width: 31px;
  margin: 4px;
  height: 3px;
  background-color: #1a1a1a;
}

.mobile__nav .menu__list__wrapper {
  font-size: 1.2rem;
}

.mobile__nav .menu__list__wrapper .submenu__btn__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px;
  border-bottom: 1px solid #eaeaea;
}

.mobile__nav .menu__list__wrapper .submenu__btn__wrap .fa-plus {
  font-size: 16px;
  cursor: pointer;
  display: inline-block;
}

.mobile__nav .menu__list__wrapper .submenu__btn__wrap .fa-minus {
  display: none;
}

.mobile__nav .menu__list__wrapper .submenu .submenu__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0 40px;
  background-color: #fdfdfd;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 500ms ease-in-out;
  transition: max-height 500ms ease-in-out;
}

.mobile__nav .menu__list__wrapper .submenu .submenu__links a {
  padding: 10px 0;
  color: #505252;
}

.mobile__nav .is-active {
  background-color: #f8f8f8;
}

.mobile__nav .menu__link {
  padding: 20px;
  border-bottom: 1px solid #eaeaea;
}

.mobile__nav .menu__link a {
  color: #505252;
  text-decoration: none !important;
  font-size: 20px;
}

.mobile__nav .submenu__is__open {
  max-height: 500px !important;
}

.widen {
  width: 100% !important;
}

.opened__stik_1 {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transform-origin: left;
          transform-origin: left;
  background: #891519 !important;
  -webkit-transition: -webkit-transform 250ms ease-in-out;
  transition: -webkit-transform 250ms ease-in-out;
  transition: transform 250ms ease-in-out;
  transition: transform 250ms ease-in-out, -webkit-transform 250ms ease-in-out;
}

.opened__stik_2 {
  opacity: 0;
  -webkit-transition: opacity 250ms ease-in-out;
  transition: opacity 250ms ease-in-out;
}

.opened__stik_3 {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transform-origin: left;
          transform-origin: left;
  background: #891519 !important;
  -webkit-transition: -webkit-transform 250ms ease-in-out;
  transition: -webkit-transform 250ms ease-in-out;
  transition: transform 250ms ease-in-out;
  transition: transform 250ms ease-in-out, -webkit-transform 250ms ease-in-out;
}

.overflow_hidden {
  position: relative;
  overflow: hidden !important;
  overflow-y: hidden !important;
}

.banner__h1 {
  font-size: 1.7rem;
  margin-top: 0;
  margin-bottom: 30px;
  color: #666;
}

.inbanner__h2 {
  font-size: 1.6rem !important;
}

.mobile__installation__banner {
  display: none;
}

.per__meter__price {
  color: #891519;
}

.per__meter__heading {
  font-size: 13px;
  margin-top: 10px;
  display: inline-block;
}

.table__wrapper tr:nth-child(odd) {
  background-color: whitesmoke;
}

.table__wrapper td {
  font-size: 14px;
}

.table__wrapper td:nth-child(odd) {
  width: 50%;
  text-align: right;
  padding: 12px;
  border-right: 1px solid #e8e4e4;
}

.table__wrapper td:nth-child(even) {
  padding-left: 12px;
}

.video__wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.video__wrapper .lay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #536976;
  /* fallback for old browsers */
  /* Chrome 10-25, Safari 5.1-6 */
  background: -webkit-gradient(linear, left top, right top, from(#292e49), to(#536976));
  background: linear-gradient(to right, #292e49, #536976);
  /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  opacity: 0.3;
}

.video__wrapper .header__text {
  position: absolute;
}

.main__nav {
  background: #fff;
}

.main__nav .top__nav__bar {
  display: grid;
  grid-template-columns: 1fr 3fr 1fr;
  padding: 7px 0px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.main__nav .top__nav__bar .brand__logo img {
  width: 250px;
}

.main__nav .top__nav__bar .social__nav {
  justify-self: flex-end;
}

.social__nav a,
.social__nav a:hover {
  text-decoration: none;
}

.main__nav .top__nav__bar .contact__section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.main__nav .top__nav__bar .contact__section a {
  color: #891519;
  font-size: 20px;
}

.main__nav .top__nav__bar .contact__section a:nth-child(1) {
  margin-bottom: 5px;
}

.main__nav .nav__links > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 8px 0px;
}

.main__nav .nav__links > ul a {
  color: #6a6a6a;
  text-decoration: none;
}

.main__nav .nav__links > ul a:hover {
  color: #c0888b;
}

.main__nav .second__nav__bar {
  background: #fbfbfb;
}

.content__title {
  padding: 10px 0 29px 30px;
  font-family: roboto-medium;
  font-size: 1.8rem;
  color: #1a1a1a;
  border-left: 5px solid #891519;
}

.social__fa {
  background: #c59d9c;
  color: #fff;
  padding: 4px;
  vertical-align: middle;
  font-size: 22px;
}

.mobile__menu__footer .contact__section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 20px;
}

.mobile__menu__footer .contact__section a {
  color: #891519;
  font-size: 20px;
}

.subnav__wrapper .subnav {
  -ms-flex-item-align: self-start;
      align-self: self-start;
  padding-bottom: 40px;
}

.video__review__wrapper .video__review {
  margin-bottom: 60px;
  text-align: center;
}

.video__review__wrapper .video__review iframe {
  max-width: 100%;
}

.work__slider img.single_image {
  max-width: 100%;
}

.slider__wrapper .current {
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
}

.scroll__down__arrow {
  cursor: none;
}

.single__product__slider__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 40px;
}

.single__product__slider__wrapper h2.single__product__title.single__post__title {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  margin-bottom: 30px;
}

.single__product__slider__wrapper .show__product__slider__wrap {
  -webkit-box-flex: 1;
      -ms-flex: 1 auto;
          flex: 1 auto;
  margin-right: 30px;
}

.single__product__slider__wrapper .prices__wrapper {
  -webkit-box-flex: 1;
      -ms-flex: 1 auto;
          flex: 1 auto;
  margin-left: 30px;
}

.contacts {
  font-family: Roboto, Arial, sans-serif;
  margin-bottom: 50px;
}
.contacts__title {
  font-family: 'roboto';
  font-size: 18px;
  line-height: 1;
  font-weight: 400;
  color: #891519;
  margin-bottom: 0;
}
.contacts-main {
  padding: 19px 0;
}
.contacts-main__list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.contacts-main__item {
  width: 360px;
  margin: 24px 24px 0 0;
  background: #FFFFFF;
  border: 1px solid #D4D4D4;
  position: relative;
  padding: 20px 20px 18px 71px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.contacts-main__list p {
  font-size: 14px;
  line-height: 1.7;
  color: #000000;
  margin: 0 0 1px;
}
.contacts-main__address {}
.contacts-main__mail {}
.contacts-main__mail a {
  color: #891519;
}
.contacts-main__phone {}
.contacts-main__phone a, .regional-office__contacts a {
  color: #000000;
}

#contacts-map {
  margin: 3px 0 19px;
  width: 100%;
  height: 400px;
  position: relative;
}



.contacts-regions {
  padding: 20px 0;
}
.contacts-regions__list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.contacts-regions__list + .btn--left {
  margin-top: 25px;
}
.contacts-regions__item {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: block;
  width: 31.55%;
  margin: 25px 2.65% 0 0;
  position: relative;
  padding: 12px 115px 44px 12px;
  border: 1px solid #D4D4D4;
  transition: 500ms ease-in-out;
}
.contacts-regions__item:nth-of-type(3n), .contacts-install__item:nth-of-type(3n) {
  margin-right: 0;
}
.contacts-regions__item:hover {
  border-color: #891519;
}
.contacts-regions__item p {
  font-size: 14px;
  line-height: 1.7;
  color: #000000;
  margin: 0 0 5px;
}
.contacts-regions__logo {
  position: absolute;
  width: 90px;
  height: 90px;
  border: 1px solid #F2F2F2;
  border-radius: 10px;
  top: 12px;
  right: 12px;
  overflow: hidden;
  background: url() 50% 50% no-repeat;
  background-size: 80px auto;
}
.contacts-regions__item .btn--right {
  position: absolute;
  bottom: 11px;
  left: 11px;
}
.btn--right,
.btn--left {
  font-size: 14px;
  line-height: 1;
  color: #891519;
  background-color: transparent;
  text-decoration: none;
  border: 1px solid #891519;
  border-radius: 4px;
  display: inline-block;
  padding: 7px 32px 7px 11px;
  transition: 500ms ease-in-out;
  position: relative;
}
.btn--left {
  padding-left: 32px;
  padding-right: 11px;
}
.btn--right::before,
.btn--left::before {
  content: '';
  display: block;
  position: absolute;
  pointer-events: none;
  top: 9px;
  right: 16px;
  width: 9px;
  height: 9px;
  border: 1px solid #000;
  border-bottom: 0;
  border-left: 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: 500ms ease-in-out;
}
.btn--left::before {
  top: 9px;
  left: 16px;
  right: auto;
  -webkit-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
.btn--right:hover,
.btn--left:hover {
  color: #FFFFFF;
  background-color: #891519;
  text-decoration: none;
}
.btn--right:hover::before,
.btn--left:hover::before {
  border-color: #FFFFFF;
}
.ico-map {
  background-image: url("data:image/svg+xml,%3Csvg fill='none' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath d='M16 0C9.61 0 4.41 5.199 4.41 11.59c0 7.93 10.372 19.572 10.813 20.064a1.044 1.044 0 001.553 0c.442-.492 10.813-12.134 10.813-20.065C27.59 5.2 22.39 0 16 0zm0 17.42a5.837 5.837 0 01-5.83-5.83A5.837 5.837 0 0116 5.757a5.837 5.837 0 015.83 5.831A5.837 5.837 0 0116 17.42z' fill='%23891519'/%3E%3C/svg%3E");
  background-size: 32px;
  background-repeat: no-repeat;
}
.contacts-install__item.ico-map:hover {
  background-image: url("data:image/svg+xml,%3Csvg fill='none' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath d='M16 0C9.61 0 4.41 5.199 4.41 11.59c0 7.93 10.372 19.572 10.813 20.064a1.044 1.044 0 001.553 0c.442-.492 10.813-12.134 10.813-20.065C27.59 5.2 22.39 0 16 0zm0 17.42a5.837 5.837 0 01-5.83-5.83A5.837 5.837 0 0116 5.757a5.837 5.837 0 015.83 5.831A5.837 5.837 0 0116 17.42z' fill='%23FFFFFF'/%3E%3C/svg%3E");
}
.contacts-ico {
  position: absolute;
  width: 32px;
  height: 32px;
  display: block;
  top: 19px;
  left: 19px;
}




.contacts-regional-office {
  padding: 18px 0;
  font-size: 14px;
  line-height: 1.7;
  display: none;
}
.contacts-regional-office__wrap {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: start;
      align-items: flex-start;
  margin: 40px auto 17px;
}
.regional-office__name {
  -ms-flex-positive: 1;
      flex-grow: 1;
  margin: 0;
  width: 190px;
  font-family: 'roboto-medium';
  padding: 8px 10px 0 52px;
  background-position: 0 5px;
}
.regional-office__name span {
  margin: 5px 0;
  font-size: 0.7em;
  line-height: 1.2;
  display: block;
}
.regional-office__contacts,
.regional-office__schedule {
  padding: 6px 10px 0 0;
  width: 282px;
}
.regional-office__contacts p,
.regional-office__schedule p {
  margin: 0 0 1px;
}
/* .regional-office__logo {
  width: 290px;
  margin-left: auto;
  background: #fff;
  padding: 0 30px;
}
.regional-office__logo::before,
.regional-office__logo::after {
  content: '';
  display: inline-block;
}
.regional-office__logo::before {
  margin-top: auto;
}
.regional-office__logo::after {
  margin-bottom: auto;
} */
.regional-office__logo {
	width: 170px;
	height: 170px;
	margin-left: auto;
	background: #fff;
	padding: 0 20px;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: center;
	    justify-content: center;
	-ms-flex-align: center;
	    align-items: center;
}
.regional-office__logo img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.ymap-custom-icon {
  background: #ffffffe6;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  padding: 3px 6px 4px;
  border-radius: 6px;
  line-height: inherit;
  height: auto;
  color: #000;
  margin-top: 10px;
}
.ymap-custom-icon span {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  font-family: 'roboto-medium';
  font-size: 12px;
  line-height: 1.2;
  font-weight: 500;
  color: #000;
  display: inline-block;
}


.contacts-install {
	padding: 20px 0;
}
.contacts-install__list {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
}
.contacts-install__item {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: block;
  width: 31.55%;
  margin: 24px 2.65% 0 0;
  position: relative;
  padding: 26px 45px 25px 71px;
  border: 1px solid #D4D4D4;
  transition: 500ms ease-in-out;
  font-size: 14px;
  line-height: 1.4;
  color: #000;
  text-decoration: none !important;
  background-position: 19px 19px;
}
.contacts-install__item:nth-of-type(3n) {
	margin-right: 0;
}
.contacts-install__item:hover {
  border-color: #891519;
  background-color: #891519;
  color: #FFFFFF;
}
.contacts-install__item::before {
  content: '';
  display: block;
  position: absolute;
  width: 9px;
  height: 9px;
  top: 30px;
  right: 24px;
  border: 1px solid #000;
  border-top: 0;
  border-left: 0;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.contacts-install__item:hover::before {
  border-color: #FFFFFF;
}



.contacts-centers {
  display: none;
  padding: 20px 0;
  position: relative;
}
.contacts-cities {
	position: absolute;
	top: 9px;
	left: 208px;
	background: #fff;
	border: 1px solid #E1E4E6;
	border-radius: 4px;
	width: 220px;
	height: 40px;
}
.contacts-cities::after {
  content: '';
  display: block;
  position: absolute;
  width: 9px;
  height: 9px;
  top: 12px;
  right: 15px;
  border: 1px solid #891519;
  border-top: 0;
  border-left: 0;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  pointer-events: none;
}
.contacts-cities select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: #FFFFFF;
  border:none;
  font-family: Roboto;
  font-size: 14px;
  line-height: 1;
  padding: 13px 12px 11px;
  cursor: pointer;
  width: 100%;
  height: 100%;
  outline: 0;
  border-radius: 4px;
}
.contacts-centers .contacts__title {
	margin-bottom: 10px;
}


.modal-container img.modal-image {
  max-height: 565px;
}

.grey__paragraph ul {
  list-style: initial;
}

.tabcontent {
  padding: 20px 10px;
}



/*  =====  flex  =====  */

.container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}

.container-fluid {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

/*  =====  flex end  =====  */

@media (max-width: 1199.98px) {
  .product__main__wrapper {
    grid-column-gap: 60px;
  }

  .nav__num__mobile {
    display: block;
  }

  .nav__num {
    display: none !important;
  }
}

@media (max-width: 991.98px) {
  .mobile__nav__wrap_to_scroll {
    height: calc( 100vh - 70px);
    overflow-y: auto;
  }

  #for-safari,
  #for-other-browser {
    display: none;
  }

  #for-mobile {
    display: block;
  }

  #for-mobile .main__title button {
    margin-top: 20px;
  }

  header {
    display: none;
  }

  .bottom-hr {
    display: none;
  }

  .breadcrum {
    margin-top: 0;
    padding-top: 20px;
  }

  .subnav__wrapper .subnav span {
    padding-top: 0;
  }

  .product__main__wrapper {
    grid-template-columns: 1fr;
    grid-gap: 0;
    padding: 0 20px 0 20px;
  }

  .posts__wrapper .first__post .first__post__image_wrapper {
    padding: 20px;
  }

  .container {
    width: 100%;
  }

  .other__posts {
    grid-auto-rows: 200px;
  }

  .other_post_image_box {
    grid-column: 1/3;
  }

  .posts__wrapper .other__posts .other__post__content {
    grid-column: 1/3;
    padding: 10px 20px 10px 20px;
  }

  .products__wrapper {
    grid-template-columns: repeat(3, 1fr);
  }

  .tablinks {
    display: block;
    width: 100%;
  }

  .portfolio__nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .portfolio__nav a {
    margin-bottom: 20px;
  }

  .portfolio__nav a:nth-child(1) {
    margin-top: 20px;
  }

  .portfolio__list {
    grid-template-columns: repeat(3, 1fr);
  }

  .content__title {
    font-size: 1.8rem;
  }

  .modal-wrapper {
    width: 95% !important;
  }

  .map__address__wrapper {
    grid-template-columns: 1fr;
  }

  .contact__wrapper {
    padding: 0 20px 0 20px;
  }

  .product__main__wrapper {
    grid-template-columns: 1fr;
  }

  .product__main__wrapper .single__product__title.single__post__title {
    grid-column: 1;
  }

  .product__main__wrapper .slider__wrapper {
    margin-bottom: 50px;
  }

  .product__main__wrapper .price {
    margin-bottom: 30px;
  }

  .slider__container__single__post + div {
    border: none;
    padding-left: 40px;
    padding-right: 0;
  }

  .mobile__menu {
    display: block;
  }

  .main__title {
    background-size: 115% 100%;
  }

  .content__partners div {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .mobile__top__bar {
    display: block;
  }

  .video__wrapper {
    display: none;
  }

  .main__title div {
    margin-top: 100px;
  }

  .main__nav {
    display: none;
  }
}

@media (min-width: 767px) and (max-width:992px) {
  .contacts-regions__list, .contacts-install__list {
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .contacts-regions__item, .contacts-install__item {
    width: 45%;
    margin-left: 0;
    margin-right: 0;
  }
  .regional-office__name,
  .regional-office__contacts,
  .regional-office__schedule,
  .regional-office__logo {
    width: 50%;
  }
  .regional-office__name {
    -ms-flex-order: 0;
    order: 0;
    margin-bottom: 20px;
  }
  .regional-office__logo {
    -ms-flex-order: 1;
    order: 1;
    margin-bottom: 20px;
  }
  .regional-office__contacts,
  .regional-office__schedule {
    -ms-flex-order: 3;
    order: 3;
  }

}

@media (max-width: 767.98px) {
  html {
    font-size: 14px;
  }

  .breadcrum {
    margin-bottom: 0;
  }

  .without__image {
    grid-column: 1/3;
  }

  .other__posts {
    grid-column: 1/3;
  }

  .first__post {
    grid-auto-rows: 200px auto;
    margin-bottom: 0px !important;
  }

  .first__post__image_wrapper {
    grid-column: 1/3;
  }

  .first__post__content {
    grid-column: 1/3;
  }

  .posts__wrapper .first__post .first__post__image_wrapper {
    padding: 20px;
  }

  .other__posts {
    grid-template-rows: 1fr 1fr;
    grid-auto-rows: 200px auto;
  }

  .other_post_image_box {
    grid-column: 1/3;
  }

  .single_post_image {
    margin-top: 30px;
  }

  .single_post_image img {
    float: none;
    width: 100%;
    margin-right: 0;
  }

  .single__post__title {
    margin-left: 0;
  }

  .products__wrapper {
    grid-template-columns: repeat(2, 1fr);
  }

  .container {
    max-width: 100%;
  }

  .breadcrum {
    margin-bottom: 20px;
  }

  .content__title {
    font-size: 2rem;
  }

  .subnav__wrapper {
    grid-template-columns: 1fr;
  }

  .category__header p.grey__paragraph {
    padding: 20px;
  }

  .breadcrum {
    padding-left: 20px;
  }

  .installation__list__wrapper .container {
    grid-template-columns: 1fr;
  }

  .installation__list__wrapper .container .installation__image {
    grid-row: 1/span 1;
    margin-bottom: 30px;
  }

  .installation__list__wrapper .container .installation__details {
    padding-left: 20px;
  }

  .portfolios .grey__paragraph {
    padding: 20px;
  }

  .portfolios .content__title {
    margin-left: 20px;
  }

  .portfolio__list {
    grid-template-columns: repeat(2, 1fr);
  }

  .single__work {
    grid-template-columns: 1fr;
  }

  .work__info {
    padding-left: 20px;
  }

  .modal-wrapper {
    width: 95% !important;
  }

  .training .post__wrapper {
    padding: 0 20px;
  }

  .price__wrapper {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 20px;
  }

  .certificates {
    padding: 0 20px 0 20px;
    grid-template-columns: 1fr;
  }

  .certificates img {
    width: 100%;
  }

  .certificates .content__title {
    grid-column: 1;
  }

  .trainers {
    padding: 20px;
  }

  .trainers .trainer__image__div {
    text-align: center;
    padding-bottom: 30px;
  }

  .trainers .trainer__card {
    grid-template-columns: 1fr;
  }

  .trainers .trainer__card img {
    width: 70%;
  }

  .trainers .my-swiper-button-prev,
  .trainers .my-swiper-button-next {
    display: none !important;
  }

  .trainers .swiper-container {
    width: 100%;
  }

  .trainers .product__main__wrapper {
    padding: 0 20px 0 20px;
  }

  .tab-container .grey__paragraph {
    padding: 0 20px 0 20px;
  }

  .work__slider {
    padding: 0 10px 0 10px !important;
  }

  .slider__container__single__post {
    border-right: none;
    padding-right: 0;
  }

  .slider__container__single__post + div {
    border: none;
    padding: 0;
  }

  .main__title {
    background-size: 120% 100%;
    margin-top: 2px;
  }

  .main__title div p {
    font-size: inherit;
    color: #fff;
  }

  .main__title div span {
    margin: 10px;
  }

  .main__title h1 {
    font-size: 3.1rem;
  }

  .main__head--links {
    grid-template-columns: 1fr;
    margin: 20px 0 0;
  }

  .content__education,
  .content__install {
    grid-template-columns: 1fr;
    padding: 20px;
    margin-bottom: 50px;
  }

  .content__education img,
  .content__install img {
    grid-row: 1;
  }

  .content__title {
    font-size: 22px;
  }

  .content__partners {
    padding: 20px;
  }

  .footer .nav {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .footer .nav ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }

  .footer .nav ul li {
    margin-right: 200px;
  }

  .footer .nav span {
    display: none;
  }

  .footer__bg--black {
    display: none;
  }

  .mobile__footer {
    display: grid;
    grid-template-columns: 1fr;
    background: #0A0A0A;
    padding: 30px;
    grid-gap: 30px;
  }

  .mobile__footer .footer__nav__links {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .mobile__footer .footer__nav__links a {
    color: #fff;
  }

  .mobile__footer a.conf {
    color: #891519;
  }

  .post__wrapper .grey__paragraph {
    padding: 20px;
  }

  .single__pagination {
    padding: 20px;
  }

  .first__post__image_wrapper {
    z-index: 0 !important;
  }

  #for-mobile .main__title button {
    margin-top: 50px;
  }

  .product__list .content__title {
    margin-left: 20px !important;
  }

  .product__list .products__wrapper {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .product__list .grey__paragraph {
    padding: 0 20px 0 20px;
  }

  .banner__h1 {
    padding-left: 20px;
  }

  .banner__desc {
    padding-left: 20px !important;
  }

  .subnav__wrapper .subnav {
    grid-row: 2;
  }

  .desc__in__training {
    padding: 20px;
  }


  .contacts {
    padding: 0 10px;
  }
  .contacts-ico {
    width: 24px;
    height: 24px;
    background-size: 24px;
    top: 15px;
    left: 11px;
  }
  .contacts-main {
    padding: 12px 0;
  }
  .contacts-main__item {
    width: 100%;
    margin: 24px 0 0;
    padding: 16px 20px 14px 48px;
  }
  #contacts-map {
    margin: 3px 0 11px;
    height: 410px;
  }
  .contacts-regions__item {
    width: 100%;
    margin: 12px 0 0;
    margin-right: 0;
  }
  .contacts-regions__item:first-of-type {
    margin-top: 24px;
  }

  .contacts-regional-office {
    padding: 12px 0;
  }
  .contacts-regional-office__wrap {
    margin: 22px auto 21px;
  }
  .regional-office__name {
    width: 100%;
    padding: 60px 0 0;
    background-position: 0 2px;
  }
  .regional-office__contacts {
    width: 100%;
    padding: 0;
    margin: 17px 0 0;
  }
  .regional-office__schedule {
    width: 100%;
    margin: 16px 0 0;
    padding: 0;
  }
  .regional-office__logo {
    /* width: 100%;
    max-width: 300px; */
    margin: 20px auto 0;
  }

  .contacts-install {
    padding: 12px 0 30px;
  }
  .contacts-install__item:first-of-type {
    margin-top: 24px;
  }
  .contacts-install__item {
    width: 100%;
    margin: 12px 0 0;
    padding: 18px 40px 17px 63px;
    background-size: 24px 24px;
    background-position: 18px 15px;
  }
  .contacts-install__item::before {
    top: 22px;
  }

  .contacts-centers {
    padding: 12px 0;
  }
  .contacts-centers .contacts__title {
    margin-bottom: 20px;
  }
  .contacts-cities {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
  }
}

@media (max-width: 575.98px) {
  .product__main__wrapper {
    grid-template-columns: 1fr;
    grid-gap: 0;
    padding: 0 20px 0 20px;
  }

  .work__slider {
    margin-bottom: 60px;
  }

  .review__form {
    grid-template-columns: 1fr !important;
    width: 100%;
  }

  .review__form textarea {
    grid-column: 1;
  }

  .allreviews {
    padding: 20px;
    grid-template-columns: 1fr;
  }

  .allreviews .date {
    grid-column: 1/span 2;
    margin-bottom: 20px;
  }

  .allreviews p {
    grid-column: 1 / span 4;
    padding: 0 !important;
  }

  .allreviews .user__name {
    grid-column: 1/span 3;
    margin-top: 20px;
  }

  .tabs__wrapper .grey__paragraph {
    padding: 0 20px 0 20px;
  }

  .product__main__wrapper #slider {
    grid-column: 1/3;
  }

  .pagination__box .pagination li .page-link {
    margin: 9px;
  }

  #for-mobile {
    height: 100vh;
  }

  .video__review__wrapper {
    padding: 10px;
  }

  .image__block__wrap {
    height: 150px;
    overflow: hidden;
  }

  .main__head--links div a {
    bottom: 50px;
  }

  .save__btn__wrapper {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .save__btn__wrapper > * {
    order: 1;
  }
  .form__response {
    width: 100%;
    margin: 0 auto;
    order: 0 !important;
  }
  .form__response.error-alert,
  .form__response.success-alert {
    margin-bottom: 20px;
  }
}

@media (max-width: 321px) {
  .products__wrapper {
    grid-template-columns: 1fr;
  }

  .category__header h2 {
    font-size: 2rem;
  }

  .breadcrum {
    margin-bottom: 20px;
  }

  .portfolio__list {
    grid-template-columns: repeat(1, 1fr);
  }

  .modal-wrapper {
    width: 100% !important;
  }
}

@media (max-width: 736px) {
  .image__block__wrap {
    height: 150px;
    overflow: hidden;
  }

  .content__install {
    margin-top: 20px;
  }
}
