@charset "UTF-8";
/* Common */
/* Media */
/* Content */
/* Common animations */
@-webkit-keyframes marquee {
	0% {
		-webkit-transform: translateX(calc(100% + 2.77778vw));
		        transform: translateX(calc(100% + 2.77778vw));
		/* Начинаем движение справа */
	}
	100% {
		-webkit-transform: translateX(-100%);
		        transform: translateX(-100%);
		/* Заканчиваем движением слева */
	}
}
@keyframes marquee {
	0% {
		-webkit-transform: translateX(calc(100% + 2.77778vw));
		        transform: translateX(calc(100% + 2.77778vw));
		/* Начинаем движение справа */
	}
	100% {
		-webkit-transform: translateX(-100%);
		        transform: translateX(-100%);
		/* Заканчиваем движением слева */
	}
}

@-webkit-keyframes marquee-bg_rtl {
	from {
		-webkit-transform: translate3d(0, 0, 0);
		        transform: translate3d(0, 0, 0);
	}
	to {
		-webkit-transform: translate3d(-50%, 0, 0);
		        transform: translate3d(-50%, 0, 0);
	}
}

@keyframes marquee-bg_rtl {
	from {
		-webkit-transform: translate3d(0, 0, 0);
		        transform: translate3d(0, 0, 0);
	}
	to {
		-webkit-transform: translate3d(-50%, 0, 0);
		        transform: translate3d(-50%, 0, 0);
	}
}

@-webkit-keyframes fadeOut {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@keyframes fadeOut {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

/* Blocks */
.article-main {
	padding-top: 4.44444vw;
	padding-bottom: 4.44444vw;
	border-radius: 5.55556vw;
	background: white;
	display: grid;
	grid-template-columns: 1fr;
	grid-gap: 2.22222vw;
}

.article-main__title {
	font-weight: 600;
	font-size: 6.66667vw;
	line-height: 115%;
	letter-spacing: -0.02em;
	margin: 0 0 5.55556vw;
}

.article-main__box {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: 2.77778vw;
}

.article-main__info {
	font-weight: 600;
	font-size: 3.33333vw;
	line-height: 120%;
	display: flex;
	flex-wrap: wrap;
	gap: 1.11111vw;
}

.article-main__info-item {
	display: flex;
	align-items: center;
	gap: 1.11111vw;
}

.article-main__info-item-date {
	flex: 0 0 100%;
}

.article-main__info-item-date span {
	display: none;
}

.article-main__info i {
	width: 5.55556vw;
	height: 5.55556vw;
	flex: 0 0 auto;
	font-size: 5.55556vw;
}

.article-main__social {
	position: relative;
}

.article-main__social.active .article-main__social-box {
	display: flex;
}

.article-main__social-box {
	display: flex;
	flex-direction: column;
	gap: 1.86111vw;
}

@media (max-width: 767px) {
	.article-main__social-box {
		position: absolute;
		right: 0;
		bottom: 8.88889vw;
		padding: 2.5vw;
		border-radius: 3.33333vw 3.33333vw 0.83333vw 3.33333vw;
		min-width: 49.16667vw;
		background: var(--gray-20);
		box-shadow: 0px 1.11111vw 1.11111vw rgba(0, 0, 0, 0.14);
		display: none;
	}
}

.article-main__social-icon {
	font-size: 5.55556vw;
	width: 5.55556vw;
	height: 5.55556vw;
	border-radius: 1.11111vw;
	transition: all .2s;
	background: var(--black);
}

.article-main__social-item {
	cursor: pointer;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 1.11111vw;
}

.article-main__social span {
	font-weight: 600;
	font-size: 3.33333vw;
	line-height: 120%;
}

.article-main__image {
	height: 61.66667vw;
	border-radius: 3.33333vw;
	overflow: hidden;
}

.article-main__image img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
}

.article {
	display: flex;
	flex-direction: column;
	gap: 7.77778vw;
	padding-top: 6.66667vw;
	padding-bottom: 6.66667vw;
}

.article__back {
	position: sticky;
	bottom: 5.55556vw;
	z-index: 10;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1.66667vw;
	padding: 2.22222vw;
	border-radius: 1.25vw;
	background: var(--gray-40);
}

@media (max-width: 767px) {
	.article__back {
		width: -webkit-fit-content;
		width: fit-content;
		margin: 0 auto;
	}
}

.article__back i {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 6.66667vw;
	height: 6.66667vw;
	font-size: 2.22222vw;
	border-radius: 1.25vw;
	background: var(--gray-10);
	-webkit-transform: rotate(180deg);
	        transform: rotate(180deg);
}

.article__back span {
	font-weight: 600;
	font-size: 3.33333vw;
	line-height: 106%;
	letter-spacing: -0.02em;
}

.article__back:hover {
	color: white;
	background: var(--red);
}

.article__content {
	display: flex;
	flex-direction: column;
	gap: 3.33333vw;
}

.article__content h2 {
	font-weight: 700;
	font-size: 6.66667vw;
	line-height: 100%;
	letter-spacing: -0.04em;
}

.article__content h3 {
	font-weight: 600;
	font-size: 6.66667vw;
	line-height: 100%;
	letter-spacing: -0.04em;
}

.article__content iframe {
	width: 100%;
	height: 59.72222vw;
	border-radius: 3.33333vw;
}

.article__content a {
	font-weight: 500;
	font-size: 3.61111vw;
	line-height: 1;
	text-decoration: underline;
}

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

.article__content p {
	font-weight: 500;
	font-size: 3.61111vw;
	line-height: 125%;
}

.article__content p img {
	border-radius: 3.33333vw;
	width: 100%;
	height: 59.44444vw;
	-o-object-fit: cover;
	   object-fit: cover;
}

.article__content p.text-important {
	font-weight: 600;
	font-size: 4.16667vw;
	line-height: 112%;
	padding: 0 0 0 3.61111vw;
	margin: 0 0 0 3.61111vw;
	border-left: 0.55556vw solid #ED131C;
}

.article__content ul {
	font-weight: 500;
	font-size: 3.61111vw;
	line-height: 125%;
	list-style: square;
	margin: 0;
	padding: 0 0 0 5.55556vw;
}

.article__content ul li + li {
	margin: 1.38889vw 0 0;
}

.article__content-list {
	display: flex;
	flex-direction: column;
	gap: 3.33333vw;
	padding: 3.33333vw;
	border-radius: 5.55556vw;
	background: white;
}

.article__content-photo {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 0.83333vw;
	overflow: hidden;
}

.article__content-photo.swiper {
	padding: 0 1.66667vw;
	margin: 0 -2.22222vw;
}

.article__content-photo-item {
	display: flex;
	flex-direction: column;
	gap: 0.83333vw;
	margin: 0 0.55556vw;
}

.article__content-photo img {
	border-radius: 3.33333vw;
	width: 100%;
	height: 59.44444vw;
	-o-object-fit: cover;
	   object-fit: cover;
}
