@font-face {
  	font-family: 'SegoeUIRegular';
  	src: url('fonts/SegoeUIRegular/SegoeUIRegular.eot?#iefix') format('embedded-opentype'),  
  	url('fonts/SegoeUIRegular/SegoeUIRegular.woff') format('woff'),
   	url('fonts/SegoeUIRegular/SegoeUIRegular.ttf')  format('truetype'); 
   	font-weight: normal;
  	font-style: normal;
}
@font-face {
    font-family: 'SegoeUISemiBold';
    src: url('fonts/SegoeUISemiBold/SegoeUISemiBold.eot?#iefix') format('embedded-opentype'),  
    url('fonts/SegoeUISemiBold/SegoeUISemiBold.woff') format('woff'),
    url('fonts/SegoeUISemiBold/SegoeUISemiBold.ttf')  format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'SegoeUISemiLight';
    src: url('fonts/SegoeUISemiLight/SegoeUISemiLight.eot?#iefix') format('embedded-opentype'),  
    url('fonts/SegoeUISemiLight/SegoeUISemiLight.woff') format('woff'),
    url('fonts/SegoeUISemiLight/SegoeUISemiLight.ttf')  format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'SegoeUIBold';
    src: url('fonts/SegoeUIBold/SegoeUIBold.eot?#iefix') format('embedded-opentype'),  
    url('fonts/SegoeUIBold/SegoeUIBold.woff') format('woff'),
    url('fonts/SegoeUIBold/SegoeUIBold.ttf')  format('truetype'); 
    font-weight: normal;
    font-style: normal;
}
body{
	margin: 0;
	font-size: 100%;
  font-family: "SegoeUIRegular";
  color: #ffffff;
}
img{
	max-height: none;
	border: none;
}
a:focus,
a:hover{
	text-decoration: none;
}
h1{
  margin: 0;
  padding: 0;
  font-weight: normal;
}
h2{
  margin: 0;
  font-weight: normal;
}
.fl{
	float: left;
}
.fr{
	float: right;
}
.o_hidden{
	overflow: hidden;
}
.link_element{
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  display: block;
}
.inner_container{
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 15px;
}
/*MAIN PAGE*/
.header{
  position: fixed;
  z-index: 100;
  left: 0;
  top: 0;
  width: 100%;
  background: rgba(0,0,0,0.95);
  border-bottom:1px solid rgba(255,255,255,0.15);
}
.header_logo_block{
  width: 182px;
  position: relative;
}
.header_logo_block img{
  width: 100%;
}
.header_inner{
  font-size: 0;
  text-align: center;
  padding:13px 0;
}
.main_menu_section{
  display: inline-block;
  padding: 14px 0;
}
.main_menu_block{
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.main_menu{
  display: inline-block;
  vertical-align: top;
  padding: 0 20px;
  position: relative;
}
.main_menu_dropdown{
   margin: 0;
  padding: 0;
  list-style-type: none;
  width:0;
  padding:5px 10px;
  background: rgba(0,0,0,0.7);
  position: absolute;
  left: 50%;
  margin-left: -80px;
  top: 100%;
  margin-top: 27px;
  width: 160px;
  display: none;
}

.main_menu_dropdown:after{
  display: block;
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  margin-left: -13px;
  border-bottom: 5px solid  rgba(0,0,0,0.6);
  border-top: 5px solid  transparent;
  border-left: 13px solid  transparent;
   border-right: 13px solid  transparent;
}
.main_menu_dropdown li{
  display: block;
  padding:5px;
}
.main_menu a{
  display: block;
  font-size: 1.2rem;
  letter-spacing: 2px;
  color: #ffffff;
  line-height: 12px;
}
.main_menu a:hover{
  text-decoration: none;
  opacity: 0.7;
}
.content_top_img_section{
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center left !important;
  position: relative;
}
.content_top_img_inner{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
}
.header_social_button{
  display: inline-block;
  padding: 0 10px;
  vertical-align: middle;
}
.header_social_button a{
  display: block;
  height: 10px;
}
.header_social_button a img{
  height:100%;
}
.search_block{
  position: relative;
}
.search_form_button{
  padding: 0 15px;
  display: inline-block;
  vertical-align: top;
}
.search_form{
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translate(0,-50%);
  -moz-transform: translate(0,-50%);
  -ms-transform: translate(0,-50%);
  -webkit-transform: translate(0,-50%);
  -o-transform: translate(0,-50%);
  width:0;
 overflow: hidden;
 transition: all .6s;
  -moz-transition: all .6s;
  -ms-transition: all .6s;
  -webkit-transition: all .6s;
  -o-transition: all .6s;

}
.search_form.opened{
  width: 200px;
}
.search_form input{
  width: 100%;
  background: #000000;
  border:1px solid #ffffff;
  outline: none;
  font-size: 1.2rem;
  color:rgba(255,255,255,0.6);
  padding: 8px 30px 8px 8px;  
  letter-spacing: 2px;
}
.search_form input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: rgba(255,255,255,0.6);
}
.search_form input::-moz-placeholder { /* Firefox 19+ */
  color: rgba(255,255,255,0.6);
}
.search_form input:-ms-input-placeholder { /* IE 10+ */
  color: rgba(255,255,255,0.6);
}
.search_form input:-moz-placeholder { /* Firefox 18- */
  color:rgba(255,255,255,0.6);
}
.search_form button{
  width: 10px;
  height: 10px;
  position: absolute;
  right: 15px;
  top: 50%;
  margin-top: -5px;
  background: transparent;
  outline: none;
  border: none;
  background: url("images/search.svg") no-repeat;
  background-size: 10px;
  background-position: center;
}
.search_form_button a{
  display: block;
  height: 10px;
}
.search_form_button a img{
  height: 100%;
}
.search_and_language{
  padding: 14px 0;
}
.language_block{
  padding-left: 40px;
}
.language_button{
  display: inline-block;
  vertical-align: top;
  padding: 0 10px;
}
.language_button a{
  display: block;
  color: #ffffff;
  font-size: 1.2rem;
  line-height: 12px;
  letter-spacing: 2px;
  font-family: "SegoeUISemiBold";
}
.language_button a:hover{
  opacity: 0.7;
}
.language_button a.active{
  display: none;
}
.content_top_img_block{
  position: absolute;
  width: 100%;
  height: 100%;
  max-width: 455px;
  max-height: 522px;
  padding: 70px 15px 30px;
  left: 50%;
  top: 50%;
  transform: translate(-50% , -50%);
  -moz-transform: translate(-50%,-50%);
  -ms-transform: translate(-50%,-50%);
  -webkit-transform: translate(-50%,-50%);
  -o-transform: translate(-50%,-50%);
}
.top_img_text_block{
  text-align: center;
}
.top_img_title{
  font-size: 380%;
  color: #ffffff;
  line-height: 38px;
  font-family: "SegoeUIBold";
}
.top_img_text{
  font-size: 140%;
  color: #ffffff;
  letter-spacing: 4px;
  font-family: "SegoeUISemiLight";
}
.top_img_button{
  position: absolute;
  left: 50%;
  bottom: 30px;
  width: 80px;
  height: 100px;
  margin-left: -40px;
}
.top_img_button a{
  display: block;
  height: 100%;
  padding: 30px 22px;
  border: 1px solid #ffffff;
  transition: all 1s; 
   -moz-transition: all 1s;
  -ms-transition: all 1s;
  -webkit-transition: all 1s;
  -o-transition: all 1s;
}
.top_img_button a:hover{
  background:rgba(0,0,0,0.9);
}
.top_img_button a img{
  width: 100%;
  height: 100%;
}
.logo_slider_section{
  padding: 30px 0;
  background: #ededed;
}
.logo_slider_block{
  height:80px;
  position: relative;
}
.logo_slider_img{
 /* display: block;
  height: 100%;
  width: 100%;
  position: relative;*/
  display: block;
   position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50% , -50%);
  -moz-transform: translate(-50%,-50%);
  -ms-transform: translate(-50%,-50%);
  -webkit-transform: translate(-50%,-50%);
  -o-transform: translate(-50%,-50%);
  max-width: 100%;
  max-height: 100%;
}
.logo_slider_img:hover{
  opacity: 0.6;
}
.logo_slider_img img{
   max-width: 100%;
  max-height: 100%;
}
.logo_slider_section .owl-prev{
  position: absolute;
  height: 28px;
  width: 28px;
  left: 0;
  top: 50%;
  margin-top: -14px;
  font-size: 0;
  background: url("images/left-arrow.svg") no-repeat;
  background-size: 100%;
  background-position: center;
}
.logo_slider_section .owl-next{
  position: absolute;
  height: 28px;
  width: 28px;
  right: 0;
  top: 50%;
  margin-top: -14px;
  font-size: 0;
  background: url("images/right-arrow.svg") no-repeat;
  background-size: 100%;
  background-position: center;
}
.main_products_section{
  overflow: hidden;
  padding-top: 40px;
}
.main_products_section_inner{
  margin: 0 -30px;
  padding-top: 40px;
  font-size: 0;
}
.main_products_block{
  width: 33.33%;
  display: inline-block;
  padding: 0 30px 60px 30px;
}
.main_products_block_inner{
  padding-bottom: 58.76%;
  position: relative;
  overflow: hidden;
}
.main_product_link{
  height: 50px;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0,0,0,0.6);
  transition: all .6s linear;
   -moz-transition: all .6s linear;
  -ms-transition: all .6s linear;
  -webkit-transition: all .6s linear;
  -o-transition: all .6s linear;
}
.main_product_text{
  font-size: 1.8rem;
  line-height: 18px;
  color: #ffffff;
  position: absolute;
  width: 100%;
  text-align: center;
  padding: 0 10px;
  left: 50%;
  top: 50%;
  transform: translate(-50% , -50%);
  -moz-transform: translate(-50%,-50%);
  -ms-transform: translate(-50%,-50%);
  -webkit-transform: translate(-50%,-50%);
  -o-transform: translate(-50%,-50%);
  display: block;
  font-family: "SegoeUIBold";
}
.main_products_block_inner img{
   position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50% , -50%);
  -moz-transform: translate(-50%,-50%);
  -ms-transform: translate(-50%,-50%);
  -webkit-transform: translate(-50%,-50%);
  -o-transform: translate(-50%,-50%);
  width: 100%;
  min-height: 100%;
}
.main_products_block_inner:hover .main_product_link{
  height: 100%;
}
.main_products_block_inner:hover .main_product_text{
  width: auto;
}
.main_products_block_inner:hover .main_product_text:after{
  display: block;
  content: "";
  margin-top: 10px;
  background: #ffffff;
/* width: 100%;*/
 height: 1px;
}
.section_title{
  font-family: "SegoeUISemiBold";
  color: #444444;
  font-size: 2.8rem;
  text-align: center;
}
.main_works_section{
  padding-top: 30px;
  padding-bottom: 30px;
}
.main_works_section_inner{
  position: relative;
  padding-bottom: 32.33%;
  overflow: hidden;
  margin-top: 45px;
}
.main_works_large_img{
  position: absolute;
  width: 50%;
  left: 0;
  top: 0;
  height: 100%;
  overflow: hidden;
}
.main_works_large_img img{
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
 transform: translate(0 , -50%);
  -moz-transform: translate(0,-50%);
  -ms-transform: translate(0,-50%);
  -webkit-transform: translate(0,-50%);
  -o-transform: translate(0,-50%);
  padding-right: 15px;
}
.main_works_text_block{
  position: absolute;
  width: 50%;
  right: 0;
  top: 50%;
  padding-left: 15px;
 transform: translate(0 , -50%);
  -moz-transform: translate(0,-50%);
  -ms-transform: translate(0,-50%);
  -webkit-transform: translate(0,-50%);
  -o-transform: translate(0,-50%);
}
.main_works_text{
  font-size: 120%;
  line-height: 24px;
  color: #000000;
  letter-spacing: 2px;
  max-height: 144px; 
  overflow: hidden;
}
.read_more_button{
  display: inline-block;
   font-size: 120%;
  color: #000000;
  letter-spacing: 2px;
  padding: 45px 0 0;
  /*border-bottom: 1px solid #000000;*/
}
.read_more_button:after{
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #000000;
  margin-top: 10px; 
}
.read_more_button:hover{
  opacity: 0.7;
  color: #000000;
}
.main_works_slider_block{
  position: absolute;
  left: 0;
  height: 100%;
  top: 0;
  width: 50%;
  padding-right: 15px;
}
.main_works_slider_block .slides{ 
  height: 100%;
}
.main_works_slider_block .slides li{
  height: 100%;
  position: relative;
}
.main_works_slider_block .slides li img{
  position: absolute;
  left: 0;
  width: 100%;
  top: 50%;
  transform: translate(0 , -50%);
  -moz-transform: translate(0,-50%);
  -ms-transform: translate(0,-50%);
  -webkit-transform: translate(0,-50%);
  -o-transform: translate(0,-50%);
  min-height: 100%;
}
.slider_prev{
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  height: 48px;
  width: 48px;
  background-color: #e5e5e5;
  margin-top: -24px;
  z-index: 5;
  background-image: url("images/left-arrow.svg");
  background-repeat: no-repeat;
  background-size: 18px;
  background-position: center;
}
.slider_next{
  display: block;
  position: absolute;
  right: 15px;
  top: 50%;
  height: 48px;
  width: 48px;
  background-color: #e5e5e5;
  margin-top: -24px;
  z-index: 5;
  background-image: url("images/right-arrow.svg");
  background-repeat: no-repeat;
  background-size: 18px;
  background-position: center;
}
.main_works_img_block{
  position: absolute;
  right: 0;
  top: -15px;
  bottom: -15px;
  width: 50%;
  font-size: 0;
}
.main_works_img{
  display: inline-block;
  height: 50%;
  width: 50%;
  vertical-align: top;
  padding: 15px;
}
.main_works_img a{
  display: block;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.main_works_img a img{
  position: absolute;
  left: 0;
  width: 100%;
  top:50%;
 transform: translate(0 , -50%);
  -moz-transform: translate(0,-50%);
  -ms-transform: translate(0,-50%);
  -webkit-transform: translate(0,-50%);
  -o-transform: translate(0,-50%);
  transition: opacity .6s;
  -moz-transition: opacity .6s;
  -ms-transition: opacity .6s;
  -webkit-transition: opacity .6s;
  -o-transition: opacity .6s;

}
.main_works_img a:hover img{
  opacity: 0.8;
}
.view_all_block{
  padding-top: 25px;
  text-align: center;
}
.view_all_button{
  display: inline-block;
  font-size: 1.2rem;
  color: #000000;
  line-height: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.view_all_button:after{
  display: block;
  content: "";
  height: 1px;
  background: #000000;
  margin-top: 10px;
}
.view_all_button:hover{
  opacity: 0.7;
  color: #000000;
}
.footer_top{
  text-align: center;
  padding-top: 30px;
  background: #e5e5e5;
}
.footer_logo_block{
  display: inline-block;
  width: 180px;
}
.footer_logo_block img{
  width: 100%;
}
.footer_contact_title{
  font-size: 1.5rem;
  color: #333333;
  font-family: "SegoeUIBold";
  font-weight: bold;
}
.footer_contact_text{
  font-size: 1.2rem;
  color: #333333;
}
.footer_contact_block{
  padding: 25px 35px;
  text-align: left;
  display: inline-block;
  vertical-align: middle;
}
.footer_contact_text_block{
  padding-left: 54px;
  position: relative;
}
.content_inner{
  padding-bottom: 45px;
}
.footer_contact_decor{
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0 , -50%);
  -moz-transform: translate(0,-50%);
  -ms-transform: translate(0,-50%);
  -webkit-transform: translate(0,-50%);
  -o-transform: translate(0,-50%);
  width: 18px
}
.footer_contact_decor img{
  width: 100%;
}
.footer_bottom_inner{
  padding: 22px 0 24px;
}
.copyright_block{
  font-family: "SegoeUISemiLight";
  line-height: 16px;
  font-size: 120%;
  color: #000000;
}
.studio_block a{
  display: block;
  font-family: "SegoeUISemiLight";
  line-height: 16px;
  font-size: 120%;
  color: #000000;
  transition: all 0.8s;
   -moz-transition:  all 0.8s;
  -ms-transition:  all 0.8s;
  -webkit-transition:  all 0.8s;
  -o-transition:  all 0.8s;
}
.studio_block a:hover{
  letter-spacing: 1px;
 /* font-size: 130%;*/
  opacity: 0.7;
  color: #000000;
}
.footer_contact_section{
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.mobile_header .header_inner{
  position: fixed;
  height: 100%;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0 10px;
  display: none;
  background: rgba(0,0,0,0.95);
}
.mobile_header .main_menu_section{
    width: 100%;
   /*height: 100%;
    overflow-y: auto;*/
    padding: 0 25px;
    position: relative;
}
.mobile_header .main_menu_block{
  position: absolute;
  left:0;
  top: 50%;
  width: 100%;
  max-height: 100%;
  transform: translate(0 , -50%);
  -moz-transform: translate(0,-50%);
  -ms-transform: translate(0,-50%);
  -webkit-transform: translate(0,-50%);
  -o-transform: translate(0,-50%);
  padding: 30px 0;
  overflow-y:auto; 
}
.mobile_header .main_menu{
  padding: 30px 0;
  display: block;
}
.mobile_header .main_menu_dropdown{
  position: relative;
  background: transparent;
  margin-top: 8px;
}
.mobile_header .main_menu_dropdown:after{
  display: none;
}
.mobile_logo_block{
  display: none;
}
.mobile_header .mobile_logo_block{
  display: block;
}
.mobile_header .header_inner .header_logo_block{
  display: none;
}
.open_mobile_menu{
  padding: 6px 0 4px;
}
.open_mobile_menu span{
  display: block;
  margin-top: 12px;
  height: 1px;
  background: #ffffff;
  width: 40px;
}
.open_mobile_menu span:first-child{
  margin-top: 0;
}
.mobile_header .search_and_language .header_social_block{
  display: none;
}
.mobile_header .search_and_language{
  float: none;
  padding: 0;
}
.mobile_header .language_block{
  float: none;
  position: relative;
  padding: 25px 35px 25px 0;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.15)
}
.mobile_header .search_block{
  float: none;
  padding-top: 20px;
  padding-left: 25px;
  padding-right: 25px;
}
.mobile_header .header_inner{
  padding: 0;
}
.mobile_header .search_form_button{
  display: none;
}
.mobile_header .search_form{
  display: block;
  position: relative;
  top: 0;
  transform: translate(0);
  width: 100%;
  background: transparent;
  right: 0;
  left:0;
}
.mobile_header .search_form input{
  width: 100%;
  background: transparent;
  text-align: center;
}
.menu_close_button{
  display: none;
}
.mobile_header .menu_close_button{
  display: block;
  width: 28px;
  height: 28px;
  position: absolute;
  right: 25px;
  top: 50%;
  margin-top: -14px;
}
.mobile_header .menu_close_button img{
  width: 100%;
  height: 100%;
}
.mobile_header{
  padding: 16px 0;
}
.form_layer{
  display: none;
}
.mobile_header .form_layer{
  display: block;
  position: absolute;
  left:0;
  top:0;
  width: 100%;
  height: 100%;
}
.form_layer span{
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -moz-transform: translate(-50%,-50%);
  -ms-transform: translate(-50%,-50%);
  -webkit-transform: translate(-50%,-50%);
  -o-transform: translate(-50%,-50%);
   font-size: 1.2rem;
  color:rgba(255,255,255,0.6);
  letter-spacing: 2px;
    background: url("images/search.svg") no-repeat;
  background-size: 10px;
  background-position:left center;
  padding-left: 15px;
  transition: all .6s linear;
  -moz-transition: all .6s linear;
  -ms-transition: all .6s linear;
  -webkit-transition: all .6s linear;
  -o-transition: all .6s linear;
}
.mobile_header .search_form button{
  display: none;
}
.search_form.selected .form_layer span{
  padding-left: 0;
  font-size: 0;
  height: 10px;
  width: 10px;
  right: 25px;
  left: 100%;
  margin-left:-25px;
}
/*.mobile_header .search_form button{
  display: none;
}
.mobile_form_button{
  display: none;
}*/
/*.mobile_header .mobile_form_button{
  display: block !important;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
   font-size: 1.2rem;
  color:rgba(255,255,255,0.6);
  letter-spacing: 2px;
  padding-left: 16px;
   background: url("images/search.svg") no-repeat;
  background-size: 10px;
  background-position:left center;
  margin: 0;
  width: auto;
  height: auto;
}*/
.mobile_social{
  display: none;
}
.mobile_header .mobile_social{
  display: block;
}

.img_popup{
  width: 100%;
  height: 100%;
  background: #000000;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 500;
  /*cursor: pointer;*/
  display: none;
}
.img_popup img{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  -moz-transform: translate(-50%,-50%);
  -ms-transform: translate(-50%,-50%);
  -webkit-transform: translate(-50%,-50%);
  -o-transform: translate(-50%,-50%);
  max-width: 100%;
  max-height: 100%;
  padding: 15px;
}
.img_popup_close{
  width: 30px;
  height: 30px;
  top: 5px;
  right: 5px;
  position: absolute;
  display: block;
}
.img_popup_close img{
  position: static;
  transform: translate(0);
  width: 100%;
  padding: 2px;
}
/*NEWS*/
.news_section_inner{
  font-size: 0;
  margin: 0 -33px;
}
.news_block{
  display: inline-block;
  padding: 33px;
  width: 33.33%;
  vertical-align: top;
}
.news_img{
  display: block;
  padding-bottom: 56.25%;
  position: relative;
  overflow: hidden;
}
.news_img:hover{
  opacity: 0.7;
}
.news_img img{
  position: absolute;
  left: 50%;
 /* max-width: 100%;*/
 /* max-height: 100%;*/
 min-height: 100%;
 width: 100%;
  top: 50%;
  transform: translate(-50%,-50%);
}
.news_date{
  color: #c1c1c1;
  font-size: 1.2rem;
  line-height: 21px;
  padding-top: 2px;
  font-family: "SegoeUIBold";
}
.news_link_text{
  display: block;
  font-size: 1.8rem;
  line-height: 23px;
  color: #333333;
  font-family: "SegoeUIBold";
  font-weight: bold;
}
.news_link_text:hover{
  opacity: 0.7;
}
.news_short_info{
  font-size: 1.4rem;
  font-family: "SegoeUISemiLight";
  line-height: 18px;
  color: #868686;
  padding-top: 5px;
}
.news_section{
  padding-top: 120px;
  overflow: hidden;
}
.news_section_title{
  font-weight: bold;
  font-size: 280%;
  color: #333333;
  line-height: 28px;
  font-family: "SegoeUIBold";
}
.news_inner_page img{
  width: 100%;
}
.news_inner_text_block{
  font-size: 180%;
  color: #868686;
  font-family: "SegoeUISemiLight";
  line-height: 26px;
  padding: 15px 0;
}
.news_inner_date{
  font-size: 120%;
  color: #c1c1c1;
  line-height: 23px;
  font-family: "SegoeUIBold";
}
.news_inner_img{
  padding-bottom: 56.25% /*62*/;
  position: relative;
  overflow: hidden;
}
.news_inner_img img{
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0 , -50%);
  -moz-transform: translate(0,-50%);
  -ms-transform: translate(0,-50%);
  -webkit-transform: translate(0,-50%);
  -o-transform: translate(0,-50%);
}
.news_inner_page{
  background: #f4f4f4;
  padding: 50px 0 70px;
}
.news_container{
  max-width: 780px;
  margin: 0 auto;
}
.news_inner_subtitle{
  font-size: 180%;
  font-family: "SegoeUISemiBold";
  line-height: 23px;
  color: #333333;
  padding-top: 45px;
}
.more_news_section .inner_container{
  overflow: hidden;
}
.more_news_section{
  padding: 80px 0 100px;
}
.breadcrumb_block{
  margin: 0;
  padding: 0;
  list-style-type: none;
  font-size: 0;
}

