/* CSS Document */
*
{
	margin: 0px;
	padding: 0px;
}

body
{
	font-family: "Helvetica Neue",sans-serif;
    font-weight: normal;
	font-size: 18px;
}

#main
{
	width: 100%;
	height: auto;
}

#content
{
	width: 100%;
	height: auto;
}

.header
{
	width: 100%;
	height:70px;
	top: 0;
	left: 0;
	position: fixed;;
	box-sizing: border-box;
	transition: 3s;
	background: #16a085;
	z-index: 99;
}

.logo img
{
	float: left;
	width: 240px;
	height: 50px;
	margin: 10px 20px;
	transition: 3s;
}

.nav
{
	float: right;
	padding: 20px;
}

.nav ul
{
	float: right;
	width: auto;
	margin: 0px;
	padding: 0px;
	display: flex;;
	transition: 3s;
	margin-right: 10px;
	font-family: 'Niramit', sans-serif;
}

.nav ul li 
{
	list-style: none;
	display: inline-block;
}

.nav ul li a
{
	list-style: none;
	font-size: 20px; 
	margin:0 10px; 
	color: #FFF;
	text-decoration: none;
}

.nav:hover li
{
	color: #f00;
	text-decoration: none;
}

.nav ul li:hover a
{
	text-decoration: none;
	border-bottom: #FFF 2px solid;
}

.provine a {
	color: #027C47;
	text-decoration: none;
}

.provine:hover a {
	color: #16a085;
}

.sidenav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: #111;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 60px;
}

.sidenav a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 25px;
  color: #818181;
  display: block;
  transition: 0.3s;
}

.sidenav a:hover {
  color: #f1f1f1;
}

.sidenav .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
}

.openNav{
	font-size: 30px;
	cursor: pointer;
	display: none;
}

.navbar {
  width: 10%;
  overflow: auto;
  display: none;
}

.navbar a {
  float: left;
  padding: 12px;
  color: #000;
  text-decoration: none;
  font-size: 17px;
  
}

.navbar a:hover {
  color: #f00;
}

.active {
  background-color: #4CAF50;
}

.section
{
    width: 100%;
    height : 500px;
	margin-top: 70px;
    display: block;
	clear: both;
}

#container
{
	width: 100%;
	height: 100%;
	background-size: cover;
}


#container > img
{
	 position: absolute;
	 width: 100%;
	 height: 100%;
}

#carousel {
	position: relative;
	background-size: cover;
	width: 100%;
	height: 100%;
}

#slides {
   position: absolute;
   overflow: hidden;
   background-size: cover;
   width: 100%;
   height: 100%;
}

#slides ul {
   list-style: none;
   margin: 0;
   padding: 0;
   position: relative;
   background-size: cover;
   width: 100%;
   height: 100%;
}

 #slides li {
   float: left;
   text-align: center;
   position: relative;
   background-size: cover;
   width: 100%;
   height: 100%;
}

.quoteContainer img
{
	width: 100%;
	height: 100%;
	background-size: cover;
}

.btn-bar{
    width: 100%;
	display: inline-block;
	z-index: -1;
}


#buttons {
	width: 100%;
	z-index: -2;
}

#slides ul li .text {
    background-color: rgb(0,0,0); 
    background-color: rgba(0,0,0, 0.3); 
    color: #FFF;
	border-radius: 20px;
    border: 2px solid #f1f1f1;
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 13%;
    padding: 10px;
    text-align: center;
	font-size: 20px;
	font-family: 'Niramit', sans-serif;
	cursor: pointer;
}

#slides ul li .text h2 {
	font-weight: 400;
}

#slides ul li .text a {
	text-decoration: none;
	color : #FFF;
}

#slides ul li .text:hover {
	background: #16a085;
	color : #FFF;
}

#next{
	text-decoration: none;
	font-size: 70px;
	display: inline-block;
	margin-right: 0px;
	color: #FFF;
	position: absolute;
	top: 40%;
	right: 0%;
	padding: 7px 12px;
	cursor: pointer;
	background: #16a085;
}

