body, html {
  padding: 0;
  margin: 0;
  height: 100%;
  cursor: default;
}

html {
  overflow-y: scroll;
}

body {
  font-family: 'ProximaNova';
  font-size: 16px;
  line-height: 1;
}

.page_blure .torholod_page_wrapper {
  -webkit-filter: blur(15px);
  filter: blur(15px);
}

.page_blure .fancybox-container--ready .fancybox-bg {
  opacity: .7;
}

.text_page h1 {
  font-size: 24px;
  color: #000;
  font-weight: 600;
}

.text_page h2 {
  font-size: 24px;
}

.text_page h3 {
  font-size: 19px;
}

.text_page p {
  font-size: 16px;
  line-height: 24px;
  margin: 20px 0;
  color: #5e5e5e;
}

.text_page strong {
  color: #5e5e5e;
}

.text_page ul {
  line-height: 24px;
  color: #5e5e5e;
  padding-left: 0;
  list-style-position: inside;
}

.text_page a {
  color: #007afa;
  text-decoration: underline;
}

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

#searchModaleForm {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  background: transparent;
}

#searchModaleForm .search_container {
  position: relative;
}

#searchModaleForm .fancybox-close-small {
  width: 40px;
  height: 44px;
  -webkit-border-radius: 0;
  border-radius: 0;
  background: transparent;
  font-size: 48px;
  color: #fff;
  right: 50px;
  top: 50px;
  -webkit-transition: all .3s ease-out;
  -o-transition: all .3s ease-out;
  transition: all .3s ease-out;
  opacity: .5;
}

#searchModaleForm .fancybox-close-small:hover {
  opacity: 1;
}

#searchModaleForm .form_content {
  padding-top: 170px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 1px solid #fff;
}

#searchModaleForm .input_wrapper {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 0;
}

#searchModaleForm .input_wrapper input {
  width: 100%;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 50px;
  line-height: 58px;
  padding: 0;
}

#searchModaleForm .input_wrapper input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.3);
}

#searchModaleForm .input_wrapper input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.3);
}

#searchModaleForm .input_wrapper input:-moz-placeholder {
  color: rgba(255, 255, 255, 0.3);
}

#searchModaleForm .input_wrapper input:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.3);
}

#searchModaleForm .button_wrapper {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 30px;
  -ms-flex: 0 0 30px;
  flex: 0 0 30px;
  padding: 0;
}

#searchModaleForm .button_wrapper input {
  width: 30px;
  height: 30px;
  background: url("../img/search_i_modal.png") no-repeat center;
  border: none;
  color: transparent;
}

#searchModaleForm .search_status {
  padding-top: 20px;
}

#searchModaleForm .search_status span {
  color: #ffffff;
  font-size: 25px;
  font-weight: 400;
  line-height: 23px;
}

#searchModaleForm .search_result {
  padding-top: 5px;
}

.pagination_wrapper {
  padding: 15px 0;
}

.pagination_wrapper .pagination_container ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.pagination_wrapper .pagination_container ul li {
  margin-right: 5px;
}

.pagination_wrapper .pagination_container ul li a,
.pagination_wrapper .pagination_container ul li span {
  height: 62px;
  width: 62px;
  text-align: center;
  line-height: 62px;
  color: #a2a2a2;
  display: block;
  border: 1px solid #ddd;
  -webkit-transition: all .3s ease-out;
  -o-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

.pagination_wrapper .pagination_container ul li a:hover {
  border-color: #c1c1c1;
  background: #e9f0fe;
  color: #032251;
}

.pagination_wrapper .pagination_container ul li.current_page a, .pagination_wrapper .pagination_container ul li.active span {
  border-color: #c1c1c1;
  background: #e9f0fe;
  color: #032251;
}

.load_more_data button {
  width: 100%;
  height: 62px;
  text-align: center;
  color: #032251;
  border: 1px solid #ddd;
  background: #fff;
}

.load_more_data button span {
  font-weight: 600;
  color: #000;
  display: inline-block;
  position: relative;
  padding-right: 35px;
}

.load_more_data button span:after {
  content: '';
  display: block;
  width: 27px;
  height: 27px;
  background: url(../img/refresh_i.png) no-repeat center;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}


.load_more_data button span.active:after {
  animation: 1s linear 0s normal none infinite running rot;
  -webkit-animation: 1s linear 0s normal none infinite running rot;
  margin-top: -13px;
}
@keyframes rot {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes rot {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.template_page_title {
  height: 82px;
  background: #032251;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
}

.template_page_title:after {
  bottom: 0%;
  left: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(255, 255, 255, 0);
  border-bottom-color: #ffffff;
  border-width: 15px;
  margin-left: -15px;
}

.template_page_title .title_wrapper span {
  color: #fff;
  font-size: 30px;
}

.other_content_title {
  overflow: hidden;
  padding: 30px 0 40px;
}

.other_content_title span {
  font-size: 24px;
  font-weight: 600;
  text-transform: uppercase;
  color: #000;
  display: inline-block;
  position: relative;
}

.other_content_title span:after {
  content: '';
  display: block;
  width: 10000px;
  height: 1px;
  background: #dcdcdc;
  position: absolute;
  right: -10015px;
  top: 50%;
  margin-top: -1px;
}

.breadcrumbs_wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 45px 0 30px;
}

.breadcrumbs_wrapper .breadcrumbs_container span {
  color: #000;
}

.breadcrumbs_wrapper .breadcrumbs_container a{
  color: #adadad;
}
.breadcrumbs_wrapper .breadcrumbs_container span:last-child {
  display: none;
}

.breadcrumbs_wrapper .breadcrumbs_container span {
  margin: 0 7px;
  color: #c4c4c4;
}

.breadcrumbs_wrapper .breadcrumbs_container a[href] {
  color: #000;
  -webkit-transition: all .3s ease-out;
  -o-transition: all .3s ease-out;
  transition: all .3s ease-out;
  text-decoration: underline;
}

.breadcrumbs_wrapper .breadcrumbs_container a[href]:hover {
  text-decoration: none;
}

.facts_about_us {
  padding-top: 50px;
}

.facts_about_us .facts_list {
  border-top: 1px solid #ddd;
  padding-top: 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.facts_about_us .fact_wrapper {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 16.66666%;
  -ms-flex: 0 0 16.66666%;
  flex: 0 0 16.66666%;
  text-align: center;
  padding-bottom: 25px;
}

.facts_about_us .fact_wrapper .icon {
  height: 85px;
}

.facts_about_us .fact_wrapper .icon img {
  max-width: 100%;
  max-height: 100%;
}

.facts_about_us .fact_wrapper .description_text p {
  line-height: 26px;
  color: #000;
}

.facts_about_us .fact_wrapper .description_text p b {
  font-weight: 600;
}

.home_company_citation.product_page {
  margin-top: 20px;
}

.home_company_citation.product_page .citation_wrapper {
  border-top: 1px solid #ddd;
  padding: 20px 0;
}

.home_company_citation .citation_wrapper {
  padding: 44px 0 20px;
  border-bottom: 1px solid #ddd;
  text-align: center;
}

.home_company_citation .citation_wrapper p {
  font-size: 21px;
  text-transform: uppercase;
  font-weight: 300;
  color: #000;
}

.home_company_citation .citation_wrapper p span {
  font-weight: 600;
  color: #003e9a;
}

.partners_section {
  padding: 40px 0 60px;
}

.partners_section .partners_list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.partners_section .owl-nav {
  display: none;
}

.partners_section .partner_wrapper {
  text-align: center;
  padding: 0 10px;
}

.partners_section .partner_wrapper img {
  max-width: 100%;
}

.partners_section .owl-stage {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.partners_section .owl-item img {
  max-width: 100%;
  width: auto;
  display: inline-block;
}

/*=================================================*/
/*	START Header		*/
/*=================================================*/
.page_header .menu_section {
  border-bottom: 1px solid #ddd;
}

.page_header .menu_section_inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  z-index: 3;
}

.page_header .nav .mobile_btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  display: none;
}

.page_header .nav .mobile_btn .btn_title {
  padding-left: 10px;
}

.page_header .nav .mobile_btn .btn_title span {
  text-transform: uppercase;
  font-size: 21px;
  font-weight: 600;
  color: #000;
  display: inline-block;
  padding-top: 1px;
}

.page_header .nav .mobile_btn #navBtn {
  width: 30px;
  height: 20px;
  margin: 0;
  position: relative;
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
}

.page_header .nav .mobile_btn #navBtn span {
  display: block;
  position: absolute;
  height: 4px;
  width: 100%;
  background: #000;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

.page_header .nav .mobile_btn #navBtn span:nth-child(1) {
  top: 0px;
}

.page_header .nav .mobile_btn #navBtn span:nth-child(2), .page_header .nav .mobile_btn #navBtn span:nth-child(3) {
  top: 8px;
}

.page_header .nav .mobile_btn #navBtn span:nth-child(4) {
  top: 16px;
}

.page_header .nav .mobile_btn.open #navBtn span:nth-child(1) {
  top: 13px;
  width: 0%;
  left: 50%;
}

.page_header .nav .mobile_btn.open #navBtn span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.page_header .nav .mobile_btn.open #navBtn span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.page_header .nav .mobile_btn.open #navBtn span:nth-child(4) {
  top: 13px;
  width: 0%;
  left: 50%;
}

.page_header .nav ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.page_header .nav ul li {
  padding: 0 30px;
  position: relative;
  clear: both;
}

.page_header .nav ul li:first-child {
  padding-left: 0;
}

.page_header .nav ul li:last-child {
  padding-right: 0;
  padding-left: 13px;
}
.page_header .nav ul li:last-child:after {
  display: none;
}

.page_header .nav ul li.current-menu-item a {
  color: #007afa;
  border-color: transparent;
}

.page_header .nav ul li:after {
  content: '/';
  display: block;
  color: #cecece;
  position: absolute;
  top: 2px;
  right: 0;
}

