.hero {
	position: relative;
}

.hero::before {
	content: "";
	position: absolute;
	top: 439px;
	z-index: -1;
	background: url(../images/decor-index.svg);
	width: 100%;
	height: 48px;
}

.hero-container {
	padding-top: 80px;
	display: flex;
	gap: 28px;
}

.hero__title {
	color: #2C332F;

	font-family: Oswald, sans-serif;
	font-size: 62px;
	font-style: normal;
	font-weight: 600;
	line-height: 1.15;
	text-transform: uppercase;
}

.hero__title strong {
	color: #3596ED;
}

.hero-text {
	display: inline-block;
	padding-top: 40px;
	max-width: 439px;
	max-height: 63px;
}

.button {
	display: inline-block;
	color: #ffffff;
	text-align: center;
	font-family: Ubuntu;
	font-size: 15px;
	font-style: normal;
	font-weight: 500;
	line-height: 130%;
	letter-spacing: 0.3px;
	text-transform: uppercase;

	margin-top: 140px;
	padding: 19px 32px;
	background-color: #3596ED;
	transition: var(--anima);
}

.button:hover {
	opacity: 0.8;
}

.hero__img {
	display: flex;
	position: relative;
}

.img__choose {
	position: absolute;
	top: 40px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 1;
	padding: 22px;
	width: 160px;
	height: 86px;
	text-align: center;
	padding: 21px;
	border: 1px solid #535755;
	background: #ffffffe6;
}

.news__title {
	color: #2C332F;
	font-family: Oswald;
	font-size: 48px;
	font-style: normal;
	font-weight: 600;
	line-height: 1.15;
	text-transform: uppercase;
	padding-bottom: 40px;
}

.card-wrapper {
	display: flex;
	gap: 28px;
}

.news__card {
	display: flex;
	flex-direction: column;
	overflow: hidden;
	border: 1px solid #D3CBD9;
	max-width: 284px;

}

.card__header {}

.card__img {
	display: block;
}

.card__sub-text {
	font-family: Ubuntu;
	font-size: 14px;
	font-style: normal;
	font-weight: 300;
	line-height: normal;
	letter-spacing: 0.56px;
	text-transform: uppercase;
	color: #858E8A;
	display: block;
	padding: 20px 20px 8px
}

.card__title {
	color: #2C332F;
	font-family: Ubuntu;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 130%;
	padding: 0px 20px;
}

.card__footer {
	margin-top: auto;
}

.card__button {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin: 12px 20px;
	color: #3596ED;
	font-family: Ubuntu;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 130%;
}

.card__button::after {
	content: "";
	background-image: url(../images/icon-buutton-news.svg);
	width: 22px;
	height: 9px;
	display: inline-block;
	transition: var(--anima);
}

.card__button:hover::after {
	transform: translateX(5px);
}