.m-title {
	width: 100%;
	border-bottom: 1px solid #ccc;
	margin: 20px 0;
	color: #fff;
	font-size: 25px;
	padding: 15px 0;
	font-weight: 600;
	text-transform: capitalize;
}

.list {
	width: 100%;
	height: auto;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: wrap;
}

.list .cl-box {
	width: 12%;
	height: auto;
	margin: 0 20px 20px 0;
	padding: 3px;
	background-color: rgba(100, 10, 199);
}

.list1 {
	width: 100%;
	margin: 20px auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
}

.list1 .cl-box {
	width: 13%;
	height: auto;
	margin: 0 22px 20px 0;
	padding: 4px;
	background-color: rgba(100, 10, 199, 0.7);
	color: #fff;
}

.list1 .cl-box img {
	height: 130px;
}



@media (max-width:690px) {
	.c-box{
		width: 96%;
	}
	.content-box {
		width: 90% !important;
		grid-template-columns: repeat(auto-fill, minmax(80px, 1fr)) !important;
		grid-auto-rows: minmax(80px, 80px) !important;
	}

	

	.list1 .cl-box {
		width: 30%;
		margin: 0 15px 20px 0;
	}

	.list1 .cl-box:nth-of-type(3n) {
		margin-right: 0px;
	}

	/* .list1 .cl-box:nth-of-type(7n) {
		margin-right: 10px;
	} */
	.list1 .cl-box img {
		height: 100px;
	}
}

@media (min-width:690px) {
	.list1 .cl-box:nth-of-type(7n) {
		margin-right: 0px;
	}

	.cl-box:nth-last-of-type(5) {
		grid-column-end: span 2;
		grid-row-end: span 1 !important;
	}
	.cl-box:nth-last-of-type(1) {
		grid-column-end: span 2;
		grid-row-end: span 1 !important;
	}



}

.content-box {
	width: 100%;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
	grid-gap: 20px;
	grid-auto-rows: minmax(100px, 100px);
	grid-auto-flow: dense;
	padding: 10px;
	margin: 10px auto;
}

.cl-box {
	position: relative;
	overflow: hidden;
	display: block;
	box-sizing: border-box;
	box-shadow: 0 6px 12px 0 rgba(0, 0, 0, .24);
	border-radius: 5px;
	background-color: #fff;
	align-content: flex-end;
}

.cl-box img {
	width: 100%;
	/* height: 100%; */
	display: block;
	border-radius: 5px 5px 0 0;
	object-fit: cover;
}

.ct-text {
	width: 98%;
	text-align: center;
	transition: all linear 0.3s;
	color: #fff;
	padding: 5px 1%;
	line-height: 1.5;
	font-size: 16px;
	text-transform: capitalize;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;

}

.content-box .cl-box .ct-text {
	display: none;
}

.content-box .cl-box img {
	height: 100%;
}

.cl-box:nth-of-type(8n) {
	grid-column-end: span 2;
	grid-row-end: span 2;
}