.Mobile_menu {
    z-index: 10;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    font-family: "Rubik";
    flex-direction: column;
    background-color: white;
}

.Mobile_content {
    text-align: center;
    display: none;
    height: 100vh;
    width: 100vw;
    flex-direction: column;
}

#Mobile_checkbox:checked+.Mobile_content {
    display: flex;
}

.Mobile_menu_link {
    padding: 4vh;
    color: black;
    text-decoration: none;
    font-size: 25px;
}

.Mobile_menu_button {
    padding: 4vh;
}

.Mobile_navbar {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100vw;
    background-color: white;
}

.Mobile_navbar img {
    margin: 0.5em 0 0.2em 5vw;
    height: 8vw;
}

.Mobile_checkbox {
    background: transparent none;
    border: 0;
    font-size: 7vw;
    align-self: center;
    visibility: hidden;
}

.Mobile_navbar b {
    background: transparent none;
    border: 0;
    font-size: 7vw;
    align-self: center;
    margin-right: 0.5em;
}

.Header_mobile {
    padding-top: 10vw;
}

@media (min-width:600px) {
    .Mobile_navbar img {
        margin: 0.5em 0 0.2em 5vw;
        height: 4vw;
    }
    .Burger_bold {
        background: transparent none;
        border: 0;
        font-size: 4vw;
        align-self: center;
        margin-right: 0.5em;
    }
}

@media (min-width:900px) {
    .Header_mobile {
        padding-top: 3vw;
    }
    .Mobile_menu {
        display: none;
    }
}


/* next */

.Responsive_menu {
    z-index: 10;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    font-family: Rubik;
    flex-direction: row;
    background-color: white;
}

.Responsive_content {
    display: flex;
    width: 100vw;
    flex-direction: row;
    flex-direction: row-reverse;
}

.Responsive_menu_link {
    font-size: 17px;
}

@media (max-width:900px) {
    .Responsive_menu {
        display: none;
    }
}