
/*** 

====================================================================
	News Section
====================================================================

 ***/

.news-section{
	position: relative;
	padding: 100px 0px 60px;
	background-color: #f9f8fc;
}

.news-section:before{
	position: absolute;
	content: '';
	right: 0px;
	top: 0px;
	width:30%;
	height: 100%;
	background-color: #ffffff;
}

.news-section .blocks-column{
	position:relative;
	margin-bottom: 30px;
}

.news-section .blocks-column .inner-column{
	position:relative;
	padding-right: 70px;
}

/*News Block*/

.news-block{
	position: relative;
	margin-bottom: 45px;
}

.news-block .inner-box{
	position: relative;
}

.news-block .inner-box .post-info{
	position: relative;
	margin-bottom: 8px;
}

.news-block .inner-box .post-info li{
	position: relative;
	color:#443986;
	font-size: 13px;
	font-weight: 700;
	padding-right: 14px;
	margin-right: 12px;
	line-height: 1.2em;
	display: inline-block;
	text-transform: uppercase;
	border-right: 1px solid #443986;
}

.news-block .inner-box .post-info li:last-child{
	margin-right: 0px;
	padding-right: 0px;
	border:none;
}

.news-block .inner-box .post-info li:first-child{
	color:var(--theme-color);
}

.news-block .inner-box h3{
	position: relative;
	font-size: 22px;
	font-weight: 600;
	line-height: 1.6em;
}

.news-block .inner-box h3 a{
	position: relative;
	color:#222222;
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	transition:all 300ms ease;
}

.news-block .inner-box h3 a:hover{
	color:var(--theme-color);
}

.news-section .image-column{
	position: relative;
	margin-bottom: 40px;
}

.news-section .image-column .inner-column{
	position: relative;
}

.news-section .image-column .inner-column .image{
	position: relative;
	overflow: hidden;
}

.news-section .image-column .inner-column .image::after {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  display: block;
  content: '';
  width: 0;
  height: 0;
  background: rgba(255, 255, 255,.2);
  border-radius: 0%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
}

.news-section .image-column .inner-column .image:hover::after {
  -webkit-animation: circle .95s;
  animation: circle .95s;
}

.news-section .image-column .inner-column .image:before{
	position: absolute;
	content: '';
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	display: block;
	background-color: rgba(68,57,34,0.95);
}

.news-section .image-column .inner-column .image img{
	position: relative;
	width:100%;
	display: block;
}


/*** 

====================================================================
	News Section Two
====================================================================

***/

.news-section-two{
	position: relative;
	padding: 115px 0px;
}

.news-block-two{
	position: relative;
}

.news-block-two .inner-box{
	position: relative;
	background-color: #f9f8fc;
}

.news-block-two .inner-box .image-column{
	position: relative;
	float: left;
	padding: 0px;
}

.news-block-two .inner-box .image-column.align-right{
	float:right;
}

.news-block-two .inner-box .image-column .image{
	position: relative;
	overflow: hidden;
}

.news-block-two .inner-box .image-column .image::before {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  display: block;
  content: '';
  width: 0;
  height: 0;
  background: rgba(255, 255, 255,.2);
  border-radius: 0%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
}

.news-block-two .inner-box:hover .image-column .image::before {
  -webkit-animation: circle .95s;
  animation: circle .95s;
}

