body {
	font-family: 'Kanit', sans-serif;
	background-image: url('../img/bg.jpg');
	background-repeat: no-repeat;
	background-size: cover;
}

a {
	transition: 0.3s;
	text-decoration: none;
}

a:hover {
	transition: 0.3s;
	text-decoration: none;
}

button:focus {
	outline: none;
}

img {
	max-width: 100%;
}

header {
	position: fixed;
	width: 100%;
	z-index: 100;
	background-color: #fff;
}

.header-container {
	max-width: 1280px;
	padding: 0 16px;
	margin: auto;
}

.logo {
	width: 140px;
	display: block;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
}

.top-menu {
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;

	padding: 15px 0;
}

.main-menu ul {
	list-style-type: none;
	padding: 0;
	margin: 0;
	text-align: center;
}

.main-menu ul li {
	display: inline-block;
	margin: 0 10px;
}

.main-menu ul li a {
	color: #111;
	padding: 0 8px;
	font-size: 20px;
	font-weight: bold;
}

.border-green {
	height: 50px;
	background-color: #014A01;
}

.section-top img {
	width: 100%;
}

.section-provider {
	position: relative;
	margin-top: -50px;
}

.provider-list {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;

	max-width: 90%;
	margin: auto;
}

.provider-list img {
	width: 32%;
	margin-bottom: 10px;
}

footer {
	background-color: #014A01;
	color: #fff;
}

.copyright {
	text-align: center;
	font-size: 16px;
	padding: 15px 0;
	font-weight: 400;
	letter-spacing: 1px;
}

.mobile-menu {
	display: none;
}

.section-mobile {
	display: none;
}

.show-mobile {
	display: none;
}

/*zzz*/

/*r991*/
@media only screen and (max-width: 991px) {

	.hide-mobile {
		display: none;
	}

	.show-mobile {
		display: block;
	}

	.logo {
		left: 15px;
		transform: none;
		width: 80px;
	}

	.border-green {
		height: 30px;
		background-color: #fff;
	}

	header {
		background-color: transparent;
	}

	.header-container {
		background-color: #014A01;
	}

	.mobile-menu {
		display: block;
		position: absolute;
		right: 0px;
		top: -25px;
	}

	.mobile-menu a {
		display: inline-block;
		width: 150px;
	}

	.section-mobile {
		display: block;
	}

	.section-mobile img {
		width: 100%;
	}

	.m-order-1 {
		order: 1;
	}

	.m-order-2 {
		order: 2;
	}

	.section-provider {
		margin: 0;
		padding: 15px 0;
	}

	.title-img {
		height: 80px;
		display: block;
		margin: auto;
		margin-bottom: 10px;
	}

	.provider-list {
		max-width: 100%;
	}

}


/*r500*/
@media only screen and (max-width: 500px) {

	.mobile-menu a {
		width: 130px;
	}

	.logo {
		width: 70px;
		left: 0;
		top: -30px;
	}

	.copyright {
		font-size: 12px;
	}

}





