.cards {
	margin: 3rem;
	display: grid;

}

.container {
	max-width: 1100px;
	margin: 0 auto;
	overflow: auto;
}

.ehead{
	white-space: nowrap;

}
.col{
	margin:0 2rem;
	display: flex;
	justify-content: center;
	align-items: center;
}

.counters {
	background: #F5F5F5;
	color: #000;
	padding: 40px 20px;
	border-top: 3px lightskyblue solid;
}

.container {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
}



.counters .counter {
	font-size: 45px;
	margin: 10px 0;
}

.exhibitorCards:hover{
	box-shadow: 5px 5px 10px rgba(0,0, 0, .2);
}

@media (max-width: 700px) {
	.ehead{
		white-space: normal;
		text-align: center;
	}
	.container {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}

	.child-container{
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-self: center;
	}

	.exhibitorCards:hover{
		box-shadow: 5px 5px 10px rgba(0,0, 0, .2);
	}
	/* .counters .container > div:nth-of-type(1),
	.counters .container > div:nth-of-type(2) {
		border-bottom: 1px lightskyblue solid;
		padding-bottom: 20px;
	} */
}