﻿/* weiya_intr start */
#weiya_intr {
	padding-bottom: 30px;
}

#weiya_intr video {
	display: flex;
	width: 80%;
	margin: 20px auto 0 auto;
}

@media (max-width: 992px){
	#weiya_intr video {
		width: 100%;
	}
}
@media (max-width: 768px) {
	#weiya_intr {
		padding: 0;
	}
}
/* weiya_intr end */

/* our_team start */
#our_team {
	padding: 30px 0;
	background: #fafafa;
}

.team_intr img {
	width: 100%;
	margin: 10px auto;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
}

#our_team .our_team_box {
	display: flex;
	flex-direction: column;
	gap: 9px;
	margin-top: 1.5rem;
}

#our_team .our_team_box div {
	display: flex;
	align-items: stretch;
	justify-content: space-between;
}

#our_team .our_team_box div img {
	width: 24.5%;
	object-fit: fill;
}

@media (max-width: 768px) {
	#our_team {
		padding: 0;
	}
}
/* our_team end */

/* our_factory start */
#our_factory a {
	background-color: #000;
	border-radius: 5px;
	width: 100%;
	border: solid #f8f8f8 1px;
	padding-top: 10px;
	padding-bottom: 10px;
	display: inline-block;
	color: #fff;
	text-align: center;
	text-decoration: none;
	margin-top: 15px;
	font-size: 14px;
	transition: all 0.3s ease;
	font-weight: bold;
}

#our_factory a:hover {
	background-color: #f8f8f8;
	color: #000;
	border: solid #000 1px;
}

.factory-box {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px;
	margin-top: 15px;
}

.factory-card {
	height: 330px;
	overflow: hidden;
}

.factory-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

@media (max-width: 992px) {
	.factory-box {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.factory-card {
		height: 300px;
	}
}
@media (max-width: 768px) {
	#our_factory {
		padding: 0;
	}
}
/* our_factory end */

/* artist */
.bigPic {
	background: linear-gradient(rgba(30, 30, 30, 0.32), rgba(30, 30, 30, 0.32)), url('../images/team_intr/banner.jpg') center center/cover no-repeat;
	height: 800px;
	margin-bottom: 0;
	margin: 0 auto;
	flex-direction: column;
}

.artist_intr {
	color: #fff;
	font-size: 30px;
	text-align: center;
}

.more_artist_btn {
	display: flex;
	justify-content: center;
	margin-top: 1.5rem
}

.more_artist_btn a {
	background: #000;
	color: #fff;
	border: none;
	padding: 12px 24px;
	cursor: pointer;
	font-size: 16px;
	font-weight: 500;
	transition: all 0.3s ease;
	text-decoration: none;
	display: inline-block;
	border-radius: 25px;
	min-width: 160px;
	text-align: center;
}

.more_artist_btn a:hover {
	transform: translateY(-5px);
	box-shadow: 0 5px 15px #9a9a9a;
}

@media (max-width: 992px) {
	.bigPic {
		height: 600px;
	}
	
	.artist_intr {
		font-size: 24px;
	}
}

@media (max-width: 768px) {
	.bigPic {
		height: 400px;
	}
	
	.artist_intr {
		font-size: 20px;
	}
}

@media (max-width: 480px) {
	.artist_intr {
		font-size: 16px;
	}
}


/* our advantage start */
#our_advantage {
	padding: 30px 0;
	/* background: linear-gradient(180deg, #e8f4f8 0%, #f0f8fb 100%); */
	background: #fafafa;
}

.advantage-grid {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	flex-wrap: wrap;
	margin-top: 40px;
	align-items: stretch;
}

.advantage-card {
	background: #fff;
	border-radius: 8px;
	padding: 35px 20px;
	text-align: center;
	flex: 1;
	min-width: 200px;
	max-width: 240px;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.advantage-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.advantage-icon {
	width: 80px;
	height: 80px;
	background: #3b82f6;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
}

.advantage-icon i {
	font-size: 36px;
	color: #fff;
}

.advantage-title {
	font-size: 20px;
	font-weight: 600;
	color: #333;
	margin-bottom: 15px;
	line-height: 1.4;
	text-transform: capitalize;
}

.advantage-description {
	font-size: 14px;
	color: #666;
	line-height: 1.6;
	text-align: center;
	margin: 0;
	flex: 1;
}

@media (max-width: 1200px) {
	.advantage-card {
		max-width: 220px;
		padding: 25px 18px;
	}
	
	.advantage-icon {
		width: 70px;
		height: 70px;
	}
	
	.advantage-icon i {
		font-size: 32px;
	}
	
	.advantage-title {
		font-size: 18px;
	}
	
	.advantage-description {
		font-size: 13px;
	}
}

@media (max-width: 992px) {
	.advantage-grid {
		justify-content: center;
		gap: 15px;
	}
	
	.advantage-card {
		max-width: 200px;
		min-width: 180px;
		padding: 25px 15px;
	}
}

@media (max-width: 768px) {
	#our_advantage {
		padding: 40px 0;
	}
	
	.advantage-grid {
		flex-direction: column;
		align-items: center;
		gap: 20px;
	}
	
	.advantage-card {
		max-width: 100%;
		width: 100%;
		min-width: auto;
		padding: 30px 25px;
	}
	
	.advantage-icon {
		width: 75px;
		height: 75px;
		margin-bottom: 20px;
	}
	
	.advantage-icon i {
		font-size: 34px;
	}
	
	.advantage-title {
		font-size: 19px;
		margin-bottom: 15px;
	}
	
	.advantage-description {
		font-size: 14px;
		text-align: center;
	}
}

@media (max-width: 480px) {
	.advantage-card {
		padding: 25px 20px;
	}
	
	.advantage-icon {
		width: 70px;
		height: 70px;
	}
	
	.advantage-icon i {
		font-size: 30px;
	}
	
	.advantage-title {
		font-size: 18px;
	}
	
	.advantage-description {
		font-size: 13px;
	}
}
/* our advantage end */