/* Image Reveal Menu - 19177996 */

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

.irm-19177996-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
    will-change: opacity;
}

.irm-19177996-bg.irm-active {
    opacity: 1;
}

.irm-19177996-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.irm-19177996-menu {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.irm-19177996-item {
    display: inline-block;
    position: relative;
    font-size: 4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    color: #ffffff;
    cursor: pointer;
    transition: opacity 0.3s ease, color 0.3s ease;
    line-height: 1.2;
}

.irm-19177996-item::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 3px;
    background-color: #ffffff;
    transition: width 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.irm-19177996-item:hover::after {
    width: 100%;
}

/* Dim siblings on hover */
.irm-19177996-menu:hover .irm-19177996-item {
    opacity: 0.4;
}

.irm-19177996-menu:hover .irm-19177996-item:hover {
    opacity: 1;
}

/* Responsive */
@media (max-width: 767px) {
    .irm-19177996-item {
        font-size: 2rem;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .irm-19177996-item {
        font-size: 3rem;
    }
}
