body{
    display: flex;
    flex-direction: column;
    height: 100vh;

    overflow: hidden;
}
header {
    padding: 0 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    height: 90px;
}
header img{ width: 200px; }
header > div,
header > div > div{ height: 100%; }
header .left,
header .right{
    display: flex;
    flex-direction: column;
    justify-content: center;

    height: 100%;
}
header .right{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
header h3,
header p{ margin: 0; }
header h3{
    color: var(--primary);
    font-weight: 700;
}
header p{ color: #5f6368; }
#content{
    height: calc(100% - 90px);
    display: flex;
}

#content > nav{
    /* background-color: rgba(0, 0, 0, 0.1); */
    padding: 15px 0;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    width: 22%;
}
#content > nav ul{
    list-style: none;
    padding: 0;
    margin: 0;
}
#content > nav ul li a{
    padding: 15px 30px;
    display: block;
    text-decoration: none;
    color: #5f6368;

    font-family: "Poppins";
    font-weight: 300;
    font-size: 0.9em;
}
#content > nav ul li:hover a,
#content > nav ul li.active a{ color: var(--primary); }
#content > nav ul li.active a{ font-weight: 500; }

#content main{
    width: calc(100% - 22%);
    padding: 30px 0;

    overflow: auto;
}

.section{
    height: auto;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 30px;
}
#content main .section:last-child{ border-bottom: none; }
.section .inner{ width: 75%; }
.section .title{
    font-weight: 500;
    margin-bottom: 15px;
}
.section h3:not(.title){
    font-weight: 400;
    font-size: 1.2em;
    margin: 25px 0px 15px;
}

.section p,
.section ul,
.section ul li{
    font-weight: 300;
    margin-bottom: 10px;
}
.section p b{ font-weight: 600; }
.section#intro h3 { margin-bottom: 30px; }


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

    text-decoration: none;
    font-size: 1.3em;
    color: #5f6368;
}
header .formobile h3{
    text-align: right;
    font-size: 1.0em;
}
header .formobile h3 + p{ font-size: 0.8em; }

@media screen and (max-width: 770px){
    header{
        height: 70px;
        width: 100%;
        padding: 15px;
        position: fixed;

        background-color: #fff;
    }
    .forweb{ display: none; }

    #content{ height: 100%; padding-top: 70px; }
    #content nav{
        position: fixed;
        width: 70%;
        z-index: 10;

        background-color: #fff;
        height: 100%;

        transform: translateX(-100%);
        transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .sided #content nav{ transform: translateX(0%); }
    #content main{ width: 100%; height: 100%; padding: 0 0 80px; margin-top: 70px; }
    .section .inner{ width: 100%; }

}

@media screen and (min-width: 770px){
    header .formobile{ display: none; }
}
