.comment {
	background-position: bottom center;
	background-image: url(../../images/home-rainbow-middle-bg.png);
}
.comment .list {
	display: grid;
	gap: 0 30px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin-top: 80px;
}
.comment .list .item {
	margin-top: 30px;
	padding: 35px 30px 30px;
	border-radius: 20px;
	background-color: white;
}
.comment .list .item:nth-child(-n+3) {
	margin-top: 0;
}
.comment .list .item:nth-child(2) {
	margin-bottom: -25px;
}
.comment .list .item:nth-child(5) {
	margin-top: 60px;
}
.comment .list .head {
	width: 70px;
	height: 70px;
	margin-right: 20px;
	border-radius: 50%;
}
.comment .list .name {
	font-size: 20px;
	font-weight: bold;
}
.comment .list .position {
	color: rgba(0, 0, 0, 0.5);
	margin-top: 5px;
}
.comment .list .value {
	color: rgba(0, 0, 0, 0.75);
	font-size: 18px;
	font-weight: 420;
	line-height: 25px;
	margin-top: 15px;
}
@media(max-width: 1200px) {
	.comment .list .item {
		padding: 30px 25px 25px;
	}
}
@media(max-width: 992px) {
	.comment .list {
		gap: 20px;
		margin-top: 60px;
	}
	.comment .list .item {
		padding: 20px;
		margin-top: 20px;
	}
	.comment .list .item:nth-child(5) {
		margin-top: 50px;
	}
	.comment .list .head {
		width: 60px;
		height: 60px;
	}
	.comment .list .name {
		font-size: 18px;
	}
	.comment .list .value {
		font-size: 16px;
		line-height: 23px;
	}
}
@media(max-width: 768px) {
	.comment .list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		margin-top: 40px;
	}
	.comment .list .item {
		margin: 0 !important;
	}
	.comment .list .name {
		font-size: 16px;
	}
	.comment .list .position {
		font-size: 14px;
	}
}
@media(max-width: 576px) {
	.comment .list {
		grid-template-columns: repeat(1, minmax(0, 1fr));
	}
}