.news-block-two .inner-box .image-column .image .arrow-box{
	position: absolute;
	right: 0px;
	bottom: 0px;
	color:#ffffff;
	width:70px;
	height: 70px;
	font-size: 32px;
	line-height: 70px;
	text-align: center;
	display: inline-block;
	background-color: var(--theme-color);
	transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.news-block-two .inner-box .image-column .image .arrow-box:hover{
	background-color: #443986 !important;
}

.news-block-two .inner-box .image-column .image img{
	position: relative;
	width: 100%;
	display: block;
	transition: all 500ms ease;
}

.news-block-two .inner-box:hover .image-column .image img{
	transform: scale(1.05);
}

.news-block-two .inner-box .content-column{
	position: relative;
	float: left;
	padding: 0px;
}

.news-block-two .inner-box .content-column .inner-column{
	position: relative;
	padding: 100px 80px 100px 70px;
}

.news-block-two .inner-box .content-column .inner-column .title{
	position: relative;
	color:var(--theme-color);
	font-size: 13px;
	line-height: 1.4em;
	font-weight: 700;
	margin-bottom: 10px;
	text-transform: uppercase;
}

.news-block-two .inner-box .content-column .inner-column h3{
	position: relative;
	font-size: 22px;
	font-weight: 600;
	line-height: 1.4em;
	margin-bottom: 20px;
}

.news-block-two .inner-box .content-column .inner-column h3 a{
	position: relative;
	color:#443986;
	transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.news-block-two .inner-box .content-column .inner-column h3 a:hover{
	color:var(--theme-color);
}

.news-block-two .inner-box .content-column .inner-column .text{
	position: relative;
	color:#555555;
	font-size: 16px;
	line-height: 1.7em;
}


/*** 

====================================================================
	News Section Three
====================================================================

***/

.news-section-three{
	position: relative;
	padding: 100px 0px 60px;
	background-color: #f9f8fc;
}

.news-section-three.alternate{
	background:none;
}

.news-block-three{
	position:relative;
	margin-bottom: 30px;
}

.news-block-three .inner-box{
	position: relative;
	overflow: hidden;
}

.news-block-three .inner-box .image{
	position: relative;
}

.news-block-three .inner-box .image img{
	position: relative;
	width:100%;
	display: block;
}

.news-block-three .inner-box .image:before{
	position: absolute;
	content: '';
	left:0px;
	top:0px;
	width:100%;
	height: 100%;
	display: block;
	cursor: pointer;
	z-index: 1;
	border: 150px solid rgba(68,57,134,0);
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -moz-transition: all 0.8s cubic-bezier(0.940, 0.850, 0.100, 0.620);
    -webkit-transition: all 0.8s cubic-bezier(0.940, 0.850, 0.100, 0.620);
    -o-transition: all 0.8s cubic-bezier(0.940, 0.850, 0.100, 0.620);
    -ms-transition: all 0.8s cubic-bezier(0.940, 0.850, 0.100, 0.620);
    transition: all 0.8s cubic-bezier(0.940, 0.850, 0.100, 0.620);
}

.news-block-three .inner-box:hover .image:before{
	border: 0px double rgba(68,57,134,0.6);
  
}

.news-block-three .inner-box .lower-content{
	position: relative;
	padding-top: 40px;
}

.news-block-three .inner-box .post-info{
	position: relative;
	margin-bottom: 12px;
}

.news-block-three .inner-box .post-info li{
	position: relative;
	color:#555555;
	font-size: 13px;
	font-weight: 700;
	padding-right: 14px;
	margin-right: 12px;
	line-height: 1.1em;
	display: inline-block;
	text-transform: uppercase;
	border-right: 1px solid #555555;
}

.news-block-three .inner-box .post-info li:last-child{
	margin-right: 0px;
	padding-right: 0px;
	border:none;
}

.news-block-three .inner-box .lower-content h3{
	position: relative;
	font-size: 22px;
	color:#222222;
	font-weight: 600;
	line-height: 1.5em;
	margin-bottom: 10px;
}

.news-block-three .inner-box .lower-content h3 a{
	position: relative;
	color:#222222;
	transition:all 0.3s ease;
	-moz-transition:all 0.3s ease;
	-webkit-transition:all 0.3s ease;
	-ms-transition:all 0.3s ease;
	-o-transition:all 0.3s ease;
}

.news-block-three .inner-box .lower-content h3 a:hover{
	color:var(--theme-color);
}

.news-block-three .inner-box .lower-content .text{
	position: relative;
	color:#555555;
	font-size: 16px;
	line-height: 1.7em;
	margin-bottom: 30px;
}

.news-block-three .inner-box .lower-content .read-more{
	position: relative;
	color:var(--theme-color);
	font-size: 13px;
	font-weight: 700;
	padding-right: 30px;
	text-transform: uppercase;
	display: inline-block;
	transition:all 0.3s ease;
	-moz-transition:all 0.3s ease;
	-webkit-transition:all 0.3s ease;
	-ms-transition:all 0.3s ease;
	-o-transition:all 0.3s ease;
}

.news-block-three .inner-box .lower-content .read-more:hover{
	color:#443986 !important;
}

.news-block-three .inner-box .lower-content .read-more:before{
	position: absolute;
    content: '';
    left: 100%;
    top: 12px;
    width: 0%;
    height: 1px;
    opacity: 0;
    visibility: hidden;
	transition:all 900ms ease;
	-moz-transition:all 900ms ease;
	-webkit-transition:all 900ms ease;
	-ms-transition:all 900ms ease;
	-o-transition:all 900ms ease;
    background-color: #dddddd;
}

.news-block-three .inner-box:hover .lower-content .read-more:before{
	width:300%;
	opacity: 1;
	visibility: visible;
}

.news-block-three .inner-box .lower-content .read-more .fa{
	position: relative;
	color:#443986;
	font-weight: 700;
	margin-right: 4px;
	display: inline-block;
}


/*** 

====================================================================
	News Section Four
====================================================================

***/

.news-section-four{
	position: relative;
	padding: 100px 0px 110px;
}

.news-section-four:before{
	position: absolute;
	content: '';
	right:0px;
	top: 0px;
	width: 75%;
	bottom:200px;
	background-color: #f9f8fc;
}

/*News Block Four*/

.news-block-four{
	position: relative;
	margin-bottom: 70px;
}

.news-block-four .inner-box{
	position: relative;
}

.news-block-four .inner-box .image-column{
	position: relative;
}

.news-block-four .inner-box .image-column .inner-column{
	position: relative;
}

.news-block-four .inner-box .image-column .inner-column .image{
	position: relative;
	overflow: hidden;
}

.news-block-four .inner-box .image-column .inner-column .image:before{
  position: absolute;
  top: 0;
  left: -75%;
  display: block;
  content: '';
  width: 50%;
  height: 100%;
  background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, .3)));
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
  -webkit-transform: skewX(-25deg);
  -ms-transform: skewX(-25deg);
  transform: skewX(-25deg);
  z-index: 1;
}

