/*BENEFTIS section---------*/
#section-benefits-grid {
	display: grid;
	grid-template-columns: 1fr;
	grid-template-rows: min-content min-content 1fr;
	grid-template-areas: 
	"title"
	"description"
	"list"
	;
	
}

#benefits-title {
	grid-area: title;
	text-align: center;

}

#benefitdescription {
	grid-area: description;
	/* width: 100%; */
	padding-left: 25px;
	padding-right: 25px;

	margin-bottom: 10px;
	text-align: center;
	font-size: 25px;
	font-style: italic;
}

#benefits-list {
	grid-area: list;
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: 1fr;
	grid-template-areas:
	"resources cost"
	;
	grid-gap: 10px;
	padding: 10px;
	

}

#resource{
	grid-area: resources;
}

#cost{
	grid-area: cost;
}

.centerAll {
	justify-content: center;	
	align-items: center;
	text-align: center;
	vertical-align: middle;
}

.benefit-list-grid {
	height: 350px;
	grid-row: 1/-1;
	display: grid;
	grid-template-columns: 1fr;
	grid-template-rows: min-content 1fr;
	justify-self: center;
}

.benefit-list-title {
	grid-column: 1/2;
	grid-row: 1/2;

	font-family: "Georgia", "Quicksand", "serif" !important;
	font-size: 20px !important;
	font-weight: bold !important;
	font-style: oblique !important;
	color: blue !important;
	text-align: center !important;
	margin-bottom: 7px;
	z-index: 5;
}

.benefit-text {
	border-radius: 25px;
	width: 450px;
	max-height: 350px;
	max-width: 450px;
	
}



.resourceImage{
	grid-column: 1/2;
	grid-row: 2/3;

	height: 100%;
	background-image: url('../images/people-taking-part-business-event.jpg') ;
	background-repeat: no-repeat;
	background-size:cover;
	background-position: center;
	border-radius: inherit;

	filter: brightness(50%);
	/* z-index: 4; */
 
}

.benefit2Image{
	grid-column: 1/2;
	grid-row: 2/3;

	background-image: url('../images/heap-money-office-table-telephone.jpg') ;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	border-radius: inherit;

	filter: brightness(50%);
}

.benefit3Image{
	grid-column: 1/2;
	grid-row: 2/3;
	background-image: url('../images/businessbackground2.jpg') ;
	background-color: black;
	background-repeat: no-repeat;
	background-size: cover;
	border-radius: inherit;

	filter: brightness(50%);
}

.benefit-list-text {
	display: flex; /*helps to center information by using justify and align */
	grid-column: 1/2;
	grid-row: 2/3;
	height: 100%;
	border-radius: inherit;
	text-align: center;
	padding: 6px;
	font-size: 20px;
	color: white;
	font-weight: bolder;	
	filter:brightness(4);
	justify-content: center;
	align-items: center;

	z-index: 6;
}

.imageBenefit {
	grid-column: 1/2;
	grid-row: 2/3 ;
	border-radius: inherit;
	height: 100%;
	width: 100%;
	filter: brightness(70%);	
	margin: 0px;
}



.subtext {
	text-align: left;
}

.subtext li {
	margin-left: 20px;
}

#benefit-3{
	grid-column: 3/4;
}