.breadcrumb_block li{
  display: inline-block;
  vertical-align: top;
  font-size: 1.4rem;
  line-height: 19px;
  font-family: "SegoeUISemiLight";
  color: #a5a5a5;
  padding-right:2px;
}
.breadcrumb_section{
  padding: 100px 0 20px;
}
.cataloge_text{
  color: #525252 !important;
  padding-right: 5px !important;
}
.breadcrumb_button{
  position: relative;
  padding-right: 10px !important;
}
.breadcrumb_button:after{
  display: inline-block;
  content: ">";
  color: #a5a5a5;
  font-size: 1.4rem;
  position: absolute;
  right: 0;
  top: 0;
}
.breadcrumb_button a{
  display: block;
  color: #a5a5a5;
  font-size:inherit;
  color: inherit;
}
.breadcrumb_button a:hover{
  opacity: 0.7;
}

/*PARTNERS*/
.partners_section{
  overflow: hidden;
  padding-top: 135px;
  padding-bottom: 65px;
}
.partners_text{
  font-size: 180%;
  font-family: "SegoeUISemiLight";
  color: #444444;
  padding-top: 25px;
}
.partners_section_text_block{
  text-align: center;
  max-width: 910px;
  margin: 0 auto;
}
.partners_section_inner{
  font-size: 0;
  margin: 0 -30px;
  padding-top: 45px;
}
.partners_block{
  width: 25%;
  display: inline-block;
  vertical-align: top;
  padding:15px 30px;
}
.partners_block_inner{
  padding-bottom: 80.06%;
  position: relative;
  overflow: hidden;
  background: #ededed;
}
.partners_block_inner img{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  -moz-transform: translate(-50%,-50%);
  -ms-transform: translate(-50%,-50%);
  -webkit-transform: translate(-50%,-50%);
  -o-transform: translate(-50%,-50%);
  max-width: 100%;
  max-height: 100%;
  padding: 15px;
}
.partners_name{
  font-size: 1.8rem;
  color: #444444;
  font-family: "SegoeUIBold";
  padding-top: 15px;
  font-weight: bold;
  text-align: center;
}
.partners_link{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: block;
  transition: all .9s;
  -moz-transition: all .9s;
  -ms-transition: all .9s;
  -webkit-transition: all .9s;
  -o-transition: all .9s;
}
.partners_link:hover{
  background: rgba(0,0,0,0.2);
}
/*CONTACT*/
.contact_section{
  padding-top: 115px;
  padding-bottom: 165px;
}
.contact_section .section_title{
  text-align: center;
}
.contact_section_inner{
  padding-top: 30px;
}
.contact_info_section{
  padding-left: 15px;
  width: 50%;
}
.contact_info_section_inner{
  padding-top: 55px;
}
.contact_info_subtitle{
  font-size: 160%;
  color: #444444;
  font-family: "SegoeUIBold";
  font-weight: bold;
}
.contact_info_text{
  font-size: 140%;
  color: #444444;
  padding: 10px 0 30px;
}
.contact_map_section{
  padding-right: 15px;
  width: 50%;
}
.contact_block{
  padding-bottom: 20px;
}
.contact_block.name_block{
  padding-right: 17px;
  width: 50%;
}
.contact_block.email_block{
  padding-left: 17px;
  width: 50%;
}
.contact_block input{
  background: transparent;
  outline: none;
  border: 1px solid #cccccc;
  color: #808080;
  letter-spacing: 0.6px;
  font-size: 110%;
  padding: 10px;
  width: 100%;
}
.contact_block input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #808080;
}
.contact_block input::-moz-placeholder { /* Firefox 19+ */
  color: #808080;
}
.contact_block input:-ms-input-placeholder { /* IE 10+ */
  color: #808080;
}
.contact_block input:-moz-placeholder { /* Firefox 18- */
  color: #808080;
}
.recaptcha_block{
  padding-bottom: 20px;
}
.recaptcha_img{
  max-width: 304px;
  /*height: 77px;*/
}
.recaptcha_img img{
  width: 100%;
}
.contact_block textarea{
  resize: none;
  background: transparent;
   outline: none;
  border: 1px solid #cccccc;
  color: #808080;
  letter-spacing: 0.6px;
  font-size: 110%;
  padding: 10px;
  width: 100%;
  height: 75px;
}
.contact_block textarea::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #808080;
}
.contact_block textarea::-moz-placeholder { /* Firefox 19+ */
  color: #808080;
}
.contact_block textarea:-ms-input-placeholder { /* IE 10+ */
  color: #808080;
}
.contact_block textarea:-moz-placeholder { /* Firefox 18- */
  color: #808080;
}
.submit_button{
  background: #525252;
  padding: 13px;
  color: #ffffff;
  font-size: 120%;
  letter-spacing: 0.6px;
  transition: all .7s;
  -moz-transition: all .7s;
  -ms-transition: all .7s;
  -webkit-transition: all .7s;
  -o-transition: all .7s;
  border: none;
  outline: none;
  width: 100%;
  max-width: 235px;
}
.submit_button:hover{
  /*background: #ffffff;
  color: #525252;
  border:  1px solid #525252;*/
  opacity: 0.7;
}
.contact_form_title{
  padding-bottom: 10px;
  color: #333333;
  font-size: 150%;
  font-family: "SegoeUISemiBold";
}
.help-block{
  display: none !important;
}
#map-canvas{
  height: 100%;
}

