.display-grid {
display:grid;
place-items:center;
}

.gridrow {
	width: 80%;
	height: 100%;
	max-width: 1170px;
	
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 50px 30px;
}

.gridright {
	width: 550px;
}
.gridrow .gridright {	
	overflow: hidden;
}

.gridrow .gridright img{
	width: 100%;
	height: 100%;
	object-fit: fill;
	
}

.gridrow .gridleft{
	display: flex;
	align-items:center;
}

.gridrow .gridleft .gridcontent {
	padding-right: 20px;
}

.gridrow .gridleft .gridcontent P {
	font-size: 16px;
	line-height: 26px;
	padding-bottom: 15px;
}

@media (max-width: 768px){
	.gridright{
		width:350px;
	}
}

@media (max-width: 768px){
	.gridrow .gridleft .gridcontent {
		margin-right : 0px;
		padding-right: 0px;
		width: 350px;
	}
}

.width450 {
	width:450px;
}

@media (max-width: 768px){
	.width450{
		width:320px;
	}
	
}

@media (max-width: 768px){
	.gridrow {
		width: 90%;
		grid-template-columns: 1fr;
	}
}


@media (max-width: 768px){
	.post .post-details{
		max-width: 430px;
	}
}
.dashed-line {
  border: 1.5px dashed #2359A2;
  width: 90%;
}



 h2 {       
	margin: 30px auto;
	color: #2359A2;
	text-align: center;
	font-size: 25px;
	font-weight: bold;
	max-width: 700px;
	position: relative;
}
h2:before {
	content: "";
	display: block;
	width: 200px;
	height: 5px;
	background: #2359A2;
	left: 0;
	top: 20%;
	position: absolute;
}
h2:after {
	content: "";
	display: block;
	width: 200px;
	height: 5px;
	background: #2359A2;
	right: 0;
	top: 20%;
	position: absolute;
}

@media (max-width: 768px){
	h2:before , h2:after {
		width:100px;
	}
}

 h3 {       
	margin: 30px auto;
	color: #c79f07;
	text-align: center;
	font-size: 20px;
	font-weight: bold;
	max-width: 800px;
	position: relative;
}
