@charset "UTF-8";
.figure{
	width: 1024px;
	height: auto;
	margin: 0 auto;
	padding-top: 50px;
}
.flex{
	display: flex;
	justify-content: space-between;
	margin: 150px 0;
}
.flex div:first-child{
	width: 55%;
}
.flex div:last-child{
	width: 45%;
}

.about_link{
	color: #0100FC;
	margin-bottom: 40px;
	display: inline-block;
	width: 100%;
	padding: 20px 0;
	text-align: center;
	color: #333;
	background-color:#fff;
	border:  thin #333 solid;
	position: relative;
	font-size: 16px;
	box-shadow: 0 4px 0 0 rgba(0,0,0,.11);
	border-radius: 2px;
}
.about_link:hover{
	background-image: none;
	background-color: #333;
	color: #fff;
	transition: 0.5s;
	border:  thin #333 solid;
	cursor: pointer;
}
.about_link::after{
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	right: 25px;
	margin: auto;
	vertical-align: middle;
	width: 8px;
	height: 8px;
	border-top: 1px solid #333;
	border-right: 1px solid #333;
	-moz-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
.about_link:hover::after{
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
}
.contact_btn{
	width: 765px;
	margin: 0 auto;
}
.cntact_tel{
	width: 50%!important;
}
.contact_btn {
    margin-top: 40px;
    text-align: center;
	display: inherit;
}
@media screen and (min-width:769px) and ( max-width:1024px) {
   .inner{
	max-width: 700px;
}
}