html {
	font-family: var(--second-family), sans-serif;
	font-weight: 400;
}

body * {
	box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
	margin: 0;
}

.container {
	max-width: 1250px;
	margin: 0 auto;
	padding: 0 15px;
}

.article {
	padding-top: 80px;
	padding-bottom: 120px;
}

.article-decor::before {
	content: "";
	position: absolute;
	z-index: -1;
	background-image: url("../images/decor-2.svg");
	width: 528px;
	height: 48px;
}

.article-decor-1::before {
	top: 100px;
	left: -350px;
}

.article-decor-2::before {
	top: 136px;
	right: -350px;
}

.article-title {
	max-width: 596px;
	margin-bottom: 40px;
	font-family: var(--font-family), sans-serif;
	font-weight: 600;
	font-size: 48px;
	line-height: 115%;
	text-transform: uppercase;
	color: var(--color-text-primary);
}

.article-title-large {
	font-size: 48px;
}

.article-title-medium {
	font-size: 36px;
}

.article-text {
	margin-bottom: 20px;
	font-weight: 400;
	font-size: 16px;
	line-height: 130%;
	color: var(--color-text-body);
}

.article-mb {
	margin-bottom: 80px;
}

.article-mb-2 {
	margin-bottom: 40px;
}

.img-wrap {
	position: relative;
	display: inline-block;
}

.article-img,
.article-video {
	width: 100%;
}

.article-list {
	list-style: none;
	margin-top: 0;
	padding-left: 0;
}

.article-item {
	position: relative;
	padding-left: 15px;
	margin-bottom: 12px;
}

.article-item::before {
	content: "•";
	position: absolute;
	left: -1px;
	top: 16px;
	transform: translateY(-70%);
	color: var(--color-accent);
	font-size: 30px;
	line-height: 1;
}

.article-video {
	margin-bottom: 40px;
}

.article-parent-button {
	position: relative;
	display: inline-block;
}

.article-play-button {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	padding: 0;
	background-color: var(--color-accent);
	border: none;
	border-radius: 50%;
	cursor: pointer;
}
