/* 
 *
 * Author  :  Vlad Muraviov
 * Website :  http://coded.pro
 * E-mail  :  vlad.muraviov@gmail.com
 * Skype   :  vlad.muraviov
 *
 *
 */
/* ==========================================================================
   Variables
   ========================================================================== */
/* ==========================================================================
   Carousel
   ========================================================================== */
/**
 * Owl Carousel v2.1.6
 * Copyright 2013-2016 David Deutsch
 * Licensed under MIT (https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE)
 */
/*
 *  Owl Carousel - Core
 */
@import 'https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700&subset=cyrillic';
@import url(http://weloveiconfonts.com/api/?family=entypo);
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}

.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
}

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

.owl-carousel .owl-item img {
  -webkit-transform-style: preserve-3d;
}

.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
  display: none;
}

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
  cursor: pointer;
}

.owl-carousel.owl-loaded {
  display: block;
}

.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}

.owl-carousel.owl-hidden {
  opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
  display: none;
}

.owl-carousel.owl-grab {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.owl-carousel.owl-rtl {
  direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
  float: right;
}

/* No Js */
.no-js .owl-carousel {
  display: block;
}

/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  -webkit-animation-duration: 1000ms;
          animation-duration: 1000ms;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
  z-index: 0;
}

.owl-carousel .owl-animated-out {
  z-index: 1;
}

.owl-carousel .fadeOut {
  -webkit-animation-name: fadeOut;
          animation-name: fadeOut;
}

/*
 *  Owl Carousel - Auto Height Plugin
 */
.owl-height {
  transition: height 500ms ease-in-out;
}

/*
 *  Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-item img.owl-lazy {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

/*
 *  Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: -webkit-transform 100ms ease;
  transition: transform 100ms ease;
  transition: transform 100ms ease, -webkit-transform 100ms ease;
}

.owl-carousel .owl-video-play-icon:hover {
  -ms-transform: scale(1.3, 1.3);
  -webkit-transform: scale(1.3, 1.3);
          transform: scale(1.3, 1.3);
}

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none;
}

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}

.owl-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  vertical-align: top;
  background: #CCCCCC;
  margin: 0 3px;
}

.owl-dot.active {
  background: #777;
}

/* ==========================================================================
   Bootstrap v3.3.7 and Normalize v1.1.3
   ========================================================================== */
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

audio, canvas, progress, video {
  display: inline-block;
  vertical-align: baseline;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden], template {
  display: none;
}

a {
  background-color: transparent;
}

a:active, a:hover {
  outline: 0;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b, strong {
  font-weight: bold;
}

dfn {
  font-style: italic;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

mark {
  background: #ff0;
  color: #000;
}

small {
  font-size: 80%;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

img {
  border: 0;
}

svg:not(:root) {
  overflow: hidden;
}

figure {
  margin: 1em 40px;
}

hr {
  box-sizing: content-box;
  height: 0;
}

pre {
  overflow: auto;
}

code, kbd, pre, samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

button, input, optgroup, select, textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}

button {
  overflow: visible;
}

button, select {
  text-transform: none;
}

button, html input[type="button"], input[type="reset"], input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled], html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner, input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input {
  line-height: normal;
}

input[type="checkbox"], input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}

input[type="number"]::-webkit-inner-spin-button, input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

input[type="search"] {
  -webkit-appearance: textfield;
  box-sizing: content-box;
}

input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: bold;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td, th {
  padding: 0;
}

* {
  box-sizing: border-box;
}

*:before, *:after {
  box-sizing: border-box;
}

html {
  font-size: 10px;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
  font-size: 14px;
  line-height: 1.42857143;
  color: #333;
  background-color: #fff;
}

input, button, select, textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

figure {
  margin: 0;
}

img {
  vertical-align: middle;
}

.img-responsive {
  display: block;
  max-width: 100%;
  height: auto;
}

.img-rounded {
  border-radius: 6px;
}

.img-thumbnail {
  padding: 4px;
  line-height: 1.42857143;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  transition: all .2s ease-in-out;
  display: inline-block;
  max-width: 100%;
  height: auto;
}

.img-circle {
  border-radius: 50%;
}

hr {
  margin-top: 20px;
  margin-bottom: 20px;
  border: 0;
  border-top: 1px solid #eee;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  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;
}

[role="button"] {
  cursor: pointer;
}

.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}

@media (min-width: 768px) {
  .container {
    width: 750px;
  }
}

@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}

@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}

.container-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.row {
  margin-left: -15px;
  margin-right: -15px;
}

.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}

.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
  float: left;
}

.col-xs-12 {
  width: 100%;
}

.col-xs-11 {
  width: 91.66666667%;
}

.col-xs-10 {
  width: 83.33333333%;
}

.col-xs-9 {
  width: 75%;
}

.col-xs-8 {
  width: 66.66666667%;
}

.col-xs-7 {
  width: 58.33333333%;
}

.col-xs-6 {
  width: 50%;
}

.col-xs-5 {
  width: 41.66666667%;
}

.col-xs-4 {
  width: 33.33333333%;
}

.col-xs-3 {
  width: 25%;
}

.col-xs-2 {
  width: 16.66666667%;
}

.col-xs-1 {
  width: 8.33333333%;
}

.col-xs-pull-12 {
  right: 100%;
}

.col-xs-pull-11 {
  right: 91.66666667%;
}

.col-xs-pull-10 {
  right: 83.33333333%;
}

.col-xs-pull-9 {
  right: 75%;
}

.col-xs-pull-8 {
  right: 66.66666667%;
}

.col-xs-pull-7 {
  right: 58.33333333%;
}

.col-xs-pull-6 {
  right: 50%;
}

.col-xs-pull-5 {
  right: 41.66666667%;
}

.col-xs-pull-4 {
  right: 33.33333333%;
}

.col-xs-pull-3 {
  right: 25%;
}

.col-xs-pull-2 {
  right: 16.66666667%;
}

.col-xs-pull-1 {
  right: 8.33333333%;
}

.col-xs-pull-0 {
  right: auto;
}

.col-xs-push-12 {
  left: 100%;
}

.col-xs-push-11 {
  left: 91.66666667%;
}

.col-xs-push-10 {
  left: 83.33333333%;
}

.col-xs-push-9 {
  left: 75%;
}

.col-xs-push-8 {
  left: 66.66666667%;
}

.col-xs-push-7 {
  left: 58.33333333%;
}

.col-xs-push-6 {
  left: 50%;
}

.col-xs-push-5 {
  left: 41.66666667%;
}

.col-xs-push-4 {
  left: 33.33333333%;
}

.col-xs-push-3 {
  left: 25%;
}

.col-xs-push-2 {
  left: 16.66666667%;
}

.col-xs-push-1 {
  left: 8.33333333%;
}

.col-xs-push-0 {
  left: auto;
}

.col-xs-offset-12 {
  margin-left: 100%;
}

.col-xs-offset-11 {
  margin-left: 91.66666667%;
}

.col-xs-offset-10 {
  margin-left: 83.33333333%;
}

.col-xs-offset-9 {
  margin-left: 75%;
}

.col-xs-offset-8 {
  margin-left: 66.66666667%;
}

.col-xs-offset-7 {
  margin-left: 58.33333333%;
}

.col-xs-offset-6 {
  margin-left: 50%;
}

.col-xs-offset-5 {
  margin-left: 41.66666667%;
}

.col-xs-offset-4 {
  margin-left: 33.33333333%;
}

.col-xs-offset-3 {
  margin-left: 25%;
}

.col-xs-offset-2 {
  margin-left: 16.66666667%;
}

.col-xs-offset-1 {
  margin-left: 8.33333333%;
}

.col-xs-offset-0 {
  margin-left: 0;
}

@media (min-width: 768px) {
  .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
    float: left;
  }
  .col-sm-12 {
    width: 100%;
  }
  .col-sm-11 {
    width: 91.66666667%;
  }
  .col-sm-10 {
    width: 83.33333333%;
  }
  .col-sm-9 {
    width: 75%;
  }
  .col-sm-8 {
    width: 66.66666667%;
  }
  .col-sm-7 {
    width: 58.33333333%;
  }
  .col-sm-6 {
    width: 50%;
  }
  .col-sm-5 {
    width: 41.66666667%;
  }
  .col-sm-4 {
    width: 33.33333333%;
  }
  .col-sm-3 {
    width: 25%;
  }
  .col-sm-2 {
    width: 16.66666667%;
  }
  .col-sm-1 {
    width: 8.33333333%;
  }
  .col-sm-pull-12 {
    right: 100%;
  }
  .col-sm-pull-11 {
    right: 91.66666667%;
  }
  .col-sm-pull-10 {
    right: 83.33333333%;
  }
  .col-sm-pull-9 {
    right: 75%;
  }
  .col-sm-pull-8 {
    right: 66.66666667%;
  }
  .col-sm-pull-7 {
    right: 58.33333333%;
  }
  .col-sm-pull-6 {
    right: 50%;
  }
  .col-sm-pull-5 {
    right: 41.66666667%;
  }
  .col-sm-pull-4 {
    right: 33.33333333%;
  }
  .col-sm-pull-3 {
    right: 25%;
  }
  .col-sm-pull-2 {
    right: 16.66666667%;
  }
  .col-sm-pull-1 {
    right: 8.33333333%;
  }
  .col-sm-pull-0 {
    right: auto;
  }
  .col-sm-push-12 {
    left: 100%;
  }
  .col-sm-push-11 {
    left: 91.66666667%;
  }
  .col-sm-push-10 {
    left: 83.33333333%;
  }
  .col-sm-push-9 {
    left: 75%;
  }
  .col-sm-push-8 {
    left: 66.66666667%;
  }
  .col-sm-push-7 {
    left: 58.33333333%;
  }
  .col-sm-push-6 {
    left: 50%;
  }
  .col-sm-push-5 {
    left: 41.66666667%;
  }
  .col-sm-push-4 {
    left: 33.33333333%;
  }
  .col-sm-push-3 {
    left: 25%;
  }
  .col-sm-push-2 {
    left: 16.66666667%;
  }
  .col-sm-push-1 {
    left: 8.33333333%;
  }
  .col-sm-push-0 {
    left: auto;
  }
  .col-sm-offset-12 {
    margin-left: 100%;
  }
  .col-sm-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-sm-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-sm-offset-9 {
    margin-left: 75%;
  }
  .col-sm-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-sm-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-sm-offset-6 {
    margin-left: 50%;
  }
  .col-sm-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-sm-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-sm-offset-3 {
    margin-left: 25%;
  }
  .col-sm-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-sm-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-sm-offset-0 {
    margin-left: 0;
  }
}