#prev{
    text-decoration: none;
	font-size: 70px;
	cursor: pointer;
	display: inline-block;
	position: absolute;
	color: #FFF;
	left: 0%;
	top: 40%;
	padding: 7px 12px;
	background: #16a085;
}

a#prev:hover, a#next:hover {
    background-color: rgba(0,0,0,0.8);
}

.quote-phrase{
    display: table-cell;
    width: 10%;
	height: 80px;
}

.quote-phrase {
	position: absolute;
    font-size:20px;
    color:#FFF;
	font-weight: 900; 
	left: 40%;
	top: 40%;
	display: inline-block;
}

.quote-marks {
    font-size: 24px;
    position: inherit;
	background: rgba(0, 0, 0, 0.5);
	width: 100%;
	height: 40%;
	padding: 5px 20px;
	box-shadow: 3px 3px 3px rgba(0, 0, 0, .5);
}


.quoteContainer, .authorContainer {
    display: table;
    width: 100%;
	height: 100%;
}

article{
	width: 95%;
	margin: 0 auto;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	overflow: hidden;
}

article section{
	width: 70%;
	height: auto;
	margin: 10px auto;
}

section .provine {
	padding: 40px 0;
}


section .follow{
	margin: 20px;
	padding: 20px;
	width: 100;
	height: auto;
}

section .follow h2{
	color: #16a085;
}

section .follow hr{
	background: #16a085;
}

section .facebook{
	margin: 20px;
}

section .youtube{
	margin: 20px;
}

section .vdoyoutube {
	width: 100%;
	height: 440px;
	margin: 20px 0;
}

section .content{
	width: 97%;
	height: auto;
	margin: 0 0 60px 0 ;
}

section .content .boxsocial1{
	width: 50%;
	height: auto;
	display: flex;
	flex-wrap: nowrap;
	margin: 20px 0;
}

section .content .boxsocial1 .box{
    width: auto;
	height: auto;
	margin: 2px;
}

section .content .boxsocial1 .box .boxtwitt{
	margin: 2px 0 0 0;
}

section .content .social{
	margin: 30px 10px;
	width: auto;
	height: 30px;
}

section .content .soc{
	width: 45%;
	height: auto;
	display: flex;
	flex-wrap: nowrap;
	padding: 20px;
}

section .content .soc span{
	margin: 0 3px;
}

section .content .soc .fa{
   font-size: 25px;
   margin: 5px 2px;
}

section .content a{
	color: #16a085;
}

section .content h1 {
	font-size: 50px;
	font-weight: 400;
	color: #16a085;
	padding:20px;
	margin: 10px 0;
}

section .content h2 {
	font-size: 34px;
	font-weight: 400;
	color: #16a085;
}

section .content .man img {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	margin: 30px 0;
}

section .content .boximg img {
	width:100%;
	height:480px;
	margin: 20px 0;
}

section .content p {
	text-align: left;
	line-height: 180%;
	color: #262626;
	font-family: 'Bai Jamjuree', sans-serif;
}

section .content h3{
	color: #16a085;
}

section .content hr {
	width: 5%;
	height: 2px;
	border: none;
	background: #16a085;
}


section .content .row .column img{
	width: 100%;
	height: 110px;
	margin: 10px 0;
}

section .row > .column {
  padding: 0 8px;
}

section .row:after {
  content: "";
  display: table;
  clear: both;
}

section .column {
  float: left;
  width: 23%;
}

section .modal {
  display: none;
  position: fixed;
  z-index: 1;
  padding: 10px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color:#000;
  margin-top: 40px;
}


section .modal-content {
  position: relative;
  margin: auto;
  padding: 10px;
  width: 100%;
  max-width: 1200px;
}

section .close {
    color: #FFF;
    position: absolute;
    top: 30px;
    left: 10px;
    font-size: 40px;
    font-weight: bold;
}

section .close:hover,
section .close:focus {
  color: #999;
  text-decoration: none;
  cursor: pointer;
}

section .mySlides {
  display: none;
}

section .mySlides img {
	width:85%;
	height:540px;
	margin-top: 30px;
	box-shadow:#333 3px 5px 200px;
}

