@charset "UTF-8";

/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.2
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2017 Daniel Eden
 */

.pagination{
  width: 100%;
}
.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

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

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

.form{
  display: flex;
  flex-wrap: wrap;
    background-color: #f7f7f7;
    padding: 20px 30px;
    border-radius: 10px;
}

.form__title{
  display: block;
  width: 100%;
  font-size: 21px;
  font-weight: bold;
  margin-bottom: 15px;
}

.shadowed{
  height: 360px;
  overflow-y: hidden;
  position: relative;
}
.slider__col_more{
  display: none;
  position: absolute;
  width: 100%;
  text-align: center;
  bottom: 0;
  left: 0;
  font-weight: bold;
  text-decoration: underline;
  cursor: pointer;
  border-radius: 0!important;
  z-index: 10;
}
.shadowed .slider__col_more{
  display: block;
}

.slider__col_more:hover{
  text-decoration: none;
}

.shadowed::before{
  content: '';
  position: absolute;
  bottom: 30px;
  left: 0;
  width: 100%;
  height: 35px;
  display: block;
  -webkit-box-shadow: inset -15px -10px 20px 15px rgba(255, 255, 255, 0.9);
  -moz-box-shadow: inset -15px -10px 20px 15px rgba(255, 255, 255, 0.9);
  box-shadow: inset -15px -10px 20px 15px rgba(255, 255, 255, 0.9);
}

.shadowed_hovered{
  padding-bottom: 35px;
  height: auto!important;
}

.shadowed_hovered::before{
  opacity: 0;
}

.vantage{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 30px;
}

.vantage__item{
    width: 33.333333%;
    text-align: center;
    margin-bottom: 30px;
    padding-left: 10px;
    padding-right: 10px;
}

.vantage__image{
    max-height: 60px;
}

.vantage__title{
    margin-top: 10px;
    font-size: 18px;
    font-weight: bold;
    display: block;
    text-align: center;
}

.vantage__text{
    font-size: 16px;
}

.form__half{
  display: inline-block;
  width: 49%;
}

.form__half + .form__half{
  margin-left: 2%;
}

.form__full{
  width: 100%;
}

.form .button{
  font-size: 18px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fadeIn {
  animation-name: fadeIn;
}

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

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInDown {
  animation-name: fadeInDown;
}

.fadeInDownBig {
  animation-name: fadeInDownBig;
}

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

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInLeft {
  animation-name: fadeInLeft;
}

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

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInLeftBig {
  animation-name: fadeInLeftBig;
}

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

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInRight {
  animation-name: fadeInRight;
}

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

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInRightBig {
  animation-name: fadeInRightBig;
}

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

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInUp {
  animation-name: fadeInUp;
}

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

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInUpBig {
  animation-name: fadeInUpBig;
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeOutDown {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(0,100%,0);
  }
}

.fadeOutDown {
  animation-name: fadeOutDown;
}

@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }

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

.fadeOutDownBig {
  animation-name: fadeOutDownBig;
}

@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(-100%,0,0);
  }
}

.fadeOutLeft {
  animation-name: fadeOutLeft;
}

@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }

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

.fadeOutLeftBig {
  animation-name: fadeOutLeftBig;
}

@keyframes fadeOutRight {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(100%,0,0);
  }
}

.fadeOutRight {
  animation-name: fadeOutRight;
}

@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }

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

.fadeOutRightBig {
  animation-name: fadeOutRightBig;
}

@keyframes fadeOutUp {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(0,-100%,0);
  }
}

.fadeOutUp {
  animation-name: fadeOutUp;
}

@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }

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

.fadeOutUpBig {
  animation-name: fadeOutUpBig;
}

@keyframes slideInDown {
  from {
    transform: translate3d(0,-100%,0);
    visibility: visible;
  }

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

.slideInDown {
  animation-name: slideInDown;
}

@keyframes slideInLeft {
  from {
    transform: translate3d(-100%,0,0);
    visibility: visible;
  }

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

.slideInLeft {
  animation-name: slideInLeft;
}

@keyframes slideInRight {
  from {
    transform: translate3d(100%,0,0);
    visibility: visible;
  }

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

.slideInRight {
  animation-name: slideInRight;
}

@keyframes slideInUp {
  from {
    transform: translate3d(0,100%,0);
    visibility: visible;
  }

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

.slideInUp {
  animation-name: slideInUp;
}

@keyframes slideOutDown {
  from {
    transform: translate3d(0,0,0);
  }

  to {
    visibility: hidden;
    transform: translate3d(0,100%,0);
  }
}

.slideOutDown {
  animation-name: slideOutDown;
}

@keyframes slideOutLeft {
  from {
    transform: translate3d(0,0,0);
  }

  to {
    visibility: hidden;
    transform: translate3d(-100%,0,0);
  }
}

.slideOutLeft {
  animation-name: slideOutLeft;
}

@keyframes slideOutRight {
  from {
    transform: translate3d(0,0,0);
  }

  to {
    visibility: hidden;
    transform: translate3d(100%,0,0);
  }
}

.slideOutRight {
  animation-name: slideOutRight;
}

@keyframes slideOutUp {
  from {
    transform: translate3d(0,0,0);
  }

  to {
    visibility: hidden;
    transform: translate3d(0,-100%,0);
  }
}

.slideOutUp {
  animation-name: slideOutUp;
}

.delay100 {
  -webkit-animation-delay: .1s;
  animation-delay: .1s;
}

.delay200 {
  -webkit-animation-delay: .2s;
  animation-delay: .2s;
}

.delay300 {
  -webkit-animation-delay: .3s;
  animation-delay: .3s;
}

.delay400 {
  -webkit-animation-delay: .4s;
  animation-delay: .4s;
}

.delay500 {
  -webkit-animation-delay: .5s;
  animation-delay: .5s;
}

.delay600 {
  -webkit-animation-delay: .6s;
  animation-delay: .6s;
}

.delay700 {
  -webkit-animation-delay: .7s;
  animation-delay: .7s;
}

.delay800 {
  -webkit-animation-delay: .8s;
  animation-delay: .8s;
}

.delay900 {
  -webkit-animation-delay: .9s;
  animation-delay: .9s;
}

.delay1000 {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.delay1200 {
  -webkit-animation-delay: 1.2s;
  animation-delay: 1.2s;
}

.delay1400 {
  -webkit-animation-delay: 1.4s;
  animation-delay: 1.4s;
}

.delay1600 {
  -webkit-animation-delay: 1.6s;
  animation-delay: 1.6s;
}

.delay1800 {
  -webkit-animation-delay: 1.8s;
  animation-delay: 1.8s;
}

.delay2000 {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

.delay2400 {
  -webkit-animation-delay: 2.4s;
  animation-delay: 2.4s;
}

.delay3000 {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}

.Unpc {
  display: none!important;
}

.slider {
  height: 560px;
  overflow: hidden;
  position: relative;
  padding-bottom: 56px;
}

.slider .bann_img {
  height: 560px;
  width: 1366px;
  position: absolute;
  left: 0;
  right: 0;
  margin: autotop:0;
}

.header .logo,
.header .nav,
.header__info{
  max-height: 91px;
}

.slider .slide_nav {
  position: absolute;
  bottom: 24px;
  width: 100%;
  text-align: center;
  left: 0;
  z-index: 4;
}

.slider .slide_nav a {
  display: inline-block;
  width: 9px;
  height: 9px;
  line-height: 99;
  overflow: hidden;
  border-radius: 50%;
  border: 1px #707070 solid;
  background: url(about:blank);
  margin-right: 14px;
}

.slider .slide_nav a.on {
  background-color: #c70025;
}

.slider .arrs {
  width: 60px;
  height: 60px;
  background: url(../img/slider_btn_new.png) no-repeat;
  position: absolute;
  top: 50%;
  margin-top: -55px;
  left: 2%;
  opacity: 0;
  z-index: 10;
}

.slider .arr_next {
  background-position: -60px 0;
  left: auto;
  right: 2%;
}

.slider:hover .arrs {
  opacity: 1;
}

#menus {
  position: absolute;
  bottom: 112px;
  left: 50%;
  margin-left: -569px;
  width: 576px;
  height: 100px;
}

#menus div {
  width: 95px;
  height: 110px;
  margin: 0 7px;
  position: relative;
  cursor: default;
  float: left;
  line-height: 20px;
}

#menus div img {
  position: absolute;
  top: 0;
  left: 19px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}

#menus div p {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 105px;
  color: #fff;
  font-size: 14px;
  text-align: center;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  -webkit-animation: fadeIn .8s 1s both;
  animation: fadeIn .8s 1s both;
}

#menus .m_act .circle {
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg);
}

#menus .m_act p {
  color: #fff;
}

#menus .m_act .lv_w {
  opacity: 0;
}

.slider .info {
  position: absolute;
  left: 130px;
  top: 70px;
}