@media (min-width: 992px) {
  .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
    float: left;
  }
  .col-md-12 {
    width: 100%;
  }
  .col-md-11 {
    width: 91.66666667%;
  }
  .col-md-10 {
    width: 83.33333333%;
  }
  .col-md-9 {
    width: 75%;
  }
  .col-md-8 {
    width: 66.66666667%;
  }
  .col-md-7 {
    width: 58.33333333%;
  }
  .col-md-6 {
    width: 50%;
  }
  .col-md-5 {
    width: 41.66666667%;
  }
  .col-md-4 {
    width: 33.33333333%;
  }
  .col-md-3 {
    width: 25%;
  }
  .col-md-2 {
    width: 16.66666667%;
  }
  .col-md-1 {
    width: 8.33333333%;
  }
  .col-md-pull-12 {
    right: 100%;
  }
  .col-md-pull-11 {
    right: 91.66666667%;
  }
  .col-md-pull-10 {
    right: 83.33333333%;
  }
  .col-md-pull-9 {
    right: 75%;
  }
  .col-md-pull-8 {
    right: 66.66666667%;
  }
  .col-md-pull-7 {
    right: 58.33333333%;
  }
  .col-md-pull-6 {
    right: 50%;
  }
  .col-md-pull-5 {
    right: 41.66666667%;
  }
  .col-md-pull-4 {
    right: 33.33333333%;
  }
  .col-md-pull-3 {
    right: 25%;
  }
  .col-md-pull-2 {
    right: 16.66666667%;
  }
  .col-md-pull-1 {
    right: 8.33333333%;
  }
  .col-md-pull-0 {
    right: auto;
  }
  .col-md-push-12 {
    left: 100%;
  }
  .col-md-push-11 {
    left: 91.66666667%;
  }
  .col-md-push-10 {
    left: 83.33333333%;
  }
  .col-md-push-9 {
    left: 75%;
  }
  .col-md-push-8 {
    left: 66.66666667%;
  }
  .col-md-push-7 {
    left: 58.33333333%;
  }
  .col-md-push-6 {
    left: 50%;
  }
  .col-md-push-5 {
    left: 41.66666667%;
  }
  .col-md-push-4 {
    left: 33.33333333%;
  }
  .col-md-push-3 {
    left: 25%;
  }
  .col-md-push-2 {
    left: 16.66666667%;
  }
  .col-md-push-1 {
    left: 8.33333333%;
  }
  .col-md-push-0 {
    left: auto;
  }
  .col-md-offset-12 {
    margin-left: 100%;
  }
  .col-md-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-md-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-md-offset-9 {
    margin-left: 75%;
  }
  .col-md-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-md-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-md-offset-6 {
    margin-left: 50%;
  }
  .col-md-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-md-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-md-offset-3 {
    margin-left: 25%;
  }
  .col-md-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-md-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-md-offset-0 {
    margin-left: 0;
  }
}

@media (min-width: 1200px) {
  .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
    float: left;
  }
  .col-lg-12 {
    width: 100%;
  }
  .col-lg-11 {
    width: 91.66666667%;
  }
  .col-lg-10 {
    width: 83.33333333%;
  }
  .col-lg-9 {
    width: 75%;
  }
  .col-lg-8 {
    width: 66.66666667%;
  }
  .col-lg-7 {
    width: 58.33333333%;
  }
  .col-lg-6 {
    width: 50%;
  }
  .col-lg-5 {
    width: 41.66666667%;
  }
  .col-lg-4 {
    width: 33.33333333%;
  }
  .col-lg-3 {
    width: 25%;
  }
  .col-lg-2 {
    width: 16.66666667%;
  }
  .col-lg-1 {
    width: 8.33333333%;
  }
  .col-lg-pull-12 {
    right: 100%;
  }
  .col-lg-pull-11 {
    right: 91.66666667%;
  }
  .col-lg-pull-10 {
    right: 83.33333333%;
  }
  .col-lg-pull-9 {
    right: 75%;
  }
  .col-lg-pull-8 {
    right: 66.66666667%;
  }
  .col-lg-pull-7 {
    right: 58.33333333%;
  }
  .col-lg-pull-6 {
    right: 50%;
  }
  .col-lg-pull-5 {
    right: 41.66666667%;
  }
  .col-lg-pull-4 {
    right: 33.33333333%;
  }
  .col-lg-pull-3 {
    right: 25%;
  }
  .col-lg-pull-2 {
    right: 16.66666667%;
  }
  .col-lg-pull-1 {
    right: 8.33333333%;
  }
  .col-lg-pull-0 {
    right: auto;
  }
  .col-lg-push-12 {
    left: 100%;
  }
  .col-lg-push-11 {
    left: 91.66666667%;
  }
  .col-lg-push-10 {
    left: 83.33333333%;
  }
  .col-lg-push-9 {
    left: 75%;
  }
  .col-lg-push-8 {
    left: 66.66666667%;
  }
  .col-lg-push-7 {
    left: 58.33333333%;
  }
  .col-lg-push-6 {
    left: 50%;
  }
  .col-lg-push-5 {
    left: 41.66666667%;
  }
  .col-lg-push-4 {
    left: 33.33333333%;
  }
  .col-lg-push-3 {
    left: 25%;
  }
  .col-lg-push-2 {
    left: 16.66666667%;
  }
  .col-lg-push-1 {
    left: 8.33333333%;
  }
  .col-lg-push-0 {
    left: auto;
  }
  .col-lg-offset-12 {
    margin-left: 100%;
  }
  .col-lg-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-lg-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-lg-offset-9 {
    margin-left: 75%;
  }
  .col-lg-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-lg-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-lg-offset-6 {
    margin-left: 50%;
  }
  .col-lg-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-lg-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-lg-offset-3 {
    margin-left: 25%;
  }
  .col-lg-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-lg-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-lg-offset-0 {
    margin-left: 0;
  }
}

.clearfix:before, .clearfix:after, .container:before, .container:after, .container-fluid:before, .container-fluid:after, .row:before, .row:after {
  content: " ";
  display: table;
}

.clearfix:after, .container:after, .container-fluid:after, .row:after {
  clear: both;
}

