/* Estilos Gerais */
@font-face {
    font-family: Poppins;
    src: url(assets/fonts/Poppins-Regular.ttf);
    font-weight: 400;
}
@font-face {
    font-family: Poppins;
    src: url(assets/fonts/Poppins-Bold.ttf);
    font-weight: 600;
}
html,body,main,footer,p,h1,h2,h3,
h4,h5,h6,a{
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  line-height: 1.2em;
  color: #fff;
}
p{
    margin: 0 0 10px;
}
a, a:hover, a:focus, a:active{
  border: none;
  outline-style: none;
  text-decoration: none;
}
body{
  background: #edf0f5;
}
header{
    background: #003f9e ;
}
header img{
    max-width: 250px;
}
header .btn-mais{
    border: 2px solid #c9de45;
    border-radius: 10px;
    cursor: pointer;
    display: inline-block;
    padding: 10px 25px 10px 20px;
    transition: .5s;
    text-transform: uppercase;
}
header .btn-mais a{
    background: url("assets/img/arrow-green.png") no-repeat left;
    padding-left: 20px;
    color: #fff;
    font-weight: 600;
}
header .btn-mais:hover{
    background-color: #053ca4;
    border-color: #053ca4;
}
.hallack{
    background: url("assets/img/bg-hallack.jpg") no-repeat center;
    background-size: cover;
    width: 100%;
}
.hallack .img-destaque img{
    max-width: 110%;
    margin-top: -20px;
}
.hallack .entry-content h2{
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    font-size: 70px;
    word-spacing: 100vw;
    margin: auto;
    font-weight: 600;
}
.hallack strong{
    color: #c9de45;
}
footer{
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}
footer p{
    color: #003f9e;
    text-align: center;
}
footer ul{
    list-style: none;
}
footer ul li{
    margin: 0 10px;
}
@media(max-width: 991px){
    footer{
        position: relative;
    }
}
@media(max-height: 740px){
    footer{
        margin: 0 !important;
        position: relative;
    }
}