section .cursor {
  cursor: pointer
}

section .prev,.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 20px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  -webkit-user-select: none;
}

section .next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

section .prev {
	left: 0;
	border-radius: 3px 0 0 3px;
}

section .prev:hover,
section .next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

section .numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 30px;
	left: 20px;
	z-index: 99;
}

img {
  margin-bottom: -4px;
}

section .caption-container {
  text-align: center;
  background-color:#000;
  padding: 2px 16px;
  color: white;
}

section .demo {
  opacity: 0.6;
}

section .active,
section .demo:hover {
  opacity: 1;
}

section img.hover-shadow {
  transition: 0.3s
}

section.hover-shadow:hover {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19)
}

article aside{
	width: 27%;
	height: auto;
	margin: 30px auto;
}

article aside .box{
	width: 100%;
	height: 40px;
}

article aside .box .boxtext{
	font-size: 28px;
}

article aside .content{
	width: 100%;
	height: auto;
}

article aside .content .box1{
	width: 100%;
	height: auto;
	margin: 20px 0;
}

article aside .content .box1 .boximg1{
	width: 100%;
	height: 200px;
	border-top-right-radius: 10px;
	border-top-left-radius: 10px;
	position: relative;
	overflow: hidden;
}

article aside .content .box1 .boximg1 img{
	width: 100%;
	height: 100%;
	cursor: pointer;
	border-top-right-radius: 10px;
	border-top-left-radius: 10px;
}


article aside .content .box1 .boxtext1{
	width: 100%;
	height: 100px;
}

article aside .content .box1 .boxtext1 p{
	padding: 10px;
	font-size: 18px;
	line-height: 160%;
	text-align: left;
}

article aside .content .box1 a{
	text-decoration: none;
	color: #363636;
}

article aside .content .box1 a :hover{
	color: #16a085;
	text-decoration: none;
}

article aside .content1{
	width: 90%;
	height: auto;
	text-align: left;
}

article aside .content1 button{
	font-size: 14px;
	padding: 7px 10px;
	margin: 3px 1px;
	border: none;
	border-radius: 20px;
	background: #16a085;
	color: #fff;
}



aside .advertise{
	width: 100%;
	height: 40px;
	font-size: 30px;
	text-align: left;
	padding: 10px;
	border-left: #16a085 5px solid;
}

aside .advertise1{
	width: 100%;
	height: 40px;
	font-size: 30px;
	text-align: left;
	padding: 10px;
	margin: 10px 0;
	background: #e6fffa;
	border-left: #16a085 5px solid;
}

aside .adv {
	width: 100%;
	height: auto;
	margin: 10px 0;
}

aside .adv1 {
	width: 100%;
	height: auto;
	margin: 20px 0;
}

aside .content-last {
	width: 100%;
	height: auto;
	display: flex;
	position: relative;
	flex-direction: row;
	flex-wrap: wrap;
	overflow: hidden;
}

aside .content-last hr {
	width: 100%;
	height: 1px;
	background: #16a085;
	border: none;
	flex-direction: row;
	flex-wrap: wrap;
}

aside .content-last .content-img {
	width: 40%;
	height: 120px;
	margin: 30px auto;
	cursor: pointer;
}

aside .content-last .content-img img {
	width: 100%;
	height: 120px;
}

aside .content-last .content-text {
	width: 56%;
	height: 120px;
	margin: 30px auto;
}

.content-text a{
	text-decoration: none;
	color: rgb(105,105,105);
}

.content-text a:hover{
	color: rgb(105,105,105);
	text-decoration: none;
}

aside .content-last .content-text p {
	text-align: left;
	padding: 0 5px;
	cursor: pointer;
	line-height: 160%;
	color: #262626;
	font-family: 'Bai Jamjuree', sans-serif;
}

.container6
{
	width: 100%;
	height: 360px;
	margin: 0px auto;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	overflow: hidden;
	background: #16a085;
}

.boxing6
{
	width: 100%;
	height: 200px;
}

.boxing6 h1{
	color: #f2f2f2;
	font-size: 40px;
	font-weight: 400;
	text-align: left;
	padding-left: 30px;
	font-family: 'Niramit', sans-serif;
}

