.hero-section {
    margin-inline: min(calc(var(--container-default-padding-left) * -1), calc((var(--container-max-width) - 100vw ) / 2));
}

.hero-section .hero-section__items {
    display: flex;
    min-height: 810px;
}

.hero-section .hero-section__items:not(.is-slider) .swiper-pagination {
    display: none;
}

.hero-section .hero-section__item {
	width: 100%;
	padding-block: 100px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero-section .hero-section__item .container {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
	height: 100%;
}

.hero-section .hero-section__item-inner {
	max-width: 975px;
	padding: 55px 40px;
	border-radius: 20px;
	background: linear-gradient(180deg, var(--blue-ray-30) 0%, #FFFFFF04 100%);
}

.hero-section .hero-section__title {
	margin: 0;
    color: var(--content-color, var(--white));
}

.hero-section .hero-section__description {
    color: var(--content-color, var(--white));
}

.hero-section .hero-section__description:not(:first-child) {
    margin-top: 30px;
}

.hero-section .hero-section__button:not(:first-child) {
    margin-top: 80px;
}

/* Slider */
.hero-section .hero-section__items.swiper .swiper-wrapper {
	height: initial;
}

@media (max-width: 1024px) {
	.hero-section .hero-section__items {
		min-height: 600px;
	}

	.hero-section .hero-section__item {
		padding-block: 80px;
	}

	.hero-section .hero-section__item-inner {
		padding: 40px 30px;
	}

    .hero-section .hero-section__description:not(:first-child) {
		margin-top: 24px;
	}

	.hero-section .hero-section__button:not(:first-child) {
		margin-top: 60px;
	}
}

@media (max-width: 767px) {
	.hero-section .hero-section__items {
		min-height: auto;
	}

	.hero-section .hero-section__item {
		padding-block: 60px;
	}

	.hero-section .hero-section__item-inner {
		padding: 30px 24px;
	}

    .hero-section .hero-section__description:not(:first-child) {
		margin-top: 18px;
	}

	.hero-section .hero-section__button:not(:first-child) {
		margin-top: 40px;
	}
}