/* globals */
@import url("./normalize.css");
@import url("./fonts.css");
@import url("./globals.css");

/* variables */
@import url("./variables.css");

/* components */
@import url("./components/header.css");
@import url("./components/footer.css");

@media (width > 992px) {
	.article {
		padding-bottom: 120px;
	}
}
@media (width <= 992px) {
	.article {
		padding-bottom: clamp(85px, 3.983rem + 5.6726vw, 120px);
	}
}

.title-large,
.title-medium {
	font-family: "Oswald";
	font-weight: 600;
	line-height: 1.15;
	text-transform: uppercase;
	color: #2c332f;
}

@media (width > 992px) {
	.title-large {
		font-size: 48px;
	}
}

@media (width <= 992px) {
	.title-large {
		font-size: clamp(32px, 1.3922rem + 2.5932vw, 48px);
		text-align: center;
	}
}

.title-medium {
	margin-bottom: 40px;
}

@media (width > 992px) {
	.title-medium {
		font-size: 36px;
	}
}

@media (width <= 992px) {
	.title-medium {
		font-size: clamp(30px, 1.6471rem + 0.9724vw, 36px);
		text-align: center;
	}
}

.first-section {
	position: relative;
}

.first-section::before,
.third-section::before {
	content: "" / "декорация в виде квадратиков";
	position: absolute;
	z-index: -1;
	width: 50%;
	height: 48px;
	background-image: url(../images/decor-section-image.svg);
}

@media (width <= 992px) {
	.first-section::before,
	.third-section::before {
		display: none;
	}
}

.first-section::before {
	top: 455px;
	left: 0;
}

.article__title {
	max-width: 596px;
	margin-bottom: 40px;
}

@media (width <= 992px) {
	.article__title {
		max-width: inherit;
	}
}

.article__text {
	margin-bottom: 20px;
	line-height: 1.3;
	color: #535755;
}

.article__text:last-child {
	margin-bottom: 0;
}

.article__list {
	margin: 0;
	padding: 0;
}

.article__list-item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 8px;
	margin-bottom: 12px;
	line-height: 1.3;
	color: #535755;
	list-style-type: none;
}

.article__list-item:last-child {
	margin-bottom: 0;
}

.article__list-item::before {
	content: "";
	width: 8px;
	height: 8px;
	display: inline-block;
	background-color: #3596ed;
	border-radius: 50%;
}

.third-section {
	position: relative;
}

.third-section::before {
	top: 446px;
	right: 0;
}

.third-section__video-wrapper {
	position: relative;
	margin-bottom: 40px;
}

.third-section__video {
	width: 100%;
}

.third-section__play {
	background-color: #3596ed;
	border: 0;
	border-radius: 50%;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	cursor: pointer;
	z-index: 1;
	-webkit-transition: background-color 0.3s;
	-o-transition: background-color 0.3s;
	transition: background-color 0.3s;
}

@media (width > 576px) {
	.third-section__play {
		width: 60px;
		height: 60px;
	}
}

@media (width <= 576px) {
	.third-section__play {
		width: 50px;
		height: 50px;
	}

	.third-section__play-icon {
		width: 20px;
		height: 20px;
	}
}

.third-section__play:hover {
	background-color: #3597ed9f;
}

.third-section__play:focus-visible {
	outline: 2px solid white;
	outline-offset: 3px;
}

.third-section__play-icon {
	-webkit-transform: translate(1px, 3px);
	-ms-transform: translate(1px, 3px);
	transform: translate(1px, 3px);
}

@media (width > 992px) {
	.mb-80 {
		margin-bottom: 80px;
	}
}

@media (width <= 992px) {
	.mb-80 {
		margin-bottom: clamp(45px, 1.483rem + 5.6726vw, 80px);
	}
}
