/*--------- Preload ---------*/
:root {
  --main-red-color: #f24e5e;
  --dark-red-color: #b53a46;
  --base-transition: 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

*{
  padding:0;
  margin: 0;
}
.loader{
  height: 100vh;
  width: 100%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  pointer-events:none;
  z-index:2;
}


.brand span{
  display: block;
  float: left;
  margin: .5rem;
  opacity:1;
  transform-origin: center;
  animation: move 1s linear infinite;
  animation-direction: alternate;
}
@keyframes move{
  0%{
    transform: scale(0);
    opacity:0;
  }
  50%{
    transform: scale(1.1);
    opacity:1;
  }
  100%{
    transform: scale(1);
    opacity:1;
  }
}


.is-loaded{
  opacity:0;
}


/*-------------- Table ----------------*/

table {
  font: 14px 'Montserrat', sans-serif;
  color: #6d6e70;
  border: 1px solid #e2e2e2;
  border-radius: 25px;
  border-collapse: collapse; /* Отображать только одинарные линии */
}

th { 
  text-align: center;
  background: #e2e2e2;
  font-weight: 600;
  padding: 5px; /* Поля вокруг содержимого ячеек */
  border: 1px solid var(--main-red-color); /* Граница вокруг ячеек */
}
td { 
  padding: 5px; /* Поля вокруг содержимого ячеек */
  border: 1px solid var(--main-red-color); /* Граница вокруг ячеек */
}




/*--------- Back to top button ---------*/

.cd-top {
  display: inline-block;
  height: 40px;
  width: 40px;
  position: fixed;
  bottom: 40px;
  right: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  /* image replacement properties */
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  background: rgba(232, 98, 86, 0.8) url(../images/cd-top-arrow.svg) no-repeat center 50%;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity .3s 0s, visibility 0s .3s;
  -moz-transition: opacity .3s 0s, visibility 0s .3s;
  transition: opacity .3s 0s, visibility 0s .3s;
}
.cd-top.cd-is-visible, .cd-top.cd-fade-out, .no-touch .cd-top:hover {
  -webkit-transition: opacity .3s 0s, visibility 0s 0s;
  -moz-transition: opacity .3s 0s, visibility 0s 0s;
  transition: opacity .3s 0s, visibility 0s 0s;
}
.cd-top.cd-is-visible {
  /* the button becomes visible */
  visibility: visible;
  opacity: 1;
  z-index: 1;
  background-color: var(--main-red-color);
}
.cd-top.cd-fade-out {
  /* if the user keeps scrolling down, the button is out of focus and becomes less visible */
  opacity: .5;
}
.no-touch .cd-top:hover {
  background-color: var(--dark-red-color);
  opacity: 1;
}
@media only screen and (min-width: 768px) {
  .cd-top {
    right: 20px;
    bottom: 20px;
  }
}
@media only screen and (min-width: 1024px) {
  .cd-top {
    height: 50px;
    width: 50px;
    right: 30px;
    bottom: 60px;
  }
}





/*------- Мобільний додаток --------*/
.font-roboto {
  font-family: 'Arial';
}

.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
}
.modal-dialog {
  position: fixed;
  margin: 0;
  width: 100%;
  height: 100%;
  padding: 0;
}
.modal-content {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin:30px;
  padding: 20px;

  border: 2px solid var(--main-red-color);
  border-radius: 9px;
  box-shadow: none;
}
.modal-header {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 50px;
  background: var(--main-red-color);
  border: 0;
}
.modal-title {
  font-weight: 300;
  font-size: 2em;
  color: #fff;
  line-height: 30px;
}
.modal-body {
  position: absolute;
  top: 50px;
  bottom: 60px;
  width: 100%;
  font-weight: 300;
  overflow: auto;
}
.modal-footer {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 60px;
  padding: 10px;
  background: #ffffff;
}


/*Перехід до Play Market*/
.mobApp{
  width: auto;
  height: auto;
  overflow: hidden;
  text-decoration: none;
}

.mobApp:hover{
  transform: scale(1.1);
  transition: .4s;
}


.btn-close{
  background-color: var(--main-red-color);
  color: #fff;
  border: none;
}

.btn-close:hover{
transform: scale(1.1);
  box-shadow: 0 1px 1px 1px #fff;
  transition: .4s;
}

p {
  font-size: 1.4em;
  line-height: 1.5;
}
p:last-child {
  margin-bottom: 0;
}
::-webkit-scrollbar {
  -webkit-appearance: none;
  width: 5px;
  background: #e2e2e2;
  border-left: 1px solid #e2e2e2;
}
::-webkit-scrollbar-thumb {
  background: var(--main-red-color);
}






/*--------- Стили пагинации ---------*/

nav.pagination{

margin:0 auto;  

width:80%;

display:block;

float:center; 

}

nav.pagination h2.screen-reader-text{

display:none; 

}

div.nav-links{

margin:0 0 2em 0;

text-align:center;  

}

.current, a.page-numbers{

  padding:0.2em 0.5em 0.2em 0.5em;

  text-decoration:none;

  font: 1.5em 'Montserrat-Bold', sans-serif;

}

a.page-numbers,a.page-numbers:visited{

  color:#000; 

}

a.page-numbers{

-webkit-transition: all 0.8s ease;

-moz-transition: all 0.8s ease;

-ms-transition: all 0.8s ease;

-o-transition: all 0.8s ease;

transition: all 0.8s ease;

}

a.page-numbers:hover{

  background: var(--main-red-color);

  color:#FFF;

}

span.current{

  color: var(--main-red-color);

  text-shadow:0.05em 0.03em #CEDFDC

}



/*----------Категорії------------*/



.post-categories li a {

  font-family: 'Montserrat-SemiBold', sans-serif;
    font-size: 10px;
    font-variant: petite-caps;
    padding: 7px;
    width: 7%;
    color: #fff;
    border-radius: 5px;
    background-color: var(--main-red-color);
    /* border: 1px solid #fff; */

}

.post-categories li a:hover,  .post-categories li a:focus{
    background-color: var(--dark-red-color);
    transition: background-color var(--base-transition);
}



/*----------Новости------------*/

/*.news_post{
    border: 1px solid #f7f7f7;
    border-radius: 5px;
    position: relative;
    padding: 15px;
    overflow: hidden;
    box-shadow: 0px 2px 10px #cccccc;
    border-top: 2px solid #696969;
}

.class_img {
    display: block;
    width: 200px;
    height: 150px;
    float: left;
    margin-right: 14px;
    border-radius: 5px;
    box-shadow: 10px 10px 10px #ccc;
}*/


/*Діяльність*/ 
 div.news-posts {
   margin: 10px auto 100px;
   max-width: 1200px;
   text-align: center;
}
 div.post-single {
   background: #ffffff;
   display: inline-block;
   margin: 6px;
   padding: 10px;
   max-width: 300px;
   perspective: 1000;
   position: relative;
   border: 1px solid #e2e2e2;
   border-radius: 5px;
   box-shadow: 0px 20px 15px #e2e2e2;
   transition: all 0.3s 0s ease-in;
   z-index: 1;
}
 div.post-single img {
   max-width: 300px;
   padding: 50px;
}
 div.post-single div.post-single-title {
   background: #ffffff;
   text-align:center;
   position: relative;
   z-index: 0;
}
 div.post-single div.post-single-title a.toggle-info {
  font-size: 22px;
    padding: 0;
    text-align: center;
    width: 32px;
}
 div.post-single div.post-single-title a.toggle-info span {
   background: var(--main-red-color);
   display: block;
   height: 2px;
   position: absolute;
   top: 16px;
   transition: all 0.15s 0s ease-out;
   width: 12px;
}

 div.post-single div.post-single-title{
   color: #333333;
   font-size: 14px;
     font-weight: 700;
   margin: 0;
   padding: 10px;
}


div.post-single:hover{
  box-shadow: 0px 10px 5px #6d6e70;

  transition: all 0.8s;
}


 
 



/*--------- Меню основных категорий---------*/



#page2, #page3, #page4, #page5, #page6, #page7, #page8, #page9 {

    display: none;

    margin: 15px 300px;

    width: 80%;

}

#page1 {

    margin: 15px 300px;

    width: 80%;

}




.read-more{
  color: #fff;
    font-size: 10px;
    font-family: 'Montserrat-Regular';
    background-color: #6d6e70;
    font-weight: 600;
    border-radius: 4px;
    padding: 4px;
    float: right;
    margin-top: 30px;
}


.read-more:hover{
  background-color: #fff;
}

.post-categories {
  margin-bottom: 10px;
}

.post-categories li{
  margin-bottom: 5px;
}



/*---------Graphics---------*/



/* Используйте этот селектор для переопределения стиля линейного графика */

.ct-chart{

  background-color: #f1f1f1;

  border-radius: 10px;

  padding-top: 10px;



  /* Толщина линии */

  stroke-width: 12px;

}





/* Этот селектор перкрывает стиль точек линейного графика */

.ct-series-a .ct-point {

  /* Цвет точек */

  stroke: var(--main-red-color);

  /* Размер точек */

  stroke-width: 12px;

  /* Сделать точки квадратами */

  stroke-linecap: square;

}

.ct-series-b .ct-point {

  /* Цвет точек */

  stroke: DodgerBlue;

  /* Размер точек */

  stroke-width: 12px;

  /* Сделать точки квадратами */

  stroke-linecap: square;

}

.ct-series-c .ct-point {

  /* Цвет точек */

  stroke: MediumSeaGreen;

  /* Размер точек */

  stroke-width: 12px;

  /* Сделать точки квадратами */

  stroke-linecap: square;

}



.ct-series-a .ct-line {

  stroke: var(--main-red-color);

  stroke-width: 8px;

}

.ct-series .ct-line:hover {

  stroke: Slategrey;

  stroke-width: 20px;

  transition: .5s ease;

}





.ct-series-b .ct-line {

  stroke: DodgerBlue;

  stroke-width: 8px;

}

.ct-series-c .ct-line {

  stroke: MediumSeaGreen;

  stroke-width: 8px;

}



/* Custom Css for the labels */



#labels{

  padding-top:10px;

  display:block;

  height: 30px;

  width: 100%;

  border-radius:4px;

  margin-bottom: 10px;

  background-color: #F8F7F7;

  text-align:center;

}

.label-series-a{

  stroke: var(--main-red-color);

  fill: var(--main-red-color);

  stroke-width: 10px;

}



.label-series-b{

  stroke:DodgerBlue;

  fill:DodgerBlue;

  stroke-width: 10px;

}

.label-series-c{

  stroke:MediumSeaGreen;

  fill:MediumSeaGreen;

  stroke-width: 10px;

}




/*--------Background---------*/

/*.icon_bg{
  background-image: url("../images/bgl.jpg");
  background-position-y: center;
  background-repeat: repeat;
  background-size: contain;
}*/


.menu-hr{
  border-top: 2px solid var(--main-red-color) !important;
    width: 50%;
    margin-top: 10px;
}


/*--------SWUP-переходы---------*/
.trans_swup {
  transition: .4s;
  opacity: 1;
}

html.is-animating .trans_swup{
  opacity: 0;
   transform: translateY(100px);
}


/*-------Иконки социальных сетей-------*/
.mail-block-ft {
    float: right;
}

.s-but{
  display: inline-block;
  width: 35px;
  height: 40px;
  margin: 6px;
  color: var(--main-red-color);
  position: relative;
  padding-top: 15px;
}

.s-but i{
  line-height: 35px;
  font-size: 24px;
  transition: 0.2s linear;
}

.s-but:hover i{
  transform: scale(1.3);
  color: var(--dark-red-color);
}

/*.s-but::before{
  content: "";
  position: absolute;
  width: 120%;
  height: 120%;
  background: #ed164e;
  transform: rotate(45deg);
  left: -110%;
  top: 90%;
}

.s-but:hover::before{
  animation: aaa 0.7s 1;
  top: -10%;
  left: -10%;
}*/

@keyframes aaa{
  0%{
      left: -110%;
      top: 90%;
    }50%{
        left: 10%;
        top: -30%;
      }100%{
          left: -10%;
          top: -10%;
      }
}

@font-face {
    font-family: Montserrat-Regular; 
    src: url(fonts/Montserrat-Regular.ttf); 
   }

@font-face {
    font-family: Montserrat-SemiBold; 
    src: url(fonts/Montserrat-SemiBold.ttf); 
   }

@font-face {
    font-family: Montserrat-Bold; 
    src: url(fonts/Montserrat-Bold.ttf);
   }


@font-face {

  font-family: 'Lato-Black';

  src: url('fonts/Lato-Black.eot'),

  url('fonts/Lato-Black.woff') format('woff'),

  url('fonts/Lato-Black.ttf') format('truetype'),

  url('fonts/Lato-Black.svg#Lato-Black') format('svg');

  font-weight: normal;

  font-style: normal;

}

@font-face {

  font-family: 'Lato-Bold';

  src: url('fonts/Lato-Bold.eot'),

  url('fonts/Lato-Bold.woff') format('woff'),

  url('fonts/Lato-Bold.ttf') format('truetype'),

  url('fonts/Lato-Bold.svg#Lato-Bold') format('svg');

  font-weight: normal;

  font-style: normal;

}

@font-face {

  font-family: 'Lato-Semibold';

  src: url('fonts/Lato-Semibold.eot'),

  url('fonts/Lato-Semibold.woff') format('woff'),

  url('fonts/Lato-Semibold.ttf') format('truetype'),

  url('fonts/Lato-Semibold.svg#Lato-Semibold') format('svg');

  font-weight: normal;

  font-style: normal;

}