.boxing6 h2{
	color: #F2f2f2;
	font-size: 26px;
	text-align: left;
	padding-left: 30px;
	font-family: 'Niramit', sans-serif;
}

.boxing6 h3{
	color: #F2f2f2;
	font-size: 20px;
	text-align: left;
	padding-left: 30px;
	font-weight: 500;
	line-height: 200%;
	cursor: pointer;
}

.boxing6 p{
	text-align: left;
	color: #f2f2f2;
	line-height: 160%;
	font-size: 15px;
	padding: 0 20px 0 30px;
	font-weight: 100;
	font-family: 'Niramit', sans-serif;
}

.container6 .box8{
	width: 60%;
	height: auto;
	margin-top: 100px;
	line-height: 300%;
}

.box8 button{
	background: #16a085;
	width: 110px;
	height: 30px;
	font-size: 16px;
	color: #fff;
	border: #f2f2f2 1px solid;
	cursor: pointer;
}

.container6 .box6
{
	position: relative;
	width: 27%;
	height: 300px;
	margin: 50px auto;
	box-sizing: border-box;
	display: inline-block;
	text-align: center;
}

.box7 ul{
	display: flex;
	position: absolute;
	left: 50%;
	top : 40%;
	transform: translate(-50% , -50%);
}

.box7 ul li {
	list-style: none;
}

.box7 ul li a{
	width: 40px;
	height: 40px;
	background-color: #FFF;
	text-align: center;
	line-height: 40px;
	font-size: 24px;
	margin: 0 10px;
	display: block;
	border-radius: 50%;
	position: relative;
	overflow: hidden;
	border: 3px solid #FFF;
	z-index: 1;
}

.box7 ul li a .fa{
	position: relative;
	transition: .5s;
	color: #16a085;
	z-index: 3;
}

.box7 ul li a:hover .fa
{
	transform: rotateY(360deg);
	color: #FFF;
}

.box7 ul li a:before
{
	content: "";
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 100%;
	background: #F00;
	transition: 0.5s;
	z-index: 2;
}

.box7 ul li a:hover:before
{
	top: 0;
}

.box7 ul li:nth-child(1) a:before
{
	background-color: #3b5999;
}

.box7 ul li:nth-child(2) a:before
{
	background-color: #55acee;
}

.box7 ul li:nth-child(3) a:before
{
	background-color: #e4405f;
}

.box7 ul li:nth-child(4) a:before
{
	background-color: #cd201f;
}

.footer
{
	width: 100%;
	height: 20px;
	padding: 30px 0;
	background: #1e2f2f;
	color: #FFF;
	vertical-align: middle;
}



/*Tablet*/
@media  screen and (max-width: 900px) {
#main
{
	width: 100%;
	height: auto;
}

#content
{
	width: 100%;
	height: auto;
}

#slides ul li .text {
    background-color: rgb(0,0,0); 
    background-color: rgba(0,0,0, 0.3); 
    color: #FFF;
	border-radius: 20px;
    border: 2px solid #f1f1f1;
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 30%;
    padding: 10px;
    text-align: center;
	font-size: 20px;
	font-family: 'Niramit', sans-serif;
	cursor: pointer;
}

#slides ul li .text h2 {
	font-weight: 400;
}

#slides ul li .text a {
	text-decoration: none;
	color : #FFF;
}

#slides ul li .text:hover {
	background: #16a085;
	color : #FFF;
}

article{
	width: 100%;
	height: auto;
	margin: 0 auto;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	overflow: hidden;
}

article section{
	width: 67%;
	height: auto;
	margin: 10px auto;
}

article section .provine {
	padding: 40px 0;
}

article section .vdoyoutube {
	width: 97%;
	height: 290px;
	margin: 20px 0;
}

article section .content .soc{
	width: 70%;
	height: auto;
	display: flex;
	flex-wrap: nowrap;
	padding: 20px;
}

article section .content .soc span{
	margin: 0 3px;
}

article section .content .soc .fa{
   font-size: 25px;
   margin: 5px 2px;
}

