body {
    width: 100%;
    margin: auto;
    font-family: 'Quicksand', sans-serif;
    padding-top: 100vh;
}

body::-webkit-scrollbar {
    width: 0.45rem;
}

body::-webkit-scrollbar-track {
    background: #fff;
    border-radius: 10px;
    box-shadow: inset 0 0 8px rgba(2,102,198,0.4);
}

body::-webkit-scrollbar-thumb {
    background: #0266c6;
    border-radius: 10px;
}

.fixed-header {
    width: 75vw;
    position: fixed;
    top: 0px;
    left: 9vw;
    height: 100%;
    margin: 0px;
    display: flex;
    flex-direction: row;
    z-index: -1;
}

.fixed-header > .image-header {
    flex-grow: 3;
    padding-left: 15%;
}

.fixed-header > .image-header > img {
    margin-top: 10vh;
    width: 64vh;
    height: 91vh;
}

.fixed-header > .content-header {
    flex-grow: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
}

.fixed-header > .content-header > .logo-header > img {
    width: 95px;
    height: 95px;
    margin: 0vw 2vw 0vw 0vw;
}

.fixed-header > .content-header > h1 {
    margin: 0.1vw 0vw 0.1vw 0vw;
    font-size: 4.4em;
    font-family: 'Advent Pro', sans-serif;
    font-weight: 100;
}

.fixed-header > .content-header > h3 {
    font-weight: 550;
    font-size: 1.45em;
    font-family: 'Handlee', cursive;
    margin: 0.1vw 0vw 0.1vw 0vw;
}

@media only screen and (max-width: 480px) {
    .fixed-header {
        flex-direction: column-reverse;
        justify-content: flex-start;
        width: 100%;
        left: 0px;
    }

    .fixed-header > .image-header {
        margin: auto;
        height: 65vh;
        padding-left: 0px;
    }

    .fixed-header > .image-header > img {
        width: 47vh;
        height: 65vh;
        margin-top: 6.5%;
    }

    .fixed-header > .content-header {
        margin: auto;
        margin-top: 50px;
        width: 80vw;
        justify-content: flex-start;
        height: 25vh;
    }

    .fixed-header > .content-header > .logo-header > img {
        width: 85px;
        height: 85px;
    }

    .fixed-header > .content-header > h1 {
        font-size: 3em;
    }

    .fixed-header > .content-header > h3 {
        font-size: 1.25em;
    }
}

@media only screen and (min-width: 481px) and (max-width: 1200px) {
    .fixed-header {
        flex-direction: column-reverse;
        margin: auto;
    }

    .fixed-header > .image-header > img {
        width: 49vh;
        height: 68vh;
        margin: auto;
        margin-bottom: -33%;
    }

    .fixed-header > .content-header {
        margin: auto;
        margin-top: 10px;
    }

    .fixed-header > .image-header {
        margin: auto;
    }
}

.menu {
    background-color: #f5f5f5;
    width: 55px;
    position: fixed;
    top: 0px;
    left: 0px;
    height: 100%;
    margin: 0px;
    box-shadow: 1px 0px 9px #d9d9d9;
}

.menu > .menu-list {
    padding: 0px;
    margin: 0px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    align-content: center;
    list-style-type: none;
}

.menu > .menu-list .menu-logo {
    width: 55px;
    height: 55px;
    margin: 0vmin auto 1vmin auto;
    box-sizing: border-box;
    background-color: #0266c6;
}

.menu > .menu-list .menu-logo > img {
    width: 40px;
    height: 40px;
    display: block;
    margin: auto;
    margin-top: 7px;
    filter: invert(100%) sepia(0%) saturate(7500%) hue-rotate(62deg) brightness(105%) contrast(110%);
}


.menu > .menu-list .menu-item {
    width: 100%;
    margin: 0px;
    padding-top: 5px;
    padding-bottom: 9px;
    padding-right: 18px;
    writing-mode: vertical-rl;
    text-orientation: upright;
    box-sizing: border-box;
    letter-spacing: -0.15em;
    border: hidden;
    border-bottom-color: #e8e8e8;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    transition: all .5s;
}

.menu > .menu-list .menu-item:nth-child(2) {
    border-top-color: #e8e8e8;
    border-top-width: 1px;
    border-top-style: solid;
}