@font-face {

  font-family: 'Lato-Light';

  src: url('fonts/Lato-Light.eot'),

  url('fonts/Lato-Light.woff') format('woff'),

  url('fonts/Lato-Light.ttf') format('truetype'),

  url('fonts/Lato-Light.svg#Lato-Light') format('svg');

  font-weight: normal;

  font-style: normal;

}

@font-face {

  font-family: 'Lato-Medium';

  src: url('fonts/Lato-Medium.eot'),

  url('fonts/Lato-Medium.woff') format('woff'),

  url('fonts/Lato-Medium.ttf') format('truetype'),

  url('fonts/Lato-Medium.svg#Lato-Medium') format('svg');

  font-weight: normal;

  font-style: normal;

}

@font-face {

  font-family: 'Lato-Regular';

  src: url('fonts/Lato-Regulard41d.eot?#iefix') format('embedded-opentype'),  

  url('fonts/Lato-Regular.woff') format('woff'), 

  url('fonts/Lato-Regular.ttf')  format('truetype'), 

  url('fonts/Lato-Regular.svg#Lato-Regular') format('svg');

  font-weight: normal;

  font-style: normal;

}

@font-face {

  font-family: 'Lato-Thin';

  src: url('fonts/Lato-Thin.eot'),

  url('fonts/Lato-Thin.woff') format('woff'),

  url('fonts/Lato-Thin.ttf') format('truetype'),

  url('fonts/Lato-Thin.svg#robotothin') format('svg');

  font-weight: normal;

  font-style: normal;

}

@font-face {

  font-family: 'linecons';

  src: url('../404/index.html'),

  url('../404/index.html') format('woff'),

  url('../404/index.html') format('truetype');

  font-weight: normal;

  font-style: normal;

}

/*--------- GENERAL & BASIC STYLES ---------*/

html {height: 100%;}

body {

  margin:0;

  font: 14px/16px 'Lato-Regular', Arial, sans-serif;

  color: #000;

  background: #fff;

  height: 100%;

  -webkit-font-smoothing: antialiased; 

  background-image: url("../images/2020/Background_Main4.png");

  	background-size: cover;
    background-position: center;
    z-index: -1;
    background-attachment: fixed;

}



img {border-style:none;max-width: 70%;}

img.contacts_map {
    min-width: 100% !important;
    height: 500px;
}

b, strong {font-weight: bold; }

a {

  text-decoration:none;

  outline:none;

  color: var(--main-red-color);

}

a:hover, a:focus {   
    text-decoration: none;
    color: var(--dark-red-color);
    transition: color var(--base-transition);   
}

a:focus {
  outline:none;
}

input,

textarea,

select {

  font-family: 'Lato-Regular', Arial, sans-serif;

  vertical-align:middle;

  color:#000;

}

form, fieldset {

  margin:0;

  padding:0;

  border-style:none;

}

input[type="text"],

input[type="file"],

input[type="password"],

input[type="submit"],

input[type="email"],

input[type="tel"],

textarea {

  -webkit-appearance: none;

}

input[type="email"]{

  box-shadow: none;

  -webkit-box-shadow:none;

}

input[type="image"] {padding: 0; border: none;}

input[type="submit"]::-moz-focus-inner,

input[type="button"]::-moz-focus-inner,

button::-moz-focus-inner {

  border:0;

  padding:0;

}

input[type="submit"],

input[type="button"]{cursor:pointer;}

input[type="submit"]:focus,

input[type="button"]:focus {outline:none;border: none; box-shadow: none;}

button:focus {outline:none;border: none; box-shadow: none;}

textarea {resize: none;overflow: auto;text-transform: none;}

label{font-weight:normal;}

