@charset "UTF-8";
/* CSS Document */

.contactbox {
	display: flex;
	justify-content: space-between;
	margin-top: 40px;
}
.contactbox  li {
	width: 50%;
	padding: 0 40px;
	box-sizing: border-box;
}
.contactbox  li:first-child {
	border-right: 1px solid #e0dede;
}

.contactbox  li h4 {
	text-align: center;
	font-size: 24px;
	font-weight: 600;
}
.contactbox  li p {
	text-align: center;
	font-size: 16px;
}


@media screen and (max-width:768px) {
	
.contactbox {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	margin-top: 30px;
}
.contactbox  li {
	width: auto;
	padding: 0 20px;
	box-sizing: border-box;
	padding-bottom: 30px;
	margin-bottom: 30px;
}
.contactbox  li:first-child {
	border-right: 0px solid #e0dede;
	border-bottom: 1px solid #e0dede;
}

.contactbox  li h4 {
	text-align: center;
	font-size: 18px;
	font-weight: 600;
}
.contactbox  li p {
	text-align: center;
	font-size: 14px;
}

	
}