/*item_article*/
.item_article .article_img {
	height: 380px;
	border-radius: 30px;
	overflow: hidden;
	margin-bottom: 20px;
	transition: .3s;
	position: relative;
}
.item_article .article_img:hover {
	opacity: .7;
}
.item_article .article_img a {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
}
.item_article .article_img picture {
	display: flex;
	align-items: center;
	justify-content: center;
  height: 100%;
  width: 100%;
}
.item_article .article_img img {
	min-width: 100%;
	min-height: 100%;
	object-fit: cover;
}
.item_article .article_info {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 15px;
}
.item_article .article_info .mark {
	background: #E3E3E3;
	min-height: 26px;
	padding: 4px 10px;
	font-size: 14px;
	letter-spacing: -0.02em;
	display: inline-flex;
	align-items: center;
	color: #000;
	max-width: calc(100% - 100px);
	border-radius: 4px;
}
.item_article .article_info .mark::after {
	content: "";
	background: url(../img/category_article.svg) no-repeat;
	background-size: contain;
	background-position: center;
	width: 15px;
	height: 14px;
	margin-left: 6px;
	display: inline-block;
}
.item_article .article_info .date {
	font-size: 14px;
	letter-spacing: -0.02em;
	color: #000;
	min-height: 26px;
	display: inline-flex;
	align-items: center;
}
.item_article .article_title {
	font-size: 18px;
	line-height: 135%;
	letter-spacing: -0.02em;
	color: #000;
	max-height: 49px;
	overflow: hidden;
	transition: .3s;
	position: relative;
}
.item_article .article_title::after {
	content: "";
	background: linear-gradient(to right, rgba(255, 255, 255, 0), #fff);
	position: absolute;
	bottom: 0;
	right: 0;
	width: 60px;
	height: 25px;
}
.item_article .article_title:hover {
	opacity: .7;
}
.item_article .article_title a {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
}
@media (max-width: 1700px) {
	.item_article .article_img {
		height: 340px;
	}
	.item_article .article_title {
		font-size: 17px;
		max-height: 46px;
	}
}
@media (max-width: 1440px) {
	.item_article .article_img {
	  height: 320px;
	}
  .item_article .article_title {
    font-size: 16px;
    max-height: 44px;
  }
  .item_article .article_info .mark {
  	font-size: 13px;
  }
  .item_article .article_info .date {
  	font-size: 13px;
  }
}
@media (max-width: 1199px) {
	.item_article .article_img {
	  height: 300px;
	}
  .item_article .article_title {
    font-size: 15px;
    max-height: 41px;
  }
  .item_article .article_info .mark {
  	font-size: 12px;
  	max-width: calc(100% - 70px);
  }
  .item_article .article_info .date {
  	font-size: 12px;
  }
}
@media (max-width: 991px) {
  .item_article .article_img {
    height: 260px;
    margin-bottom: 15px;
  }
	.item_article .article_title {
	  font-size: 14px;
	  max-height: 38px;
	}
}
@media (min-width: 768px) and (max-width: 991px) {
	.item_article .article_info {
  	display: block;
  }
	.item_article .article_info .mark {
		max-width: 100%;
	}
	.item_article .article_info .date {
		margin-top: 10px;
		display: block;
		min-height: 100%;
	}
}
@media (max-width: 479px) {
	.item_article .article_info {
  	display: block;
  }
	.item_article .article_info .mark {
		padding: 4px 6px;
		max-width: 100%;
	}
	.item_article .article_info .date {
		margin-top: 10px;
		display: block;
		min-height: 100%;
	}
	.item_article .article_img {
    height: 230px;
    border-radius: 20px;
  }
  .item_article .article_title {
		max-height: 100%;
		display: -webkit-box;
		-webkit-line-clamp: 2;
		-webkit-box-orient: vertical;
  }
  .item_article .article_title::after {
  	display: none;
  }
}
@media (max-width: 369px) {
  .item_article .article_img {
    height: 200px;
  }
}

/*s_blog*/
.s_blog {
  padding-bottom: 100px;
}
.s_blog .wrap {
	display: flex;
	margin: 0 -12px -25px;
}
.s_blog .wrap .item_article {
	width: 25%;
	padding: 0 12px 25px;
}
@media (max-width: 1700px) {
  .s_blog .wrap {
		margin: 0 -10px -20px;
	}
	.s_blog .wrap .item_article {
		padding: 0 10px 20px;
	}
}
@media (max-width: 1199px) {
  
}
@media (max-width: 991px) {
	
}
@media (max-width: 767px) {
	.s_blog .wrap {
		flex-wrap: wrap;
	}
	.s_blog .wrap .item_article {
	  width: 50%;
	}
}
@media (max-width: 479px) {
	.s_blog .wrap {
		margin: 0 -6px -12px;
	}
	.s_blog .wrap .item_article {
		padding: 0 6px 12px;
	}
} 

/*s_article*/
.s_article {
	padding-bottom: 100px;
  padding-top: 40px;
}
.s_article .wrap {
	display: flex;
}
.s_article .col_l {
	width: calc(100% - 290px);
	padding-right: 60px;
	padding-top: 20px;
}
.s_article .col_r {
	width: 290px;
}
.s_article article .article_info {
	margin-bottom: 25px;
}
.s_article article .article_info .mark {
	background: #E3E3E3;
	min-height: 26px;
	padding: 4px 10px;
	font-size: 14px;
	letter-spacing: -0.02em;
	display: inline-flex;
	align-items: center;
	color: #000;
	max-width: calc(100% - 100px);
	border-radius: 4px;
}
.s_article article .article_info .mark::after {
	content: "";
	background: url(../img/category_article.svg) no-repeat;
	background-size: contain;
	background-position: center;
	width: 15px;
	height: 14px;
	margin-left: 6px;
	display: inline-block;
}
.s_article article .article_title {
	margin-bottom: 25px;
}
.s_article article .article_title h1 {
	font-size: 36px;
	font-weight: 500;
	letter-spacing: -0.03em;
	color: #000;
}
.s_article article .article_descr {
	color: #000000CC;
	font-size: 16px;
	line-height: 140%;
	letter-spacing: -0.01em;
}
.s_article article .article_descr > * {
	margin-bottom: 25px;
}
.s_article article .article_descr > *:last-child {
	margin-bottom: 0;
}
.s_article .col_r .item_article {
	margin-bottom: 25px;
}
.s_article article .article_descr img {
	border-radius: 20px;
}
.s_article article .article_descr img.alignleft {
	margin: 25px 25px 25px 0;
}
.s_article article .article_descr img.alignright {
	margin: 25px 0 25px 25px;
}
.s_article article .article_descr img.aligncenter {
	margin: 25px auto;
}
.s_article article .article_descr h1, 
.s_article article .article_descr h2, 
.s_article article .article_descr h3, 
.s_article article .article_descr h4,
.s_article article .article_descr h5, 
.s_article article .article_descr h6 {
	font-weight: 500;
}
.s_article article .article_descr ul,
.s_article article .article_descr ol {
  list-style-position: inside;
}
.s_article article .article_descr .block_video {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	font-size: 0;
  line-height: normal;
}
.s_article article .article_descr .block_video.alignleft {
	margin: 25px 25px 25px 0;
}
.s_article article .article_descr .block_video.alignright {
	margin: 25px 0 25px 25px;
}
.s_article article .article_descr .block_video.aligncenter {
	margin: 25px auto;
}
.s_article article .article_descr .block_video video {
	-o-object-fit: cover;
	object-fit: cover;
	border-radius: inherit;
}
.s_article article .article_descr .block_video .btn_video {
	width: 42px;
  height: 42px;
  background: url(../img/play_video.svg) no-repeat;
  background-size: contain;
  background-position: center;
  cursor: pointer;
  position: absolute;
  bottom: 30px;
  left: 30px;
  z-index: 12;
}
.s_article article .article_descr .block_video video[data-play="on"] + .btn_video {
  background: url(../img/pause_video.svg) no-repeat;
  background-size: contain;
  background-position: center;
}
@media (max-width: 1700px) {
	.s_article .col_r .item_article {
		margin-bottom: 20px;
	}
	.s_article article .article_title h1 {
		font-size: 28px;
	}
	.s_article .col_l {
		width: calc(100% - 260px);
		padding-right: 40px;
	}
	.s_article .col_r {
		width: 260px;
	}
}
@media (max-width: 1440px) {
  .s_article .col_l {
		padding-right: 30px;
	}
	.s_article article .article_descr {
		font-size: 15px;
	}
	.s_article article .article_info .mark {
		font-size: 13px;
	}
}
@media (max-width: 1199px) {
  .s_article {
    padding-bottom: 60px;
  }
	.s_article .col_r {
	  width: 220px;
	}
	.s_article .col_l {
		width: calc(100% - 220px);
		padding-right: 20px;
		padding-top: 0;
	}
	.s_article article .article_info .mark {
		font-size: 12px;
	}
}
@media (max-width: 991px) {
	.s_article article .article_title h1 {
  	font-size: 24px;
  }
	.s_article .wrap {
		display: block;
	}
	.s_article .col_r {
	  width: auto;
	  display: flex;
	  margin: 0 -12px -25px;
	}
	.s_article .col_r .item_article {
		width: 50%;
		padding: 0 12px 25px;
	}
	.s_article .col_l {
		width: 100%;
		padding-right: 0;
		margin-bottom: 30px;
	}
}
@media (max-width: 767px) {
	.s_article article .article_title h1 {
	  font-size: 22px;
	}
	.s_article article .article_title {
		margin-bottom: 20px;
	}
	.s_article article .article_descr > * {
		margin-bottom: 20px;
	}
	.s_article article .article_descr img.alignleft {
		margin: 20px auto;
	}
	.s_article article .article_descr img.alignright {
		margin: 20px auto;
	}
	.s_article article .article_descr img.aligncenter {
		margin: 20px auto;
	}
	.s_article article .article_descr .block_video.alignleft {
		margin: 20px auto;
	}
	.s_article article .article_descr .block_video.alignright {
		margin: 20px auto;
	}
	.s_article article .article_descr .block_video.aligncenter {
		margin: 20px auto;
	}
	.s_article article .article_descr .block_video {
    height: auto !important;
	}
	.s_article article .article_descr .block_video video {
		max-height: 380px;
    max-width: 100%;
	}
	.s_article article .article_descr .block_video .btn_video {
		left: 20px;
		bottom: 20px;
	}
}
@media (max-width: 479px) {
	.s_article article .article_title h1 {
	  font-size: 20px;
	}
	.s_article .col_r .item_article {
		margin-bottom: 12px;
	}
	.s_article article .article_info .mark {
		padding: 4px 6px;
	}
	.s_article article .article_descr {
	  font-size: 14px;
	}
	.s_article article .article_title {
		margin-bottom: 15px;
	}
	.s_article article .article_descr > * {
		margin-bottom: 15px;
	}
	.s_article .col_r {
	  width: auto;
	  margin: 0 -6px -12px;
	}
	.s_article .col_r .item_article {
		padding: 0 6px 12px;
	}
	.s_article article .article_descr img.alignleft {
		margin: 15px auto;
	}
	.s_article article .article_descr img.alignright {
		margin: 15px auto;
	}
	.s_article article .article_descr img.aligncenter {
		margin: 15px auto;
	}
	.s_article article .article_descr .block_video.alignleft {
		margin: 15px auto;
	}
	.s_article article .article_descr .block_video.alignright {
		margin: 15px auto;
	}
	.s_article article .article_descr .block_video.aligncenter {
		margin: 15px auto;
	}
} 
/*header*/
.header .inner .col_r .dropdown_sort {
  width: auto;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.header .inner .col_r .dropdown_sort button {
  background: transparent;
  border: none;
  padding: 0;
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  color: #FFFFFF;
  display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.header .inner .col_r .dropdown_sort button::after {
	content: "";
	background: url(../img/arrow_header_wh.svg) no-repeat;
	background-size: contain;
	background-position: center;
	width: 13px;
	height: 6px;
	margin-left: 13px;
}
.header .inner .col_r .dropdown_sort.open button::after {
	-webkit-transform: rotate(-180deg);
	-ms-transform: rotate(-180deg);
	transform: rotate(-180deg);
}
.header .inner .col_r .dropdown_sort .dropdown-menu {
  min-width: 200px;
  max-width: 240px;
  left: auto;
  right: 0;
	border: 1px solid rgba(0, 0, 0, 0.1);
	box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.05);
	padding: 5px 0;
}
.header .inner .col_r .dropdown_sort .dropdown-menu > li > a {
  white-space: normal;
  padding: 5px 10px;
  color: #000;
  line-height: normal;
  font-size: 12px;
  white-space: normal;
}
@media (max-width: 1700px) {
  .header .inner .col_r .dropdown_sort button {
    font-size: 11px;
  }
  .header .inner .col_r .dropdown_sort .dropdown-menu > li > a {
  	font-size: 11px;
  }
}
@media (max-width: 767px) {
	.header .inner .col_r > .dropdown_sort {
		display: none;
	}
	.header .inner .col_r .dropdown_sort button {
    font-size: 12px;
    color: #000;
  }
  .header .inner .col_r .dropdown_sort .dropdown-menu > li > a {
  	font-size: 12px;
  	text-transform: none;
    font-weight: normal;
  }
  .header .inner .col_r .dropdown_sort .dropdown-menu > li {
  	margin-bottom: 0;
  }
  .header .inner .col_r .dropdown_sort button::after {
		background: url(../img/arrow_header.svg) no-repeat;
		background-size: contain;
		background-position: center;
	}
	.header .inner .col_r .dropdown_sort .dropdown-menu {
		left: 0;
		right: auto;
		min-width: 270px;
	}
	.header .inner .col_r .navmenu .dropdown_sort {
		margin-top: 10px;
	}
	
}