@charset "utf-8";
.ico_fb_news{
	width: 40px; 
	vertical-align: middle;
}
.news_card{
	width: calc(33.3333% - 30px);
	margin-bottom: 40px;
	cursor: pointer;
}
.news_card:hover .wrap_img img{
	width: 110%;
	height: 110%;
}
.news_card .wrap_img{
	height: 300px;
	position: relative;
	overflow: hidden;
}
.news_card .wrap_img img{
	background-size: cover;
    position: absolute;
    margin: auto;
    width: 100%;
    height: 100%;
    right: -100%;
    bottom: -100%;
    top: -100%;
    left: -100%;
    object-fit: cover;
	transition: 400ms ease;
}
.important_text {
    text-transform: uppercase;
    letter-spacing: 2px;
	font-weight: normal;
	font-size: 15px;
}
.news_card h2{
	font-size: 23px;
}

@media screen and (max-width: 1200px){
	.news_card{
		width: 100%;
		max-width: 360px;
	}
}