html, body {
    margin: 0px;
    padding: 0px;
}

body {
    background-color: rgb(20, 20, 20);
    font-family: 'Montserrat', sans-serif;
}



.navigation {
    background-color: rgb(24, 24, 24);
    color: white;
    height: 50px;

    animation-name: navegacao;
    animation-duration: 4s;
}

.navigation ul {
    margin-top: 0px;
    list-style: none;
    padding-left: 0px;
    text-align: right;
    height: 50px;
}

.navigation li {
    display: inline-block;
    padding-left: 30px;
    padding-right: 30px;
    line-height: 50px;
    font-size: 16px;
}

.navigation a {
    color: white;
    text-decoration: none;
}

.navigation a:hover {
    color: rgb(17, 17, 133);
}

.navigation li.threeline-icon {
    display: none;
}

.navigation li.threeline-icon:hover {
    color: rgb(17, 17, 133);
    cursor: pointer; 
}


.capa {
    color: white;
}

.capa span {
    color: rgb(17, 17, 133);
    display: block; 
}

.capa div {
    display: inline-block;
    height: 650px;
}



.profile-pic {
    width: 40%;
    text-align: center;

    animation-name: profile-capa;
    animation-duration: 2s;
}

.profile-pic img {
    width: 350px;
    border-radius: 350px;
    margin-top: 200px;
    margin-left: 350px;
}

.profile-title {
    vertical-align: top;
    width: 59%;

    animation-name: titulo-capa;
    animation-duration: 2s;
}

.profile-title h1 {
    text-transform: uppercase;
    font-size: 58px;
    margin-top: 300px;
    margin-left:100px;
    line-height: 60px;
}

.profile-title h2 {
    font-size: 16px;
    margin-left: 100px;
    color:rgb(23, 38, 80)
}



.main {
    padding: 60px 180px 80px 100px;

    animation-name: conteudo;
    animation-duration: 2s;
}

.main h1 {
    color: white;
    font-weight: normal;
}

.main h2 {
    color: white;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: normal;
    margin-top: 40px;
}

.main h3 {
    font-size: 12px;
    text-transform: uppercase;
    color: rgb(17, 17, 133);
}

.main p {
    color: white;
    font-size: 18px;
    font-weight: 100;
    line-height: 24px;
    text-align: justify;
}

.caminho {
    padding-left: 0px;
    list-style: none;
    color: grey;
}

.caminho li {
    display: inline-block;
}

.caminho a {
    color: grey;
}



.social-img {
    width: 50px;
    margin-right: 10px;
}



.back-link {
    color: rgb(17, 17, 133);
}



@keyframes profile-capa {
    0% {opacity: 0; transform: translate(0px,50px);}
    100% {opacity: 1; transform: translate(0px,0px);}
}

@keyframes titulo-capa {
    0% {opacity: 0; transform: translate(0px,-50px);}
    100% {opacity: 1; transform: translate(0px,0px);}
}

@keyframes conteudo {
    0% {opacity: 0; transform: translate(-20px,0px);}
    100% {opacity: 1; transform: translate(0px,0px);}
}

@keyframes navegacao {
    0% {opacity: 0;}
    50%{opacity: 0;}
    100% {opacity: 1;}
}



@media (max-width: 1000px) {

.navigation li {
    display: none;
}

.navigation li.threeline-icon {
    display: inline-block;
}

.capa div {
    display: block;
    height: auto;
}

.profile-pic {
    width: 100%;
}

.profile-pic img {
    max-width: 75%;
    margin-top: 0px;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.profile-title {
    text-align: center;
    width: 100%;
}

.profile-title h1 {
    margin-top: 30px;
    font-size: 40px;
    margin-left: 20px;
    margin-right: 20px;
}

.profile-title h2 {
    margin-top: 20px;
    margin-left: 20px;
    margin-right: 20px;
}

.main {
    padding: 10px 5% 40px 5%;
}

.main p{
    text-align: left;
    line-height: 30px;
}

.caminho li {
    font-size: 14px;
}

.menujs {
    height: auto;
}

.menujs ul {
    height: auto;
    text-align: center;
    padding-right: 15%;
    padding-left: 15%;
}

.menujs li {
    display: block;
    border-bottom: solid grey 1px;
    width: 100%;
    padding: 0px;
}

}