.center-block {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.pull-right {
  float: right !important;
}

.pull-left {
  float: left !important;
}

.hide {
  display: none !important;
}

.show {
  display: block !important;
}

.invisible {
  visibility: hidden;
}

.text-hide {
  font: 0px/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

.hidden {
  display: none !important;
}

.affix {
  position: fixed;
}

.container-fluid {
  width: 100%;
  max-width: 1140px;
  padding: 0 10px;
}

@media (min-width: 768px) {
  .container-fluid {
    padding: 0 30px;
  }
}

.row-offset-10 {
  margin: 0 -5px;
}

.row-offset-10 > [class^="col-"], .row-offset-10 > [class*=" col-"] {
  padding: 0 5px;
}

.row-offset-20 {
  margin: 0 -10px;
}

.row-offset-20 > [class^="col-"], .row-offset-20 > [class*=" col-"] {
  padding: 0 10px;
}

.row-offset-50 {
  margin: 0 -25px;
}

.row-offset-50 > [class^="col-"], .row-offset-50 > [class*=" col-"] {
  padding: 0 25px;
}

/* ==========================================================================
   Typography
   ========================================================================== */
::-webkit-input-placeholder {
  color: #888888;
}

img {
  max-width: 100%;
}

* {
  outline: 0 !important;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 30px;
  color: #333;
}

h1 small, h2 small, h3 small, h4 small, h5 small, h6 small {
  display: block;
  font-size: 13px;
  font-weight: 300;
  color: #606060;
  padding: 4px 0 0;
}

h1 {
  font-size: 36px;
  margin: 0 0 30px;
}

h2 {
  font-size: 24px;
}

h3 {
  font-size: 20px;
}

h4 {
  font-size: 16px;
}

h5 {
  font-size: 15px;
  text-transform: none;
}

img {
  max-width: 100%;
}

p {
  margin: 0 0 30px;
}

figure {
  margin: 0 0 30px;
}

em {
  display: block;
  margin: 0 0 30px;
  font-style: italic;
}

hr {
  display: block;
  max-width: 1160px;
  border: none;
  border-top: 1px solid #EBEBEB;
  margin: 1.9rem auto;
}

blockquote {
  border-left: 5px solid #777;
  padding: 0 0 0 30px;
  margin: 0 0 30px;
}

ul {
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
  line-height: 19px;
}

ul > li:after {
  content: '';
  top: 5px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #777;
}

ol {
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
  line-height: 19px;
  counter-reset: point;
}

ol > li:after {
  content: counter(point) ".";
  counter-increment: point 1;
  color: #777;
  font-weight: 700;
}

li {
  position: relative;
  padding: 0 0 0 70px;
}

li:after {
  display: block;
  position: absolute;
  top: 0;
  left: 35px;
}

mark {
  background: none;
  padding: 0;
  color: inherit;
}

a {
  color: #777;
  text-decoration: underline;
}

a:hover {
  color: #999;
  text-decoration: none;
}

/* ==========================================================================
   Elements
   ========================================================================== */
.btn {
  transition: 0.15s ease-in-out;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  border: 1px solid transparent;
  background: none;
  font-size: 13px;
  line-height: 24px;
  font-weight: 600;
  border-radius: 3px;
  padding: 10px 20px;
  text-decoration: none;
  background: #777;
  color: #fff;
  white-space: nowrap;
  text-align: center;
}

.btn:hover {
  background: #999;
  color: #fff;
}

.btn-block {
  width: 100%;
}

.btn-sm {
  padding: 5px 20px;
}

.btn-md {
  padding: 15px 30px;
}

.btn-white-border {
  background: none;
  border-color: #fff;
  color: #fff !important;
}

.btn-white-border:hover {
  background: #fff;
  color: #333 !important;
}

/* ----- */
a.btn-pdf {
  display: block;
  border: 1px solid #CECECE;
  border-radius: 4px;
  position: relative;
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  color: #666666 !important;
  padding: 17px 20px 17px 70px;
  text-decoration: none;
}

a.btn-pdf:after {
  content: '';
  display: block;
  background: url(../images/sprite.png) -229px -148px no-repeat;
  width: 32px;
  height: 42px;
  position: absolute;
  top: 15px;
  left: 20px;
}

a.btn-pdf small {
  font-size: 13px;
  font-weight: 400;
  display: block;
  color: #888888;
}

a.btn-pdf:hover {
  text-decoration: none;
  border-color: #333;
  color: #333;
}

/* ----- */
.st-input {
  width: 100%;
  border-radius: 3px;
  font-size: 13px;
  line-height: 24px;
  padding: 10px 18px;
  border: 1px solid #CCCCCC;
  margin: 0 0 20px;
  color: #333;
}

.st-input::-webkit-input-placeholder {
  color: #999;
}

.st-input:focus {
  border-color: #AAAAAA;
}

.st-textarea {
  width: 100%;
  border-radius: 3px;
  font-size: 13px;
  line-height: 24px;
  padding: 10px 18px;
  border: 1px solid #CCCCCC;
  margin: 0 0 20px;
  color: #333;
  height: 120px;
  max-width: 100%;
}

.st-textarea::-webkit-input-placeholder {
  color: #999;
}

.st-textarea:focus {
  border-color: #AAAAAA;
}

.st-table {
  width: 100%;
  font-size: 12px;
  line-height: 20px;
  text-align: left;
  color: #333;
  margin: 0 0 30px;
}

.st-table th, .st-table td {
  padding: 10px 15px;
  border-bottom: 1px solid #DEDEDE;
}

.st-table th {
  font-weight: 700;
  border-width: 3px;
}

.st-table tbody tr:nth-child(even) td {
  background: #F6F6F6;
}

.text-center {
  text-align: center !important;
}

/* ---- forms ---- */
.st-checkbox {
  top: -1px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  width: 16px;
  height: 16px;
  line-height: 16px;
  margin: 0 10px 0 0;
  border: 1px solid #CECECE;
  border-radius: 3px;
  background: #fff;
  cursor: pointer;
  position: relative;
}

.st-checkbox .st-checkbox {
  display: none !important;
}

.st-checkbox.checked {
  background: #777;
  border-color: #777;
}

.st-checkbox .jq-checkbox__div {
  display: block;
  background: url(../images/sprite.png) -172px -23px no-repeat;
  width: 8px;
  height: 8px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -4px 0 0 -4px;
  z-index: 100;
}

.st-radio {
  top: -1px;
  vertical-align: middle;
  width: 16px;
  height: 16px;
  margin: 0 10px 0 0;
  border: 1px solid #CECECE;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
}

.st-radio.checked {
  border: 5px solid #777;
}

.st-select {
  vertical-align: middle;
  cursor: pointer;
  width: 100%;
  margin: 0 0 20px;
}

.st-select .jq-selectbox__select {
  padding: 10px 45px 10px 18px;
  border: 1px solid #CCC;
  border-radius: 3px;
  background: #fff;
  font-size: 14px;
  line-height: 24px;
  color: #333;
  overflow: hidden;
}

.st-select .placeholder {
  color: #999;
}

.st-select .jq-selectbox__select-text {
  display: block;
  overflow: hidden;
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.st-select .jq-selectbox__trigger {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 100%;
  border-left: 1px solid #CECECE;
  background: #F4F4F4;
}

.st-select .jq-selectbox__trigger-arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-top: 4px solid #606060;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
  margin: -2px 0 0 -4px;
}

.st-select:hover .jq-selectbox__trigger-arrow {
  border-top-color: #000;
}

.st-select .jq-selectbox__search {
  margin: 5px;
}

.st-select .jq-selectbox__search input {
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  padding: 5px 27px 6px 8px;
  border: 1px solid #CCC;
  border-radius: 3px;
  outline: none;
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAMCAYAAABiDJ37AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAO1JREFUeNqU078LAXEYx/FzYfNzk5TJaFNKYjFYSQZ/hvwBsvg1UCY2xT9gM8hukQGThWRjkcFw3pdnujhfT736Xn2fPvfc3fd07V0OFDDFAnM0ENYsZRiGLSc9OpqIYIA9fMhhjCrW2h9VlMlcH/aymMGtOqEugX08PwQucUZKdTozMIqdTc9WepQD7wjY9ARx+ydwhfyXfS+S0qMcOEQJGcueB3VccFINdMgal6NzkmPjRwJXxDBB7/2RDdtAp6wb+dpphHDASG5QQ0V6u2aoSqBZD/lDrNWRJynLK2qpBn4rc6K2XB9/Nb8EGABtf1thzY6X2AAAAABJRU5ErkJggg==) no-repeat 100% 50%;
  box-shadow: inset 1px 1px #F1F1F1;
  color: #333;
  -webkit-appearance: textfield;
}

.st-select .jq-selectbox__search input::-webkit-search-cancel-button,
.st-select .jq-selectbox__search input::-webkit-search-decoration {
  -webkit-appearance: none;
}

.st-select .jq-selectbox__not-found {
  margin: 5px;
  padding: 5px 8px 6px;
  background: #F0F0F0;
  font-size: 13px;
}

.st-select .jq-selectbox__dropdown {
  box-sizing: border-box;
  width: 100%;
  margin: 8px 0 0;
  padding: 0;
  border: 1px solid #CECECE;
  border-radius: 3px;
  background: #FFF;
  box-shadow: 0 0 7px rgba(0, 0, 0, 0.1);
  font-size: 13px;
  line-height: 22px;
  color: #333;
  top: 100% !important;
  bottom: auto !important;
}

.st-select .jq-selectbox__dropdown:after, .st-select .jq-selectbox__dropdown:before {
  content: '';
  display: block;
  position: absolute;
  bottom: 100%;
  right: 14px;
}

.st-select .jq-selectbox__dropdown:after {
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #CECECE;
  z-index: 1;
}

.st-select .jq-selectbox__dropdown:before {
  content: '';
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #fff;
  margin: 0 0 -1px;
  z-index: 2;
}

.st-select ul {
  margin: 0;
  overflow: hidden;
  border-radius: 4px;
}

.st-select ul > li {
  padding: 0;
}

.st-select ul > li:after {
  display: none;
}

.st-select ul > li {
  padding: 10px 18px;
  white-space: nowrap;
}

.st-select ul > li.selected {
  background-color: #F6F6F6;
}

.st-select ul > li:hover {
  background: #F6F6F6;
}

.st-file {
  width: 100%;
  border-radius: 4px;
  background: #F7F8F9;
  margin: 0 0 20px;
  padding: 5px;
}

.st-file input {
  height: auto;
  line-height: 1em;
  cursor: pointer;
}

.st-file .jq-file__name {
  overflow: hidden;
  box-sizing: border-box;
  width: 100%;
  padding: 0 80px 0 10px;
  font-size: 14px;
  line-height: 30px;
  color: #4b4b4b;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.st-file .jq-file__browse {
  position: absolute;
  top: 5px;
  right: 5px;
  padding: 0 15px;
  border: 1px solid #CECECE;
  border-radius: 4px;
  background: #fff;
  font-size: 11px;
  line-height: 28px;
  font-weight: 600;
  text-transform: uppercase;
  width: 80px;
  text-align: center;
  color: #333333;
}

.st-file:hover .jq-file__browse {
  background: #CECECE;
}

.st-field {
  position: relative;
}

.st-field-text {
  position: absolute;
  top: 1px;
  right: 1px;
  line-height: 38px;
  padding: 0 15px;
  font-size: 12px;
  color: #999999;
  background: #fff;
  border-radius: 5px;
}

.st-checked {
  margin: 0;
  margin: 0 0 30px;
}

.st-checked > li {
  padding: 0;
}

.st-checked > li:after {
  display: none;
}

.st-checked > li {
  margin: 0 0 5px;
}

.st-checked > li:last-child {
  margin: 0;
}

.st-checked-inline > li {
  display: inline-block;
  vertical-align: top;
  margin-right: 30px;
}

.st-fieldset {
  border: none;
  padding: 0;
  margin: 0 0 30px;
}

.st-legend {
  font-size: 1.4rem;
  line-height: 2rem;
  font-weight: 700;
  display: block;
  margin: 0 0 20px;
  color: #000;
  text-transform: uppercase;
}

.st-label {
  display: inline-block;
  vertical-align: top;
  position: relative;
  font-size: 13px;
  line-height: 22px;
  color: #666666;
  padding: 5px 0;
}

.st-label__check {
  padding-left: 30px;
}

.st-label__check .st-radio, .st-label__check .st-checkbox {
  position: absolute !important;
  top: 8px;
  left: 0;
}

/* ==========================================================================
   Themes
   ========================================================================== */
.theme-small {
  background: #282828;
  padding: 0 20px;
  height: auto;
}

.theme-small .st {
  max-width: 900px;
  margin: 70px auto;
  border-radius: 10px;
  background: #fff;
}

.theme-small .nav {
  margin: 0 -30px;
  top: 40px;
}

.theme-small .nav-dropdown {
  border-radius: 0;
  margin: 0;
}

.theme-small .nav-menu > li {
  border-right: 1px solid rgba(0, 0, 0, 0.25);
}

.theme-small .nav-link {
  padding-left: 30px !important;
  padding-right: 30px !important;
}

.theme-small .nav-feedback:after {
  height: 100%;
  top: 0;
  margin: 0;
  background: rgba(0, 0, 0, 0.25);
}

.theme-small .header-logo {
  min-width: 0;
}

.theme-small .main {
  padding-bottom: 60px;
}

.theme-small .main-content {
  /*padding-top: 50px;*/
  padding-top: 0;
}

.theme-small .footer {
  padding-top: 60px;
}

.theme-red .icon-header-phone {
  background-position: -22px -169px;
}

.theme-red .icon-price {
  background: #DC222A;
}

.theme-red a, .theme-red mark {
  color: #e11d2f;
}

.theme-red blockquote {
  border-left-color: #e11d2f;
}

.theme-red ul > li:after {
  background: #e11d2f;
}

.theme-red ol > li:after {
  color: #e11d2f;
}

.theme-red .st-checkbox.checked {
  border-color: #e11d2f;
  background: #e11d2f;
}

.theme-red .st-radio.checked {
  border-color: #e11d2f;
}

.theme-red a.btn-pdf:after {
  background-position: -229px 0;
}

.theme-red .btn-theme {
  background: #DC222A;
  color: #fff;
}

.theme-red .btn-theme:hover {
  background: #BC1C24;
  color: rgba(255, 255, 255, 0.75);
}

.theme-red .btn-theme-border {
  background: none;
  border-color: #DC222A;
  color: #DC222A;
}

.theme-red .btn-theme-border:hover {
  background: #BC1C24;
  color: rgba(255, 255, 255, 0.75);
}

.theme-red .nav-dropdown, .theme-red .about-caption, .theme-red .about-caption:after, .theme-red .about-caption:before, .theme-red .owl-dot.active {
  background-color: #DC222A;
}

.theme-red .icon-header-contacts-phone {
  background-position: 0 -42px;
}

.theme-red .icon-header-contacts-loc {
  background-position: -41px -42px;
}

.theme-red .icon-header-contacts-time {
  background-position: -74px -42px;
}

.theme-red .footer-contacts {
  background: #DC222A url(../images/bg-contacts-red.png) right 0 no-repeat;
}

.theme-red .footer-contacts:after {
  background: #DC222A;
}

.theme-red .footer-logo:first-letter, .theme-red .header-logo:first-letter {
  color: #e11d2f;
}

.theme-red .social-link:hover {
  border-color: #DC222A;
  background-color: #DC222A;
}

.theme-red a.nav-aside-link:hover {
  color: #e11d2f;
}

.theme-red a.nav-aside-link.is-active {
  background: #DC222A;
  color: #fff;
}

.theme-red .breadcrumbs > li:first-child .breadcrumbs-link {
  color: #e11d2f;
}

.theme-green .icon-header-phone {
  background-position: -67px -169px;
}

.theme-green .icon-price {
  background: #3bba65;
}

.theme-green a, .theme-green mark {
  color: #3bba65;
}

.theme-green blockquote {
  border-left-color: #3bba65;
}

.theme-green ul > li:after {
  background: #3bba65;
}

.theme-green ol > li:after {
  color: #3bba65;
}

.theme-green .st-checkbox.checked {
  border-color: #3bba65;
  background: #3bba65;
}

.theme-green .st-radio.checked {
  border-color: #3bba65;
}

.theme-green a.btn-pdf:after {
  background-position: -229px -101px;
}

.theme-green .btn-theme {
  background: #3bba65;
  color: #fff;
}

.theme-green .btn-theme:hover {
  background: #5D9643;
  color: rgba(255, 255, 255, 0.75);
}

.theme-green .btn-theme-border {
  border-color: #3bba65;
  color: #3bba65;
  background: none;
}

.theme-green .btn-theme-border:hover {
  background: #3bba65;
  color: rgba(255, 255, 255, 0.75);
}

.theme-green .nav-dropdown, .theme-green .about-caption, .theme-green .about-caption:after, .theme-green .about-caption:before, .theme-green .owl-dot.active {
  background-color: #3bba65;
}

.theme-green .icon-header-contacts-phone {
  background-position: -115px -86px;
}

.theme-green .icon-header-contacts-loc {
  background-position: -156px -86px;
}

.theme-green .icon-header-contacts-time {
  background-position: -189px -86px;
}

.theme-green .footer-contacts {
  background: #3bba65 url(../images/bg-contacts-green.png) right 0 no-repeat;
}

.theme-green .footer-contacts:after {
  background: #3bba65;
}

.theme-green .footer-logo:first-letter, .theme-green .header-logo:first-letter {
  color: #3bba65;
}

.theme-green .social-link:hover {
  border-color: #3bba65;
  background-color: #3bba65;
}

.theme-green .nav-light .nav-link:hover {
  color: #3bba65;
}

.theme-green a.nav-aside-link:hover {
  color: #3bba65;
}

.theme-green a.nav-aside-link.is-active {
  background: #3bba65;
  color: #fff;
}

.theme-green .breadcrumbs > li:first-child .breadcrumbs-link {
  color: #3bba65;
}

.theme-blue .icon-header-phone {
  background-position: -45px -169px;
}

.theme-blue .icon-price {
  background: #68B2E1;
}

.theme-blue a, .theme-blue mark {
  color: #68B2E1;
}

.theme-blue blockquote {
  border-left-color: #68B2E1;
}

.theme-blue ul > li:after {
  background: #68B2E1;
}

.theme-blue ol > li:after {
  color: #68B2E1;
}

.theme-blue .st-checkbox.checked {
  border-color: #68B2E1;
  background: #68B2E1;
}

.theme-blue .st-radio.checked {
  border-color: #68B2E1;
}

.theme-blue a.btn-pdf:after {
  background-position: -229px -50px;
}

.theme-blue .btn-theme {
  background: #68B2E1;
  color: #fff;
}

.theme-blue .btn-theme:hover {
  background: #5292BB;
  color: rgba(255, 255, 255, 0.75);
}

.theme-blue .btn-theme-border {
  border-color: #68B2E1;
  color: #68B2E1;
  background: none;
}

.theme-blue .btn-theme-border:hover {
  background: #5292BB;
  color: rgba(255, 255, 255, 0.75);
}

.theme-blue .nav-dropdown, .theme-blue .about-caption, .theme-blue .about-caption:after, .theme-blue .about-caption:before, .theme-blue .owl-dot.active {
  background-color: #68B2E1;
}

.theme-blue .icon-header-contacts-phone {
  background-position: 0 -86px;
}

.theme-blue .icon-header-contacts-loc {
  background-position: -41px -86px;
}

.theme-blue .icon-header-contacts-time {
  background-position: -74px -86px;
}

.theme-blue .footer-contacts {
  background: #68B2E1 url(../images/bg-contacts-blue.png) right 0 no-repeat;
}

.theme-blue .footer-contacts:after {
  background: #68B2E1;
}

.theme-blue .footer-logo:first-letter, .theme-blue .header-logo:first-letter {
  color: #62b3dd;
}

.theme-blue .social-link:hover {
  border-color: #68B2E1;
  background-color: #68B2E1;
}

.theme-blue .nav-light .nav-link:hover {
  color: #62b3dd;
}

.theme-blue a.nav-aside-link:hover {
  color: #68B2E1;
}

.theme-blue a.nav-aside-link.is-active {
  background: #68B2E1;
  color: #fff;
}

.theme-blue .breadcrumbs > li:first-child .breadcrumbs-link {
  color: #68B2E1;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */
html {
  height: 100%;
}

body {
  height: 100%;
  background: #fff;
  font: 400 13px/19px "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #666666;
  letter-spacing: -0.3px;
}

.st {
  transition: 0.4s ease-in-out;
  position: relative;
  left: 0;
  overflow: hidden;
  min-height: 100%;
  opacity: 0;
}

.st.is-load {
  opacity: 1;
}

/* ==========================================================================
   Header
   ========================================================================== */
.header {
  position: relative;
  z-index: 100;
}

.header .row > [class^="col-"], .header .row > [class*=" col-"] {
  position: static;
}

.header-phone {
  display: none;
}

.header-phone a {
  text-decoration: none;
  color: inherit;
}

.header-phone a:hover {
  text-decoration: underline;
}

@media (min-width: 768px) {
  .header-phone {
    display: block;
    margin: 0;
    float: right;
    font-size: 18px;
    line-height: 40px;
    font-weight: 400;
    color: #333;
    white-space: nowrap;
  }
  .header-phone b {
    font-weight: 700;
  }
}

.icon-header-phone {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  top: -1px;
  width: 14px;
  height: 14px;
  background: url(../images/sprite.png) 0 -169px no-repeat;
  margin: 0 10px 0 0;
}

.nav-sub {
  position: relative;
  margin: 0 -6px;
}

@media (min-width: 768px) {
  .nav-sub {
    margin: 0;
  }
}

.nav-sub:after {
  content: '';
  display: block;
  position: absolute;
  top: 100%;
  left: 50%;
  width: 100vw;
  height: 1px;
  margin: 0 0 0 -50vw;
  background: #E6E6E6;
}

.nav-sub-desc {
  display: none;
}

@media (min-width: 768px) {
  .nav-sub-desc {
    display: block;
    font-size: 11px;
    line-height: 20px;
    color: #888888;
    margin: 0;
    padding: 15px 0;
  }
}

.nav-sub-menu {
  margin: 0;
  display: table;
  width: 100%;
  font-size: 11px;
  line-height: 50px;
  white-space: nowrap;
}

.nav-sub-menu > li {
  padding: 0;
}

.nav-sub-menu > li:after {
  display: none;
}

.nav-sub-menu > li {
  display: table-cell;
  position: relative;
}

.nav-sub-menu > li:first-child {
  padding-left: 0;
}

.nav-sub-menu > li:last-child {
  padding-right: 0;
}

.nav-sub-menu > li:hover, .nav-sub-menu > li.is-active {
  background: rgba(0, 0, 0, 0.02);
}

@media (min-width: 768px) {
  .nav-sub-menu {
    display: block;
    width: auto;
    float: right;
  }
  .nav-sub-menu > li {
    display: inline-block;
    vertical-align: top;
  }
}

a.nav-sub-link {
  transition: 0.15s ease-in-out;
  display: block;
  color: #888888;
  text-decoration: none;
  padding: 0 6px;
}

a.nav-sub-link:hover {
  color: #333;
}

a.nav-sub-link:hover .icon-nav-sub-arrow {
  border-top-color: #333;
}

@media (min-width: 768px) {
  a.nav-sub-link {
    padding: 0 16px;
  }
}

.icon-nav-sub-arrow {
  display: inline-block;
  vertical-align: middle;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid #888888;
  margin: 0 0 0 5px;
}

.no-touch-device .nav-sub-menu > li:hover .nav-sub-dropdown {
  opacity: 1;
  visibility: visible;
  margin: -5px 0 0;
}

.nav-sub-dropdown {
  transition: 0.25s ease-in-out;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 100%;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
  background: #fff;
  z-index: 100;
  font-size: 11px;
  line-height: 25px;
  padding: 8px 0;
  margin: 5px 0 0;
}

.nav-sub-dropdown.is-open {
  opacity: 1;
  visibility: visible;
  margin: -5px 0 0;
}

.nav-sub-dropdown-menu {
  margin: 0;
}

.nav-sub-dropdown-menu > li {
  padding: 0;
}

.nav-sub-dropdown-menu > li:after {
  display: none;
}

.nav-sub-dropdown-menu > li {
  margin: 0;
  padding: 0;
}

a.nav-sub-dropdown-link {
  display: block;
  text-decoration: none;
  padding: 2px 12px;
  color: #888888;
  text-decoration: none;
}

a.nav-sub-dropdown-link:hover {
  color: #333;
}

/* --- */
.panel {
  position: relative;
  padding: 40px 0;
}

.header-logo {
  display: inline-block;
  vertical-align: top;
  font-size: 30px;
  line-height: 45px;
  font-weight: 700;
  color: #000;
  padding: 0 30px 0 0;
}

@media (min-width: 768px) {
  .header-logo {
    position: relative;
    text-align: center;
    min-width: 220px;
    display: inline-block;
    vertical-align: top;
    padding: 0 30px 0 10px;
  }
  .header-logo:after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
    width: 1px;
    height: 32px;
    background: #E6E6E6;
    margin: -16px 0 0;
  }
}

.header-logo a {
  color: inherit;
  text-decoration: none;
}

.header-logo-caption {
  display: inline-block;
  vertical-align: top;
  padding: 10px 0 10px 30px;
  margin: 0;
  max-width: 240px;
  font-size: 12px;
  line-height: 16px;
  color: #888888;
  display: none;
}

@media (min-width: 768px) {
  .header-logo-caption {
    display: inline-block;
  }
}

.header-contacts {
  display: none;
}

@media (min-width: 768px) {
  .header-contacts {
    text-align: center;
    display: block;
  }
}

@media (min-width: 992px) {
  .header-contacts {
    text-align: left;
  }
}

.header-contacts-list {
  margin: 0;
  text-align: left;
  white-space: nowrap;
  display: block;
}

.header-contacts-list > li {
  padding: 0;
}

.header-contacts-list > li:after {
  display: none;
}

.header-contacts-list > li {
  display: inline-block;
  vertical-align: top;
  margin: 0 -4px 0 0;
  width: 50%;
}

.header-contacts-list > li:last-child {
  display: none;
}

@media (min-width: 992px) {
  .header-contacts-list {
    text-align: right;
  }
  .header-contacts-list > li {
    width: auto;
  }
}

@media (min-width: 1200px) {
  .header-contacts-list > li {
    width: 33.333%;
  }
  .header-contacts-list > li:last-child {
    display: inline-block;
  }
}

.header-contacts-address {
  font-style: normal;
  display: block;
  position: relative;
  padding: 0 20px 0 45px;
  font-size: 13px;
  line-height: 20px;
  text-align: left;
}

.header-contacts-address b, .header-contacts-address u {
  font-weight: 600;
  color: #333333;
}

@media (min-width: 992px) {
  .header-contacts-address {
    padding-right: 40px;
  }
}

.header-contacts-address a {
  text-decoration: none;
  color: inherit;
}

.header-contacts-address a:hover {
  text-decoration: underline;
}

.icon-header-contacts-phone, .icon-header-contacts-loc, .icon-header-contacts-time {
  display: block;
  background: url(../images/sprite.png) 0 0 no-repeat;
  position: absolute;
  top: 0;
  left: 0;
}

.icon-header-contacts-phone {
  width: 31px;
  height: 31px;
  background-position: 0 -128px;
}

.icon-header-contacts-loc {
  width: 24px;
  height: 32px;
  left: 4px;
  background-position: -41px -128px;
}

.icon-header-contacts-time {
  width: 32px;
  height: 32px;
  background-position: -74px -128px;
}

/* ----- */
@media (min-width: 768px) {
  .nav {
    position: relative;
    top: 32px;
    margin: -32px 0 0;
  }
}

.nav-btn {
  background: none;
  border: none;
  width: 20px;
  height: 16px;
  position: absolute;
  top: 50%;
  right: 10px;
  margin: -8px 0 0;
}

.nav-btn span {
  transition: 0.25s ease;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 3px;
  margin: 0 0 0 -10px;
  background: #4B4B4B;
  border-radius: 2px;
}

.nav-btn span:nth-child(1) {
  margin-top: -6px;
}

.nav-btn span:nth-child(4) {
  margin-top: 6px;
}

.nav-btn.is-active span:nth-child(1) {
  margin-top: 0;
  opacity: 0;
}

.nav-btn.is-active span:nth-child(2) {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

.nav-btn.is-active span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.nav-btn.is-active span:nth-child(4) {
  margin-top: 0;
  opacity: 0;
}

@media (min-width: 768px) {
  .nav-btn {
    display: none;
  }
}

@media (max-width: 767px) {
  .is-navOpen .nav-dropdown {
    opacity: 1;
    visibility: visible;
    margin: -20px 0 0;
  }
}

.nav-dropdown {
  display: none;
}

@media (max-width: 767px) {
  .nav-dropdown {
    display: block;
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    text-align: left;
    transition: 0.4s ease-in-out;
    opacity: 0;
    visibility: hidden;
    margin: 0;
  }
}

@media (min-width: 768px) {
  .nav-dropdown {
    display: block;
    background: #777;
    border-radius: 3px;
    padding: 0;
    margin: 40px 0 -40px;
    position: relative;
  }
}

@media (min-width: 992px) {
  .nav-dropdown {
    padding-right: 210px;
  }
}

.nav-feedback {
  display: none;
}

@media (min-width: 768px) {
  .nav-feedback {
    display: none;
  }
}

@media (min-width: 992px) {
  .nav-feedback {
    display: block;
    font-size: 13px;
    line-height: 25px;
    padding: 0;
    margin: 0;
    white-space: nowrap;
    position: relative;
    width: 210px;
    position: absolute;
    top: 0;
    right: 0;
  }
  .nav-feedback:after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    right: 100%;
    width: 1px;
    height: 32px;
    background: #fff;
    margin: -16px 0 0;
  }
}

a.nav-feedback-link {
  transition: 0.15s ease-in-out;
  display: block;
  color: #fff;
  text-decoration: none;
  padding: 20px 40px;
  position: relative;
  white-space: nowrap;
}

a.nav-feedback-link:hover {
  background: rgba(0, 0, 0, 0.2);
}

.icon-nav-feedback-icon {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  top: -1px;
  background: url(../images/sprite.png) -115px -22px no-repeat;
  width: 18px;
  height: 18px;
  margin: 0 10px 0 0;
}

.nav-menu {
  margin: 0;
  font-size: 13px;
  line-height: 25px;
  font-weight: 600;
  white-space: nowrap;
}

.nav-menu > li {
  padding: 0;
}

.nav-menu > li:after {
  display: none;
}

@media (max-width: 767px) {
  .nav-menu > li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .nav-menu > li:last-child {
    border: none;
  }
}

@media (min-width: 768px) {
  .nav-menu {
    display: table;
    width: 100%;
  }
  .nav-menu > li {
    display: table-cell;
  }
  .nav-menu > li:first-child .nav-link {
    border-radius: 3px 0 0 3px;
  }
  .nav-menu > li:last-child .nav-link {
    border-radius: 0 3px 3px 0;
  }
  .nav-menu > li:hover, .nav-menu > li.is-active {
    background: rgba(0, 0, 0, 0.2);
  }
}

@media (min-width: 992px) {
  .nav-menu {
    width: auto;
  }
  .nav-menu > li:first-child .nav-link {
    padding-left: 40px;
  }
}

a.nav-link {
  transition: 0.25s;
  display: block;
  color: #fff;
  text-decoration: none;
  position: relative;
}

@media (max-width: 767px) {
  a.nav-link {
    padding: 10px 20px;
  }
}

@media (min-width: 768px) {
  a.nav-link {
    padding: 20px;
    text-align: center;
  }
}

.icon-nav-arrow {
  display: inline-block;
  vertical-align: middle;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid #fff;
  position: relative;
  left: 5px;
}

@media (max-width: 767px) {
  .icon-nav-arrow {
    position: absolute;
    left: auto;
    top: 50%;
    right: 20px;
    margin: -2px 0 0;
  }
}

.no-touch-device .nav-menu > li:hover .nav-menu-dropdown {
  opacity: 1;
  visibility: visible;
  margin: -5px 0 0;
}

.nav-menu-dropdown {
  transition: 0.25s ease-in-out;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 100%;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
  background: #fff;
  z-index: 100;
  font-size: 13px;
  line-height: 25px;
  padding: 8px 0;
  margin: 5px 0 0;
  white-space: nowrap;
}

.nav-menu-dropdown.is-open {
  opacity: 1;
  visibility: visible;
  margin: -5px 0 0;
  display: block;
}

@media (max-width: 767px) {
  .nav-menu-dropdown {
    position: relative;
    top: 0;
    margin: 0 !important;
    opacity: 1;
    visibility: visible;
    display: none;
  }
}

.nav-menu-dropdown-menu {
  margin: 0;
}

.nav-menu-dropdown-menu > li {
  padding: 0;
}

.nav-menu-dropdown-menu > li:after {
  display: none;
}

.nav-menu-dropdown-menu > li {
  margin: 0;
  padding: 0;
}

a.nav-menu-dropdown-link {
  display: block;
  text-decoration: none;
  padding: 4px 20px;
  color: #888888;
  text-decoration: none;
}

a.nav-menu-dropdown-link:hover {
  color: #333;
}

.nav-grey .nav-dropdown {
  background: #F7F8F9;
}

.nav-grey .nav-dropdown:after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  background: #F7F8F9;
  width: 100vw;
  margin: 0 0 0 -50vw;
  z-index: -1;
}

