

.button {
  position: relative;
  margin: 0;
  padding: 8px 17px;
  border: 0;
  white-space: nowrap;
  color: inherit;
  display: inline-block;
  cursor: pointer;
  text-transform: uppercase;
  text-decoration: none;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.button.t-1 {
  background: #2194cc;
  color: #fff;
  width: 100%;
  font-weight: bold;
  height: 37px;
  border: 1px solid #2194cc;
}

.button.t-1:hover {
  background: transparent;
  color: #2194cc;
}

.button.t-2 {
  color: #b7bfc2;
  font-size: 18px;
  display: inline-block;
  border: 1px solid;
  border-color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.7);
  font-family: 'PTSansNarrow', Arial, sans-serif;
  padding: 10px 51px;
  color: #454545;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}

.button.t-2:hover {
  background: transparent;
  color: #b7bfc2;
}

.button.t-3 {
  background: transparent;
  color: #0C0000;
  font-size: 16px;
  display: inline-block;
  border: 1px solid #FC0;
  background: #FC0;
  padding: 8px 43px;
  text-transform: none;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}

.button.t-3:hover {
  background: transparent;
  color: #fff;
}

.button.t-4 {
  background: #2194cc;
  color: #fff;
  font-size: 16px;
  display: inline-block;
  border: 1px solid #2194cc;
  padding: 10px 35px;
  text-transform: none;
  white-space: normal;
  text-align: center;
  font-family: 'PTSansNarrow', Arial, sans-serif;
  text-transform: uppercase;
  font-size: 20px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}

.button.t-4:hover {
  background: transparent;
  color: #2194cc;
}

.button.t-5 {
  background: #2194cc;
  color: #fff;
  font-weight: normal;
  display: inline-block;
  text-transform: none;
  padding: 6px 24px;
  height: auto;
}

.button.t-5:hover {
  background: #1b8bc1;
}

.button.t-6 {
  border: 1px solid #7cb257;
  background: #7cb257;
  text-transform: none;
  font-size: 24px;
  padding: 4px 30px;
  height: auto;
  color: #fff;
  font-family: 'PTSansNarrow', Arial, sans-serif;
}

.button.t-6:hover {
  background: transparent;
  color: #7cb257;
}

.button.t-7 {
  border: 1px solid #7cb257;
  background: #7cb257;
  text-transform: none;
  font-size: 14px;
  padding: 4px 20px;
  height: auto;
  color: #fff;
  font-family: 'PTSansNarrow', Arial, sans-serif;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}

.button.t-7:hover {
  background: transparent;
  color: #7cb257;
}

.e-select {
  display: none;
}

.select {
  position: relative;
  width: 100%;
  *height: auto;
  margin: 0;
  height: 37px;
}

.select.t-1 .select-input {
  padding: 8px 30px 8px 17px;
  border: 1px solid #fff;
  color: #fff;
}

.select.t-1 .select-input:after {
  position: absolute;
  right: 10px;
  top: 50%;
  margin-top: -2px;
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #fff;
}

.select.t-1 .select-list {
  background: #fff;
  background: rgba(255, 255, 255, 0.8);
}

.select.t-1 .active .select-list {
  border: 1px solid #fff;
  overflow-y: visible;
  max-height: 280px;
}

.select.t-2 .select-input {
  padding: 8px 30px 8px 17px;
  border: 1px solid #dedede;
  color: #454545;
}

.select.t-2 .select-input:after {
  position: absolute;
  right: 10px;
  top: 50%;
  margin-top: -2px;
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #454545;
}

.select.t-2 .select-list {
  background: #fff;
}

.select.t-2 .active .select-list {
  border: 1px solid #dedede;
  overflow-y: visible;
  max-height: 280px;
}

.select-container .select-input {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  -ms-text-overflow: ellipsis;
  -mos-text-overflow: ellipsis;
  -webkit-text-overflow: ellipsis;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
  position: relative;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}

.select-container .select-input:after {
  content: '';
  position: absolute;
  right: 10px;
}

.select-container .select-list {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 100%;
  height: 0;
  overflow: hidden;
  z-index: 5;
  margin-top: -1px;
  -webkit-border-top-right-radius: 0;
  -webkit-border-bottom-right-radius: 5px;
  -webkit-border-bottom-left-radius: 5px;
  -webkit-border-top-left-radius: 0;
  -moz-border-radius-topright: 0;
  -moz-border-radius-bottomright: 5px;
  -moz-border-radius-bottomleft: 5px;
  -moz-border-radius-topleft: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  border-top-left-radius: 0;
  -moz-background-clip: padding-box;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.select-container.active .select-input {
  -webkit-border-top-right-radius: 5px;
  -webkit-border-bottom-right-radius: 0;
  -webkit-border-bottom-left-radius: 0;
  -webkit-border-top-left-radius: 5px;
  -moz-border-radius-topright: 5px;
  -moz-border-radius-bottomright: 0;
  -moz-border-radius-bottomleft: 0;
  -moz-border-radius-topleft: 5px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 5px;
  -moz-background-clip: padding-box;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}

.select-container.active .select-list {
  height: auto;
}

.select-container .select-item {
  cursor: pointer;
  padding: 8px 17px;
  position: relative;
}

#colorbox,
#cboxOverlay,
#cboxWrapper {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  overflow: hidden;
}

#cboxWrapper {
  max-width: none;
  background: #fff;
}