/*PRODUCT LISTING*/
.product_slider_title{
  font-size: 380%;
  line-height: 38px;
  font-family: "SegoeUIBold";
  font-weight: bold;
}
.product_slider_text{
  letter-spacing: 4px;
  font-size: 140%;
  line-height: 24px;
  font-family: "SegoeUISemiLight";
  padding-bottom: 60px;
}
.product_slider_button{
  font-size: 120%;
  letter-spacing: 2px;
  display: inline-block;
  color: #ffffff;
}
.product_slider_button:hover{
  opacity: 0.7;
  color: #ffffff;
}
.product_listing_slider li{
  position: relative;
  padding-bottom: 28.57%;
  position: relative;
}
.product_slider_text_block{
  position: absolute;
  width: 100%;
  text-align: center;
  max-width: 470px;
  padding:0 15px;
  left: 50%;
  top: 50%;
 transform: translate(-50%,-50%);
  -moz-transform: translate(-50%,-50%);
  -ms-transform: translate(-50%,-50%);
  -webkit-transform: translate(-50%,-50%);
  -o-transform: translate(-50%,-50%);
}
.product_listing_slider{
  position: relative;
}

.slider_bg_block{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  z-index: 1;
}
.product_listing_slider li img{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  -moz-transform: translate(-50%,-50%);
  -ms-transform: translate(-50%,-50%);
  -webkit-transform: translate(-50%,-50%);
  -o-transform: translate(-50%,-50%);
  max-width: 100%;
}
.product_listing_section{
  padding-top: 67px;
  overflow: hidden;
}
.product_listing_section_inner{
  font-size: 0;
  margin: 0 -30px;
}
.product_block{
  display: inline-block;
  width: 25%;
  vertical-align: top;
  padding: 20px 30px;
}
.product_img_block{
  padding-bottom: 80.06%;
  overflow: hidden;
  position: relative;
  display: block;
  background: #000000;
}
.product_img_block img{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  -moz-transform: translate(-50%,-50%);
  -ms-transform: translate(-50%,-50%);
  -webkit-transform: translate(-50%,-50%);
  -o-transform: translate(-50%,-50%);
 /* max-width: 100%;*/
}
.product_block_text{
  font-size: 1.8rem;
  color: #444444;
  font-weight: bold;
  font-family: "SegoeUIBold";
  padding-top: 5px;
  text-align: center;
}
.product_img_block:hover img{
  opacity: 0.7;
}
.product_form_block{
  padding: 20px 0;
  font-size: 0;
  background: #e5e5e5;
}
.product_select_block{
  width: 20%;
  display: inline-block;
  vertical-align: top;
  padding: 5px 15px;
}
.bootstrap-select{
  width: 100% !important;
  outline: none !important;
  border:none !important;
}
.btn{
  border-radius: 0 !important;
  background: transparent !important;
  border: 1px solid #cfcfcf !important;
}
.dropdown-menu{
  background:#e5e5e5 !important;
  border-radius: 0 !important;
  margin: 0; 
  padding: 0;
}
.dropdown-menu li{
   border: 1px solid #cfcfcf !important;
   outline: none !important;
}
.dropdown-menu li a{
  background: transparent !important;
  outline: none !important;
}
.pageing_section{
  text-align: center;
  font-size: 0;
}
.page_button{
  display: inline-block;
  vertical-align: top;
  padding-top: 7px;
  padding-bottom: 7px;
}
.page_prev_button{
  padding-right: 15px;
  display: none;
}
.page_next_button{
  padding-left: 15px;
}
.page_button a{
  display:block;
  font-size: 1.6rem;
  color: #444444;
  font-family: "SegoeUISemiLight";
}
.page_button a:hover{
  opacity: 0.7;
}
.pageing_block{
  display: inline-block;
  margin: 0;
  padding: 0;
  vertical-align: top;
}
.page_number{
  display: inline-block;
  vertical-align: top;
  padding: 6px 10px;
}
.page_number.active{
  background: #cfcfcf;
}
.page_number a{
  display: block;
   font-size: 1.6rem;
  color: #444444;
  font-family: "SegoeUISemiLight";
}
.pageing_section{
  padding-top: 35px;
}
.product_slider_next{
  display: block;
  width: 80px;
  height: 50px;
  position: absolute;
  right:0;
  top: 50%;
  margin-top: -25px;
  z-index: 5;
  background: rgba(255,255,255,0.9);
}
.product_slider_next img{
  width: 100%;
  height: 100%;
  padding: 15px 25px;
}
.product_slider_prev{
  display: block;
  width: 80px;
  height: 50px;
  position: absolute;
  left:0;
  top: 50%;
  margin-top: -25px;
  z-index: 5;
  background: rgba(255,255,255,0.9);
}
.product_slider_prev img{
  width: 100%;
  height: 100%;
  padding: 15px 25px;
}
.product_inner_slider_block{
  width: 50%;
  padding-right: 15px;
}
.product_inner_info_section{
  width: 50%;
  padding-left: 15px;
}
.product_inner_slider .slides li{
  padding-bottom: 80%;
  position: relative;
  overflow: hidden;
}
.product_inner_slider .slides li img{
  position: absolute;
  left:50%;
  top: 50%;
  transform: translate(-50%,-50%);
  -moz-transform: translate(-50%,-50%);
  -ms-transform: translate(-50%,-50%);
  -webkit-transform: translate(-50%,-50%);
  -o-transform: translate(-50%,-50%);
 /* max-width: 100%;*/
  max-height: 100%;
}
.product_inner_section{
 /* padding-top: 67px;*/
  overflow: hidden;
}
.product_inner_slider{
  position: relative;
}
.inner_slider_next{
  display: block;
  width: 56px;
  height: 36px;
  position: absolute;
  right:0;
  top: 50%;
  margin-top: -18px;
  z-index: 5;
  background: rgba(255,255,255,0.9);
}
.inner_slider_next img{
  width: 100%;
  height: 100%;
  padding: 10px 15px;
}
.inner_slider_prev{
  display: block;
  width: 56px;
  height: 36px;
  position: absolute;
  left:0;
  top: 50%;
  margin-top: -18px;
  z-index: 5;
  background: rgba(255,255,255,0.9);
}
.inner_slider_prev img{
  width: 100%;
  height: 100%;
 padding: 10px 15px;
}
.product_inner_title{
  font-size: 280%;
  color: #444444;
  font-family: "SegoeUIBold";
  font-weight: bold;
}
.product_info_text{
  font-size: 120%;
  line-height: 24px;
  color: #000000;
  padding: 15px 0 20px;
}
.product_type_title{
  font-size: 160%;
  color: #444444;
}
.product_info_type_block{
  padding: 15px 0;
  border-top:1px solid #cfcfcf;
}
.product_color_section{
  font-size:0;
}
.product_color_block{
  display: inline-block;
  vertical-align: top;
  padding-right: 30px;
  padding-top: 15px;
}
.product_color{
  width: 55px;
  height: 35px;
  border: 1px solid rgba(207,207,207,0.9);
}
.product_color_text{
  font-size: 1.2rem;
  font-family: "SegoeUISemiLight";
  color: #a5a5a5;
  padding-top: 7px;
  text-align: center;
}
.product_size_text{
  font-size: 120%;
  color: #a5a5a5;
  font-family: "SegoeUISemiLight";
  line-height: 19px;
}
.product_size_block{
  padding-top: 15px;
}
.info_dropdown_section{
  padding-top: 55px;
  text-align: center;
  border-top:1px solid #cfcfcf;
}
.info_dropdown_button{
  display: inline-block;
  font-size: 120%;
  color: #000000;
}
.info_dropdown_button:after{
  display: block;
  content: "";
  background: url("images/down-arrow.svg") no-repeat;
  background-size: 11px;
  background-position: center;
  margin-top: 13px;
  width: 100%;
  height: 11px;
  transition: all .6s;
  -moz-transition: all .6s;
  -ms-transition: all .6s;
  -webkit-transition: all .6s;
  -o-transition: all .6s;
}
.info_dropdown_button.opened:after{
  transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -o-transform: rotate(180deg);
}
.info_dropdown_button{
  opacity: 0.7;
}
.info_dropdown_block{
  text-align: left;
  display: none;
  margin-top: 25px;
}
.product_inner_section .product_listing_section_inner{
  padding-top: 70px;
}
.other_products_title{
  font-size: 2.8rem;
  font-family: "SegoeUISemiBold";
  color: #444444;
  padding-bottom: 25px;
  text-align: center;
}




