.menu-header .menu-hamburguer {
    display: none;
}
.menu-mobile {
    display: none;
}
.menu-header {
    width: 100%;
    padding: 2.5rem 8.5rem;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    background-color: #fff;
    align-items: center;
    position: relative;
}
.menu-list {
    display: flex;
    list-style-type: none;
}
.menu-list .menu-link {
    text-decoration: none;
    padding: 1rem 1.5rem;
    margin-right: 3.5rem;
    color: #333;
    position: relative;
}
.menu-list .menu-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    width: 0%;
    height: 0.2rem;
    border-radius: 1rem;
    background: linear-gradient(to right, #c800d2, #00c8ff);
    left: 0;
    opacity: 0;
    transition: 0.5s;
}
.menu-list .menu-link:hover:after {
    opacity: 1;
    width: 100%;
}
.menu-list .menu-link[href="#"]::after {
    opacity: 1;
    width: 100%;
}
.menu-link .menu-item {
    font-size: 1.4rem;
    text-align: center;
}
.menu-list .menu-link:last-child {
    margin-right: 0;
}


@media screen and (max-width: 768px) {
    .menu-list {
        display: none;
    }
    .menu-header {
        background-color: #fff;
        border-bottom: 0.1rem solid #111111;
        position: fixed;
        z-index: 10;
        box-sizing: border-box;
        top: 0;
        overflow: hidden;
    }
    .page-name {
        position: fixed;
        margin: 2rem 0;
        background-color: #fff;
    }
    .menu-header .menu-hamburguer {
        position: fixed;
        font-size: 1.6rem;
        padding: 0 0.5rem;
        right: 0.5rem;
        background-color: #fff;
        display: block;
    }
    .menu-mobile {
        display: block;
        position: fixed;
        width: 100%;
        background-color: #ffffff;
        list-style: none;
        border-bottom: 0.1rem solid hsla(0, 0%, 0%, 0.114);
        margin: 0;
        top: -20%;
        left: 0;
        transition: 0.5s;
        z-index: -2;
    }
    .menu-link {
        padding: 1rem 0;
        text-decoration: none;
        background-color: #fff;
        color: #111111;
        position: relative;
    }
    .menu-item {
        padding: 1rem 0;
        position: relative;
        background-color: #fff;
    }
    .menu-link[href="#"] .menu-item::after {
        content: "";
        position: absolute;
        height: 0.2rem;
        width: 40%;
        background-color: #c800d2;
        left: 50%;
        transform: translateX(-50%);
        bottom: 0;
        border-radius: 10rem;
    }
}

@media screen and (max-width: 414px) {
    .menu-header {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}