body {
	font-family: Tahoma, Helvetica, Arial, Microsoft Yahei, STXihei, sans-serif;
	padding: 0px;
	margin: 0px;
	color: #222;
}

.wrapper {
	max-width: 1320px;
	margin: 0 auto;
}


h1 {
	text-align: center;
}

h5 {
    font-size: 1.5rem;
}

a {
	color: #454545;
	text-decoration: none;
}

a:hover {
	color: #f5bb44;
}

.logo {
	margin-top: 2%;
	height: 60px;
	margin-bottom: 4%;
}

.logo img {
	width: 60px;
	float: left;
	margin-right: 10px;
}

.logo span {
	line-height: 60px;
	display: block;
	float: left;
	font-size: 1.3em;
}

.main h1 {
	text-align: left;
}

.button {
	border-radius: 50px;
	padding: 20px;
	background-color: #ff8200;
	width: 220px;
	font-size: 1.3em;
	font-weight: 500;
	color: #fff;
	text-align: center;
	cursor: pointer;
}

.button:hover {
	background-color: #f5bb44;
}

.help-container {
	align-items: center; 
	justify-content: space-around;
	width: 100%;
	display: flex;
	padding: 4%;
}

.help-container .img-container {
	text-align: center; 
	width: 33.33333%;
}

.help-container .text-container {
	text-align: left; 
	width: 58.33333%;
}

.help-container img {
	max-height: 620px;
	width: auto;
	max-width: 100%;
    height: auto;
}

.order-1 {
	order: 1;
}

.order-2 {
	order: 2;
}

ul {
	padding: 0px;
	margin: 0px;
	margin-bottom: 4%;
	display: flow-root;
}

ul li {
	list-style-type: none;
	float: left;
	border: 1px solid #999;
	border-radius: 10px;
	width: 40%;
	padding: 3%;
	line-height: 36px;
}

ul li:first-child {
	margin-right: 2%;
}

ul li b {
	font-size: 1.2em;
}


@media screen and (max-width: 768px) {
	.help-container {
		display: flex;
		flex-direction: column;
		padding: 0;
	}
	
    .help-container .text-container,
	.help-container .img-container	{
        width: 92%;
		padding: 4%
    }
	
	.text-container.order-2,
	.text-container.order-1 {		
		order: 1 ;
	}
	.img-container.order-1,
	.img-container.order-2 {
		order: 2 ;
	}
	
	.main {
		margin: 4%;
	}
	
	ul li {
		width: 94%;
		margin-bottom: 4%;
	}
}