#content {
	width: 85%;
	min-height: 100vh;
	display: flex;
	flex-wrap: wrap;
	margin: 0 auto;
	padding: 100px 0;
	justify-content: flex-start;
	gap: 3.5%;
}
#content a {
	display: block;
	width: 31%;
	opacity: 1;
	margin-bottom: 1%;
	transition: opacity 1s;
	animation-name: loading;
	animation-iteration-count: 1;
	animation-timing-function: ease-in-out;
	animation-duration: 0.6s;
}
@keyframes loading {
	0% {
		opacity: 0;
	}
	50% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
#content .category {
	width: 100%;
	font-size: 20px;
	display: flex;
	flex-wrap: nowrap;
	white-space: nowrap;
	gap: 30px;
	color: #fff;
	align-items: center;

	padding-top: 10px;
	margin-bottom: 30px;
	font-weight: bolder;
}
#content .category::after {
	content: '';
	display: block;
	width: 100%;
	height: 2px;
	background-color: #fff;
}
#content .card {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 12px;
}
#content .title {
	width: 100%;
	display: flex;
	justify-content: space-between;
	font-size: 20px;
	font-weight: bolder;
	color: #fff;
	padding: 0 10px;
	margin-bottom: 10px;
	white-space: nowrap;
	align-items: baseline;
	overflow: hidden;
	text-overflow: ellipsis;
}
#content .title .titleEng {
	font-size: 16px;
	font-weight: bold;
}
#content .tourGuide {
	width: 100%;
	font-size: 16px;
	font-weight: normal;
	padding: 0 10px;
	color: #fff;
	line-height: 1.5;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4;
}
#content .card .imageContainer.changeTo75 {
	width: 95%;
	box-shadow: 5px 5px 0 0 #fff;
	top: 0;
	left: 0;
	border-radius: 30px;
	margin-bottom: 10px;
	overflow: hidden;
	transition: all, 0.3s;
}
#content a:hover .card .imageContainer.changeTo75 {
	width: 98%;
	top: -10px;
	left: -10px;
	box-shadow: 10px 10px 0 0 #fff;
}
#content .card .imageContainer.changeTo75::before {
	padding-top: 75%;
}

@media screen and (max-width: 768px) {
	#content a {
		width: 48%;
		margin-bottom: 3%;
	}
	#content .card .imageContainer.changeTo75 {
		border-radius: 10px;
	}
	#content .card {
		gap: 5px;
	}

	#content .title {
		font-size: 14px;
		padding: 0;
		margin-bottom: 10px;
	}
	#content .title .titleEng {
		font-size: 12px;
	}
	#content .tourGuide {
		font-size: 12px;
		padding: 0;
		line-height: 1.2;
		-webkit-line-clamp: 4;
	}
}