.news-block-four .inner-box .image-column .inner-column .image:hover:before{
  -webkit-animation: shine 1s;
  animation: shine 1s;
}

.news-block-four .inner-box .image-column .inner-column .image img{
	position: relative;
	width:100%;
	display: block;
}

.news-block-four .inner-box .content-column{
	position: relative;
}

.news-block-four .inner-box .content-column .inner-column{
	position: relative;
	padding-left: 20px;
}

.news-block-four .inner-box .content-column .post-info{
	position: relative;
	margin-bottom: 8px;
}

.news-block-four .inner-box .content-column .post-info li{
	position: relative;
	color:#443986;
	font-size: 13px;
	font-weight: 700;
	padding-right: 14px;
	margin-right: 12px;
	line-height: 1.2em;
	display: inline-block;
	text-transform: uppercase;
	border-right: 1px solid #443986;
}

.news-block-four .inner-box .content-column .post-info li:last-child{
	margin-right: 0px;
	padding-right: 0px;
	border:none;
}

.news-block-four .inner-box .content-column .post-info li:first-child{
	color:var(--theme-color);
}

.news-block-four .inner-box .content-column h3{
	position: relative;
	font-size: 22px;
	font-weight: 600;
	line-height: 1.5em;
	margin-bottom: 25px;
}

.news-block-four .inner-box .content-column h3 a{
	position: relative;
	color:#222222;
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	transition:all 300ms ease;
}

.news-block-four .inner-box .content-column h3 a:hover{
	color:var(--theme-color);
}

.news-block-four .inner-box .content-column .text{
	position: relative;
	color:#555555;
	font-size: 16px;
	line-height: 1.7em;
	margin-bottom: 30px;
}

