#dd-three-boxes {
    padding-bottom: 30px;
}
#three-boxes-title {
	margin-left: 15px;
	margin-bottom: 40px;
	max-width: 60%;
}
.three-boxes-inner {
	display: flex;
	flex-wrap: wrap;
}
.dd-boxes_inner {
	background: var(--bckg);
	border-radius: 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	text-align: center;
	height: 100%;
	padding: 50px 35px;
}
.dd-boxes_inner h3 {
	font-size: 20px;
	font-weight: 500;
	line-height: 30px;
	color: var(--main);
	margin: 30px 0;
}
.three-boxes-link {
	font-size: 15px;
	font-weight: 600;
	line-height: 18px;
	color: var(--main);
	transition: .5s ease;
}
.three-boxes-link:hover {
	color: var(--main-hover);
	transition: .5s ease;
}
@media screen and (max-width: 1200px) {
	.dd-boxes_inner {
		padding: 40px 20px;
	}
	.dd-boxes_inner h3 {
		font-size: 18px;
		line-height: 28px;
	}
}
@media screen and (max-width: 991px) {
	.three-boxes-inner > div {
		margin-bottom: 30px;
	}
	#three-boxes-title {
		max-width: 80%;
	}
}
@media screen and (max-width: 767px) {
	#three-boxes-title {
		max-width: unset;
		text-align: center;
	}
}