.nav-grey .nav-link {
  color: #333;
}

.nav-grey .icon-nav-arrow {
  border-top-color: #333;
}

.nav-grey .nav-feedback {
  padding: 10px 0;
}

@media (min-width: 768px) {
  .nav-light {
    top: 0;
    margin: 0;
  }
  .nav-light .nav-dropdown {
    margin: 0;
    background: none;
  }
  .nav-light .nav-menu {
    width: 100%;
  }
  .nav-light .nav-menu > li {
    background: none;
  }
  .nav-light .nav-link {
    color: #333;
    padding: 10px !important;
  }
  .nav-light .icon-nav-arrow {
    border-top-color: #333;
  }
  .nav-light .nav-feedback {
    overflow: hidden;
  }
  .nav-light .nav-feedback .btn {
    padding-left: 20px;
    padding-right: 20px;
    float: right;
  }
}

/* ==========================================================================
   Main
   ========================================================================== */
.main {
  padding: 0 0 210px;
}

@media (min-width: 768px) {
  .main {
    padding: 0 0 140px;
  }
}

@media (min-width: 768px) {
  .main-content {
    padding: 90px 0 0;
  }
}

@media (min-width: 992px) {
  .main-content-in {
    margin: 0 0 0 -30px;
  }
}

/* ----- slides ----- */
.promo {
  position: relative;
  background: #000;
  color: #fff;
}