#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;
}

#colorbox {
  background: #fff;
  -webkit-box-shadow: 0px 0px 15px 2px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px 0px 15px 2px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 0px 15px 2px rgba(0, 0, 0, 0.3);
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  outline: 0;
  left: 0px !important;
  right: 0!important;
  margin: 0 auto!important;
}

#cboxContent {
  background: #fff;
}

.cboxIframe {
  background: #fff;
}

#cboxError {
  padding: 50px;
  border: 1px solid #ccc;
}

#cboxTitle {
  position: absolute;
  bottom: 4px;
  left: 0;
  text-align: center;
  width: 100%;
  color: #949494;
}

#cboxCurrent {
  position: absolute;
  bottom: 4px;
  left: 58px;
  color: #949494;
}

#cboxLoadingGraphic {
  background: url("/static/images/loading_w.gif") no-repeat center center;
}

#cboxClose {
  position: absolute;
  font-family: 'PTSansNarrow', Arial, sans-serif;
  right: 31px;
  top: 21px;
  font-size: 17px;
  background: #fff;
  line-height: 21px;
  border: 1px solid #2194cc;
  text-align: center;
  font-weight: bold;
  text-decoration: none;
  padding: 0px 8px;
  color: #2194cc;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}

.scroll_btn {
  cursor: pointer;
  width: 78px;
  height: 108px;
  position: absolute;
  top: -9px;
  right: 0;
  background: url("/static/images/scroll_button.png") 0 0 no-repeat;
  z-index: 2;
}

.sale_btn {
  cursor: pointer;
  width: 88px;
  height: 106px;
  position: fixed;
  top: 50%;
  margin-top: -53px;
  right: 0;
  background: url("/static/images/deals_button.png") 0 0 no-repeat;
  z-index: 2;
}

.bootstrap-touchspin {
  position: relative;
  width: 80px;
  display: inline-block;
  vertical-align: middle;
  overflow: hidden;
  margin-left: 5px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}

.bootstrap-touchspin .input-group-btn-vertical {
  position: absolute;
  right: 0;
  top: 0;
}

.bootstrap-touchspin .form-control {
  padding: 4px 20px 4px 15px;
  border: 0;
  width: 100%;
  -webkit-box-shadow: inset 0 1px 1px 1px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: inset 0 1px 1px 1px rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 1px 1px 1px rgba(0, 0, 0, 0.2);
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}

.bootstrap-touchspin .btn {
  display: block;
  float: none;
  width: 21px;
  height: 12px;
  background: #7cb257;
  color: #fff;
  border: 0;
  overflow: hidden;
  position: relative;
}

.bootstrap-touchspin .btn:after {
  position: absolute;
}

.bootstrap-touchspin .btn + .btn {
  margin-top: 1px;
}

.bootstrap-touchspin .bootstrap-touchspin-up:after {
  content: '+';
  top: -3px;
  left: 8px;
}

.bootstrap-touchspin .bootstrap-touchspin-down:after {
  content: '-';
  top: -3px;
  left: 9px;
}

.page_content ul {
  list-style-type: disc;
  padding-left: 40px;
  margin: 1em 0;
}

.page_content ul li {
  list-style-type: disc;
}

.page_content ol {
  list-style-type: decimal;
  padding-left: 40px;
  margin: 1em 0;
}

.page_content ol li {
  list-style-type: decimal;
}

.b-top-line {
  background: #1d92cb url("/static/images/stroke_bg.png");
  position: relative;
  font-family: 'PTSansNarrow', Arial, sans-serif;
  border-bottom: 1px solid #fff;
  z-index: 3;
  -webkit-box-shadow: 1px 8px 10px -6px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 1px 8px 10px -6px rgba(0, 0, 0, 0.2);
  box-shadow: 1px 8px 10px -6px rgba(0, 0, 0, 0.2);
}