.slider .car {
  position: absolute;
  top: 40px;
  right: 140px;
  -webkit-animation-duration: 3.4s;
  animation-duration: 3.4s;
}

.slider .box,
.slider .box2 {
  position: absolute;
  bottom: 118px;
  left: 51%;
  margin-left: -150px;
  z-index: 5;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

.slider .box2 {
  z-index: 6;
  -webkit-animation: cargos 6s ease-out 3s infinite both;
  animation: cargos 6s ease-out 3s infinite both;
}

.sa_arra {
  position: absolute;
  bottom: 135px;
  z-index: 10;
  left: 50%;
  margin-left: -100px;
  -webkit-animation: saarr 2s ease-out 3.2s infinite both;
  animation: saarr 2s ease-out 3.2s infinite both;
}

.sa_arrb {
  position: absolute;
  bottom: 135px;
  z-index: 10;
  left: 50%;
  margin-left: 30px;
  -webkit-animation: saarr 2s ease-out 3.2s infinite both;
  animation: saarr 2s ease-out 3.2s infinite both;
}

.slider .animated {
  position: absolute;
}

@-webkit-keyframes cargos {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-60px);
  }

  10% {
    opacity: 1;
  }

  70% {
    -webkit-transform: translateY(0);
  }

  85% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(0);
  }
}

@keyframes cargos {
  0% {
    opacity: 0;
    transform: translateY(-60px);
  }

  10% {
    opacity: 1;
  }

  70% {
    transform: translateY(0);
  }

  85% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateY(0);
  }
}

@-webkit-keyframes saarr {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-40px);
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(0);
  }
}

@keyframes saarr {
  0% {
    opacity: 0;
    transform: translateY(-40px);
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateY(0);
  }
}

.owl-carousel,
.owl-carousel .owl-item {
  -webkit-tap-highlight-color: transparent;
  position: relative;
}

.owl-carousel {
  display: none;
  width: 100%;
  z-index: 1;
}

.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  -moz-backface-visibility: hidden;
}

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  -webkit-transform: translate3d(0,0,0);
}

.owl-carousel .owl-item,
.owl-carousel .owl-wrapper {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0,0,0);
  -moz-transform: translate3d(0,0,0);
  -ms-transform: translate3d(0,0,0);
}

.owl-carousel .owl-item {
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-touch-callout: none;
}

.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}

.owl-carousel .owl-dots.disabled,
.owl-carousel .owl-nav.disabled {
  display: none;
}

.no-js .owl-carousel,
.owl-carousel.owl-loaded {
  display: block;
}

.owl-carousel .owl-dot,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-nav .owl-prev {
  cursor: pointer;
  cursor: hand;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}

.owl-carousel.owl-hidden {
  opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}

.owl-carousel.owl-drag .owl-item {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel.owl-grab {
  cursor: move;
  cursor: grab;
}

.owl-carousel.owl-rtl {
  direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
  float: right;
}

.owl-carousel .animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
  z-index: 0;
}

.owl-carousel .owl-animated-out {
  z-index: 1;
}

.owl-carousel .fadeOut {
  animation-name: fadeOut;
}

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

  100% {
    opacity: 0;
  }
}

.owl-height {
  transition: height .5s ease-in-out;
}

.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity .4s ease;
}

.owl-carousel .owl-item img.owl-lazy {
  transform-style: preserve-3d;
}

.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url(owl.video.play.png) no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform .1s ease;
}

.owl-carousel .owl-video-play-icon:hover {
  -ms-transform: scale(1.3,1.3);
  transform: scale(1.3,1.3);
}

.owl-carousel .owl-video-playing .owl-video-play-icon,
.owl-carousel .owl-video-playing .owl-video-tn {
  display: none;
}

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity .4s ease;
}

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}

.owl-theme .owl-dots,
.owl-theme .owl-nav {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-nav {
  margin-top: 10px;
}

.owl-theme .owl-nav [class*=owl-] {
  color: #fff;
  font-size: 14px;
  margin: 5px;
  padding: 4px 7px;
  background: #d6d6d6;
  display: inline-block;
  cursor: pointer;
  border-radius: 3px;
}

.owl-theme .owl-nav [class*=owl-]:hover {
  background: #869791;
  color: #fff;
  text-decoration: none;
}

.owl-theme .owl-nav .disabled {
  opacity: .5;
  cursor: default;
}

.owl-theme .owl-nav.disabled+.owl-dots {
  margin-top: 10px;
}

.owl-theme .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
}

.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  background: #d6d6d6;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity .2s ease;
  border-radius: 30px;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: #869791;
}

@font-face {
  font-family: Roboto;
  font-weight: 400;
  font-style: normal;
  src: url(../fonts/RobotoRegular/RobotoRegular.eot);
  src: url(../fonts/RobotoRegular/RobotoRegular.eot?#iefix) format("embedded-opentype"),url(../fonts/RobotoRegular/RobotoRegular.woff) format("woff"),url(../fonts/RobotoRegular/RobotoRegular.ttf) format("truetype");
}

@font-face {
  font-family: Roboto;
  font-weight: 700;
  font-style: normal;
  src: url(../fonts/RobotoBold/RobotoBold.eot);
  src: url(../fonts/RobotoBold/RobotoBold.eot?#iefix) format("embedded-opentype"),url(../fonts/RobotoBold/RobotoBold.woff) format("woff"),url(../fonts/RobotoBold/RobotoBold.ttf) format("truetype");
}

.red {
  color: #f0c709;
}

.bold {
  font-weight: 700;
}

*,
:after,
:before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

::-webkit-input-placeholder {
  color: #5e5d5d;
  opacity: 1;
  font-style: italic;
}

:-moz-placeholder {
  color: #5e5d5d;
  opacity: 1;
  font-style: italic;
}

::-moz-placeholder {
  color: #5e5d5d;
  opacity: 1;
  font-style: italic;
}

:-ms-input-placeholder {
  color: #5e5d5d;
  opacity: 1;
  font-style: italic;
}

address,
article,
aside,
audio,
body,
canvas,
caption,
div,
em,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
html,
iframe,
img,
label,
li,
mark,
nav,
object,
ol,
p,
section,
small,
span,
strong,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
ul,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: 0 0;
  outline: 0;
  line-height: initial;
}

body input:focus:required:invalid,
body textarea:focus:required:invalid {
  color: #868686;
}

body input:required:valid,
body textarea:required:valid {
  color: #868686;
}

html {
  height: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-size: 16px;
  min-width: 320px;
  position: relative;
  line-height: 1.75;
  font-family: Roboto,sans-serif;
  color: #303030;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-transition: opacity .2s;
  transition: opacity .2s;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  background: 0 0;
  text-decoration: none;
  outline: 0;
  color: #f0c709;
  -webkit-transition: color .2s ease-out;
  transition: color .2s ease-out;
}

a:hover {
  text-decoration: underline;
}

::-moz-selection {
  background: #6daef0;
  color: #fff;
}

::selection {
  background: #6daef0;
  color: #fff;
}

::-moz-selection {
  background: #6daef0;
  color: #fff;
}

.nav {
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-left: 15px;
  margin-right: 15px;
  word-wrap: break-word;
  width: -webkit-calc(58.333333333333336% - 30px);
  width: calc(58.333333333333336% - 30px);
}

.nav__hider {
  position: absolute;
  width: 100%;
  height: 52px;
  margin-top: -52px;
  z-index: 100;
}

.nav__close {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 14px;
}

.nav__list {
  padding: 0;
}

.nav__list::after {
  display: block;
  content: "";
  clear: both;
}

.nav__list>li {
  float: left;
  position: relative;
  padding-right: 2.5%;
}

.nav__list>li:hover>ul {
  max-height: 10000px;
  opacity: 1;
  overflow: visible;
}

.nav__list li>a {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 15px;
  position: relative;
  line-height: 90px;
  color: #303030;
}

.nav__list li>a:hover {
  color: #f0c709;
}

.nav__list li>a+ul {
  max-height: 0;
  overflow: hidden;
  width: 160px;
  padding: 8px;
  position: absolute;
  top: 90px;
  left: 50%;
  margin-left: -85px;
  background-color: #f0c709;
  opacity: 0;
  display: block;
  -webkit-transition: opacity .2s ease;
  transition: opacity .2s ease;
}

.nav__list li>a+ul li {
  line-height: 25px;
  text-align: center;
  padding-bottom: 10px;
  position: relative;
}

.nav__list li>a+ul li ul {
  width: 160px;
  position: absolute;
  left: 152px;
  top: -2px;
  margin: 0;
  text-align: left;
  max-height: 10000px;
  background: #fff;
  border: 2px solid #f0c709;
  z-index: 0;
}

.nav__list li>a+ul li ul li:last-child a {
  border: none;
}

.nav__list li>a+ul li ul a {
  color: #f0c709;
  border-bottom: 1px solid #fdf4c8;
}

.nav__list li>a+ul li ul a:hover {
  background: #f0c709;
  color: #fff;
}

.nav__list li>a+ul li>a {
  display: block;
  color: #fff;
  font-size: 15px;
  padding: 3px 5px;
  line-height: 1.4;
}

.nav__list li>a+ul li>a:hover {
  background: #fff;
  color: #f0c709;
}

.nav__list li>a+ul li:hover {
  z-index: 100;
}

.nav__list li>a+ul li:hover>ul {
  opacity: 1;
  z-index: 100;
}

.nav ul {
  list-style-type: none;
}

.nav a:hover {
  text-decoration: none;
}

.nav__zero-level>.nav__parent>a::after {
  content: '';
  width: 0;
  height: 0;
  border-left: 4px transparent solid;
  border-right: 4px transparent solid;
  border-top: 6px #c9c9c9 solid;
  position: absolute;
  bottom: 17px;
  left: 50%;
  margin-left: -4px;
}

.get-back {
  position: absolute;
  top: -33px;
  width: 50%;
  margin-left: 20px;
  text-transform: uppercase;
  font-size: 14px;
  color: #5e5d5d;
  letter-spacing: 1px;
}

.get-back_first {
  left: 100%;
}

.get-back_second {
  left: 200%;
}

.get-back_third {
  left: 300%;
}

.get-back_fourth {
  left: 400%;
}

body {
  color: #303030;
}

.header {
  max-width: 1080px;
  padding-left: 30px;
  padding-right: 30px;
  margin: 0 auto;
  padding: 0 20px;
  background: #fff;
  position: relative;
  z-index: 100;
}

.header__body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}

