.articles {
	margin-bottom: 40px;
	position: relative;
    display: none;
}
.articles header {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 40px;
}
.articles h2 {
	font-family: "HelveticaNeueCyr-Bold", sans-serif;
	font-size: 40px;
	line-height: 56px;
	padding-right: 20px;
	margin-bottom: 0;
	color: #EA89A2;
}
.articles .article {
	display: flex;
	flex-direction: column;
}
.articles .pagination {
	margin-left: auto;
	margin-bottom: 0;
}
.articles .pagination .pages {
	padding: 0 20px;
	font-size: 18px;
	line-height: 56px;
}
.articles .pagination .pages .cur-page {
	font-size: 36px;
}
.articles .slick-arrow {
	width: 38px;
	height: 38px;
	background-color: transparent;
	border: 0;
	outline: none;
	font-size: 0;
	cursor: pointer;
}
.articles .slick-arrow.slick-disabled {
	opacity: .3;
	cursor: auto;
}
.articles .slick-slide > div {
	height: 100%;
}
.articles .slick-slide:last-child {
	margin-right: 0;
}
.articles .article img {
	width: 100%;
	height: 100%;
	border-radius: 10px;
	margin: 0 auto;
	object-fit: cover;
}
.articles .article .article__title {
	font-size: 16px;
	line-height: 24px;
	margin-top: 10px;
	margin-bottom: 0;
	padding-left: 20px;
	position: relative;
}
.articles .article .article__title::before {
	content: "";
	width: 8px;
	height: 8px;
	background-color: #EA89A2;
	border-radius: 50%;
	position: absolute;
	left: 0;
	top: 7px;
}
.articles .article p {
	font-size: 14px;
	line-height: 20px;
}
.articles .article a {
	color: inherit;
}
.articles .article a:hover {
	text-decoration: none !important;
}
.articles .select-class {
	width: 200px;
	height: 50px;
	border-radius: 24px;
	padding: 0 50px 0 15px;
	font-size: 18px;
	-moz-appearance:none;
	-webkit-appearance:none;
	appearance:none;
	position: relative;
	background-repeat: no-repeat;
	background-position: 97% 50%;
	color: black;
}
.articles .slider-nav {
	display: flex;
	align-items: center;
	margin: 0;
}
.articles .count {
	margin: 0 20px;
}
.articles .current {
	font-size: 24px;
	color: var(--pink);
}
.articles .slider-arrow {
	background-color: transparent;
	border: 0;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	cursor: pointer;
	background-position: center;
	background-repeat: no-repeat;
	background-image: url("images/arrow-pink.svg");
}
.articles .slider-arrow:hover {
	box-shadow: 0 0 4px rgba(0, 0, 0, .3);
}
.articles .slider-prev {
	transform: rotate(180deg);
}

@media (min-width: 801px) {
	.articles .slick-slide {
		max-width: 300px;
		margin-right: 20px;
	}
	.articles .article figure {
		width: 280px;
		height: 280px;
	}
}
@media (max-width: 800px) {
	.articles header {
		flex-direction: column;
		align-items: flex-start;
	}
	.articles h2 {
		margin-bottom: 10px;
		font-size: 28px;
		line-height: 37px;
	}
	.articles .pagination {
		margin-left: 0;
	}
}