.bgcover{
	width: 100%;
	height: 100vh;
	background-image: url('../images/home_bg1.jpg');
	background-repeat: no-repeat;
	background-position: bottom center;
	background-size: cover;
	position: absolute;
	z-index: 5;
	top: 0;
	left: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-end;
	opacity: 0.7;
}

.page-block.insight{
	padding: 20px 20px;
	box-shadow: 0 0 10px rgba(0,0,0,0.4);
}

.page-block.insight .btn{
	margin: 0 5px
}
.aa-block{
	display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* grid-auto-rows: 1fr; */
    grid-column-gap: 20px;
    grid-row-gap: 20px;
	margin: 30px 0;
	padding: 0 20px;
}

.aa-item{
	background-color: rgba(255,255,255,0.9);
	border-radius: 8px;
	overflow: hidden;
	cursor: pointer;
	box-shadow: 0 0 10px rgba(0,0,0,0.4);
}
.aa-photo-block{
	overflow: hidden;
	position: relative;
	width: 100%;
	padding-top: 67%;
}
.aa-photo{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	transition: 0.5s;
}
.aa-item:hover .aa-photo{
	transform: scale(1.1,1.1);
}
.aa-tag{
	padding: 10px 15px 0;
	color:gray;
	font-size: 16px;
}
.aa-title{
	padding: 0 15px 20px;
	font-weight: bold;
	font-size: 20px;
}
.aapath{
	padding: 0 0 0 25px;
	color: white;
	border-left: 5px solid #006934;
	line-height: 20px;
	margin-left: 20px;
	margin-bottom: 25px;
	mix-blend-mode: difference;
	text-shadow: 0 0 5px rgba(0,0,0,0.7);
	display: flex;
	align-items: flex-end;
	justify-content: flex-start;
	flex-wrap: wrap;
	font-weight: 400;
  }
  .aapath-tw{
	font-size: 20px;
  }
  .aapath-tw a{
	color: white;
  }
.sun-editor-editable{
	background-color: transparent;
}
.ac-title{
	font-size: 26px;
	color:#006934;
	font-weight: bold;
}
.pager{

	background: rgba(255,255,255,0.6);
  }
@media(max-width:991px){
	.aa-block{
		grid-template-columns: repeat(2, 1fr);
	}
}
@media(max-width:576px){
	.aa-block{
		grid-template-columns: repeat(1, 1fr);
		grid-column-gap: 0px;
		padding: 0;
		grid-row-gap: 30px;
	}
	.aa-item{
		border-radius: 0;
	}
	.page-block.insight{
		border-radius: 0;
	}
}
