section[data-module="home-banner"] {
	position: relative;
	width: 100%;
	overflow: hidden;
	font-family: "Assistant", sans-serif;
}

section[data-module="home-banner"] .home-banner-wrap {
	position: relative;
	width: 100%;
	min-height: 750px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

section[data-module="home-banner"] .home-banner-bg {
	position: absolute;
	inset: 0;
	background-image: url("/wp-content/uploads/2024/02/banner-dummy.jpg");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	z-index: 1;
}

section[data-module="home-banner"] .home-banner-overlay {
	position: absolute;
	inset: 0;
	z-index: 2;
	background:
		linear-gradient(
			90deg,
			rgba(2, 47, 108, 0.9) 0%,
			rgba(2, 47, 108, 0.72) 35%,
			rgba(2, 47, 108, 0.58) 60%,
			rgba(2, 47, 108, 0.82) 100%
		),
		linear-gradient(
			180deg,
			rgba(2, 47, 108, 0.25) 0%,
			rgba(2, 47, 108, 0.5) 100%
		);
}

section[data-module="home-banner"] .home-banner-content {
	position: relative;
	z-index: 3;
	width: 100%;
	max-width: 1100px;
	padding: 120px 30px 90px;
	text-align: center;
	color: #ffffff;
}

section[data-module="home-banner"] .home-banner-subtitle {
	font-size: 25px;
	font-weight: 400;
	line-height: 1.3;
	letter-spacing: 0.5px;
	margin-bottom: 18px;
	color: #ffffff;
}

section[data-module="home-banner"] .home-banner-title {
	font-size: 70px;
	font-weight: 700;
	line-height: 1.15;
	margin: 0 0 38px;
	color: #ffffff;
}

section[data-module="home-banner"] .home-banner-btn {
	position: relative;
	display: inline-flex;
	align-items: stretch;
	justify-content: center;
	min-width: 326px;
	height: 60px;
	text-decoration: none;
	overflow: hidden;
	color: #ffffff;
	font-size: 20px;
	font-weight: 400;
	line-height: 1;
	background: rgba(217, 217, 217, 0.55);
	transition: transform 0.35s ease;
}

section[data-module="home-banner"] .home-banner-btn::before {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: #f1b209;
	z-index: 1;
	transition: left 0.45s ease;
}

section[data-module="home-banner"] .home-banner-btn:hover::before {
	left: 0;
}

section[data-module="home-banner"] .home-banner-btn:hover {
	transform: translateY(-2px);
}

section[data-module="home-banner"] .home-banner-btn-text {
	position: relative;
	z-index: 2;
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 35px;
}

section[data-module="home-banner"] .home-banner-btn-icon {
	position: relative;
	z-index: 2;
	width: 92px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #f1b209;
	overflow: hidden;
}

section[data-module="home-banner"] .home-banner-btn-icon::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(
		120deg,
		rgba(255, 255, 255, 0) 0%,
		rgba(255, 255, 255, 0.35) 45%,
		rgba(255, 255, 255, 0) 80%
	);
	transform: translateX(-120%);
	transition: transform 0.6s ease;
}

section[data-module="home-banner"] .home-banner-btn:hover .home-banner-btn-icon::before {
	transform: translateX(120%);
}

section[data-module="home-banner"] .home-banner-btn-icon img {
	position: relative;
	z-index: 2;
	width: 18px;
	height: auto;
	display: block;
	transition: transform 0.35s ease;
}

section[data-module="home-banner"] .home-banner-btn:hover .home-banner-btn-icon img {
	transform: translateX(5px);
}

@media (max-width: 1199px) {
	section[data-module="home-banner"] .home-banner-wrap {
		min-height: 680px;
	}

	section[data-module="home-banner"] .home-banner-title {
		font-size: 58px;
	}
}

@media (max-width: 991px) {
	section[data-module="home-banner"] .home-banner-wrap {
		min-height: 620px;
	}

	section[data-module="home-banner"] .home-banner-content {
		padding: 110px 25px 80px;
	}

	section[data-module="home-banner"] .home-banner-subtitle {
		font-size: 22px;
	}

	section[data-module="home-banner"] .home-banner-title {
		font-size: 48px;
	}
}

@media (max-width: 767px) {
	section[data-module="home-banner"] .home-banner-wrap {
		min-height: 560px;
	}

	section[data-module="home-banner"] .home-banner-content {
		padding: 90px 22px 70px;
	}

	section[data-module="home-banner"] .home-banner-subtitle {
		font-size: 18px;
		margin-bottom: 14px;
	}

	section[data-module="home-banner"] .home-banner-title {
		font-size: 38px;
		line-height: 1.18;
		margin-bottom: 30px;
	}

	section[data-module="home-banner"] .home-banner-btn {
		min-width: 280px;
		height: 56px;
		font-size: 18px;
	}

	section[data-module="home-banner"] .home-banner-btn-icon {
		width: 76px;
		height: 56px;
	}
}

@media (max-width: 480px) {
	section[data-module="home-banner"] .home-banner-wrap {
		min-height: 520px;
	}

	section[data-module="home-banner"] .home-banner-title {
		font-size: 32px;
	}

	section[data-module="home-banner"] .home-banner-btn {
		min-width: 250px;
		height: 52px;
		font-size: 16px;
	}

	section[data-module="home-banner"] .home-banner-btn-text {
		padding: 0 24px;
	}

	section[data-module="home-banner"] .home-banner-btn-icon {
		width: 68px;
		height: 52px;
	}
}