.header__info {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-left: 15px;
  margin-right: 15px;
  word-wrap: break-word;
  width: -webkit-calc(25% - 30px);
  width: calc(25% - 30px);
  padding-top: 15px;
  padding-bottom: 15px;
}

.header__contact {
  width: -webkit-calc(100% - 60px);
  width: calc(100% - 60px);
  float: left;
  padding-left: 15px;
  text-align: center;
}

.header__contact .bold {
  margin-bottom: 3px;
  font-size: 18px;
  display: block;
  max-height: 23px;
  width: 100%;
  height: 23px;
  max-width: 200px;
  background: url(../img/heli_phone.png) no-repeat top center;
  background-size: contain;
}

.header .button {
  line-height: 32px;
  padding: 0 10px;
}

.logo {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-left: 15px;
  margin-right: 15px;
  word-wrap: break-word;
  width: -webkit-calc(16.666666666666668% - 30px);
  width: calc(16.666666666666668% - 30px);
  padding-top: 24px;
}

.logo a {
  display: block;
  width: 100%;
  min-height: 40px;
  background: url(../img/logo.jpg) no-repeat center/contain;
}

.search {
  float: left;
  width: 60px;
  height: 60px;
  position: relative;
  cursor: pointer;
}

.search__icon {
  position: relative;
  padding-top: 8px;
  width: 100%;
  height: 100%;
  border: 2px solid #e4e4e4;
  display: inline-block;
  text-align: center;
  font-size: 12px;
  background: #fff;
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
  z-index: 10;
}

.search__icon img {
  max-width: 24px;
}

.search__window {
  display: none;
  position: absolute;
  top: 58px;
  right: 0;
  width: 320px;
  height: 40px;
  background: #e4e4e4;
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
}

.search:hover .search__window {
  display: block;
}

.search:hover .search__icon {
  background: #f6f6f6;
}

.search input {
  width: -webkit-calc(100% - 60px);
  width: calc(100% - 60px);
  height: 40px;
  border: 1px solid #e4e4e4;
  padding: 5px 10px;
  background: #fff;
}

.search .button-search {
  width: 60px;
  float: right;
  line-height: 42px;
  color: #fff;
  background: #f0c709;
  text-align: center;
  height: 40px;
  font-size: 14px;
  cursor: pointer;
}

.search .button-search:hover {
  background-color: #d7b308;
}

.mobile-trigger {
  display: none;
  position: absolute;
  top: 40%;
  right: 15px;
  width: 25px;
  height: 20px;
  -webkit-transform: rotate(0);
  -ms-transform: rotate(0);
  transform: rotate(0);
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
}

.mobile-trigger span {
  display: block;
  position: absolute;
  height: 20%;
  width: 100%;
  background: #303030;
  -webkit-border-radius: 9px;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0);
  -ms-transform: rotate(0);
  transform: rotate(0);
  -webkit-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

.mobile-trigger span:nth-child(1) {
  top: 0;
}

.mobile-trigger span:nth-child(2),
.mobile-trigger span:nth-child(3) {
  top: 40%;
}

.mobile-trigger span:nth-child(4) {
  top: 80%;
}

.mobile-trigger.open span:nth-child(1) {
  top: 40%;
  width: 0%;
  left: 50%;
}

.mobile-trigger.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.mobile-trigger.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.mobile-trigger.open span:nth-child(4) {
  top: 40%;
  width: 0%;
  left: 50%;
}

.section__body {
  max-width: 1080px;
  padding-left: 30px;
  padding-right: 30px;
  margin: 0 auto;
  background: #fff;
  padding: 20px 30px;
}

.section__body_no-padding {
  padding: 20px 0;
}

