.page .contact {
	background-color: #F8F8F8;
}

.page .contact .container {
	display: flex;
	flex-direction: column;
	padding: 35px 10px;
}

.page .contact .container h1 {
	font-size: 32px;
	line-height: 35px;
	font-weight: 700;
	color: #001233;
	text-align: center;

	margin: 0px 0px 40px 0px;
	padding: 0;
}

.page .contact .container h2 {
	font-size: 16px;
	line-height: 19px;
	font-weight: 500;
	color: #9CB3B9;
	text-align: center;

	margin: 0px 0px 30px 0px;
	padding: 0;
}

.page .contact .container .boxs {
	display: flex;
	justify-content: center;
}

@media screen and (max-width:1000px) {	  
	.page .contact .container .boxs {
		flex-direction: column;
	} 
}

.page .contact .container .boxs .box {
	font-family: 'Raleway', sans-serif;
	font-size: 14px;
	line-height: 20px;
	color: #FFFFFF;
	font-weight: 600;
	
	padding: 20px;
	margin: 0px 20px;
	display: flex;
	flex-direction: column;
	width: 100%;
	max-width: 285px;

	border: 1px solid #D1D7ED;
	box-shadow: 0px 4px 11px rgba(0, 0, 0, 0.06);
	border-radius: 5px;
}

@media screen and (max-width:1000px) {	  
	.page .contact .container .boxs .box {
		margin: 20px;
		max-width: calc(100% - 40px);
	} 
}

.page .contact .container .boxs .box h1 {
	font-family: 'Raleway', sans-serif;
	font-size: 14px;
	line-height: 20px;
	color: #001233;
	font-weight: 600;
	
	display: flex;
	padding: 0;
	margin: 0px 0px 20px 0px;
}

.page .contact .container .boxs .box h1 img {
	margin-right: 10px;
}

.page .contact .container .boxs .box span,
.page .contact .container .boxs .box span a {
	color: #888899;
	font-weight: 500;
}

.page .contact .container .boxs .box span a:hover {
	color: #0466C8;
}

.page .contact .container .boxs .box span.email {
	margin-top: 20px;
}

.page .map {
	display: flex;
}

@media screen and (max-width:1000px) {	  
	.page .map {
		display: none;
	} 
}

.page .map iframe {
	width: 100%;
	height: 100vh;
	max-height: 400px;
}

.page .schedule {
	background-color: #0466C8;
}

.page .schedule .container {
	display: flex;
	padding: 70px 10px;
}

@media screen and (max-width:1000px) {	  
	.page .schedule .container {
		flex-direction: column;
		padding: 40px 10px;
	} 
}

.page .schedule .container .box {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 50%;
}

@media screen and (max-width:1000px) {	  
	.page .schedule .container .box {
		width: 100%;
	} 

	.page .schedule .container .box:first-child {
		margin-bottom: 30px;
	}
}

.page .schedule .container .box h1 {
	font-size: 32px;
	line-height: 42px;
	font-weight: 700;
	color: #FFFFFF;

	margin: 0;
	padding: 0;

	max-width: 480px;
}

@media screen and (max-width:1000px) {	  
	.page .schedule .container .box h1 {
		font-size: 27px;
		line-height: 30px;
		text-align: center;
	} 
}

.page .schedule .container .box .btn-schedule {
	font-size: 15px;
	line-height: 18px;
	color: #FFFFFF;
	font-weight: 600;

	display: flex;
	justify-content: center;
	align-items: center;

	background-color: #001233;
	margin: 0px auto;
	padding: 12px 18px;
	border-radius: 3px;

	width: 100%;
	max-width: 300px;
	height: 50px;

	transition: background-color 0.3s, box-shadow 0.3s;
}

.page .schedule .container .box .btn-schedule i {
	font-weight: normal;
	margin-right: 10px;
}

.page .schedule .container .box .btn-schedule:hover {
	background-color: #189d0e;
	box-shadow: inset 0 0 1em rgba(24,157,14,0.5), 0 0 1em rgba(24,157,14,0.5);

	transition: background-color 0.3s, box-shadow 0.3s;
}