.section-3-content {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: repeat(2, 1fr);
	grid-column-gap: 16px;
	grid-row-gap: 16px;
	margin-bottom: 35px;
}

.section-3-card {
	box-sizing: border-box;
	padding-bottom: 34px;
	padding-left: 41px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	border-radius: 10px;
	text-align: left;
	width: 598px;
	height: 350px;
	cursor: pointer;
}

.section-3-card:hover {
	background-image: linear-gradient(
		90deg,
		rgba(255, 255, 255, 0),
		rgba(255, 255, 255, 0.5),
		rgba(255, 255, 255, 0)
	);
	background-size: 40px 100%;
	background-repeat: no-repeat;
	background-position: left -40px top 0;
	animation: shine 0.7s ease;
}
@keyframes shine {
	100% {
		background-position: right -40px top 0;
	}
}

.section-3-card .section-3-title {
	font-size: 35px;
	font-weight: 600;
	color: #ffffff;
	line-height: 1.05;
}

.section-3-card .section-3-en {
	font-size: 30px;
	color: #ffffff;
	line-height: 1.05;
}

.section-3-card-1 {
	grid-area: 1 / 1 / 2 / 2;
	/* background: url(../static/images/3-card-1.png) no-repeat center; */
	/* background-size: cover; */
	position: relative;
}
/* .section-3-card-1-icon {
	position: absolute;
	width: 432px;
	right: 41px;
	bottom: 51px;
	height: 267px;
} */
.section-3-card-2 {
	grid-area: 2 / 1 / 3 / 2;
	/* background: url(../static/images/3-card-2.png) no-repeat center; */
	background-size: cover;
	position: relative;
}
/* .section-3-card-2-icon {
	position: absolute;
	width: 423px;
	height: 218px;
	right: 41px;
	bottom: 83px;
} */
.section-3-card-3 {
	grid-area: 1 / 2 / 3 / 3;
	/* background: url(../static/images/3-card-3.png) no-repeat center; */
	background-size: cover;
	position: relative;
	height: 715px;
}
/* .section-3-card-3-icon {
	position: absolute;
	width: 346px;
	height: 482px;
	right: 65px;
	top: 75px;
} */

.section-3-bg {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
}
