/* ADD CSS MRW  */

/* Reset CSS complet */
body,
html {
    height: 100%;
    width: 100%;
    overflow-x: hidden;
}

ul li,
ol li {
    padding-bottom: initial;
}

input[type="checkbox" i] {
    visibility: hidden;
}

.logo img {
    width: 75px;
}

.mrw_app .logo {
    position: fixed;
    top: 26px;
    left: 40px;
    z-index: 6;
    /* font-size: 20px;
    font-weight: 900;
    font-family: sans-serif;
    text-transform: uppercase; */
}

.mrw_app .logo>span {
    /* text-transform: none; */
    opacity: 0.5;
    /* font-weight: 300;
    font-size: 12px; */
}

.mrw_app input+label {
    position: fixed;
    top: 40px;
    right: 40px;
    height: 20px;
    width: 30px;
    z-index: 5;
}

.mrw_app input+label span {
    position: absolute;
    width: 100%;
    height: 2px;
    top: 50%;
    margin-top: -1px;
    left: 0;
    display: block;
    background: #ffffff;
    transition: 0.5s;
}

.mrw_app input+label span:first-child {
    top: 3px;
}

.mrw_app input+label span:last-child {
    top: 16px;
}

.mrw_app label:hover {
    cursor: pointer;
}

.mrw_app input:checked+label span {
    opacity: 0;
    top: 50%;
}

.mrw_app input:checked+label span:first-child {
    opacity: 1;
    transform: rotate(405deg);
}

.mrw_app input:checked+label span:last-child {
    opacity: 1;
    transform: rotate(-405deg);
}

.mrw_app input~nav {
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgb(0, 0, 0);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 3;
    transition: 0.5s;
    transition-delay: 0.5s;
    overflow: hidden;
}

.mrw_app input~nav>ul {
    display: flex;
    flex-direction: column;
    list-style-type: none;
    text-align: center;
    position: absolute;
    padding: 0;

}

.mrw_app input~nav>ul>li {
    list-style-type: none;
    opacity: 0;
    transition: 0.5s;
    transition-delay: 0s;
}

.mrw_app input~nav>ul>li>a {
    list-style-type: none;
    text-decoration: none;
    color: #ffffff;
    font-weight: 700;
    font-family: sans-serif;
    display: block;
}

.mrw_app input:checked~nav {
    height: 100%;
    transition-delay: 0s;
}

.mrw_app input:checked~nav>ul>li {
    opacity: 1;
    transition-delay: 0.5s;
}

.mrw_background {
    /* position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('img/landingPageNoctue_mrw_full_h.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1; */


    margin: 0;
    -webkit-perspective: 1000;
    background: #d2d2d2 url(img/landingPageNoctue_mrw_full_h.png) no-repeat center center;
    background-size: cover;
}

.mrw_app {
    position: relative;
    height: 100%;
    z-index: 1;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-between;
    /* background-color: #0054e8; */
    /* background-color: #8090aa;
    filter: opacity(0.5); */
}

.mrw_animation {
    display: flex;
    position: absolute;
    top: 80px;
    flex-direction: column;
    gap: 0px !important;
    /* justify-content: flex-end; */
}

@media screen and (max-width: 450px) {
    .mrw_animation {
        display: none;
    }
}