@import url('https://fonts.googleapis.com/css?family=Dosis|Open+Sans|Oswald|Roboto');

html, body{
    margin: 0px;
    padding: 0px;
    width: 100%;
    height: 100%;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
}
a{
    color: #0061cb;
    text-decoration: none;
}
a:hover{
    color: #F00;
    text-decoration: none;
}
h1, h3, h4, h5{
    font-family: 'Oswald', sans-serif;
    color: #F00;
}
h1{
    font-size: 60px;
}
h2{
    font-family: 'Dosis', sans-serif;
    font-size: 48px;
    color: #0061cb;
}
h3{
    color: #000 !important;
}

body{
    overflow-x: hidden;
}

header{
    position: fixed;
    width: 100%;
    overflow: hidden;
    color: #0061cb;
    font-size: 14px;
    padding: 5px 0px 6px 0px;
    box-sizing: border-box;
    border-bottom: solid 1px #EFEFEF;
    background-color: #000;
    color: #AAA;
    z-index: 15;
}

header a{
    color: #AAA;
}

nav{
    height: 110px;
    width: 100%;
    margin-top: 31px;
    background-color: rgba(255,255,255,1);
    border-bottom: solid 1px #EFEFEF;
    position: fixed;
    z-index: 5;
}

nav img{
    height: 80px;
    margin-top: 10px;
}

section:first-child{
    width: 100%;
    min-height: 100%;
    position: relative;
    overflow: hidden;
}

cite{
    font-size: 18px;
}

footer{
    width: 100%;
    overflow: hidden;
    background-color: #000;
    font-size: 12px;
    color: #FFF;
    padding: 10px 0px 10px 0px
}
footer div{
    padding-top: 10px;
    /*border: solid 1px #F00;*/
}
footer div div:last-child{
    text-align: right;
}
footer img{
    height: 80px;
}
footer p{
    display: flexbox;
}
footer a{
    color: #F00;
}
footer a:hover{
    text-decoration: underline;
}

menu{
    position: absolute;
    padding-top: 15px;
    top:40px;
    right: 15px;
    display: none;
    width: 100%;
    max-width: 300px;
}

menu div{
    position: absolute;
    top: -15px;
    right: 13px;
    width: 30px;
    height: 30px;
    border-top: solid 15px transparent;
    border-right: solid 15px transparent;
    border-bottom: solid 15px rgba(41,47,99,.7);
    border-left: solid 15px transparent;
}

menu ul{
    width: 100%;
    margin: 0px 0px 0px 0px;
    padding: 0px 0px 0px 0px;
}
menu ul li{
    list-style: none;
}
menu ul li a{
    display: block;
    width: 99%;
    height: 50px;
    text-decoration: none;
    text-align: center;
    box-sizing: border-box;
    padding-top: 15px;
    color: #FFF;
    background-color: rgba(41,47,99,.7);
    
    transition: all .5s;
    -webkit-transition: all .5s;
}
menu ul li a:hover{
    color: rgba(41,47,99,1);
    text-decoration: none;
    background-color: rgba(255,255,255,.7); 
}

input[type=text],input[type=mail]{
    width: 100%;
    height: 50px;
    color: #0061cb !important;
    border:solid 1px #CCC;
    border-left: solid 2px #0061cb;
    box-sizing: border-box;
    padding-left: 15px;
    margin-bottom: 15px;
}
input[type=file]{
    width: 100%;
    height: 50px;
    color: #FFF !important;
    border:solid 1px #CCC;
    border-left: solid 2px #0061cb;
    box-sizing: border-box;
    padding-left: 15px;
    margin-bottom: 15px;
}
input[type=button]{
    width: 100%;
    height: 50px;
    background-color: #0061cb;
    border:solid 2px #0061cb;
    color: #FFF !important;
    box-sizing: border-box;
    padding-left: 15px;
    margin-bottom: 15px;
    font-weight: bold;
    
    transition: all .3s;
    -webkit-transition: all .3s;
}
input[type=button]:hover{
    background-color: #FFF;
    color: #0061cb !important;
}
textarea{
    width: 100%;
    height: 150px;
    color: #002A5F !important;
    border:solid 1px #CCC;
    border-left: solid 2px #0061cb;
    box-sizing: border-box;
    padding-left: 15px;
    margin-bottom: 15px;
    padding-top: 10px;
}
    
::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #CCC;
  font-style: italic;
}
::-moz-placeholder { /* Firefox 19+ */
  color: #CCC;
  font-style: italic;
}
:-ms-input-placeholder { /* IE 10+ */
  color: #CCC;
  font-style: italic;
}
:-moz-placeholder { /* Firefox 18- */
  color: #CCC;
  font-style: italic;
}

label{
    width: 100%;
    color: #0061cb !important;
}

@media only screen and (max-width: 900px) {
    
    nav{
        height: 90px !important;
        width: 100%;
        margin-top: 31px;
        background-color: rgba(255,255,255,0);
        border-bottom: solid 1px #EFEFEF;
        position: fixed;
        z-index: 5;
    }
    footer div{
        text-align: center !important;
    }
    *{
        /*border: solid 1px #F00;*/
    }
}