/* media-hero start */
.media-hero {
  padding-top: 13.4rem;
  padding-bottom: 6rem;
}
@media (min-width: 991px) {
  .media-hero {
    padding-top: 17.6rem;
    padding-bottom: 8rem;
  }
}

.media-hero__inner {
	display: flex;
	flex-direction: column;
	gap: 1.4rem;
}

.media-hero__content {
	position: relative;
}

.media-hero__slider-wrapper {
	width: 100%;
	min-width: 0;
	height: auto;
}

.media-hero__slider-item {
	width: 100%;
	height: auto;
}

.media-hero__pagination-wrapper {
	display: none;
}

@media (min-width: 991px) {
	.media-hero__pagination-wrapper {
		display: block;
		position: absolute;
		bottom: 12rem;
		width: 100%;
		text-align: center;
		z-index: 3;
	}
}

.media-hero__pagination {
	display: flex;
	gap: 0.8rem;
	justify-content: center;
	align-items: center;
}

body .media-hero__pagination-bullet {
	width: 1.2rem;
	height: 1.2rem;
	border-radius: 50%;
	background-color: #fff;
	opacity: 0.2;
	transition: all 0.3s ease-in-out;
}

body .media-hero__pagination-bullet:hover {
	opacity: 0.9;
	transition: all 0.3s ease-in-out;
}

body .media-hero__pagination-bullet:focus-visible {
	outline: 2px solid #fff;
	outline-offset: 2px;
}

body .media-hero__pagination-bullet.swiper-pagination-bullet-active {
	background: #fff;
	width: 2rem;
	height: 2rem;
	transition: all 0.3s ease-in-out;
	opacity: 1;
}

body .media-hero__slider-item {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 1.6rem;
	justify-content: flex-end;
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	min-height: 33.7rem;
	border-radius: 5rem;
	overflow: hidden;
	padding: 3.2rem 4rem;
}

@media (min-width: 991px) {
	body .media-hero__slider-item {
		padding: 5.8rem 5.8rem 17.3rem;
		min-height: 58rem;
		border-radius: 5.4rem;
	}
}

body .media-hero__slider-item::before {
	content: "";
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(270deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.64) 59.02%, rgba(0, 0, 0, 0.8) 100%);
}

.media-hero__slider-item-inner {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	gap: 1.6rem;
}

.media-hero__label {
	font-weight: 400;
	font-size: 1.4rem;
	line-height: 100%;
	letter-spacing: 0%;
	color: #fff;
}

@media (min-width: 991px) {
	.media-hero__label {
		font-size: 2rem;
	}
}

.media-hero__title {
	font-weight: 700;
	font-size: 2rem;
	line-height: 140%;
	letter-spacing: 0%;
	color: #fff;
	text-transform: uppercase;
}

@media (min-width: 991px) {
	.media-hero__title {
		font-size: 3rem;
		max-width: 51.2rem;
	}
}

.media-hero__blocks {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

@media (min-width: 991px) {
	.media-hero__blocks {
		position: relative;
		z-index: 2;
		flex-direction: row;
		justify-content: center;
		gap: 2rem;
		margin-top: -12rem;
	}
}

.media-hero__block {
	display: flex;
	flex-direction: row-reverse;
	align-items: center;
	justify-content: space-between;
	gap: 1.6rem;
	padding: 2rem 5rem;
	background-color: #F1F4FB;
	border-radius: 2rem;
	transition: all 0.3s ease-in-out;
}

@media (min-width: 991px) {
	.media-hero__block {
		flex: 0 1 18rem;
		max-width: 18rem;
		flex-direction: column;
		padding: 3.1rem 1rem 1rem;
	}
}

.media-hero__block:hover {
	box-shadow: 0px 5px 0px 0px #E4D3FF;
	transition: all 0.3s ease-in-out;
}

.media-hero__block.media-hero__block--shadow {
	box-shadow: 0px 5px 0px 0px #E4D3FF;
}

.media-hero__block-image {
	width: 4rem;
	height: 4rem;
}

@media (min-width: 991px) {
	.media-hero__block-image {
		width: 6.4rem;
		height: 6.4rem;
	}
}

.media-hero__block-title {
	font-weight: 700;
	font-size: 1.6rem;
	line-height: 150%;
	letter-spacing: -1.1%;
	text-transform: uppercase;
}

@media (min-width: 991px) {
	.media-hero__block-title {
		text-align: center;
		min-height: 5rem;
		display: flex;
		align-items: center;
		justify-content: center;
	}
}

/* media-hero end */