.irm-wrapper-b81a35ff {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    width: 100%;
}

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

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

.irm-content-b81a35ff {
    position: relative;
    z-index: 2;
    padding: 50px;
    width: 100%;
}

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

.irm-item-b81a35ff {
    cursor: pointer;
    position: relative;
    display: inline-block;
    width: max-content;
    color: #fff;
    font-size: 3rem;
    font-weight: bold;
    transition: color 0.3s ease;
}

.irm-item-b81a35ff::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: currentColor;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.irm-item-b81a35ff:hover::after {
    transform: scaleX(1);
}