/** news-section **/
.news-section{
	position: relative;
	padding: 255px 0px 180px 0px;
	background: #f0f7f7;
}
.news-block-one .inner-box{
	position: relative;
	display: block;
	background: #fff;
	border-radius: 10px;
	box-shadow: 0px 20px 30px 0px rgba(67, 131, 99, 0.1);
}
.news-block-one .inner-box .image-box{
	position: relative;
	display: block;
	overflow: hidden;
	background: var(--thm-base);
	border-radius: 10px 10px 0px 0px;
	margin: 0px;
}
.news-block-one .inner-box .image-box img{
	width: 100%;
	transition: all 500ms ease;
}
.news-block-one .inner-box:hover .image-box img{
	opacity: 0.2;
	transform: scale(1.05);
}
.news-block-one .inner-box .image-box a{
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--thm-primary);
    font-size: 23px;
    position: absolute;
    top: calc(50% - 32.5px);
    left: calc(50% - 32.5px);
    opacity: 0;
    transform: perspective(100px) translateZ(30px) rotate(45deg);
    transition: opacity 500ms ease 0ms, transform 500ms ease 0ms, background 500ms ease, color 500ms ease;
}
.news-block-one .inner-box:hover .image-box a{
    opacity: 1;
    transform: perspective(100px) translateZ(0px) rotate(0deg);
    transition: opacity 500ms ease 300ms, transform 500ms ease 300ms, background 500ms ease, color 500ms ease;
}
.news-block-one .inner-box .lower-content{
	position: relative;
	padding: 37px 50px 46px 40px;
}
.news-block-one .inner-box .lower-content .categori{
	position: relative;
	display: inline-block;
	font-size: 12px;
	line-height: 20px;
	font-weight: 500;
	font-family: 'Rubik', sans-serif;
	color: #ff5e5e;
	background: #ffe7e7;
	border-radius: 20px;
	text-align: center;
	padding: 3px 19px;
	margin-bottom: 19px;
	text-transform: uppercase;
}
.news-block:nth-child(2) .news-block-one .inner-box .lower-content .categori{
	color: var(--thm-base);
	background: #e7f4ed;
}
.news-block:last-child .news-block-one .inner-box .lower-content .categori{
	color: #f9b73f;
	background: #fef4e2;
}
.news-block-one .inner-box .lower-content .post-info{
	position: relative;
	padding: 5px 0px 5px 50px;
	margin-bottom: 24px;
	min-height: 40px;
}
.news-block-one .inner-box .lower-content .post-info img{
	position: absolute;
	left: 0px;
	top: 0px;
	width: 40px;
	height: 40px;
	border-radius: 50%
}
.news-block-one .inner-box .lower-content .post-info p{
	position: relative;
	font-size: 16px;
	color: #2d2929;
	margin: 0px;
}
.news-block-one .inner-box .lower-content .post-info p span{
	color: #93959e;
}
.news-block-one .inner-box .lower-content h3{
	position: relative;
	display: block;
	font-size: 24px;
	line-height: 30px;
	color: #2d2929;
	font-weight: 700;
	margin-bottom: 10px;
}
.news-block-one .inner-box .lower-content h3 a{
	display: inline-block;
	color: #2d2929;
	transition: all 500ms ease;
}
.news-block-one .inner-box .lower-content h3 a:hover{
	color: var(--thm-base);
}
.news-block-one .inner-box .lower-content p{
	position: relative;
	font-size: 16px;
	line-height: 30px;
	color: #93959e;
	margin-bottom: 15px;
}
.news-block-one .inner-box .lower-content .btn-box .link-btn{
    position: absolute;
    left: 40px;
    bottom: -30px;
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    display: inline-block;
    text-align: center;
    color: #2d2929;
    font-size: 23px;
    background-color: #fff;
    transform: scale(1,1);
    box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.1);
    transition: all 500ms ease;
}
.news-block-one .inner-box:hover .lower-content .btn-box .link-btn{
    transform: scale(0,0);
    opacity: 0;
}
.news-block-one .inner-box .lower-content .btn-box .main-nav-one__btn{
	position: absolute;
	left: 0px;
	bottom: -30px;
	padding: 15px 45px;
    opacity: 0;
}
.news-block-one .inner-box:hover .lower-content .btn-box .main-nav-one__btn{
    opacity: 1;
    left: 40px;
}
.news-section .news-block{
	padding: 0px 20px;
}
.news-section .inner-container{
	position: relative;
	margin: 0px -5px;
}
.news-section .block-title{
	padding-bottom: 58px;
}