article section .content .boximg img{
	width: 97%;
	height: 300px;
	margin: 20px 0;
}

article section .content h3{
	color: #16a085;
	padding: 20px;
}

article section .content .row .column img{
	width: 100%;
	height: 110px;
	margin: 10px 0;
}

article section .row > .column {
  padding: 0 5px;
}

article section .row:after {
  content: "";
  display: table;
  clear: both;
}

article section .column {
  float: left;
  width: 23%;
}

article section .modal {
  display: none;
  position: fixed;
  z-index: 1;
  padding: 10px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color:#000;
  margin-top: 40px;
}


article section .modal-content {
  position: relative;
  margin: auto;
  padding: 5px;
  width: 95%;
  max-width: 1200px;
}

article section .close {
    color: #FFF;
    position: absolute;
    top: 30px;
    left: 10px;
    font-size: 40px;
    font-weight: bold;
}

article section .close:hover,
article section .close:focus {
  color: #999;
  text-decoration: none;
  cursor: pointer;
}

article section .mySlides {
  display: none;
}

article section .mySlides img {
	width:90%;
	height:480px;
	margin-top: 70px;
	box-shadow:#333 3px 5px 200px;
}

article section .cursor {
  cursor: pointer
}

article section .prev,.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 20px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  -webkit-user-select: none;
}

article section .next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

article section .prev {
	left: 0;
	border-radius: 3px 0 0 3px;
}

article section .prev:hover,
article section .next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

article section .numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 30px;
	left: 20px;
	z-index: 99;
}

img {
  margin-bottom: -4px;
}

article section .caption-container {
  text-align: center;
  background-color:#000;
  padding: 2px 16px;
  color: white;
}

article section .demo {
  opacity: 0.6;
}

article section .active,
article section .demo:hover {
  opacity: 1;
}

img.hover-shadow {
  transition: 0.3s
}

article section .hover-shadow:hover {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19)
}

article aside{
	width: 30%;
	height: auto;
	margin: 10px auto;
}

article aside .box{
	width: 100%;
	height: 40px;
}

article aside .box .boxtext{
	font-size: 24px;
}

article aside .content{
	width: 100%;
	height: auto;
}

article aside .content .box1{
	width: 100%;
	height: auto;
	margin: 20px 0;
}

article aside .content .box1 .boximg1{
	width: 100%;
	height: 150px;
	border-top-right-radius: 10px;
	border-top-left-radius: 10px;
	position: relative;
	overflow: hidden;
}

article aside .content .box1 .boximg1 img{
	width: 100%;
	height: 100%;
	cursor: pointer;
	border-top-right-radius: 10px;
	border-top-left-radius: 10px;
}


article aside .content .box1 .boxtext1{
	width: 100%;
	height: 100px;
}

article aside .content .box1 .boxtext1 p{
	padding: 10px;
	font-size: 18px;
	line-height: 160%;
	text-align: left;
}

article aside .content .box1 a{
	text-decoration: none;
	color: #363636;
}

article aside .content .box1 a :hover{
	color: #16a085;
	text-decoration: none;
}

article aside .content1{
	width: 100%;
	height: auto;
	text-align: left;
}

article aside .content1 button{
	font-size: 12px;
	padding: 5px 8px;
	margin: 2px .5px;
	border: none;
	border-radius: 20px;
	background: #16a085;
	color: #fff;
}

aside .advertise{
	width: 100%;
	height: 40px;
	font-size: 30px;
	text-align: left;
	padding: 10px;
	border-left: #16a085 5px solid;
}

aside .adv {
	width: 100%;
	height: auto;
	margin: 10px 0;
}

aside .adv1 {
	width: 100%;
	height: auto;
	margin: 20px 0;
}

aside .content-last {
	width: 100%;
	height: auto;
	display: flex;
	position: relative;
	flex-direction: row;
	flex-wrap: wrap;
	overflow: hidden;
}

aside .content-last hr {
	width: 100%;
	height: 1px;
	background: #16a085;
	border: none;
	flex-direction: row;
	flex-wrap: wrap;
}