.news-block-four .inner-box .content-column .read-more{
	position: relative;
    color: var(--theme-color);
    font-size: 13px;
    font-weight: 700;
    padding-right: 30px;
    text-transform: uppercase;
    display: inline-block;
	transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
    -webkit-transition: all 0.6s ease;
    -ms-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
}

.news-block-four .inner-box .content-column .read-more .fa{
    position: relative;
    color: #443986;
    font-weight: 700;
    margin-right: 4px;
    display: inline-block;
}

.news-block-four .inner-box .content-column .read-more:hover{
	color: #443986 !important;
}

.news-section-four .button-box{
	margin-top: 120px;
}


/*News Block Five*/

.news-block-five{
	position: relative;
	margin-bottom: 70px;
}

.news-block-five .inner-box{
	position: relative;
}

.news-block-five .inner-box .image{
	position: relative;
	overflow: hidden;
}

.news-block-five .inner-box .image::before {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  display: block;
  content: '';
  width: 0;
  height: 0;
  background: rgba(255, 255, 255,.2);
  border-radius: 0%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
}

.news-block-five .inner-box:hover .image::before {
  -webkit-animation: circle .95s;
  animation: circle .95s;
}

.news-block-five .inner-box .image img{
	position: relative;
	width:100%;
	display: block;
	transition: all 500ms ease;
}

.page-numbers.current{
	color: #ffffff !important;
}

.news-block-five .inner-box:hover .image img{
	transform: scale(1.05);
}

.news-block-five .inner-box .image .overlay-box{
	position:absolute;
	left:0px;
	top:0px;
	width:100%;
	height:100%;
	display:block;
	text-align:center;
}

.news-block-five .inner-box .image .overlay-box .icon{
	position:absolute;
	left:50%;
	top:50%;
	width:80px;
	height:80px;
	color:#ff4c72;
	margin-left:-40px;
	text-align:center;
	border-radius:50%;
	line-height:80px;
	display:inline-block;
	padding-left:4px;
	font-size:72px;
	margin-top:-40px;
	box-shadow: 0px 0px 35px rgba(255,255,255,1);
}

.news-block-five .inner-box .lower-content{
	position: relative;
	padding-top: 30px;
	overflow: hidden;
}

.news-block-five .inner-box .lower-content .post-meta{
	position: relative;
}

.news-block-five .inner-box .lower-content .post-meta li{
	position: relative;
	color:#666666;
	font-size: 13px;
	font-weight: 700;
	padding-right: 10px;
	margin-right: 10px;
	line-height: 1.1em;
	display: inline-block;
	border-right: 1px solid #666666;
	text-transform: uppercase;
	font-family: 'Hind', sans-serif;
}

.news-block-five .inner-box .lower-content .post-meta li .icon{
	position: relative;
	color:var(--theme-color);
	margin-right: 4px;
	font-weight: 600;
}

.news-block-five .inner-box .lower-content .post-meta li:nth-child(3),
.news-block-five .inner-box .lower-content .post-meta li:last-child{
	border-right: none;
	margin-right: 0px;
	padding-right: 0px;
}

.news-block-five .inner-box .lower-content h2{
	position: relative;
	color: #222222;
	font-size: 30px;
	font-weight: 600;
	line-height: 1.3em;
	margin-top: 12px;
	margin-bottom: 18px;
}

.news-block-five.style-two .inner-box .lower-content h2{
	font-size:26px;
}

.news-block-five .inner-box .lower-content h2 a{
	position: relative;
	color: #222222;
	transition:all 0.3s ease;
	-moz-transition:all 0.3s ease;
	-webkit-transition:all 0.3s ease;
	-ms-transition:all 0.3s ease;
	-o-transition:all 0.3s ease;
}

.news-block-five .inner-box .lower-content h2 a:hover{
	color:var(--theme-color);
}

.news-block-five .inner-box .lower-content .text{
	position: relative;
	color:#555555;
	font-size: 16px;
	line-height: 1.7em;
	margin-bottom: 30px;
}