.promo-slides {
  position: relative;
  background: #000;
  color: #fff;
  margin-bottom: 50px;
}

.promo-slides .owl-dots {
  position: absolute;
  left: 0;
  bottom: 30px;
  right: 0;
  text-align: center;
  line-height: 1;
}

.promo-slides .owl-prev, .promo-slides .owl-next {
  display: block;
  width: 46px;
  height: 46px;
  border-radius: 3px;
  text-indent: -9999px;
  position: absolute;
  top: 50%;
  opacity: 0.5;
  margin: -23px 0 0;
  background: black;
  visibility: hidden;
}

@media (min-width: 992px) {
  .promo-slides .owl-prev, .promo-slides .owl-next {
    visibility: visible;
  }
}

.promo-slides .owl-prev:after, .promo-slides .owl-next:after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  background: url(../images/sprite.png) 0 0 no-repeat;
  width: 14px;
  height: 12px;
  margin: -6px 0 0 -7px;
}

.promo-slides .owl-prev:hover, .promo-slides .owl-next:hover {
  background: black;
  opacity: 1;
}

.promo-slides .owl-prev.disabled, .promo-slides .owl-next.disabled {
  opacity: 0.5;
  cursor: default;
}

.promo-slides .owl-prev {
  left: 20px;
}

.promo-slides .owl-prev:after {
  background-position: -115px -42px;
}