.menu > .menu-list .menu-item:hover {
    background-color: #e5e5e5;
    cursor: pointer;
    box-shadow: 3px 3px 15px #c9c9c9;
}

.menu-brand > ul {
    list-style-type: none;
    padding: 0px;
}

.menu-list .menu-brand {
    position: absolute;
    bottom: 10px;
}

.menu-list .menu-brand .item-brand {
    margin: 0px auto 5px auto;
    padding: 0px 5px 0px 5px;
    cursor: pointer;
    width: 26px;
    height: 26px;
    transition: all .5s;
}

.menu-list .menu-brand .item-brand:hover {
    padding-left: 46px;
    width: 39px;
    height: 39px;
    filter: invert(23%) sepia(82%) saturate(2461%) hue-rotate(196deg) brightness(96%) contrast(98%);
}

@media only screen and (max-width: 480px) {
    .menu {
        background-color: transparent;
        box-shadow: 0px 0px 0px transparent;
    }
    
    .menu > .menu-list .menu-item {
        display: none;
    }

    .menu > .menu-list .menu-logo:hover ~ .menu-item {
        display: block;
        writing-mode: horizontal-tb;
        text-orientation: sideways-right;
        letter-spacing: 0.1em;
        background-color: #f5f5f5;
        width: 350%;
        padding: 15px 0px 15px 30px;
        margin-left: 138px;
        box-shadow: 1px 1px 3px #d5d5d5;
    }

    .menu-list .menu-brand {
        margin-left: 24vw;
        position: absolute;
        top: 4px;
    }

    .menu-list .menu-brand ul {
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-self: start;
        align-content: flex-start;
        padding: 10px 0px 10px 0px;
        background-color: #f5f5f5;
        box-shadow: 1px 1px 3px #d5d5d5;
    }

    .menu-list .menu-brand .item-brand {
        padding: 0px 10px 0px 10px;
    }

    .menu-list .menu-brand .item-brand:hover {
        padding: 0px 10px 0px 10px;
        width: 26px;
        height: 26px;
    }
    
}

.page {
    width: 99vw;
    margin-right: 0px;
    background-color: #fff;
    border-top: 1px solid #f5f5f5;
}

.page > .page-content {
    width: 66%;
    margin: 45px auto 0px auto;
    border: 0px;
    box-sizing: border-box;
}

.page-content .box-content {
    position: static;
    width: 75%;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 45px;
}

.page-content .box-content:last-child {
    margin-bottom: 0px;
}

.box-content .box-line {
    width: 1px;
    height: 150px;
    margin: auto 0px auto 0px;
    background-color: rgba(2, 102, 201, 0.35);
    box-shadow: 1px 1px 1px rgba(2, 102, 201, 0.35);
}

.box-content > .box-left {
    position: inherit;
    width: 5vw;
    writing-mode: vertical-rl;
    text-orientation: upright;
    font-size: 55px;
    letter-spacing: -0.5em;
    padding-right: 40px;
    padding-top: 45px;
    padding-bottom: 55px;
    color: rgba(2, 102, 201, 0.25);
}

.box-content > .box-right {
    padding-left: 4em;
    margin: auto 0px auto 0px;
    width: 80%;
    display: block;
}

.box-content > .box-right > .box-header {
    font-size: 28px;
    font-weight: 100;
    padding-left: 1em;
}

@media only screen and (max-width: 480px) {
    .page {
        width: 100vw;
    }

    .box-content > .box-left {
        width: 12%;
        font-size: 45px;
        letter-spacing: -0.5em;
        padding-right: 0px;
    }

    .box-content .box-line {
        display: none;
    }

    .page-content .box-content {
        width: 100%;
    }

    .page > .page-content {
        width: 100%;
    }

    .box-content > .box-right {
        padding-left: 0.5em;
        width: 85%;
    }
}

@media only screen and (min-width: 481px) and (max-width: 1200px) {
    .page > .page-content {
        width: 80%;
    }

    .page-content .box-content {
        width: 100%;
    }
}

.footer {
    width: 99%;
    background-color: rgba(255, 255, 255, 0.9);
    height: 90vh;
    padding-top: 20vh;
    text-align: center;
} 

