.history-section {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	background-color: #F8F8F8;
}
.image-column{
	width:100%;
}
.image-column img{
	width: 100%;
	height: auto;
	object-fit: cover;
}
.text-column {
	flex: 1;
	min-width: 300px;
	padding: 100px 15% 100px 122px;
	color:#555555;
	font-size: 15px;
	line-height: 28px;
}
.text-column h2 {
	color:#231F20;
	font-size: 18px;
	font-weight: 500;
	text-align: center;
	letter-spacing: 0.1em;
	line-height: 24px;
	margin-top: 0;
	margin-bottom: 69px;
	position: relative;
}
.text-column h2:after{
	content: '';
	width: 100%;
	max-width: 275px;
	height: 2px;
	background-color: #231F20;
	position: absolute;
	left: 0;
	right: 0;
	bottom: -12px;
	margin: 0 auto;
}
.btn-block{
	text-align: center;
	margin-top: 48px;
}
.read-more-button{
	color: #231F20;
	font-size:12px;
	font-weight: 500;
	line-height:150%;
	letter-spacing: 1.2px;
	text-decoration: none;
	text-transform: uppercase;
	padding: 12px;
	border: 1px solid #231F20;
	cursor: pointer;
}
.read-more-button:hover{
	color:#BFBFBF;
}
@media(min-width: 1200px){
	.image-column{
		flex: 1;
		max-width: 900px;
		min-width: 900px;
	}
}
@media(max-width:1199px){
	.image-column{
		flex: 1;
		max-width: 300px;
		min-width: 300px;
	}
	.text-column{
		padding: 40px 15px 50px 30px;
	}
}
@media (max-width: 767px) {
	.text-column{
		padding: 40px 20px 50px 20px;
		h2{
			margin-bottom: 40px;
		}
	}
}