.news-block-five .inner-box .lower-content .read-more{
	position: relative;
	color:var(--theme-color);
	font-size: 13px;
	font-weight: 700;
	padding-left: 14px;
	padding-right: 30px;
	display: inline-block;
	text-transform: uppercase;
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	transition:all 300ms ease;	
}

.news-block-five .inner-box .lower-content .read-more:hover{
	color:#443986 !important;
}

.news-block-five .inner-box .lower-content .read-more:before{
	position: absolute;
	content: "\f105";
	left: 0px;
	top: -1px;
	color:#443986;
	font-size: 16px;
	font-family: 'FontAwesome';
}

.news-block-five .inner-box .lower-content .read-more:after{
	position:absolute;
	content: '';
	top: 11px;
	left: 100%;
	width:600%;
	height: 1px;
	background-color: #dddddd;
}

.news-block-five .inner-box .owl-dots{
	display:none;
}

.news-block-five .inner-box .owl-nav{
	position:absolute;
	left:0px;
	top:50%;
	width:100%;
	margin-top:-25px;
}

.news-block-five .inner-box .owl-nav .owl-prev{
	position:absolute;
	left:35px;
	width:50px;
	height:50px;
	line-height:50px;
	text-align:center;
	font-size:20px;
	color: #ffffff;
	display:inline-block;
	transition:all 0.3s ease;
	-moz-transition:all 0.3s ease;
	-webkit-transition:all 0.3s ease;
	-ms-transition:all 0.3s ease;
	-o-transition:all 0.3s ease;
	background-color:#443986;
}

.news-block-five .inner-box .owl-nav .owl-next{
	position:absolute;
	right:35px;
	float:right;
	width:50px;
	height:50px;
	line-height:50px;
	text-align:center;
	font-size:20px;
	color: #ffffff;
	display:inline-block;
	transition:all 0.3s ease;
	-moz-transition:all 0.3s ease;
	-webkit-transition:all 0.3s ease;
	-ms-transition:all 0.3s ease;
	-o-transition:all 0.3s ease;
	background-color:#443986;
}

.news-block-five .inner-box .owl-nav .owl-prev:hover,
.news-block-five .inner-box .owl-nav .owl-next:hover{
	color:#ffffff;
	background-color: var(--theme-color);
}

/*News Block Six*/

.news-block-six{
	position: relative;
	margin-bottom: 80px;
}

.news-block-six .inner-box{
	position: relative;
	padding: 70px 15px;
	text-align: center;
	background-color: #222222;
}

.news-block-six .inner-box .icon-box{
	position: relative;
	color:#ffffff;
	font-size: 32px;
	line-height: 1em;
	font-weight: 700;
	margin-bottom: 20px;
	display: inline-block;
}

.news-block-six .inner-box .post-meta{
	position: relative;
	margin-bottom: 20px;
}

.news-block-six .inner-box .post-meta li{
	position: relative;
	color:#cccccc;
	font-size: 13px;
	font-weight: 700;
	padding-right: 14px;
	margin-right: 14px;
	line-height: 1em;
	display: inline-block;
	text-transform: uppercase;
	border-right: 1px solid rgba(255,255,255,0.80);
}

.news-block-six .inner-box .post-meta li:last-child{
	border-right: 0px;
	margin-right: 0px;
	padding-right: 0px;
}

.news-block-six .inner-box .post-meta li .icon{
	position: relative;
	margin-right: 4px;
	color: var(--theme-color);
}

.news-block-six .inner-box h3{
	position: relative;
	font-size: 24px;
	color:#ffffff;
	font-weight: 700;
	line-height: 1.2em;
	margin-bottom: 10px;
}

.news-block-six .inner-box h3 a{
	position: relative;
	color:#ffffff;
	transition:all 0.3s ease;
	-moz-transition:all 0.3s ease;
	-webkit-transition:all 0.3s ease;
	-ms-transition:all 0.3s ease;
	-o-transition:all 0.3s ease;
}

.news-block-six .inner-box h3 a:hover{
	color: var(--theme-color);
}

.news-block-six .inner-box .link{
	position: relative;
	font-weight: 500;
	color: var(--theme-color);
	font-size: 16px;
}