.promo-slides .owl-next {
  right: 20px;
}

.promo-slides .owl-next:after {
  background-position: -115px -59px;
}

.promo-item {
  position: relative;
  z-index: 1;
  padding: 110px 0;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.promo-item-center {
  text-align: center;
}

.promo-item-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  margin: 0;
}

.promo-item-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 0 0;
}

.promo-item-caption {
  max-width: 680px;
  margin: 0 auto;
  min-height: 200px;
}

.promo-item-title {
  color: inherit;
  margin: 0 0 25px;
  font-size: 30px;
  line-height: 42px;
  font-weight: 400;
}

.promo-item-title small {
  text-transform: uppercase;
  color: #fff;
  font-weight: 400;
}

.promo-item-title b {
  font-weight: 700;
}

@media (min-width: 768px) {
  .promo-item-title {
    font-size: 40px;
    line-height: 54px;
  }
  .promo-item-title small {
    font-size: 22px;
  }
}

.promo-item-text {
  font-size: 15px;
  line-height: 25px;
  color: #ffffff;
  margin: 0 0 45px;
}

.promo-item-ctrl .btn {
  margin: 0 10px 10px;
}

/* ----- request --- */
.request {
  background: rgba(0, 0, 0, 0.5);
  border-radius: 3px;
  padding: 20px;
}

@media (min-width: 992px) {
  .request {
    padding: 40px;
  }
}

.request-heading {
  font-size: 18px;
  line-height: 20px;
  margin: 0 0 25px;
  text-align: center;
}

.request-field {
  position: relative;
  margin: 0 0 10px;
}

.request-input {
  width: 100%;
  background: #fff;
  border-radius: 2px;
  border: none;
  padding: 15px 15px 15px 70px;
  font-size: 15px;
  line-height: 26px;
  color: #333;
}

.request-input::-webkit-input-placeholder {
  color: #bdc3c7;
}

.icon-request-email, .icon-request-name {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 50px;
  background: #F7F8F9;
  border-radius: 2px 0 0 2px;
}

.icon-request-email:after, .icon-request-name:after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  background: url(../images/sprite.png) 0 0 no-repeat;
}

.icon-request-email:after {
  width: 16px;
  height: 12px;
  background-position: -175px -60px;
  margin: -6px 0 0 -8px;
}

.icon-request-name:after {
  width: 16px;
  height: 16px;
  background-position: -154px -59px;
  margin: -8px 0 0 -8px;
}

/* ----- info ----- */
.about {
  padding: 50px 0;
}

.about-caption {
  position: relative;
  background: #777777;
  color: #fff;
  font-size: 18px;
  line-height: 24px;
  text-align: center;
  padding: 40px 0 62px;
  margin: -50px 0 -30px;
}

.about-caption:after, .about-caption:before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  background: #777777;
  width: 100vw;
}

.about-caption:after {
  left: 100%;
}

.about-caption:before {
  right: 100%;
}

@media (min-width: 768px) {
  .about-caption {
    padding: 55px 0 70px;
  }
}

@media (min-width: 992px) {
  .about-caption {
    font-size: 21px;
  }
}

.about-list {
  margin: 0;
  margin: 10px -15px -30px;
}

.about-list > li {
  padding: 0;
}

.about-list > li:after {
  display: none;
}

.about-list > li {
  display: inline-block;
  vertical-align: top;
  margin: 0 -5px 30px 0;
  padding: 0 15px;
  float: none;
}

.about-list a.about-item {
  margin: 0;
  padding: 0;
  box-shadow: none;
  border: none;
}

.about-list a.about-item:hover {
  top: 0;
  box-shadow: none;
}

.about-list .about-item-image {
  width: 44px;
  height: 44px;
}



.about-list .about-item-title {
  font-size: 19px;
}

a.about-item {
  transition: 0.25s ease-in-out;
  position: relative;
  top: 0;
  display: block;
  border: 1px solid #e0e0e0;
  background: #fff;
  border-radius: 3px;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.15);
  text-decoration: none;
  padding: 40px 20px 40px 40px;
  letter-spacing: -0.4px;
  font-size: 13px;
  line-height: 22px;
  color: #606060;
  margin: 0 0 30px;
}

a.about-item:hover {
  top: -10px;
  box-shadow: 0 4px 7px rgba(0, 0, 0, 0.25);
}

.about-item-image {
  width: 60px;
  height: 60px;
  border: 2px solid #333;
  border-radius: 50%;
  margin: 0 0 20px;
}

.about-item-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.about-item-title {
  font-size: 25px;
  margin: 0 0 20px;
}

.about-item-text {
  margin: 0 0 5px;
}

.about-ctrl {
  padding: 15px 0 0;
  text-align: center;
}

/* ----- desc ---- */
.desc {
  background: #000;
  color: #fff;
  position: relative;
  z-index: 1;
  padding: 40px 0;
}

.desc .btn {
  padding: 12px 50px;
}

@media (min-width: 768px) {
  .desc .btn {
    float: right;
  }
}

.desc-image {
  margin: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.desc-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.desc-heading {
  color: inherit;
  margin: 0;
  font-size: 30px;
}

.desc-text {
  font-size: 14px;
  opacity: 0.5;
  margin: 0 0 15px;
}

/* ----- projects ----- */
.projects {
  padding: 40px 0 50px;
  background: #F7F8F9;
}

.projects-heading {
  margin: 0 0 40px;
  padding: 0 40px 0 0;
}

.projects-slides {
  position: relative;
}

.projects-slides .owl-prev, .projects-slides .owl-next {
  display: block;
  width: 36px;
  height: 36px;
  border-radius: 3px;
  text-indent: -9999px;
  border: 1px solid #888888;
  position: absolute;
  bottom: 100%;
  margin: 0 0 40px;
  opacity: 0.8;
}

.projects-slides .owl-prev:after, .projects-slides .owl-next:after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  background: url(../images/sprite.png) 0 0 no-repeat;
  width: 14px;
  height: 12px;
  margin: -6px 0 0 -7px;
}

.projects-slides .owl-prev:hover, .projects-slides .owl-next:hover {
  opacity: 1;
}

.projects-slides .owl-prev.disabled, .projects-slides .owl-next.disabled {
  opacity: 0.5;
  cursor: default;
}

.projects-slides .owl-prev {
  right: 46px;
}

.projects-slides .owl-prev:after {
  background-position: -134px -42px;
}

.projects-slides .owl-next {
  right: 0;
}

.projects-slides .owl-next:after {
  background-position: -134px -59px;
}

.projects-list {
  margin: 0;
  overflow: hidden;
  margin: 0 -15px -30px;
}

.projects-list > li {
  padding: 0;
}

.projects-list > li:after {
  display: none;
}

.projects-list > li {
  float: none;
  display: inline-block;
  vertical-align: top;
  padding: 0 15px;
  margin: 0 -4px 30px 0;
}

a.projects-item {
  display: block;
  position: relative;
  z-index: 1;
  text-decoration: none;
  color: #fff;
  overflow: hidden;
  padding: 35px 40px 40px;
  font-size: 13px;
  line-height: 22px;
}

a.projects-item:before {
  content: '';
  float: left;
  padding: 64% 0 0;
}

a.projects-item:after {
  transition: 0.25s ease-in-out;
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #1f2c39;
  z-index: -1;
  opacity: 0.5;
}

a.projects-item:hover .projects-item-image {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}

a.projects-item:hover:after {
  opacity: 0.9;
}

