.text {
    max-width: 800px;
    margin: 0 auto;
    display: block;
    text-align: center;
}

.mobile-nav-button {
    width: 35px;
    position: fixed;
    margin: 4rem;
    right: -15px;
    top: 0;
    z-index: 9999;
    cursor: pointer;
    width: 35px;
    height: 30px;
}

.mobile-nav-button .mobile-nav-button__line {
    width: 100%;
    height: 4px;
    background: #0e0e0e;
    position: relative;
    transition: 0.3s ease-in-out;
    border-radius: 2px;
}

.mobile-nav-button:hover .mobile-nav-button__line {
    /*    background: #e61d2b;*/
}

.mobile-nav-button .mobile-nav-button__line:nth-of-type(2) { margin: 0.5rem 0; }



.mobile-nav-button .mobile-nav-button__line--1 {
    transform: rotate(45deg);
    top: 13px;
    position: absolute;
    background: #fff;

}

.mobile-nav-button .mobile-nav-button__line--2 { display: none; }

.mobile-nav-button .mobile-nav-button__line--3 {
    transform: rotate(135deg);
    top: 13px;
    position: absolute;
    background: #fff;
}

.mobile-menu {
    display: block;
    max-width: 400px;
    width: 100%;
    right: -100%;
    height: 100vh;
    background: #000;
    position: fixed;
    z-index: 9998;
    transition: 0.6s ease;
    top: 0;
    opacity: 0;
}

.mobile-menu ul {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    padding: 0;
}

.mobile-menu ul li { list-style: none; }

.mobile-menu ul li a {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: block;
    text-align: center;
    text-decoration: none;
    color: #fff;
    font-size: 3rem;
    overflow: hidden;
    position: relative;
}

.mobile-menu ul li a:after {
    content: '';
    background-color: #B71C1C;
    width: 100%;
    height: 100%;
    position: absolute;
    right: -100%;
    top: 0;
    z-index: -1;
    transition: 0.4s ease;
}

.mobile-menu ul li a:hover { color: #fff; }

.mobile-menu ul li a:hover:after { right: 0; }

.mobile-menu img {
    position: absolute;
    width: 150px;
    display: block;
    left: 50%;
    top: 3rem;
    transform: translatex(-50%);
    padding: 0;
    text-align: center;
}

.mobile-menu--open {
    right: 0;
    opacity: 1;
}
.mobile-menu--open * {
    line-height: 65px;
}
mobile-menu--open:before {
    width: 100%;
    height: 100%;
    background-color: green;

}