body{
	background-color: rgba(255,255,255,0);
  font-family: Arial, Helvetica, sans-serif;
}

.wrap{
  position: relative;
  width: 100%;
}

.work{
  width: 100%;
  max-width: 1200px;
  margin: auto;
}

.wrap_title{
  display: flex;
  justify-content: center;
  width: 100%;
}

.wrap_title.left{
  justify-content: flex-start;
}

.wrap_title_text{
  position: relative;
  font-weight: 600;
  font-size: 20px;
  text-transform: uppercase;
  padding-bottom: 10px;
}

.wrap_title_text::before{
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 50px;
  height: 4px;
  margin-left: -25px;
  background-color: #00ADEF;
}

.wrap_title.left .wrap_title_text::before{
  left: 0;
  margin-left: 0;
}

.mainwrap{
  overflow: hidden;
}

/***************************************************** top header info ****************************************/
.top_h_wrap{
  position: absolute;
  z-index: 1;
  top: 40px;
  left: 0;
  width: 100%;
  height: calc(100% - 40px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.top_h_wrap.hide{
  display: none;
}

.top_h_title{
  color: #fff;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 40px;
  letter-spacing: 2px;
  text-align: center;
}

.top_h_list{
  display: flex;
  justify-content: center;
  margin-top: 25px;
}

.top_h_item{
  position: relative;
  color: #fff;
  font-size: 18px;
  margin-right: 30px;
}

.top_h_item:last-child{
  margin-right: 0;
}

.top_h_item::before{
  content: '/';
  position: absolute;
  top: 50%;
  right: -18px;
  color: #fff;
  font-size: 20px;
  margin-top: -9px;
}

.top_h_item:last-child:before{
  content:none
}

.top_h_link{
  color: #fff;
  font-size: 18px;
  text-decoration: none;
}
/***************************************************** top header info ****************************************/

/***************************************************** top header ****************************************/
.wrap_topheader{
  background-color: #F2F2F2;
}

.topheader{
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 50px;
}

.topheader_contact{
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: #8C8C8C;
  font-size: 14px;
  font-weight: 600;
  padding-left: 24px;
}

.topheader_contact.mail{
  padding-left: 34px;
  margin-left: 20px;
}

.topheader_contact::before{
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 19px;
  height: 18px;
  margin-top: -9px;
  background-repeat: no-repeat;
  background-position: left center;
  background-size: auto 18px;
}

.topheader_contact.phone::before{
  background-image: url(svg/phone.svg);
}

.topheader_contact.mail::before{
  background-image: url(svg/mail.svg);
  width: 28px;
}

.topheader_right{
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #8C8C8C;
}

.topheader_link{
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-left: 7px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}

.topheader_link.vk{
  background-image: url(svg/vk.svg);
}
/***************************************************** top header ****************************************/

/***************************************************** header ****************************************/
.header{
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  height: 180px;
  box-sizing: border-box;
  padding-bottom: 50px;
}

.mob_menu_btn{
  display: none;
}

.logo{
  display: inline-block;
  width: 220px;
  min-width: 220px;
  height: 114px;
  background-image: url(svg/logo.svg);
  background-position: left bottom;
  background-repeat: no-repeat;
}

.header_title{
  font-size: 28px;
  color: #014981;
}

.header_container{
  position: absolute;
  z-index: 1;
  left: 0;
  bottom: -40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 80px;
  background-color: #00ADEF;
}

.mainmenu_list{
  display: flex;
}

.mainmenu_item{
  position: relative;
  list-style-type: none;
}

.mainmenu_item:after{
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 60px;
  background-color: rgba(255,255,255,0.18);
  margin-top: -30px;
}

.mainmenu_item:last-child::after,
.mainmenu_item:hover::after,
.mainmenu_item.active::after{
  content: none;
}

.mainmenu_list > .mainmenu_item > a{
  display: flex;
  align-items: center;
  width: auto;
  height: 80px;
  padding: 0 30px;
  text-decoration: none;
  color: #fff;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
}

.mainmenu_item.current-menu-item > a,
.mainmenu_item.current_page_parent > a,
.mainmenu_item.current-menu-item:hover > a,
.mainmenu_item.current_page_parent:hover > a{
  background-color: #014981;
}

.mainmenu_item:hover a{
  background-color: rgba(3, 79, 139, 0.2);
}

.sub-menu{
  position: absolute;
  top: 80px;
  left: 0;
  width: 220px;
  padding-top: 12px;
  display: none;
}

.mainmenu_item:hover .sub-menu{
  display: block;
}

.sub-menu::before{
  content: '';
  position: absolute;
  top: 0px;
  left: 30px;
  width: 14px;
  height: 12px;
  background-image: url(svg/tr.svg);
  background-repeat: no-repeat;
  background-position: bottom center;
}

.sub-menu .mainmenu_item{
  width: 100%;
}

.sub-menu .mainmenu_item a{
  display: flex;
  width: 100%;
  box-sizing: border-box;
  padding: 11px 15px;
  text-decoration: none;
  color: #fff;
  font-size: 14px;
  background-color: #00ADEF;
  border-bottom: 1px solid rgba(255,255,255,0.4);
}

.sub-menu .mainmenu_item a:hover{
  background-color: #fff;
  color: #014981;
  border-bottom: 1px solid rgba(255,255,255,0);
}

.header_search{
  display: flex;
  width: 380px;
  height: 40px;
  margin-right: 20px;
}

.header_search_input{
  width: calc(100% - 40px);
  height: 100%;
  background-color: #fff;
  box-sizing: border-box;
  border: none;
  padding: 0 15px;
  outline: none;
}

.btn_search{
  width: 40px;
  height: 100%;
  background-color: #014981;
  background-image: url(svg/search.svg);
  background-repeat: no-repeat;
  background-position: center center;
  cursor: pointer;
}
/***************************************************** header ****************************************/

/***************************************************** bottom_header ****************************************/
.header_slider{
  position: relative;
  width: 100%;
  height: 450px;
}

.header_slider::before{
  content: '';
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(0,0,0,0.5);
}

.header_slide{
  width: 100%;
  height: 100%;
  background-image: url(img/slide1.jpg);
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: cover;
}
/***************************************************** bottom_header ****************************************/

/***************************************************** info ****************************************/
.wrap_info{
  padding: 65px 0;
}

.info_container{
  display: flex;
  flex-wrap: wrap;
  width: calc(100% + 20px);
  margin-left: -10px;
}

.info_block{
  width: calc(100%/3 - 20px);
  margin: 10px;
  box-sizing: border-box;
  border: 1px solid #CCD7E0;
  border-radius: 6px;
  text-decoration: none;
  overflow: hidden;
  transition: .3s;
}

.info_block:hover{
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  transition: .3s;
}

.info_block_img{
  position: relative;
  width: 100%;
  height: 175px;
  background-position: bottom center;
  background-repeat: no-repeat;
  background-color: rgba(0,0,0,0.05);
  background-size: cover;
}

.info_block_icon{
  position: absolute;
  right: 15px;
  bottom: -42px;
  width: 84px;
  height: 84px;
  background-color: #fff;
  border-radius: 50%;
}

.info_block_icon::before{
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 70px;
  height: 70px;
  margin-top: -35px;
  margin-left: -35px;
  background-color: #00ADEF;
  border-radius: 50%;
  transition: .3s;
}

.info_block:hover .info_block_icon::before{
  background-color: #014981;
  transition: .3s;
}

.info_block_icon_img{
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 48px 48px;
}

.info_block_title{
  width: 100%;
  box-sizing: border-box;
  padding: 0 15px;
  margin-top: 20px;
  color: #000;
  font-size: 14px;
  font-weight: 600;
}

.info_block_line{
  width: 100%;
  box-sizing: border-box;
  padding: 15px;
  padding-top: 0;
  margin-top: 15px;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 600;
  color: #014981;
}
/***************************************************** info ****************************************/

/***************************************************** services ****************************************/
.wrap_services{
  background-color: rgba(0,0,0,0.03);
  padding: 75px 0;
}

.services{
  display: flex;
  flex-wrap: wrap;
  width: calc(100% + 20px);
  margin-top: 35px;
  margin-left: -10px;
}

.service{
  width: calc(100%/3 - 20px);
  margin: 10px;
  box-sizing: border-box;
  padding: 0 15px;
}

.service_icon_line{
  display: flex;
  justify-content: center;
  width: 100%;
}

.service_icon{
  width: 80px;
  height: 80px;
  background: #212121;
  border-radius: 5px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 48px 48px;
}

.service.s1 .service_icon{
  background-image: url(svg/s1.svg);
}

.service.s2 .service_icon{
  background-image: url(svg/s2.svg);
}

.service.s3 .service_icon{
  background-image: url(svg/s3.svg);
}

.service_title{
  width: 100%;
  text-align: center;
  font-weight: 600;
  color: #00ADEF;
  text-transform: uppercase;
  margin-top: 20px;
}

.service_text{
  width: 100%;
  margin-top: 15px;
  text-align: center;
  color: #686868;
  line-height: 1.4em;
}
/***************************************************** services ****************************************/

/***************************************************** news ****************************************/
.wrap_news{
  padding: 75px 0;
}

.news{
  display: flex;
  flex-wrap: wrap;
  width: calc(100% + 30px);
  margin-left: -15px;
  margin-top: 35px;
}

.news_block{
  width: calc(100%/3 - 30px);
  margin: 15px;
}

.news_block_image{
  width: 100%;
  height: 200px;
  background-color: rgba(0, 0, 0, 0.1);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.news_block_title{
  width: 100%;
  color: #00ADEF;
  font-size: 16px;
  font-weight: 600;
  margin-top: 20px;
}

.news_block_text{
  width: 100%;
  color: #8F8F8F;
  font-size: 14px;
  margin-top: 15px;
  line-height: 1.5em;
}

.news_line{
  display: flex;
  align-items: flex-start;
  width: 100%;
  margin-top: 15px;
}

.news_more{
  position: relative;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  color: #00ADEF;
  text-decoration: none;
  display: inline-block;
}

.news_more::before{
  content: '';
  position: absolute;
  top: 50%;
  right: -18px;
  width: 12px;
  height: 12px;
  margin-top: -6px;
  background-image: url(svg/more_news.svg);
  background-position: left center;
  background-repeat: no-repeat;
}
/***************************************************** news ****************************************/

/***************************************************** news_page ****************************************/
.wrap_news_page{
  padding: 75px 0;
}

.news_page{
  display: flex;
}

.news_page_list{
  width: calc(100% - 400px);
  box-sizing: border-box;
  padding-right: 50px;
}

.news_page_item{
  width: 100%;
  margin-bottom: 40px;
}

.news_post_img{
  width: 100%;
}

.news_post_img img{
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

.news_post{
  display: flex;
  align-items: flex-start;
  margin-top: 30px;
}

.news_post_date{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 80px;
  min-width: 80px;
  background-color: #00ADEF;
  padding: 12px 0;
}

.news_post_date_m{
  width: 100%;
  color: #fff;
  font-size: 14px;
  text-align: center;
}

.news_post_date_d{
  width: 100%;
  color: #fff;
  font-size: 28px;
  text-align: center;
  font-weight: 600;
  margin-top: 10px;
}

.news_post_date_y{
  width: 100%;
  color: #fff;
  font-size: 16px;
  text-align: center;
  margin-top: 10px;
}

.news_post_content{
  position: relative;
  width: calc(100% - 80px);
  box-sizing: border-box;
  padding-left: 50px;
}

.news_post_content::before{
  content: '';
  position: absolute;
  top: 0;
  left: 20px;
  width: 1px;
  height: 100%;
  background-color: #8A8A8A;
}

.news_post_single .news_post_content::before{
  max-height: 150px;
}

.news_post_content_title{
  width: 100%;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.4em;
}

.news_post_single .news_post_content_title{
  font-size: 22px;
}

.news_post_content_text{
  width: 100%;
  margin-top: 15px;
  font-size: 16px;
  line-height: 1.5em;
  color: #8A8A8A;
}

.news_post_content_line{
  width: 100%;
  margin-top: 15px;
}

.news_post_more{
  color: #00ADEF;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  padding-right: 25px;
  text-decoration: none;
  background-image: url(svg/arrow_r_b.svg);
  background-repeat: no-repeat;
  background-position: right center;
}

.navigation_list{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.navigation_item{
  margin-right: 13px;
}

.navigation_item:last-child{
  margin-right: 0;
}

.navigation_link{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  color: #7C7C7C;
  box-sizing: border-box;
  border: 1px solid #C7C7C7;
  text-decoration: none;
  font-weight: 600;
  background-repeat: no-repeat;
  background-position: center center;
}

.navigation_link:hover{
  border: 1px solid #000;
  color: #000;
}

.navigation_link.next{
  background-image: url(svg/arrow_next.svg);
}

.navigation_item.active .navigation_link{
  color: #000;
  border: 1px solid #00ADEF;
}
/***************************************************** news_page ****************************************/

/***************************************************** cat_page ****************************************/
.cat_page_article{
  width: 100%;
  margin-top: 15px;
}

.cat_page_article p{
  margin: 15px 0;
  font-size: 16px;
  line-height: 1.5em;
  color: #8A8A8A;
}

.cat_page_article strong,
.cat_page_article b{
  color: rgba(0,0,0,0.65);
}

.cat_page_article h1{
  font-size: 22px;
  margin: 15px 0;
  margin-bottom: 35px;
    color: rgba(0,0,0,0.65);
}

.cat_page_article h2{
  font-size: 20px;
  margin: 15px 0;
    color: rgba(0,0,0,0.65);
}

.cat_page_article h3{
  font-size: 18px;
  margin: 15px 0;
    color: rgba(0,0,0,0.65);
}

.cat_page_article h4{
	display: inline-block;
	font-size: 16px;
	margin: 7px 0;
	color: #fff;
	background-color: #014981;
	padding: 10px 30px;
}

.cat_page_article .wp-block-column img{
	margin: 0;
}

.cat_page_article img{
 max-width: 100%;
 height: auto;
 margin: 15px 0;
}

.cat_page_article ul{
 list-style-type: none;
 margin: 0;
 padding: 0;
}

.cat_page_article ul li{
  position: relative;
  display: flex;
  margin: 15px 0;
  font-size: 16px;
  line-height: 1.5em;
  color: #8A8A8A;
  padding-left: 40px;
}

.cat_page_article ul li::before{
  content: '';
  position: absolute;
  top: 6px;
  left: 16px;
  width: 12px;
  height: 12px;
  background-color: #00ADEF;
}

.wp-block-group__inner-container ul li{
	padding-left: 50px;
}

.wp-block-group__inner-container ul li:before{
	top: 0;
	width: 24px;
	height: 24px;
	background-color: transparent;
	background-image: url(img/checkforlist.png);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
}

.wp-block-image .alignleft{
	margin: 0;
	margin-right: 15px;
}

.wp-block-image .alignleft img{
	margin: 5px 0;
}

.wp-block-image .alignright{
	margin: 0;
	margin-left: 15px;
}

.wp-block-image .alignright img{
	margin: 5px 0;
}

.wp-block-media-text{
	max-width: 70%;
	margin: 15px auto;
	border-bottom: 1px solid rgba(0,0,0,0.15);
	padding: 15px 0;
}

.wp-block-image .alignleft{
	margin-bottom: 15px;
	max-width: 50%;
}
/***************************************************** cat_page ****************************************/

/***************************************************** single post ****************************************/
.news_post_article{
  width: 100%;
  margin-top: 15px;
}

.news_post_article p{
  margin: 15px 0;
  font-size: 16px;
  line-height: 1.5em;
  color: #8A8A8A;
}

.news_post_article h2{
  font-size: 20px;
  margin: 15px 0;
}

.news_post_article h3{
  font-size: 18px;
  margin: 15px 0;
}

.news_post_article img{
 max-width: 100%;
 height: auto;
 margin: 15px 0;
}

.news_post_article ul{
 list-style-type: none;
 margin: 0;
 padding: 0;
}

.news_post_article ul li{
  position: relative;
  margin: 15px 0;
  font-size: 16px;
  line-height: 1.5em;
  color: #8A8A8A;
  padding-left: 40px;
}

.news_post_article ul li::before{
  content: '';
  position: absolute;
  top: 6px;
  left: 16px;
  width: 12px;
  height: 12px;
  background-color: #00ADEF;
}
/***************************************************** single post ****************************************/

/***************************************************** sidebar ****************************************/
.sidebar{
  width: 400px;
}

.widget{
  width: 100%;
  margin-bottom: 25px;
}

.widget:last-child{
  margin-bottom: 0;
}

.widget_title{
  width: 100%;
}

.widget_title h3{
  position: relative;
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  padding-bottom: 10px;
}

.widget_title h3::after{
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background-color: #00ADEF;
}

.widget_content{
  width: 100%;
  margin-top: 15px;
}

.cat_block{
  display: flex;
  align-items: center;
  width: 100%;
  padding: 20px 0;
  box-sizing: border-box;
  border-bottom: 1px solid #D0D0D0;
  text-decoration: none;
  transition: .5s;
}

.cat_block:hover{
  background-color: rgba(0, 173, 239, 0.04);
  padding-left: 10px;
  transition: .5s;
}

.cat_block_img{
  width: 100px;
  min-width: 100px;
  height: 100px;
  background-color: #014981;
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: center center;
  transition: .5s;
}

.cat_block:hover .cat_block_img{
  background-color: #00ADEF;
  transition: .5s;
}

.cat_block_content{
  padding: 0 10px 0 18px;
}

.cat_block_content_title{
  font-size: 18px;
  font-weight: 600;
  color: #000;
  line-height: 1.3em;
}

.cat_block_content_link{
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  color: #014981;
  margin-top: 7px;
}

.cat_block:hover .cat_block_content_link{
  text-decoration: underline;
}

.post_block_img{
  width: 140px;
  min-width: 140px;
  height: 100px;
  background-color: rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: .5s;
}

.post_block_img img{
  max-width: 100%;
  height: auto;
}
/***************************************************** sidebar ****************************************/

/***************************************************** about ****************************************/
.wrap_about{
  padding: 75px 0;
}

.about{
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}

.about_slider_container{
  width: 500px;
  box-sizing: border-box;
  border: 1px solid #BDBDBD;
  box-shadow: 2px 3px 15px 2px rgba(0, 0, 0, 0.25);
}

.about_slider{
  width: 100%;
}

.about_slide{
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 330px !important;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.1);
}

.about_slide img{
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

.about_slider .slick-dots{
  position: absolute;
  top: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 15px;
}

.about_slider .slick-dots li button{
  width: 24px;
  height: 24px;
  border-radius: 50%;
  font-size: 0;
  border: none;
  margin: 0 4px;
  background-color: #D9D9D9;
  cursor: pointer;
}

.about_slider .slick-dots li.slick-active button{
  background-color: #00ADEF;
}

.about_container{
  width: calc(100% - 500px);
  box-sizing: border-box;
  padding-left: 50px;
}

.about_container p{
  margin-bottom: 20px;
  line-height: 1.5em;
}

.about_container strong{
  color: #00ADEF;
}

.about_container h3{
  color: #00ADEF;
}

.about_container ul li{
  position: relative;
  color: #6F6F6F;
  line-height: 1.5em;
  margin-top: 10px;
  box-sizing: border-box;
  padding-left: 25px;
}

.about_container ul li::before{
  content: '';
  position: absolute;
  top: 4px;
  left: 0;
  width: 16px;
  height: 16px;
  background-image: url(svg/arrow_right.svg);
  background-repeat: no-repeat;
  background-position: left center;
}

.wrap_about_services{
  padding: 75px 0;
}

.about_services{
  display: flex;
  flex-wrap: wrap;
  width: calc(100% + 60px);
  margin-left: -30px;
}

.about_service{
  width: calc(100%/2 - 60px);
  margin: 30px;
}

.about_service_img{
  position: relative;
  float: left;
  width: 200px;
  height: 200px;
  margin-right: 25px;
  margin-bottom: 15px;
}

.about_service_img_container{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.about_service_img::after{
  content: '';
  position: absolute;
  right: -8px;
  bottom: -3px;
  width: 5px;
  height: 90px;
  background-color: #00ADEF;
}

.about_service_img::before{
  content: '';
  position: absolute;
  right: -8px;
  bottom: -8px;
  width: 95px;
  height: 5px;
  background-color: #00ADEF;
}

.about_service h3{
  display: inline-block;
  margin-bottom: 15px;
  color: #00ADEF;
  font-size: 20px;
  text-transform: uppercase;
}

.about_service p{
  margin-bottom: 15px;
  line-height: 1.5em;
  color: #6A6A6A;
  font-size: 14px;
}
/***************************************************** about ****************************************/

/***************************************************** contacts ****************************************/
.wrap_contacts{
  padding: 75px 0;
}

.contacts{
  display: flex;
  flex-wrap: wrap;
}

.contacts_left{
  width: 50%;
  box-sizing: border-box;
  padding-right: 40px;
}

.contacts_right{
  width: 50%;
  box-sizing: border-box;
  padding-left: 40px;
}

.contacts_block{
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.contacts_block:last-child{
  margin-bottom: 0;
}

.contacts_block_title{
  position: relative;
  width: 100%;
  color: #000;
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
}

.contacts_block_title::before{
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 50px;
  height: 4px;
  background-color: #00ADEF;
}

.contacts_block_line{
  display: flex;
  width: 100%;
  margin-top: 30px;
}

.contacts_block_phones,
.contacts_block_time{
  position: relative;
  box-sizing: border-box;
  padding-left: 50px;
  background-repeat: no-repeat;
  background-position: top left;
  background-size: 40px 40px;
}

.contacts_block_phones{
  background-image: url(svg/phones.svg);
}

.contacts_block_time{
  background-image: url(svg/watch.svg);
}

.contacts_block_time{
  margin-left: 50px;
}

.contacts_block_phones_title,
.contacts_block_time_title{
  color: #014981;
  font-weight: 600;
  padding-top: 3px;
}

.contacts_block_phones_item{
  margin-top: 12px;
}

.contacts_block_link{
  font-size: 14px;
  text-decoration: none;
  color: #000;
}

.contacts_block_time_info{
  font-size: 14px;
  color: #050505;
  margin-top: 12px;
}

.contacts_block_time_info strong{
  color: #014981;
}

.contacts_block_address{
  width: 100%;
  font-size: 16px;
  line-height: 2em;
  color: #000;
}

.contacts_map{
  width: 100%;
  height: 400px;
  background-color: rgba(0, 0, 0, 0.05);
  /* background-image: url(img/map.jpg); */
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.contacts_form{
  width: 100%;
  margin-top: 30px;
}

.contacts_form_line{
  display: flex;
  width: 100%;
  margin-bottom: 20px;
}

.contacts_form_line:last-child{
  margin-bottom: 0;
}

.contacts_form_input{
  width: 100%;
  height: 48px;
  box-sizing: border-box;
  border: 1px solid #CCCCCC;
  padding: 0 20px;
  outline: none;
}

.contacts_form_input.ml{
  margin-left: 20px;
}

.contacts_form_input:focus{
  border: 1px solid #00ADEF;
}

.contacts_form_textarea{
  width: 100%;
  height: 120px;
  box-sizing: border-box;
  border: 1px solid #CCCCCC;
  padding: 20px;
  outline: none;
  resize: none;
  line-height: 1.4em;
}

.contacts_form_textarea:focus{
  border: 1px solid #00ADEF;
}

.contacts_form_btn{
  height: 48px;
  background-color: #00ADEF;
  color: #fff;
  cursor: pointer;
  border: none;
  outline: none;
  padding: 0 40px;
}

.contacts_form_btn:hover{
  background-color: #014981;
}

input::-webkit-input-placeholder{color:#A4A4A4;}
input::-moz-placeholder{color:#A4A4A4;}
input:-moz-placeholder{color:#A4A4A4;}
input:-ms-input-placeholder{color:#A4A4A4;}

textarea::-webkit-input-placeholder{color:#A4A4A4;}
textarea::-moz-placeholder{color:#A4A4A4;}
textarea:-moz-placeholder{color:#A4A4A4;}
textarea:-ms-input-placeholder{color:#A4A4A4;}

input::-webkit-input-placeholder{opacity: 1; transition: opacity 0.3s ease;}
input::-moz-placeholder{opacity: 1; transition: opacity 0.3s ease;}
input:-moz-placeholder{opacity: 1; transition: opacity 0.3s ease;}
input:-ms-input-placeholder{opacity: 1; transition: opacity 0.3s ease;}
input:focus::-webkit-input-placeholder{opacity: 0; transition: opacity 0.3s ease;}
input:focus::-moz-placeholder{opacity: 0; transition: opacity 0.3s ease;}
input:focus:-moz-placeholder{opacity: 0; transition: opacity 0.3s ease;}
input:focus:-ms-input-placeholder{opacity: 0; transition: opacity 0.3s ease;}

textarea::-webkit-input-placeholder{opacity: 1; transition: opacity 0.3s ease;}
textarea::-moz-placeholder{opacity: 1; transition: opacity 0.3s ease;}
textarea:-moz-placeholder{opacity: 1; transition: opacity 0.3s ease;}
textarea:-ms-input-placeholder{opacity: 1; transition: opacity 0.3s ease;}
textarea:focus::-webkit-input-placeholder{opacity: 0; transition: opacity 0.3s ease;}
textarea:focus::-moz-placeholder{opacity: 0; transition: opacity 0.3s ease;}
textarea:focus:-moz-placeholder{opacity: 0; transition: opacity 0.3s ease;}
textarea:focus:-ms-input-placeholder{opacity: 0; transition: opacity 0.3s ease;}
/***************************************************** contacts ****************************************/

/***************************************************** footer ****************************************/
.wrap_footer{
  background-color: #212121;
}

.footer{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
  color: rgba(255,255,255,0.5);
  font-size: 12px;
}
/***************************************************** footer ****************************************/

/********************************************** mobile ******************************************/
@media only screen and (max-width: 1240px){
  .work{
    width: calc(100% - 40px);
    max-width: calc(100% - 40px);
  }

  .mainmenu_item a{
    padding: 0 20px;
  }

  .header_slider{
    height: 350px;
  }
}

@media only screen and (max-width: 1199px){
  .info_block_icon{
    right: 5px;
  }

  .contacts{
    justify-content: center;
  }

  .contacts_left{
    width: 100%;
    max-width: 640px;
    padding-right: 0;
  }

  .contacts_right{
    width: 100%;
    max-width: 640px;
    margin-top: 40px;
    padding-left: 0;
  }
  .mainmenu_list > .mainmenu_item > a{
	  padding: 0 20px;
  }
}

@media only screen and (max-width: 1023px){
  .header_title{
    text-align: right;
    font-size: 24px;
  }

  .mainmenu{
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    display: none;
    align-items: flex-start;
    justify-content: center;
    padding-top: 100px;
    box-sizing: border-box;
  }

  .mainmenu.open{
    display: flex;
  }

  .mainmenu.open .sub-menu{
 
    position: relative;
    top: 0;
    padding-top: 0;
    width: 100%;
  }

  .mainmenu.open .mainmenu_item a{
    width: 100%;
    justify-content: center;
    padding: 15px;
    box-sizing: border-box;
  }

  .mainmenu_list{
    flex-wrap: wrap;
    max-width: calc(100% - 40px);
  }

  .mainmenu_item{
    width: 100%;
  }

  .btn_close_mmenu{
    position: absolute;
    z-index: 2;
    top: 10px;
    right: 10px;
    display: block;
    width: 48px;
    height: 48px;
    background-image: url(svg/mmenu_close.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 30px 30px;
  }

  .mainmenu_item a{
    justify-content: center;
    text-align: center;
    background-color: #00ADEF;
    box-sizing: border-box;
    border-bottom: 1px solid rgba(255,255,255,0.5);
  }

  .mainmenu_item.active a{
    border-bottom: 1px solid rgba(255,255,255,0);
  }

  .mob_menu_btn{
    display: block;
    width: 48px;
    height: 48px;
    margin-left: 20px;
    background-image: url(svg/mmenu.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 40px 40px;
  }

  .wrap.wrap_info .work{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .info_container{
    max-width: 800px;
    justify-content: flex-start;
    width: 100%;
    margin-left: 0;
  }

  .info_block{
    width: calc(100% / 2 - 20px);
  }

  .service{
    width: calc(100% - 20px);
  }

  .news_block{
    width: calc(100% / 2 - 30px);
  }
  
  .news_page{
	  flex-wrap: wrap;
  }
  
  .news_page_list{
	width: 100%;
    padding-right: 0;
  }
  
  .sidebar{
	  width: 100%;
	  margin-top: 30px;
  }
  
  .about_container{
	  width: 100%;
	  padding-left: 0;
	  margin-top: 70px;
  }
}

@media only screen and (max-width: 767px){
  .header_title{
    padding-left: 40px;
  }

  .info_block_title{
    padding-right: 80px;
    line-height: 1.4em;
  }

  .header_search{
    max-width: calc(100% - 110px);
  }
}

@media only screen and (max-width: 639px){
  .header_title{
    font-size: 18px;
  }

  .header{
    height: 150px;
  }

  .logo{
    width: 160px;
    min-width: 160px;
    height: 83px;
    background-size: contain;
  }

  .info_block{
    width: calc(100% - 20px);
  }

  .info_container{
    max-width: 400px;
  }

  .news_block{
    width: calc(100% - 30px);
  }

  .wrap.wrap_news .work{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .wrap_title.left{
    justify-content: center;
  }

  .wrap_title.left .wrap_title_text::before{
    left: 50%;
    margin-left: -25px;
  }

  .news{
    width: 100%;
    margin-left: 0;
    max-width: 400px;
  }
  
  .about_service_img_container{
	  flex-wrap: wrap;
  }
  
  .about_service{
	width: calc(100% - 60px);
  }
  
  .about_service_img{
	  float: inherit;
	  margin-bottom: 30px;
  }
}

@media only screen and (max-width: 539px){
  .topheader_right{
    font-size: 0;
  }

  .topheader_contact.mail{
    margin-left: 10px;
  }

  .header_slider{
    height: 250px;
  }

  .contacts_block_phones{
    min-width: 160px;
  }

  .contacts_block_time{
    margin-left: 25px;
  }

  .contacts_block_time_info{
    line-height: 1.5em;
  }

  .contacts_block_title{
    line-height: 1.4em;
  }
  
  .about_slider_container{
	  width: 100%;
	  border: none;
	  box-shadow: none;
  }
  
  .about_slide{
	  height: auto !important;
	  background-color: inherit;
  }
}

@media only screen and (max-width: 479px){
  .work{
    width: calc(100% - 20px);
    max-width: calc(100% - 20px);
  }

  .header{
    height: 125px;
  }

  .logo{
    width: 120px;
    min-width: 120px;
    height: 62px;
  }

  .header_title{
    padding-left: 20px;
  }

  .contacts_form_line{
    flex-wrap: wrap;
  }

  .contacts_form_input.ml{
    margin-left: 0;
    margin-top: 20px;
  }
  
  .news_post{
	  position: relative;
  }
  
  .news_post_date{
	  position: absolute;
	  top: -100px;
	  z-index: 1;
  }
  
  .news_post_content{
	  width: 100%;
	  padding-left: 0;
	  margin-top: 15px;
  }
  
  .news_post_content::before{
	  content: none;
  }
  
  .news_post{
	  flex-wrap: wrap;
  }
  
  .contacts_block_line{
	  flex-wrap: wrap;
  }
  
  .contacts_block_phones{
	  width: 100%;
  }
  
  .contacts_block_time{
	  margin-left: 0;
	  margin-top: 20px;
  }
  
  .contacts_form_line.flex > p{
	  flex-wrap: wrap;
  }
  
  .contacts_form_input.ml{
	  width: 100% !important;
  }
  
  .wpcf7-form-control-wrap{
	  width: 100%;
  }
  
  .wp-block-image .alignleft{
	max-width: inherit;
	width: 100%;
}
}

@media only screen and (max-width: 399px){
  .topheader_contact{
    font-size: 12px;
  }
}
/********************************************** mobile ******************************************/