/* News Block Seven */

.news-block-seven{
	position: relative;
	margin-bottom: 70px;
}

.news-block-seven .inner-box{
	position: relative;
	padding: 70px 65px;
	background-color: #f9f8fc;
}

.news-block-seven .inner-box .content{
	position:relative;
	overflow: hidden;
}

.news-block-seven .inner-box .post-meta{
	position: relative;
}

.news-block-seven .inner-box .post-meta li{
	position: relative;
	color:#666666;
	font-size: 13px;
	font-weight: 700;
	padding-right: 10px;
	margin-right: 10px;
	line-height: 1.1em;
	display: inline-block;
	border-right: 1px solid #666666;
	text-transform: uppercase;
	font-family: 'Hind', sans-serif;
}

.news-block-seven .inner-box .post-meta li .icon{
	position: relative;
	color:var(--theme-color);
	margin-right: 4px;
	font-weight: 600;
}

.news-block-seven .inner-box .post-meta li:nth-child(3),
.news-block-seven .inner-box .post-meta li:last-child{
	border-right: none;
	margin-right: 0px;
	padding-right: 0px;
}

.news-block-seven .inner-box h2{
	position: relative;
	color: #222222;
	font-size: 30px;
	font-weight: 600;
	line-height: 1.3em;
	margin-top: 12px;
	margin-bottom: 18px;
}

.news-block-seven .inner-box h2 a{
	position: relative;
	color: #222222;
	transition:all 0.3s ease;
	-moz-transition:all 0.3s ease;
	-webkit-transition:all 0.3s ease;
	-ms-transition:all 0.3s ease;
	-o-transition:all 0.3s ease;
}

.news-block-seven .inner-box h2 a:hover{
	color:var(--theme-color);
}

.news-block-seven .inner-box .text{
	position: relative;
	color:#555555;
	font-size: 16px;
	line-height: 1.7em;
	margin-bottom: 30px;
}

.news-block-seven .inner-box .read-more{
	position: relative;
	color:var(--theme-color);
	font-size: 13px;
	font-weight: 700;
	padding-left: 14px;
	padding-right: 30px;
	display: inline-block;
	text-transform: uppercase;
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	transition:all 300ms ease;	
}

.news-block-seven .inner-box .read-more:hover{
	color:#443986;
}

.news-block-seven .inner-box .read-more:before{
	position: absolute;
	content: "\f105";
	left: 0px;
	top: -1px;
	color:#443986;
	font-size: 16px;
	font-family: 'FontAwesome';
}

.news-block-seven .inner-box .read-more:after{
	position:absolute;
	content: '';
	top: 11px;
	left: 100%;
	width:600%;
	height: 1px;
	background-color: #dddddd;
}


/*News Block Eight*/

.news-block-eight{
	position: relative;
	margin-bottom: 80px;
}

.news-block-eight .inner-box{
	position: relative;
	padding-left: 472px;
}

.news-block-eight .inner-box .image{
	position: absolute;
	overflow: hidden;
	left: 0px;
	top: 0px;
	width: 420px;
}

.news-block-eight .inner-box .image:before{
  position: absolute;
  top: 0;
  left: -75%;
  display: block;
  content: '';
  width: 50%;
  height: 100%;
  background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, .3)));
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
  -webkit-transform: skewX(-25deg);
  -ms-transform: skewX(-25deg);
  transform: skewX(-25deg);
	z-index: 1;
}

.news-block-eight .inner-box:hover .image:before{
  -webkit-animation: shine 1s;
  animation: shine 1s;
}

.news-block-eight .inner-box .image img{
	position: relative;
	width:100%;
	display: block;
}

.news-block-eight .inner-box .image .overlay-box{
	position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    display: block;
    text-align: center;
}

.news-block-eight .inner-box .image .overlay-box .icon{
	position: absolute;
    left: 50%;
    top: 50%;
    width: 80px;
    height: 80px;
    color: #ff4c72;
    margin-left: -40px;
    text-align: center;
    border-radius: 50%;
    line-height: 80px;
    display: inline-block;
    padding-left: 4px;
    font-size: 60px;
    margin-top: -40px;
}

