


.overview_title {
	width: 100%;
	height: 60vh;
	background-image: url("../images/back_ground.jpg");
	background-size: cover;
	background-repeat: no-repeat;
	position: relative;
	z-index: -1;
}

.overview_title::before {
	content: '';
	background-color: rgba(0, 0, 0, .5);
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
}

.overview_title h2 {
	font-size: 50px;
	color: #fff;
	position: absolute;
	top: 34%;
	left: 10%;
	font-weight: normal;
	font-family: 'FuturaB';
}

.overview_title img {
	width: 40px;
	height: auto;
	margin-right: 20px;
}

.overview_span {
	width: 100%;
	display: block;
	font-size: 20px;
	margin-left: 60px;
	font-weight: normal;
}



.overview {
	max-width: 900px;
	width: 95%;
	height: auto;
	margin: 0 auto;
	background-color: #fff;
	padding: 40px;
	padding-bottom: 50px;
	box-sizing: border-box;
	margin-bottom: 15%;
	z-index: 10;
	margin-top: -8%;
	border-radius: 16px;
}

.overview-flexbox h2{
	font-size: 28px;
	border-left: solid 4px #F18E57;
	padding: 10px;
}

.overview-flexbox{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
}



.representative-box{
	display: flex;
	align-items: center;
	margin-left: auto;
}

.representative-box p{
	letter-spacing: 2px;
	margin: 0 20px;
}

.representative-box img{
	width: 100px;
	height: 100px;
	object-fit: contain;
}

.main-text{
	font-size: 18px;
	margin: 3vh 0;
	line-height: 2;
	letter-spacing: 0.5px;
	text-align: justify;
	text-justify: inter-ideograph;

	columns: 2 15em;
	/* column-rule: 1px solid #cdcdcd; */
	column-gap: 3em;
}

.history-img-container{
	width: 47%;
}

.history-img-container img{
	width: 100%;
}

.history-img-container p{
	font-size: 18px;
	margin: 1vh 0;
	line-height: 1.5;
	letter-spacing: 0.5px;
	text-align: justify;
	text-justify: inter-ideograph;
}

@media screen and (max-width:768px){
	.overview{
		padding: 20px;
		margin-top: -32%;
	}

	.overview-flexbox h2{
		font-size: 22px;
	}

	.representative-box img{
		width: 80px;
		height: 100px;
		margin: 10px 0;
	}
	.main-text{
		font-size: 16px;
	}
}

@media screen and (max-width:635px){
	.history-img-container{
		width: 100%;
	}
	.history-img-container p{
		font-size: 16px;
	}
}

@media screen and (max-width:600px){
	.overview_title img{
		display: block;
	}

	.overview_span{
		margin-left: 0;
	}
}