.form-control::-webkit-input-placeholder {color: #302a00!important;opacity:  1; }

.form-control:-moz-placeholder {color: #302a00!important;opacity:  1; }

.form-control::-moz-placeholder {color: #302a00!important;opacity:  1; }

.form-control:-ms-input-placeholder {color: #302a00!important;opacity:  1;}

.form-control.placeholder {color: #302a00!important; }

.form input:-webkit-autofill, .form textarea:-webkit-autofill, .form select:-webkit-autofill {background-color: none;}

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

/*section{position: relative; z-index: 1;}*/

figure, ul { margin:0; padding:0; }

p{margin:0;word-wrap:break-word;}

h1,h2,h3,h4,h5{margin:0;}

.error-js{

  background: none repeat scroll 0 0 #fff;

  color: #777779;

  padding: 10px 5%;

  position: relative;

  text-align: center;

  z-index: 7777;

}

h1, .h1, .carousel_text .title {font: 34px/1.2 'OpenSans-Bold', Arial, sans-serif;text-transform: uppercase;}

h2, .h2 {font: 24px/1.2 'OpenSans-Bold', Arial, sans-serif;text-transform: uppercase;}

.error-js,

.error-js a{color:#777779;}

.error-js a{text-decoration:underline;}

.error-js a:hover{text-decoration:none;}

.error-js strong{display:block;}

.navbar-default .navbar-toggle{border-color:#3e8673;}

.navbar-default .navbar-toggle .icon-bar{background-color:#3e8673;}

.navbar-default .navbar-toggle:hover .icon-bar, .navbar-default .navbar-toggle:focus .icon-bar{background-color:#fff;}

.navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus{background-color:#3e8673;}

.left {float: left;}

.right {float: right;}

.center{text-align: center;}

.trans {

  -webkit-transition: all 0.2s ease-in;

  -moz-transition: all 0.2s ease-in;

  -ms-transition: all 0.2s ease-in;

  -o-transition: all 0.2s ease-in;

  transition: all 0.2s ease-in;

}

.text-danger{

  color: #e32527;

}

.title{

font: 38px/1 'Lato-Regular', Arial, sans-serif;

  color: #393939;

 text-align: center;

  padding-bottom: 40px;

}

#page_wrapper {

  overflow: hidden;

  width: 100%;

  margin-bottom: -65px;

  position: relative;

  padding-bottom: 50px;

  min-height: calc(100vh - 80px);

}

  .drop-block{

    display: none;

  }

  #page_wrapper.wrapper_top{

  }

/*--------------HEADER----------*/



 .italic-em {

  /*display: block;*/
  font-size: smaller;
  margin: 10px auto;
  font-family: 'Lato-Light';
  text-shadow: 0px 0px 0px black;
  background-color: dimgray;
  color: white;

}


.header-contacts{
  font-family: 'Lato-Black';
  font-size: 16px;
  color: #333333;
}


.top-header{background: rgba(255, 255, 255, 0.6);position: relative;z-index: 1;}

#header{

  background: transparent;

  position: absolute;

  z-index: 99;

  top: 0;

  left: 0;

  right: 0;

}

.navbar{margin-bottom: 0;  min-height: 40px;}

.navbar-brand{display: none;}

.navbar-inverse .navbar-brand:hover, .navbar-inverse .navbar-brand:focus {color: #9d9d9d;}

.navbar-inverse .navbar-toggle {border-color: transparent;}

.navbar-inverse {background-color: transparent;border-color: transparent;}

.top-header{

  font: 13px/1 'Lato-Bold', Arial, sans-serif;

  font-weight: bold;

  position: fixed;

  width: 100%;

}

.top-inform{margin-left: -30px;}

.top-header .navbar-inverse .navbar-nav > li > a, .top-header .navbar-inverse .navbar-nav > li > span {

    color: #343434;

    background-color: transparent;

}

.top-header .navbar-nav > li > a, .top-header .navbar-nav > li > span{

  padding-top: 0px;

  padding-bottom: 0px;

  line-height: 38px;

  -webkit-transition: all 0.2s ease-in;

  -moz-transition: all 0.2s ease-in;

  -ms-transition: all 0.2s ease-in;

  -o-transition: all 0.2s ease-in;

  transition: all 0.2s ease-in;

}

.nav > li > a, .nav > li > span {

 position: relative;

  display: block;

  padding: 0px;

}

.top-header .navbar-nav > li > a:before, .top-header .navbar-nav > li > span:before{

  content: "|";

  color: #aeafaf;

  padding: 0 13px;

}

.top-header .navbar-nav > li:first-child > a:before, .top-header .navbar-nav > li:first-child > span:before{

 content: "";

}

.contact-block{text-align: right;}

.phone-block, .phone-block a{

  color: #000;

  line-height: 38px;

  display: block;

  float: right;

}

.phone-block span{

  display: inline-block;

  margin-right: 20px;

}

.phone-block .mail>.fa{color: #89898a;margin-right: 10px;}

.phone-block .phone>.fa{

  font-size: 20px;

  margin-right: 10px;

  display: inline-block;

/*  float: left;

  line-height: 38px;*/

}

.bg_search {

  display: inline-block;

  /*float: right;*/

  padding: 10px;

}

.bg_search {

    color: #000000;

    background-color: var(--main-red-color);

}

.search-form {

  position: absolute;

  right: 0px;

  top: 20px;

  z-index: 5;

  display: none;

}

.search_form_top{color: #fff;}

.mail_form{border-radius: 0;background: #fff;color: #000;width: 400px;height: 40px;border: none;box-shadow: none;padding: 6px 12px 6px 20px;}

.search {  

  display: block;

  background: url("../images/icon.png") -40px 1px no-repeat;

  border: none;

  width: 23px;

  height: 20px;

  position: relative;

  box-shadow: none;

}

.search{padding: 3px 5px;}

.top_header .navbar-right li.bg_search{border-left: 1px solid #fff; border-right: 1px solid #fff;}

li.bg_search:after{border-left: 1px solid #fff;height: 15px;position: absolute; }

.search:focus, .mail_form:focus{outline: none;box-shadow: none;border: none;}

.bottom-header{
    position: fixed; 
    width: 100%;
}


/*Изменение в header при прокрутке*/
.smaller{
	/*background: #fff;*/
    background-image: url("../images/2020/Background Header(M).png");
    background-repeat: repeat;
    box-shadow: 0px 2px 10px #cccccc;
  }


.header-main-p{
  padding: 0;
}

.resize-header.header-main-p{
  -webkit-transition: all 1s;
    -moz-transition: all 1s;
    transition: all 1s;
}


.menu-right{

  float: right;

  font: 12px/1 'Lato-Light', Arial, sans-serif;

  padding-top: 15px;

  font-weight: 600;

}

.menu-right li{display: inline-block; margin-left: 7px;}

.menu-right li a, .menu-right li span{display: inline-block; padding: 10px; min-width: 100px;text-align: center; border-radius: 6px; color: #fff; background: var(--main-red-color);}

.menu-right li a:hover{text-decoration: none;}

/*--------------HEADER END----------*/

/*FOOTER*/

.hfooter {

  clear: both;

  width: 100%;

  /*height: 60px;*/

}

#footer {

  width: 100%;

  color: #fff;

  background: #e2e2e2;

  font: 14px/3.5 'Lato-Regular', Arial, sans-serif;

  position: relative;

  z-index: 1;

  padding: 0px 0 0;

}

#footer .navbar-inverse {

  background-color: transparent;

  border-color: transparent;

}

.nav-menu-foot ul li{

  list-style-type: none;

  line-height: 30px;

  text-transform: uppercase;

}

.nav-menu-foot ul li a, .nav-menu-foot ul li span{

  color: #afafaf;

}

.nav-menu-foot ul li a:hover{

  text-decoration: none;

  color: #fff;

}

.main-footer-menu{

  font: 14px/1 'Lato-Light', Arial, sans-serif;

  margin-top: -3px;

}

.main-footer-menu li{

  display: block;

  color: #e8e8e8;

  width: 50%;

  padding-bottom: 10px;

  font-size: 16px;

}

.main-footer-menu li a{

 color: #e8e8e8!important;

}

.main-footer-menu li span{margin-bottom: 0px;}

.main-footer-menu.nav-ft li{

  width: 100%;

}

.form_mail_footer input.form-control{

  float: left;

  border-radius: 20px;

  background-color: transparent;

  border: 1px solid #565656;

  color: #fff;

  padding-right: 45px;

}

.form_mail_footer .button_mail{

  position: absolute;

  right: 10px;

  border-radius: 20px;

  background-color: #565656;

  width: 45px;

}

.logo-footer{margin: 10px 0 20px; text-align:center;}

.logo-header{margin: 10px 0 10px;}

.form_mail_footer .button_mail:focus{outline: none;border: none;box-shadow: none;}

.footer-contact .ft_phone{

  color: #efd600!important;

  display: block;

  margin-top: 20px;

}

.footer-contact .ft_phone:hover{

  text-decoration: none;

}

.footer-contact {

  font: 20px/1 'Lato-Medium', Arial, sans-serif;

 margin-top: 15px;

}


.header-contact {

  font: 20px/1 'Lato-Medium', Arial, sans-serif;

 margin-top: 5px;

}





#hotLine {
  color: #333333;
  animation-delay: 0s;
  animation-duration: 5s;
  animation-name: hotLine-a;
  animation-iteration-count: infinite;
}

@keyframes hotLine-a {
  0% {
    color: #e2e2e2;
  }
  100% {
    color: #333333;
  }
}




.title_mail{display: block;color: #cacaca;font: 16px/1 'Lato-Black', Arial, sans-serif;margin-bottom: 5px;text-align: center;}

#footer .title_mail{text-align: center;}

.mail-block-ft .form-control::-webkit-input-placeholder {color: #9d9d9d!important;opacity:  1; }

.mail-block-ft .form-control:-moz-placeholder {color: #9d9d9d!important;opacity:  1; }

.mail-block-ft .form-control::-moz-placeholder {color: #9d9d9d!important;opacity:  1; }

.mail-block-ft .form-control:-ms-input-placeholder {color: #9d9d9d!important;opacity:  1;}

.mail-block-ft .form-control.placeholder {color: #9d9d9d!important; }

.form input:-webkit-autofill, .form textarea:-webkit-autofill, .form select:-webkit-autofill {background-color: none;}

.top-footer .navbar-inverse .navbar-collapse, .top-footer .navbar-inverse .navbar-form .header-main{

  border-color: #393939;

  border-top: 1px solid #393939;

  box-shadow: none;

}

.copyright a{

  color: #ffffff!important;

}

/*footer end*/

/*SLIDER INDEX*/

.theme-default .nivo-controlNav{

  display: none;

}

.slider-index{

  position: relative;

  z-index: 9;

  width: 1928px;

  /*height: 716px;*/

  left: 50%;

  margin-left: -964px;

}

.slider-index .nivo-caption {

  display: block;

  position: absolute;

  top: 40%;

  left: 0;

  right: 0;

  text-align: center;

  color: #fff;

  font: 46px/1.3 'Lato-Regular', Arial, sans-serif;

  text-transform: uppercase;

}

.caption-wr{

    font: 46px/1.3 'Lato-Regular', Arial, sans-serif;

}

.slider-index .nivo-caption span{

  font: 46px/1.3 'Lato-Light', Arial, sans-serif;

  font-weight: bold;

  letter-spacing: 1px;

}

.slider-index .nivo-caption span.color{

     font: 46px/1.3 'Lato-Black', Arial, sans-serif;

     font-weight: normal;

}

.nivo-caption {

   font: 46px/1.3 'Lato-Regular', Arial, sans-serif;

  position: absolute;

  left: 0px;

  bottom: 0px;

  background: transparent;

  color: #fff;

  width: 100%;

  z-index: 8;

  padding: 5px 10px;

  opacity: 1;

  overflow: hidden;

  display: none;

  -moz-opacity: 0.8;

  filter: alpha(opacity=8);

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

}

.nivo-caption .link_cataloge{

  display: block!important;

}

.theme-default .nivo-caption a:hover {

  color: #000;

}

.theme-default .nivo-caption .link_cataloge{

  border-bottom: none;

  margin-top: 80px;

  letter-spacing: 1px;

}

.color{

  color: #efd600;

}

.link_cataloge, .link_cataloge:focus{

  display: block;

  max-width: 245px;

  padding: 10px 0;

  text-align: center;

  color: #fff;

  font-size: 16px;

  font-weight: bold;

  text-transform: uppercase;

  margin: 0 auto;

  background: #3dba55;

  border-radius: 20px;

  margin-top: 30px;

  text-decoration: none;

}

.link_cataloge:hover, .link_cataloge:active{

  text-decoration: none;

  color: #000;

  background: #efd600;

}

.title-content{

  font: 22px/1 'Lato-Black', sans-serif;

  border-bottom: 3px solid #e2e2e2;

  color: #000;

  padding: 0;

  margin-bottom: 5px;

  text-align: center;
  text-transform: uppercase;

}

.news-block .all_news{

  font: 11px/1 'Lato-Regular', Arial, sans-serif;

  text-transform: uppercase;

  color: #858585;

  line-height: 51px;

}

.news-block .all_news:hover{

  text-decoration: none;

  color: #00a23a;

}

.line_title{

  display: block;

  width: 150px;

  margin-top: 10px;

}

.client-slider .owl-prev.disabled, .client-slider .owl-next.disabled {

  display: none !important;

}

.owl-carousel .owl-controls .owl-nav .owl-prev, .owl-carousel .owl-controls .owl-nav .owl-next{

  display: block!important;

  width: 55px;

  height: 100%;

 

  position: absolute;

  top: 0;

 opacity: 0.9;

}

.owl-carousel-product .owl-nav{

  opacity: 0;

 -webkit-transition: all 0.2s ease-in;

-moz-transition: all 0.2s ease-in;

-ms-transition: all 0.2s ease-in;

-o-transition: all 0.2s ease-in;

transition: all 0.2s ease-in;

}

.product_one:hover .owl-carousel-product .owl-nav{

 opacity: 1;

}

.production{padding: 40px 0 50px;}

.production .product_one{max-height: 255px;overflow: hidden;} 

.owl-carousel .owl-controls .owl-nav .owl-prev{

background-position: 15px 50%;

left: 0;

}

.owl-carousel .owl-controls .owl-nav .owl-prev:hover{

  background-position: -80px 51%;

}

.owl-carousel .owl-controls .owl-nav .owl-next{

  background-position: -33px 51%;

  right: 0;

}

.owl-carousel .owl-controls .owl-nav .owl-next:hover{

  background-position: -126px 51%;

}

.descript-product{font: 14px/1 'Lato-Regular', Arial, sans-serif;color: #262626;line-height: 20px;}

.product_one{margin-bottom: 20px;}

.title-product{font: 18px/1 'Lato-Black', Arial, sans-serif;margin-bottom: 10px;display: block;padding-bottom: 10px;}

.title-product:hover{text-decoration: none;}

.trans-catalog{

  /*font: 11px/1 'Lato-Regular', Arial, sans-serif;*/

    font-size: 11px;

  text-transform: uppercase;

  color: #858585;

  margin-top: 15px;

  display: block;

  font-weight: bold;

}

.trans-catalog:hover{

  text-decoration: none;

  color: #00a23a;

}

.trans-catalog>.fa{

  color: #00a23a;

  margin-left: 10px;

}

.detail.trans-catalog{

  color: #00a23a;

  margin: 0 0 10px 0;

}

.detail.trans-catalog:hover{

  color: #045E0A;

}

.sertifikate_wr .detail.trans-catalog .fa-arrow-right:before{

    background: url("../images/arrows-gr.png") no-repeat 2px 7px;

}

.search-item{

  margin: 30px 0;

}

.search-item:last-child{

  margin: 30px 0 60px 0;

}

.search-item p{

  line-height: 22px;

  margin-bottom: 5px;

}

.sp-h4{

 font-size: 21px;

 line-height: 22px;

 display: block;

 margin: 15px 0;

 text-decoration: underline;

}

.fa-arrow-right:before {

  content: "";

  display: inline-block;

  background: url("../images/arrows-gr.png") no-repeat 2px 7px;

  width: 15px;

  height: 15px;

}

.sertifikate_wr .fa-arrow-right:before{

  background: url("../images/arrow-wh.png") no-repeat 2px 8px;

}

.item_present{

  border: 1px solid #d2d2d2;

  padding: 50px 30px;

  margin-bottom: 20px;

}

.icon{

  display: block;

  width: 80px;

  height: 80px;

  background: url("../images/present.png") no-repeat;

  margin: 0 auto;

}

.item_present .icon.icon1{

  background-position: 5px 0px;

}

.item_present:hover .icon.icon1{

  background-position: 5px -103px;

}

.item_present .icon.icon2{

  background-position: -130px 0px;

}

.item_present:hover .icon.icon2{

  background-position: -130px -101px;

}

.item_present .icon.icon3{

  background-position: -273px 0px;

  width: 90px;

}

.item_present:hover .icon.icon3{

    background-position: -272px -101px;

}

.item_present .icon.icon4{

  background-position: -419px 0px;

}

.item_present:hover .icon.icon4{

  background-position: -419px -104px;

}

.line_grey{

  height: 3px;

  width: 50px;

  margin: 0 auto;

  background: #e2e2e2;

  display: block;

  margin-top: 20px;

}

.title_pr{

  display: block;

  text-align: center;

  font-size: 15px;

  padding-top: 25px;

  min-height: 20px;

  -webkit-transition: all .5s linear;

  -moz-transition: all .5s linear;

  -o-transition: all .5s linear;

  transition: all .5s linear;

}

.item_present:hover .title_pr{

  -webkit-animation: UpIn 0.5s;

  -moz-animation: UpIn 0.5s;

  -o-animation: UpIn 0.5s;

  animation: UpIn 0.5s;

}

.privilegy{

  margin-bottom: 15px;  

}


.post-title{
  font-family: 'Montserrat-Bold', sans-serif;

  font-size: 16px;
}

.title_present{

  font-family: 'Lato-Black', sans-serif;

  font-size: 24px;

  text-align: center;

}

.title_present>strong{

  font-size: 1.4rem;

  font-family: "Lato-Black", serif;

}

.text_present{

  display: block;

  font-size: 1.2rem;

    font-family: 'Lato-Black', sans-serif;

    color: #333333;

  margin: 40px 0 5px;

}

.news-block{

  padding: 10px 0 0;

}

.one_block_news{padding: 0;margin-bottom: 40px; font-size: 1rem; font-family: "Lato-Black", serif; word-wrap:break-word;}

.title_news{

  font-size: 1.2rem;

  font-family: "Lato-Black", serif;

  display: block;

  height: 54px;

  overflow: hidden;

  margin-bottom: 23px;

}

.one_block_news .trans-catalog{

  margin-top: 25px;

}

.partners{

  padding: 5px 0;

}

.owl-carousel .owl-item img {

  display: block;

  width: auto;

  margin: 0 auto;

}

.owl-carousel.owl-carousel-partners .owl-controls .owl-nav .owl-prev, .owl-carousel.owl-carousel-partners .owl-controls .owl-nav .owl-next,

.owl-carousel.owl-carousel-equipment .owl-controls .owl-nav .owl-prev, .owl-carousel.owl-carousel-equipment .owl-controls .owl-nav .owl-next {

  display: block!important;

  width: 25px;

  height: 15px;

  background: url("../images/icon.png") no-repeat;

  position: absolute;

  top: -70px;

}

.owl-carousel.owl-carousel-partners .owl-controls .owl-nav .owl-prev, .owl-carousel.owl-carousel-equipment .owl-controls .owl-nav .owl-prev{

  background-position: -73px -2px;

  right: 35px;

  left: auto;

}

.owl-carousel.owl-carousel-partners .owl-controls .owl-nav .owl-next, .owl-carousel.owl-carousel-equipment .owl-controls .owl-nav .owl-next {

  background-position: -98px -1px;

  right: 0px;

}

.hover_text{

  /*opacity: 0;*/

  text-align: center;

  font: 14px/1 'Lato-Black', Arial, sans-serif;

  /*text-transform: uppercase;

  position: absolute;*/

  top: 40%;

  left: 0;

  right: 0;

  margin: 0 auto;

  color: #535353;

  word-wrap: break-word;

  max-width: 180px;

}

.owl-carousel-partners{margin-bottom: 40px !important;}

.owl-carousel.owl-carousel-partners .owl-item:hover .hover_text{

  opacity: 1;

}

.mail_p{

  width: 50px;

  height: 45px;

  background: #a2a2a2;

  color: #fff;

  display: block;

  float: left;

  line-height: 45px;

  text-align: center;

  font-size: 20px;

  border-radius: 5px 0 0 0;

}

.mail_p .fa-envelope-o:before {

  content: "";

  display: inline-block;

  width: 23px;

  height: 20px;

  background: url("../images/mail_p.png") no-repeat 0px 5px;

}

.mail_p .fa-pencil:before {

  content: "";

  display: inline-block;

  width: 20px;

  height: 30px;

  background: url("../images/pens.png") no-repeat 0px 10px;

}

.popup-contact .row .contact_us, .popup-contact .row .contact_us_right  {

    z-index: 9;

  vertical-align: bottom;

  display: inline-block;

  float: none;

  width: 49%;

}

.popup-contact.popup_top{

    /*margin-top: 45px;*/

  /*margin-top: -75px;*/

  /*position: relative;*/

}

/*.popup-contact.popup_top .container {

  position: absolute;

  bottom: 0;

  left: 350px;

}*/

.contactus-popup, .contactus-popup:focus{

  display: block;

  font: 12px/1 'Lato-Medium', sans-serif;

  text-transform: uppercase;

  line-height: 45px;

  color: #393939;

  height: 45px;

  text-align: center;

  max-width: 380px;

  margin: 0 auto;

  border-radius: 5px 5px 0 0;

  text-decoration: none;

  letter-spacing: 1px;

}

.contactus-popup {

  background-color: var(--main-red-color);

}

.contact_us_right .contactus-popup, .contact_us_right .contactus-popup:focus {background: #00a23a;}

.drop_block {background: var(--main-red-color); color: #fff}

.dropmenu_list{

  border-top: 1px solid var(--main-red-color);

}

.dropmenu_list.active{font-weight: bold; border-top: 1px solid var(--main-red-color);}

.drop_category li a, .drop_category li span{

  border-bottom: 1px solid #fff;

  font: 14px 'Lato-Regular', Arial, sans-serif;

  padding: 10px 15px 10px 7px;

  color: #5C5B5B;

}

.drop_category li:last-child a{

  border-bottom: 1px solid var(--main-red-color);

}

.drop_category li{

 font: 16px 16px 'Lato-Light', Arial, sans-serif;

}

.contactus{

  float: none;

  margin: 0 auto;

}

.btn-default:hover, .btn-default:focus, .btn-default.focus, .btn-default:active, .btn-default.active, .open > .dropdown-toggle.btn-default {

  color: #000;

  background-color: #fff;

  border: 1px solid #cccccc;

}

.top-footer{padding: 20px 0 10px;}

.header-main{padding: 20px 0 20px;}

.contact_us_right .contactus-popup{margin: inherit;}

.footer-contact{font: 20px/1 'Lato-Medium', Arial, sans-serif;margin-top: 15px;}

.footer-contact span{display: block;margin-top: 15px;}

.header-contact{font: 20px/1 'Lato-Medium', Arial, sans-serif;margin-top: 5px;}

.header-contact span{display: block;margin-top: 5px;}

.ft-mail, .ft-mail:focus{color: #cacaca;text-decoration: none;}

.ft-mail:hover{color: #fff;text-decoration: none;}

.toggle_block{

  display: none;

  width: 40px;

  height: 40px;

  position: absolute;

  top: -22px;

  left: 10px;

}

.toggle_block .icon-bar{

  background: #000;

}

.block_form_toggle{

  display: none;

  max-width: 380px;

  margin: 0 auto;

  border: 1px solid #d6d6d6;

  background: #ededed;

  padding: 20px 10px;

    z-index: 5555;

  position: relative;

}

.block_form_toggle .form-group textarea{

  height: 100px;

}

.block_form_toggle .form-control textarea.form-control{

    text-transform: none;

}

.block_form_toggle .form-control {

  border-radius: 0;

  text-transform: uppercase;

  font-size: 11px;

}

/*CATEGORY*/

.cataloge_category{

  /*padding: 45px 0;*/

  min-height: calc(100vh - 500px);

}

.content-img{

  height: 314px;

  width: 1920px;

  position: relative;

  left: 50%;

  margin-left: -960px;

}

.content-img.content-img-news{

  height: 360px;

}

.content-img.error-img{

  height: 255px;

}

/*.title-page{

  position: absolute;

  bottom: 55px;

  text-align: center;

  display: block;

  right: 0;

  left: 0;

  letter-spacing: 2px;

  width: 70%;

  margin: 0 auto;

  text-transform: none;

}*/

.title-page {

    position: absolute;

    bottom: 50px;

    text-align: center;

    display: block;

    right: 0;

    left: 0;

    letter-spacing: 2px;

    width: 50%;

    margin: 0 auto;

    text-transform: none;

}

.title-page {

    color: #fff;

    font: 45px 'Lato-Light', Arial, sans-serif;

}

.breadcrumb-block{

  text-align: center;

  margin-top: -79px;

  padding: 14px 35px;

  position: relative;

  z-index: 99;

}

.breadcrumb {

  display: inline-block;

  position: relative;

  z-index: 6666;

  text-align: center;

  border-radius: 20px;

  padding: 10px 25px;

}

.breadcrumb li {

  color: #838383;

  font-size: 12px;

}

.breadcrumb li a{color: #838383;}

.breadcrumb>li+li:before {

  content: "-";

  padding: 0 5px;

}

.breadcrumb li span {

  color: #00a23a;

}

.item-category-block{

  margin-bottom: 30px;

  position: relative;

  line-height: 22px;

}

.img-block{position: relative;}

.category_img{

  margin: 30px 0 25px;

  display: block;

  text-align: center;

}

.item-category-block .trans-catalog{

  margin-top: 20px;

  display: block;

}

.hover-box{

  line-height:385px; 

}

.link-icon{

  display: inline-block;

  vertical-align: middle;

  width: 70px;

  height: 70px;

  background: rgba(252, 252, 252, 0.7);

  border-radius: 50%;

  text-align: center;

  line-height: 90px;

  opacity: 0;

  -webkit-transition: all 0.4s ease-in-out;

  -moz-transition: all 0.4s ease-in-out;

  -o-transition: all 0.4s ease-in-out;

  -ms-transition: all 0.4s ease-in-out;

  transition: all 0.4s ease-in-out;

  -webkit-transform: scale(0);

  -moz-transform: scale(0);

  -o-transform: scale(0);

  -ms-transform: scale(0);

  transform: scale(0);

  -webkit-backface-visibility: hidden;

}

.link-icon:hover{

  background: rgba(252, 252, 252, 1.0);

}

.link-icon .icon{

  display: inline-block;

  width: 30px;

  height: 30px;

  background: url("../images/lupa.png") no-repeat;

}

.hover-box{

  top: 0;

  bottom: 0;

  left: 0;

  right: 0;

  text-align: center;

  height: 100%;

  opacity: 0;

  position: absolute;

  transition: 500ms;

  width: 100%;

  background: rgba(35, 173, 85, 0.7);

  -webkit-transition: all 0.4s ease-in-out;

  -moz-transition: all 0.4s ease-in-out;

  -o-transition: all 0.4s ease-in-out;

  -ms-transition: all 0.4s ease-in-out;

  transition: all 0.4s ease-in-out;

}

.img-block:hover .link-icon{

  opacity: 1;

  -webkit-transform: scale(1);

  -moz-transform: scale(1);

  -o-transform: scale(1);

  -ms-transform: scale(1);

  transform: scale(1);

}

.img-block:hover .hover-box{

  opacity: 1;

}

/*NEWS*/

.news_one_wr{

  padding: 40px 0;

  /*margin-bottom: 60px;*/

}

.date.date-border{

  border-bottom: 1px solid #ededed;

  padding-bottom: 5px;

  display: inline-block;

  min-width: 85px;

}

.news_one_wr .content-text{

  margin-bottom: 60px;

} 

.wr_news{

  padding: 0;

  background: #f5f5f5;

  margin-bottom: 30px;

}

.wr_news .text_news_block{

  margin-top: 27px;

}

.wr_news .category_img{

  margin: 0 0 0 -15px;

}

.wr_news .trans-catalog{

  margin-top: 20px;

}

.item-news{margin-left: -10px;}

.wr_news .text_news_block p{margin-top: 30px;}

.wr_news .text_news_block .title_news{margin-bottom: 0;}

.text-left{

  float: left;

  margin: 0 15px 15px 0;

}

.content-text p{margin-top: 10px;}

.content-text ul{

  margin: 15px 25px;

}

.quotes-block{

  font-style: italic;

  text-align: center;

  background: url("../images/quotes.png") no-repeat center 40px #f4f4f4;

  margin: 40px 0;

  padding: 80px 20px 40px;

}

.pagination-block{

  float: none;

  margin: 0 auto;

  text-align: center;

  clear: both;

  border-top: 8px solid #f7f7f7;

  padding-top: 30px;

}

.pagination-block.pagination-block-top{

  float: left;

  margin: 60px 0 40px 25%;

}

.pagination {

  display: inline-block;

  padding-left: 0;

  margin: 20px 0;

  border-radius: 4px;

  width: 100%;

}

.pagination li{

  display: inline-block;

  list-style-type: none;

}

.pagination .fa-arrow-right:before{

 content: "\f061";

 background: none;

}

.pagination > li > a, .pagination > li > span {

  position: relative;

  float: none;

  padding: 6px 12px;

  line-height: 1.42857143;

  text-decoration: none;

  color: #ccc;

  background-color: #ffffff;

  border: none;

  margin-left: -1px;

  font-size: 16px;

}

.pagination > li > a:hover, .pagination > li > span:hover, .pagination > li > a:focus, .pagination > li > span:focus {

  background-color: transparent;

  border-color: transparent;

}

.main-footer-menu li a:hover, .main-footer-menu li.active span {

  text-decoration: none;

  color: #efd600 !important;

  line-height: 20px;

}

/*ЗНО*/

.leftbar-nav li{

  list-style-type: none;

  display: block;

}

.leftbar-nav>ul>li{

  margin-bottom: 2px;

}

.dropmenu_one, .drop_category{display: block;}

.drop_category{

   /*padding: 15px 10px;*/

}

.drop_category li{

/*  padding-bottom: 5px;

  margin-bottom: 10px;*/

  /*margin-left: 35px;*/

}

.drop_category li:hover  {

  background: #f7f7f7;

}

.drop_category li.active span{

 /*font-weight: bold;*/

 background: none;

color: #000;

}

.drop_category li a, .drop_category li span{display: block;  margin-left: 35px;}

.drop_category li a:hover{text-decoration: none;/*font-weight: bold;*/color: #000;}

.drop_category li a:focus{text-decoration: none;}

.drop_block{

  display: block;

  text-align: center;

  width: 100%;

  padding: 25px 0;

  cursor: pointer;

}

.drop_category li.active{

  background: var(--main-red-color);

  color: #ffffff;

}

.drop_block.active{

    font-weight: bold;

}

.dropmenu_list{

  display: block;

  text-align: center;

  width: 100%;

  padding: 15px;

/*margin-top: 1px;*/

word-wrap: break-word;

color: #333333;

}

.dropmenu_list:hover{

  text-decoration: none;

  background: var(--main-red-color);

  color: #ffffff;

}

.dropmenu_list:focus{text-decoration: none;}

.item-product-block{

  margin-bottom: 30px;

}

.title-product-one{

  display: block;

  border-bottom: 7px solid #f7f7f7;

  margin-bottom: 18px;

  min-height: 115px;

  /* margin-top: 25px; */

  padding-bottom: 20px;

  color: #969696;

  line-height: 22px;

  text-align: center;

}

.title-product-one:hover{

  text-decoration: none;

}

.item-product-block .hover-box {

  line-height: 250px;

}

.product_category .col-lg-4{

  margin-bottom: 10px;

}

.product_category .col-lg-4:nth-child(3n+1){clear: left;}

.product_category .category_img {

  margin: 0px 0 25px;

}

/*KABELI ONE*/

.item-cat-block .hover-box {

  line-height: 230px;

}

.leftbar-nav.leftbar_category .drop_category li {

  margin-bottom: 0px;

  margin-left: 0;

  padding: 8px 15px;

}

.leftbar-nav.leftbar_category .drop_category {

  padding: 0;

}

.leftbar-nav.leftbar_category .drop_category li:hover{

  background: #f7f7f7;

}

.leftbar-nav.leftbar_category .drop_category li a:hover{

  text-decoration: none;

}

.leftbar-nav .dropmenu_list.active:before{

  content: "";

  display: block;

  position: absolute;

  right: 20px;

  width: 10px;

  height: 10px;

  background: url("../images/icon.png") no-repeat -6px -25px;

  margin-top: 6px;

}

.production-inform{

  /*margin-bottom: 70px;*/

  padding: 40px 0;

}

.production-inform .title-content{

  margin-bottom: 42px;

}

.inform-block{

  margin-top: 30px;

}

.inform-block li{

  list-style-type: none;

  display: block;

  width: 100%;

  height: 30px;

  border-bottom: 3px solid #f6f6f6;

  padding-bottom: 35px;

}

.inform-block li a{

  line-height: 35px;

  text-transform: uppercase;

  color: #858585;

}

.inform-block li a:hover{

  text-decoration: none;

}

.inform-block li a:after{

  content: "";

  display: block;

  float: left;

  width: 30px;

  height: 30px;

  background: url("../images/icon.png") no-repeat;

  margin-right: 15px;

  clear: both;

}

.inform-block li a.protokol:after{

  background-position: 0px -52px;

}

.inform-block li a.protokol:hover:after{

  background-position: -0px -90px;

}

.inform-block li a.type:after{

  background-position: -40px -52px;

}

.inform-block li a.type:hover:after{

  background-position: -40px -90px;

}

.inform-block li a.coden:after{

  background-position: -86px -49px;

}

.inform-block li a.coden:hover:after{

  background-position: -87px -92px;

}

.inform-block li a.marken:after{

  background-position: -132px -52px;

}

.inform-block li a.marken:hover:after{

  background-position: -132px -92px;

}

.content-list li{

    background: url("../images/list-li.png") no-repeat 0px 3px;

    margin-right: 10px;

    list-style-type: none;

    padding-left: 20px;

    margin-bottom: 16px;

}

.content-list{line-height: 25px;}

.title-block{margin-bottom: 20px;}

.equipment{padding: 40px 0;}

.title-equipment{ 

 display: block;

  margin-bottom: 23px;

  line-height: 25px;

  padding-right: 20px;

  word-wrap: break-word;

}

.title-equipment:hover{text-decoration: none;}

.owl-carousel-equipment p{margin: 25px 0;word-wrap: break-word;line-height: 22px;}

.owl-carousel-equipment{line-height: 22px;}

.owl-carousel-equipment.owl-carousel .owl-item img, .owl-carousel-product.owl-carousel .owl-item img{position: relative;}

/*KABELI TOVAR*/

.one_product_wrap{padding: 0;}

.title-content.title-min-pr{margin-left: 0;margin-top: 15px;margin-bottom: 35px;}

.code-product{margin-top:10px;}

.icon-img{

  display: block;

  width: 80px;

  height: 80px;

  border-radius: 50%;

  border: 3px solid #c9c9c9;

  background: url("../images/icon.png") no-repeat 16px -127px #c9c9c9;

  float: left;

  text-align: center;

}

.drop_category li .show_all{

  display: inline-block;

  text-transform: uppercase;

  color: #646464;

  width: 100%;

  line-height: 22px;

  padding: 20px 0;

}

.drop_category li .show_all:hover{

  color: #000;

}

.text_news_block .border{

 background: #c8c9c9;

}

.show_arrow{

  display: block;

  width: 44px;

  height: 44px;

  float: right;

  border-radius: 50%;

  border: 1px solid #bdbdbd;

  background: url("../images/arrow_menu.png") no-repeat 14px 15px;

  margin-top: -20px;

  margin-right: 40px;

}

.example-order{margin-top: 25px;}

.example-order p.example-title{padding: 10px 0;}

.example-order p{

  margin-left: 115px;

  max-width: 45%;

}

.table-structure{

  padding-top: 40px;

  clear: both;

}

.table-structure.tehkharakteristik {

  padding-top: 10px;

}

.table-structure .table thead tr td, .thead-title{

  background: #a1a1a1;

  color: #fff;

}

.table-structure .table tr td{/*padding: 15px ;*/ vertical-align: middle;

}

.table-structure.tehkharakteristik .table tr td{/*padding: 15px 30px;*/padding: 15px;}

.table-structure.tehkharakteristik .table tr:hover{background: #f2f2f2;}

.table-structure .table tr td:first-child{

  /*width: 33%;*/

  text-align: center;

}

.table-structure .table thead tr td:first-child, .table-structure .table thead tr td:last-child{text-align: center;}

.table-structure.tehkharakteristik .table thead tr td:first-child{text-align: center;}

.table-structure.tehkharakteristik .table tr td:first-child{

  /*width: 60%;*/

  text-align: left;

}

.table-borde#ed164e > tbody > tr:first-child > td{

  border-top: none;

}

.thead-title, .title-none{display: none;width: 100%;}

.block_form_feedback{margin-top: 20px;}

.block_form_feedback .form-control::-webkit-input-placeholder {color: #302a00!important;opacity:1;text-transform: uppercase;font-size: 11px; padding-top: 5px;}

.block_form_feedback .form-control:-moz-placeholder {color: #302a00!important;opacity:1;text-transform: uppercase;font-size: 11px; padding-top: 5px;}

.block_form_feedback .form-control::-moz-placeholder {color: #302a00!important;opacity:1;text-transform: uppercase; font-size: 11px;padding-top: 5px;}

.block_form_feedback .form-control:-ms-input-placeholder {color: #302a00!important;opacity:1;text-transform: uppercase;font-size: 11px;padding-top: 5px;}

.block_form_feedback .form-control.placeholder {color: #302a00!important;text-transform: uppercase; font-size: 11px;padding-top: 5px;}

.block_form_feedback .form input:-webkit-autofill, .form textarea:-webkit-autofill, .form select:-webkit-autofill {background-color: none;text-transform: uppercase;font-size: 11px;padding-top: 5px;}

.block_form_feedback textarea.form-control{

  height: 182px;

  text-transform: none;

}


.form_btn.form_btn_right .trans-manager{

  font-size: 11px;

  padding: 4px 20px 10px 19px;

  text-transform: uppercase;

}

.content-text {

  font: 16px/1.5 'Lato-Regular', Arial, sans-serif;

  color: #262626;

}

.about_link_block .title {

  font: 15px/1 'Lato-Regular', Arial, sans-serif;

  display: block;

  color: #000000;

}

.trans-manager:hover{

  background-color: #028330;

}

.trans-manager, .trans-manager:focus{

  max-width: 250px;

  text-align: center;

  font: 16px/1 'Lato-Black', Arial, sans-serif;

  margin-top: 25px;

  display: block;

  padding: 8px 15px;

  text-decoration: none;

  font-weight: bold;

  border-radius: 20px;

  border: none;

  outline: none;

  color: #fff;

  background-color: #00a23a;

}

.trans-manager:after{

  content: "";

  background: url("../images/arrow-wh.png") no-repeat 10px 7px;

  display: inline-block;

  width: 20px;

  height: 15px;

  text-align: right;

}

.form_btn.form_btn_right .trans-manager .fa{

    padding-left: 20px;

}

.bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {

  width: 100%;

}

.btn-default:hover, .btn-default:focus, .btn-default.focus, .btn-default:active, .btn-default.active, .open > .dropdown-toggle.btn-default {

  color: #333333;

  background-color: #fff;

  border: 1px solid #cccccc;

}

.bootstrap-select>.dropdown-toggle:focus{outline: none!important;}

.bootstrap-select>.dropdown-toggle {

  width: 100%;

  padding-right: 25px;

  font-size: 11px;

  text-transform: uppercase;

  padding: 9px;

}

.dropdown-menu > li > a {

  padding: 7px 10px;

  text-transform: uppercase;

  font-size: 12px;

  font: 11px/1 'Lato-Regular', sans-serif;

}

.dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus {

  background-color: transparent;

}

.caret {

  border-top: none;

  border-right: none;

  border-left: none;

}

.btn-group > .btn:first-child:after{

  content: "+";

  font-size: 24px;

  position: absolute;

  right: 10px;

  display: block;

  color: #ccc;

  top: 0;

  font: 24px 'Lato-Light', Arial, sans-serif;

}

.btn-group.open .dropdown-toggle {

  -webkit-box-shadow: none;

  box-shadow: none;

}

.dropdown-menu{top: 90%;}

.form-control:focus {

  border-color: #ccc;

  outline: 0;

  -webkit-box-shadow: none;

  box-shadow: none;

}

.form-control, .dropdown-menu, .btn{border-radius: 0;}

.contact_us_right .block_form_toggle{

  font: 12px/1 'Lato-Regular', sans-serif;

  margin: 0;

}

.select_filter, .bootstrap-select.btn-group .dropdown-menu.inner{

    font: 12px/1 'Lato-Regular', sans-serif;

}

/*REVIEW*/

.wr_review{padding: 45px 0;}

.one_block_img{text-align: center;margin-bottom: 60px;}

.one_block_img .frame-img {

  display: block;

  background: url("../images/ramka.png") no-repeat;

  text-align: center;

  max-width: 228px;

  height: 323px;

  margin: 0 auto;

}

.one_block_img .frame-img img{

  width: 175px;

  height: 265px;

  display: inline-block;

  margin: 0 auto;

  margin-top: 25px;

}

.one_block_img span{display: block;}

.wr_review_block{margin-bottom: 35px;padding: 0;float: none;margin: 0 auto;clear: both;}

.wr_review_block.wr_agency{

  float: left;

  margin-bottom: 40px;

}

.icon-feedback-img{

  display: block;

  width: 125px;

  height: 125px;

  border-radius: 50%;

  background: url("../images/icon.png") no-repeat -55px -122px #f6f6f6;

  margin: 0 auto;

  margin-top: 90px;

  border: 5px solid #f6f6f6;

  box-shadow: 0 0 0 4px rgba(255,255,255,1);

  overflow: hidden;

  -webkit-transition: background 0.3s, color 0.3s, box-shadow 0.3s;

  -moz-transition: background 0.3s, color 0.3s, box-shadow 0.3s;

  transition: background 0.3s, color 0.3s, box-shadow 0.3s;

}

.icon-feedback-img:hover{

  background: url("../images/icon.png") no-repeat -150px -115px #f6f6f6;

  border: 5px solid #e5e5e5;

  box-shadow: 0 0 0 8px rgba(255,255,255,0.3);

}

.wr_review .block_form_feedback textarea.form-control{

  height: 133px;

}

.open-s{display: block;text-align: center;margin-top: 15px;}

.sertifikate_wr{padding: 40px 0;}

.error_wrap {

  padding: 40px 0 0px;

  /*margin-bottom: 40px;*/

}

.text_in_center{

  float: none;

  margin: 0 auto;

  word-wrap: break-word;

  margin-bottom: 55px;

}

.clearfix{clear: both;}

.text_in_center>.clearfix{float: none;margin: 0 auto;padding: 0;}

.pad_none{padding: 0;}

.center-position{float: none;margin: 0 auto;}

/*ABOUT*/

.about_link_block{

  border: 1px solid #d2d2d2;

  display: block;

  padding: 35px;

  text-align: center;

}

.about_link_block:hover{

  text-decoration: none;

}

.hr{display: block;margin: 0 auto;height: 4px;width: 50px;background: #e2e2e2;margin-top: 30px;margin-bottom: 35px;}

.icons{

  display: block;

  width: 80px;

  height: 80px;

  background: url("../images/icon-green.png") no-repeat;

  margin: 0 auto;

}

.icons.ico1{background-position: 0px 0px;}

.about_link_block:hover .icons.ico1 {background-position: 0px -95px;}

.icons.ico2{background-position: -126px 0px;}

.about_link_block:hover .icons.ico2 {background-position: -126px -95px;}

.about_link_block .title{padding-bottom: 0;}

.about_link_block .title:hover{text-decoration: none;}

/*ERROR-404*/

.error-img{

  text-align: right;

  margin-right: 80px;

}

.error-wr {margin-top: 40px;}

.error-wr span{display: block;}

.er_name{color: #d2d2d1;text-transform: uppercase;}

.er_text{margin-top: 50px;}

.error-wr .link_cataloge{margin: 55px 0 0 0; max-width: 142px;font-size: 11px;padding: 6px 0;}

.error-wr .link_cataloge .fa{margin-left: 15px;}

.name {

  font: 16px/1 'Lato-Black', Arial, sans-serif;

  color: #000000;

  margin-top: 20px;

}

.working {

  font: 14px/1 'Lato-Light', Arial, sans-serif;

  color: #636363;

  text-transform: uppercase;

  margin-top: 10px;

}

.modal-header .modal-title {

    font: 30px/1 'Montserrat-Regular', Arial, sans-serif;

    text-align: center;

    margin: 0 auto;

    display: block;

}

.title-block {

    font: 25px/1 'Lato-Light', Arial, sans-serif;

    color: #636363;

}

.title-equipment {

    color: #000000;

    font: 18px/1 'Lato-Black', Arial, sans-serif;

}

.title-product-one {

    font: 15px/1 'Lato-Medium', Arial, sans-serif;

}

/*PREDSTAVITELSTVA*/

.contact-agency{

  margin-top: 10px;

  display: block;

}

.contact-agency li{

  list-style-type: none;

  padding: 15px 0 0 0px;

}

.contact-agency li:before{

  content: "";

  background: url("../images/contact-icon.png") no-repeat;

  display: block;

  float: left;

  width: 20px;

  height: 20px;

  margin-right: 10px;

}

.contact-agency-wrap{margin-top: 25px;}

.wr_agency .contact-agency-wrap {

  margin-top: 20px;

  border-top: 1px solid #f6f6f6;

  padding-top: 15px;

}

.wr_agency .title-content.title-min-pr {

  margin-left: 0;

  margin-top: 0px;

  border-bottom: none;

  margin-bottom: 0px;

}

.contact-agency li.pfone_i:before{

  background-position: 0px 0px;

}

.contact-agency li.fax_i:before{

  background-position: 0px -22px;

}

.contact-agency li.mobile_i:before{

  background-position: 4px -43px;

}

.contact-agency li.mail_i:before{

  background-position: 2px -69px;

}

.pupap-contact{

    margin-top: -110px;

}

#map {

  height: 800px;

  width: 100%;

}

.mape{position: relative;}

.wrap-map-inform {

  position: absolute;

  top: 30%;

  left: 17%;

  pointer-events: none;

}

.contact-agency-wrap.bg-block-contact{

  background: rgba(233, 213, 42, 0.9);

  pointer-events: none;

  padding: 20px;

 display: none;

}

/*.parent:after{

  content: "";

  transform: skewX(-22.6deg);

  transform-origin: 10px 0px 0px;

  height: 24px;

  width: 5px;

  box-shadow: none;

  background-color: rgba(233, 213, 42, 0.9)!important;

  border-color: transparent transparent transparent rgba(233, 213, 42, 0.9)!important;

  position: absolute;

  right: 47%;

  bottom: -20px;

}*/

.parent:before{

  content: "";

  position: absolute;

  left: 47%;

  background: url("../images/maps_icon.png") no-repeat 1px 0px;

  width: 37px;

  height: 23px;

  bottom: -19px;

  z-index: 99999;

/*  transform: skewX(22.6deg);

  transform-origin: 0px 0px 0px;

  height: 24px;

  width: 5px;

  z-index: 5;

  bottom: -19px;

  box-shadow: none;

  background-color: rgba(233, 213, 42, 0.9)!important;*/

}

.parent .contact-agency{border-top: 1px solid #ccbc33;}

.parent{

/*  left: 310px!important;

  top: 270px!important;*/

  background: rgba(233, 213, 42, 0.9)!important;

/*  width: 365px!important;

  height: 205px!important;*/

  /*overflow: hidden;*/

}

.parent>div>div{

    background-color: rgba(233, 213, 42, 0.1)!important;

    box-shadow: none!important;

}

.parent div>div>div{

  background-color: transparent;

  background: none;

}

.navbar-brand.brand-category{

  display: none;

  font: 13px/1px 'Lato-Black', Arial, sans-serif;

  height: 0;

  margin-left: 50px;

  color: #777;

  font-weight: bold;

  font: 13px/1px 'Lato-Bold', Arial, sans-serif;

}

.wr_contact .one_block_img img{

  width: 142px;

  height: 142px;

}

#feedback-popup .one_block_img img{

  width: 215px;

  height: 215px;

}

.one_block_img .link_cataloge{

  max-width: 140px;

  padding: 8px 0;

  font-size: 11px;

}

.one_block_img .link_cataloge .fa{

  margin-left: 10px;

}

.wr_contact .contact-agency{

  border-top: 1px solid #ccc;

  margin-top: 30px;

  padding-top: 25px;

}

.modal-body .link_cataloge{width: 180px;font-size: 11px;}

.modal-body .link_cataloge .fa{margin-left: 10px;}

#thank .modal-dialog{text-align: center; width: 450px;}

.modal-header{border-bottom: none;}

.modal-dialog {width: 600px;margin: 140px auto;}

#feedback-popup .modal-header .close {

  margin-top: -45px;

  margin-right: -17px;

}

#thank .modal-header .close {

  margin-top: -71px;

  margin-right: -17px;

}

#thank .modal-header{

  padding: 45px 15px 20px;

}

.modal-body {padding: 20px 15px 35px;}

.modal-open .modal {

  position: fixed;

  top: 0;

  right: 0;

  bottom: 0;

  left: 0;

  z-index: 1040;

  background: rgba(0, 0, 0, 0.5);

}

#feedback-manager .link_cataloge .fa-arrow-right:before, #thank .link_cataloge .fa-arrow-right:before{

  content: "";

  width: 0;

  height: 0;

  background: none;

}

.close{

  color: #fff;

  opacity: 1;

}

.modal  .form-control{

  font-size: 11px;

}

.margin_block{  

  margin-left: 80px;

  margin-right: 60px;

  padding: 0px 30px;

}

.pad_in_right{

  padding: 0px 30px;

}

#feedback-manager .modal-title{

 font: 21px/1 'Lato-Light', Arial, sans-serif;

  text-align: center;

  margin: 0 auto;

  display: block;

}

.form-line{float: none;margin: 0 auto;}

.modal .form-line .form-control {

  font-size: 13px;

}

#feedback-manager .modal-header .close {

  margin-top: -45px;

  margin-right: -25px;

}

.content-img.img-index{display: none;}

.modal textarea.form-control {

  height: 95px;

}

#cboxNext {

  background: url("../images/icon.png") -102px 0px;

  right: -50px;

  top: 50%;

  width: 20px;

  height: 20px;

  position: absolute;

}

#cboxPrevious {

  background: url("../images/icon.png") -70px 0px;

  left: -50px;

  top: 50%;

  width: 20px;

  height: 20px;

  position: absolute;

}

#cboxClose{

  top: -30px;

  right: 0;

  width: 25px;

  height: 20px;

  position: absolute;

  background: url("../images/icon.png") -139px 0px;

}

.one_review_text {

  font: 16px/1.5 'Lato-Regular', Arial, sans-serif;

  background: #f4f4f4;

  padding: 30px;

  color: #000000;

}

.date {

  display: block;

  color: #999;

}

.border {

  display: block;

  background: #ededed;

  margin: 8px 0;

  height: 1px;

  max-width: 80px;

}

.owl-carousel-partners .item img{}

.img-block-zoom{display: none;}

.pdn_n{padding: 0;}

/*modal*/

.modal-body p{

 font-size: 14px;

 line-height: 20px;

}

.modal_img{

  float: left;

  margin: 0 30px 15px 0;

  line-height: 23px;

}

.number_descript{

  list-style-type: decimal;

  margin-bottom: 20px;

}

.number_descript li{

    margin-left: 30px;

  line-height: 23px;

}

.name_prod_p{

  margin: 10px 0;

}

.list_descript{

  margin-left: 15px;

  margin-top: 10px;

  line-height: 23px;

}

#protokol .modal-dialog, #type .modal-dialog, #coden .modal-dialog, #marken .modal-dialog{

    width: 80%;

    margin: 40px auto;

}

.close {

    color: #777;

    opacity: 1;

}

/*FANCY ZOOM*/

#zoom {/* position: absolute; display: none; z-index: 499; -webkit-box-shadow: 0px 5px 25px #000; -moz-box-shadow: 0px 5px 25px #000; box-shadow: 0px 5px 25px #000; */

  /*position: absolute;*/

  display: block;

  z-index: 499;

  -webkit-box-shadow: none;

  -moz-box-shadow: none;

  box-shadow: none;

}

#zoom_img { display: block; cursor: pointer; width: 100%; border: 0; margin: 0; padding: 0; }

#zoom_close { position: absolute; display: none; cursor: pointer; left: -15px; top: -15px; width: 30px; height: 30px; background: url(../404/index.html) no-repeat; }

#zoom_spin { position: absolute; display: none; z-index: 525; width: 50px; height: 50px; background: url(../404/index.html) no-repeat; }

/*VALIDATION STYLE*/

textarea {resize: none;overflow: auto;}

.title_form {

    font:16px/41px Arial, sans-serif;

    text-transform: uppercase;

    color: #c00d0e;

    display: block;

    text-align: center;

}

.form .label_row {

    display: inline-block;

    vertical-align: middle;

    width: 140px;

    text-align: right;

    line-height: 30px;

    margin-right: 20px;

    font-size: 17px;

}

.form .input, .form select {

  display: inline-block;

  vertical-align: middle;

  width: 100%;

    height: 34px;

    border: 1px solid #000;

    padding: 0 10px;

    color: #1d1d1b;

}

.form .has-error .input, .form .has-error select {border: 1px solid #a94442;}

.form .error-text {

    padding-top: 7px;

    display: none;

    color: #a94442;

}

.form select {border-color: #cccccc} 

.form option {line-height: 28px;}

.form .checkbox, .form .radio {

    display: inline-block;

    vertical-align: middle;

    margin-right: 20px;

}

.form .has-error .error-text {

    display: inline-block;

    width: 100%;

}

.form .form-control-feedback {display: none;right: 10px;}

.form .has-error .glyphicon-remove {display: block;color: #ff0000;}

.form .has-success .glyphicon-ok {display: block;}

.navbar-inverse .navbar-nav > .active > a, .navbar-inverse .navbar-nav > .active > a:hover, .navbar-inverse .navbar-nav > .active > a:focus {

  background-color: transparent;

}

.has-error .form-control-feedback {

  /*color: #ff0000;*/

  font-size: 12px;

}

.has-error .form-control:focus {

  border-color: #F65351;

  -webkit-box-shadow: none;

  box-shadow: none;

  color: #ff0000;

}

.has-error .form-control {

  border-color: #F65351;

  -webkit-box-shadow: none;

  box-shadow: none;

}

/*new style*/

.content-list {font: 16px/1 'Lato-Regular', Arial, sans-serif;}

.owl-carousel-equipment {font: 14px/1 'Lato-Regular', Arial, sans-serif;}

.table-structure.tehkharakteristik .table tr td:last-child {font: 14px/1.3 'Lato-Regular', Arial, sans-serif;}

.title-page.title_min_page{font: 30px 'Lato-Regular', Arial, sans-serif;color: #fff;}

  /*new style*/

.popup-contact{

  /*margin-top: 50px;*/

}

.popup-contact {

    /* margin-top: 50px; */

    position: absolute;

    bottom: 0;

    left: 0;

    right: 0;

}

/*-----------media------------*/

@media screen and (max-width: 1700px){

  .yellow_section {

    background: url("../images/yel_sec.png") #efd000 95% 0 no-repeat;

    padding: 90px 0 80px;

  }

}

@media screen and (max-width: 1379px) {

  

}

@media screen and (max-width: 1366px){

  

}

@media screen and (max-width: 1350px){

  /*--------- Меню основных категорий---------*/



#page2, #page3, #page4, #page5, #page6, #page7, #page8, #page9 {

    display: none;

    margin: 20px 10px;

    width: 90%;

}

#page1 {

    margin: 20px 10px;

    width: 90%;

}

}

@media screen and (max-width: 1199px){

.icon_bg{ background-image: none;}

.class_img {display: none;}

.top-header{height: 40px;}

.phone-block{

  margin-left: -80px;

}

.menu-right{

  padding-top: 50px;

  width: 800px;

}

.title_pr{

    min-height: 65px;

}

}

@media screen and (max-width: 1024px) {


.icon_bg{ background-image: none;}

.top-header{height: 40px;}

.phone-block{

    margin-left: -80px;

}

.menu-right{

  padding-top: 50px;

  width: 800px;

}



 .title_mail {font: 16px/1 'Lato-Black', Arial, sans-serif;}

 .form_mail_footer .button_mail {right: -8px;}

 .form_mail_footer input.form-control{padding-right: 20px;}

 .wr_news .text_news_block p {margin-top: 10px;}

 .item-product-block .hover-box {line-height: 200px;}

 .theme-default .nivo-caption .link_cataloge {margin-top: 20px;}

 .hover_text {font: 14px/1 'Lato-Black', Arial, sans-serif; position: absolute;}

 #map {height: 500px;width: 100%;}

 #thank, #feedback-popup{z-index: 9999;background: rgba(0, 0, 0, 0.5);}

}

@media screen and (max-width: 991px){


.icon_bg{ background-image: none;}

.top-header{height: 40px;}

.phone-block{

    margin-left: -80px;

}

.menu-right{

  padding-top: 50px;

  width: 800px;

}



}

@media screen and (max-width: 979px) {


.icon_bg{ background-image: none;}

.menu-right{

  padding-top: 50px;

  width: 700px;

}





.navbar-toggle{

  float: left;

  margin-right: 0px;

  padding: 9px 10px;

  margin-top: 0.5px;

  margin-bottom: 0.5px;

  background-color: transparent;

  background-image: none;

  border: 1px solid transparent;

  border-radius: 4px;

  }

.navbar-toggle.toggle_block:active, .navbar-toggle.toggle_block:hover{

  outline: 0;

  background-color: #fff;

}

.navbar-toggle.toggle_block:focus{

  background-color: transparent;

}

.top-inform {margin-left: 0px;}

.title_mail{text-align: left;}

.yellow_section {background: url("../images/yel_sec.png") #efd000 200% 0 no-repeat;}

.form_mail_footer .button_mail {right: 10px;}

.menu-right li {margin-left: 15px;margin-bottom: 10px;}

.nivo-html-caption {top: 60%;font: 21px/1.3 'Lato-Regular', Arial, sans-serif;}

#header .navbar-inverse .navbar-collapse,  #header .navbar-inverse .navbar-form {

    border-color: #fff;

    position: absolute;

    background: #fff;

    width: 170px;

    z-index: 99999;

    background-color: #fff;

    opacity: 1;

}

.navbar-brand.brand-category{display: none!important;}

.navbar-brand{

    display: block;

    float: left;

    padding: 17.5px 10px 0 0;

    font-size: 18px;

    line-height: 5px;

    height: 37px;

}

.navbar-inverse .navbar-brand, .width_togl .navbar-brand{

    color: #777;

    display: block;

    font-size: 13px;

    font-weight: bold;

}

  .navbar-inverse .navbar-toggle .icon-bar {background-color: #777;}

  #footer .navbar-inverse .navbar-toggle .icon-bar {background-color: #fff;}

  .bottom-header .navbar-brand{

    margin-top: 0px;

    margin-left: 40px;

    color: #777;

    font-size: 13px;

    float: left;

    padding: 0 5px;

    font-weight: bold;

 }

.top-header .navbar-nav > li > a:before, .top-header .navbar-nav > li > span:before {content: "";color: #aeafaf;padding: 0 13px;}

.production {padding: 50px 0 0px;}

.logo-footer{margin-bottom: 20px;}

.privilegy {margin-top: 30px;}

.item-product-block .hover-box {line-height: 155px;}

.margin_block {margin-left: 45px;margin-right: 5px;}

.mail-form{margin-top: 30px;}

}

@media screen and (max-width: 867px){

.phoneMail{
  display: none;
}

.icon_bg{ background-image: none;}

.menu-right{

    padding-top: 50px;

    width: 760px;

}

}

@media screen and (max-width: 860px){


.icon_bg{ background-image: none;}

.menu-right{

    padding-top: 50px;

    width: 760px;

 } 

}

@media screen and (max-width: 787px) {
  body {background-image: none;}


.icon_bg{ background-image: none;}

}

@media screen and (max-width: 800px) {


.icon_bg{ background-image: none;}

.menu-right{

    padding-top:50px;

    width: 700px;





.about_link_block {border: 2px solid #d2d2d2;}

.wr_review_block {

   float: none;margin-top: 25px;

  }

  .slider-index .nivo-caption span {font: 32px/1 'Lato-Light', Arial, sans-serif;line-height: 23px;}

  .slider-index .nivo-caption span.color {font: 30px/1 'Lato-Black', Arial, sans-serif;}

  .slider-index .nivo-caption{top: 50%;}

  .table-structure .table tr td {padding: 10px;}

  .mape {height: 400px;}

  .theme-default .nivo-caption .link_cataloge {

    border-bottom: none;

    margin-top: 20px;

    letter-spacing: 1px;

   }

   .slider-index .nivo-caption{top: 50%;}

   .slider-index .nivo-caption span{display: inline-block;line-height: 33px;}

   .theme-default .nivo-caption .link_cataloge {margin-top: 10px;}

   .yellow_section {background: url("../images/yel_sec.png") #efd000 385% 0 no-repeat;}

   .title_present {font: 28px/1.4 'Lato-Light', Arial, sans-serif;}

  .title-content {padding: 0 15px 0 0;}

  .production-inform {

      margin-bottom: 0px;

      padding: 40px 0 20px;

  }

  }

@media screen and (max-width: 767px) {

.modal-header .modal-title {font: 20px/1 'Montserrat-Regular', Arial, sans-serif;}
.icon_bg{ background-image: none;}

.top-header{height: 10px;}

.logo{

      width: 70%;

      margin-top: -20px;

}

.phone-block span{

      margin-right: 7px;

}



.menu-right li a {

      padding: 5px;

}



.nivo-html-caption{display: none!important;}

/*.menu-right {

      float: left;

      padding-top: 0;

      margin-top: -25px;

      width: 170px;

}*/

.menu-right {

  padding-top: 50px;

  width: 670px;

  }

.contact-block {line-height: 56px;}

#header .navbar-inverse .navbar-toggle .icon-bar {background-color: #333;}

#header .navbar-inverse .navbar-toggle:hover{background-color: #fff;}

#header .navbar-inverse .navbar-toggle:focus {background-color: transparent;}

.product_one {width: 50%;margin: 0 auto;}

.production{text-align: center;}

.descript-product {margin-bottom: 55px; margin-top: 15px;}

.yellow_section {background: #efd000;text-align: center;}

.trans-manager{margin: 0 auto;}

/*.news-block {padding: 50px 0 0;}*/

.img_news{width: 100%;display: block;margin-bottom: 20px;}

.descript-product{margin-bottom: 35px;}

.category_img {display: block;margin: 0 auto;margin-bottom: 30px;}

.wr_news{background: none;}

.wr_news .category_img {margin: 0 0 20px;text-align: left;}

.product_category{margin-top: 25px;}

.product_category .col-lg-4:nth-child(3n+1) {clear: right;}

.product_category .category_img img{width: 100%;}

.item-product-block .hover-box {line-height: 315px;}

.contact_us_right .contactus-pupap {margin: 0 auto;margin-top: 10px;}

.item-product-block .hover-box {line-height: 280px;}

.item-product-block .hover-box {line-height: 250px;}

.title-page {bottom: 45px;font-size: 24px;}

.block_form_toggle{max-width: 100%;}

.contact_us_right .block_form_toggle {margin: 0 auto;}

.wr_review_block {margin-bottom: 0px;margin-top: 0;}

.one_review_text {margin-top: 15px;}

.one_block_img {margin-top: 40px;margin-bottom: 30px;}

.error-img {margin-right: 30px;}

.slider-index .nivo-caption{top: 50%;font-size: 28px;}

.margin_block {margin-left: 0px;margin-right: 0px;}

.trans-catalog {margin-top: 20px;}

.content-img.img-index{display: block;}

.slider-wrapper{display: none;}

.one_product_wrap {margin-top: 30px;}

.item-cat-block .hover-box {line-height: 310px;}

.cataloge_category .img-block{

  position: relative;

  width: 50%;

  margin: 0 auto;

 }

 .item-category-block .hover-box {line-height: 315px;}

 .icon-feedback-img{display: none;}

 .menu-right {font: 13px/1 'Lato-Bold', Arial, sans-serif;font-weight: bold;}

 .menu-right li{margin-left: 0!important;}

 .main-footer-menu {margin-left: 0px;}

 #footer .navbar-brand {

    color: #fff;

    font-size: 17px;

  }

  .one_block_img.border_line{

    border-top: 1px solid #ccc;

    padding-top: 20px;

  }

  /*.popup-contact{background: #f6f6f6;margin-top: 40px;}*/

  .title-content {padding: 0 15px 0 0;}



  .footer-contact{

  display: table;

  width: 100%;

}   

  .header-contact{

  width: 100%;

} 





.logo-footer{

  display: table-cell;

  text-align: center;

  vertical-align: middle;

}

.logo-footer img{

    width: 200px;
    height: 70px;

}


  .m_logo{left: 30% !important;}

  .contact_wd, .mail-form{width: 100%;float: left;}

   .logo_ft{float: none;width: 100%;margin-bottom: 20px;}



   .mail-block-ft {
    float: none;
}

}

@media screen and (max-width: 691px){


.icon_bg{ background-image: none;}

.top-header{height: 10px;}

.logo{

    width: 70%;

}

.phone-block span{

    margin-right: 7px;

}

.menu-right{

    padding-top:50px;

    width: 620px;

}

.menu-right li a {

    padding: 5px;

}*/

.search-form{

    right: 6px;

    margin-top: 10px;    

}

.error-img {margin-right: 10px;}

}

@media screen and (max-width: 680px){

.top-header{height: 10px;}

.logo{

    width: 70%;

}

.phone-block span{

    margin-right: 7px;

}

.menu-right{

    padding-top:50px;

    width: 620px;

}



/*.menu-right li a {

     padding: 3px;

}*/

.search-form{

    right: 6px;

    margin-top: 10px;    

}

  

}

@media screen and (max-width: 640px) {

.top-header{height: 10px;}

.phone-block, .phone-block a{

    line-height: 13px;

    width: 100%;

}

.phone-block span{

    display: inline-flex;

    margin-right: 0px;

}

.contact-block{

    line-height: 10px;

    font-size: small;

}

.logo{

    width: 70%;

}

.menu-right{

    padding-top: 50px;

    width: 620px;

}

/*.menu-right li a {

    padding: 3px;

}*/

.search-form{

    right: 6px;

    margin-top: 10px;    

  }



  .table-structure {display:none;}

 .contact_us_right .contactus-pupap, .contactus-pupap {margin: 0 auto;margin-top: 30px;max-width: 100%;}

 .title-page{

  bottom: 35px;

  width: 25%;

  font-size: 18px;

  word-wrap: break-word;

}

 .thead-title, .title-none{display: block;}

 .table-structure .table thead tr td, .table-structure.tehkharakteristik .table thead tr td{display: none;}

 .table-structure .table tr td{

    padding: 0px;

    border: none;

    width: 100%!important;

    display: block;

  }

  .table-structure.tehkharakteristik .table tr td:first-child{background: #f2f2f2;}

  .table-structure.tehkharakteristik .table tr:first-child td{padding: 0;}

  .table-structure.tehkharakteristik .table tr td{padding: 10px 30px;}

  .table-structure span, .table-structure.tehkharakteristik span{padding: 10px;display: block;text-align: center;}

  .table-structure.tehkharakteristik .table tr{border-bottom: 1px solid #999595;}

  .table-structure.tehkharakteristik .table tr:hover{background: none;}

  .popup-contact .row .contact_us, .popup-contact .row .contact_us_right {width: 100%;margin: 0 auto;margin-top: 10px;}

  .block_form_toggle{max-width: 63%;}

  .owl-carousel-partners {margin-bottom: 40px;}

  .modal-dialog {width: 100%;}

  #zoom{display: none;}

  /*.img-block-zoom{display: block;}*/

  .title-content.title-min-pr {font: 19px/1.3 'Lato-Regular', Arial, sans-serif;}

}

@media screen and (max-width: 610px){





.top-header{height: 10px;}

.phone-block, .phone-block a{

    line-height: 10px;

    width: 100%;

}

.phone-block span{

    display: inline-flex;

    margin-right: 0px;

}

.contact-block{

    line-height: 10px;

    font-size: small;

}

.logo{

    width: 60%;

}

.logo_block{

    text-align: center;

    width: 80%;

    left: 280px;

    margin-top:50px;

}

.phone> i.fa.fa-mobile{

    font-size: small;

}



.search-form{

    right: 6px;

    margin-top: 0px;    

}





/*.width_togl{

    top:75px!important;

}

*/

  .toggle_menu_right{display: none;width: 170px;}

  .menu-right{display: block;text-align: left;background: rgb(255, 255, 255);}

  .toggle_block{display: block;}

  .width_togl{position: absolute;top: 60px;z-index: 1;margin-left: -10px;}

  .menu-right li {margin-bottom: 10px;margin-left: 0px; width: 170px;}

  .menu-right li a, .menu-right li a:focus{background: none;color: #343434;}

  .menu-right li a, .menu-right li span {

      display: inline-block;

      padding: 10px 30px;

      min-width: 100%;

      text-align: left;

      border-radius: 20px;

  }

  .menu-right li a, .menu-right li span{border: none;}

  .menu-right li a:hover {background: none;}

  .search-form{top: 51px;}

  .bottom-header {padding-top: 20px;}

  .block_form_toggle {max-width: 72%;}

  .menu-right {float: left;margin-top: 0px;background-color: #fff;}

  .navbar-brand.brand-category{

    display: block!important;height: 0;margin-left: 40px;

  }

  .menu-right {float: left;  padding: 15px 0;margin-top: 20px;}

  .menu-right li {margin-bottom: 0px;margin-left: 15px;display: block;}

  .menu-right li a:hover, .menu-right li a:focus {color: #00a23a;}

  .breadcrumb-block {

      text-align: center;

      /*margin-top: 0px;*/

      padding: 14px 10px;

      position: relative;

      z-index: 99;

    }

    .title-page {

      width: 15%;

      margin-top: 15px;

      position: relative;

      /*color: black;*/

      bottom: 0;

      word-wrap: break-word;

      font-size: 24px;

    }

    .breadcrumb li a {line-height: 21px;}

    .item-cat-block .hover-box {line-height: 240px;}

  }

@media screen and (max-width: 600px){

.top-header{height: 10px;}

.phone-block, .phone-block a{

      line-height: 10px;

      width: 100%;

}

.phone-block span{

      display: inline-flex;

      margin-right: 0px;

}

.contact-block{

      line-height: 10px;

      font-size: small;

}

.logo{

      width: 60%;

}



.logo_block{

      text-align: center;

      width: 80%;

      left: 280px;

      margin-top:50px;

}



.phone> i.fa.fa-mobile{

      font-size: small;

}



.search-form{

      right: 6px;

      margin-top: 28px;    

}



.menu-right{

      margin-top: 20px;

      width: 170px;

}

   .title-block {margin-top: 30px;}

  /*.search-form {top: 48px;}*/

  .search-form {top: 23px;}

  .title-page.title_min_page {font-size: 41px;}

  .slider-index .title-page {bottom: 100px!important;}

    #page_wrapper {padding-bottom: 0px;}

  }

  

  @media screen and (max-width: 568px){

.search-form{

      right: 6px;

      margin-top: 0px!important;    

}

   .modal-dialog {width: 100%;}

   .wr_contact:last-child>.col-lg-4 {

      border-top: 1px solid #000;

      padding: 0px 10px 10px 0;

    }

    .contact-agency li:before {

     margin-bottom: 11px;

    }

    .one_block_img {

      margin-top: 20px;

      margin-bottom: 10px;

    }

    .menu-right li a:hover, .menu-right li.active span {

      background: transparent;

      color: #000000;

    }

    .mape {height: 250px;}

    .title-block {margin-top: 35px;}

    .search-form {top: 45px;right: 23px;}

    /*.partners.partners-index{margin-bottom: 80px;}*/

    .title-page, .title-page.title_min_page { color: black;}

    .slider-index .title-page {bottom: 0px!important;}

    .breadcrumb-block {

    text-align: center;

    margin-top: 0px;

    padding: 14px 10px;

    position: relative;

    z-index: 99;

}

  }

   

@media screen and (max-width: 560px){

    .block_form_toggle {max-width: 72%;}

    .zoom-block{width: 100%;}

    .item-cat-block .hover-box {line-height: 230px;}

  .search-form{

      right: 6px;

      margin-top: 0px!important;    

  }

  }



  @media screen and (max-width: 586px){

.top-header{height: 10px;}

.bottom-header{

  padding-top: 0px;

  padding-bottom: 5px;

}

.phone-block, .phone-block a{

      line-height: 10px;

      width: 100%;



}

.phone-block span{

      display: inline-flex;

      margin-right: 0px;

}

.contact-block{

      line-height: 10px;

      font-size: small;

      display: none;

}

.logo{

      width: 80%;

}

.logo_block{

      text-align: center;

    width: 100%;

    left: 200px;

    margin-top: 30px;

    margin-bottom: 15px;

}

.phone> i.fa.fa-mobile{

      font-size: small;

}

.search-form{

      right: 6px;

      margin-top: 28px;    

}



.menu-right{

     margin-top: 20px;

     width: 170px;

}



.width_togl{

     top:70px;

}    

  }





@media screen and (max-width: 515px){

.top-header{height: 10px;}

.phone-block, .phone-block a{

      line-height: 10px;

      width: 100%;

}

.phone-block span{

      display: inline-flex;

      margin-right: 0px;

}

.contact-block{

      line-height: 10px;

      font-size: small;

}

.logo_block{

      text-align: center;

      width: 100%;

      left: 160px;

      margin-top:50px;

}

.phone> i.fa.fa-mobile{

      font-size: small;

}

.search-form{

      right: 6px;

      margin-top: 8px;    

}

.menu-right{

      margin-top: 20px;

      width: 170px;

}



  .item-product-block .hover-box {line-height: 200px;}

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

  .error-img {margin-right: 0px;text-align: center;}

  .er_name {font: 52px/1 'Lato-Light', Arial, sans-serif;}

  .er_number {font: 97px/1 'Lato-Black', Arial, sans-serif;}

  .error-wr .link_cataloge {margin: 0 auto;margin-top: 20px;}

  .copyright p{float: none;line-height: 30px;}

  .block_form_toggle {max-width: 79%;}

  .slider-index .nivo-caption {font-size: 21px;}

  /*.logo_block{width: 100%;text-align: center;}*/

  .search-form {top: 65px;}

  .leftbar-nav .dropmenu_list.active:before{margin-top: 5px;}

  }

@media screen and (max-width: 480px){

.top-header{height: 10px;}

.phone-block, .phone-block a{

      line-height: 10px;

      width: 100%;

}

.phone-block span{

      display: inline-flex;

      margin-right: 0px;

}

.contact-block{

      line-height: 10px;

      font-size: smaller;

}

.logo_block{

      text-align: center;

      width: 90%;

      left: 140px;

      margin-top:50px;

}

 .phone> i.fa.fa-mobile{

      font-size: small;

}

.search-form{

      right: 6px;

}

.menu-right{

      margin-top: 20px;

      width: 170px;

}

  .title-page {

    font: 20px 'Lato-Light', Arial, sans-serif;

    width: 16%;

    margin-top: 20px;

    display: block;

    line-height: 22px;

  }

  .block_form_toggle {max-width: 85%;}

  .mape{height: 400px;}

    .pagination-block.pagination-block-top {float: left; margin: 60px 0 40px 22%;}

  }

@media screen and (max-width: 460px){

.top-header{height: 10px;}

.phone-block, .phone-block a{

    line-height: 10px;

    width: 100%;

}

.phone-block span{

    display: inline-flex;

    margin-right: 0px;

}

.contact-block{

    line-height: 10px;

    font-size: smaller;

}

.logo_block{

    text-align: center;

    width: 100%;

    left: 140px;

    margin-top:50px;

}

.phone> i.fa.fa-mobile{

    font-size: small;

}

.search-form{

    right: 6px;

}

.menu-right{

    margin-top: 20px;

    width: 170px;

}



   #header .navbar-inverse .navbar-toggle .icon-bar {background-color: #000;}

   .i_news_block, .text_news_block{float: none;width: 100%;clear: both;}

   .item-product-block .hover-box {line-height: 170px;}

   .search-form {top: 65px;}

   .title_present {font: 24px/1 'Lato-Black', Arial, sans-serif;}

   .pad_none.center-position .col-lg-4{width: 100%;margin-bottom: 20px;}

   .block_form_toggle {max-width: 90%;}

   .item-cat-block .hover-box {line-height: 175px;}

}



@media screen and (max-width: 420px){

.top-header{height: 10px;}

.phone-block, .phone-block a{

    line-height: 10px;

    width: 100%;

}

.phone-block span{

    display: inline-flex;

    margin-right: 0px;

}

.contact-block{

    line-height: 10px;

    font-size: smaller;

}



.logo_block{

    text-align: center;

    width: 100%;

    right: -130px;

    margin-top:50px;

}

.phone> i.fa.fa-mobile{

    font-size: small;

}

.search-form{

    right: 6px;

}



.menu-right{

   margin-top: 20px;

   width: 170px;

}

.block_form_toggle {max-width: 100%;}

 }





@media screen and (max-width: 380px){

.top-header{height: 10px;}

.phone-block, .phone-block a{

    line-height: 10px;

    width: 100%;

}

.phone-block span{

    display: inline-flex;

    margin-right: 0px;

}

.contact-block{

    line-height: 10px;

    font-size: smaller;

}

.logo_block{

    text-align: center;

    width: 90%;

    right: -130px;

    margin-top:50px;

}

.phone> i.fa.fa-mobile{

    font-size: small;

}

.menu-right{

   margin-top: 20px;

   width: 170px;

}



   .logo_ft{float: none;width: 100%;margin-bottom: 20px;}

   .search-form {

      top: 42px;

      right: 27px;

    }

    .mail_form {

      width: 250px;

    }

   .bottom-header {padding-top: 0px;padding-bottom: 0;}

   .menu-right {

      float: left;

      background-color: #fff;

    }

   .contact_wd, .mail-form{width: 100%;float: left;}

   .product_category .col-lg-4 {width: 100%;}

   .item-product-block .hover-box {line-height: 280px;}

   .sertifikate_wr {padding: 40px 0 0;}

   .copyright{font-size: 10px; text-align: center;}

   .contactus-popup:hover{background: #efd600;}

   .contact_us_right .contactus-popup:hover{background: #00a23a;color: #ffffff;}

   .one_block_img {margin-bottom: 0px;}

   .icon-feedback-img{display: none;}

   #feedback-popup .modal-body {min-height: 660px;}

   .mape {margin-top: 25px;}

   .feedback-popup .one_block_img {margin-bottom: 25px;}

   .text_in_center{margin-bottom: 10px;}

   .logo_block{padding-top: 30px;}

   .item-cat-block .hover-box {line-height: 310px;}

   #feedback-manager .modal-header .close {

      margin-right: -10px;

    }

    .popup-contact.popup_top {margin-top: -65px;position: relative;z-index: 999;}

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

    .wr_contact:last-child>.col-lg-4{

      border-top: 1px solid #000;

      padding: 0px 10px 10px 0;

    }

    .wr_contact .contact-agency {

    margin-top: 20px;

    padding-top: 10px;

  }

  .title-content{margin-bottom: 10px;}

  .one_block_img{margin-top: 20px;margin-bottom: 15px;}

  .sertifikate_wr .wr_review_block:last-child {

    border-top: none;

  }

  .popup-contact.popup_top {

    margin-top: 15px;

  }

  .top-footer {

    padding: 25px 0 25px;

  }

  .header-main{

    padding: 25px 0 25px;

  }

}

@media screen and (max-width: 320px){

.owl-carousel.owl-carousel-partners .owl-controls .owl-nav .owl-prev, .owl-carousel.owl-carousel-partners .owl-controls .owl-nav .owl-next{top: -50px;}

.item-product-block .hover-box { line-height: 240px;}

/*.mail_form {width: 275px;}*/

.menu-right {margin-top: 25px;}

.partners .line_title {margin-top: 35px;}

.owl-carousel .owl-controls .owl-nav .owl-prev, 

.owl-carousel .owl-controls .owl-nav .owl-next {

    top: 35%;

}

.owl-carousel-product .owl-nav {opacity: 1;}

.owl-carousel .owl-controls .owl-nav .owl-next {right: 45px;background-position: -30px 0px;}

.owl-carousel .owl-controls .owl-nav .owl-prev {left: -60px;background-position: 20px 0px;}

.owl-carousel .owl-controls .owl-nav .owl-next:hover {background-position: -122px 0%;}

.owl-carousel .owl-controls .owl-nav .owl-prev:hover {background-position: -74px 2%;}

.item-cat-block .hover-box {line-height: 225px;}

.slider-index .title-page {bottom: 0px!important;}

.footer-contact {margin-top: 0px;}

.contact-agency-wrap {

  margin-top: 15px;

  text-align: center;

}



.top-header{height: 10px;}



.phone-block, .phone-block a{

    line-height: 10px;

    width: 100%;

}

.phone-block span{

    display: inline-flex;

    margin-right: 0px;

}

.contact-block{

    line-height: 10px;

    font-size: smaller;

}

.logo_block{

    text-align: center;

    width: 90%;

    right: -130px;

    top:15px;

}

.phone> i.fa.fa-mobile{

    font-size: small;

}

.menu-right{

  width:170px;

}



.bg_search {margin-top: -2px;}

.search {background: url("../images/icon.png") -44px -2px no-repeat;width: 15px;height: 15px;}

/*.phone-block .phone>.fa {line-height: 25px;}*/

.one_block_img {

    margin-top: 10px;

    margin-bottom: 0px;

  }

.link_cataloge, .link_cataloge:focus{margin-top: 20px;}

.contact-agency li:before {margin-bottom: 8px;}

.mape{height: 250px;}

#cboxNext {right: 0px;}

#cboxPrevious {left: -0px;}

.open-s {margin-bottom: 15px;}

/*.search-form {top: 39px!important;right: 23px;}*/

.search-form {

    top: 49px!important;

    right: 20px;

}

.mail_form {height: 35px;}

.owl-carousel .owl-controls .owl-nav .owl-next {right: -45px;}

.phone-block .mail>.fa {color: #89898a;margin-right: 5px;}

#protokol .modal-dialog, #type .modal-dialog, #coden .modal-dialog, #marken .modal-dialog {

    width: 100%;

    margin: 40px auto;

}

.partners.partners-index {

    background: #f6f6f6;

    padding: 20px 0 0px;

    margin-bottom: 0px;

}

.owl-carousel.owl-carousel-partners .owl-controls .owl-nav .owl-prev, .owl-carousel.owl-carousel-partners .owl-controls .owl-nav .owl-next {

    top: -35px;

}

.working {margin-bottom: 15px;}

#thank .modal-dialog {width: 97%;}

.pagination-box.search_box_pg{

    padding: 0;

    height: 120px;

  }

.pagination-box.search_box_pg .pagination {

    margin: 0 0 20px 0;

  }

  #page_wrapper {padding-bottom: 50px;}

}

/*//pravki*/

.one_block_news .text_news_block p {overflow: hidden;}

.drop_block {

  -webkit-transition: all .4s ease-in-out;

  -moz-transition: all .4s ease-in-out;

  -o-transition: all .4s ease-in-out;

  transition: all .4s ease-in-out;

}

.drop_block:hover,.drop_block.active {background: var(--main-red-color); color:#fff;}

.inform-block li {height:auto;padding: 0}

.inform-block li a {

  position: relative;

  display: block;

  padding-left: 45px;

}

.inform-block li a:after {

  position: absolute;

  top:0;

  left:0;

  margin: 0;

}

.img-block .link-icon {

  position: absolute;

  top:50%;

  right: 0;

  left:0;

  margin: -35px auto auto;

}

.top-header.open-nav {z-index: 10;}

/*.wr_news {padding-bottom: 15px;}*/

.contact-agency li:before {width: 25px;}

.pagination-box {width: 100%;overflow: hidden;padding: 25px 0;text-align: center;}

.pagination-box .pagintaion {

  float: none;

  display: inline-block;

}

.pagination > li > a, .pagination > li > span {color:#919191;}

.pagination > .active > a, .pagination > .active > span, .pagination > .active > a:hover, .pagination > .active > span:hover, .pagination > .active > a:focus, .pagination > .active > span:focus {

  background: none;color:#00a23a;

}

.pagination > li > span:hover {color:#919191;}

.wr_review_block {margin-bottom: 20px;}

.wr_contact .one_block_img img {height: auto;}

.owl-carousel-partners .item {height: 100px;position: relative;}

.owl-carousel .owl-item img {position: absolute;top: 0;bottom: 0;left:0;right:0;margin:auto;}

@media (max-width: 1200px) {

.slider-index {left: 0;margin: 0;width: 100%;}

  .slider-index .title-page {width: 100%;font-size: 32px;bottom: 50px;}

}

@media (max-width: 768px) {

  #map {height: 500px;}

  .slider-index .title-page {font-size: 18px;bottom: 70px;}

  .modal-dialog {margin-top: 40px;}

}

@media (max-width: 535px) {

  .cataloge_category,.equipment {padding-bottom: 45px;}

  .production-inform {padding-top: 15px;}

  /*.menu-right {margin-top: 20px;}*/

  .logo_block {padding-top: 0;}

  .search-form {

    top: 48px;

  }
}

/*//pravki*/

.feedb_bottom_form{

  float: none;

    margin: 0 auto;

}

.table > tbody > tr > th, .table > tfoot > tr > th, .table > thead > tr > td, .table > tbody > tr > td, .table > tfoot > tr > td {

    padding: 4px;

}

/*.wrap_blocktable{margin-left: -30px;}*/

.table-structure .table tr td:first-child {

    /*width: auto;*/

    text-align: center;

}

/*

    Colorbox Core Style:

    The following CSS is consistent between example themes and should not be alte#ed164e.

*/

#colorbox, #cboxOverlay, #cboxWrapper{position:absolute; top:0; left:0; z-index:9999; /*overflow:hidden;*/}

#cboxWrapper {max-width:none;}

#cboxOverlay{position:fixed; width:100%; height:100%;}

#cboxMiddleLeft, #cboxBottomLeft{clear:left;}

#cboxContent{position:relative;}

#cboxLoadedContent{overflow:auto; -webkit-overflow-scrolling: touch;}

#cboxTitle{margin:0;}

#cboxLoadingOverlay, #cboxLoadingGraphic{position:absolute; top:0; left:0; width:100%; height:100%;}

#cboxPrevious, #cboxNext, #cboxClose, #cboxSlideshow{cursor:pointer;}

.cboxPhoto{float:left; margin:auto; border:0; display:block; max-width:none; -ms-interpolation-mode:bicubic;}

.cboxIframe{width:100%; height:100%; display:block; border:0; padding:0; margin:0;}

#colorbox, #cboxContent, #cboxLoadedContent{box-sizing:content-box; -moz-box-sizing:content-box; -webkit-box-sizing:content-box;}

/* 

    User Style:

    Change the following styles to modify the appearance of Colorbox.  They are

    orde#ed164e & tabbed in a way that represents the nesting of the generated HTML.

*/

#cboxOverlay{background:#000; opacity: 0.6!important; filter: alpha(opacity = 60);}

#colorbox{outline:0;}

    #cboxContent{margin-top:32px; overflow:visible; background:#000;}

        .cboxIframe{background:#fff;}

        #cboxError{padding:50px; border:1px solid #ccc;}

        #cboxLoadedContent{background:#000; padding:1px;}

        #cboxLoadingGraphic{background:url("../images/loading.gif") no-repeat center center;}

        #cboxLoadingOverlay{background:#000;}

        #cboxTitle{position:absolute; top:-22px; left:0; color:#000;}

        #cboxCurrent{position:absolute; top:-22px; right:205px; text-indent:-9999px;}

        /* these elements are buttons, and may need to have additional styles reset to avoid unwanted base styles */

        #cboxPrevious, #cboxNext, #cboxSlideshow, #cboxClose {border:0; padding:0; margin:0; overflow:visible; text-indent:-9999px;}

         /*width:20px; height:20px; position:absolute; top:-20px; background:url("../images/controls.png") no-repeat 0 0;}*/

        

        /* avoid outlines on :active (mouseclick), but preserve outlines on :focus (tabbed navigating) */

        #cboxPrevious:active, #cboxNext:active, #cboxSlideshow:active, #cboxClose:active {outline:0;}

        #cboxPrevious{background-position:0px 0px; right:44px;}

        #cboxPrevious:hover{background-position:0px -25px;}

        #cboxNext{background-position:-25px 0px; right:22px;}

        #cboxNext:hover{background-position:-25px -25px;}

        #cboxClose{background-position:-50px 0px; right:0;}

        #cboxClose:hover{background-position:-50px -25px;}

        .cboxSlideshow_on #cboxPrevious, .cboxSlideshow_off #cboxPrevious{right:66px;}

        .cboxSlideshow_on #cboxSlideshow{background-position:-75px -25px; right:44px;}

        .cboxSlideshow_on #cboxSlideshow:hover{background-position:-100px -25px;}

        .cboxSlideshow_off #cboxSlideshow{background-position:-100px 0px; right:44px;}

        .cboxSlideshow_off #cboxSlideshow:hover{background-position:-75px -25px;}



