html,body{
    background-color:#031b38;
    color:white;
    font-family:"Montserrat",sans-serif;
    font-size:14px;
}
.header{
    padding:.5rem 0;
    border-bottom:.5px solid black;
}
.header .logo{
    height:40px;
}
.list-menu-line,.list-menu-line>li{
    list-style:none;
    list-style-type:none;
    padding:0px;
    margin:0px;
}
.list-menu-line{
    display:flex;
    align-items:center;
}
.list-menu-line>li>a,.list-menu-line>li>a:hover{
    display:block;
    padding:.5rem 1rem;
    text-decoration:none;
    cursor:pointer;
    color:white;
    font-weight:bold;
}
.list-menu-line>li>a:hover{
    color:darkorange;
}
.content{
    min-height:400px;
    background:#1b1b1b;
    padding:.5rem 0;
    position:relative;
    z-index:1;
}
.content *{
    z-index:1;
}
.content::before{
    content:"";
    width:100%;
    height:100%;
    top:0px;
    left:0px;
    z-index:0;
    background:none;
    position:absolute;
    background: url('/assets/img/main-bg.jpg') repeat-y top center;
    filter:brightness(.5);
    z-index:0;
}
.footer{
    padding:1rem 0;
    border-top:.5px solid black;
}
.footer article{
    text-align:justify;
}
.copyright{
    text-align:center;
}
.loader{
    position:fixed;
    top:0px;
    left:0px;
    right:0px;
    bottom:0px;
    background:#f2f2f2;
    z-index:99999;
    background-image:url(../img/loading.svg),url(../img/logo.png);
    background-size:64px,256px;
    background-position:calc(50% + 90px) calc(50% - 50px),center center;
    background-repeat:no-repeat;
    transition:all .5s linear;
    opacity:1;
}
.loader.hidden{
    display:none;
    opacity:0;
    z-index:-1;
}
.loading{
    position:fixed;
    top:0px;
    left:0px;
    right:0px;
    bottom:0px;
    display:none;
    z-index:9998;
    /*background:#0003;*/
}
.loading .loading-dialog .loading-text{
    text-align:center;
}
.loading{
    position:fixed;
    top:0px;
    left:0px;
    right:0px;
    bottom:0px;
    display:none;
    z-index:9998;
    /*background:#0003;*/
}
.loading .loading-dialog{
    position:absolute;
    font-weight:normal;
    top:calc(50% - 75px);
    left:calc(50% - 150px);
    width:300px;
    background:white url(../img/logo.png) no-repeat top center;
    background-size:150px;
    background-position:top 30px left 60px;
    text-align:center;
    padding-top:95px;
    padding-bottom:20px;
    border:1px solid #c0ccdb;
    border-radius:5px;
    color:#707070;
    box-shadow:2px 2px 2px #0002;
}
.loading .loading-dialog .loading-text{
    text-align:center;
}
hr{
    border-color:white;
}
h1{
    font-size:220%;
    font-weight:bold;
}
h2{
    font-size:200%;
    font-weight:bold;
}