#menu, #fmenu, #container a {
    margin: 0;
    font-family: Centuria;
    padding: 0;
    font-weight: 900;
    transition: all 250ms ease-in-out;
    -moz-transition: all 250ms ease-in-out;
    -o-transition: all 250ms ease-in-out;
    -webkit-transition: all 250ms ease-in-out;
}

#container {
    position: fixed;
    color: white;
    background-color: #d7162f;
    width: 0%;
    height: 100vh;
    top: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    z-index: 99;
    overflow: hidden;
    font-family: Baqacents;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.875;
    letter-spacing: .03em;
}

aside {
    width: 100px;
    height: 10vh;
    position: fixed;
    top: 0;
    right: 0;
    display: flex;
    background-color: #5c5550;
    color: white;
    z-index: 9;
    justify-content: center;
    align-items: center;
}

#menu, #fmenu {
    width: 30px;
    height: 18px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 5;
    margin-top: -4px;
}

.m10, .m20, .m30{
    width: 100%;
    height: 2px;
    margin-top: 4px;
    background-color: #ffffff;
    border-radius: 20px;
    position: relative;
    z-index: 9999999;
    opacity: 1;
}

#bume{
    display: block;
}
#carpi {
    display: none;
}
.xmenu #carpi {
    display: block;
    font-size: 20px;
}
.xmenu #bume {
    display: none;
}
.xmenu .m20 {
    opacity: 0;
}

.xmenu .m30 {
    transform: rotate(-45deg) translate(4px, -4px);
}

.menu-title {
    margin-top: -4px;
    width: 50%;
    letter-spacing: 2px;
}

.menu-title a {
    font-family: Centuria;
    font-size: 12px;
}

.menu-slider {
    width: 70%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.top-menu {
    width: 90%;
    margin-top: 50px;
    margin-left: auto;
    margin-right: auto;
}

.top-menu img {
    width: 180px;
}

.menu-content {
    width: 90%;
    height: 80vh;
    margin-left: auto;
    margin-right: auto;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: Baqacents;
    font-weight: 100;
}

.left-menu {
    width: 50%;
    font-size: 16pt;
}

.option {
    width: max-content;
    padding-top: 15px;
    transition: all 300ms ease-in;
    cursor: pointer;
}

.option:hover {
    opacity: 0.5;
}

.group {
    font-family: Centuria;
    font-weight: 900;
    width: max-content;
    height: max-content;
}

.group:hover {
    transition: all 250ms ease-in-out;
    -webkit-transition: all 250ms ease-in-out;
    -o-transition: all 250ms ease-in-out;
    -moz-transition: all 250ms ease-in-out;
    padding-left: 20px;
    opacity: 1;
}

.group:hover .other-options {
    visibility: visible;
}

.option a {
    color: white;
    text-decoration: none;
}

.menu-arrow {
    width: 100%;
    top: 0;
    left: 0;
}

.option-line {
    margin-right: 20px;
}

.option-line svg {
    width: 50px;
    height: 10px;
}

.other-options {
    width: max-content;
    height: max-content;
    font-family: Baqacents;
    font-size: 17px;
    font-weight: bold;
    position: absolute;
    top: 41%;
    left: 17%;
    display: flex;
    align-items: center;
    visibility: hidden;
}

.other-options ul {
    list-style: none;
}

.other-options li {
    padding: 3px;
    text-transform: capitalize;
    transition: all 250ms ease-in-out;
    -moz-transition: all 250ms ease-in-out;
    -o-transition: all 250ms ease-in-out;
    -webkit-transition: all 250ms ease-in-out;
}

.other-options li:hover {
    transition: all 250ms ease-in-out;
    -webkit-transition: all 250ms ease-in-out;
    -o-transition: all 250ms ease-in-out;
    -moz-transition: all 250ms ease-in-out;
    transform: scale(0.9);
    -ms-transform: scale(0.9);
    -o-transform: scale(0.9);
    -webkit-transform: scale(0.9);
    -moz-transform: scale(0.9);
}

.right-menu {
    width: 50%;
    font-size: 10pt;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.bottom-menu {
    width: 90%;
    line-height: 10vh;
    margin-left: auto;
    margin-right: auto;
}

#fixed-menu {
    width: 100%;
    height: 0vh;
    position: fixed;
    top: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    background-color: #5c5550;
    color: white;
    z-index: 11;
    visibility: hidden;
}

.left-aside {
    width: max-content;
    height: 12vh;
    margin-left: 6.5%;
    display: flex;
    align-items: center;
}

.left-aside svg {
    width: 180px;
}

.right-aside {
    width: 100px;
    height: 10vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1%;
}

#fixed-menu .menu-title {
    width: 50%;
    text-align: center;
    transition: none;
    margin: 0;
}

#fixed-menu .menu-title p {
    font-family: Centuria;
    font-size: 12px;
    transform: none;
}


@media screen and (max-width: 800px), (orientation: portrait) {
    #container {
        justify-content: space-between;
        height: 100vh;
    }

    .menu-content {
        flex-direction: column;
        align-items: baseline;
        height: auto;
    }

    .option-line {
        display: none;
    }

    .other-options {
        animation-play-state: paused;
        visibility: visible;
        display: none;
        position: static;
    }

    .group:hover .other-options {
        animation: none;
        display: block;
    }

    .right-menu {
        display: none;
    }

    .bottom-menu {
        line-height: 2;
    }
}