.hero {
	position: relative;
	padding-top: 80px;
}

.hero::before {
	bottom: 106px;
	width: 100%;
}

.hero__container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 28px;
}

.hero__title {
	margin-bottom: 40px;
	font-family: "Oswald", sans-serif;
	font-weight: 600;
	font-size: 62px;
	line-height: 1.15;
	text-transform: uppercase;
	color: #2c332f;
}

.hero__title-accent {
	font-weight: 600;
	color: #3596ed;
}

.hero__info {
	max-width: 492px;
}

.hero__text {
	max-width: 440px;
	margin-bottom: 140px;
}

.hero__images {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.hero__choose {
	position: absolute;
	top: 40px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	max-width: 161px;
	padding: 22px;
	border: 1px solid #535755;
	background-color: rgb(255 255 255 / 0.9);
	text-align: center;
}

/* ================================================== */

.news__inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 28px;
}

.news__article {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	max-width: 284px;
	-webkit-box-flex: 1;
	-ms-flex: 1 1 25%;
	flex: 1 1 25%;
	background-color: #fff;
	border: 1px solid #d3cbd9;
	overflow: hidden;
}

.news__article-img {
	display: block;
}

.news__article-info {
	padding: 20px 20px 0;
	margin-bottom: 12px;
}

.news__article-date {
	display: inline-block;
	margin-bottom: 8px;
}

.news__article-title {
	color: #2c332f;
}

.news__article-link {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 8px;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.3;
	color: #3596ed;
}

.news__article-link::after {
	content: "";
	display: inline-block;
	width: 22px;
	height: 9px;
	background-image: url("../img/arrow-right-icon.svg");
	-webkit-transition: -webkit-transform 0.2s;
	transition: -webkit-transform 0.2s;
	-o-transition: transform 0.2s;
	transition: transform 0.2s;
	transition:
		transform 0.2s,
		-webkit-transform 0.2s;
}

.news__article-link:hover::after {
	-webkit-transform: translateX(5px);
	-ms-transform: translateX(5px);
	transform: translateX(5px);
}

.news__article-footer {
	padding: 0 20px 20px;
	margin-top: auto;
}

/* ================================================== */

.faq {
	position: relative;
}

.faq::before {
	top: 215px;
}

.faq__inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	gap: 28px;
}

.faq__details {
	border-block: 1px solid #d3cbd9;
}

.faq__details:not(:last-child) {
	margin-bottom: 20px;
}

.faq__details[open] summary::after {
	-webkit-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	transform: rotate(180deg);
}

.faq__summary {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	gap: 10px;
	list-style: none;
	padding: 20px;
	cursor: pointer;
}

.faq__summary::after {
	content: "";
	display: inline-block;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	width: 17px;
	height: 22px;
	background: url("../img/arrow-down-icon.svg") no-repeat center / cover;
}

.faq__summary::-webkit-details-marker {
	display: none;
}

.faq__text {
	padding: 0 20px 20px;
}

/* ================================================== */
/* ================================================== */
/* ================================================== */

/* 
1200px
992px
768px
576px
375px
320px
*/

@media (width <= 1440px) {
	.hero__img {
		width: 50%;
	}
}

@media (width <= 992px) {
	.hero__container {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}

	.hero__info {
		text-align: center;
	}

	.hero__title {
		font-size: 52px;
		margin-bottom: 30px;
	}

	.hero__text {
		margin-bottom: 30px;
		max-width: inherit;
	}

	.hero::after {
		display: none;
	}

	/* ================================================== */

	.news__inner {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		gap: 20px;
	}

	.news__article {
		-ms-flex-preferred-size: 50%;
		flex-basis: 50%;
		max-width: 350px;
	}

	.news__article-img {
		width: 100%;
	}

	/* ================================================== */

	.faq__inner {
		-webkit-box-orient: vertical;
		-webkit-box-direction: reverse;
		-ms-flex-direction: column-reverse;
		flex-direction: column-reverse;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}

	.faq::before {
		display: none;
	}
}

@media (width <= 768px) {
	.hero__title {
		font-size: 50px;
	}

	/* ================================================== */

	.news__article {
		-ms-flex-preferred-size: 100%;
		flex-basis: 100%;
		max-width: 400px;
	}
}

@media (width <= 576px) {
	.hero {
		padding-top: 60px;
	}

	.hero__info {
		max-width: 410px;
	}

	.hero__title {
		font-size: 42px;
	}

	.hero__choose {
		padding: 10px;
		font-size: 14px;
		max-width: 125px;
	}
}
