body{
    height: 100vh;
}

.hero{
    position: fixed;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 10%;
    z-index: 3;
    background: #d63b3b;
    box-shadow: 2px 2px 10px #330002;
}

.level{
    max-height: 100%;
}

.level-left{
    height: 100%;
    width: 20%;
    padding-left: 20px;
    justify-content: center;
}

.brand-logo, .brand-logo > img{
    height: 100%;
    width: 90%;
}

.menu{
    position: fixed;
    top: 10%;
    left: 0px;
    display: flex;
    flex-direction: column;
    border-left: 1px solid rgba(126, 122, 122, .5);
    padding: 10px;
    width: 15%;
    height: 87%;
    overflow: auto;
    z-index: 2;
    background-color: #d63b3b;
    box-shadow: 2px 2px 5px #982828;
}

.show-menu{
    position: fixed;
    top: 10%;
    left: 14px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 3em;
    height: 2.5em;
    padding: 8px;
    color: white;
    opacity: .8;
    cursor: pointer;
    z-index: 2;
    border-radius: 0 0 5px 5px;
    background: linear-gradient(145deg, #ee6969, #c85858);
    box-shadow: 
        -2px -2px 5px #8E8E8E,
        2px 2px 10px #3C3636;
}

.header-menu{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hide-menu{
    display: flex;
    flex-direction: column;
    justify-content: center;
    cursor: pointer;
    box-sizing: border-box;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(145deg, #e53f3f, #c13535);
    box-shadow:  
        5px 5px 10px #832424, 
        -5px -5px 10px #ff5252;
}

.hide-menu:hover{
    background: linear-gradient(145deg, #c13535, #e53f3f);
    box-shadow:  
        5px 5px 10px #832424, 
        -5px -5px 10px #ff5252;
}

.hide-menu span{
    display: flex;
    justify-content: center;
}

.menu-label{
    cursor: pointer;
    color: white;
    box-sizing: border-box;
    padding: 5px 0 5px 5px;
    border-radius: 3px;
    background: linear-gradient(145deg, #e53f3f, #c13535);
    box-shadow:
        5px 5px 13px #922828, 
        -5px -5px 13px #ff4e4e;
}

.menu-label:hover{
    color: white;
    text-shadow: 1px 1px 1px rgba(255, 255, 255, .8);
    transition: all .3s ease-in-out;
}

.menu-list{
    display: none;
    border-radius: 5px;
    background: #732020;
    box-shadow: 
        inset 16px 16px 32px #541717, 
        inset -16px -16px 32px #922929;
}

.menu-list a{
    transition: all .2s ease-in-out;
}

.menu-list a:hover{
    background: hsl(0,56.5%,40%);
    transform: scale(1.1);
    transition: all .2s ease-in-out;
}

.is-active{
    background-color: #a82e2e !important;
    background: linear-gradient(145deg, #b43131, #972929);
}

a{
    font-size: 12px;
    text-transform: uppercase;
}

.content{
    box-sizing: border-box;
    position: relative;
    top: 10%;
    width: 100%;
    height: 87%;
    padding: 0;
}

iframe{
    width: 100%;
    height: 100%;
}

footer{
    position: fixed;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 3%;
    background: #d63b3b;

}

@media screen and (max-width: 768px) {
    .hero{
        width: 100%;
        height: 8%;
    }

    .show-menu{
        top: 8%;
    }

    .navbar{
        display: flex;
        justify-content: center;
    }

    .navbar-brand{
        width: 50%;
        height: 100%;
        margin: auto;
    }

    .menu{
        position: absolute;
        top: 8%;
        bottom: 0;
        right: 0;
        left: 0;
        font-size: 14px;
        width: 100%;
        height: 100%;
    }

    .content{
        top: 8%;
        width: 100%;
        height: 86%;
        padding: 0;
        overflow: auto;
    }

    footer{
        position: fixed;
        height: 6%;
    }
}

@media screen and (min-width: 769px) and (max-width: 1024px){
    .menu{
        width: 20%;
    }
}