.content-box {
	width: 80%;
	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: auto;
}

.top-part {
	margin: 40px 0;
	text-align: center;
	z-index: 1;
	position: relative;
}

.top-part .text {
	max-width: 450px;
	margin: 0 auto;
	line-height: 24px;
	color: #737885;
}

.top-part h1::after {
	position: absolute;
	top: 0px;
	left: 50%;
	width: 60px;
	height: 10px;
	content: "";
	transform: translateX(-50%);
	background-color: #ff534f;
}

.top-part h1 {
	position: relative;
	padding-top: 15px;
	margin: 0;
	font-weight: 600;
	font-size: 32px;
	line-height: 40px;
	color: #0b111f;
}

.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: 10px;
	transition: all linear 0.2s;
}

.cl-box img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}

.ct-text {
	width: 100%;
	text-align: center;
	padding: 25px 0;
	position: absolute;
	transition: all linear 0.3s;
	transform: translateY(10px);
	color: #fff;
	font-size: 18px;
	text-transform: capitalize;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0, #000 100%);
}

.cl-box:hover .ct-text {
	transform: translateY(-70px);
}

.cl-box2 {
	grid-column-end: span 2;
	grid-row-end: span 2;
}

.explore {
	width: 180px;
	line-height: 40px;
	margin: 20px auto;
	text-align: center;
	font-size: 16px;
	font-weight: 600;
	color: #000;
	background-color: #ffffff;
	border: 2px solid #fff;
	box-shadow: 4px 4px 20px 0 rgb(10 148 228 / 50%);
	border-radius: 10px;
	position: relative;
}

.end {
	background-color: transparent;
	color: #000;
	font-size: 20px;
	text-align: center;
	line-height: 40px;
	box-shadow: 0px 0px 0px transparent;
	border: none;
}

.loading {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.9);
	z-index: 999;
	display: flex;
	justify-content: center;
	border: 2px solid #000;
	align-items: center;
	display: none;
}

.loading::after {
	content: '';
	display: block;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	border: 4px solid #fff;
	border-top-color: #000;
	animation: loading 1s linear infinite;
}

@keyframes loading {
	to {
		transform: rotate(360deg);
	}
}

.list2 {
	width: 95%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	margin: 20px auto;
}

.list2 .cl-box {
	width: 13%;
	height: auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-radius: 10px;
	margin-bottom: 20px;
	background-color: #D5EAE7;

}

.cl-box:hover {
	transform: translateY(-10px);
}

.list2 .cl-box img {
	width: 40%;
	/* height: 70px; */
	display: block;
}

.list2 .cl-box .ct-text {
	width: 55%;
	text-align: left;
	padding: 0;
	font-weight: 600;
	position: relative;
	transition: all linear 0.3s;
	transform: translateY(0px);
	color: #46757D;
	line-height: 1.5;
	font-size: 14px;
	text-transform: capitalize;
	background: transparent;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.type-box {
	width: 100%;
	height: auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	overflow-y: auto;

}



.tb-box {
	width: auto;
	height: auto;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	padding: 5px 55px;
	box-shadow: 0 6px 12px 0 rgba(0, 0, 0, .24);
	background-color: #084687;
	margin-right: 1px;
	margin: 0 1px 10px 0;
	white-space: nowrap;
}

.tb-box img {
	width: 50px;
	height: 50px;
	display: block;
	/* border-radius: 10px; */
	margin-right: 10px;
}

.tb-box p {
	line-height: 40px;
	color: #fff;
	font-size: 18px;
	text-align: center;
	font-weight: 600;
	text-transform: capitalize;
}

.m-title {
	width: 95%;
	margin: 20px auto 10px;
	font-size: 25px;
	text-transform: uppercase;
	font-weight: lighter;
	color: #fff;
}

.list1 .cl-box {
	width: 13%;
	margin-bottom: 20px;
	/* height: 120px; */
	/* margin: 0 17px 20px 0; */
}

@media (max-width:690px) {

	.m-title {
		font-size: 20px;
	}

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


	.tb-box img {
		width: 35px;
		height: 35px;
	}

	.tb-box p {
		font-size: 15px;
		text-align: center;
		line-height: 30px;
	}

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

	.list .cl-box {
		width: 30%;
		height: 100px;
		margin: 0 11px 20px 0;
	}

	.list1 {
		width: 90%;
		margin: 20px auto;
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
	}

	.list1 .cl-box {
		width: 48%;
		height: 120px;
		margin-bottom: 20px;
	}

	.list2 {
		width: 90%;
		flex-wrap: wrap;
	}

	.list2 .cl-box {
		width: 47%;
		border-radius: 4px;
	}
}

@media (min-width:690px) {

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


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

	.list .cl-box {
		width: 10%;
		height: 150px;
		margin: 0 20px 10px 0;
	}

	.list1 {
		width:80%;
		margin: 20px auto 0;
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		align-items: center;
	}


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

}