.b-top-line:after {
  content: '';
  position: absolute;
  top: 20px;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.b-inner-line {
  font-family: 'PTSansNarrow', Arial, sans-serif;
  position: relative;
  z-index: 1;
  background: #fff;
  overflow: hidden;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-shadow: 1px 10px 10px -6px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 1px 10px 10px -6px rgba(0, 0, 0, 0.1);
  box-shadow: 1px 10px 10px -6px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  height: 76px;
}

.b-main-menu {
  padding: 6px 0;
  display: inline-block;
  vertical-align: top;
  float: left;
  position: relative;
  z-index: 1;
}

.b-main-menu__holder {
  font-size: 0;
}

.b-main-menu__item {
  text-transform: uppercase;
  display: inline-block;
  vertical-align: top;
  position: relative;
  font-size: 14px;
  line-height: 1;
  color: #fff;
}

.b-main-menu__item-link {
  text-decoration: none;
  color: inherit;
  display: block;
  padding: 7px 10px;
}

.b-main-menu__item-link:hover {
  text-decoration: underline;
}

.b-main-menu__item_selected .b-main-menu__item-link {
  background: #ae2626;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}

.b-main-menu__item_selected:hover .b-main-menu__item-link {
  text-decoration: none;
}

.b-site-tools {
  font-size: 0;
  float: right;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  z-index: 1;
}

.b-site-tools__item {
  display: inline-block;
  font-size: 14px;
  text-transform: uppercase;
  color: #fff;
  padding-right: 10px;
}

.b-site-tools__item-link {
  color: inherit;
  text-decoration: none;
  display: block;
}

.b-site-tools__item-link:hover .b-site-tools__item-title {
  text-decoration: underline;
}









.b-site-tools__item-ico {
  display: inline-block;
  vertical-align: top;
  position: relative;
  padding-top: 3px;
  margin-right: 14px;
  text-align: center;
  width: 40px;
  height: 35px;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.b-site-tools__item-ico:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 22px;
  background: #fff;
}

.b-site-tools__item-ico:after {
  position: absolute;
  left: 0;
  bottom: 0;
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 13px solid #fff;
}

.b-site-tools__item-title {
  display: inline-block;
  vertical-align: middle;
  margin-top: 10px;
}

.b-site-tools__item + .b-site-tools__item {
  margin-left: 30px;
}

.b-services-menu {
  margin-left: 10px;
  display: inline-block;
  vertical-align: middle;
  padding: 20px 0;
  font-size: 0;
}

.b-services-menu__holder {
  display: inline-block;
  vertical-align: middle;
  font-size: 0;
}

.b-services-menu__item {
  display: inline-block;
  vertical-align: middle;
  font-size: 23px;
  color: #454545;
}

.b-services-menu__item:hover {
  color: #2194cc;
}

.b-services-menu__item-link {
  color: inherit;
  text-decoration: none;
  display: block;
}

.b-services-menu__item-ico {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  margin-right: 5px;
  text-align: center;
  width: 63px;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.b-services-menu__item-title {
  display: inline-block;
  vertical-align: middle;
}

.b-services-menu__item + .b-services-menu__item,
.b-services-menu__holder + .b-services-menu__holder {
  margin-left: 15px;
}

.b-header-phone {
  line-height: 1;
  display: inline-block;
  vertical-align: middle;
  padding: 20px 0;
  margin-left: 10px;
}

.b-header-phone__item {
  display: inline-block;
  vertical-align: top;
  text-align: right;
}

.b-header-phone__item + .b-header-phone__item {
  margin-left: 12px;
}

.b-header-phone__code {
  font-size: 18px;
  display: inline-block;
  vertical-align: middle;
  margin: 3px 5px 0 0;
}

.b-header-phone__number {
  font-size: 36px;
  vertical-align: top;
  display: inline-block;
}

.b-header-phone__holder {
  display: inline-block;
  vertical-align: top;
}

.t-inner .b-header-phone__number {
  font-size: 30px;
}

.b-main-banner {
  -webkit-box-shadow: 1px 10px 10px -6px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 1px 10px 10px -6px rgba(0, 0, 0, 0.2);
  box-shadow: 1px 10px 10px -6px rgba(0, 0, 0, 0.2);
  position: relative;
}

.b-main-banner:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("/static/images/stroke_bg.png");
}

.b-main-banner__holder {
  z-index: 1;
  background: url("/static/images/banner.jpg") no-repeat fixed;
  background-position: 50% 0;
  width: 100%;
  text-align: center;
  border-bottom: 1px solid #fff;
  position: relative;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

.b-main-banner__button {
  margin: 6% 0 9%;
}



.b-title h1:before,
.b-title h2:before {
  right: 100%;
}

.b-title h1:after,
.b-title h2:after {
  left: 100%;
}

.b-title.b-title_light h1,
.b-title.b-title_light h2 {
  color: #fff;
    text-align: center;
    padding-top: 30px;
}
.b-title.b-title_light1 h1,
.b-title.b-title_light1 h2 {
  color: #000;
    text-align: center;
    padding-top: 30px;
}

.b-title.b-title_light h1:before,
.b-title.b-title_light h2:before,
.b-title.b-title_light h1:after,
.b-title.b-title_light h2:after {
  background: #fff;
  background: rgba(255, 255, 255, 0.2);
}









.b-services {
  background: url("/img/services_bg.jpg") no-repeat;
  background-position: center center;
  width: 100%;
  position: relative;
  padding: 3% 0;
  border-bottom: 1px solid #fff;
  -webkit-box-shadow: 1px 10px 10px -6px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 1px 10px 10px -6px rgba(0, 0, 0, 0.2);
  box-shadow: 1px 10px 10px -6px rgba(0, 0, 0, 0.2);
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

.b-services:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("/static/images/stroke_bg.png");
}

.b-services__holder {
  position: relative;
  z-index: 1;
  padding: 4% 5% 3%;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
}

.b-services__row {
  display: inline;
  float: left;
  width: 100%;
  margin: 0 0%;
}

.b-services__item {
  text-align: center;
  color: #fff;
  padding: 0 2%;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: inline;
  float: left;
  width: 50%;
  margin: 0 0%;
}
.b-services__item1 {
  text-align: center;
  color: #fff;
  padding: 0 2%;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: inline;
  float: left;
  width: 33%;
  margin: 0 0%;
}

.b-services__item__link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.b-services__item__holder {
  padding: 0 1%;
  margin: 10% 0 0;
}

.b-services__item__text {
  margin: 10% 0 0;
  min-height: 115px;
}

.b-services__item__title {
  font-size: 24px;
  font-family: 'PTSansNarrow', Arial, sans-serif;
}

.b-services__item__button {
  margin: 7% 0 0;
}

.b-services__item__image {
  border: 3px solid #8ec9e5;
  font-size: 0;
  display: inline-block;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}

.b-services__item__image:hover {
  border-color: #cce7f3;
}

.b-services__item__image img {
  max-width: 100%;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}

.b-services__item + .b-services__item,
.b-services__row + .b-services__row {
  border-left: 1px dashed;
  border-color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}

.b-advantages {
  padding: 3% 0;
  text-align: center;
}

.b-advantages__holder {
  /* padding: 4% 5% 1%; */
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  border-bottom: 1px dashed #dedede;
}

.b-advantages__row {
  display: inline;
  float: left;
  width: 50%;
  margin: 0 0%;
}

.b-advantages__item {
  /* padding: 0 2%; */
  padding: 4% 3% 1%;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: inline;
  float: left;
  width: 50%;
  margin: 0 0%;
}

.b-advantages__item__title {
  font-size: 24px;
  font-family: 'PTSansNarrow', Arial, sans-serif;
  color: #CC2121;
  line-height: 1;
  margin: 17% 0 7%;
}

.b-advantages__item__image {
  height: 120px;
  font-size: 0;
  width: 100%;
  line-height: 120px;
}

.b-advantages__item__image img {
  display: inline-block;
}

.b-advantages__item + .b-advantages__item,
.b-advantages__row + .b-advantages__row {
  border-left: 1px dashed #dedede;
}

.b-company {
  position: relative;
  width: 100%;
  padding: 6% 0;
  background: url("/static/images/middle_banner_bg.jpg") center center fixed no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

.b-company:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("/static/images/stroke_bg.png");
}

















.b-wholesale__image {
  width: 100%;
}

.b-wholesale__button {
  margin: 30% 0 0;
}

.b-price-list {
  margin: 3% 0 0;
}

.b-price-list__title {
  font-family: 'PTSansNarrow', Arial, sans-serif;
  font-size: 24px;
}

.b-price-list__item {
  color: #2194cc;
  margin: 5px 0 0;
}

.b-price-list__item__title {
  font-size: 14px;
  width: 60%;
  float: left;
  margin: 8px 0 0;
}

.b-price-list__item__holder {
  width: 40%;
  float: left;
  overflow: hidden;
}

.b-price-list__item__price {
  line-height: 1;
  font-family: 'PTSansNarrow', Arial, sans-serif;
  font-size: 30px;
  float: right;
  position: relative;
  padding-left: 1px;
}

.b-price-list__item__price:after {
  content: '';
  position: absolute;
  bottom: 4px;
  border-bottom: 2px dotted;
  width: 9000px;
  right: 100%;
}

.b-review {
  padding: 3% 0;
  position: relative;
  z-index: 1;
}

.b-review__item {
  float: left;
  width: 515px;
  padding: 0 15px;
}

.b-review__item__image {
  float: left;
  margin-right: 15px;
  font-size: 0;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  overflow: hidden;
}

.b-review__item__info {
  overflow: hidden;
}

.b-review__item__name {
  font-size: 24px;
  font-family: 'PTSansNarrow', Arial, sans-serif;
}

.b-review__item__order {
  color: #2194cc;
}

.b-review__item__text {
  font-style: italic;
  font-size: 14px;
  margin-top: 9%;
}

.b-review__holder {
  padding: 4% 5%;
  position: relative;
}

.b-review__prev {
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -26px;
}

.b-review__next {
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -26px;
}

.b-map {
  position: relative;
}

.b-map:after {
  content: '';
  position: absolute;
  top: -20px;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 20px;
  -webkit-box-shadow: 1px 10px 10px -6px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 1px 10px 10px -6px rgba(0, 0, 0, 0.2);
  box-shadow: 1px 10px 10px -6px rgba(0, 0, 0, 0.2);
}

.b-map__holder {
  height: 390px;
}

.b-copy {
  width: 225px;
  padding-right: 10%;
  padding-left: 27px;
}

.b-copy__text {
  margin-top: 3%;
}

.b-footer-contacts {
  padding-right: 10%;
}

.b-footer-contacts__title {
  font-size: 18px;
  text-transform: uppercase;
  display: inline-block;
  vertical-align: middle;
  margin: 0 0 0 3px;
}

.b-footer-contacts__text {
  margin: 3% 0 0 27px;
}

.b-social {
  text-align: center;
  font-size: 0;
  min-width: 200px;
}

.b-social ul {
  padding: 0 20px;
}

.b-social li {
  display: inline-block;
  margin-bottom: 3px;
}

.b-social li + li {
  margin-left: 2%;
}

.b-footer-col {
  vertical-align: top;
  float: left;
  margin-bottom: 20px;
}

.b-footer-col a {
  color: inherit;
}

.b-popup-content {
  padding: 20px 30px;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.b-popup-content__title {
  padding-right: 40px;
  margin-bottom: 15px;
}

.b-popup-content__title.t-2 h2 {
  color: #2194cc;
  font-size: 30px;
  line-height: 1.2;
}

.b-form__button {
  margin-top: 25px;
}

.b-form__item + .b-form__item {
  margin-top: 6px;
}

.b-form__link {
  font-size: 16px;
  text-decoration: none;
  line-height: 1;
}

.b-form__link:hover {
  border: 0;
}

.b-form__link__icon {
  display: inline-block;
  vertical-align: middle;
  margin-right: 15px;
}

.b-form__link__title {
  display: inline-block;
  vertical-align: middle;
  width: 190px;
  font-family: 'PTSansNarrow', Arial, sans-serif;
}

.b-form__text {
  color: #a8a8a8;
}

.b-logo-inner {
  display: inline-block;
  vertical-align: middle;
  padding: 7px 0 0;
  margin: 0 4% 0 0;
}

.b-logo-inner__link {
  display: block;
}

.b-bredcrumbs {
  color: #a8a8a8;
  font-size: 12px;
  margin: 0 20px 3% 20px;
}

.b-bredcrumbs__sep {
  margin: 0 2px;
}

.b-top-filter {
  border: 1px solid #dedede;
  padding: 20px 35px;
  margin: 0 0 4%;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}

.b-top-filter__col {
  display: inline;
  float: left;
  width: 50%;
  margin: 0 0%;
}

.b-top-filter__item {
  padding: 3px;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: inline;
  float: left;
  width: 20%;
}

.b-product {
  margin: 0 0 3%;
  padding: 0 3%;
}

.b-product__spec {
  padding: 0 3% 0 0;
  display: inline;
  float: left;
  width: 41.66666667%;
  margin: 0 0%;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.b-product__spec__logo {
  float: left;
  margin: 5px 10% 0 0;
}

.b-product__spec__info {
  overflow: hidden;
}







html {
  line-height: 1;
}

ol, ul {
  /*list-style: none;*/
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}
q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

a img {
  border: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}
body{
  font-family: pfd_r; 
}
.fix{
  width: 1204px;
  margin: 0 auto;
  border: 0px solid #000fff;
}


header{
  background: url(../img/fz.jpg);
  background-position: center top;
  background-repeat: no-repeat;
  padding-top: 7px;
  padding-bottom: 207px;
}
.logo{
  
}
.header_left{
  display: inline-block;
  border: 0px solid #000;
}
.header_middle{
  display: inline-block;
  vertical-align: top;
  margin-left: 71px;
  margin-top: 3px;
  letter-spacing: 0.04em;
  border: 0px solid #000;
}
.header_right{
  display: inline-block;
  vertical-align: top;
  margin-left: 71px;
  margin-top: 3px;
  border: 0px solid #000;
}
.email_addr{
  color: #00cbff;
  font-size: 20px;
  
}

.email_addr a{
color: #00cbff;
text-decoration: none;
margin-left: 10px;
}

.phone_num{
  font-size: 20px;
  color: #00c7ff;
  font-family: pfd_m;
}
.phone_btn{
  font-size: 11px;
  font-family: pfd_b;
  color: black;
  text-transform: uppercase;
  width: 205px;
  height: 30px;
  background: #fcff00;
  display: block;
  text-align: center;
  line-height: 33px;
  margin-top: 5px;
  float: right;
  border-radius: 7px;
  text-decoration: none;
  opacity: 1;
}
.phone_btn:hover{
  opacity: 0.85;
}
.clear{
  clear: both;
}
.more{
  font-size: 167px;
  color: white;
  font-family: pfd_cl;
  vertical-align: top;
}
.offer{
  border: 0px solid #ff0000;
}
.cifri{
  margin-top: 8px;
  
}
.cifra_offer{
  font-size: 167px;
  color: white;
  font-family: pfd_cl;
  background: url('../img/more.png');
  background-repeat: no-repeat;
  background-position: left 7px;
  margin-left: 10px;
  padding-left: 20px;
  letter-spacing: -0.02em;
}
.cifr_descr{
  display: inline-block;
  color: white;
  font-size: 37px;
  text-transform: uppercase;
  line-height: 1.3;
  letter-spacing: 0.04em;
}
.avt_podp{
  display: inline-block;
  text-transform: uppercase;
  color: #0c6a82;
  font-family: pfd_l;
  font-size: 13px;
  letter-spacing: 0.03em;
  vertical-align: top;
}
.legk{
  margin-top: 78px;
  margin-left: 18px;
}
.avtobusy{
  margin-left: 120px;
  margin-top: 45px;
}
.gruzovie{
  margin-left: 100px;
  margin-top: 5px;
}
.section2{
  /* background: url('../img/screen2.jpg'); */
  background-repeat: no-repeat;
  background-position: center top;
  padding-bottom: 70px;
  background-blend-mode: multiply;
  /* padding-bottom: 30px; */
  background: url('../img/screen2.jpg') no-repeat center 0px, -webkit-linear-gradient(45deg, rgba(82,66,132,1) 0%, rgba(85,161,184,1) 81%, rgba(85,161,184,1) 100%);
}
.sectormiddle {
margin: 30px auto;
width: 1024px;
}

.sectormiddle h1, h2 {
font-size: 32px;color: #CC2121;font-weight: bold;}

.sectormiddle  ol{
 margin: 20px 0 0 20px;
 counter-reset:li;
 list-style:none;
}
.sectormiddle  li{
  margin: 0 0 13px 0;
  position:relative; /* Nicaaai eiioaeno aey iiceoeiie?iaaiey yeaiaioia */
  
}

.sectormiddle  li:before{
    content:counter(li); /* A ea?anoaa aaiiuo eniieucoai n?ao?ee */
    counter-increment:li; /* Oaaee?eaaai cia?aiea n?ao?eea ia 1 */
    position:absolute;
    top:-4px;
    left:-2em;
    padding:4px 0 0 12px;
    color:#ff0000;
	font-weight: bold;
}

.we_work{
  font-size: 26px;
  /* font-family: pfd_m; */
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-top: 68px;
  margin-left: 30px;
  line-height: 1.3;
  display: inline-block;
}
.benefits{
  display: inline-block;
  vertical-align: top;
  margin-left: 85px;
  margin-top: 62px;
}
.one_plus{
  text-align: center;
  display: inline-block;
  margin-right: 51px;
}
.benefit_podp{
  color: white;
  font-size: 14px;
  text-transform: uppercase;
  text-align: center;
  font-family: pfd_l;
  margin-top: 17px;
}
.second_line_benefits{
  margin-top: 27px;
  margin-left: 100px;
}
.v_nalichii{
  font-size: 21px;
  color: white;
  /* font-family: pfd_m; */
  text-align: center;
  text-transform: uppercase;
  margin-top: 70px;
  line-height: 1.2;
  letter-spacing: 0.03em;
}
.partners{
  margin: 0 auto;
  display: block;
  margin-top: 80px;
}
.section3{
  background: url('../img/screen3.jpg');
  background-repeat: no-repeat;
  background-position: center top;
  padding-bottom: 103px;
}
.oficial{
  color: #012332;
  font-size: 31px;
  font-family: pfd_m;
  text-transform: uppercase;
  margin-top: 48px;
  margin-left: 30px;
  letter-spacing: 0.03em;
  line-height: 1.2;
  display: inline-block;
}
.akc_block{
  
}
.akc{
  font-size: 45px;
  color: white;
  font-family: pfd_m;
  margin-top: 127px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  padding-left: 60px;
}
.garanty_p{
  font-size: 21px;
  color: white;
  font-family: pfd_m;
  text-transform: uppercase;
  margin-top: 20px;
  letter-spacing: 0.01em;
  line-height: 1.2;
  padding-left: 60px;
}
.akc_btn{
  font-family: pfd_b;
  width: 205px;
  height: 30px;
  background: #fcff00;
  text-align: center;
  line-height: 33px;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  border-radius: 7px;
  text-transform: uppercase;
  font-size: 11px;
  margin-top: 45px;
  opacity: 1;
  margin-left: 60px;
}
.akc_btn:hover{
  opacity: 0.85;
  cursor: pointer;
}
.akc_notion{
  width: 275px;
  font-size: 12px;
  line-height: 1.2;
  padding-left: 35px;
  text-indent: -4px;
  margin-top: 43px;
  letter-spacing: 0.03em;
}
.akc_notion_1{
  
  font-size: 12px;
  line-height: 1.2;
  padding-left: 35px;
  text-indent: -4px;
  margin-top: 43px;
  letter-spacing: 0.03em;
}

.cars{
  background: #fcff00;
  padding-bottom: 15px;
}
.big_garanty{
  color: #012332;
  font-size: 31px;
  text-transform: uppercase;
  display: inline-block;
  margin-top: 33px;
  margin-left: 30px;
  font-family: pfd_m;
  line-height: 1.3;
  letter-spacing: 0.01em;
}
.one_car{
  margin-left: 60px;
  margin-top: 40px;
  position: relative;
  display: inline-block;
  vertical-align: top;
  margin-right: 70px;
}
.car_name{
  font-size: 21px;
  color: white;
  background: #ff0000;
  display: inline-block;
  position: absolute;
  height: 50px;
  line-height: 55px;
  padding-left: 30px;
  padding-right: 30px;
  margin-top: 60px;
  left: -30px;
  top: 0;
}
.garanty_table{
  margin-top: 77px;
  border: 8px solid #ff0000;
  padding-top: 47px;
  padding-bottom: 10px;
}
.garanty_left{
  padding-left: 83px;
  display: inline-block;
}
.one_price{
  font-size: 23px;
  font-family: pfd_m;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-bottom: 38px;
}
.garanty_right{
  font-size: 15px;
  line-height: 1.7;
  letter-spacing: 0.03em;
  display: inline-block;
  vertical-align: top;
  width: 357px;
  margin-left: 107px;
}
.benefits_points{
  background: url('../img/screen4.jpg');
  background-repeat: no-repeat;
  background-position: center top;
  padding-bottom: 39px;
}
.one_point:first-of-type{
  margin-top: 25px !important;
}
.one_point{
  font-size: 16px;
  padding-left: 33px;
  margin-left: 35px;
  background: url('../img/star.jpg');
  background-repeat: no-repeat;
  background-position: left top;
  width: 373px;
  line-height: 1.2;
  margin-bottom: 19px;
}
.trigger{
  background: url('../img/screen5.jpg');
  background-repeat: no-repeat;
  background-position: center top;
  padding-bottom: 97px;
}
.big_trigger{
  font-size: 31px;
  font-family: pfd_m;
  text-transform: uppercase;
  color: white;
  line-height: 1.4;
  margin-left: 595px;
  display: inline-block;
  margin-top: 45px;
}
.small_trigger{
  font-family: pfd_m;
  text-transform: uppercase;
  color: white;
  line-height: 1.4;
  margin-left: 595px;
  font-size: 21px;
}
.one_center{
  width: 965px;
  text-align: center;
  margin-top: 40px;
  display: inline-block;
  vertical-align: top;
  
  border: 0px solid #000;
}
.center_name{
  font-family: pfd_m;
  font-size: 23px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.center_addr{
  font-size: 21px;
  font-family: pfd_m;
  margin: 15px 0 20px 0;
  letter-spacing: 0.02em;
  line-height: 1.2;
}
.map{
  display: block;
  height: 440px;
}
.ymaps-map{
  border-radius: 50%;
  -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    -khtml-border-radius: 50%;
}
.ymaps-b-zoom{
  display: none !important;
}
.ymaps-copyrights-legend{
  display: none !important;
}
.map2{
  margin-top: 25px;
}
.work_time{
  font-size: 28px;
  font-family: pfd_m;
  text-transform: uppercase;
  text-align: center;
}
.work_time_p{
  font-family: pfd_m;
  text-transform: uppercase;
  text-align: center;
  font-size: 23px;
  margin-top: 29px;
  letter-spacing: 0.03em;
  line-height: 1.3;
}
.big_car{
  text-align: center;
  margin-top: 80px;
  position: relative;
}
.car_text{
  color: white;
  font-size: 26px;
  font-family: pfd_m;
  text-align: left;
  background: red;
  text-transform: uppercase;
  padding-top: 15px;
  padding-bottom: 15px;
  line-height: 1;
  padding-left: 22px;
  padding-right: 19px;
  letter-spacing: 0.01em;
  
  
  display: block;
  float: left;
  width: auto;
}
.car_text_wrapp{
  position: absolute;
  top: 0;
  left: 0;
  text-align: left;
  margin-top: 250px;
  margin-left: 20px;
}
.btn_car{
  font-family: pfd_b;
  font-size: 11px;
  text-align: center;
  width: 205px;
  height: 30px;
  line-height: 33px;
  background: #fcff00;
  opacity: 1;
  cursor: pointer;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  border-radius: 7px;
  position: absolute;
  top: 0;
  left: 0;
  margin-top: 435px;
  margin-left: 290px;
}
.btn_car:hover{
  opacity: 0.85;
}

.trigger_fz{
  font-family: pfd_r;
  font-size: 41px;
  padding-left: 65px;
  text-transform: uppercase;
  margin-top: 65px;
  letter-spacing: 0.02em;
}
.form_btn{
  width: 293px;
  height: 40px;
  line-height: 45px;
  background: #fcff00;
  opacity: 1;
  cursor: pointer;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  border-radius: 7px;
  text-align: center;
  text-transform: uppercase;
  font-family: pfd_b;
}
.form_btn:hover{
  opacity: 0.85;
}
.res_p{
  font-size: 75px;
  line-height: 1.2;
  padding: 25px;
  text-align: center;
}
.status{
  text-align: center;
  margin-top: 5px;
}

@media only screen and (max-device-width: 1024px){
    .changeble_block{
        width: 300px;
    }
	.partners{
		margin-top: 80px;
		border: 0px solid #fff;
    }
	.v_nalichii{
		margin-top: 50px;
		border: 0px solid #fff000;
	}
	.garanty_p{
	  font-size: 17px;
	  color: white;
	  font-family: pfd_m;
	  text-transform: uppercase;
	  margin-top: 20px;
	  letter-spacing: 0.01em;
	  line-height: 1.2;
	  padding-left: 60px;
	}
	.we_work {
		
		border: 0px solid #fff;
	}
	.offer, .akc_block, .img_raspisanie, .work_time, .work_time_p, .big_car, .fix{
		width: 965px;
    }
	.big_trigger {
		width: 350px;
		font-size: 28px;
		
	}
	
	.small_trigger {
		width: 350px;
		font-size: 24px;
		
	}
	.map {
		border: 0px solid #000;
	}
	
	
	.benefits {
	border: 0px solid #fff;
	margin-left: 80px;
	}
	
.sectormiddle {
width: 965px;
}

.sectormiddle table {
border: 0px solid #000;
padding: 0px;
}

.sectormiddle h1, h2 {
border: 0px solid #000;
margin-left: -20px;
}
.tdsectormiddle {
display: none;
}

.sectormiddle  ol{
 margin: 20px 20px 0 0;
 counter-reset: li;
 list-style: none;
 border: 0px solid #000;
}
.sectormiddle  li{
  margin: 0 0 13px 0;
  position:relative; /* Nicaaai eiioaeno aey iiceoeiie?iaaiey yeaiaioia */
  font-size: 20px;
  text-align: justify;
}

.sectormiddle  li:before{
    content:counter(li); /* A ea?anoaa aaiiuo eniieucoai n?ao?ee */
    counter-increment:li; /* Oaaee?eaaai cia?aiea n?ao?eea ia 1 */
    position:absolute;
    top:-3px;
    left:-2em;
    padding:4px 0 0 12px;
    color:#ff0000;
	font-weight: normal;
	font-size: 28px;
}
}

.fix table {
width: 90%;
height: 300px;
margin: 20px 0 30px 30px;
font-weight: bold;
font-size: 20px;
}

.tableaccia  td{
width: 200px;
border: 0px solid #f1f1f1;
}

.news {

}

.newscontent {
width: 965px;
margin: 0 auto;
min-height: 100px;
}

.newscontent  h1{
font-size: 26px;
margin: 10px 0 20px 0;
text-decoration: underline;
}

.newscontent  p{
font-size: 20px;
margin: 10px 0 20px 0;
}