.page_header .nav ul li a {
  text-decoration: none;
  color: #000;
  border-bottom: 1px solid #cecece;
  display: inline-block;
  line-height: 15px;
  -webkit-transition: all .3s ease-out;
  -o-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

.page_header .nav ul li a:hover {
  color: #007afa;
  border-color: transparent;
}

.page_header .search_box a {
  display: block;
  width: 43px;
  height: 45px;
  background: #ffe508;
  position: relative;
  -webkit-transition: all .3s ease-out;
  -o-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

.page_header .search_box a:before, .page_header .search_box a:after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  -webkit-transition: all .3s ease-out;
  -o-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

.page_header .search_box a:before {
  background: url(../img/search_i.png) no-repeat center;
}

.page_header .search_box a:after {
  background: url(../img/search_i_hov.png) no-repeat center;
  opacity: 0;
}

.page_header .search_box a:hover {
  background: #007afa;
}

.page_header .search_box a:hover:before {
  opacity: 0;
}

.page_header .search_box a:hover:after {
  opacity: 1;
}

.page_header .main_content_section {
  padding-bottom: 20px;
}

.page_header .main_content_inner {
  padding-top: 15px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  z-index: 3;
}

.page_header .site_logo_wrapper {
  padding-right: 55px;
}

.page_header .site_logo_wrapper a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.page_header .logo_icon {
  padding-right: 10px;
}

.page_header .logo_icon img {
  max-width: 100%;
}

.page_header .logo_text {
  padding-top: 15px;
}

.page_header .logo_text .working_hours {
  padding: 0 0 2px;
}

.page_header .logo_text .working_hours span {
  font-size: 13px;
  color: #898989;
}

.page_header .logo_text .site_name span {
  font-size: 22px;
  color: #000;
  font-weight: 600;
  text-transform: uppercase;
}

.page_header .logo_description {
  text-align: center;
  text-transform: uppercase;
  padding-top: 7px;
}

.page_header .logo_description p {
  font-size: 13px;
  line-height: 24px;
}

.page_header .logo_description span {
  display: inline-block;
  background: #fae500;
  font-size: 16px;
  font-weight: 600;
  padding: 3px 5px 2px;
}

.page_header .advantages_box .list_wrapper ul li {
  padding-bottom: 10px;
  padding-left: 30px;
  position: relative;
}

.page_header .advantages_box .list_wrapper ul li:before {
  content: '';
  display: block;
  width: 12px;
  height: 12px;
  background: url(../img/header_list_marker.png) no-repeat;
  position: absolute;
  left: 0;
  top: 2px;
}

.page_header .advantages_box .list_wrapper ul li:last-child {
  padding-bottom: 0;
}

.page_header .advantages_box .list_wrapper ul li p {
  font-size: #000;
}

.page_header .advantages_box .list_wrapper ul li p a {
  color: #007afa;
  text-decoration: underline;
}

.page_header .advantages_box .list_wrapper ul li p a:hover {
  text-decoration: none;
}

.page_header .phone_numbers_box .phone_title span {
  font-weight: 600;
}

.page_header .phone_numbers_box .phone_wrapper {
  padding-top: 20px;
}

.page_header .phone_numbers_box .phone_wrapper:first-child {
  padding-top: 0;
}

.page_header .phone_numbers_box .phone_wrapper a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.page_header .phone_numbers_box .operator_icon {
  padding-right: 7px;
}

.page_header .phone_numbers_box .operator_icon img {
  max-width: 100%;
}

.page_header .phone_numbers_box .phone_number {
  font-size: 21px;
  font-weight: 600;
  color: #000;
}

.page_header .phone_numbers_box .phone_number span {
  font-size: 400;
  color: #898989;
  font-size: 16px;
  display: inline-block;
  padding-right: 5px;
}

.page_header .order_phone_call {
  padding-top: 10px;
}

.page_header .order_phone_call a {
  display: block;
  background: #ffe508;
  text-align: center;
  padding: 12px 0;
  -webkit-transition: all .3s ease-out;
  -o-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

.page_header .order_phone_call a span {
  font-weight: 600;
  color: #000;
  text-decoration: underline;
  -webkit-transition: all .3s ease-out;
  -o-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

.page_header .order_phone_call a:hover {
  background: #007afa;
}

.page_header .order_phone_call a:hover span {
  color: #ffff;
  text-decoration: none;
}

.page_header .ordering_buttons_box {
  padding-left: 30px;
}

.page_header .ordering_buttons_box .button_wrapper:first-child {
  padding-bottom: 14px;
}

.page_header .ordering_buttons_box .button_wrapper a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border: 1px solid #ddd;
  padding: 15px 20px;
  position: relative;
  z-index: 1;
}

.page_header .ordering_buttons_box .button_wrapper a:before, .page_header .ordering_buttons_box .button_wrapper a:after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  -webkit-transition: all .3s ease-out;
  -o-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

.page_header .ordering_buttons_box .button_wrapper a:before {
  background: #f8f8f8;
  background: -webkit-linear-gradient(270deg, #f8f8f8 0%, white 100%);
  background: -o-linear-gradient(270deg, #f8f8f8 0%, white 100%);
  background: -webkit-gradient(linear, left bottom, left top, from(#f8f8f8), to(white));
  background: -webkit-linear-gradient(bottom, #f8f8f8 0%, white 100%);
  background: -o-linear-gradient(bottom, #f8f8f8 0%, white 100%);
  background: linear-gradient(0deg, #f8f8f8 0%, white 100%);
}

.page_header .ordering_buttons_box .button_wrapper a:after {
  background: white;
  background: -webkit-linear-gradient(270deg, white 0%, #e8f7ff 100%);
  background: -o-linear-gradient(270deg, white 0%, #e8f7ff 100%);
  background: -webkit-gradient(linear, left bottom, left top, from(white), to(#e8f7ff));
  background: -webkit-linear-gradient(bottom, white 0%, #e8f7ff 100%);
  background: -o-linear-gradient(bottom, white 0%, #e8f7ff 100%);
  background: linear-gradient(0deg, white 0%, #e8f7ff 100%);
  opacity: 0;
}

.page_header .ordering_buttons_box .button_wrapper a:hover .file_title span:last-child {
  color: #007afa;
}

.page_header .ordering_buttons_box .button_wrapper a:hover:after {
  opacity: 1;
}

.page_header .ordering_buttons_box .button_wrapper .btn_icon {
  padding-right: 10px;
}

.page_header .ordering_buttons_box .button_wrapper .btn_icon img {
  max-width: 100%;
}

.page_header .ordering_buttons_box .button_wrapper .btn_text {
  padding-left: 10px;
  border-left: 1px solid #ddd;
}

.page_header .ordering_buttons_box .button_wrapper .btn_text span {
  display: block;
  text-transform: uppercase;
}

.page_header .ordering_buttons_box .button_wrapper .btn_text span:first-child {
  font-size: 13px;
  color: #000;
  padding-bottom: 5px;
}

.page_header .ordering_buttons_box .button_wrapper .btn_text span:last-child {
  font-size: 18px;
  font-weight: 600;
  color: #0040a0;
}

.page_header .categories_section {
  background: #004cbc;
  background: -webkit-linear-gradient(top, #004cbc 0%, #003686 100%);
  background: -webkit-gradient(linear, left top, left bottom, from(#004cbc), to(#003686));
  background: -o-linear-gradient(top, #004cbc 0%, #003686 100%);
  background: linear-gradient(to bottom, #004cbc 0%, #003686 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#004cbc', endColorstr='#003686',GradientType=0 );
}

.page_header .categories_list {
  position: relative;
  z-index: 2;
}

.page_header .categories_list .mobile_btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  display: none;
}

.page_header .categories_list .mobile_btn .btn_title {
  padding-left: 10px;
}

.page_header .categories_list .mobile_btn .btn_title span {
  text-transform: uppercase;
  font-size: 21px;
  display: inline-block;
  font-weight: 600;
  color: #fff;
  padding-top: 2px;
}

.page_header .categories_list .mobile_btn #navBtn {
  width: 30px;
  height: 20px;
  margin: 0;
  position: relative;
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
}

.page_header .categories_list .mobile_btn #navBtn span {
  display: block;
  position: absolute;
  height: 4px;
  width: 100%;
  background: #fff;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

.page_header .categories_list .mobile_btn #navBtn span:nth-child(1) {
  top: 0px;
}

.page_header .categories_list .mobile_btn #navBtn span:nth-child(2), .page_header .categories_list .mobile_btn #navBtn span:nth-child(3) {
  top: 8px;
}

.page_header .categories_list .mobile_btn #navBtn span:nth-child(4) {
  top: 16px;
}

.page_header .categories_list .mobile_btn.open #navBtn span:nth-child(1) {
  top: 13px;
  width: 0%;
  left: 50%;
}

.page_header .categories_list .mobile_btn.open #navBtn span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.page_header .categories_list .mobile_btn.open #navBtn span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.page_header .categories_list .mobile_btn.open #navBtn span:nth-child(4) {
  top: 13px;
  width: 0%;
  left: 50%;
}

.page_header .categories_list ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.page_header .categories_list ul > li {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  position: relative;
  z-index: 3;
}

.page_header .categories_list ul > li:hover:before, .page_header .categories_list ul > li:hover:after {
  opacity: 0;
}

.page_header .categories_list ul > li:hover > a {
  background: #000;
}

.page_header .categories_list ul > li:hover + li:before, .page_header .categories_list ul > li:hover + li:after {
  opacity: 0;
}

.page_header .categories_list ul > li.current-menu-item:before, .page_header .categories_list ul > li.current-menu-item:after {
  opacity: 0;
}

.page_header .categories_list ul > li.current-menu-item > a {
  background: #000;
}

.page_header .categories_list ul > li.current-menu-item + li:before, .page_header .categories_list ul > li.current-menu-item + li:after {
  opacity: 0;
}

.page_header .categories_list ul > li:before, .page_header .categories_list ul > li:after {
  content: '';
  display: block;
  width: 1px;
  height: 34px;
  background: #266ed7;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all .3s ease-out;
  -o-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

.page_header .categories_list ul > li:after {
  display: none;
}

.page_header .categories_list ul > li:last-child:after {
  display: block;
  left: auto;
  right: 0;
}

.page_header .categories_list ul > li:last-child a {
  text-transform: uppercase;
  width: 115px;
}

.page_header .categories_list ul > li > a {
  display: block;
  color: #fff;
  font-weight: 600;
  padding: 15px 20px;
  height: 100%;
  width:  100%;
  -webkit-transition: all .3s ease-out;
  -o-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

.page_header .categories_list ul > li > a:hover {
  background: #000;
}

.page_header .categories_list ul > li > a span {
  display: block;
  font-weight: 400;
  font-size: 13px;
}

.page_header .categories_list ul > li:hover ul {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(12px);
  -ms-transform: translateY(12px);
  transform: translateY(12px);
}

.page_header .categories_list ul > li > ul {
  display: block;
  position: absolute;
  opacity: 0;
  visibility: hidden;
  top: 100%;
  margin-top: -15px;
  left: 0;
  -webkit-transition: all .3s ease-out;
  -o-transition: all .3s ease-out;
  transition: all .3s ease-out;
  background: #003789;
  border-bottom: 6px solid #007afa;
  padding: 15px 0;
}

.page_header .categories_list ul > li > ul > li {
  padding: 0 25px;
  display: block;
}

.page_header .categories_list ul > li > ul > li:after, .page_header .categories_list ul > li > ul > li:before {
  display: none;
}

.page_header .categories_list ul > li > ul > li > a {
  padding: 10px 0;
  color: #fff !important;
  font-size: 16px;
  font-weight: 400;
  text-decoration: underline;
  text-transform: none !important;
}

.page_header .categories_list ul > li > ul > li > a:hover {
  background: transparent;
  text-decoration: none;
}

.page_header.template_header .main_content_section {
  padding-bottom: 0;
}

.page_header.template_header .main_content_inner {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 15px 0;
}

.page_header.template_header .logo_description,
.page_header.template_header .advantages_box {
  display: none;
}

.page_header.template_header .site_logo_wrapper {
  padding-right: 15px;
}

.page_header.template_header .phone_numbers_box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 380px;
}

.page_header.template_header .phone_numbers_box .phone_wrapper:nth-child(1) {
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
  -ms-flex-order: 1;
  order: 1;
  padding-bottom: 10px;
}

.page_header.template_header .phone_numbers_box .phone_wrapper:nth-child(2) {
  -webkit-box-ordinal-group: 4;
  -webkit-order: 3;
  -ms-flex-order: 3;
  order: 3;
}

.page_header.template_header .phone_numbers_box .phone_wrapper:nth-child(3) {
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
  -ms-flex-order: 2;
  order: 2;
  padding-bottom: 10px;
}

.page_header.template_header .phone_numbers_box .order_phone_call {
  -webkit-box-ordinal-group: 5;
  -webkit-order: 4;
  -ms-flex-order: 4;
  order: 4;
}

.page_header.template_header .phone_numbers_box .phone_wrapper,
.page_header.template_header .phone_numbers_box .order_phone_call {
  padding-top: 0;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 185px;
  -ms-flex: 0 0 185px;
  flex: 0 0 185px;
}

.page_header.template_header .ordering_buttons_box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.page_header.template_header .ordering_buttons_box .button_wrapper a {
  padding: 15px !important;
}

.page_header.template_header .ordering_buttons_box .button_wrapper .btn_text {
  border: none;
  padding-left: 5px;
}

.page_header.template_header .ordering_buttons_box .button_wrapper:first-child {
  padding: 0 25px 0 0;
}

/*=================================================*/
/*	END Header	*/
/*=================================================*/
/*=================================================*/
/*	START Footer	*/
/*=================================================*/
.page_footer {
  background: #273e72;
}

.page_footer .footer_title {
  padding: 25px 0 22px;
  position: relative;
  z-index: 1;
}

.page_footer .footer_title:before {
  content: '';
  display: block;
  width: 100%;
  height: 72px;
  background: url(../img/footer_title_shadow.png) no-repeat center top;
  position: absolute;
  top: 100%;
  z-index: -1;
}

.page_footer .footer_title p {
  font-size: 20px;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
}

.page_footer .footer_title p span {
  color: #fed100;
}

.page_footer .main_footer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 35px 0 25px;
}

.page_footer .menu_col_wrapper {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 33.33333%;
  -ms-flex: 0 0 33.33333%;
  flex: 0 0 33.33333%;
}

.page_footer .menu_col_wrapper:nth-child(2) .list_wrapper ul {
  -webkit-column-count: 2;
  -moz-column-count: 2;
  column-count: 2;
}

.page_footer .col_title {
  padding-bottom: 25px;
}

.page_footer .col_title span {
  font-size: 24px;
  font-weight: 600;
  color: #fff;
}

.page_footer .list_wrapper {
  padding-left: 35px;
  padding-right: 15px;
  border-left: 1px solid #007afa;
}

.page_footer .list_wrapper ul li {
  padding-bottom: 15px;
}

.page_footer .list_wrapper ul li:last-child {
  padding-bottom: 0;
}

.page_footer .list_wrapper ul li a {
  color: #fff;
  text-decoration: underline;
}

.page_footer .list_wrapper ul li a:hover {
  text-decoration: none;
}

.page_footer .copyright_box {
  position: relative;
  border-top: 1px solid #1e3058;
  padding: 15px 0;
}

.page_footer .copyright_box:before {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background: #3e5b9d;
  position: absolute;
  top: 0;
  left: 0;
}

.page_footer .copyright_box .information_wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.page_footer .logo_wrapper,
.page_footer .studio_info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.page_footer .logo_wrapper a,
.page_footer .studio_info a {
  display: inline-block;
}

.page_footer .logo_wrapper a img,
.page_footer .studio_info a img {
  max-width: 100%;
}

.page_footer .logo_wrapper span,
.page_footer .studio_info span {
  color: #fff;
  font-size: 14px;
  display: inline-block;
  padding-left: 20px;
}

.page_footer .studio_info span {
  padding: 0 10px 0 0;
}

.page_footer .addresse span {
  color: #fff;
  font-size: 14px;
  display: inline-block;
  position: relative;
  padding-left: 20px;
}

.page_footer .addresse span:before {
  content: '';
  display: block;
  width: 15px;
  height: 19px;
  background: url(../img/map_marker.png) no-repeat;
  position: absolute;
  left: 0;
  top: -4px;
}

/*=================================================*/
/*	END Footer	*/
/*=================================================*/
/*=================================================*/
/*	START SEO Section	*/
/*=================================================*/
.page_seo_section {
  padding: 55px 0;
}

.page_seo_section .section_content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.page_seo_section .news_col {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 350px;
  -ms-flex: 0 0 350px;
  flex: 0 0 350px;
}

.page_seo_section .news_col .col_title span {
  font-size: 24px;
  font-weight: 600;
  color: #000;
}

.page_seo_section .all_news_link {
  padding-top: 5px;
}

.page_seo_section .all_news_link a {
  font-size: 14px;
  color: #003e9a;
  text-decoration: underline;
}

.page_seo_section .all_news_link a:hover {
  text-decoration: none;
}

.page_seo_section .seo_text_col {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding-left: 30px;
}

.page_seo_section .btnCloseData {
  margin-top: 20px;
  border: none;
  background: transparent;
  color: #003e9a;
  outline: 0;
}

.page_seo_section .moreContent {
  position: relative;
}

.page_seo_section .moreContent:after {
  content: "";
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(white));
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, white 100%);
  background: -o-linear-gradient(top, rgba(255, 255, 255, 0) 0%, white 100%);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, white 100%);
  width: 100%;
  height: 30px;
  position: absolute;
  bottom: 0;
  left: 0;
  pointer-events: none;
}

.page_seo_section .news_list {
  padding-top: 20px;
}

.page_seo_section .news_wrapper {
  border-top: 1px solid #e7e7e7;
  padding: 15px 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.page_seo_section .news_wrapper:last-child {
  border-bottom: 1px solid #e7e7e7;
}

.page_seo_section .thumbnail_wrapper {
  padding-right: 30px;
}

.page_seo_section .thumbnail_wrapper a {
  width: 95px;
  display: block;
  height: 95px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  overflow: hidden;
}

.page_seo_section .thumbnail_wrapper a img {
  width: 100%;
}

.page_seo_section .date_publication {
  padding-bottom: 5px;
}

.page_seo_section .date_publication span {
  font-size: 14px;
  color: #000;
}

.page_seo_section .news_title a {
  font-weight: 600;
  font-size: 14px;
  color: #003e9a;
  line-height: 21px;
  text-decoration: underline;
}

.page_seo_section .news_title a:hover {
  text-decoration: none;
}

/*=================================================*/
/*	END SEO Section	*/
/*=================================================*/
/*=================================================*/
/*	START Home catalog section	*/
/*=================================================*/
.catalog_section {
  padding-bottom: 25px;
}

.catalog_section .catalog_list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.catalog_section .item_wrapper {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 50%;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
}

.catalog_section .item_inner {
  padding: 0 15px 24px;
  height: 100%;
}

.catalog_section .category_content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  border: 1px solid #ddd;
}

.catalog_section .thumbnail_wrapper {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 235px;
  -ms-flex: 0 0 235px;
  flex: 0 0 235px;
  background: #dfdfdf;
  background: -webkit-radial-gradient(center center, circle, #fff, #dfdfdf, #dfdfdf);
  background: -o-radial-gradient(center center, circle, #fff, #dfdfdf, #dfdfdf);
  background: radial-gradient(circle at center center, #fff, #dfdfdf, #dfdfdf);
  height: 100%;
  padding: 20px;
}

.catalog_section .category_photo {
  position: relative;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.catalog_section .category_photo img {
  max-width: 100%;
  max-height: 100%;
}

.catalog_section .description_wrapper {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 20px 30px;
}

.catalog_section .description_wrapper .title {
  font-weight: 600;
  font-size: 24px;
  color: #000;
  padding-bottom: 20px;
}

.catalog_section .description_wrapper .title span {
  font-size: 18px;
  font-weight: 400;
  display: block;
}

.catalog_section .categories_list {
  padding-bottom: 20px;
}

.catalog_section .categories_list ul li {
  padding-bottom: 7px;
}

.catalog_section .categories_list ul li:last-child {
  padding-bottom: 0;
}

.catalog_section .categories_list ul li a {
  color: #003e9a;
  text-decoration: underline;
  font-size: 14px;
}

.catalog_section .categories_list ul li a:hover {
  text-decoration: none;
}

.catalog_section .show_more a {
  color: #003e9a;
  text-decoration: underline;
  font-size: 14px;
  position: relative;
  display: inline-block;
  padding-right: 17px;
}

.catalog_section .show_more a:hover {
  text-decoration: none;
}

.catalog_section .show_more a:after {
  content: '';
  display: block;
  width: 11px;
  height: 7px;
  background: url(../img/angle_down.png) no-repeat;
  position: absolute;
  right: 0;
  top: 4px;
}

/*=================================================*/
/*	END Home catalog section	*/
/*=================================================*/
/*=================================================*/
/*	START Our solutions	*/
/*=================================================*/
.our_solution_section {
  padding-bottom: 70px;
}

.our_solution_section.no_border {
  padding: 0;
}

.our_solution_section.no_border .solution_wrapper {
  padding: 30px 15px 0;
}

.our_solution_section.no_border .section_content:before {
  display: none;
}

.our_solution_section .section_content {
  position: relative;
  z-index: 1;
}

.our_solution_section .section_content:before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  border: 5px solid #e7e7e7;
  position: absolute;
  top: 20px;
  left: -85px;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  padding: 30px 80px 0;
  z-index: -1;
}

.our_solution_section .solutions_title {
  text-align: center;
}

.our_solution_section .title_content {
  padding: 0 65px 30px;
  background: #fff;
  display: inline-block;
  font-size: 30px;
  font-weight: 600;
  color: #000;
}

.our_solution_section .title_content span {
  font-size: 18px;
  font-weight: 400;
  display: block;
}

.our_solution_section .solution_list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.our_solution_section .solution_item {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 25%;
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
}

.our_solution_section .solution_wrapper {
  padding: 15px;
  height: 100%;
}

.our_solution_section .solution_inner {
  border: 1px solid #ddd;
  height: 100%;
}

.our_solution_section .thumbnail_wrapper a {
  display: block;
  overflow: hidden;
}

.our_solution_section .thumbnail_wrapper a:hover img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.our_solution_section .thumbnail_wrapper a img {
  width: 100%;
  display: block;
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
  -webkit-transition: all .3s ease-out;
  -o-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

.our_solution_section .solution_title {
  text-align: center;
  padding: 20px 0 24px;
}

.our_solution_section .solution_title a {
  text-transform: uppercase;
  font-size: 24px;
  font-weight: 600;
  color: #003e9a;
  display: inline-block;
}

.our_solution_section .solution_title span {
  display: block;
  padding-top: 10px;
  font-size: 14px;
  color: #000;
}

.our_solution_section .question_form_wrapper {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 50%;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
}

.our_solution_section .question_form_wrapper .form_wrapper {
  height: 100%;
  padding: 15px;
}

.our_solution_section .question_form_wrapper .form_inner {
  height: 100%;
  border: 5px solid #ffd800;
  background: url(../img/girl_bg.png) no-repeat left 25px bottom;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.our_solution_section .question_form_wrapper .form_content {
  padding: 15px 25px;
  text-align: center;
}

.our_solution_section .question_form_wrapper .form_title span {
  font-size: 24px;
  font-weight: 600;
  color: #003e9a;
  text-transform: uppercase;
}

.our_solution_section .question_form_wrapper .form_sub_title {
  padding-top: 13px;
}

.our_solution_section .question_form_wrapper .form_sub_title span {
  font-size: 14px;
  color: #000;
}

.our_solution_section .question_form_wrapper .phone_numbers_box {
  text-align: center;
  padding-top: 40px;
}

.our_solution_section .question_form_wrapper .phone_numbers_box .phone_wrapper {
  padding-top: 20px;
}

.our_solution_section .question_form_wrapper .phone_numbers_box .phone_wrapper:first-child {
  padding-top: 0;
}

.our_solution_section .question_form_wrapper .phone_numbers_box .phone_wrapper a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.our_solution_section .question_form_wrapper .phone_numbers_box .operator_icon {
  padding-right: 7px;
}

.our_solution_section .question_form_wrapper .phone_numbers_box .operator_icon img {
  max-width: 100%;
}

.our_solution_section .question_form_wrapper .phone_numbers_box .phone_number {
  font-size: 21px;
  font-weight: 600;
  color: #000;
}

.our_solution_section .question_form_wrapper .phone_numbers_box .phone_number span {
  font-size: 400;
  color: #898989;
  font-size: 16px;
  display: inline-block;
  padding-right: 5px;
}

.our_solution_section .question_form_wrapper .order_phone_call {
  padding-top: 10px;
}

.our_solution_section .question_form_wrapper .order_phone_call a {
  display: inline-block;
  background: #ffe508;
  text-align: center;
  padding: 12px 0;
  width: 165px;
  -webkit-transition: all .3s ease-out;
  -o-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

.our_solution_section .question_form_wrapper .order_phone_call a span {
  font-weight: 600;
  color: #000;
  text-decoration: underline;
  -webkit-transition: all .3s ease-out;
  -o-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

.our_solution_section .question_form_wrapper .order_phone_call a:hover {
  background: #007afa;
}

.our_solution_section .question_form_wrapper .order_phone_call a:hover span {
  color: #ffff;
  text-decoration: none;
}

/*=================================================*/
/*	END Our solutions	*/
/*=================================================*/
/*=================================================*/
/*	START Realised projects	*/
/*=================================================*/
.realised_projects_section {
  padding-top: 20px;
}

.realised_projects_section .projects_slider {
  position: relative;
  border: 1px solid #ddd;
}

.realised_projects_section .projects_slider .owl-prev,
.realised_projects_section .projects_slider .owl-next {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  background: #fff;
  text-align: center;
}

.realised_projects_section .projects_slider .owl-prev i,
.realised_projects_section .projects_slider .owl-next i {
  font-size: 32px;
  color: #004bbc;
  line-height: 36px;
}

.realised_projects_section .projects_slider .owl-prev {
  left: 20px;
}

.realised_projects_section .projects_slider .owl-prev i {
  margin-left: -2px;
}

.realised_projects_section .projects_slider .owl-next {
  right: 20px;
}

.realised_projects_section .projects_slider .owl-next i {
  margin-left: 2px;
}

.realised_projects_section .realised_projects_link .text_link {
  padding-left: 40px;
  position: relative;
}

.realised_projects_section .realised_projects_link .text_link:before {
  content: '';
  display: block;
  width: 11px;
  height: 21px;
  background: url(../img/yellow_angle.png) no-repeat center;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.realised_projects_section .realised_projects_link a {
  text-transform: uppercase;
  text-decoration: none;
  font-size: 18px;
  line-height: 21px;
  font-weight: 600;
  color: #fff;
  padding: 45px 20px;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 1;
  overflow: hidden;
}

.realised_projects_section .realised_projects_link a:before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background: url(../img/realised_projects_bg.jpg) no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  -webkit-transition: all .3s ease-out;
  -o-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

.realised_projects_section .realised_projects_link a span {
  font-size: 13px;
  font-weight: 400;
  display: block;
}

.realised_projects_section .realised_projects_link a:hover:before {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.realised_projects_section .advantage_wrapper {
  border: 1px solid #ddd;
  height: 68px;
  padding: 15px 5px 15px 15px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 13px;
}

.realised_projects_section .advantage_wrapper .icon {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 55px;
  -ms-flex: 0 0 55px;
  flex: 0 0 55px;
}

.realised_projects_section .advantage_wrapper .icon img {
  max-width: 100%;
}

.realised_projects_section .advantage_wrapper .text span {
  display: block;
  text-transform: uppercase;
  font-size: 13px;
  color: #000;
}

.realised_projects_section .advantage_wrapper .text span:last-child {
  font-weight: 600;
  font-size: 18px;
  padding-top: 3px;
}

/*=================================================*/
/*	END Realised projects	*/
/*=================================================*/
/*=================================================*/
/*	START Contacts Page	*/
/*=================================================*/
.contacts_section {
  background: url(../img/contacts_page_bg.png) no-repeat top center;
}

.contacts_section .contacts_data_box {
  padding-top: 35px;
  border-top: 1px solid #d6d6d6;
}

.contacts_section .company_name {
  text-align: center;
  padding-bottom: 50px;
}

.contacts_section .company_name p {
  font-size: 30px;
  color: #000;
}

.contacts_section .company_name p span {
  text-transform: uppercase;
  font-weight: 600;
}

.contacts_section .contacts_information {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.contacts_section .phone_numbers_box,
.contacts_section .other_contacts_box {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 50%;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
}

.contacts_section .phone_numbers_box .column_title,
.contacts_section .other_contacts_box .column_title {
  color: #5e5e5e;
  padding-bottom: 35px;
}

.contacts_section .phone_numbers_box .column_title span,
.contacts_section .other_contacts_box .column_title span {
  font-weight: 600;
  font-size: 18px;
  color: #000;
}

.contacts_section .map_box .addresse {
  padding-bottom: 35px;
}

.contacts_section .map_box .addresse p {
  color: #5e5e5e;
}

.contacts_section .map_box .addresse p span {
  font-weight: 600;
  font-size: 18px;
  color: #000;
  display: inline-block;
  padding-right: 10px;
}

.contacts_section .map_wrapper {
  height: 450px;
  width: 100%;
}

.contacts_section .map_wrapper iframe {
  width: 100%;
  height: 100%;
}

.contacts_section .phone_numbers_box .phone_wrapper {
  padding-top: 15px;
}

.contacts_section .phone_numbers_box .phone_wrapper:first-child {
  padding-top: 0;
}

.contacts_section .phone_numbers_box .phone_wrapper a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.contacts_section .phone_numbers_box .operator_icon {
  padding-right: 7px;
}

.contacts_section .phone_numbers_box .operator_icon img {
  max-width: 100%;
}

.contacts_section .phone_numbers_box .phone_number {
  font-size: 21px;
  font-weight: 600;
  color: #000;
}

.contacts_section .phone_numbers_box .phone_number span {
  font-size: 400;
  color: #898989;
  font-size: 16px;
  display: inline-block;
  padding-right: 5px;
}

.contacts_section .call_us_title {
  background: #808a96;
  padding: 20px 30px;
  text-align: left;
  margin-bottom: 20px;
}

.contacts_section .call_us_title p {
  color: #fff;
  font-weight: 600;
  font-size: 21px;
  line-height: 30px;
  text-transform: uppercase;
}

.contacts_section .other_contact_data {
  padding-bottom: 21px;
}

.contacts_section .other_contact_data:last-child {
  padding-top: 0;
}

.contacts_section .other_contact_data a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.contacts_section .other_contact_data .contact_text {
  color: #007afa;
  text-decoration: underline;
}

.contacts_section .other_contact_data .contact_icon {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 25px;
  -ms-flex: 0 0 25px;
  flex: 0 0 25px;
}

.contacts_section .other_contact_data .contact_icon img {
  max-width: 100%;
}

.contacts_section .working_hours .column_title,
.contacts_section .phone_working_hours .column_title {
  padding: 15px 0;
}

.contacts_section .working_hours .column_title span,
.contacts_section .phone_working_hours .column_title span {
  font-size: 18px;
  font-weight: 600;
  color: #000;
}

.contacts_section .working_hours .hours_info,
.contacts_section .phone_working_hours .hours_info {
  border-bottom: 1px solid #c8c8c8;
  padding: 15px 0;
}

.contacts_section .phone_working_hours {
  padding-top: 5px;
}

.contacts_section .phone_working_hours .column_title span {
  font-size: 16px;
  text-transform: uppercase;
}

.contacts_section .phone_working_hours .hours_info {
  border-top: 1px solid #c8c8c8;
  border-bottom: none;
}

.contacts_section .hours_info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.contacts_section .hours_info .hours_title,
.contacts_section .hours_info .hours_data {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 50%;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
}

.contacts_section .hours_info .hours_title span,
.contacts_section .hours_info .hours_data span {
  color: #5e5e5e;
}

.contacts_section .requisites_and_offices {
  margin-top: 5px;
}

.contacts_section .requisites_and_offices .box_line {
  border-top: 1px solid #ddd;
  padding-top: 30px;
}

.contacts_section .requisites_box {
  background: #f1f1f1;
  margin-bottom: 15px;
}

.contacts_section .requisites_box:last-child {
  margin-bottom: 0;
}

.contacts_section .requisite_title {
  padding: 20px 30px;
}

.contacts_section .requisite_title span {
  font-size: 18px;
  font-weight: 600;
  color: #000;
}

.contacts_section .requisite_item {
  padding: 15px 30px;
  border-top: 1px solid #d8d8d8;
}

.contacts_section .requisite_item span {
  line-height: 24px;
  color: #5e5e5e;
}

.contacts_section .offices_list .list_title {
  padding-bottom: 10px;
}

.contacts_section .offices_list .list_title span {
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  color: #000;
}

.contacts_section .offices_list .info_about_office {
  margin-top: 15px;
  border: 1px solid #d6d6d6;
  padding: 35px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.contacts_section .offices_list .addresse_info,
.contacts_section .offices_list .office_contacts {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 50%;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
}

.contacts_section .offices_list .apps_list {
  margin-left: 5px;
}

.contacts_section .offices_list .apps_list span {
  display: inline-block;
  padding: 0 2px;
}

.contacts_section .offices_list .apps_list span img {
  max-width: 100%;
}

.contacts_section .offices_list .addresse_title {
  padding-bottom: 15px;
}

.contacts_section .offices_list .addresse_title span {
  font-size: 14px;
  font-weight: 600;
  color: #000;
}

.contacts_section .offices_list .addresse_data span {
  font-size: 14px;
  color: #5e5e5e;
}

.contacts_section .offices_list .person_info {
  padding-top: 15px;
}

.contacts_section .offices_list .person_info span {
  font-size: 14px;
  color: #5e5e5e;
}

.contacts_section .offices_list .phone_wrapper {
  padding-top: 20px;
}

.contacts_section .offices_list .phone_wrapper:first-child {
  padding-top: 0;
}

.contacts_section .offices_list .phone_wrapper a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.contacts_section .offices_list .phone_wrapper .operator_icon {
  padding-right: 7px;
}

.contacts_section .offices_list .phone_wrapper .operator_icon img {
  max-width: 100%;
}

.contacts_section .offices_list .phone_wrapper .phone_number {
  font-size: 21px;
  font-weight: 600;
  color: #000;
}

.contacts_section .offices_list .phone_wrapper .phone_number span {
  font-size: 400;
  color: #898989;
  font-size: 16px;
  display: inline-block;
  padding-right: 5px;
}

/*=================================================*/
/*	END Contacts Page	*/
/*=================================================*/
/*=================================================*/
/*	START Our projects	*/
/*=================================================*/
.our_projects_section .our_projects_list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.our_projects_section .project_wrapper {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 50%;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
}

.our_projects_section .project_inner {
  padding: 0 15px 30px;
  height: 100%;
}

.our_projects_section .project_content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
}

.our_projects_section .thumbnail_wrapper {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 230px;
  -ms-flex: 0 0 230px;
  flex: 0 0 230px;
}

.our_projects_section .thumbnail_wrapper a {
  display: block;
  height: 100%;
  overflow: hidden;
}

.our_projects_section .thumbnail_wrapper a img {
  height: 100%;
  display: block;
}

.our_projects_section .project_meta_data {
  padding: 25px 30px;
  border: 1px solid #d4d4d4;
  border-left: none;
}

.our_projects_section .project_meta_data .title {
  border-bottom: 1px solid #d4d4d4;
  padding-bottom: 20px;
}

.our_projects_section .project_meta_data .title a {
  font-size: 24px;
  font-weight: 600;
  color: #000;
  -webkit-transition: all .3s ease-out;
  -o-transition: all .3s ease-out;
  transition: all .3s ease-out;
  text-decoration: none;
}

.our_projects_section .project_meta_data .title a:hover {
  color: #004cbc;
  text-decoration: underline;
}

.our_projects_section .project_meta_data .description {
  padding-top: 20px;
}

.our_projects_section .project_meta_data .description p {
  font-size: 14px;
  line-height: 21px;
  color: #5e5e5e;
}

.our_projects_section .project_content_wrapper .content_box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.our_projects_section .project_content_wrapper .slider_wrapper {
  width: 50%;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 50%;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  padding-right: 15px;
}

.our_projects_section .project_content_wrapper .project_description {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding-left: 15px;
}

.our_projects_section .project_content_wrapper .project_slider {
  position: relative;
}

.our_projects_section .project_content_wrapper .project_slider .owl-prev,
.our_projects_section .project_content_wrapper .project_slider .owl-next {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 55px;
  height: 65px;
  background: rgba(0, 0, 0, 0.6);
  text-align: center;
  -webkit-transition: all .3s ease-out;
  -o-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

.our_projects_section .project_content_wrapper .project_slider .owl-prev:hover,
.our_projects_section .project_content_wrapper .project_slider .owl-next:hover {
  background: rgba(0, 0, 0, 0.8);
}

.our_projects_section .project_content_wrapper .project_slider .owl-prev:hover i,
.our_projects_section .project_content_wrapper .project_slider .owl-next:hover i {
  color: #004cbc;
}

.our_projects_section .project_content_wrapper .project_slider .owl-prev i,
.our_projects_section .project_content_wrapper .project_slider .owl-next i {
  font-size: 35px;
  color: #fff;
  line-height: 65px;
  -webkit-transition: all .3s ease-out;
  -o-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

.our_projects_section .project_content_wrapper .project_slider .owl-prev {
  left: 0;
}

.our_projects_section .project_content_wrapper .project_slider .owl-prev i {
  margin-left: -2px;
}

.our_projects_section .project_content_wrapper .project_slider .owl-next {
  right: 0;
}

.our_projects_section .project_content_wrapper .project_slider .owl-next i {
  margin-left: 2px;
}

.our_projects_section .project_content_wrapper .project_title {
  padding-bottom: 20px;
  border-bottom: 1px solid #d4d4d4;
}

.our_projects_section .project_content_wrapper .project_title span {
  font-size: 24px;
  font-weight: 600;
  color: #000;
}

.our_projects_section .project_content_wrapper .project_description_text {
  padding: 20px 0;
  border-bottom: 1px solid #d4d4d4;
}

.our_projects_section .project_content_wrapper .project_description_text p {
  color: #5e5e5e;
  margin: 0;
}

.our_projects_section .project_content_wrapper .characteristics_list .characteristic_item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
}

.our_projects_section .project_content_wrapper .characteristics_list .title {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 35%;
  -ms-flex: 0 0 35%;
  flex: 0 0 35%;
}

.our_projects_section .project_content_wrapper .characteristics_list .title span {
  font-size: 14px;
  color: #000;
}

.our_projects_section .project_content_wrapper .characteristics_list .value {
  padding-left: 15px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 65%;
  -ms-flex: 0 0 65%;
  flex: 0 0 65%;
}

.our_projects_section .project_content_wrapper .characteristics_list .value span {
  font-size: 14px;
  color: #5e5e5e;
}

/*=================================================*/
/*	END Our projects	*/
/*=================================================*/
/*=================================================*/
/*	START How we work	*/
/*=================================================*/
.how_we_work {
  background: url(../img/steps_page_bg.jpg) no-repeat center;
  -webkit-background-size: cover;
  background-size: cover;
  background-attachment: fixed;
  padding: 120px 0;
}

.how_we_work .title_wrapper {
  text-align: center;
}

.how_we_work .title_wrapper span {
  font-size: 48px;
  color: #fff;
}

.how_we_work .subtitle_wrapper {
  padding-top: 10px;
  text-align: center;
}

.how_we_work .subtitle_wrapper p {
  font-size: 18px;
  color: #fff;
}

.how_we_work .ordering_button {
  text-align: center;
  padding-top: 35px;
}

.how_we_work .ordering_button button {
  padding: 15px 30px;
  border: none;
  background: #ffe508;
  color: #000;
  font-weight: 600;
  text-transform: uppercase;
  -webkit-transition: all .3s ease-out;
  -o-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

.how_we_work .ordering_button button:hover {
  background: #007afa;
  color: #ffff;
}

.how_we_work .projects_count_title {
  padding-top: 85px;
  overflow: hidden;
  text-align: center;
}

.how_we_work .projects_count_title span {
  display: inline-block;
  position: relative;
  font-weight: 600;
  font-size: 24px;
  color: #fff;
  text-transform: uppercase;
}

.how_we_work .projects_count_title span:after, .how_we_work .projects_count_title span:before {
  content: '';
  display: block;
  width: 10000px;
  height: 1px;
  background: #fff;
  position: absolute;
  top: 50%;
  margin-top: -1px;
}

.how_we_work .projects_count_title span:after {
  right: -10035px;
}

.how_we_work .projects_count_title span:before {
  left: -10035px;
}

.how_we_work .projects_count {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-top: 60px;
}

.how_we_work .projects_count .list_item {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 25%;
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  text-align: center;
}

.how_we_work .projects_count .number span {
  font-size: 72px;
  font-weight: 100;
  color: #fff;
}

.how_we_work .projects_count .text_content {
  padding-top: 20px;
}

.how_we_work .projects_count .text_content span {
  font-size: 18px;
  color: #fff;
}

.work_step_section {
  background: #000101;
  background: -webkit-linear-gradient(0deg, #000101 0%, #003a90 100%);
  background: -o-linear-gradient(0deg, #000101 0%, #003a90 100%);
  background: -webkit-gradient(linear, left top, right top, from(#000101), to(#003a90));
  background: -webkit-linear-gradient(left, #000101 0%, #003a90 100%);
  background: -o-linear-gradient(left, #000101 0%, #003a90 100%);
  background: linear-gradient(90deg, #000101 0%, #003a90 100%);
  position: relative;
}

.work_step_section:after {
  bottom: 100%;
  left: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(255, 255, 255, 0);
  border-bottom-color: #ffffff;
  border-width: 15px;
  margin-left: -15px;
}

.work_step_section .steps_list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.work_step_section .step_inner {
  padding: 20px 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.work_step_section .step_wrapper {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 25%;
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
}

.work_step_section .step_icon {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 70px;
  -ms-flex: 0 0 70px;
  flex: 0 0 70px;
}

.work_step_section .step_icon img {
  max-width: 100%;
  text-align: left;
}

.work_step_section .step_description span {
  font-weight: 100;
  color: #fff;
  text-transform: uppercase;
}

/*=================================================*/
/*	END How we work	*/
/*=================================================*/
/*=================================================*/
/*	START News	*/
/*=================================================*/
.news_section .news_list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.news_section .news_wrapper {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 33.33333%;
  -ms-flex: 0 0 33.33333%;
  flex: 0 0 33.33333%;
}

.news_section .news_inner {
  padding: 0 15px 30px;
  height: 100%;
}

.news_section .news_content {
  border: 1px solid #ddd;
  height: 100%;
  padding: 30px;
  -webkit-transition: all .3s ease-out;
  -o-transition: all .3s ease-out;
  transition: all .3s ease-out;
  overflow: hidden;
}

.news_section .news_content:hover {
  background: #003a8f;
}

.news_section .news_content:hover .date span {
  color: #fff;
}

.news_section .news_content:hover .title a {
  color: #fff;
}

.news_section .news_content:hover .excerpt {
  border-color: transparent;
}

.news_section .news_content:hover .excerpt p {
  opacity: 0;
}

.news_section .news_content:hover .read_more {
  z-index: 1;
  opacity: 1;
}

.news_section .thumbnail_wrapper a {
  display: block;
}

.news_section .thumbnail_wrapper a img {
  width: 100%;
}

.news_section .read_more {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0;
  -webkit-transition: all .3s ease-out;
  -o-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

.news_section .read_more a {
  display: block;
  background: #ffe508;
  text-align: center;
  padding: 12px 0;
  width: 170px;
}

.news_section .read_more a span {
  font-weight: 600;
  color: #000;
  text-decoration: underline;
}

.news_section .read_more a:hover span {
  text-decoration: none;
}

.news_section .news_meta_data {
  padding-top: 15px;
}

.news_section .date {
  padding-bottom: 5px;
}

.news_section .date span {
  font-size: 14px;
  color: #5e5e5e;
  -webkit-transition: all .3s ease-out;
  -o-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

.news_section .title {
  padding-bottom: 10px;
}

.news_section .title a {
  font-size: 24px;
  font-weight: 600;
  color: #000;
  -webkit-transition: all .3s ease-out;
  -o-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

.news_section .excerpt {
  padding-top: 20px;
  border-top: 1px solid #ddd;
  position: relative;
  z-index: 1;
}

.news_section .excerpt p {
  font-size: 14px;
  line-height: 21px;
  color: #5e5e5e;
  -webkit-transition: all .3s ease-out;
  -o-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

.news_section .news_inside_content .poster_wrapper {
  width: 360px;
  position: relative;
  z-index: 1;
  float: left;
  margin: 0 40px 30px 0;
}

.news_section .news_inside_content .poster_wrapper img {
  display: block;
  width: 100%;
}

.news_section .news_inside_content .poster_wrapper:after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 10px;
  left: 10px;
  background: #d4d4d4;
  z-index: -1;
}

/*=================================================*/
/*	END News	*/
/*=================================================*/
/*=================================================*/
/*	START Catalog	*/
/*=================================================*/
.catalog_seo_content {
  padding: 20px 0;
}

.catalog_seo_content + .facts_about_us {
  padding-top: 0;
}

.catalog_seo_content .seo_text {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.catalog_seo_content .category_thumbnail {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 390px;
  -ms-flex: 0 0 390px;
  flex: 0 0 390px;
}

.catalog_seo_content .thmb_wrapper {
  width: 295px;
  height: 295px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  background: #f4f4f4;
  text-align: center;
  margin: 0 auto;
  padding: 20px;
}

.catalog_seo_content .thmb_innder {
  width: 100%;
  height: 100%;
  position: relative;
}

.catalog_seo_content .thmb_innder img {
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}

.catalog_list_section .catalog_list {
  padding-top: 65px;
  border-top: 1px solid #ddd;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.catalog_list_section .item_wrapper {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 25%;
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
}

.catalog_list_section .item_inner {
  padding: 0 15px 0;
  height: 100%;
}

.catalog_list_section .item_container {
  height: 100%;
}

.catalog_list_section .item_container a {
  padding: 35px 15px 35px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border: 3px solid transparent;
  -webkit-transition: all .3s ease-out;
  -o-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

.catalog_list_section .item_container a:hover {
  border-color: #ececec;
}

.catalog_list_section .item_container a:hover .title span {
  color: #0041a0;
  text-decoration: none;
}

.catalog_list_section .item_container .thmb_wrapper {
  padding-bottom: 20px;
  text-align: center;
}

.catalog_list_section .item_container .thmb_wrapper img {
  max-width: 100%;
}

.catalog_list_section .item_container .title {
  text-align: center;
}

.catalog_list_section .item_container .title span {
  font-size: 21px;
  color: #007afa;
  text-decoration: underline;
  -webkit-transition: all .3s ease-out;
  -o-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

.catalog_list_section .item_container .products_count {
  padding-top: 10px;
  color: #aeaeae;
  font-size: 14px;
}

/*=================================================*/
/*	END Catalog	*/
/*=================================================*/
/*=================================================*/
/*	START Catalog Category	*/
/*=================================================*/
.catalog_category_section {
  position: relative;
}

.catalog_category_section.no_shadow {
  padding: 40px 0 0;
}

.catalog_category_section.no_shadow:after {
  display: none;
}

.catalog_category_section:after {
  content: '';
  display: block;
  width: 100%;
  height: 25px;
  background: url(../img/section_shadow.png) no-repeat center;
  position: absolute;
  top: 100%;
  left: 0;
}

.catalog_category_section .product_advantages {
  background: #0041a1;
  -webkit-border-radius: 5px;
  border-radius: 5px;
}

.catalog_category_section .product_advantages.product_page {
  background: transparent;
}

.catalog_category_section .product_advantages.product_page .advantages_list .description span {
  text-transform: lowercase;
  color: #000;
  line-height: 21px;
  font-size: 16px;
  font-weight: 400;
}

.catalog_category_section .advantages_list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.catalog_category_section .advantages_list .list_item {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 25%;
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
}

.catalog_category_section .advantages_list .item_inner {
  padding: 20px;
}

.catalog_category_section .advantages_list .item_content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.catalog_category_section .advantages_list .icon_wrappe {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 80px;
  -ms-flex: 0 0 80px;
  flex: 0 0 80px;
}

.catalog_category_section .advantages_list .icon_wrappe img {
  max-width: 100%;
}

.catalog_category_section .advantages_list .description span {
  font-weight: 100;
  color: #fff;
  font-size: 16px;
  line-height: 21px;
  text-transform: uppercase;
}

.catalog_category_section .box_meta {
  border-bottom: 1px solid #ddd;
  padding-bottom: 8px;
  height: 42px;
  margin-bottom: 30px;
}

.catalog_category_section .filters_list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  background: #f0f0f0;
  padding-left: 20px;
}

.catalog_category_section .filter_item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.catalog_category_section .filter_item:last-child .filter_title {
  padding-left: 40px;
}

.catalog_category_section .filter_item:last-child select {
  width: 70px;
}

.catalog_category_section .filter_item .filter_title {
  padding-right: 15px;
}

.catalog_category_section .filter_item .filter_title span {
  color: #000;
  font-size: 14px;
}

.catalog_category_section .filter_item select {
  width: 150px;
  height: 32px;
  border: 1px solid #ddd;
  padding: 0 25px 0 15px;
  font-size: 14px;
  color: #000;
  outline: 0;
  background: #fff url(../img/select_angle.png) no-repeat center right 15px;
}

.catalog_category_section .main_filter_title span {
  position: relative;
  display: inline-block;
  font-size: 18px;
  font-weight: 600;
  color: #000;
  line-height: 32px;
}

.catalog_category_section .main_filter_title span:after {
  content: '';
  display: block;
  width: 7px;
  height: 6px;
  background: url(../img/title_select_arrow.png) no-repeat center;
  position: absolute;
  right: -20px;
  top: 50%;
  margin-top: -2px;
}

.catalog_category_section .catalog_box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-top: 25px;
}

.catalog_category_section .main_filter_box {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 293px;
  -ms-flex: 0 0 293px;
  flex: 0 0 293px;
}

.catalog_category_section .main_filter_box .box_inner {
  padding-right: 30px;
}

.catalog_category_section .content_box {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.catalog_category_section .products_list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.catalog_category_section .manufacturer_box .products_list .item_wrapper {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 25%;
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
}

.catalog_category_section .products_list .item_wrapper {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 33.33333%;
  -ms-flex: 0 0 33.33333%;
  flex: 0 0 33.33333%;
}

.catalog_category_section .products_list .item_inner {
  padding: 0 15px 30px;
  height: 100%;
}

.catalog_category_section .products_list .item_container {
  height: 100%;
  border: 1px solid #ddd;
  padding: 15px;
  position: relative;
  -webkit-transition: all .3s ease-out;
  -o-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

.catalog_category_section .products_list .item_container:hover {
  border-color: #6ba4fb;
}

.catalog_category_section .product_sale_info {
  position: absolute;
  top: 5px;
  left: 10px;
  z-index: 2;
}

.catalog_category_section .product_sale_info .sale_title span,
.catalog_category_section .product_sale_info .new_product span,
.catalog_category_section .product_sale_info .top_product span {
  display: inline-block;
  padding: 5px 8px 3px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  text-transform: uppercase;
  color: #fff;
  font-size: 12px;
  min-width: 45px;
  text-align: center;
  margin-bottom: 3px;
}

.catalog_category_section .product_sale_info .sale_title span {
  background: #db0000;
}

.catalog_category_section .product_sale_info .new_product span {
  background: #3ead75;
}

.catalog_category_section .product_sale_info .top_product span {
  background: #0048b1;
}

.catalog_category_section .thmb_wrapper a {
  display: block;
  text-align: center;
  padding: 30px 20px;
}

.catalog_category_section .thmb_wrapper a img {
  max-width: 100%;
}

.catalog_category_section .pice_wrapper .old_price {
  font-size: 14px;
  color: #aeaeae;
  text-decoration: line-through;
}

.catalog_category_section .pice_wrapper .current_price {
  font-size: 24px;
  color: #000;
}

.catalog_category_section .pice_wrapper .sale_price {
  color: #db0000;
}

.catalog_category_section .product_title a {
  font-size: 18px;
  color: #007afa;
  text-decoration: underline;
  line-height: 26px;
  -webkit-transition: all .3s ease-out;
  -o-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

.catalog_category_section .product_title a:hover {
  color: #004cbd;
  text-decoration: none;
}

.catalog_category_section .product_description p {
  font-size: 14px;
  line-height: 26px;
  color: #aeaeae;
}

.catalog_category_section .read_more a {
  display: block;
  width: 100%;
  height: 40px;
  border: 1px solid #ddd;
  text-align: center;
  line-height: 40px;
  color: #032251;
  text-decoration: underline;
  background: #f8f8f8;
  background: -webkit-linear-gradient(270deg, #f8f8f8 0%, white 100%);
  background: -o-linear-gradient(270deg, #f8f8f8 0%, white 100%);
  background: -webkit-gradient(linear, left bottom, left top, from(#f8f8f8), to(white));
  background: -webkit-linear-gradient(bottom, #f8f8f8 0%, white 100%);
  background: -o-linear-gradient(bottom, #f8f8f8 0%, white 100%);
  background: linear-gradient(0deg, #f8f8f8 0%, white 100%);
  -webkit-transition: all .3s ease-out;
  -o-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

.catalog_category_section .read_more a:hover {
  background: #ffe508;
  text-decoration: none;
  border-color: #ffe508;
}

.catalog_category_section .question_form_wrapper {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 100%;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
}

.catalog_category_section .question_form_wrapper .form_wrapper {
  padding: 0 15px 30px;
}

.catalog_category_section .question_form_wrapper .form_inner {
  border: 5px solid #ffd800;
  padding: 50px;
}

.catalog_category_section .question_form_wrapper .form_head {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.catalog_category_section .question_form_wrapper .form_title {
  padding-bottom: 10px;
}

.catalog_category_section .question_form_wrapper .form_title span {
  font-size: 24px;
  font-weight: 600;
  color: #003e9a;
  text-transform: uppercase;
}

.catalog_category_section .question_form_wrapper .form_sub_title p {
  font-size: 14px;
  color: #000;
}

.catalog_category_section .question_form_wrapper .form_sub_title span {
  color: #003e9a;
}

.catalog_category_section .phone_numbers_box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-top: 30px;
}

.catalog_category_section .phone_numbers_box .phone_wrapper {
  padding: 0 25px;
}

.catalog_category_section .phone_numbers_box .phone_wrapper:first-child {
  padding-top: 0;
}

.catalog_category_section .phone_numbers_box .phone_wrapper a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.catalog_category_section .phone_numbers_box .operator_icon {
  padding-right: 7px;
}

.catalog_category_section .phone_numbers_box .operator_icon img {
  max-width: 100%;
}

.catalog_category_section .phone_numbers_box .phone_number {
  font-size: 21px;
  font-weight: 600;
  color: #000;
}

.catalog_category_section .phone_numbers_box .phone_number span {
  font-size: 400;
  color: #898989;
  font-size: 16px;
  display: inline-block;
  padding-right: 5px;
}

.catalog_category_section .order_phone_call a {
  display: block;
  background: #ffe508;
  text-align: center;
  padding: 12px 0;
  width: 165px;
  -webkit-transition: all .3s ease-out;
  -o-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

.catalog_category_section .order_phone_call a span {
  font-weight: 600;
  color: #000;
  text-decoration: underline;
  -webkit-transition: all .3s ease-out;
  -o-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

.catalog_category_section .order_phone_call a:hover {
  background: #007afa;
}

.catalog_category_section .order_phone_call a:hover span {
  color: #ffff;
  text-decoration: none;
}

.catalog_category_section .product_page .partners_section {
  padding-bottom: 60px;
}

.catalog_category_section .product_page .question_form_wrapper {
  padding-bottom: 20px;
}

.catalog_category_section .product_page .question_form_wrapper .form_wrapper {
  padding: 0;
}

.catalog_category_section .product_page .question_form_wrapper .form_head {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.catalog_category_section .product_page .question_form_wrapper .form_inner {
  background: url(../img/form_bg.jpg) no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
}

.catalog_category_section .product_page .question_form_wrapper .titles_wrapper {
  padding-right: 80px;
}

.catalog_category_section .product_text_information {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 45px 0 30px;
}

.catalog_category_section .product_text_information .description_box,
.catalog_category_section .product_text_information .characteristic_box {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 50%;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
}

.catalog_category_section .product_text_information .description_box .box_title,
.catalog_category_section .product_text_information .characteristic_box .box_title {
  padding-bottom: 35px;
}

.catalog_category_section .product_text_information .description_box .box_title span,
.catalog_category_section .product_text_information .characteristic_box .box_title span {
  font-size: 24px;
  font-weight: 600;
  text-transform: uppercase;
  color: #000;
}

.catalog_category_section .product_text_information .description_box .box_content {
  padding-right: 15px;
}

.catalog_category_section .product_text_information .characteristic_box .box_content {
  padding-left: 15px;
}

.catalog_category_section .product_text_information .text_information p {
  font-size: 14px;
  line-height: 21px;
  margin: 20px 0;
  color: #000;
}

.catalog_category_section .product_text_information .text_information p:first-child {
  margin-top: 0;
}

.catalog_category_section .product_text_information .text_information ul {
  line-height: 21px;
  font-size: 14px;
  padding-left: 0;
  list-style: none;
}

.catalog_category_section .product_text_information .text_information ul li {
  position: relative;
  padding-left: 30px;
}

.catalog_category_section .product_text_information .text_information ul li:before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  position: absolute;
  top: 7px;
  left: 0;
  background: #ffe508;
}

.catalog_category_section .characteristic_wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px dashed #ddd;
  padding: 12px 0 10px;
}

.catalog_category_section .characteristic_wrapper:first-child {
  padding-top: 0;
}

.catalog_category_section .characteristic_wrapper .title {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 70%;
  -ms-flex: 0 0 70%;
  flex: 0 0 70%;
}

.catalog_category_section .characteristic_wrapper .title span {
  font-size: 14px;
}

.catalog_category_section .characteristic_wrapper .value {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 30%;
  -ms-flex: 0 0 30%;
  flex: 0 0 30%;
}

.catalog_category_section .characteristic_wrapper .value span {
  font-size: 14px;
}

.catalog_category_section .delivery_info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 30px 30px 25px;
  border: 1px solid #ddd;
  background: #f8f8f8;
  background: -webkit-linear-gradient(0deg, #f8f8f8 0%, white 100%);
  background: -o-linear-gradient(0deg, #f8f8f8 0%, white 100%);
  background: -webkit-gradient(linear, left top, right top, from(#f8f8f8), to(white));
  background: -webkit-linear-gradient(left, #f8f8f8 0%, white 100%);
  background: -o-linear-gradient(left, #f8f8f8 0%, white 100%);
  background: linear-gradient(90deg, #f8f8f8 0%, white 100%);
  position: relative;
  margin-bottom: 25px;
}

.catalog_category_section .delivery_info:after {
  content: '';
  display: block;
  width: 100%;
  height: 25px;
  background: url(../img/section_shadow.png) no-repeat center;
  position: absolute;
  top: 100%;
  left: 0;
}

.catalog_category_section .delivery_title {
  padding-left: 115px;
  font-weight: 600;
  font-size: 18px;
  text-transform: uppercase;
  position: relative;
}

.catalog_category_section .delivery_title:before {
  content: '';
  display: block;
  width: 67px;
  height: 35px;
  position: absolute;
  top: 0;
  left: 0;
  background: url(../img/truck.png) no-repeat center;
}

.catalog_category_section .delivery_title span {
  display: block;
  text-transform: lowercase;
  font-weight: 400;
}

.catalog_category_section .regions_button a {
  display: block;
  background: #ffe508;
  text-align: center;
  padding: 12px 20px;
  -webkit-transition: all .3s ease-out;
  -o-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

.catalog_category_section .regions_button a span {
  font-weight: 600;
  color: #000;
  text-decoration: underline;
  -webkit-transition: all .3s ease-out;
  -o-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

.catalog_category_section .regions_button a:hover {
  background: #007afa;
}

.catalog_category_section .regions_button a:hover span {
  color: #ffff;
  text-decoration: none;
}

.catalog_category_section .product_pagination .pagination_wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.catalog_category_section .product_pagination .prev_product a,
.catalog_category_section .product_pagination .next_product a {
  font-size: 14px;
  color: #000;
  text-decoration: underline;
  position: relative;
  display: inline-block;
}

.catalog_category_section .product_pagination .prev_product a:hover,
.catalog_category_section .product_pagination .next_product a:hover {
  text-decoration: none;
}

.catalog_category_section .product_pagination .prev_product a:before,
.catalog_category_section .product_pagination .next_product a:before {
  content: '';
  display: block;
  width: 7px;
  height: 6px;
  background: url(../img/select_angle.png) no-repeat center;
  position: absolute;
  top: 4px;
}

.catalog_category_section .product_pagination .prev_product a {
  padding-left: 20px;
}

.catalog_category_section .product_pagination .prev_product a:before {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  left: 0;
}

.catalog_category_section .product_pagination .next_product {
  padding-left: 35px;
}

.catalog_category_section .product_pagination .next_product a {
  padding-right: 20px;
}

.catalog_category_section .product_pagination .next_product a:before {
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
  right: 0;
}

.catalog_category_section .main_product_info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid #ddd;
  border-bottom: none;
}

.catalog_category_section .gallery_box,
.catalog_category_section .show_box {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 50%;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  width: 50%;
}

.catalog_category_section .gallery_box .box_content {
  padding: 15px;
  position: relative;
  z-index: 1;
}

.catalog_category_section .gallery_box .company_logo {
  position: absolute;
  bottom: 15px;
  left: 0px;
  z-index: 2;
}

.catalog_category_section .gallery_box .company_logo img {
  max-width: 100%;
}

.catalog_category_section .gallery_box .large_photo_wrapper {
  position: relative;
}

.catalog_category_section .gallery_box .product_large_slider {
  position: relative;
  z-index: 1;
}

.catalog_category_section .gallery_box .product_large_slider .owl-prev,
.catalog_category_section .gallery_box .product_large_slider .owl-next {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 55px;
  height: 65px;
  background: rgba(0, 0, 0, 0.6);
  text-align: center;
  -webkit-transition: all .3s ease-out;
  -o-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

.catalog_category_section .gallery_box .product_large_slider .owl-prev:hover,
.catalog_category_section .gallery_box .product_large_slider .owl-next:hover {
  background: rgba(0, 0, 0, 0.8);
}

.catalog_category_section .gallery_box .product_large_slider .owl-prev:hover i,
.catalog_category_section .gallery_box .product_large_slider .owl-next:hover i {
  color: #004cbc;
}

.catalog_category_section .gallery_box .product_large_slider .owl-prev i,
.catalog_category_section .gallery_box .product_large_slider .owl-next i {
  font-size: 35px;
  color: #fff;
  line-height: 65px;
  -webkit-transition: all .3s ease-out;
  -o-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

.catalog_category_section .gallery_box .product_large_slider .owl-prev {
  left: 0;
}

.catalog_category_section .gallery_box .product_large_slider .owl-prev i {
  margin-left: -2px;
}

.catalog_category_section .gallery_box .product_large_slider .owl-next {
  right: 0;
}

.catalog_category_section .gallery_box .product_large_slider .owl-next i {
  margin-left: 2px;
}

.catalog_category_section .gallery_box .product_large_slider .owl-stage {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.catalog_category_section .gallery_box .product_large_slider .large_photo a {
  display: block;
  width: 100%;
}

.catalog_category_section .gallery_box .product_large_slider .large_photo a img {
  width: 100%;
}

.catalog_category_section .gallery_box .slide a {
  width: 75px;
  height: 75px;
  margin: 0 auto;
  display: block;
  border: 2px solid #ddd;
  -webkit-transition: all .3s ease-out;
  -o-transition: all .3s ease-out;
  transition: all .3s ease-out;
  overflow: hidden;
  position: relative;
}

.catalog_category_section .gallery_box .slide a img {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}

.catalog_category_section .gallery_box .slide a:hover {
  border-color: #007afa;
}

.catalog_category_section .show_box .phone_number_row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border: 1px solid #ddd;
  background: #e8f7ff;
  border-top: none;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 20px 5px;
}

.catalog_category_section .show_box .title_phone {
  padding-right: 15px;
}

.catalog_category_section .show_box .title_phone span {
  font-size: 18px;
  text-transform: uppercase;
}

.catalog_category_section .show_box .phone_wrapper a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.catalog_category_section .show_box .operator_icon {
  padding-right: 7px;
}

.catalog_category_section .show_box .operator_icon img {
  max-width: 100%;
}

.catalog_category_section .show_box .phone_number span {
  font-size: 21px;
  font-weight: 600;
  color: #000;
}

.catalog_category_section .show_box .box_content {
  border-left: 1px solid #ddd;
  padding: 15px;
  height: 100%;
}

.catalog_category_section .show_box .product_title span {
  font-size: 30px;
  line-height: 36px;
}

.catalog_category_section .show_box .producer_info {
  padding: 10px 0;
}

.catalog_category_section .show_box .producer_info span {
  display: inline-block;
  margin-right: 15px;
  font-size: 14px;
  color: #aeaeae;
}

.catalog_category_section .show_box .shop_wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid #ddd;
}

.catalog_category_section .show_box .price_box {
  border-right: 1px solid #ddd;
  padding: 4px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 50%;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
}

.catalog_category_section .show_box .ordering_btn button {
  width: 100%;
  height: 40px;
  background: #28af35;
  text-align: center;
  color: #fff;
  font-weight: 600;
  border: none;
  text-transform: uppercase;
  -webkit-transition: all .3s ease-out;
  -o-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

.catalog_category_section .show_box .ordering_btn button:hover {
  background: #e10000;
}

.catalog_category_section .show_box .price_wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  padding: 10px 0 20px;
}

.catalog_category_section .show_box .price_title {
  padding-right: 15px;
}

.catalog_category_section .show_box .price_title span {
  font-size: 18px;
}

.catalog_category_section .show_box .price_value span {
  display: block;
}

.catalog_category_section .show_box .price_value span.old_price {
  font-size: 14px;
  color: #aeaeae;
  text-decoration: line-through;
}

.catalog_category_section .show_box .price_value span.current_price {
  padding-top: 10px;
  font-size: 36px;
  line-height: 26px;
  color: #db0000;
}

.catalog_category_section .show_box .help_box {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 50%;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
}

.catalog_category_section .show_box .help_btn button {
  height: 65px;
  width: 100%;
  background: #f8f8f8;
  background: -webkit-linear-gradient(270deg, #f8f8f8 0%, white 100%);
  background: -o-linear-gradient(270deg, #f8f8f8 0%, white 100%);
  background: -webkit-gradient(linear, left bottom, left top, from(#f8f8f8), to(white));
  background: -webkit-linear-gradient(bottom, #f8f8f8 0%, white 100%);
  background: -o-linear-gradient(bottom, #f8f8f8 0%, white 100%);
  background: linear-gradient(0deg, #f8f8f8 0%, white 100%);
  border: none;
}

.catalog_category_section .show_box .help_btn button .btn_text {
  font-size: 13px;
  text-align: left;
  margin-left: 30px;
  padding-left: 75px;
  position: relative;
}

.catalog_category_section .show_box .help_btn button .btn_text span {
  font-weight: 600;
  font-size: 18px;
  color: #0040a0;
  text-transform: uppercase;
  display: block;
}

.catalog_category_section .show_box .help_btn button .btn_text:before {
  content: '';
  display: block;
  position: absolute;
  top: 0px;
  left: 0;
}

.catalog_category_section .show_box .help_btn.question button {
  border-bottom: 1px solid #ddd;
}

.catalog_category_section .show_box .help_btn.question button .btn_text:before {
  width: 35px;
  height: 35px;
  background: url(../img/question_i.png) no-repeat center;
}

.catalog_category_section .show_box .help_btn.call button .btn_text:before {
  width: 35px;
  height: 33px;
  background: url(../img/phone_i.png) no-repeat center;
}

.catalog_category_section .files_row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 -5px;
  padding-top: 10px;
}

.catalog_category_section .files_row .file_wrapper {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 50%;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
}

.catalog_category_section .files_row .file_link {
  padding: 0 5px;
}

.catalog_category_section .files_row .file_link a {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border: 1px solid #ddd;
  z-index: 1;
}

.catalog_category_section .files_row .file_link a:before, .catalog_category_section .files_row .file_link a:after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  -webkit-transition: all .3s ease-out;
  -o-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

.catalog_category_section .files_row .file_link a:before {
  background: #f8f8f8;
  background: -webkit-linear-gradient(270deg, #f8f8f8 0%, white 100%);
  background: -o-linear-gradient(270deg, #f8f8f8 0%, white 100%);
  background: -webkit-gradient(linear, left bottom, left top, from(#f8f8f8), to(white));
  background: -webkit-linear-gradient(bottom, #f8f8f8 0%, white 100%);
  background: -o-linear-gradient(bottom, #f8f8f8 0%, white 100%);
  background: linear-gradient(0deg, #f8f8f8 0%, white 100%);
}

.catalog_category_section .files_row .file_link a:after {
  background: white;
  background: -webkit-linear-gradient(270deg, white 0%, #e8f7ff 100%);
  background: -o-linear-gradient(270deg, white 0%, #e8f7ff 100%);
  background: -webkit-gradient(linear, left bottom, left top, from(white), to(#e8f7ff));
  background: -webkit-linear-gradient(bottom, white 0%, #e8f7ff 100%);
  background: -o-linear-gradient(bottom, white 0%, #e8f7ff 100%);
  background: linear-gradient(0deg, white 0%, #e8f7ff 100%);
  opacity: 0;
}

.catalog_category_section .files_row .file_link a:hover .file_title span:last-child {
  color: #007afa;
}

.catalog_category_section .files_row .file_link a:hover:after {
  opacity: 1;
}

.catalog_category_section .files_row .file_link .file_i {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 80px;
  -ms-flex: 0 0 80px;
  flex: 0 0 80px;
  text-align: center;
  padding: 12px 0;
  border-right: 1px solid #ddd;
}

.catalog_category_section .files_row .file_link .file_i img {
  max-width: 100%;
}

.catalog_category_section .files_row .file_link .file_title {
  padding-left: 15px;
}

.catalog_category_section .files_row .file_link .file_title span {
  text-transform: uppercase;
  display: block;
  -webkit-transition: all .3s ease-out;
  -o-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

.catalog_category_section .files_row .file_link .file_title span:first-child {
  font-size: 13px;
  color: #000;
}

.catalog_category_section .files_row .file_link .file_title span:last-child {
  font-size: 16px;
  font-weight: 600;
  color: #0040a0;
}

.catalog_category_section .product_warranties {
  padding-top: 20px;
}

.catalog_category_section .product_warranties .item_wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 1px dashed #ddd;
  padding: 15px 18px;
}

.catalog_category_section .product_warranties .item_wrapper:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.catalog_category_section .product_warranties .item_wrapper:first-child {
  padding-top: 0;
}

.catalog_category_section .product_warranties .item_wrapper .icon {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 80px;
  -ms-flex: 0 0 80px;
  flex: 0 0 80px;
  max-width: 100%;
}

.catalog_category_section .product_warranties .item_wrapper .title {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.catalog_category_section .product_warranties .item_wrapper .title span {
  font-size: 18px;
  text-transform: uppercase;
}

.catalog_category_section .partners_section {
  padding-bottom: 20px;
}

/*=================================================*/
/*	END Catalog Category	*/
/*=================================================*/
/*=================================================*/
/*	START Modal Forms	*/
/*=================================================*/
.modal_form {
  background: transparent;
  padding: 0;
  width: 555px;
  display: none;
}

.modal_form#technicalConsultation {
  width: 945px;
}

.modal_form#technicalConsultation .window_content {
  padding: 0;
}

.modal_form#technicalConsultation .form_container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.modal_form#technicalConsultation .field_wrapper {
  border-color: #d0d0d0;
  background: #f7f7f7;
}

.modal_form#technicalConsultation .field_title label {
  color: #000;
}

.modal_form#technicalConsultation .input_wrapper input {
  color: #000;
}

.modal_form#technicalConsultation .input_wrapper input::-webkit-input-placeholder {
  color: #000;
}

.modal_form#technicalConsultation .input_wrapper input::-moz-placeholder {
  color: #000;
}

.modal_form#technicalConsultation .input_wrapper input:-moz-placeholder {
  color: #000;
}

.modal_form#technicalConsultation .input_wrapper input:-ms-input-placeholder {
  color: #000;
}

.modal_form#technicalConsultation .form_title span {
  color: #000;
}

.modal_form#technicalConsultation .subtitle span {
  color: #000;
}

.modal_form .form_bg {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 360px;
  -ms-flex: 0 0 360px;
  flex: 0 0 360px;
  background: url(../img/modal_form_bg.jpg) no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
}

.modal_form .form_box {
  padding: 30px;
  background: #fff;
}

.modal_form .company_logo img {
  max-width: 100%;
  display: block;
}

.modal_form .window_content {
  background: #30568e;
  padding: 30px;
}

.modal_form .fancybox-close-small {
  top: 40px;
  right: 10px;
  color: transparent;
  width: 19px;
  height: 20px;
  background: url(../img/close_i.png) no-repeat center;
}

.modal_form .fancybox-close-small:hover {
  opacity: .7;
}

.modal_form .form_title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.modal_form .form_title img {
  max-width: 100%;
}

.modal_form .form_title span {
  font-size: 30px;
  color: #fff;
  display: inline-block;
  padding-left: 15px;
}

.modal_form .subtitle {
  padding-top: 5px;
}

.modal_form .subtitle span {
  color: #fff;
  line-height: 21px;
}

.modal_form .field_wrapper {
  border: 1px solid #5499ff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 6px 15px;
  margin-top: 15px;
}

.modal_form .field_wrapper.product_title {
  background: #153462;
}

.modal_form .button_wrapper {
  padding-top: 15px;
}

.modal_form .button_wrapper button {
  display: block;
  background: #ffe508;
  text-align: center;
  height: 40px;
  padding: 0 20px;
  border: none;
  margin: 0 auto;
  -webkit-transition: all .3s ease-out;
  -o-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

.modal_form .button_wrapper button span {
  font-weight: 600;
  color: #000;
  text-decoration: underline;
  -webkit-transition: all .3s ease-out;
  -o-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

.modal_form .button_wrapper button:hover {
  background: #007afa;
}

.modal_form .button_wrapper button:hover span {
  text-decoration: none;
  color: #fff;
}

.modal_form .field_title {
  padding-right: 5px;
}

.modal_form .field_title label {
  color: #fff;
}

.modal_form .field_title span {
  color: #ffe508;
}

.modal_form .input_wrapper {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.modal_form .input_wrapper input {
  width: 100%;
  background: transparent;
  border: none;
  color: #fff;
}

.modal_form .input_wrapper input::-webkit-input-placeholder {
  color: #fff;
}

.modal_form .input_wrapper input::-moz-placeholder {
  color: #fff;
}

.modal_form .input_wrapper input:-moz-placeholder {
  color: #fff;
}

.modal_form .input_wrapper input:-ms-input-placeholder {
  color: #fff;
}

.modal_form .fields_wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 30px 45px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.modal_form .fields_wrapper .field_wrapper {
  border: 1px solid #5499ff !important;
  background: transparent !important;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 360px;
  -ms-flex: 0 0 360px;
  flex: 0 0 360px;
}

.modal_form .fields_wrapper .field_title label {
  color: #fff !important;
}

.modal_form .fields_wrapper .input_wrapper input {
  color: #fff !important;
}

.modal_form .fields_wrapper .input_wrapper input::-webkit-input-placeholder {
  color: #fff !important;
}

.modal_form .fields_wrapper .input_wrapper input::-moz-placeholder {
  color: #fff !important;
}

.modal_form .fields_wrapper .input_wrapper input:-moz-placeholder {
  color: #fff !important;
}

.modal_form .fields_wrapper .input_wrapper input:-ms-input-placeholder {
  color: #fff !important;
}

/*=================================================*/
/*	END Modal Forms	*/
/*=================================================*/
/*=================================================*/
/*	START About Us	*/
/*=================================================*/
.our_start {
  background: url(../img/our_start.jpg) no-repeat center;
  -webkit-background-size: cover;
  background-size: cover;
  padding: 150px 0;
  text-align: center;
  background-attachment: fixed;
}

.our_start .company_title span {
  font-size: 60px;
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
}

.our_start .company_way span {
  line-height: 48px;
  font-size: 30px;
  text-transform: uppercase;
  color: #fff;
}

.our_start .year_of_foundation {
  padding-top: 70px;
}

.our_start .year_of_foundation .number span {
  font-size: 115px;
  line-height: 78px;
  font-weight: 100;
  color: #fff;
}

.our_start .year_of_foundation .number_description {
  padding-top: 10px;
}

.our_start .year_of_foundation .number_description span {
  font-size: 30px;
  font-weight: 100;
  color: #fff;
}

.our_task {
  background: #032251;
}

.our_task .task_description {
  padding: 55px 0;
  text-align: center;
}

.our_task .task_description p {
  font-size: 24px;
  line-height: 36px;
  color: #fff;
}

.our_task .task_description p span {
  font-weight: 600;
  text-transform: uppercase;
}

.about_us_section .our_solution_section {
  padding: 0;
  padding-bottom: 70px;
}

.about_us_section .our_solution_section .solution_wrapper {
  padding: 0 15px 30px;
}

.about_us_section .our_solution_section .section_content:before {
  display: none;
}

.about_us_section .our_solution_section .solution_list {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.about_us_section .our_solution_section .title_content {
  padding: 65px 0 45px;
  font-size: 24px;
  font-weight: 400;
  color: #000;
  text-transform: uppercase;
}

.about_us_section .our_solution_section .title_content span {
  font-weight: 600;
  display: inline-block;
  font-size: 24px;
}

.about_us_section .file_link {
  padding: 70px 0 0;
  display: block;
}

.about_us_section .file_link a {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border: 1px solid #ddd;
  z-index: 1;
  width: 230px;
  margin: 0 auto;
}

.about_us_section .file_link a:before, .about_us_section .file_link a:after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  -webkit-transition: all .3s ease-out;
  -o-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

.about_us_section .file_link a:before {
  background: #f8f8f8;
  background: -webkit-linear-gradient(270deg, #f8f8f8 0%, white 100%);
  background: -o-linear-gradient(270deg, #f8f8f8 0%, white 100%);
  background: -webkit-gradient(linear, left bottom, left top, from(#f8f8f8), to(white));
  background: -webkit-linear-gradient(bottom, #f8f8f8 0%, white 100%);
  background: -o-linear-gradient(bottom, #f8f8f8 0%, white 100%);
  background: linear-gradient(0deg, #f8f8f8 0%, white 100%);
}

.about_us_section .file_link a:after {
  background: white;
  background: -webkit-linear-gradient(270deg, white 0%, #e8f7ff 100%);
  background: -o-linear-gradient(270deg, white 0%, #e8f7ff 100%);
  background: -webkit-gradient(linear, left bottom, left top, from(white), to(#e8f7ff));
  background: -webkit-linear-gradient(bottom, white 0%, #e8f7ff 100%);
  background: -o-linear-gradient(bottom, white 0%, #e8f7ff 100%);
  background: linear-gradient(0deg, white 0%, #e8f7ff 100%);
  opacity: 0;
}

.about_us_section .file_link a:hover .file_title span:last-child {
  color: #007afa;
}

.about_us_section .file_link a:hover:after {
  opacity: 1;
}

.about_us_section .file_link .file_i {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 80px;
  -ms-flex: 0 0 80px;
  flex: 0 0 80px;
  text-align: center;
  padding: 12px 0;
  border-right: 1px solid #ddd;
}

.about_us_section .file_link .file_i img {
  max-width: 100%;
}

.about_us_section .file_link .file_title {
  padding-left: 15px;
  text-align: left;
}

.about_us_section .file_link .file_title span {
  text-transform: uppercase;
  display: block;
  -webkit-transition: all .3s ease-out;
  -o-transition: all .3s ease-out;
  transition: all .3s ease-out;
  font-size: 16px;
  font-weight: 600;
  color: #0040a0;
}

.about_us_section .question_form_wrapper {
  padding-bottom: 60px;
}

.about_us_section .question_form_wrapper .form_description {
  text-align: center;
  padding: 50px 0;
}

.about_us_section .question_form_wrapper .form_description p {
  font-size: 24px;
  line-height: 36px;
}

.about_us_section .question_form_wrapper .form_description p span {
  font-weight: 600;
}

.about_us_section .question_form_wrapper .form_inner {
  border: 5px solid #ffd800;
  padding: 50px;
  background: url(../img/form_bg.jpg) no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
}

.about_us_section .question_form_wrapper .form_head {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.about_us_section .question_form_wrapper .form_title {
  padding-bottom: 10px;
}

.about_us_section .question_form_wrapper .form_title span {
  font-size: 24px;
  font-weight: 600;
  color: #003e9a;
  text-transform: uppercase;
}

.about_us_section .question_form_wrapper .form_sub_title p {
  font-size: 14px;
  color: #000;
}

.about_us_section .question_form_wrapper .form_sub_title span {
  color: #003e9a;
}

.about_us_section .question_form_wrapper .phone_numbers_box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-top: 30px;
}

.about_us_section .question_form_wrapper .phone_numbers_box .phone_wrapper {
  padding: 0 25px;
}

.about_us_section .question_form_wrapper .phone_numbers_box .phone_wrapper:first-child {
  padding-top: 0;
}

.about_us_section .question_form_wrapper .phone_numbers_box .phone_wrapper a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.about_us_section .question_form_wrapper .phone_numbers_box .operator_icon {
  padding-right: 7px;
}

.about_us_section .question_form_wrapper .phone_numbers_box .operator_icon img {
  max-width: 100%;
}

.about_us_section .question_form_wrapper .phone_numbers_box .phone_number {
  font-size: 21px;
  font-weight: 600;
  color: #000;
}

.about_us_section .question_form_wrapper .phone_numbers_box .phone_number span {
  font-size: 400;
  color: #898989;
  font-size: 16px;
  display: inline-block;
  padding-right: 5px;
}

.about_us_section .question_form_wrapper .order_phone_call a {
  display: block;
  background: #ffe508;
  text-align: center;
  padding: 12px 0;
  width: 165px;
  -webkit-transition: all .3s ease-out;
  -o-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

.about_us_section .question_form_wrapper .order_phone_call a span {
  font-weight: 600;
  color: #000;
  text-decoration: underline;
  -webkit-transition: all .3s ease-out;
  -o-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

.about_us_section .question_form_wrapper .order_phone_call a:hover {
  background: #007afa;
}

.about_us_section .question_form_wrapper .order_phone_call a:hover span {
  color: #ffff;
  text-decoration: none;
}

.about_us_section .question_form_wrapper .form_head {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.about_us_section .question_form_wrapper .titles_wrapper {
  padding-right: 80px;
}

.about_us_section .about_us_text_thmb {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  border-top: 1px solid #ddd;
}

.about_us_section .about_us_text_thmb.switch_position {
  border-top: none;
}

.about_us_section .about_us_text_thmb.switch_position .thmb_box {
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
  -ms-flex-order: 2;
  order: 2;
}

.about_us_section .about_us_text_thmb.switch_position .text_box {
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
  -ms-flex-order: 1;
  order: 1;
}

.about_us_section .about_us_text_thmb .thmb_box,
.about_us_section .about_us_text_thmb .text_box {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 50%;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  overflow: hidden;
}

.about_us_section .about_us_text_thmb .thumbnail_wrapper {
  height: 100%;
}

.about_us_section .about_us_text_thmb .thumbnail_wrapper img {
  height: 100%;
  display: block;
}

.about_us_section .about_us_text_thmb .about_us_text {
  padding: 60px;
}

.about_us_section .about_us_text_thmb .about_us_text h2 {
  text-transform: uppercase;
  font-size: 30px;
  line-height: 36px;
}

.about_us_section .about_us_text_thmb .about_us_text p {
  font-size: 18px;
  color: #5e5e5e;
}

.about_us_section .about_us_text_thmb .delivery_steps .title {
  position: relative;
  padding-bottom: 70px;
}

.about_us_section .about_us_text_thmb .delivery_steps .title span {
  font-size: 30px;
  line-height: 36px;
  color: #000;
  text-transform: uppercase;
}

.about_us_section .about_us_text_thmb .delivery_steps .title .step_number {
  font-size: 172px;
  line-height: 150px;
  font-weight: 600;
  font-style: italic;
  color: rgba(0, 0, 0, 0.15);
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transform: translateY(-25%);
  -ms-transform: translateY(-25%);
  transform: translateY(-25%);
}

.about_us_section .about_us_text_thmb .delivery_steps .deadline_wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding-bottom: 50px;
}

.about_us_section .about_us_text_thmb .delivery_steps .deadline_wrapper .period {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 130px;
  -ms-flex: 0 0 130px;
  flex: 0 0 130px;
  padding-right: 15px;
}

.about_us_section .about_us_text_thmb .delivery_steps .deadline_wrapper .period span {
  display: block;
  color: #007afa;
  text-align: center;
}

.about_us_section .about_us_text_thmb .delivery_steps .deadline_wrapper .period span:first-child {
  font-size: 70px;
  line-height: 60px;
}

.about_us_section .about_us_text_thmb .delivery_steps .deadline_wrapper .period span:last-child {
  font-size: 24px;
}

.about_us_section .about_us_text_thmb .delivery_steps .deadline_wrapper .period_description span {
  font-size: 18px;
  color: #5e5e5e;
}

.about_us_section .about_us_text_thmb .delivery_steps .step_two p + ul {
  margin-top: 20px;
}

.about_us_section .partners_info {
  padding: 130px 0 95px;
  background: #f4f8d3;
  background: -webkit-linear-gradient(0deg, #f4f8d3 0%, #fefff6 100%);
  background: -o-linear-gradient(0deg, #f4f8d3 0%, #fefff6 100%);
  background: -webkit-gradient(linear, left top, right top, from(#f4f8d3), to(#fefff6));
  background: -webkit-linear-gradient(left, #f4f8d3 0%, #fefff6 100%);
  background: -o-linear-gradient(left, #f4f8d3 0%, #fefff6 100%);
  background: linear-gradient(90deg, #f4f8d3 0%, #fefff6 100%);
}

.about_us_section .partners_info .partners_data {
  padding: 0 100px;
}

.about_us_section .partners_info .partners_list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.about_us_section .partners_info .partner_wrapper {
  padding: 0 10px 30px;
}

.about_us_section .partners_info .partner_wrapper img {
  max-width: 100%;
}

.about_us_section .partners_info .partners_description {
  text-align: center;
  padding-top: 40px;
}

.about_us_section .partners_info .partners_description p {
  font-size: 24px;
  line-height: 36px;
}

.about_us_section .partners_info .partners_description p:first-child {
  padding-bottom: 40px;
}

.about_us_section .partners_info .partners_description p span {
  font-weight: 600;
}

.about_us_section .staff_experience {
  background: #032251;
}

.about_us_section .staff_experience .about_experience {
  padding: 55px 0;
  text-align: center;
}

.about_us_section .staff_experience .about_experience p {
  font-size: 24px;
  line-height: 36px;
  color: #fff;
}

.about_us_section .facts_about_us {
  border-top: 1px solid #ddd;
  padding: 55px 0;
}

.about_us_section .facts_box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.about_us_section .facts_box .text_box {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.about_us_section .facts_box .text_box .box_content {
  padding-right: 126px;
}

.about_us_section .facts_box .numbers_box {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 361px;
  -ms-flex: 0 0 361px;
  flex: 0 0 361px;
}

.about_us_section .facts_box .numbers_box .box_content {
  background: #f9f9f9;
  padding: 0 50px 50px;
}

.about_us_section .facts_box .fact_item {
  padding-top: 60px;
  text-align: center;
}

.about_us_section .facts_box .number span {
  font-size: 72px;
  line-height: 50px;
  color: #007afa;
  font-weight: 100;
}

.about_us_section .facts_box .fact_description {
  padding-top: 30px;
}

.about_us_section .facts_box .fact_description span {
  font-size: 18px;
  line-height: 24px;
  color: #000;
}

.about_us_section .facts_box .text_box {
  padding-top: 45px;
}

.about_us_section .facts_box .text_box .title {
  padding-bottom: 30px;
}

.about_us_section .facts_box .text_box .title span {
  text-transform: uppercase;
  font-size: 30px;
  line-height: 36px;
}

.about_us_section .facts_box .text_box p {
  font-size: 18px;
  line-height: 24px;
  color: #5e5e5e;
  padding: 20px 0;
}

.about_us_section .facts_box .text_box p strong {
  color: #000;
}

.about_us_section .facts_box .text_box p span {
  color: #000;
}

.about_us_section .facts_box .text_box .we_were_sponsor {
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}

.about_us_section .facts_box .text_box .we_were_sponsor span {
  text-transform: uppercase;
}

.about_us_section .delivery_information_title {
  background: #032251 url(../img/delivery_bg.png) no-repeat left center;
  position: relative;
}

.about_us_section .delivery_information_title:before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  top: 0;
  left: 0;
}

.about_us_section .delivery_information_title .about_delivery {
  padding: 50px 0 65px;
  text-align: center;
}

.about_us_section .delivery_information_title .about_delivery p {
  font-size: 24px;
  line-height: 36px;
  color: #fff;
}

.about_us_section .igloo_production {
  background: url(../img/freezer_bg.jpg) no-repeat center;
  -webkit-background-size: cover;
  background-size: cover;
  padding: 90px 0 60px;
}

.about_us_section .igloo_production .about_igloo_production {
  padding-right: 50%;
}

.about_us_section .igloo_production .about_igloo_production p {
  margin: 30px 0;
  color: #fff;
}

.about_us_section .igloo_production .about_igloo_production p strong {
  color: #fff;
}

.about_us_section .igloo_production .title {
  padding-top: 30px;
}

.about_us_section .igloo_production .title span {
  color: #fff;
  font-size: 36px;
}

.about_us_section .last_delivery_step {
  padding: 160px 0 140px;
  background: url(../img/tird_plus_bg.png) no-repeat center;
  -webkit-background-size: cover;
  background-size: cover;
  border-bottom: 1px solid #dedede;
}

.about_us_section .last_delivery_step .step_wrapper {
  font-size: 36px;
  color: #000;
  text-align: center;
}

.about_us_section .last_delivery_step .step_wrapper .third_plus_text {
  position: relative;
  display: inline-block;
}

.about_us_section .last_delivery_step .step_wrapper span {
  color: #007afa;
}

.about_us_section .last_delivery_step .step_wrapper .step_number {
  font-size: 172px;
  line-height: 150px;
  font-weight: 600;
  font-style: italic;
  color: rgba(0, 0, 0, 0.15);
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transform: translateY(-25%);
  -ms-transform: translateY(-25%);
  transform: translateY(-25%);
}

.about_us_section .progress_section {
  background: url(../img/progress_bg.jpg) repeat;
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}

.about_us_section .progress_section .progress_title {
  position: absolute;
  width: 1004px;
  height: 967px;
  background: url(../img/progress_title_bg.png) no-repeat center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  left: -43%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.about_us_section .progress_section .title_content {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 450px;
  -ms-flex: 0 0 450px;
  flex: 0 0 450px;
  text-align: center;
  margin-right: 100px;
}

.about_us_section .progress_section .title_content p {
  font-size: 36px;
  color: #000;
}

.about_us_section .progress_section .our_achievements_list {
  padding-left: 435px;
}

.about_us_section .progress_section .list_item {
  padding: 10px 0;
  position: relative;
}

.about_us_section .progress_section .list_item:before {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.about_us_section .progress_section .list_item:nth-child(1):before {
  width: 214px;
  height: 63px;
  background: url(../img/first_line.png) no-repeat;
  left: -209px;
}

.about_us_section .progress_section .list_item:nth-child(1) .item_logo:before {
  background: url(../img/progress_logo_bg1.png) no-repeat center;
}

.about_us_section .progress_section .list_item:nth-child(5):before {
  width: 218px;
  height: 56px;
  background: url(../img/last_line.png) no-repeat;
  left: -210px;
}

.about_us_section .progress_section .list_item:nth-child(5) .item_logo:before {
  background: url(../img/progress_logo_bg5.png) no-repeat center;
}

.about_us_section .progress_section .list_item:nth-child(2) {
  padding-left: 80px;
}

.about_us_section .progress_section .list_item:nth-child(2):before {
  height: 5px;
  width: 130px;
  background: #fff;
  left: -15px;
}

.about_us_section .progress_section .list_item:nth-child(2) .item_logo:before {
  background: url(../img/progress_logo_bg2.png) no-repeat center;
}

.about_us_section .progress_section .list_item:nth-child(3) {
  padding-left: 130px;
}

.about_us_section .progress_section .list_item:nth-child(3):before {
  height: 5px;
  width: 130px;
  background: #fff;
  left: 48px;
}

.about_us_section .progress_section .list_item:nth-child(3) .item_logo:before {
  background: url(../img/progress_logo_bg3.png) no-repeat center;
}

.about_us_section .progress_section .list_item:nth-child(4) {
  padding-left: 80px;
}

.about_us_section .progress_section .list_item:nth-child(4):before {
  height: 5px;
  width: 130px;
  background: #fff;
  left: -15px;
}

.about_us_section .progress_section .list_item:nth-child(4) .item_logo:before {
  background: url(../img/progress_logo_bg4.png) no-repeat center;
}

.about_us_section .progress_section .item_content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.about_us_section .progress_section .item_logo {
  width: 232px;
  height: 217px;
  position: relative;
  z-index: 2;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 232px;
  -ms-flex: 0 0 232px;
  flex: 0 0 232px;
}

.about_us_section .progress_section .item_logo:before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: url(../img/progress_logo_bg1.png) no-repeat center;
}

.about_us_section .progress_section .logo_wrapper {
  position: relative;
  height: 217px;
  width: 217px;
}

.about_us_section .progress_section .logo_wrapper img {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  max-width: 100%;
}

.about_us_section .progress_section .item_description {
  position: relative;
  z-index: 1;
  background: #fff;
  min-height: 160px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 10px 35px 10px 80px;
  -webkit-transform: translateX(-70px);
  -ms-transform: translateX(-70px);
  transform: translateX(-70px);
  -webkit-border-radius: 0 35px 35px 0;
  border-radius: 0 35px 35px 0;
}

.about_us_section .progress_section .item_description p {
  line-height: 24px;
  font-size: 18px;
  color: #5e5e5e;
}

/*=================================================*/
/*	END About Us	*/
/*=================================================*/
/*=================================================*/
/*	START Solutions Single	*/
/*=================================================*/
.turnkey_solution {
  background: url(../img/solutions_single_bg.jpg) no-repeat center;
  -webkit-background-size: cover;
  background-size: cover;
  padding-bottom: 215px;
}

.turnkey_solution .ordering_solution {
  background: rgba(0, 0, 0, 0.6);
}

.turnkey_solution .file_link {
  padding: 15px 0 0;
}

.turnkey_solution .file_link a {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border: 1px solid #ddd;
  z-index: 1;
  width: 260px;
}

.turnkey_solution .file_link a:before, .turnkey_solution .file_link a:after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  -webkit-transition: all .3s ease-out;
  -o-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

.turnkey_solution .file_link a:before {
  background: #f8f8f8;
  background: -webkit-linear-gradient(270deg, #f8f8f8 0%, white 100%);
  background: -o-linear-gradient(270deg, #f8f8f8 0%, white 100%);
  background: -webkit-gradient(linear, left bottom, left top, from(#f8f8f8), to(white));
  background: -webkit-linear-gradient(bottom, #f8f8f8 0%, white 100%);
  background: -o-linear-gradient(bottom, #f8f8f8 0%, white 100%);
  background: linear-gradient(0deg, #f8f8f8 0%, white 100%);
}

.turnkey_solution .file_link a:after {
  background: white;
  background: -webkit-linear-gradient(270deg, white 0%, #e8f7ff 100%);
  background: -o-linear-gradient(270deg, white 0%, #e8f7ff 100%);
  background: -webkit-gradient(linear, left bottom, left top, from(white), to(#e8f7ff));
  background: -webkit-linear-gradient(bottom, white 0%, #e8f7ff 100%);
  background: -o-linear-gradient(bottom, white 0%, #e8f7ff 100%);
  background: linear-gradient(0deg, white 0%, #e8f7ff 100%);
  opacity: 0;
}

.turnkey_solution .file_link a:hover .file_title span:last-child {
  color: #007afa;
}

.turnkey_solution .file_link a:hover:after {
  opacity: 1;
}

.turnkey_solution .file_link .file_i {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 80px;
  -ms-flex: 0 0 80px;
  flex: 0 0 80px;
  text-align: center;
  padding: 12px 0;
  border-right: 1px solid #ddd;
}

.turnkey_solution .file_link .file_i img {
  max-width: 100%;
}

.turnkey_solution .file_link .file_title {
  padding-left: 15px;
}

.turnkey_solution .file_link .file_title span {
  text-transform: uppercase;
  display: block;
  -webkit-transition: all .3s ease-out;
  -o-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

.turnkey_solution .file_link .file_title span:first-child {
  font-size: 13px;
  color: #000;
}

.turnkey_solution .file_link .file_title span:last-child {
  font-size: 16px;
  font-weight: 600;
  color: #0040a0;
}

.turnkey_solution .solution_ordering {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 80px 0;
}

.turnkey_solution .products_count {
  text-align: center;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 262px;
  -ms-flex: 0 0 262px;
  flex: 0 0 262px;
}

.turnkey_solution .products_count .number span {
  color: #fff;
  font-size: 72px;
  font-weight: 100;
}

.turnkey_solution .products_count .number_description p {
  line-height: 24px;
  font-size: 18px;
  color: #fff;
}

.turnkey_solution .title_wrapper span {
  font-size: 48px;
  line-height: 24px;
  color: #fff;
}

.turnkey_solution .subtitle_wrapper {
  padding: 15px 0 20px;
}

.turnkey_solution .subtitle_wrapper p {
  font-size: 18px;
  color: #fff;
}

.turnkey_solution .ordering_button button {
  background: #ffe508;
  padding: 12px 30px;
  font-weight: 600;
  color: #000;
  border: none;
  text-transform: uppercase;
  -webkit-transition: all .3s ease-out;
  -o-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

.turnkey_solution .ordering_button button:hover {
  background: #007afa;
  color: #ffff;
}

/*=================================================*/
/*	END Solutions Single	*/
/*=================================================*/
/*=================================================*/
/*	START Completed Projects	*/
/*=================================================*/
.completed_projects {
  background: url(../img/completed_projects_bg.jpg) no-repeat center;
  -webkit-background-size: cover;
  background-size: cover;
  padding-top: 40px;
}

.completed_projects .section_title {
  font-weight: 600;
  font-size: 36px;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
}

.completed_projects .section_title span {
  color: #000;
  background: #edc900;
  display: inline-block;
  padding: 3px 5px 2px;
}

.completed_projects .completed_projects_list {
  padding-top: 55px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 0 -15px;
}

.completed_projects .project_wrapper {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 25%;
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
}

.completed_projects .project_wrapper .project_inner {
  padding: 0 15px 30px;
  text-align: center;
}

.completed_projects .project_wrapper .project_inner:hover .project_thmb a {
  border-color: #edc900;
}

.completed_projects .project_thmb a {
  display: block;
  width: 262px;
  height: 262px;
  overflow: hidden;
  border: 6px solid #153d8e;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  -webkit-transition: all .3s ease-out;
  -o-transition: all .3s ease-out;
  transition: all .3s ease-out;
  position: relative;
}

.completed_projects .project_thmb a img {
  display: block;
  -webkit-transition: all .3s ease-out;
  -o-transition: all .3s ease-out;
  transition: all .3s ease-out;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}

.completed_projects .project_thmb a:hover img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.completed_projects .project_title {
  padding-top: 25px;
}

.completed_projects .project_title a {
  line-height: 21px;
  font-size: 18px;
  color: #fff115;
  text-decoration: underline;
}

.completed_projects .project_title a:hover {
  text-decoration: none;
}

.solution_products_section .section_content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-top: 30px;
}

.solution_products_section .contacts_box {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 263px;
  -ms-flex: 0 0 263px;
  flex: 0 0 263px;
}

.solution_products_section .products_list_box {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.solution_products_section .products_list_box .box_content {
  padding-left: 30px;
}

.solution_products_section .products_list_box .catalog_list {
  border-top: none;
  padding-top: 0;
  padding-bottom: 30px;
}

.solution_products_section .products_list_box .catalog_list .item_wrapper {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 33.33333%;
  -ms-flex: 0 0 33.33333%;
  flex: 0 0 33.33333%;
}

.solution_products_section .products_list_box .other_content_title {
  padding-top: 0;
}

.solution_products_section .realised_projects_link .text_link {
  padding-left: 40px;
  position: relative;
}

.solution_products_section .realised_projects_link .text_link:before {
  content: '';
  display: block;
  width: 11px;
  height: 21px;
  background: url(../img/yellow_angle.png) no-repeat center;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.solution_products_section .realised_projects_link a {
  text-transform: uppercase;
  text-decoration: none;
  font-size: 18px;
  line-height: 21px;
  font-weight: 600;
  color: #fff;
  padding: 45px 20px;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 1;
  overflow: hidden;
}

.solution_products_section .realised_projects_link a:before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background: url(../img/realised_projects_bg.jpg) no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  -webkit-transition: all .3s ease-out;
  -o-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

.solution_products_section .realised_projects_link a span {
  font-size: 13px;
  font-weight: 400;
  display: block;
}

.solution_products_section .realised_projects_link a:hover:before {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.solution_products_section .advantage_wrapper {
  border: 1px solid #ddd;
  height: 68px;
  padding: 15px 5px 15px 15px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 13px;
}

.solution_products_section .advantage_wrapper .icon {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 55px;
  -ms-flex: 0 0 55px;
  flex: 0 0 55px;
}

.solution_products_section .advantage_wrapper .icon img {
  max-width: 100%;
}

.solution_products_section .advantage_wrapper .text span {
  display: block;
  text-transform: uppercase;
  font-size: 13px;
  color: #000;
}

.solution_products_section .advantage_wrapper .text span:last-child {
  font-weight: 600;
  font-size: 18px;
  padding-top: 3px;
}

.solution_products_section .question_form_wrapper {
  margin-top: 20px;
}

.solution_products_section .question_form_wrapper {
  background: url(../img/form_bg.jpg) repeat;
  border: 5px solid #ffd800;
  padding: 20px;
}

.solution_products_section .question_form_wrapper .phone_numbers_box {
  border-top: 1px solid #c5c5c5;
  border-bottom: 1px solid #c5c5c5;
  padding: 20px 0;
}

.solution_products_section .question_form_wrapper .phone_numbers_box .phone_wrapper {
  padding-top: 15px;
}

.solution_products_section .question_form_wrapper .phone_numbers_box .phone_wrapper:first-child {
  padding-top: 0;
}

.solution_products_section .question_form_wrapper .phone_numbers_box .phone_wrapper a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.solution_products_section .question_form_wrapper .phone_numbers_box .operator_icon {
  padding-right: 7px;
}

.solution_products_section .question_form_wrapper .phone_numbers_box .operator_icon img {
  max-width: 100%;
}

.solution_products_section .question_form_wrapper .phone_numbers_box .phone_number {
  font-size: 21px;
  font-weight: 600;
  color: #000;
}

.solution_products_section .question_form_wrapper .phone_numbers_box .phone_number span {
  font-size: 400;
  color: #898989;
  font-size: 16px;
  display: inline-block;
  padding-right: 5px;
}

.solution_products_section .question_form_wrapper .order_phone_call {
  padding-top: 20px;
}

.solution_products_section .question_form_wrapper .order_phone_call a {
  display: block;
  background: #ffe508;
  text-align: center;
  padding: 12px 0;
  -webkit-transition: all .3s ease-out;
  -o-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

.solution_products_section .question_form_wrapper .order_phone_call a span {
  font-weight: 600;
  color: #000;
  text-decoration: underline;
  -webkit-transition: all .3s ease-out;
  -o-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

.solution_products_section .question_form_wrapper .order_phone_call a:hover {
  background: #007afa;
}

.solution_products_section .question_form_wrapper .order_phone_call a:hover span {
  color: #ffff;
  text-decoration: none;
}

.solution_products_section .question_form_wrapper .offecess_list {
  padding-top: 20px;
}

.solution_products_section .question_form_wrapper .offecess_list .title span {
  font-size: 14px;
  font-weight: 600;
  color: #000;
}

.solution_products_section .question_form_wrapper .offecess_list p {
  margin: 15px 0;
  line-height: 18px;
  font-size: 14px;
  color: #000;
}

.solution_products_section .question_form_wrapper .working_hours {
  padding: 15px 0;
}

.solution_products_section .question_form_wrapper .working_hours span {
  font-size: 14px;
}

.solution_products_section .question_form_wrapper .form_title span {
  display: inline-block;
  font-weight: 600;
  font-size: 21px;
  line-height: 24px;
  text-transform: uppercase;
  color: #004cbc;
  position: relative;
  padding-left: 50px;
}

.solution_products_section .question_form_wrapper .form_title span:before {
  content: '';
  display: block;
  width: 35px;
  height: 35px;
  background: url(../img/telemarketer.png) no-repeat;
  position: absolute;
  top: 0;
  left: 0;
}

.solution_products_section .question_form_wrapper .form_sub_title {
  padding-top: 15px;
}

.solution_products_section .question_form_wrapper .form_sub_title p {
  font-size: 14px;
  line-height: 18px;
  color: #000;
}

.solution_products_section .question_form_wrapper .form_sub_title p span {
  color: #003e9a;
}

button.btn-link.btn-block.language-select {
  float: left;
  display: block;
  padding: 0px 3px;
  opacity: 0.3;
}
button.btn-link.btn-block.language-select.active {
  opacity: 1;
}
.solution_page .solutions_title {
  display: none;
}

.about_us_section .question_form_wrapper {
  display: none;
}
.error {
  border: 1px solid #dc1616!important;
}
.modal_form#technicalConsultation .field_wrapper.error {
  border: 1px solid #dc1616!important;
}
#column-left.col-sm-3 {
  width: 100%!important;
  padding: 0 !important;
  float: none;
}
/* div#smartsearch {
  margin-top: 36px;
} */
#search {
  margin-bottom: 10px;
  position: relative;
}
/*=================================================*/
/*	END Completed Projects	*/
/*=================================================*/
/*=================================================*/
/*	START Header	*/
/*=================================================*/
/*=================================================*/
/*	END Header	*/
/*=================================================*/

.delivery h3{
    font-size: 25px;
    background: #f0f0f0;
    padding: 15px;
    text-transform: uppercase;
    vertical-align: middle;
    color: #0042a8;
    display: flex;
    /* justify-content: space-between; */
    flex-wrap: wrap;
    min-height: 60px;
    line-height: 32px;
}

.delivery b{
	font-weight:bold;
}

.sppb-panel.sppb-panel-faq {
    background: #f0f0f0;
    padding: 15px;
    margin-bottom: 3px;
    /* border: 1px solid #d7d7d7; */
	cursor:pointer;
}

.sppb-panel.sppb-panel-faq:hover {
      background: #fed100;
}
.sppb-panel-heading {
    justify-content: space-between;
    display: flex;
}

span.sppb-panel-title {
    /* color: #000; */
    font-weight: bold;
    /* margin-bottom: 15px; */
}

.delivery ul{
    margin-top: 15px !important; 
}

.sppb-panel-collapse {
    padding-top: 15px;
}


#search{
  -webkit-box-flex: 0;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
#smartsearch{
	background: transparent !important;
	border-color: rgba(255,255,255, 0) !important; 
}

#smartsearch li.item{
	border-color: rgba(255,255,255, 0) !important;
	background: rgba(255,255,255, 1) !important;  
	margin-bottom: 5px;
}

#smartsearch li.item .item_block a{
	font-weight: 600;
}

#smartsearch li.item .item_block .oldprice{
	display: block;
	font-weight: 400;
}

#smartsearch li.item .item_block .price{
	display: block !important;
	font-weight: 600;
}

.panel-heading{
	display: block !important;
	background: #f5f5f5;
	border-radius: 3px 3px 0 0;
	border: 1px solid #ddd;
	padding: 12px 15px;
	font-size: 14px !important;
	font-weight: 600 !important;
	color: #666 !important;
}

.list-group{
	padding: 15px;
	border: 1px solid #ddd;
	border-top: none;
	border-radius: 0 0 3px 3px;
}

.popover{
	/*display: none !important;*/
}
.popover.ocfilter-option-popover{

	position: absolute;
	z-index: 1;
	left: 100%;
	margin-left: 10px;
}
.popover.fade.top.in{
  background-color: #fff;
}
.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1060;
  display: none;
  max-width: 276px;
  padding: 1px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: normal;
  letter-spacing: normal;
  line-break: auto;
  line-height: 1.42857;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  white-space: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  font-size: 14px;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
.popover-title {
  margin: 0;
  padding: 8px 14px;
  font-size: 14px;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ebebeb;
  border-radius: 3px 3px 0 0;
}
.popover-content {
  padding: 9px 14px;
}
.popover.top > .arrow {
  left: 50%;
  margin-left: -11px;
  border-bottom-width: 0;
  border-top-color: #999999;
  border-top-color: rgba(0, 0, 0, 0.25);
  bottom: -11px;
}
.popover > .arrow {
  border-width: 11px;
}
.popover > .arrow, .popover > .arrow:after {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}
.ocfilter-option label small{
	background: #dbeaf9 !important;
	color: #0e6a93 !important;
	padding: 4px 7px 3px!important;
	border-radius: 10px;
}

.ocf-option-name {
    color: #004cbd !important;
    font-size: 16px !important;
    border-top: 1px solid #d9d9d9;
    padding-top: 10px; 
	font-weight: bold !important; 
    margin-bottom: 0 !important;
}
.ocfilter-option label{
	font-size: 14px !important;
}
.ocfilter-option{
	padding: 5px 0 10px;
}

.ocfilter-option .ocf-option-values{
	padding-top: 10px;
}

.noUi-connect{
	background: #1f92bd !important;
}
.noUi-base{
	height: 7px !important;
}

.popover-content button{
  white-space: nowrap;
}
#smartsearch{
  top:  100% !important;
}



/*************** PDF PAGE STYLES **********************/




.pdf_page .catalog_category_section:after {
  display: none;
}

.pdf_page .facts_about_us {
  padding-top: 0;
  page-break-before:always
}

.pdf_page .home_company_citation .citation_wrapper {
  padding: 20px 0;
  border-top: 1px solid #ddd;
  border-bottom: 0;
}

.pdf_page .about_us_section {
  margin-top: 45px;
  page-break-before:always
}
.pdf_contacts_section {
    page-break-before: always;
}

.pdf_page .about_us_section .partners_info {
  padding: 50px 0 0 0;
  background: #f4f8d3;
  background: -webkit-linear-gradient(90deg, #f4f8d3 12%, white 100%);
  background: -o-linear-gradient(90deg, #f4f8d3 12%, white 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(12%, #f4f8d3), to(white));
  background: -webkit-linear-gradient(top, #f4f8d3 12%, white 100%);
  background: -o-linear-gradient(top, #f4f8d3 12%, white 100%);
  background: linear-gradient(180deg, #f4f8d3 12%, white 100%);
}

.pdf_page .about_us_section .partners_info .partners_data {
  padding: 0;
}

.contacts_row_wrapper .contacts_row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: grid;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
  background: #e8f7ff;
  text-align: center;
  padding: 20px 0 19px;
}

.contacts_row_wrapper .titles_el {
  text-transform: uppercase;
  color: #000;
  font-size: 18px;
  margin-right: 5px;
}

.contacts_row_wrapper .email a {
  color: #138af8;
  font-size: 21px;
  font-weight: 600;
  text-decoration: underline;
}

.contacts_row_wrapper .email a:hover {
  text-decoration: none;
}

.contacts_row_wrapper .apps_list {
  padding: 0 3px;
}

.contacts_row_wrapper .phone_wrapper:first-child {
  padding-top: 0;
}

.contacts_row_wrapper .phone_wrapper a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.contacts_row_wrapper .phone_wrapper .operator_icon {
  padding-right: 7px;
}

.contacts_row_wrapper .phone_wrapper .operator_icon img {
  max-width: 100%;
}

.contacts_row_wrapper .phone_wrapper .phone_number span {
  font-size: 21px;
  font-weight: 600;
  color: #000;
}

.about_product_section .product_title_row {
      display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: block;
    /* -webkit-justify-content: space-between; */
    /* text-align: center; */
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.about_product_section .product_title {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
 
}

.about_product_section .product_title span {
  font-size: 24px;
  color: #000;
}

.about_product_section .product_price {
  
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 50%;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
}

.about_product_section .price_info {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.about_product_section .price_info p {
  font-size: 36px;
  
  color: #000;
}

.about_product_section .price_info p span {
  font-size: 18px;
}

.about_product_section .product_detail_information {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid #ddd;
  border-top: none;
}

.about_product_section .product_detail_information .photos_box,
.about_product_section .product_detail_information .characteristic_box {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 50%;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
}

.about_product_section .product_detail_information .photos_box .box_inner,
.about_product_section .product_detail_information .characteristic_box .box_inner {
  padding-top: 25px;
}

.about_product_section .product_detail_information .photos_box .box_title,
.about_product_section .product_detail_information .characteristic_box .box_title {
  padding-bottom: 35px;
}

.about_product_section .product_detail_information .photos_box .box_title span,
.about_product_section .product_detail_information .characteristic_box .box_title span {
  font-size: 24px;
  font-weight: 600;
  text-transform: uppercase;
  color: #000;
}

.about_product_section .characteristic_box .box_inner {
  padding-left: 10px;
}

.about_product_section .photos_box .box_inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  
}

.about_product_section .photos_box .photo_wrapper {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 50%;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  padding: 15px;
  border-top: 1px solid #ddd;
  border-right: 1px solid #ddd;
}

.about_product_section .photos_box .photo_wrapper:first-child {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 100%;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  border-top: none;
  border-right: none;
}

.about_product_section .photos_box .photo_wrapper:nth-child(odd) {
  border-right: none;
}

.about_product_section .photos_box .photo_inner {
  position: relative;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.about_product_section .photos_box .photo_inner img {
  max-width: 100%;
}

.about_product_section .characteristic_wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px dashed #ddd;
  padding: 12px 0 10px;
}

.about_product_section .characteristic_wrapper:first-child {
  padding-top: 0;
}

.about_product_section .characteristic_wrapper .title {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 70%;
  -ms-flex: 0 0 70%;
  flex: 0 0 70%;
}

.about_product_section .characteristic_wrapper .title span {
  font-size: 14px;
}

.about_product_section .characteristic_wrapper .value {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 30%;
  -ms-flex: 0 0 30%;
  flex: 0 0 30%;
}

.about_product_section .characteristic_wrapper .value span {
  font-size: 14px;
}

.product_text_information .description_box {
  padding-top: 25px;
  border-top: 1px solid #ddd;
}

.product_text_information .box_title {
  padding-bottom: 35px;
}

.product_text_information .box_title span {
  font-size: 24px;
  font-weight: 600;
  text-transform: uppercase;
  color: #000;
}

.product_text_information .text_information p {
  font-size: 14px;
  line-height: 21px;
  margin: 20px 0;
  color: #000;
}

.product_text_information .text_information p:first-child {
  margin-top: 0;
}

.product_text_information .text_information ul {
  line-height: 21px;
  font-size: 14px;
  padding-left: 0;
  list-style: none;
}

.product_text_information .text_information ul li {
  position: relative;
  padding-left: 30px;
}

.product_text_information .text_information ul li:before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  position: absolute;
  top: 7px;
  left: 0;
  background: #ffe508;
}

.documents_list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 50px 0 90px;
}

.documents_list .document_wrapper {
  -webkit-box-shadow: 11px 18px 30px 0px rgba(0, 2, 0, 0.27);
  box-shadow: 11px 18px 30px 0px rgba(0, 2, 0, 0.27);
  overflow: hidden;
  -webkit-border-radius: 5px;
  border-radius: 5px;
}

.documents_list .document_wrapper img {
  max-width: 100%;
  display: block;
}

.pdf_realized_projects_section .pdf_realized_projects_title {
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  padding: 21px 15px;
  text-align: center;
  background: white;
  background: -webkit-linear-gradient(90deg, white 0%, #f8f8f8 100%);
  background: -o-linear-gradient(90deg, white 0%, #f8f8f8 100%);
  background: -webkit-gradient(linear, left top, left bottom, from(white), to(#f8f8f8));
  background: -webkit-linear-gradient(top, white 0%, #f8f8f8 100%);
  background: -o-linear-gradient(top, white 0%, #f8f8f8 100%);
  background: linear-gradient(180deg, white 0%, #f8f8f8 100%);
}

.pdf_realized_projects_section .pdf_realized_projects_title p {
  font-size: 36px;
  line-height: 48px;
  color: #000;
}

.pdf_realized_projects_section .pdf_realized_projects_title p span {
  font-weight: 600;
}

.pdf_realized_projects_section .realized_project_wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.pdf_realized_projects_section .realized_project_wrapper:last-child .photo_wrapper {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 100%;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
}

.pdf_realized_projects_section .projects_photos {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.pdf_realized_projects_section .project_description {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 450px;
  -ms-flex: 0 0 450px;
  flex: 0 0 450px;
  padding-right: 30px;
}

.pdf_realized_projects_section .photos_list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.pdf_realized_projects_section .photo_wrapper {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 50%;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
}

.pdf_realized_projects_section .photo_wrapper img {
  width: 100%;
  display: block;
}

.pdf_page_header {
  background: white;
  background: -webkit-linear-gradient(90deg, white 0%, #f8f8f8 100%);
  background: -o-linear-gradient(90deg, white 0%, #f8f8f8 100%);
  background: -webkit-gradient(linear, left top, left bottom, from(white), to(#f8f8f8));
  background: -webkit-linear-gradient(top, white 0%, #f8f8f8 100%);
  background: -o-linear-gradient(top, white 0%, #f8f8f8 100%);
  background: linear-gradient(180deg, white 0%, #f8f8f8 100%);
  border-bottom: 1px solid #ddd;
  position: relative;
}

.pdf_page_header:after {
  content: '';
  display: block;
  width: 100%;
  height: 25px;
  background: url(../img/section_shadow.png) no-repeat center;
  position: absolute;
  top: 100%;
  left: 0;
}

.pdf_page_header .pdf_main_header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 15px 0;
}

.pdf_page_header .company_description {
  text-align: center;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 0 10px;
}

.pdf_page_header .company_description p {
  font-size: 14px;
  line-height: 16px;
  color: #000;
  text-transform: uppercase;
  padding-bottom: 10px;
}

.pdf_page_header .company_description p span {
  font-weight: 600;
}

.pdf_page_header .company_description a {
  font-size: 16px;
  color: #007afa;
  text-decoration: underline;
}

.pdf_page_header .company_description a:hover {
  text-decoration: none;
}

.pdf_page_header .site_logo_wrapper {
  padding-right: 55px;
}

.pdf_page_header .site_logo_wrapper a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.pdf_page_header .logo_icon {
  padding-right: 10px;
}

.pdf_page_header .logo_icon img {
  max-width: 100%;
}

.pdf_page_header .logo_text {
  padding-top: 15px;
}

.pdf_page_header .logo_text .working_hours {
  padding: 0 0 2px;
}

.pdf_page_header .logo_text .working_hours span {
  font-size: 13px;
  color: #898989;
}

.pdf_page_header .logo_text .site_name span {
  font-size: 22px;
  color: #000;
  font-weight: 600;
  text-transform: uppercase;
}

.pdf_page_header .phone_wrapper:first-child {
  padding-bottom: 10px;
}

.pdf_page_header .phone_wrapper a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.pdf_page_header .phone_wrapper .operator_icon {
  padding-right: 7px;
}

.pdf_page_header .phone_wrapper .operator_icon img {
  max-width: 100%;
}

.pdf_page_header .phone_wrapper .phone_number {
  font-size: 21px;
  font-weight: 600;
  color: #000;
}

.pdf_page_header .phone_wrapper .phone_number span {
  font-size: 400;
  color: #898989;
  font-size: 16px;
  display: inline-block;
  padding-right: 5px;
}

.pdf_contacts_section .pdf_contacts_title {
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  padding: 33px 15px;
  text-align: center;
  background: white;
  background: -webkit-linear-gradient(90deg, white 0%, #f8f8f8 100%);
  background: -o-linear-gradient(90deg, white 0%, #f8f8f8 100%);
  background: -webkit-gradient(linear, left top, left bottom, from(white), to(#f8f8f8));
  background: -webkit-linear-gradient(top, white 0%, #f8f8f8 100%);
  background: -o-linear-gradient(top, white 0%, #f8f8f8 100%);
  background: linear-gradient(180deg, white 0%, #f8f8f8 100%);
}

.pdf_contacts_section .pdf_contacts_title p {
  font-size: 24px;
  line-height: 26px;
  color: #000;
}

.pdf_contacts_section .pdf_contacts_title p span {
  font-weight: 600;
}

.pdf_contacts_section .contacts_row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 35px 0;
}

.pdf_contacts_section .cantacts_box {
 
}

.pdf_contacts_section .cantacts_box .contact_box_content {
  padding: 15px;
  background: #f2f2f2;
  height: 100%;
}

.pdf_contacts_section .offices_list .contact_box_content {
 
}

.pdf_contacts_section .cantacts_box,
.pdf_contacts_section .offices_list {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 50%;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
}

.pdf_contacts_section .call_us_title {
  background: #808a96;
  padding: 20px 30px;
  text-align: left;
  margin-bottom: 20px;
  margin: -15px -15px 0;
}

.pdf_contacts_section .call_us_title p {
  color: #fff;
  font-weight: 600;
  font-size: 21px;
  line-height: 30px;
  text-transform: uppercase;
}

.pdf_contacts_section .contacts_information {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.pdf_contacts_section .working_hours {
  padding-top: 40px;
}

.pdf_contacts_section .phone_numbers_box,
.pdf_contacts_section .other_contacts_box {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 50%;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
}

.pdf_contacts_section .phone_numbers_box .column_title,
.pdf_contacts_section .other_contacts_box .column_title {
  color: #5e5e5e;
  padding-bottom: 35px;
}

.pdf_contacts_section .phone_numbers_box .column_title span,
.pdf_contacts_section .other_contacts_box .column_title span {
  font-weight: 600;
  font-size: 18px;
  color: #000;
}

.pdf_contacts_section .phone_numbers_box .phone_wrapper {
  padding-top: 15px;
}

.pdf_contacts_section .phone_numbers_box .phone_wrapper:first-child {
  padding-top: 0;
}

.pdf_contacts_section .phone_numbers_box .phone_wrapper a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.pdf_contacts_section .phone_numbers_box .operator_icon {
  padding-right: 7px;
}

.pdf_contacts_section .phone_numbers_box .operator_icon img {
  max-width: 100%;
}

.pdf_contacts_section .phone_numbers_box .phone_number {
  font-size: 13px;
  font-weight: 600;
  color: #000;
}

.pdf_contacts_section .phone_numbers_box .phone_number span {
  font-size: 400;
  color: #898989;
  font-size: 16px;
  display: inline-block;
  padding-right: 5px;
}

.pdf_contacts_section .call_us_title {
  background: #808a96;
  padding: 20px 30px;
  text-align: left;
  margin-bottom: 20px;
}

.pdf_contacts_section .call_us_title p {
  color: #fff;
  font-weight: 600;
  font-size: 21px;
  line-height: 30px;
  text-transform: uppercase;
}

.pdf_contacts_section .other_contact_data {
  padding-bottom: 21px;
}

.pdf_contacts_section .other_contact_data:last-child {
  padding-top: 0;
}

.pdf_contacts_section .other_contact_data a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.pdf_contacts_section .other_contact_data .contact_text {
  color: #007afa;
  text-decoration: underline;
}

.pdf_contacts_section .other_contact_data .contact_icon {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 25px;
  -ms-flex: 0 0 25px;
  flex: 0 0 25px;
}

.pdf_contacts_section .other_contact_data .contact_icon img {
  max-width: 100%;
}

.pdf_contacts_section .working_hours .column_title,
.pdf_contacts_section .phone_working_hours .column_title {
  padding: 15px 0;
}

.pdf_contacts_section .working_hours .column_title span,
.pdf_contacts_section .phone_working_hours .column_title span {
  font-size: 18px;
  font-weight: 600;
  color: #000;
}

.pdf_contacts_section .working_hours .hours_info,
.pdf_contacts_section .phone_working_hours .hours_info {
  border-bottom: 1px solid #c8c8c8;
  padding: 15px 0;
}

.pdf_contacts_section .phone_working_hours {
  padding-top: 5px;
}

.pdf_contacts_section .phone_working_hours .column_title span {
  font-size: 16px;
  text-transform: uppercase;
}

.pdf_contacts_section .phone_working_hours .hours_info {
  border-top: 1px solid #c8c8c8;
  border-bottom: none;
}

.pdf_contacts_section .hours_info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.pdf_contacts_section .hours_info .hours_title,
.pdf_contacts_section .hours_info .hours_data {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 50%;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
}

.pdf_contacts_section .hours_info .hours_title span,
.pdf_contacts_section .hours_info .hours_data span {
  color: #5e5e5e;
}

.pdf_contacts_section .requisites_and_offices {
  margin-top: 5px;
}

.pdf_contacts_section .requisites_and_offices .box_line {
  border-top: 1px solid #ddd;
  padding-top: 30px;
}

.pdf_contacts_section .requisites_box {
  background: #f1f1f1;
  margin-bottom: 15px;
}

.pdf_contacts_section .requisites_box:last-child {
  margin-bottom: 0;
}

.pdf_contacts_section .requisite_title {
  padding: 20px 30px;
}

.pdf_contacts_section .requisite_title span {
  font-size: 18px;
  font-weight: 600;
  color: #000;
}

.pdf_contacts_section .requisite_item {
  padding: 15px 30px;
  border-top: 1px solid #d8d8d8;
}

.pdf_contacts_section .requisite_item span {
  line-height: 24px;
  color: #5e5e5e;
}

.pdf_contacts_section .offices_list .list_title {
  padding-bottom: 10px;
}

.pdf_contacts_section .offices_list .list_title span {
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  color: #000;
}

.pdf_contacts_section .offices_list .info_about_office {
  margin-top: 15px;
  border: 1px solid #d6d6d6;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.pdf_contacts_section .offices_list .addresse_info,
.pdf_contacts_section .offices_list .office_contacts {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 50%;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  padding: 20px;
}

.pdf_contacts_section .offices_list .office_contacts {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-left: 1px solid #d6d6d6;
}

.pdf_contacts_section .offices_list .apps_list {
  margin-bottom: 5px;
}

.pdf_contacts_section .offices_list .apps_list span {
  display: inline-block;
  padding: 0 2px;
}

.pdf_contacts_section .offices_list .apps_list span img {
  max-width: 100%;
}

.pdf_contacts_section .offices_list .addresse_title {
  padding-bottom: 15px;
}

.pdf_contacts_section .offices_list .addresse_title span {
  font-size: 14px;
  font-weight: 600;
  color: #000;
}

.pdf_contacts_section .offices_list .addresse_data span {
  font-size: 14px;
  color: #5e5e5e;
}

.pdf_contacts_section .offices_list .person_info {
  padding-top: 5px;
}

.pdf_contacts_section .offices_list .person_info span {
  font-size: 14px;
  color: #5e5e5e;
}

.pdf_contacts_section .offices_list .phone_wrapper {
  padding-top: 20px;
}

.pdf_contacts_section .offices_list .phone_wrapper:first-child {
  padding-top: 0;
}

.pdf_contacts_section .offices_list .phone_wrapper a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.pdf_contacts_section .offices_list .phone_wrapper .operator_icon {
  padding-right: 7px;
}

.pdf_contacts_section .offices_list .phone_wrapper .operator_icon img {
  max-width: 100%;
}

.pdf_contacts_section .offices_list .phone_wrapper .phone_number {
  font-size: 13px;
  font-weight: 600;
  color: #000;
}

.pdf_contacts_section .offices_list .phone_wrapper .phone_number span {
  font-size: 400;
  color: #898989;
  font-size: 16px;
  display: inline-block;
  padding-right: 5px;
}

.pdf_page .container {
   width: 100%; 
}

.pdf_page .advantages_list .list_item {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 25%;
    -ms-flex: 0 0 25%;
    flex: 0 0 25% !important;
   
}

.pdf_page .contacts_row_wrapper .titles_el {
    text-transform: uppercase;
    color: #000;
    font-size: 14px !important;
    margin-right: 5px;
}

.pdf_page .contacts_row_wrapper .phone_wrapper .phone_number span {
     font-size: 17px !important;
    font-weight: 600;
    color: #000;
}

.pdf_page  .contacts_row_wrapper .email a {
    color: #138af8;
    font-size: 17px !important;
    font-weight: 600;
    text-decoration: underline;
}

.pdf_page  .documents_list .document_wrapper {
    -webkit-box-shadow: 11px 18px 30px 0px rgba(0, 2, 0, 0.27);
    box-shadow: 11px 18px 30px 0px rgba(0, 2, 0, 0.27);
    overflow: hidden;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    margin: 15px;
}
.all_category_link {
  position: absolute;
  bottom: 12px;
  text-decoration: underline;
}
.all_category_link:hover {
  text-decoration: none;
}
.catalog_section .description_wrapper {
  position: relative;
}
.characteristic_box {
 
}
h3 {
  font-size: 24px;
}
.catalog_list_section .item_container .title span h3 {
  font-size: 21px;
}
.catalog_category_section .product_title a h3 {
  font-size: 18px;
}
.page_seo_section .moreContent:after {
  display: none!important;
}


.collapse{
  display: none;
  height: auto !important;
  overflow: hidden;     
}
.collapsing, .collapse.in{
  display: block !important;
  height: auto !important;
}


.photos_box {
    
}
.characteristic_box {
   
}

.contacts_row_wrapper .titles_el {
    
    padding: 12px;
    text-align: center;
}

@-webkit-keyframes marquee {
0%{-webkit-transform: translate(0, 0);}
100%{-webkit-transform: translate(-100%, 0);}
}
@keyframes marquee{
0%{transform: translate(0, 0);}
100%{transform: translate(-100%, 0)}
}

.marquee span {

display:inline-block;
padding-left:100%;
-webkit-animation: marquee 20s infinite linear;
animation: marquee 20s infinite linear;
}

.marquee{
width:100%;
white-space:nowrap;
overflow:hidden;
}

.hover-top-slimmar img {
    max-width: 100%;
    -moz-transition: all .4s;
    -webkit-transition: all .4s;
    transition: all .4s;
}

.bg-grey-itrotext {
    background: #F4F5F6!important;
    height: 180%!important;
    min-height: 180%!important;
    font-size: 130%;
    padding: 50px 40px;
}