aside .content-last .content-img {
	width: 40%;
	height: 100px;
	margin: 30px auto;
	cursor: pointer;
}

aside .content-last .content-img img {
	width: 100%;
	height: 100px;
}

aside .content-last .content-text {
	width: 56%;
	height: 100px;
	font-size: 13px;
	padding: 3px;
	margin: 20px auto;
}

.content-text a{
	text-decoration: none;
	color: rgb(105,105,105);
}

.content-text a:hover{
	color: rgb(105,105,105);
	text-decoration: none;
}

aside .content-last .content-text p {
	text-align: left;
	padding: 5px;
	cursor: pointer;
}

.container6
{
	width: 100%;
	height: 360px;
	margin: 0px auto;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	overflow: hidden;
	background: #16a085;
}

.boxing6
{
	width: 100%;
	height: 200px;
}

.boxing6 h1{
	color: #f2f2f2;
	font-size: 24px;
	font-weight: 400;
	text-align: left;
	padding-left: 10px;
	font-family: 'Niramit', sans-serif;
}

.boxing6 h2{
	color: #F2f2f2;
	font-size: 20px;
	text-align: left;
	padding-left: 10px;
	font-family: 'Niramit', sans-serif;
}

.boxing6 h3{
	color: #F2f2f2;
	font-size: 16px;
	text-align: left;
	padding-left: 10px;
	font-weight: 500;
	line-height: 200%;
	cursor: pointer;
}

.boxing6 p{
	text-align: left;
	color: #f2f2f2;
	line-height: 160%;
	font-size: 14px;
	padding: 0 10px 0 10px;
	font-weight: 100;
	font-family: 'Niramit', sans-serif;
}

.container6 .box8{
	width: 60%;
	height: auto;
	margin-top: 100px;
	line-height: 300%;
}

.box8 button{
	background: #16a085;
	width: 110px;
	height: 30px;
	font-size: 16px;
	color: #fff;
	border: #f2f2f2 1px solid;
	cursor: pointer;
}

.container6 .box6
{
	position: relative;
	width: 30%;
	height: 300px;
	margin: 50px auto;
	box-sizing: border-box;
	display: inline-block;
	text-align: center;
}

.box7 ul{
	display: flex;
	position: absolute;
	left: 50%;
	top : 40%;
	transform: translate(-50% , -50%);
}

.box7 ul li {
	list-style: none;
}

.box7 ul li a{
	width: 40px;
	height: 40px;
	background-color: #FFF;
	text-align: center;
	line-height: 40px;
	font-size: 24px;
	margin: 0 10px;
	display: block;
	border-radius: 50%;
	position: relative;
	overflow: hidden;
	border: 3px solid #FFF;
	z-index: 1;
}

.box7 ul li a .fa{
	position: relative;
	transition: .5s;
	color: #16a085;
	z-index: 3;
}

.box7 ul li a:hover .fa
{
	transform: rotateY(360deg);
	color: #FFF;
}

.box7 ul li a:before
{
	content: "";
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 100%;
	background: #F00;
	transition: 0.5s;
	z-index: 2;
}

.box7 ul li a:hover:before
{
	top: 0;
}

.box7 ul li:nth-child(1) a:before
{
	background-color: #3b5999;
}

.box7 ul li:nth-child(2) a:before
{
	background-color: #55acee;
}

.box7 ul li:nth-child(3) a:before
{
	background-color: #e4405f;
}

.box7 ul li:nth-child(4) a:before
{
	background-color: #cd201f;
}

}


/*mobile*/
@media  screen and (max-width: 580px) {
	
#main
{
	width: 100%;
	height: auto;
}

#content
{
	width: 100%;
	height: auto;
}

.nav
{
	float: none;
	padding: 20px;
	display: none;
}

.header
{
	width: 100%;
	height:70px;
	top: 0;
	left: 0;
	position: fixed;
	box-sizing: border-box;
	transition: 3s;
	background: #16a085;
	z-index: 99;
}
	
.logo img
{
	float: none;
	width: 50%;
	height: 50px;
	transition: 3s;
}

.sidenav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  background-color: #111;
  overflow-x: hidden;
  transition: 0.5s;
}

