.why { 
	display: flex;
	padding: 8rem 14rem;
	gap: 5rem;
}

.why .why-title {
	flex: 1;
	max-width: 32rem;

	font-size: 5.2rem;
	font-weight: 700;
	display: flex;
	align-items: center;
	line-height: 5.5rem;
	z-index: 1;
}

.why .why-content {
	flex: 1;
	display: flex;
	align-items: center;
	gap: 2rem;
}

.why .why-content .content-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2rem;
	width: 100%;
}

.why-content .content-item .item-image {
	display: flex;
	justify-content: center;
	align-items: center;
}

.why-content .content-item .item-image img {
	width: 100%;
	max-width: 12rem;
}

.why-content .content-item .item-title {
	font-size: 2.9rem;
	font-weight: 700;
}

.why-content .content-item .item-lists {
	padding: 0 1.5rem;
	display: flex;
	flex-direction: column;
	gap: .4rem;
}

.why-content .content-item .item-lists .list {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.why-content .content-item .item-lists .list .list-dot {
	width: .6rem;
	height: .6rem;
	background-color: var(--mc-white-1);
} 

/* Responsive */
@media only screen and (max-width: 1350px) {
	.why-content .content-item .item-title {
		font-size: 2.5rem;
	}

	.why .why-content .content-item {
		width: 100%;
		min-width: 19.6rem;
	}
}

@media only screen and (max-width: 1024px) {
	.why { 
		gap: 4rem;
		flex-direction: column;
		padding: 8rem;
	}

	.why .why-title {
		max-width: unset;
	}

	.why .br-hide {
		display: none;
	}
}

@media only screen and (max-width: 768px) {
	.why .why-content {
		justify-content: center;
		flex-wrap: wrap;
	}

	.why .why-content .content-item {
		min-width: 21.5rem;
		max-width: 21.5rem;
	}
}

@media only screen and (max-width: 540px) {
	.why { 
		padding: 8rem 2rem;
	}

	.why .why-title {
		font-size: 4rem;
		line-height: 4.3rem;
	}
}

@media only screen and (max-width: 425px) {

}

@media only screen and (max-width: 320px) {

}

@media only screen and (max-width: 280px) {

}