/*====================================================================
  Geral
=====================================================================*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a:hover{
  text-decoration: none;
}

.set_img{
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

/*====================================================================
  Blog 1
=====================================================================*/
.main_blog-post{
  padding: 60px 0;
}

.text-blog-post{
  color: #999;
  font-size: 1rem;
  font-weight: 400;
}

.blog-post h3{
  color:#040e27;
  font-size: 1.9rem;
  font-weight: 600;
  margin-bottom: 40px;
  text-transform: initial;
}
.blog_post-img{
  margin: 40px 0 50px;
}
.voltar a{
  color: #642e90;
  font-size: 1rem;
  font-weight: 300;
  text-decoration: underline;
  transition: all .3s;
}
.voltar a:hover{
  color: #000;
}



/*====================================================================
  Responsive
=====================================================================*/
@media (max-width:767px) {
  .hidden-xs {
    display: none !important;
  }
  
}

@media (max-width:991px) {
.hidden-xs {
   display: none !important;
}
}

@media (min-width:768px) and (max-width:991px) {
  .hidden-sm {
      display: none !important;
  }
}

@media (min-width:992px) and (max-width:1199px) {
  .hidden-md {
      display: none !important;
  }
}

@media (min-width:1200px) {
  .hidden-lg {
      display: none !important;
  }
}