.topmain-wrapper{
	display: grid;
	grid-template-columns: 60% auto;
  	grid-gap: 12px;
  	padding: 0;
}

.dd-grid-item {
	overflow: hidden;
	position: relative;
	min-height: 350px;
	border-radius: 0;
}

.topmain-wrapper .dd-grid-content {
	position: absolute;
	padding: 0 10px;
	width: 100%;
	background-color: #FFF;
	bottom: 0;
	left: 0;
	border-radius: 0;
}

.topmain-wrapper .dd-grid-content p {
	margin: 0;
	padding: 0;
	display: none;
}

.topmain-wrapper .dd-grid-content h2 {
	font-family: "Roboto Slab", Sans-serif;
	font-size: 1.7em;
    font-weight: 600;
    line-height: 1.1em;
}

.topmain-wrapper .dd-grid-content h2 a {
	color: #001E44;
	text-decoration: none;
}

.topmain-wrapper .dd-grid-content h2 a:hover {
	color: #009CDE;
}

.dd-grid-img a.overlay {
	position: absolute;
	width: 100%;
	height: 100%;
	display: block;
	top: 0;
	bottom: 0;
	transition: 0.3s;
	background-image: linear-gradient(to right, rgba(0,0,0,0), rgba(0,0,0,.9));
	opacity: 40%;
}

.dd-grid-img a.overlay:hover {
	opacity: 70%;
}

.dd-grid-img {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 100px;
	right: 0;
	min-height: 200px;
	overflow:hidden;
	display: flex;
	justify-content: center;
}
		
.topmain-wrapper .dd-grid-item .dd-grid-img img{
	width: 100%;
	object-fit: cover;
	height: 100%;
	display: block;
}


.dd-grid-item:nth-child(1) {
  	grid-column: span 1;
	grid-row: span 2;
	padding: 0 20px 0 0;
	border-right: dotted #cfcfcf 1px;
}

.topmain-wrapper .dd-grid-item:nth-child(1) .dd-grid-content h2 {
	font-size: 3em;
}

.topmain-wrapper .dd-grid-item:nth-child(1) .dd-grid-content p {
	display: block;
}

.dd-grid-item:nth-child(1) .dd-grid-img {
	right: 20px;
	bottom: 230px;
}

.dd-grid-item:nth-child(1) .dd-grid-content {
	right: 20px;
}


.dd-grid-item:nth-child(2) {
  	grid-column: span 1;
	grid-row: span 1;
}

.dd-grid-item:nth-child(3) {
  	grid-column: span 1;
	grid-row: span 1;
}



@media screen and (max-width: 768px) {

.topmain-wrapper{
	display: grid;
	grid-template-columns: auto;
}

.topmain-wrapper .dd-grid-item:nth-child(1) .dd-grid-content h2 {
    font-size: 1.3em;
}

.dd-grid-item:nth-child(1) {
  	grid-column: span 1;
	grid-row: span 2;
	padding: 0;
	border: none;
}

.topmain-wrapper .dd-grid-item:nth-child(1) .dd-grid-content p {
    display: none;
}

.dd-grid-item {
	min-height: 350px;
}

.dd-grid-item:nth-child(1) {
  	grid-column: span 1;
	grid-row: span 1;
}

.dd-grid-item:nth-child(1) .dd-grid-img {
	right: 0;
	bottom: 0;
}

.topmain-wrapper .dd-grid-content h2 {
	margin: 6px 0;
	font-size: 1.2em;
	line-height: 1.3em;
	font-weight: 500;
}

.topmain-wrapper .dd-grid-content h2 a {
	color: #000;
}

.topmain-wrapper .dd-grid-item:nth-child(1) .dd-grid-content h1 {
	font-size: 1.2em;
	line-height: 1.3em;
}

.topmain-wrapper .dd-grid-content {
	padding: 10px;
}

.topmain-wrapper .dd-grid-content p {
	font-size: .9em;
	line-height: 1.3em;
}

}