.news-block-eight .inner-box .content{
	position: relative;
	overflow: hidden;
}

.news-block-eight .inner-box .content .post-meta{
	position: relative;
}

.news-block-eight .inner-box .content .post-meta li{
	position: relative;
	color:#666666;
	font-size: 13px;
	font-weight: 700;
	padding-right: 10px;
	margin-right: 10px;
	line-height: 1.1em;
	float:left;
	border-right: 1px solid #666666;
	text-transform: uppercase;
	font-family: 'Hind', sans-serif;
}

.news-block-eight .inner-box .content .post-meta li .icon{
	position: relative;
	color:var(--theme-color);
	margin-right: 4px;
	font-weight: 600;
}

.news-block-eight .inner-box .content .post-meta li:last-child{
	border-right: none;
	margin-right: 0px;
	padding-right: 0px;
}

.news-block-eight .inner-box .content h2{
	position: relative;
	color: #222222;
	font-size: 30px;
	font-weight: 600;
	line-height: 1.3em;
	margin-top: 12px;
	margin-bottom: 18px;
}

.news-block-eight .inner-box .content h2 a{
	position: relative;
	color: #222222;
	transition:all 0.3s ease;
	-moz-transition:all 0.3s ease;
	-webkit-transition:all 0.3s ease;
	-ms-transition:all 0.3s ease;
	-o-transition:all 0.3s ease;
}

.news-block-eight .inner-box .content h2 a:hover{
	color:var(--theme-color);
}

.news-block-eight .inner-box .content .text{
	position: relative;
	color:#555555;
	font-size: 16px;
	line-height: 1.7em;
	margin-bottom: 30px;
}

.news-block-eight .inner-box .content .read-more{
	position: relative;
	color:var(--theme-color);
	font-size: 13px;
	font-weight: 700;
	padding-left: 14px;
	padding-right: 30px;
	display: inline-block;
	text-transform: uppercase;
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	transition:all 300ms ease;	
}

.news-block-eight .inner-box .content .read-more:hover{
	color:#443986 !important;
}

.news-block-eight .inner-box .content .read-more:before{
	position: absolute;
	content: "\f105";
	left: 0px;
	top: -1px;
	color:#443986;
	font-size: 16px;
	font-family: 'FontAwesome';
}

.news-block-eight .inner-box .content .read-more:after{
	position:absolute;
	content: '';
	top: 11px;
	left: 100%;
	width:600%;
	height: 1px;
	background-color: #dddddd;
}


/* News section */

.news__section {
    position: relative;
    padding: 140px 0 110px;
}

.news__block {
    position: relative;
}

.news__block .inner-box {
    background: #fff;
    position: relative;
    padding: 40px;
    box-shadow: 0px 20px 40px 0px rgba(0, 28, 64, 0.1);
    margin-bottom: 30px;
}

.news__block .category {
    position: relative;
    font-size: 14px;
    font-weight: 600;
    color: var(--theme-color);
    margin-bottom: 10px;
}

.news__block .post-meta {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    font-size: 16px;
    color: #93959e;
    font-weight: 500;
    margin-bottom: 20px;
}

.news__block .post-meta a {
    color: #443986;
}

.news__block .post-meta .author {
    margin-right: 5px;
}

.news__block .post-meta .date {
    margin-left: 5px;
}

.news__block .post-meta .author img {
    margin-right: 8px;
}

.news__block h4 {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 28px;
}

.news__block h4 a {
    color: #443986;
    transition: .5s;
}

.news__block h4 a:hover {
    color: var(--theme-color);
}

.news__block .image {
    position: relative;
    margin-bottom: 30px;
    overflow: hidden;
}

.news__block .image:before {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    content: '';
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, .2);
    border-radius: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 0;
    z-index: 1;
}

.news__block .inner-box:hover .image:before {
    -webkit-animation: circle .75s;
    animation: circle .75s;
}

.news__block .content__text {
    margin-bottom: 25px;
}