.product_inner_section .main_image_block {
  width: 41.66%;
  padding-right: 15px;
}
.product_inner_section .main_image_block img {
  width: 100%;
  height: auto;
  vertical-align: top;
}
.product_inner_section .product_info_block {
  width: 33.33%;
  padding-left: 15px;
  padding-right: 15px;
}
.product_inner_section .product_images {
  width: 25%;
  padding-left: 15px;
}
.product_inner_section .product_images ul {
  margin: 0 -2px;
  padding: 0;
  list-style-type: none;
}
.product_inner_section .product_images li {
  width: 33.3%;
  padding: 0 2px 4px;
  float: left;
}
.product_images .gallery_link {
  display: inline-block;
  vertical-align: top;
  font-size: 140%;
  line-height: 18px;
  padding-left: 26px;
  background: url('images/photo.svg') no-repeat;
  background-size: 16px;
  background-position: left center;
  color: #000000;
  font-family: "SegoeUIBold";
  margin-bottom: 20px;
  transition: opacity 0.3s;
  -moz-transition: opacity 0.3s;
  -ms-transition: opacity 0.3s;
  -webkit-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
}
.product_images .gallery_link:hover {
  opacity: 0.7;
}

.new_gallery {
  padding-top: 100px;
}
.new_gallery .gallery_top {
  margin-top: 30px;
  position: relative;
  overflow: hidden;
}
.new_gallery .gallery_bottom {
  margin: 40px auto;
  max-width: 760px;
  margin: 0 auto;
}
.new_gallery .gallery_bottom ul {
  margin: 20px -5px 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  position: relative;
  overflow: hidden;
}
.new_gallery .gallery_bottom li {
  flex: 0 0 25%;
  max-width: 25%;
  padding: 5px;
}
.new_gallery .gallery_bottom li:nth-child(n+5) {
  display: none;
}
.new_gallery .gallery_top.scroll_active {
  overflow-x: auto;
}
.new_gallery .gallery_track {
  margin: 0 -10px;
  padding: 0;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  font-size: 0;
}
.gallery_track .slide_block {
  display: inline-block;
  vertical-align: top;
  width: 25%;
  white-space: normal;
  font-size: 1rem;
  padding: 10px;
}
.new_gallery .gallery_bottom ul a,
.new_gallery .gallery_top a,
.product_inner_section .product_images ul a {
  display: block;
  position: relative;
  padding-bottom: 100%;
}
.new_gallery .gallery_bottom ul a:after,
.new_gallery .gallery_top a:after,
.product_inner_section .product_images ul a:after {
   pointer-events: none;
   position: absolute;
   display: block;
   content: "";
   top: 50%;
   left: 50%;
   background: url('images/eye.svg') no-repeat #ffffff;
   border-radius: 50%;
   background-size: 66.6%;
   background-position: center;
   opacity: 0;
   transition: opacity 0.3s;
  -moz-transition: opacity 0.3s;
  -ms-transition: opacity 0.3s;
  -webkit-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
}
.new_gallery .gallery_top a:after {
    width: 50px;
   height: 50px;
   margin: -25px;
}
.new_gallery .gallery_bottom ul a:after,
.product_inner_section .product_images ul a:after {
  width: 30px;
   height: 30px;
   margin: -15px;
}
.new_gallery .gallery_bottom ul a:hover:after,
.new_gallery .gallery_top a:hover:after,
.product_inner_section .product_images ul a:hover:after {
  opacity: 1;
}
.new_gallery .gallery_bottom img,
.new_gallery .gallery_top img,
.product_inner_section .product_images img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery_top .image_name {
  font-size: 140%;
  line-height: 18px;
  color: #000000;
  margin-top: 10px;
  text-align: center;
}
.gallery_top .image_name span {
  display: inline-block;
  vertical-align: top;
}
.gallery_top .image_name .bold_style {
  font-family: "SegoeUIBold";
}

