.mt {
    background: var(--color-white);
    border: 1px solid var(--color-main);
    border-radius: 10px;
    padding: 20px !important;
}

.material-premium-box {
	background: var(--color-white);
	border: 1px solid rgba(196, 150, 70, .15);
	border-radius: 20px;
	padding: 30px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
	margin: 30px 0;
}

.material-heading {
	text-align: center;
	margin-bottom: 30px;
}

.material-heading:after {
	content: '';
	display: block;
	width: 80px;
	height: 4px;
	background: var(--color-main);
	margin: 15px auto 0;
	border-radius: 30px;
}

.material-section {
	margin-bottom: 15px;
}

.material-section:last-child {
	margin-bottom: 0;
}

.material-section h3 {
	color: var(--color-main);
	font-size: 22px;
	margin-bottom: 12px;
	font-weight: 600;
}

.material-section p {
	color: var(--color-black);
	line-height: 1.9;
	margin: 0;
}

.material-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.material-list li {
	position: relative;
	padding-left: 38px;
	margin-left: unset !important;
	margin-bottom: 14px;
	line-height: 1.8;
	color: var(--color-black);
}

.material-list li:last-child {
	margin-bottom: 0;
}

.material-list li:before {
	content: "✓";
	position: absolute;
	left: 0;
	top: 3px;
	width: 24px;
	height: 24px;
	background: #C49646;
	color: var(--color-white);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 13px;
	font-weight: 700;
}

@media(max-width:768px) {
	.material-premium-box {
		padding: 20px;
	}

	.material-heading h2 {
		font-size: 24px;
	}

	.material-section h3 {
		font-size: 18px;
	}

	.material-section p,
	.material-list li {
		font-size: 15px;
	}
}