.sidenav a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 25px;
  color: #818181;
  transition: 0.3s;
  display: block;
}

.sidenav a:hover {
  color: #f1f1f1;
}

.sidenav .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
}

.openNav{
	font-size: 30px;
	cursor: pointer;
	float: left;
	margin-top: -55px; 
	margin-left:20px; 
	display: inline-block;
	color: #fff; 
}

.navbar {
  width: 15%;
  overflow: auto;
  float: right;
  margin-top: -65px; 
  margin-right: 10px; 
  display: inline-block;
}

.navbar a {
  padding: 12px;
  color: #FFF;
  text-decoration: none;
  font-size: 30px;
  
}

.navbar a:hover {
  color: #f2f2f2;
}

.active {
  background-color: #4CAF50;
}

article{
	width: 100%;
	height: auto;
	margin: auto;
}

article section{
	width: 100%;
	height: auto;
	margin: 10px auto;
}

section .vdoyoutube {
	width: 95%;
	height: 220px;
	margin: 20px 0;
}

section .content{
	width: 100%;
	height: auto;
}

section .content .boximg img 
{
	width: 95%;
	height: 230px;
}

section .content .agoda{
	width: 80%;
	height: auto;
	align-content: center;
}

section .content h1 {
	font-size: 30px;
	font-weight: 500;
	color: #16a085;
	font-family: 'Niramit', sans-serif;
}

section .content p{
	padding: 10px;
	text-align: left;
}

section .content .soc{
	width: 90%;
	height: auto;
	display: flex;
	flex-wrap: nowrap;
	padding: 20px;
}

section .content .soc span{
	margin: 0 3px;
}

section .content .soc .fa{
   font-size: 25px;
   margin: 5px 2px;
}

section .content .row{
	width: 97%;
	height: auto;
}

section .content .row .column {
  width: 98%;
  height: auto;
}

section .content .row .column img{
	width: 100%;
	height: 230px;
}

section .content .boxsocial1{
	width: 80%;
	height: auto;
	display: flex;
	flex-wrap: nowrap;
	margin: 20px 0;
}

section .content .boxsocial1 .box{
    width: auto;
	height: auto;
	margin: 2px;
}

section .content .boxsocial1 .box .boxtwitt{
	margin: 2px 0 0 0;
}


article aside{
	width: 95%;
	height: auto;
	margin: 10px auto;
}

article aside .box{
	width: 100%;
	height: 40px;
}

article aside .box .boxtext{
	font-size: 28px;
}

article aside .content{
	width: 100%;
	height: auto;
}

article aside .content .box1{
	width: 100%;
	height: auto;
	margin: 20px 0;
}

article aside .content .box1 .boximg1{
	width: 100%;
	height: 230px;
	border-top-right-radius: 10px;
	border-top-left-radius: 10px;
	position: relative;
	overflow: hidden;
}

article aside .content .box1 .boximg1 img{
	width: 100%;
	height: 100%;
	cursor: pointer;
	border-top-right-radius: 10px;
	border-top-left-radius: 10px;
}


article aside .content .box1 .boxtext1{
	width: 100%;
	height: 100px;
}

article aside .content .box1 .boxtext1 p{
	padding: 10px;
	font-size: 18px;
	line-height: 160%;
	text-align: left;
}

article aside .content .box1 a{
	text-decoration: none;
	color: #363636;
}

article aside .content .box1 a :hover{
	color: #16a085;
	text-decoration: none;
}

article aside .content1{
	width: 90%;
	height: auto;
	text-align: left;
}

article aside .content1 button{
	font-size: 14px;
	padding: 7px 10px;
	margin: 3px 1px;
	border: none;
	border-radius: 20px;
	background: #16a085;
	color: #fff;
}



.container6
{
	width: 100%;
	height: 1000px;
	margin: 0px auto;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	overflow: hidden;
	background: #16a085;
}

.boxing6
{
	width: 100%;
	height: 200px;
}

.boxing6 h1{
	color: #f2f2f2;
	font-size: 40px;
	font-weight: 400;
	text-align: left;
	font-family: 'Niramit', sans-serif;
}