@media screen and (max-width: 1199px) {
  .product_inner_section .main_image_block {
    width: 33.3%;
  }
  .product_inner_section .product_info_block {
    width: 41.7%;
  }
  .gallery_track .slide_block {
    width: 33.3%;
  }
}

@media screen and (max-width: 991px) {
  .product_inner_section .product_info_block {
    float: right;
    padding-right: 0;
    width: 66.7%;
  }
  .product_inner_section .product_images {
    padding-left: 0;
    padding-right: 15px;
    width: 33.3%;
    margin-top: 30px;
  }
  .gallery_track .slide_block {
    width: 50%;
  }
}
@media screen and (max-width: 767px) {
  .product_inner_section .product_info_block {
    width: 58.33%;
  }
  .product_inner_section .main_image_block,
  .product_inner_section .product_images {
    width: 41.67%;
  }
}
@media screen and (max-width: 575px) {
  .gallery_track .slide_block {
    width: 100%;
  }
  .new_gallery .gallery_bottom ul {
    flex-wrap: wrap;
  }
  .new_gallery .gallery_bottom li {
    flex: 0 0 50%;
    max-width: 50%;
  }
  
}
@media screen and (max-width: 479px) {
  .product_inner_section .product_info_block,
  .product_inner_section .main_image_block,
  .product_inner_section .product_images {
    width: 100%;
    margin-bottom: 20px;
    padding-left: 0;
    padding-right: 0;
  }
}