body {
    overflow-x: hidden;
}

#menu-mobile {
    align-items: center;
    background: #fff;
    box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.2);
    display: flex;
    padding: 20px 50px;
    position: fixed;
    width: 100vw;
}

#menu-mobile.transparent {
    background: transparent;
    box-shadow: 0px 4px 14px transparent;
}

#menu-mobile .col-logo img { height: 60px; }

.menuToggle {
    margin-left: auto;
    margin-top: 0;
    position: relative;
    user-select: none;
    z-index: 10;
    -webkit-user-select: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
}

.menuToggle .menu-checkbox {
    cursor: pointer;
    height: 40px;
    left: 0px;
    opacity: 0;
    position: absolute;
    top: 0px;
    width: 40px;
    z-index: 2;
    -webkit-touch-callout: none;
}

.menuToggle .span-menu {
    background: #6369D1;
    display: block;
    height: 2px;
    margin-bottom: 7px;
    position: relative;
    transform-origin: 4px 0px;
    transition: 
        transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0), 
        background 0.5s cubic-bezier(0.77,0.2,0.05,1.0), 
        opacity 0.55s ease;
    width: 30px;
    z-index: 1;
}

.menuToggle .span-menu:first-child { transform-origin: 0% 0%; }

.menuToggle .span-menu:nth-last-child(2) { transform-origin: 0% 100%; margin-bottom: 0}

.menu-cel {
    background: #6369D1;
    box-sizing: border-box;
    display: none;
    flex-direction: column;
    height: 100vh;
    list-style: none;
    padding: 80px;
    overflow-y: scroll;
    position: fixed;
    right: 0;
    top: 0;
    transform-origin: 0% 0%;
    transform: translate(100%, 0);
    transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
    width: 100%;
    -webkit-font-smoothing: antialiased;
}

.menu-cel .links {
    padding-bottom: 50px;
}

.menu-cel .links .open-link:hover { text-decoration: none; }

.menu-cel .links .open-link li {
    color: #fff;
    font-size: 18px;
    line-height: 16px;
    margin-bottom: 30px;
}

.menu-cel .links .open-link li.active {
    font-weight: bold;
}

.menu-cel .footer{
    margin-top: auto
}

.menu-cel .footer .social-medias {
    margin-bottom: 40px;
}

.menu-cel .footer .social-medias a {
    display: inline-block;
    margin-right: 20px;
}

.menu-cel .footer .social-medias a:hover { text-decoration: none; }

.menu-cel .footer .social-medias a .iconify {
    font-size: 20px;
    color: #fff;
}

