.main {
	width: 96%;
	height: auto;
	margin: auto;

}

.m-title {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	text-transform: uppercase;
	/* background-color: #fff; */
	font-size: 20px;
	line-height: 35px;
	font-weight: 800;
	color: #15B153;
}

.c-title {
	width: 96%;
	padding: 25px 2%;
	text-transform: uppercase;
	background-color: #fff;
	font-size: 22px;
	text-align: center;
	color: #06222e;
	border-bottom: 3px solid gainsboro;
	border-right: 2px solid #fff;
	border-radius: 10px 10px 0 0;

}

.mt-left {
	width: auto;
	line-height: 1.5;
	display: flex;
	align-items: center;
	padding: 5px;
	color: #15B153;
}

.list1,
.list2,
.list3,
.list4 {
	width: 100%;
	height: auto;
	margin: 5px 0 20px;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;

}

.explore {
	width: 200px;
	line-height: 45px;
	margin: 20px auto;
	text-align: center;
	font-size: 16px;
	font-weight: 600;
	color: #000;
	border-radius: 25px;
	overflow: hidden;
	background-color: #ffffff;
	box-shadow: 4px 4px 20px 0 rgb(10 148 228 / 50%);
	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: absolute;
	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);
	}
}

.li-box {
	margin-bottom: 20px;
	transition: all linear 0.3s;
	overflow: hidden;
	border-radius: 10px;
	position: relative;
	box-shadow: 4px 4px 6px 0 rgba(0, 0, 0, .3);
	/* padding: 5px; */
	/* border: 1px solid rgba(255, 255, 255, .25);; */
}

.li-box:hover .li-text {
	transform: translateY(-100%);
}

.li-img {
	width: 100%;
	height: 100%;
	display: block;
	border-radius: 10px;
}




.li-box {
	width: 11.5%;
	height: 130px;
	border: 3px solid #DAE7F8
	/* margin-right: 20px; */

}
.li-box:hover{
	border: 3px solid #15B153;
}

.li-title {
	font-size: 12px;
}


.list1 .li-img {
	width: 100%;
	height: 100%;
}

.list2 .li-box,
.list4 .li-box {
	width: 16%;
	height: 180px;
	position: relative;

}

.list3 .li-box {
	width: 13.5%;
}





.list2 .li-mb,
.list4 .li-mb {
	display: block;
}





@media (max-width:1000px) {

	.list1 .li-box {
		width: 30%;
		height: 95px;
	}



	.list2 .li-box {
		width: 47%;
		height: 110px;
	}

	.list4 .li-box .li-mb {
		display: none;
	}

	.list3 .li-box {
		width: 90%;
		height: 190px;
		margin: 0 auto 20px !important;
	}

	.list3 .li-text {
		transform: translateY(-100%);

		background: linear-gradient(0deg, #000938 0%, #00093880 51.56%, #00093800 61.46%);
	}



	.list4 .li-box {
		width: 47%;
		height: 100px;
	}

}