* {
    margin: 0;
    padding: 0;
}

.page-wrap {
    padding: 2rem 0;
    margin-top: 0;
    margin-bottom: 0;
}

.margin-page {
    margin-left: 15vw;
    margin-right: 15vw;
}

a{
    text-decoration: none;
}
ul{
    list-style: none;
}

header {
    /* background: #111; */
    border: 1px solid;
    width: 100%;
    height: 85px;
    display: flex;
}

header .logo {
    display:flex;
    align-items: center;
    height: 100%;
    float: left;
    color: black;
}

footer {
    margin: 0;
    bottom: 0;
    padding: 30px 0px 5px;
    width: 100%;
    background-color: black;
    color: white;
}

footer .footer-sobre-fcsk {
    width: 80%;
}

footer .footer-sobre-fcsk h1 {
    font-size: 16pt;
}

.front_page_main_image {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 600px;
    background-repeat: no-repeat;
    background-position: center -67px;
    background-size: cover;
}

.front_page_main_image .main_image_overlay {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}

.container_titulo {
    padding: 2rem 0;
    margin: 0 15vw;
    height: 100%;    
    align-items: center;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.logo_main_image {
    height: 280px;
    width: 280px;
    align-items: center;
    float: left;
}

.textos_titulo_principal {
    float: right;
    width: 920px;
}

.titulo_principal {
    font-weight: bold;
    color: white;
    font-size: 55pt;
    line-height: 60pt;
}

.titulo_principal_japones {
    color: #f54251;
    font-size: 28pt;
}

nav .header-menu.active {
    transform: translateX(0);
    display: block!important;
}

.container-titulo-pagina {
    width: 100%;
    height: 120px;
    background-color: #444444;
    display: flex;
    align-items: center;
}

.container-titulo-pagina .camada-interna {
    margin: 0 15vw;
    
}

.container-titulo-pagina h1 {
    color: white;
    text-transform: uppercase;
    font-style: italic;
}


.container_graduacoes {
    display: flex;
    flex-wrap: wrap;
    padding: 4px 4px 50px 4px;
    justify-content: center;
    align-items: center;

    /* background-color: lightgray; */
}

.grad_subtitulo {
    border-top: black solid 2px;
    border-bottom: black solid 2px;
    padding: 3px 15px;
    font-weight: bold;
    font-style: italic;
}

.grad_dados_graduado {
    display: flex;
    width: 380px;
    margin: 4px 4px;
    padding: 4px 6px;
    border: black 1px solid;
    border-radius: 5px;

    /* background-color: lightyellow; */
}

.grad_foto {
    border-radius: 5px;
    border: black 1px solid;
    background-repeat: no-repeat;
    background-size: cover;
}

.grad_informacoes {
    margin-left: 6px;
}

.grad_informacoes .nome {
    font-weight: bold;
}


@media (max-width: 767px) {

    body {
        overflow-x: hidden;
    }

    nav ul, nav li {
        padding-left: 0!important;
        margin-left:1px;
    }

    nav .header-menu {
        list-style: none;
        position: absolute;
        top: 8vh;
        right: 0;
        width: 50vh;
        height: 92vh;
        background-color: black;
        color: white;
        flex-direction: column;
        align-items: center;
        transform: translateX(100%);
        transition: transform 0.3s ease-in;
        display: none;
    }

    nav .header-menu li {
        letter-spacing: 3px;
        margin-left: 32px;
    }

    .mobile-menu {
        cursor: pointer;
        display: block;
        margin: 5px 0;
        float: right;
    }

    .mobile-menu div {
        width: 32px;
        height: 2px;
        margin: 8px;
        background: black;
    }
}


@media (min-width: 768px) {
    

    nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 100%;
        max-width: 98%!important;
        float: right
    }

    nav .logo_image {
        max-height: 80px;
        width: auto;
    }

    header .header-menu {
        margin: 0;
        padding: 0;
        display: flex;
    }

    header .header-menu li a {
        padding: .25rem 1rem;
        color: black;
        display: block;
    }

    header .header-menu li {
        position: relative;
    }

    header .header-menu li .sub-menu {
        display: none;
        position: absolute;
        z-index: 9999;
        top: 100%;
        left: 0;
        background: #fff;
        box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.1);
        margin: 0;
        padding: 0;
        list-style-type: none;
        width: 200px;
        border-radius: .3rem;

    }

    header .header-menu li .sub-menu a {
        color: black;
        padding: .25rem;
        text-align: center;
        display: block;
    }

    header .header-menu li .sub-menu a:hover {
        background-color: #dbdbdb;
    }

    header .header-menu > .menu-item-has-children:hover > .sub-menu {
        display: block;
    }

    header .header-menu .menu-item-has-children .sub-menu > .menu-item-has-children:hover .sub-menu {
        display: block;
    }

    header .header-menu .sub-menu li .sub-menu {
        top: 0;
        left: 100%;
    }
}