.boxing6 h2{
	color: #F2f2f2;
	font-size: 26px;
	text-align: left;
	font-family: 'Niramit', sans-serif;
}

.boxing6 h3{
	color: #F2f2f2;
	font-size: 20px;
	text-align: left;
	font-weight: 500;
	line-height: 200%;
	cursor: pointer;
}

.boxing6 p{
	text-align: left;
	color: #f2f2f2;
	line-height: 160%;
	font-size: 15px;
	font-weight: 100;
	font-family: 'Niramit', sans-serif;
}

.container6 .box8{
	width: 100%;
	height: auto;
	margin-top: 120px;
	line-height: 300%;
}

.box8 button{
	background: #16a085;
	width: 110px;
	height: 30px;
	font-size: 16px;
	color: #fff;
	border: #f2f2f2 1px solid;
	cursor: pointer;
}

.container6 .box6
{
	position: relative;
	width: 95%;
	height: 300px;
	margin: 10px auto;
	box-sizing: border-box;
	display: inline-block;
	text-align: center;
}

.box7 ul{
	display: flex;
	position: absolute;
	left: 50%;
	top : 40%;
	transform: translate(-50% , -50%);
}

.box7 ul li {
	list-style: none;
}

.box7 ul li a{
	width: 40px;
	height: 40px;
	background-color: #FFF;
	text-align: center;
	line-height: 40px;
	font-size: 24px;
	margin: 0 10px;
	display: block;
	border-radius: 50%;
	position: relative;
	overflow: hidden;
	border: 3px solid #FFF;
	z-index: 1;
}

.box7 ul li a .fa{
	position: relative;
	transition: .5s;
	color: #16a085;
	z-index: 3;
}

.box7 ul li a:hover .fa
{
	transform: rotateY(360deg);
	color: #FFF;
}

.box7 ul li a:before
{
	content: "";
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 100%;
	background: #F00;
	transition: 0.5s;
	z-index: 2;
}

.box7 ul li a:hover:before
{
	top: 0;
}

.box7 ul li:nth-child(1) a:before
{
	background-color: #3b5999;
}

.box7 ul li:nth-child(2) a:before
{
	background-color: #55acee;
}

.box7 ul li:nth-child(3) a:before
{
	background-color: #e4405f;
}

.box7 ul li:nth-child(4) a:before
{
	background-color: #cd201f;
}


.section
{
    width: 100%;
    height : 300px;
	margin-top: 70px;
    display: block;
	clear: both;
}

#container
{
	width: 100%;
	height: 100%;
	background-size: cover;
}


#container > img
{
	 position: absolute;
	 width: 100%;
	 height: 100%;
}

#carousel {
	position: relative;
	background-size: cover;
	width: 100%;
	height: 100%;
}

#slides {
   position: absolute;
   overflow: hidden;
   background-size: cover;
   width: 100%;
   height: 100%;
}

#slides ul {
   list-style: none;
   margin: 0;
   padding: 0;
   position: relative;
   background-size: cover;
   width: 100%;
   height: 100%;
}

 #slides li {
   float: left;
   text-align: center;
   position: relative;
   background-size: cover;
   width: 100%;
   height: 100%;
}

.quoteContainer img
{
	width: 100%;
	height: 100%;
	background-size: cover;
}

.btn-bar{
    width: 100%;
	display: inline-block;
	z-index: -1;
}


#buttons {
	width: 100%;
	z-index: -2;
}

#slides ul li .text {
    background-color: rgb(0,0,0); 
    background-color: rgba(0,0,0, 0.3); 
    color: #FFF;
	border-radius: 20px;
    border: 2px solid #f1f1f1;
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 30%;
    padding: 7px;
    text-align: center;
	font-size: 14px;
	font-family: 'Niramit', sans-serif;
	cursor: pointer;
}

#slides ul li .text h2 {
	font-weight: 400;
}

#slides ul li .text a {
	text-decoration: none;
	color : #FFF;
}

#slides ul li .text:hover {
	background: #16a085;
	color : #FFF;
}

}
