.irm-437739c8-wrapper {
	position: relative;
	min-height: 100vh;
	width: 100%;
	overflow: hidden;
	display: flex;
}

.irm-437739c8-bg-container {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
}

.irm-437739c8-bg-layer {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	opacity: 0;
	transition: opacity 0.6s ease-in-out;
}

.irm-437739c8-bg-layer.active {
	opacity: 1;
}

.irm-437739c8-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.4);
}

.irm-437739c8-content {
	position: relative;
	z-index: 1;
	width: 100%;
	padding: 50px;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}

.irm-437739c8-menu-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.irm-437739c8-menu-item {
	font-size: 40px;
	font-weight: 700;
	color: #ffffff;
	cursor: pointer;
	position: relative;
	display: inline-block;
	transition: color 0.3s ease;
	text-decoration: none;
}

.irm-437739c8-menu-item:focus {
	outline: none;
}

.irm-437739c8-menu-item::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 0;
	height: 3px;
	background-color: #ffffff;
	transition: width 0.3s ease-in-out;
}

.irm-437739c8-menu-item:hover::after {
	width: 100%;
}