.projects-item-image {
  transition: 0.5s ease-in-out;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

.projects-item-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.projects-item-title {
  font-size: 19px;
  margin: 0 0 10px;
  color: inherit;
}

.projects-item-text {
  display: block;
  min-height: 66px;
  margin: 0 0 22px;
}

/* ----- reviews-clients ------ */
.reviews-clients {
  padding: 40px 0 0;
  margin: 0 0 -20px;
}

.reviews-clients .clients {
  padding: 0;
}

.reviews-clients .clients-heading {
  text-align: left;
}

/* ----- */
.reviews-heading {
  font-size: 24px;
  line-height: 1.4;
  margin: 0 0 30px;
}

.reviews-heading small {
  color: #888888;
}

.reviews-slides {
  position: relative;
}

.reviews-slides .owl-prev, .reviews-slides .owl-next {
  display: block;
  width: 36px;
  height: 36px;
  border-radius: 3px;
  text-indent: -9999px;
  border: 1px solid #888888;
  position: absolute;
  bottom: 100%;
  margin: 0 0 30px;
  opacity: 0.8;
}

.reviews-slides .owl-prev:after, .reviews-slides .owl-next:after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  background: url(../images/sprite.png) 0 0 no-repeat;
  width: 14px;
  height: 12px;
  margin: -6px 0 0 -7px;
}

.reviews-slides .owl-prev:hover, .reviews-slides .owl-next:hover {
  opacity: 1;
}

.reviews-slides .owl-prev.disabled, .reviews-slides .owl-next.disabled {
  opacity: 0.5;
  cursor: default;
}

.reviews-slides .owl-prev {
  right: 46px;
}

.reviews-slides .owl-prev:after {
  background-position: -134px -42px;
}

.reviews-slides .owl-next {
  right: 0;
}

.reviews-slides .owl-next:after {
  background-position: -134px -59px;
}

.reviews-item {
  margin: 0;
  padding: 40px 30px 40px 70px;
  border: none;
  background: #fff url(../images/bg-reviews.png) 0 0;
  color: #888888;
  font-size: 13px;
  line-height: 23px;
  position: relative;
}

.reviews-item:after {
  content: '';
  display: block;
  position: absolute;
  top: 44px;
  left: 22px;
  background: url(../images/sprite.png) -196px -54px no-repeat;
  width: 22px;
  height: 18px;
}

.reviews-item-text {
  display: block;
  position: relative;
  margin: 0 0 21px;
}

.reviews-item-cite {
  display: block;
  font-style: normal;
  font-size: 13px;
  line-height: 20px;
  margin: 0;
  overflow: hidden;
}

.reviews-item-cite-photo {
  float: left;
  width: 40px;
  height: 40px;
  background: #777;
  border-radius: 50%;
  margin: 0 15px 0 0;
  overflow: hidden;
  display: block;
}

.reviews-item-cite-photo img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.reviews-item-cite-name {
  display: block;
  overflow: hidden;
  padding: 10px 0;
}

.reviews-item-cite-name b {
  font-weight: 600;
  color: #333;
}

/* ----- clients ----- */
.clients {
  padding: 40px 0 0;
  margin: 0 0 -50px;
}

.clients-list {
  margin: 0;
  margin: 0 -12px -22px;
}

.clients-list > li {
  padding: 0;
}

.clients-list > li:after {
  display: none;
}

.clients-list > li {
  display: inline-block;
  vertical-align: top;
  float: none;
  margin: 0 -5px 22px 0;
  padding: 0 12px;
}

.clients-list-item {
  padding: 10px;
  height: 90px;
  line-height: 70px;
  text-align: center;
}

.clients-list-item img {
  vertical-align: middle;
  max-width: 100%;
  max-height: 100%;
}

.clients-list-item:hover {
  background: #FBFCFC;
}

.clients-heading {
  text-align: center;
  margin: 0 0 30px;
  font-size: 24px;
  line-height: 1.4;
}

.clients-heading small {
  color: #888888;
}

.clients-slides {
  margin: 0 0 20px;
}

.clients-slides .owl-dots {
  text-align: center;
  padding: 5px 0 0;
  line-height: 1;
}

@media (min-width: 768px) {
  .clients-slides {
    margin: 0 0 10px;
  }
}

.clients-slides-item {
  display: inline-block;
  vertical-align: top;
  position: relative;
  height: 90px;
  padding: 12px;
  text-align: center;
  line-height: 64px;
  margin: 0 0 22px;
  width: 100%;
}

.clients-slides-item:after {
  transition: 0.15s ease-in-out;
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 1px solid #e0e0e0;
  border-radius: 3px;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}

.clients-slides-item img {
  max-width: 100%;
  max-height: 100%;
}

.clients-slides-item:hover:after {
  border-color: #888;
  box-shadow: none;
}

/* ----- */
.adv {
  position: relative;
  overflow: hidden;
  background: #fff url(../images/bg-adv.png) center center no-repeat;
  background-size: auto 90%;
  padding: 30px 0 0;
}

.adv .container-fluid {
  position: relative;
  padding-top: 55px;
  padding-bottom: 85px;
}

.adv-image {
  display: none;
}

@media (min-width: 992px) {
  .adv-image {
    display: block;
    margin: 0;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 50%;
    text-align: center;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: flex-end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .adv-image img {
    max-height: 100%;
  }
}

.adv-desc {
  font-size: 13px;
  line-height: 22px;
  color: #606060;
}

@media (min-width: 992px) {
  .adv-desc {
    margin: 0 0 0 -30px;
  }
}

.adv-heading {
  font-size: 30px;
  line-height: 35px;
  letter-spacing: -0.4px;
  margin: 0 0 30px;
}

.adv-text {
  margin: 0 0 45px;
}

.adv-count {
  margin: 0;
  font-size: 15px;
  line-height: 22px;
  color: #888888;
}

.adv-count > li {
  padding: 0;
}

.adv-count > li:after {
  display: none;
}

.adv-count > li {
  display: inline-block;
  vertical-align: top;
  margin: 0 -5px 0 0;
  width: 33.333%;
  padding: 0 10px 10px 0;
}

.adv-count mark {
  font-size: 48px;
  line-height: 48px;
  font-weight: 300;
  margin: 0 15px 0 0;
  float: left;
}

.adv-count span {
  display: block;
  overflow: hidden;
}

/* ----- */
.nav-aside {
  margin: 0 0 20px;
}

@media (min-width: 992px) {
  .nav-aside {
    margin-right: 30px;
  }
}

.nav-aside-menu {
  margin: 0;
  font-size: 13px;
  line-height: 18px;
}

.nav-aside-menu > li {
  padding: 0;
}

.nav-aside-menu > li:after {
  display: none;
}

.nav-aside-menu > li {
  margin: 0 0 1px;
}

a.nav-aside-link {
  display: block;
  background: #F7F8F9;
  color: #333;
  padding: 10px 20px;
  text-decoration: none;
}

a.nav-aside-link.is-active {
  background: #777;
  color: #fff;
}

/* ---- */
.breadcrumbs {
  margin: 0;
  overflow: hidden;
  font-size: 13px;
  line-height: 18px;
  color: #a2a2a2;
  margin: 0 0 10px;
}

.breadcrumbs > li {
  padding: 0;
}

.breadcrumbs > li:after {
  display: none;
}

.breadcrumbs > li {
  display: inline-block;
  vertical-align: top;
}

.breadcrumbs > li:before {
  content: '/';
  display: inline-block;
  vertical-align: top;
  width: 24px;
  text-align: center;
  background: none;
}

.breadcrumbs > li:first-child:before {
  display: none;
}

a.breadcrumbs-link {
  color: #a2a2a2;
  text-decoration: none;
}

a.breadcrumbs-link:hover {
  text-decoration: underline;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background: #121212;
  color: #fff;
  text-align: center;
}

@media (min-width: 768px) {
  .footer {
    text-align: left;
  }
}

.footer-contacts {
  position: relative;
  top: -140px;
  background: #777777;
  border-radius: 3px;
  padding: 50px 30px;
  margin: 0 0 -80px;
  text-align: center;
  z-index: 1;
}

.footer-contacts a {
  color: inherit;
  text-decoration: none;
}

.footer-contacts a:hover {
  text-decoration: underline;
}

.footer-contacts:after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  margin: 0 0 0 -50vw;
  background: #777;
  z-index: -1;
  visibility: hidden;
}

@media (min-width: 768px) {
  .footer-contacts {
    padding: 25px 30px;
    top: -45px;
    margin: 0;
  }
}

@media (min-width: 992px) {
  .footer-contacts {
    padding: 25px 40px;
    text-align: left;
  }
}

.footer-contacts-full:after {
  visibility: visible;
}

.footer-contacts-center {
  text-align: left;
}

@media (min-width: 768px) {
  .footer-contacts-center {
    text-align: center;
  }
}

.footer-contacts-list {
  margin: 0;
  display: inline-block;
  text-align: left;
}

.footer-contacts-list > li {
  padding: 0;
}

.footer-contacts-list > li:after {
  display: none;
}

.footer-contacts-list > li {
  display: block;
  margin: 0 0 35px;
}

.footer-contacts-list > li:last-child {
  margin: 0;
}

@media (min-width: 768px) {
  .footer-contacts-list {
    white-space: nowrap;
    display: block;
  }
  .footer-contacts-list > li {
    display: inline-block;
    vertical-align: top;
    margin: 0 -4px 0 0;
    width: 33.333%;
  }
}

@media (min-width: 992px) {
  .footer-contacts-list > li {
    width: auto;
  }
}

.footer-contacts-phone .icon-footer-contacts-phone {
  position: relative;
  top: -2px;
  display: inline-block;
  vertical-align: middle;
  margin: 0 10px 0 0;
}

.footer-contacts-loc .icon-footer-contacts-loc {
  position: relative;
  top: -2px;
  display: inline-block;
  vertical-align: middle;
  margin: 0 10px 0 0;
}

.footer-contacts-phone, .footer-contacts-loc {
  margin: 0;
  display: block;
  white-space: nowrap;
  font-size: 20px;
  line-height: 40px;
  text-align: left;
}

