.gimi-hs {
	position: relative;
	width: 100vw;
	max-width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
}

.gimi-hs--behind-menu {
	margin-top: calc(var(--gimi-hs-menu-height, 100px) * -1);
	position: relative;
	z-index: var(--gimi-hs-z-index, 1);
}

.gimi-hs__swiper {
	width: 100%;
	height: 100%;
}

.gimi-hs__slide {
	position: relative;
	width: 100%;
	height: 80vh;
	overflow: hidden;
	display: flex;
	align-items: center;
}

.gimi-hs__image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100% !important;
	height: 100% !important;
	max-width: none !important;
	object-fit: cover !important;
	object-position: center center !important;
}

.gimi-hs__overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.45);
}

.gimi-hs__content {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 900px;
	padding: 0 40px;
	color: #fff;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.gimi-hs__content--left {
	margin-right: auto;
	text-align: left;
	align-items: flex-start;
}

.gimi-hs__content--center {
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	align-items: center;
}

.gimi-hs__content--right {
	margin-left: auto;
	text-align: right;
	align-items: flex-end;
}

.gimi-hs__title {
	margin: 0;
	font-size: 48px;
	font-weight: 700;
	line-height: 1.2;
}

.gimi-hs__text {
	margin: 0;
	font-size: 18px;
	line-height: 1.6;
	max-width: 600px;
}

.gimi-hs__button {
	display: inline-block;
	background-color: #e63946;
	color: #fff;
	text-decoration: none;
	padding: 14px 32px;
	border-radius: 4px;
	font-weight: 600;
	transition: background-color 0.2s ease, color 0.2s ease;
	cursor: pointer;
}

.gimi-hs__button:hover {
	background-color: #c1121f;
	color: #fff;
}

.gimi-hs .swiper-button-next,
.gimi-hs .swiper-button-prev {
	color: #fff;
	z-index: 3;
}

.gimi-hs .swiper-pagination-bullet {
	background: #fff;
	opacity: 0.6;
}

.gimi-hs .swiper-pagination-bullet-active {
	opacity: 1;
}

@media (max-width: 767px) {
	.gimi-hs__title {
		font-size: 30px;
	}

	.gimi-hs__text {
		font-size: 15px;
	}

	.gimi-hs__content {
		padding: 0 20px;
	}
}
