.help_top {
	/*height: calc( 100vh - 60px );*/
	background-color: rgba(255,255,255,0.9);
	text-align: center;
}

.section {
	border-bottom: 1px solid #dadada;
	padding: 55px 0;
}

.section:last-child {
	border-bottom: 0;
	padding: 55px 0 0;
}

.help_top h1 {
	margin: 0;
	padding: 55px 0 0;
	font-weight: 500;
	font-size: 35px;
}
.help_desc {
	margin: 30px auto;
	max-width: 800px;
	font-size: 18px;
	color: #444;
	line-height: 1.5;
	text-align: center;
}
.help_menu a {
	font-size: 18px;
	display: inline-block;
	padding: 10px 0;
	margin: 0 20px;
	border-bottom: 2px solid transparent;
}
.help_menu a.current {
	border-bottom: 2px solid #2d94e0;
}

.help h2 {
	text-align: center;
	padding: 0;
	margin: 0;
	/*font-weight: 500;*/
	font-size: 30px;
}

.help .button {
	text-align: center;
}

.help .button a {
	color: #fff;
	background-color: #2d94e0;
	display: inline-block;
	padding: 14px 21px;
	border-radius: 3px;
	font-size: 18px;
}

.fitems {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    -webkit-box-pack: start;
    width: 100%;
}

.item {
    position: relative;
    margin-left: 0 !important;
    padding: 0 20px 40px;
}

.item_inn {
	position: relative;
	box-sizing: border-box;
	background-color: #fff;
	height: 100%;
	border-radius: 4px;
    -webkit-box-shadow: 0 2px 30px 0 rgba(0,0,0,.08);
    box-shadow: 0 2px 30px 0 rgba(0,0,0,.08);
    padding: 20px;
    transition: .15s linear;
    overflow: hidden;
    line-height: 1.5;
}
.item_inn:hover {
    -webkit-transform: translate(0,-5px);
    transform: translate(0,-5px);
}

.item .title {
	color: #000;
	font-weight: bold;
	font-size: 18px;
}

.item .desc {
	color: #888;
	margin: 15px 0 0;
	font-size: 15px;
}

.article-embed {
	max-width: 880px;
	margin: 0 auto;
}

.article-embed-inn {
	position: relative;
	padding: 0 0 56% 0;
}

.article-embed iframe {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
}


@media ( max-width: 800px ) {

	.help_desc {
		margin: 0 0 20px;
		padding: 20px 20px 0;
	}

	.item .desc {
		display: block;
	}

	.head_h1 {
		display: block !important;
	}

}