@media (min-width: 768px) {
  .footer-contacts-phone, .footer-contacts-loc {
    display: inline-block;
    vertical-align: top;
    font-size: 30px;
    margin: 0 15px;
  }
}

.footer-contacts-address {
  font-style: normal;
  display: block;
  position: relative;
  padding: 0 20px 0 45px;
  font-size: 13px;
  line-height: 20px;
}

.footer-contacts-address b {
  font-weight: 600;
}

@media (min-width: 992px) {
  .footer-contacts-address {
    padding-right: 40px;
  }
}

.footer-contacts-address a {
  color: inherit;
  text-decoration: none;
}

.footer-contacts-address a:hover {
  text-decoration: underline;
}

.icon-footer-contacts-phone, .icon-footer-contacts-loc, .icon-footer-contacts-time {
  display: block;
  background: url(../images/sprite.png) 0 0 no-repeat;
  position: absolute;
  top: 0;
  left: 0;
}

.icon-footer-contacts-phone {
  width: 31px;
  height: 31px;
  background-position: 0 0;
}

.icon-footer-contacts-loc {
  width: 24px;
  height: 32px;
  background-position: -41px 0;
  left: 4px;
}

.icon-footer-contacts-time {
  width: 32px;
  height: 32px;
  background-position: -74px 0;
}

/* --- */
.footer-info {
  position: relative;
  min-height: 44px;
}

.footer-logo {
  margin: 0 0 35px;
  font-size: 30px;
  line-height: 32px;
  font-weight: 700;
}

.footer-logo small {
  display: block;
  font-size: 11px;
  line-height: 17px;
  letter-spacing: 0.4px;
  font-weight: 400;
  color: #888888;
}

.footer-logo a {
  color: inherit;
  text-decoration: none;
}

.footer-text {
  margin: 0 0 30px;
}

.social {
  margin: 0;
  margin: 0 -20px 55px;
}

.social > li {
  padding: 0;
}

.social > li:after {
  display: none;
}

.social > li {
  display: inline-block;
  vertical-align: top;
  margin: 0 5px;
}

.social > li:first-child {
  margin-left: 0;
}

.social > li:last-child {
  margin-right: 0;
}

@media (min-width: 768px) {
  .social {
    position: absolute;
    top: 0;
    right: 0;
    margin: 0;
  }
}

@media (min-width: 992px) {
  .social {
    position: relative;
  }
}

.social-link {
  transition: 0.15s ease-in-out;
  display: block;
  border: 1px solid #888888;
  width: 44px;
  height: 44px;
  border-radius: 3px;
  line-height: 42px;
  text-align: center;
}

.icon-social-vk, .icon-social-im, .icon-social-yt, .icon-social-gp, .icon-social-fb {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  top: -1px;
  background: url(../images/sprite.png) 0 0 no-repeat;
}

.icon-social-vk {
  width: 18px;
  height: 10px;
  background-position: -138px -3px;
}

.icon-social-im {
  width: 16px;
  height: 16px;
  background-position: -161px 0;
}

.icon-social-yt {
  width: 18px;
  height: 13px;
  background-position: -115px -2px;
}

.icon-social-gp {
  width: 16px;
  height: 16px;
  background-position: -182px 0;
}

.icon-social-fb {
  width: 10px;
  height: 17px;
  background-position: -203px 0;
}

/* ------ */
.recent {
  padding: 0 0 15px;
}

.recent-heading {
  display: block;
  font-size: 19px;
  line-height: 37px;
  border-bottom: 1px solid #1E1E1E;
  margin: 0 0 30px;
}

.recent-list {
  margin: 0;
}

.recent-list > li {
  padding: 0;
}

.recent-list > li:after {
  display: none;
}

a.recent-item {
  display: block;
  color: #fff;
  text-decoration: none;
  margin: 0 0 25px;
  overflow: hidden;
}

a.recent-item:hover {
  text-decoration: underline;
}

.recent-item-image {
  display: none;
}

@media (min-width: 768px) {
  .recent-item-image {
    display: block;
    width: 54px;
    height: 54px;
    float: left;
    margin: 0 20px 0 0;
    background: #252525;
  }
}

.recent-item-desc {
  overflow: hidden;
}

.recent-item-title {
  margin: 0 0 10px;
}

.recent-item-time {
  display: inline-block;
  vertical-align: top;
  position: relative;
  font-size: 12px;
  color: #888888;
  padding: 0 0 0 22px;
}

.recent-item-time:after {
  content: '';
  display: block;
  position: absolute;
  top: 4px;
  left: 0;
  background: url(../images/sprite.png) -153px -41px no-repeat;
  width: 12px;
  height: 12px;
}

/* ------ */
.feedback {
  padding: 0 0 60px;
}

.feedback .btn {
  margin: 0 20px 20px 0;
}

.feedback-heading {
  display: block;
  font-size: 19px;
  line-height: 37px;
  border-bottom: 1px solid #1E1E1E;
  margin: 0 0 30px;
}

.feedback-input {
  width: 100%;
  color: #fff;
  background: #252525;
  border-radius: 3px;
  font-size: 13px;
  line-height: 24px;
  border: 1px solid transparent;
  color: #888888;
  padding: 5px 12px;
  margin: 0 0 15px;
}

.feedback-input::-webkit-input-placeholder {
  transition: 0.15s ease-in-out;
  color: #888888;
  opacity: 0.4;
}

.feedback-input:focus::-webkit-input-placeholder {
  opacity: 1;
}

.feedback-textarea {
  width: 100%;
  max-width: 100%;
  color: #fff;
  background: #252525;
  border-radius: 3px;
  font-size: 13px;
  line-height: 24px;
  border: 1px solid transparent;
  color: #888888;
  padding: 5px 12px;
  margin: 0 0 15px;
  height: 70px;
}

.feedback-textarea::-webkit-input-placeholder {
  transition: 0.15s ease-in-out;
  color: #888888;
  opacity: 0.4;
}

.feedback-textarea:focus::-webkit-input-placeholder {
  opacity: 1;
}

.feedback-label {
  color: #888888;
  display: inline-block;
  vertical-align: middle;
  margin: 0 0 20px;
}

.feedback-ctrl {
  text-align: left;
}

/* ------ */
.copyright {
  display: block;
  border-top: 1px solid #1E1E1E;
  margin: 0;
  padding: 20px 0;
  font-size: 12px;
  line-height: 22px;
  color: #888888;
  text-align: center;
}

/* ----- */
.icon-price {
  width: 100px;
  height: 100px;
  display: block;
  margin: 0 auto 30px;
  border-radius: 50%;
  background: #777;
  position: relative;
}

.icon-price:after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  background: url(../images/sprite.png) -141px -124px no-repeat;
  width: 76px;
  height: 76px;
  margin: -34px 0 0 -40px;
}

/* ----- */
.products {
  padding: 35px 0 0;
}

.products-item {
  margin: 0 0 30px;
}

.products-item-image {
  margin: 0 0 20px;
  position: relative;
  overflow: hidden;
}

.products-item-image:before {
  content: '';
  float: left;
  padding: 60% 0 0;
}

.products-item-image img {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
}

.products-item-title {
  font-size: 16px;
  margin: 0 0 20px;
}

.products-item-text {
  margin: 0;
}

/* ----- */
.change-theme {
  font-size: 13px;
  line-height: 25px;
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 1000;
  border: none;
  padding: 5px 12px;
  background: #000;
  color: #fff;
}

.change-theme:hover {
  background: #555;
}

.main-content .tpl-block-list .info-block {
  border-bottom: 1px solid #EBEBEB;
  margin: 1.9rem auto;
}

.main-content .tpl-block-list:last-child .info-block {
  border-bottom: 0;
  margin-bottom: 0;
}

.nc-navbar ul > li:after {
  content: normal;
}

@import url(http://weloveiconfonts.com/api/?family=entypo);
.document{
  position: relative;
  margin-left: 25px;
  max-width: 90%;
  margin-top: 10px;
  margin-bottom: 10px;
}
.document span{
  margin-left:5px;
}
.document a.asad:before{
  background: url(../images/download_small.png) no-repeat;
  content: '';
  position: absolute;
  left: -25px;
  width: 17px;
  height: 18px;
  top: 2px;
}

.docs_list_item_title {
  cursor: pointer;
  display: inline-block;
  padding-right: 20px;
  position: relative;
  font-weight: bold;
  font-size: 18px;
  color: #656565;
  border-bottom: 1px solid #656565;
  padding-bottom: 8px;
}
.docs_list_item_title:before{
  position: absolute;
  right: 0px;
  top: 5px;
  width: 15px;
  height: 15px;
  font-size: 24px;
  text-align: center;
  line-height: 15px;
}
[class*="entypo-"]:before{
  font-family: 'entypo', sans-serif;
}
.docs_list_item_title.active:before{
  content: '\e763';
}
.docs_list_item:nth-of-type(1) .docs_list_item_text.visible{
  height: inherit !important;
}

.document{
  position: relative;
  margin-left: 25px;
  max-width: 90%;
  margin-top: 10px;
  margin-bottom: 10px;
}
.document span{
  margin-left:5px;
}
.document a.asad:before{
  background: url(../images/download_small.png) no-repeat;
  content: '';
  position: absolute;
  left: -25px;
  width: 17px;
  height: 18px;
  top: 2px;
}

.docs_list_item_title {
  cursor: pointer;
  display: inline-block;
  padding-right: 20px;
  position: relative;
  font-weight: bold;
  font-size: 18px;
  color: #656565;
  border-bottom: 1px solid #656565;
  padding-bottom: 8px;
}
.docs_list_item_title:before{
  position: absolute;
  right: 0px;
  top: 5px;
  width: 15px;
  height: 15px;
  font-size: 24px;
  text-align: center;
  line-height: 15px;
}
[class*="entypo-"]:before{
  font-family: 'entypo', sans-serif;
}
.docs_list_item_title.active:before{
  content: '\e763';
}
.docs_list_item:nth-of-type(1), .docs_list_item_text.visible{
  height: inherit !important;
}
.agreed-container {
    text-align: left;
    margin-bottom: 2%;
}
.agreed-input {
    margin-right:1%;
}