#dd-history {
	padding: 110px 0;
}
.history-title-wrap {
	text-align: center;
	max-width: 80%;
	margin: 0 auto 60px;
}
.history-title-wrap h2 {
	margin: 0 auto 25px;
}
.history-title-wrap p {
	font-size: 20px;
	font-weight: 300;
	line-height: 36px;
	color: var(--main);
}
.history-img img {
	border-radius: 40px;
}
.history-wrap {
	display: flex;
	flex-wrap: wrap;
}
.history-list {
	display: flex;
	flex-direction: column;
	gap: 30px;
}
.history-inner {
	height: 33.33333333%;
	background: var(--bckg);
	border-radius: 20px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 15px 30px 25px;
}
.history-inner h3 {
	font-size: 70px;
	font-weight: 400;
	line-height: 100px;
	color: var(--main);
	margin: 0;
}
.history-inner p {
	font-size: 18px;
	font-weight: 300;
	line-height: 26px;
	letter-spacing: 0.01em;
	color: var(--main);
	margin: 0;
	max-width: 75%;
}
@media only screen and (max-width: 1500px) {
	#dd-history {
		padding: 90px 0;
	}
	.history-inner h3 {
		font-size: 65px;
	}
	.history-title-wrap p {
		font-size: 18px;
		line-height: 30px;
	}
}
@media only screen and (max-width: 1200px) {
	.history-title-wrap {
		max-width: 90%;
	}
	.history-inner h3 {
		font-size: 50px;
		line-height: 60px;
	}
	.history-inner p {
		font-size: 16px;
		max-width: unset;
	}
}
@media only screen and (max-width: 991px) {
	.history-title-wrap {
		max-width: unset;
	}
	.history-img {
		margin-bottom: 30px;
	}
	.history-img img {
		border-radius: 20px;
	}
	.history-inner h3 {
		font-size: 44px;
		margin-bottom: 25px;
	}
}
@media all and (min-width: 768px) and (max-width: 991px){
	.history-list {
		flex-direction: row;
	}
	.history-inner {
		width: 33.33333333%;
		height: 100%;
		padding-left: 25px;
		padding-right: 25px;
	}	
	.history-title-wrap p {
		max-width: 80%;
		margin-left: auto;
		margin-right: auto;
	}
}
@media only screen and (max-width: 767px) {
	#dd-history {
		padding: 70px 0;
	}
	.history-title-wrap {
		margin-left: 15px;
		margin-right: 15px;
	}
}