.header-blog{
    background-size: cover;
    background-position: center center;
    height: 40vh;
}
.img-fluid{
    max-width: 100%;
    height: auto;
}
.container{
    padding-left: 15px;
    padding-right: 15px;
}
.overlay-img {
	overflow: hidden;
}

.overlay-img img {
	max-width: 100%;
	-moz-transition: all 0.3s;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}

.overlay-img:hover img {
	-moz-transform: scale(1.1);
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}
.overlay-img .desc{
	background-color: rgba(0, 0, 0, 0.3);
    display: none;
    transition: all .5s;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.overlay-img:hover .desc{
	display: flex;
}
.btn-mobile-menu{
   color: #636E80 !important;
}
@media(min-width:640px){
    .container{
        padding-left: 20px;
        padding-right: 20px;
    }
}
@media(min-width:768px){
    .container{
        padding-left: 30px;
        padding-right: 30px;
    }
}
@media(min-width:1024px){
    .container{
        padding-left: 40px;
        padding-right: 40px;
    }
}
@media(min-width:1200px){
    .container{
        padding-left: auto;
        padding-right: auto;
    }
}
@media(max-width:1023px){
    h1,h2{
        font-weight: bold !important;
    }
    h1{
        font-size: 2.1rem !important;
        line-height: 100%;
    }
    h2{
        font-size: 2rem !important;
        line-height: 100%;
    }
    h3{
        font-size: 1.3rem !important;
        font-weight: bold !important;
    }
}
@media(min-width:1200px){
    .header-blog{
        height: 60vh;
    }
    
}