.irm-wrapper-2931d5b8 {
position: relative;
width: 100%;
min-height: 100vh;
display: flex;
align-items: center;
justify-content: flex-start;
padding: 10%;
overflow: hidden;
background-color: #000;
}
.irm-backgrounds {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 1;
}
.irm-bg-item {
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, transform 4s ease-out;
transform: scale(1.05);
}
.irm-bg-item.active {
opacity: 1;
transform: scale(1);
}
.irm-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0) 100%);
z-index: 2;
}
.irm-menu-container {
position: relative;
z-index: 3;
display: flex;
flex-direction: column;
gap: 30px;
}
.irm-menu-item {
font-size: 4rem;
font-weight: 700;
color: #fff;
cursor: pointer;
position: relative;
display: inline-block;
width: fit-content;
transition: color 0.3s ease;
line-height: 1.2;
text-decoration: none; }
.irm-menu-item::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 0;
height: 4px;
background-color: #fff;
transition: width 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.irm-menu-item:hover::after,
.irm-menu-item.active::after {
width: 100%;
}
@media (max-width: 768px) {
.irm-menu-item {
font-size: 2.5rem;
}
}