.advantages {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.advantages__item {
  width: -webkit-calc(100% / 7 - 10px);
  width: calc(100% / 7 - 10px);
  margin: 0 5px;
  text-align: center;
}

.advantages__item:last-child img {
  max-height: 110px;
}

.advantages__item:last-child .advantages__title {
  margin-top: -20px;
}

.advantages img {
  max-height: 90px;
}

.advantages__title {
  display: block;
  margin-top: -10px;
  width: 100%;
  text-align: center;
  font-size: 12px;
}

.categories {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
  margin: 0;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.categories__item {
  position: relative;
  width: -webkit-calc(33.333% - 15px);
  width: calc(33.333% - 15px);
  margin: 0 10px 10px;
  text-align: center;
  background: #e8e8e8;
  overflow: hidden;
  border: 10px solid transparent;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.categories__item:nth-child(3n+2) {
  margin: 0 0 10px;
}

.categories__item:hover {
  border-color: #e00038;
}

.categories__item:hover .categories__title {
  -webkit-box-shadow: 0 0 0 100px rgba(0,0,0,.6);
  box-shadow: 0 0 0 100px rgba(0,0,0,.6);
}

.categories__item:hover .categories__title::after {
  opacity: 1;
}

.categories__title {
  display: block;
  width: 100%;
  max-width: 260px;
  font-size: 22px;
  font-weight: 700;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  margin: auto;
  padding: 10px;
  letter-spacing: 1px;
  color: #fff;
  background: rgba(0,0,0,.6);
  -webkit-transform: translate3D(0,-50%,0);
  -ms-transform: translate3D(0,-50%,0);
  transform: translate3D(0,-50%,0);
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  z-index: 10;
}

.categories__title::after {
  content: 'Подробнее >';
  display: block;
  position: absolute;
  bottom: -10px;
  left: 0;
  right: 0;
  margin: auto;
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  opacity: 0;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.article h1,
.article__title {
  width: 100%;
  display: block;
  text-align: center;
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 2rem;
}

.article__rating{
border: 2px solid #8CC14C;
    color: #8CC14C;
    border-radius: 5px;
    padding: 0px 10px;
    line-height: 35px;
    display: inline-block;
}

.article__available{
  font-size: 14px!important;
  padding-top: 10px !important;
  /*text-align: center !important;*/
}

.article__available img{
  max-width: 16px;
  margin-right: 5px;
  vertical-align: text-top;
}

.article__available a{
  color: #bb0809;
}

.article__title {
  text-align: left;
}

.article p {
  font-size: 15px;
  line-height: 25px;
}

.article p+p {
  padding-top: 25px;
}

.article p+blockquote {
  margin-top: 25px;
}

.article h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
  margin-top: 30px;
}

.article h2 {
  font-size: 21px;
  font-weight: 700;
  margin-bottom: 10px;
  margin-top: 20px;
}

.article blockquote {
  position: relative;
  display: block;
  line-height: 25px;
  margin: 1rem auto;
  padding-left: 20px;
  padding-right: 40px;
  font-style: italic;
  border-left: 2px solid #e4e4e4;
  font-size: 15px;
}

.article_item {
  margin-top: 2rem;
}

.article_info h1 {
  font-size: 32px;
}

.article ul {
  list-style-type: none;
  margin: 14px 0;
}

.article li {
  display: block;
}

.article li::before {
  content: '\00B7';
  display: inline-block;
  margin-right: 10px;
  font-size: 3rem;
  color: #f0c709;
  vertical-align: middle;
  padding-bottom: 9px;
  line-height: .6;
}

.article table {
  width: 100%!important;
  border-spacing: 0;
  border-top: 1px solid #303030;
}

.article table thead h3 {
  display: block;
  margin: 5px auto;
  text-align: center;
}

.article table td,
.article table th {
  line-height: 30px;
  font-size: 15px;
}

.article table th,
.article table thead tr {
  background: #f0c709;
  color: #fff;
  font-weight: 400;
  border: 1px solid #f0c709;
  border-right: 1px solid #c4c3c3;
}

.article table th:last-child,
.article table thead tr:last-child {
  border-right: none;
}

.article table tbody {
  border: 1px solid #e4e4e4;
}

.article table tbody tr:nth-child(odd) td {
  background: #f6f6f6;
}

.article table tbody td {
  padding: 0 20px;
  border-right: 1px solid #e4e4e4;
  border-bottom: 1px solid #e4e4e4;
  border-top: none;
}

.article table tbody td:first-child {
  border-left: 1px solid #e4e4e4;
}

.cols {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}

.cols__col {
  display: inline-block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-left: 15px;
  margin-right: 15px;
  word-wrap: break-word;
}

.cols_three .cols__col {
  width: -webkit-calc(33.333333333333336% - 30px);
  width: calc(33.333333333333336% - 30px);
}

.cols_two .cols__col {
  width: -webkit-calc(50% - 30px);
  width: calc(50% - 30px);
}

.footer {
  margin-top: 30px;
  background: #f6f6f6;
}

.footer__top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
  padding: 20px 0 40px;
}

.footer__bottom {
  background: #f0c709;
  color: #fff;
}

.footer__body {
  max-width: 1080px;
  padding-left: 30px;
  padding-right: 30px;
  margin: 0 auto;
}

.footer__copyright {
  line-height: 72px;
}

.footer__title {
  display: block;
  font-size: 18px;
  color: #f0c709;
  padding-bottom: 14px;
  padding-top: 5px;
  font-weight: 700;
  border-bottom: 1px solid #e4e4e4;
}

.footer__col {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-left: 15px;
  margin-right: 15px;
  word-wrap: break-word;
  width: -webkit-calc(25% - 30px);
  width: calc(25% - 30px);
}

.footer__col_form .footer__title {
  font-size: 24px;
  border-bottom: 0;
  padding-top: 0;
  padding-bottom: 10px;
}

.footer__col_form p {
  font-size: 12px;
  margin-top: 10px;
}

.footer ul {
  list-style-type: none;
  padding: 0;
}

.footer li {
  display: block;
  width: 100%;
  margin: 12px auto;
}

.footer a {
  color: #303030;
}

.footer_mapped {
  position: relative;
  padding-left: 18px;
}

.footer_mapped i {
  position: absolute;
  top: 4px;
  left: 0;
}

.gotop {
  line-height: 72px;
  float: right;
  color: #fff;
  position: relative;
  display: block;
  padding-right: 60px;
}

.gotop:hover i {
  border-color: rgba(255,255,255,.6);
}

form input,
form textarea {
  width: 100%;
  min-height: 30px;
  margin-bottom: 10px;
  padding-left: 10px;
  line-height: 30px;
  border: 1px solid #e4e4e4;
  color: #303030;
  outline: 0;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

form input:focus,
form textarea:focus {
  border-color: #f0c709;
}

.icon {
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-bottom: -2px;
  background-size: contain;
}

.icon_map {
  background: url(../img/icons/map.svg);
}

.icon_mail {
  background: url(../img/icons/email.svg);
}

.icon_phone {
  background: url(../img/icons/phone.svg);
}

.icon_top {
  position: absolute;
  right: 0;
  top: 14px;
  width: 43px;
  height: 43px;
  border: 2px solid #fff;
  background: url(../img/icons/arrow.svg) no-repeat center;
  background-size: 60%;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.slider {
  position: relative;
  z-index: 0;
}

.slider__body {
  width: 1366px;
  background: #303030;
  min-height: 560px;
  position: relative;
  margin: auto;
  overflow: hidden;
}

.slider__info {
  width: 360px;
  position: absolute;
  left: 130px;
  top: 70px;
  color: #fff;
  border-top: 2px solid #fff;
  border-bottom: 2px solid #fff;
  padding-bottom: 30px;
  padding-top: 10px;
  z-index: 100;
}

.slider__title {
  font-size: 32px;
  font-weight: 700;
  line-height: 4rem;
}

.slider__text {
  font-size: 16px;
}

.slider_category {
  height: 410px;
}

.slider_category .slider__body {
  min-height: 410px;
}

.slider_category img {
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -683px;
  width: 1366px;
  height: 100%;
  max-width: none;
}

.slider_category .slider__info {
  max-width: 100%;
  background: rgba(240,199,9,.6);
  padding: 50px 20px 60px;
  border: none;
}

.slider_home {
  text-shadow: 0 1px 7px rgba(0,0,0,.42);
}

.slider_item {
  height: auto;
  min-height: 470px;
  padding-bottom: 0;
  background: #e4e4e4;
}

.slider_item .slider__body {
  max-width: 1080px;
  padding-left: 30px;
  padding-right: 30px;
  margin: 0 auto;
  min-height: 400px;
  background: 0 0;
}

.slider_item .slider__info {
  display: block;
  position: relative;
  left: auto;
  right: auto;
  top: auto;
  border: none;
  padding: 0;
  margin: auto;
  text-align: center;
  width: 100%;
  color: #303030;
  padding-top: 30px;
  padding-bottom: 30px;
}

.slider_item .slider__title {
  line-height: 1.4;
}

.related__title {
  display: inline-block;
  line-height: 50px;
  background: #f0c709;
  color: #fff;
  font-weight: 700;
  font-size: 24px;
  padding: 0 60px 0 10px;
  margin-bottom: 2rem;
}

.related__slider .item {
  margin-left: 0;
  margin-right: 0;
}

.photos__item {
  max-height: 280px;
  text-align: center;
}

.photos img {
  max-height: 100%;
  width: auto!important;
  margin: auto;
}

.content__body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
  max-width: 1080px;
  padding-left: 30px;
  padding-right: 30px;
  margin: 0 auto;
  padding-top: 25px;
  margin-bottom: 40px;
  border-bottom: 1px solid #e4e4e4;
}

.content__body_product {
  border-bottom: none;
}

.sidebar {
  margin-bottom: 2rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-left: 15px;
  margin-right: 15px;
  word-wrap: break-word;
  width: -webkit-calc(25% - 30px);
  width: calc(25% - 30px);
}

.category {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-left: 15px;
  margin-right: 15px;
  word-wrap: break-word;
  width: -webkit-calc(75% - 30px);
  width: calc(75% - 30px);
  padding-bottom: 35px;
  border-left: 1px solid #e4e4e4;
  padding-left: 15px;
}

.category__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}

.category__nothing {
  text-align: left;
  padding-top: 30px;
  font-size: 28px;
  font-weight: 700;
  padding-left: 15px;
}

.category__nothing p {
  font-size: 16px;
  display: block;
  margin-top: 10px;
  font-weight: 400;
  margin-bottom: 20px;
}

.category_full {
  width: 100%;
  padding-left: 0;
  border: none;
}

.category_full .item {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-left: 15px;
  margin-right: 15px;
  word-wrap: break-word;
  width: -webkit-calc(25% - 30px);
  width: calc(25% - 30px);
}

.widget {
  position: relative;
}

.widget__title {
  position: absolute;
  display: block;
  top: 25px;
  left: 30px;
  max-width: 150px;
  color: #f0c709;
}

.menu {
  width: 100%;
  position: relative;
  margin-top: -15px;
  margin-bottom: 2rem;
}

.menu ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.menu__list>li>a {
  font-size: 20px;
  font-weight: 700;
  line-height: 56px;
  color: #303030;
}

.menu__list>li>ul>li>a {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: #303030;
  padding-left: 10px;
  line-height: 1.4;
  margin-bottom: 10px;
}

.menu__list>li>ul>li>ul a {
  display: block;
  font-size: 14px;
  padding-left: 10px;
  margin-bottom: 5px;
  line-height: 24px;
  font-weight: 400;
}

.menu__list>li>ul>li.active a {
  color: #f0c709;
}

.menu__list>li>ul>li.active a::after {
  background: url(../img/icons/next_red.svg) center no-repeat;
  background-size: contain;
}

.menu__parent>ul {
  display: none;
}

.menu__parent>a::after {
  content: '';
  display: inline-block;
  margin-left: 5px;
  width: 14px;
  height: 10px;
  background: url(../img/icons/next.svg) center no-repeat;
  opacity: .5;
  background-size: contain;
}

.menu__parent.active {
  margin-bottom: 10px;
}

.menu__parent.active>ul {
  display: block;
}

.menu__parent.active>a::after {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.menu__parent_last>a {
  color: #5e5d5d!important;
}

.menu__parent_last a {
  color: #5e5d5d!important;
}

.menu__parent_last.active>a {
  color: #f0c709!important;
}

.menu__parent_last.active .active a {
  color: #f0c709!important;
}

.filter {
  position: relative;
  padding-bottom: 20px;
}

.filter .button {
  position: absolute;
  bottom: 10px;
  left: 0;
}

.filter .box-filter {
  width: 100%;
  margin-bottom: 25px;
  font-size: 14px;
}

.filter .box-filter>li {
  width: 70%;
  display: inline-block;
}

.filter .box-filter>li>span {
  display: block;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.filter .box-filter>li+li {
  border-left: 1px solid #e4e4e4;
  padding-left: 20px;
  width: 30%;
}

.filter label {
  width: 160px;
  padding: 10px 0;
  min-height: 20px;
  display: inline-block;
  line-height: 20px;
  cursor: pointer;
}

.filter label::before {
  content: '';
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-right: 6px;
  border: 1px solid #e4e4e4;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.filter label:hover::before {
  background: #fffef9;
  outline: 1px solid #e4e4e4;
  border: 2px solid #fff;
}

.filter input {
  display: none;
}

.filter ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
  list-style-type: none;
  margin: auto;
}

.filter input[type=checkbox]:checked+label::before {
  background: #f0c709;
  outline: 1px solid #e4e4e4;
  border: 2px solid #fff;
}

.breadcrumb {
  width: 100%;
  padding: 10px 0;
  border-top: 1px solid #e4e4e4;
  border-bottom: 1px solid #e4e4e4;
  color: #5e5d5d;
}

.breadcrumb a {
  color: #5e5d5d;
}

.breadcrumb a:last-child {
  color: #f0c709;
}

.breadcrumb_margin {
  margin-bottom: 20px;
}

.item {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-left: 15px;
  margin-right: 15px;
  word-wrap: break-word;
  width: -webkit-calc(33.333333333333336% - 30px);
  width: calc(33.333333333333336% - 30px);
  display: block;
  margin-top: 40px;
  text-align: center;
  color: #5e5d5d;
}

.item::after {
  display: block;
  content: "";
  clear: both;
}

.item_slider {
  width: 100%;
}

.item__title {
  display: block;
  min-height: 70px;
  margin: 20px auto 12px;
  font-size: 18px;
  font-weight: 700;
}

.item__info {
  color: #5e5d5d;
  font-size: 14px;
}

.item .button {
  margin-top: 15px;
}

.item:hover {
  cursor: pointer;
  text-decoration: none;
}

.item:hover .item__title {
  text-decoration: underline;
}

.pagination {
  margin-top: 2rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}

.pagination .links,
.pagination .results {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-left: 15px;
  margin-right: 15px;
  word-wrap: break-word;
  width: -webkit-calc(50% - 30px);
  width: calc(50% - 30px);
}

.pagination .results {
  text-align: right;
}

.pagination a,
.pagination b {
  display: inline-block;
  float: left;
  width: 24px;
  height: 24px;
  text-align: center;
  line-height: 22px;
  border: 1px solid #e4e4e4;
  color: #5e5d5d;
  border-right: none;
}

.pagination a:last-child {
  border-right: 1px solid #e4e4e4;
}

.pagination a:hover {
  background: #f0c709;
  text-decoration: none;
  color: #fff;
  cursor: pointer;
  border-color: #f0c709;
}

.pagination b {
  background: #f0c709;
  color: #fff;
  border-color: #f0c709;
}

.product {
  width: 100%;
}

.product__preview {
  margin-bottom: 30px;
  text-align: center;
}

.product__preview .button {
  min-width: 200px;
  font-size: 18px;
}

.checkboxes {
  margin-bottom: 20px;
  text-align: center;
}

.checkboxes__item {
  display: inline-block;
  margin: 5px 10px;
  font-size: 14px;
  line-height: 16px;
}

.checkboxes__item::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url(../img/icons/checked.svg) no-repeat center;
  background-size: contain;
  vertical-align: top;
  margin-right: 5px;
}

.popup {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,.4);
  z-index: 100;
}

.popup__form {
  width: 100%;
  max-width: 344px;
  background: #fff;
  padding: 30px 20px;
  border: 1px solid #ddd;
  margin: 0 auto;
  position: fixed;
  text-align: center;
  top: 50%;
  left: 0;
  right: 0;
  color: #5e5d5d;
  font-size: 14px;
  -webkit-transform: translate3D(0,-50%,0);
  -ms-transform: translate3D(0,-50%,0);
  transform: translate3D(0,-50%,0);
  z-index: 99999;
}

.popup__title {
  font-size: 18px;
  font-weight: 700;
  color: #f0c709;
  display: block;
  margin-bottom: 10px;
}

.popup__policy {
  font-size: 12px;
  display: block;
  margin-top: 10px;
}

.popup .button {
  font-size: 1rem;
  margin-top: 10px;
  padding: 10px;
}

.popup p+input {
  margin-top: 10px;
}

.popup__close {
  position: absolute;
  top: 5px;
  right: 10px;
  display: block;
  width: 20px;
  height: 20px;
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
}

.popup__close::after,
.popup__close::before {
  content: '';
  display: block;
  width: 14px;
  height: 4px;
  background: #5e5d5d;
  position: absolute;
  top: 50%;
  left: 50%;
}

.popup__close::after {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.popup__close::before {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.popup__close:hover {
  opacity: .8;
}

.owl-carousel .owl-nav .owl-next {
  background: url(/theme/img/icons/next_item.png) no-repeat center;
  width: 15px;
  height: 27px;
  font-size: 0;
  color: transparent;
  border: none;
  margin: auto;
  padding: 0;
  position: absolute;
  top: 50%;
  right: -25px;
  cursor: pointer;
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
  -webkit-transform: translate3d(0,-50%,0);
  transform: translate3d(0,-50%,0);
}

.owl-carousel .owl-nav .owl-next:hover {
  opacity: .8;
  background: url(/theme/img/icons/next_item.png) no-repeat center;
}

.owl-carousel .owl-nav .owl-prev {
  background: url(/theme/img/icons/next_item.png) no-repeat center;
  width: 15px;
  height: 27px;
  font-size: 0;
  color: transparent;
  border: none;
  margin: auto;
  padding: 0;
  position: absolute;
  top: 50%;
  left: -20px;
  cursor: pointer;
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
  -webkit-transform: translate3d(0,-50%,0) rotate(180deg);
  transform: translate3d(0,-50%,0) rotate(180deg);
}

.owl-carousel .owl-nav .owl-prev:hover {
  opacity: .8;
  background: url(/theme/img/icons/next_item.png) no-repeat center;
}

.get-callback {
  width: 100%;
  max-width: 500px;
  margin: auto;
  background: #f6f6f6;
  padding: 20px;
}

.get-callback p {
  margin: 0;
  padding: 0;
}

.get-callback p+p {
  padding-top: 5px;
}

.get-callback form+p {
  font-size: 12px;
  color: #5e5d5d;
  margin: 15px 0;
}

.get-callback .button {
  margin-top: 15px;
}

.button {
  display: inline-block;
  background: #f0c709;
  color: #fff;
  padding: 6px 10px;
  -webkit-border-radius: 0;
  border-radius: 0;
  border: none;
  cursor: pointer;
  -webkit-transition: background-color .2s ease;
  transition: background-color .2s ease;
}

.button_full {
  width: 100%;
  text-align: center;
}

.button_big {
  font-size: 15px;
  line-height: 30px;
}

.button:hover {
  background-color: #d7b308;
  text-decoration: none;
}

.button:active,
.button:focus {
  background-color: #bf9e07;
}

.button_text {
  margin-top: 25px;
  font-size: 14px;
  line-height: 25px;
}

.button_trans {
  background: 0 0;
  border: 1px solid #f0c709;
  color: #f0c709;
}

.button_trans:hover {
  background: #f0c709;
  color: #fff;
}

.button_grey {
  background: #919090;
}

.header {
  width: 100%;
  max-width: 100%;
  padding: 0;
  background: #303030;
}

.header__body {
  max-width: 1080px;
  padding-left: 30px;
  padding-right: 30px;
  margin: 0 auto;
  padding: 0;
}

.header .button {
  font-size: 14px;
  max-width: 140px;
}

.header__info {
  width: 215px;
}

.nav {
  width: -webkit-calc(100% - 430px);
  width: calc(100% - 430px);
  margin: 0;
}

.nav__list li>a {
  color: #fff;
  text-transform: uppercase;
  font-size: 10px;
}

.nav__list li>a:hover::after {
  border-top-color: #f0c709;
}

.nav__last {
  padding-right: 0!important;
}

.logo {
  width: 196px;
  padding-top: 15px;
  margin-left: 0;
}

.logo a {
  background-image: url(../img/logotype.png);
  min-height: 55px;
  background-size: inherit;
  background-position: left center;
}

.nav__zero-level>.nav__parent>a::after {
  border-top-width: 8px;
  border-left-width: 6px;
  border-right-width: 6px;
  margin-left: -6px;
  bottom: 21px;
  -webkit-transition: border-color .2s ease-out;
  transition: border-color .2s ease-out;
}

.nav__zero-level>.nav__parent>a::before {
  content: '';
  width: 0;
  height: 0;
  border-left: 4px transparent solid;
  border-right: 4px transparent solid;
  border-top: 5px solid #303030;
  position: absolute;
  bottom: 23px;
  left: 50%;
  margin-left: -4px;
  z-index: 100;
}

.advantages__img {
  min-height: 100px;
  position: relative;
  line-height: 100px;
  margin-bottom: 10px;
}

.advantages img {
  vertical-align: middle;
}

.advantages__title {
  margin-top: 0;
}

.advantages__item:last-child .advantages__title {
  margin-top: 0;
}

.button {
  -webkit-border-radius: 5px;
  border-radius: 5px;
}

.button_big {
  -webkit-border-radius: 0;
  border-radius: 0;
  line-height: 23px;
}

.categories {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.categories__item {
  min-height: 305px;
  margin-bottom: 20px!important;
  border: none;
  background-color: rgba(232,232,232,.55);
  background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAxIDEiIHByZXNlcnZlQXNwZWN0UmF0aW89Im5vbmUiPjxsaW5lYXJHcmFkaWVudCBpZD0idnNnZyIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIHgxPSIwJSIgeTE9IjAlIiB4Mj0iMCUiIHkyPSIxMDAlIj48c3RvcCBzdG9wLWNvbG9yPSIjZThlOGU4IiBzdG9wLW9wYWNpdHk9IjAuMSIgb2Zmc2V0PSIwIi8+PHN0b3Agc3RvcC1jb2xvcj0iI2U4ZThlOCIgc3RvcC1vcGFjaXR5PSIxIiBvZmZzZXQ9IjEiLz48L2xpbmVhckdyYWRpZW50PjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxIiBoZWlnaHQ9IjEiIGZpbGw9InVybCgjdnNnZykiIC8+PC9zdmc+);
  background: -webkit-gradient(linear,0 0,0 100%,color-stop(0,rgba(232,232,232,.1)),color-stop(1,#e8e8e8));
  background: -webkit-linear-gradient(top,rgba(232,232,232,.1) 0,#e8e8e8 100%);
  background: -webkit-gradient(linear,left top,left bottom,from(rgba(232,232,232,.1)),to(#e8e8e8));
  background: linear-gradient(to bottom,rgba(232,232,232,.1) 0,#e8e8e8 100%);
  background: -ms-linear-gradient(top,rgba(232,232,232,.1) 0,#e8e8e8 100%);
}

.categories__item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,.6);
  opacity: 0;
  -webkit-transition: opacity .3s ease-out;
  transition: opacity .3s ease-out;
  z-index: 10;
}

.categories__item::after {
  content: 'Смотреть';
  position: absolute;
  top: 34%;
  width: 100%;
  max-width: 220px;
  left: 0;
  right: 0;
  margin: auto;
  background: rgba(0,0,0,.6);
  border: 2px solid #f0c709;
  font-size: 18px;
  line-height: 65px;
  opacity: 0;
  -webkit-transition: opacity .3s ease-out;
  transition: opacity .3s ease-out;
  z-index: 11;
}

.categories__item:hover .categories__title {
  background: 0 0;
  color: #fff;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: none;
}

.categories__item:hover::after,
.categories__item:hover::before {
  opacity: 1;
}

.categories__title {
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  top: 230px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 18px;
  background: 0 0;
  color: #303030;
}

.categories__title::after {
  display: none;
}

.categories__img {
  min-height: 240px;
  position: relative;
  line-height: 240px;
  max-width: 80%;
  margin: auto;
}

.categories__img img {
  vertical-align: middle;
}

.article__divider {
  text-align: left;
  font-size: 24px;
  font-weight: 700;
  color: #f0c709;
  padding-bottom: 10px;
  margin-bottom: 1.8rem;
  width: 100%;
  border-bottom: 1px solid #e4e4e4;
  line-height: 28px;
}

.article h1 {
  text-align: left;
  font-size: 30px;
  font-weight: 400;
}

.article h2 {
  font-size: 20px;
  margin-bottom: 1.6rem;
}

.article p {
  font-size: 1rem;
  line-height: 1.6;
  text-align: justify;
}

.nav__list,
.nav__list>li {
  height: 100%;
}

.nav__list li>a+ul {
  top: 91px;
  background: #303030;
  border-top: 1px solid #f0c709;
}

.nav__list li>a+ul li>a {
  text-transform: none;
  font-size: 13px;
}

.nav__list li>a+ul li>a:hover {
  background: #303030;
}

.search {
  width: 40px;
  height: 40px;
  margin-top: 10px;
}

.search__icon {
  padding-top: 6px;
}

.search__window {
  top: 39px;
}

.header__contact {
  width: -webkit-calc(100% - 40px);
  width: calc(100% - 40px);
  padding-left: 10px;
}

.footer {
  background: #303030;
  color: #fff;
}

.footer a {
  color: #fff;
}

.footer li {
  font-size: 15px;
}

.footer__bottom {
  background: #303030;
  -webkit-box-shadow: -2px 0 10px 5px rgba(0,0,0,.12);
  box-shadow: -2px 0 10px 5px rgba(0,0,0,.12);
}

.footer .red a {
  color: #f0c709;
}

.footer__title {
  border-bottom: 1px solid #e4e4e4a3;
}

.icon_yellow {
  background: url(../img/icons/email_yellow.svg);
}

.call_me_form p {
  opacity: .8;
}

.header__contact .bold {
  background-image: url(../img/phone.png);
  background-position: center;
  margin: 3px auto;
}

.slider {
  height: 460px;
  background: url(../img/home__slider/bg.jpg) no-repeat center top/cover;
}

.slider__type {
  line-height: 460px;
}

.slider__type img {
  max-height: 380px;
  width: auto;
  vertical-align: middle;
  max-width: 50%;
  top: auto;
  left: auto;
  margin: auto;
  height: auto;
  position: relative;
}

.slider__body {
  background: 0 0;
  width: 100%;
  max-width: 1080px;
  padding-left: 30px;
  padding-right: 30px;
  margin: 0 auto;
}

.slider__info {
  width: 100%;
  top: 90px;
  max-width: 460px;
  left: auto;
  right: 30px;
  border: none;
  padding: 0;
  text-align: right;
}

.slider__title {
  font-size: 33px;
}

.slider__text {
  color: #111;
  font-size: 20px;
}

.slider__jac {
  display: block;
  margin-top: 2rem;
  font-size: 82px;
  color: #fff;
  font-weight: 700;
}

.search__icon {
  background: #303030;
  color: #fff;
}

.search:hover .search__icon {
  background: #313131;
}

.mobile-trigger span {
  background: #fff;
}

.header__body {
  padding: 0 30px;
}

.filter {
  padding-bottom: 0;
}

.filter label::before {
  border-color: #303030;
  vertical-align: middle;
}

.breadcrumb,
.breadcrumb a {
  color: #cecece;
  font-size: 14px;
}

.slider_category+.content .content__body {
  border-bottom: 0;
}

.category {
  border-left: 0;
  padding-left: 20px;
  border-bottom: 1px solid #e4e4e4;
}

.category__list {
  padding: 0 7.5px;
}

.header__info {
  width: 188px;
}

.item {
  width: -webkit-calc(33.33333% - 15px);
  width: calc(33.33333% - 15px);
  margin: 15px 7.5px 0;
}

.item_slider {
  width: 100%!important;
}

.item__body {
  display: block;
  padding: 30px 10px 15px;
  border: 1px solid #e4e4e4;
  border-bottom: 0;
}

.item__body::after {
  display: block;
  content: "";
  clear: both;
}

.item .button {
  -webkit-border-radius: 0;
  border-radius: 0;
  margin: 0;
  background: #303030;
}

.item .button:hover {
  background: #f0c709;
}

.item__title {
  font-size: 15px;
  font-weight: 400;
  color: #111;
  min-height: 40px;
}

.related .owl-item {
  opacity: 0;
  -webkit-transition: opacity .2s ease;
  transition: opacity .2s ease;
}

.related .owl-item.active {
  opacity: 1;
}

.owl-carousel .owl-stage-outer {
  margin-right: -15px;
}

.slider_category .slider__info {
  padding: 0;
  margin-top: 30px;
  background: 0 0;
  max-width: 460px;
}

.slider_category .slider__body {
  min-height: 460px;
}

.slider_category .slider__title {
  text-transform: uppercase;
  line-height: 1.4;
}

.slider_category .slider__text {
  font-size: 20px;
  color: #fff;
  opacity: .8;
}

.filter .box-filter {
  min-height: 125px;
}

.sidebar {
  width: -webkit-calc(25% + 16px);
  width: calc(25% + 16px);
  margin: 0;
  margin-right: -16px;
  margin-top: -25px;
}

.sidebar .menu {
  margin-top: 0;
}

.sidebar__body {
  height: -webkit-calc(100% - 72px);
  height: calc(100% - 72px);
  padding: 0 10px;
  padding-bottom: 6px;
  border-left: 1px solid #e4e4e4;
  border-right: 1px solid #e4e4e4;
  border-bottom: 1px solid #e4e4e4;
}

.sidebar__title {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  background: #303030;
  display: block;
  padding: 20px 30px;
}

.menu__list>.menu__parent {
  border-bottom: 1px solid #e4e4e4;
  margin-bottom: 0;
}

.menu__list>.menu__parent>a {
  font-size: 18px;
  display: block;
  position: relative;
}

.menu__list>.menu__parent>a::before {
  content: '';
  display: inline-block;
  margin-right: 10px;
  margin-left: 10px;
  width: 9px;
  height: 12px;
  background: url(../img/icons/triangle.png) no-repeat center center;
  vertical-align: middle;
}

.menu__list>.menu__parent>a::after {
  display: none;
}

.menu__list>.menu__parent.active>a {
  color: #f0c709;
}

.menu__list>li>ul>li li a {
  margin-left: 18px;
  font-size: 14px;
  color: #606060!important;
}

.menu__list>li>ul>li li.active a {
  color: #f0c709!important;
}

.menu__list>li>ul>li>a {
  font-size: 15px;
  color: #303030;
}

.menu__list>li>ul>li>a::after {
  display: none;
}

.menu__list>li>ul>li>a::before {
  content: '—';
  display: inline-block;
  margin-right: 7px;
}

.menu__list>li>ul>li.active>a {
  color: #303030;
  text-decoration: underline;
}

.breadcrumbs_product {
  border-top: 1px solid #e4e4e4;
  border-bottom: 1px solid #e4e4e4;
  padding: 10px 0;
  margin-bottom: 10px;
}

.product table {
  margin-top: 16px;
  max-width: 1020px;
}

.article {
  max-width: 100%;
}

.article table th,
.article table thead tr {
  background: #303030;
  border-color: #303030;
  border-top-color: #fff;
}

.article table th:first-child {
  border-right-color: #fff;
}

.article table tbody {
  border-color: #303030;
}

.button_full+.button_full {
  margin-top: 15px;
}

.button_trans.button_black {
  color: #303030;
  border-color: #303030;
}

.product__info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
  margin-top: 40px;
  margin-bottom: 30px;
}

.product__info .button {
  -webkit-border-radius: 0;
  border-radius: 0;
  padding-top: 10px;
  padding-bottom: 10px;
}

.product__block {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-left: 15px;
  margin-right: 15px;
  word-wrap: break-word;
  width: -webkit-calc(58.333333333333336% - 30px);
  width: calc(58.333333333333336% - 30px);
  padding: 0 20px 0 0;
}

.product__block:nth-child(even) {
  width: -webkit-calc(41.66666666666667% - 30px);
  width: calc(41.66666666666667% - 30px);
  padding: 0;
}

.product__photo_hidden {
  display: none;
}

.gallery {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
  margin-bottom: 40px;
}

.gallery__item {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-left: 15px;
  margin-right: 15px;
  word-wrap: break-word;
  width: -webkit-calc(33.333333333333336% - 30px);
  width: calc(33.333333333333336% - 30px);
  margin-bottom: 18px;
  opacity: .8;
  cursor: pointer;
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
}

.gallery__item:hover,
.gallery__item_active {
  opacity: 1;
}

.article table,
.article table tbody td,
.article table tbody td:first-child {
  border-color: #303030;
}

.article table td,
.article table th {
  line-height: 50px;
}

.card {
  display: none;
}

.contact-table,
.contact-table td,
.contact-table tr {
  border-color: #e4e4e4!important;
}

@media only screen and (min-width:992px) {
  .nav__close,
  .nav__hider {
    display: none;
  }
}

@media (min-width:998px) {
  .categories__item:nth-child(3n+1) {
    margin-left: 0;
    margin-right: 20px;
  }

  .categories__item:nth-child(3n+3) {
    margin-right: 0;
    margin-left: 20px;
  }
}

@media only screen and (max-width:1200px) {
  .slider .car {
    right: 240px;
  }

  .sa_arra {
    margin-left: -200px;
  }

  .sa_arrb {
    margin-left: -70px;
  }

  .slider .box,
  .slider .box2 {
    margin-left: -250px;
  }

  .slider_item .slider__body {
    width: auto;
  }
}

@media (max-width:1199px) {
  .header {
    padding-left: 30px;
    padding-right: 30px;
  }

  .section__body {
    padding-left: 30px;
    padding-right: 30px;
  }

  .footer__body {
    padding-left: 30px;
    padding-right: 30px;
  }

  .slider_item .slider__body {
    padding-left: 30px;
    padding-right: 30px;
  }

  .content__body {
    padding-left: 30px;
    padding-right: 30px;
  }

  .header__body {
    padding-left: 30px;
    padding-right: 30px;
  }

  .slider__body {
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media only screen and (max-width:1140px) {
  .search {
    display: none;
  }

  .header__info {
    width: 140px;
    margin: 0;
  }

  .header__contact {
    width: 100%;
    padding: 0;
  }

  .nav {
    width: -webkit-calc(100% - 370px);
    width: calc(100% - 370px);
  }
}

@media only screen and (max-width:992px) {
  .move-out-0 {
    -webkit-transform: translate3d(-100%,0,0);
    transform: translate3d(-100%,0,0);
  }

  .move-out-1 {
    -webkit-transform: translate3d(-200%,0,0);
    transform: translate3d(-200%,0,0);
  }

  .move-out-2 {
    -webkit-transform: translate3d(-300%,0,0);
    transform: translate3d(-300%,0,0);
  }

  .move-out-3 {
    -webkit-transform: translate3d(-400%,0,0);
    transform: translate3d(-400%,0,0);
  }

  .header__contact .button {
    line-height: 1.4;
    padding: 5px 10px;
  }

  .mobile-trigger {
    display: block;
  }

  .nav {
    width: 100%;
    position: absolute;
    margin: auto;
    top: 80px;
    left: 100%;
    padding: 51px 0 25px;
    background: #f6f6f6;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    z-index: 1000;
  }

  .nav_visible {
    -webkit-transform: translate3D(-100%,0,0);
    -ms-transform: translate3D(-100%,0,0);
    transform: translate3D(-100%,0,0);
  }

  .nav__zero-level {
    left: 100%!important;
  }

  .nav__first-level {
    left: 100%!important;
  }

  .nav__second-level {
    left: 200%!important;
  }

  .nav__third-level {
    left: 300%!important;
  }

  .nav__list {
    width: 100%;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
  }

  .nav ul {
    background: #f6f6f6;
  }

  .nav li {
    display: block;
    width: 100%;
    position: initial;
    padding: 0 15px!important;
  }

  .nav li>a {
    display: block;
    line-height: 1.4;
    padding: 15px!important;
    text-align: left;
    border-top: 1px solid #e4e4e4;
    color: #303030!important;
  }

  .nav li:last-child a {
    border-bottom: 1px solid #e4e4e4;
  }

  .nav li.nav__parent>ul {
    display: none;
  }

  .nav li.nav__parent_active>ul {
    display: block;
  }

  .nav__parent::after {
    content: '';
    display: inline-block;
    margin-top: -33px;
    width: 10px;
    height: 20px;
    float: right;
    background: url(http://zeta.sergwd.com/arrow_right.svg) top left/500%;
  }

  .nav__list li>a+ul {
    width: 100%;
    padding: 0;
    position: absolute;
    top: 0;
    margin: 0;
    background: #f6f6f6;
    opacity: 1!important;
    max-height: 1000000px;
  }

  .nav__second-level {
    display: none!important;
  }

  .nav__first-level .nav__parent::after {
    display: none;
  }

  .categories__item {
    width: -webkit-calc(50% - 5px);
    width: calc(50% - 5px);
    margin-right: 0;
    margin-left: 0;
  }

  .categories__item:nth-child(odd) {
    margin-right: 10px;
  }

  .cols_three .cols__col:last-child {
    width: 100%;
  }

  .footer__col {
    margin-bottom: 1.4rem;
  }

  .footer__copyright,
  a.gotop {
    font-size: 14px;
  }

  .advantages__item {
    width: -webkit-calc(100% / 5 - 10px);
    width: calc(100% / 5 - 10px);
    margin-bottom: 10px;
  }

  .search {
    display: none;
  }

  .header__contact {
    width: 100%;
    padding-left: 0;
    padding-right: 40px;
  }

  .header__contact .button {
    max-width: 200px;
  }

  .nav__zero-level>.nav__parent>a::after {
    display: none;
  }
}

@media (max-width:991px) {
  .header {
    padding-left: 15px;
    padding-right: 15px;
  }

  .header__info {
    width: -webkit-calc(33.333333333333336% - 30px);
    width: calc(33.333333333333336% - 30px);
  }

  .header__info {
    margin-left: -webkit-calc(50% + 15px);
    margin-left: calc(50% + 15px);
  }

  .section__body {
    padding-left: 15px;
    padding-right: 15px;
  }

  .cols_three .cols__col {
    width: -webkit-calc(50% - 30px);
    width: calc(50% - 30px);
  }

  .cols_two .cols__col {
    width: -webkit-calc(100% - 30px);
    width: calc(100% - 30px);
  }

  .footer__body {
    padding-left: 15px;
    padding-right: 15px;
  }

  .footer__col {
    width: -webkit-calc(33.333333333333336% - 30px);
    width: calc(33.333333333333336% - 30px);
  }

  .slider_item .slider__body {
    padding-left: 15px;
    padding-right: 15px;
  }

  .content__body {
    padding-left: 15px;
    padding-right: 15px;
  }

  .sidebar {
    width: -webkit-calc(33.333333333333336% - 30px);
    width: calc(33.333333333333336% - 30px);
  }

  .category {
    width: -webkit-calc(66.66666666666667% - 30px);
    width: calc(66.66666666666667% - 30px);
  }

  .category_full .item {
    width: -webkit-calc(33.333333333333336% - 30px);
    width: calc(33.333333333333336% - 30px);
  }

  .item {
    width: -webkit-calc(50% - 30px);
    width: calc(50% - 30px);
  }

  .header__body {
    padding-left: 15px;
    padding-right: 15px;
  }

  .logo {
    width: -webkit-calc(33.333333333333336% - 30px);
    width: calc(33.333333333333336% - 30px);
  }

  .slider__body {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media only screen and (max-width:991px) {
  .header__info {
    margin-left: 0;
  }
}

@media only screen and (max-width:768px) {
  .categories__title {
    font-size: 1.2rem;
  }

  .vantage__item{
    width: 50%;
  }

  .advantages__item {
    width: -webkit-calc(100% / 3 - 10px);
    width: calc(100% / 3 - 10px);
  }

  .slider__info {
    left: 20px;
  }

  .slider .car {
    left: 50px;
    right: auto;
  }

  .sa_arrb {
    margin-left: -420px;
  }

  .sa_arra {
    margin-left: -550px;
  }

  .slider .box,
  .slider .box2 {
    margin-left: -600px;
  }

  .sidebar {
    display: none;
  }

  .category {
    border: none;
    padding: 0;
  }

  .filter .box-filter>li {
    width: 50%;
  }

  .filter .box-filter>li+li {
    width: 50%;
  }

  .product__preview .button {
    margin-bottom: 5px;
  }

  .gallery {
    margin-top: 30px;
  }

  .slider__type {
    display: none;
  }

  .slider__info {
    width: 100%;
    max-width: 100%;
    text-align: center;
    right: 0;
    left: 0;
  }

  .nav__list li>a {
    font-size: 14px;
    text-transform: none;
  }

  .nav__zero-level>.nav__parent>a::before {
    display: none;
  }

  .logo {
    background-size: contain;
  }
}

@media (max-width:767px) {
  .header {
    padding-left: 15px;
    padding-right: 15px;
  }

  .header__info {
    width: -webkit-calc(50% - 30px);
    width: calc(50% - 30px);
  }

  .header__info {
    margin-left: -webkit-calc(16.66667% + 15px);
    margin-left: calc(16.66667% + 15px);
  }

  .logo {
    width: -webkit-calc(33.333333333333336% - 30px);
    width: calc(33.333333333333336% - 30px);
  }

  .section__body {
    padding-left: 15px;
    padding-right: 15px;
  }

  .cols_three .cols__col {
    width: -webkit-calc(100% - 30px);
    width: calc(100% - 30px);
  }

  .footer__body {
    padding-left: 15px;
    padding-right: 15px;
  }

  .footer__col {
    width: -webkit-calc(50% - 30px);
    width: calc(50% - 30px);
  }

  .slider_item .slider__body {
    padding-left: 15px;
    padding-right: 15px;
  }

  .content__body {
    padding-left: 15px;
    padding-right: 15px;
  }

  .sidebar {
    width: -webkit-calc(100% - 30px);
    width: calc(100% - 30px);
  }

  .category {
    width: -webkit-calc(100% - 30px);
    width: calc(100% - 30px);
  }

  .category_full .item {
    width: -webkit-calc(50% - 30px);
    width: calc(50% - 30px);
  }

  .header__body {
    padding-left: 15px;
    padding-right: 15px;
  }

  .slider__body {
    padding-left: 15px;
    padding-right: 15px;
  }

  .product__block {
    width: -webkit-calc(100% - 30px);
    width: calc(100% - 30px);
  }

  .product__block:nth-child(even) {
    width: -webkit-calc(100% - 30px);
    width: calc(100% - 30px);
  }

  .gallery__item {
    width: -webkit-calc(25% - 30px);
    width: calc(25% - 30px);
  }
}

@media (max-width:559px) {
  .header {
    padding-left: 15px;
    padding-right: 15px;
  }

  .header__info {
    width: -webkit-calc(58.333333333333336% - 30px);
    width: calc(58.333333333333336% - 30px);
  }

  .header__info {
    margin-left: -webkit-calc(0% + 15px);
    margin-left: calc(0% + 15px);
  }

  .logo {
    width: -webkit-calc(41.66666666666667% - 30px);
    width: calc(41.66666666666667% - 30px);
  }

  .section__body {
    padding-left: 15px;
    padding-right: 15px;
  }

  .footer__body {
    padding-left: 15px;
    padding-right: 15px;
  }

  .footer__col {
    width: -webkit-calc(100% - 30px);
    width: calc(100% - 30px);
  }

  .slider_item .slider__body {
    padding-left: 15px;
    padding-right: 15px;
  }

  .content__body {
    padding-left: 15px;
    padding-right: 15px;
  }

  .category_full .item {
    width: -webkit-calc(100% - 30px);
    width: calc(100% - 30px);
  }

  .item {
    width: -webkit-calc(100% - 30px);
    width: calc(100% - 30px);
  }

  .header__body {
    padding-left: 15px;
    padding-right: 15px;
  }

  .slider__body {
    padding-left: 15px;
    padding-right: 15px;
  }

  .gallery__item {
    width: -webkit-calc(33.333333333333336% - 30px);
    width: calc(33.333333333333336% - 30px);
  }
}

@media only screen and (max-width:480px) {
  .vantage__item{
    width: 100%;
    padding: 0;
  }
  .slider_home {
    text-shadow: none;
  }

  .categories__item,
  .categories__item:nth-child(odd) {
    width: 100%;
    margin: 0 0 10px 0;
  }

  a.gotop {
    font-size: 0;
    position: absolute;
    top: 5px;
    right: 15px;
  }

  .footer__bottom {
    position: relative;
    padding: 20px 0;
  }

  .advantages__item {
    width: -webkit-calc(100% / 2 - 10px);
    width: calc(100% / 2 - 10px);
  }

  .header__contact .button {
    font-size: .8rem;
    padding: 6px 0;
  }

  .header__contact .bold {
    font-size: .9rem;
  }

  .slider {
    height: auto;
    padding-bottom: 0;
  }

  .slider__info {
    width: 100%;
    position: relative;
    left: auto;
    top: auto;
    text-align: center;
    padding: 24px 20px 40px;
    color: #303030;
  }

  .slider img {
    display: none;
  }

  .slider__body,
  .slider_category,
  .slider_category .slider__body,
  .slider_category .slider__info {
    width: 100%;
    background: #f9f9f9;
    min-height: 1px;
    max-height: 10000%;
  }

  .slider__title {
    font-size: 32px;
  }

  .slider__text {
    font-size: 1rem;
  }

  .filter .box-filter>li {
    width: 100%;
  }

  .filter .box-filter>li+li {
    width: 100%;
    margin-top: 1rem;
    border: none;
    padding: 0;
  }

  .footer .gotop {
    width: 100%;
    float: none;
    text-align: right;
  }

  .footer__copyright,
  a.gotop {
    line-height: 1.4;
    display: block;
    width: 100%;
    text-align: center;
  }

  .slider__body,
  .slider_category,
  .slider_category .slider__body,
  .slider_category .slider__info {
    background: 0 0;
  }

  .slider__title {
    line-height: 1.4;
    font-size: 2.4rem;
    color: #fff;
  }

  .slider img {
    display: block;
    max-width: 80%;
    margin: auto;
  }

  .slider_category .slider__text,
  .slider_category .slider__title {
    color: #303030;
  }
}

@media only screen and (max-width:320px) {
  .advantages__item {
    width: -webkit-calc(100% / 1 - 10px);
    width: calc(100% / 1 - 10px);
  }
}