   /*
    font-family: 'Bebas Neue', cursive;
    font-family: 'Noto Serif Display', serif;
    font-family: 'Rubik', sans-serif;
    font-family: 'Shizuru', cursive;
    font-family: 'League Spartan', sans-serif;
*/

html,body{
    width: 100%;
    height: 100%;
	margin: 0;
    background-color: #F1F1F1;
    font-family: 'League Spartan', sans-serif;
}

@keyframes dash {
	100%{
		stroke-dashoffset: 0;
	}
}

/* MANUTENÇÃO ADMINISTRATIVO */
.manutencao-container{
    display: flex;
    flex-basis: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    position: relative;
}
.manutencao-container .manutencao-content{
z-index: 99;
flex-basis: 90%;
}
.manutencao-container .manutencao-content .manutencao-box{
    flex-basis: 90%;
    max-width: 550px;
}
.manutencao-container .manutencao-content .manutencao-box header{}
.manutencao-container .manutencao-content .manutencao-box header img{
    width: 150px;
    margin-bottom: 15px;
}
.manutencao-container .manutencao-content .manutencao-box header h1{
    font-size: 2.5em;
    font-weight: 400;
    margin-top: 10px;
    margin-bottom: 10px;
}
.manutencao-container .manutencao-content .manutencao-box header h2{
    font-size: 1.5em;
    font-weight: 300;
    margin: 0;
    background: #F1F1F1;
}
.manutencao-container .manutencao-content .manutencao-box header p{}
.manutencao-container .manutencao-content .manutencao-texto{}
.manutencao-container .manutencao-content .manutencao-texto p{
    font-size: 1em;
    font-weight: 300;
    color: #696969;
    background: #F1F1F1;
}
.manutencao-container .manutencao-content ul{
    list-style: none;
    padding: 0;
}
.manutencao-container .manutencao-content ul li{
    margin-bottom: 10px;
}
.manutencao-container .manutencao-content ul li a{
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    padding: 10px 15px;
    border: 1px solid #999;
    border-radius: 50px;
    text-decoration: none;
    color: #999;
    transition: all .5s;
    background: #F1F1F1;
}
.manutencao-container .manutencao-content ul li a:hover{
    border: 1px solid #252E40;
    background: #252E40;
    color: white;
}
.manutencao-container .manutencao-background{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    overflow: hidden;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.manutencao-container .manutencao-background svg{
    margin-right: -600px;
    width: 1200px;
    height: auto;
}
.manutencao-container .manutencao-background .brasao-svg{
	stroke: #b1b1b1;
	fill: transparent;
	stroke-width: 0.6;
	stroke-dashoffset: 2000;
	stroke-dasharray: 500;
	animation: dash 10s linear forwards infinite;
}


/* MANUTENÇÃO ADMINISTRATIVO - RESPONSIVE */
@media (max-width: 768px){
.manutencao-container .manutencao-content .manutencao-box header h2{
    background: #F1F1F1;
}
.manutencao-container .manutencao-content .manutencao-texto p{
    background: #F1F1F1;
}
.manutencao-container .manutencao-background .brasao-svg{
	stroke: #dadada;
}
.manutencao-container .manutencao-content ul li a{
    background: #F1F1F1;
}
}
@media (max-width: 550px){
.manutencao-container .manutencao-content ul li a{
    width: 90%;
}
}
@media (max-width: 425px){
.manutencao-container .manutencao-content .manutencao-box{
    text-align: center;
}
.manutencao-container .manutencao-content ul li a{
    width: 90%;
}
}