@charset "UTF-8";
.figure{
	width: 100%;
	min-height: auto;
	margin: 0 auto 40px;
	position: relative;
	padding: 0 5%;
}
.flex{
	margin: 80px 0;
}
.flex div:last-child{
	margin-top: 50px;
}
.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;
}
.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{
	padding-bottom: 45px;
}