.irm-container-af288429 {
	position: relative;
	width: 100%;
	height: 100vh;
	min-height: 500px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	transition: background-image 0.5s ease-in-out;
}

.irm-overlay-af288429 {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.4);
	z-index: 1;
}

.irm-menu-wrapper-af288429 {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	padding-left: 10%;
	z-index: 2;
}

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

.irm-menu-item-af288429 {
	cursor: pointer;
}

.irm-menu-link-af288429 {
	color: #fff;
	font-size: 4rem;
	font-weight: 700;
	text-transform: uppercase;
	position: relative;
	transition: color 0.3s ease;
	display: inline-block;
}

.irm-menu-link-af288429::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 3px;
	background-color: #fff;
	transition: width 0.3s ease;
}

.irm-menu-item-af288429:hover .irm-menu-link-af288429::after {
	width: 100%;
}