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

body
{
	font-family: "Helvetica Neue",sans-serif;
    font-weight: normal;
	font-weight: 200;
	color: #2d3436;
}

#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 ul li:hover a
{
	text-decoration: none;
	border-bottom: #FFF 2px solid;
}

.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%;
}

.aside
{
    float: right;
    width: 28%;
    height : 500px;
    margin-top: 90px;
    border: #000 thin solid;
}


.article
{
    width: 95%;
    height: auto;
	margin: 30px 0;
}

.article button {
	width: 15%;
	height: 50px;
	background: #16a085;
	color: #FFF;
	border-radius: 30px;
	font-size: 20px;
	font-weight: bolder;
	cursor: pointer;
	border: none;
	margin: 30px;
}

.article button a{
	color: #fff;
	text-decoration: none;
}

.article button:hover {
	text-decoration: underline;
} 

.story
{
	font-size: 30px;
	padding: 5px;
}

.story h1
{
	font-weight: lighter;
	
}

.boxtext
{
	width: 40%;
	max-height: 40px;
	padding: 20px;
	background: #FFF;
	z-index: 1;
	margin-top: -100px; 
	color: #2d3436;
}

.boxtext1
{
	width: 30%;
	max-height: 40px;
	padding: 20px;
	background: #FFF;
	z-index: 1;
	margin-top: -100px; 
	color: #2d3436;
}

.boxtext2
{
	width: 35%;
	max-height: 40px;
	padding: 20px;
	background: #FFF;
	z-index: 1;
	margin-top: -100px; 
	color: #2d3436;
}

.hrstory
{
    width: 100%;
	height: 10px;
	background: #3498db;
	border: none;
	margin-top: 80px;
}

.hrstory1
{
    width: 100%;
	height: 5px;
	background: #3498db;
	border: none;
	margin: 10px 0;
}

.readmor
{
	width: 15%;
	height: 40px;
	background: #16a085;
	color: #FFF;
	border-radius: 30px;
	font-size: 20px;
	font-weight: bolder;
	padding-top: 15px;
	cursor: pointer;
}

.container-galleries{
	width: 100%;
	height: auto;
	margin: 10px auto;
	display: flex;
	display: -ms-flexbox; /* IE 10 */
	flex-direction: row;
	flex-wrap: wrap;
	-ms-flex-wrap: wrap; /* IE 10 */
	overflow: hidden;
	cursor: pointer;
}

.container-galleries .box-gallerie{
	position: relative;
	width: 23%;
	height: auto;
	margin: 20px auto;
	box-sizing: border-box;
	display: inline-block;
	text-align: left;
}

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

.container-galleries .box-gallerie .boxgallerie{
	position: relative;
	overflow: hidden;
}

.container-galleries .box-gallerie .boxgallerie img{
	max-width: 100%;
	max-height: 100vh;
	height: auto;
	transition: transform 2s;
}

.container-galleries .boxgallerie:hover img{
	transform: scale(1.2);
	overflow: hidden;
	transition: all 1s ease-in;
}

.boxgallerie .overlay {
  position: absolute; 
  bottom: 0; 
  background: rgb(0, 0, 0);
  background: rgba(0, 0, 0, 0.5);
  color: #f1f1f1;
  width: 100%;
  height: 30px;
  transition: .5s ease;
  opacity:0;
  font-size: 20px;
  text-align: center;
  padding: 10px 0;
}

.boxgallerie:hover .overlay {
  opacity: 1;
}


.container1
{
	width: 100%;
	height: auto;
	margin: 0px auto;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	overflow: hidden;
	cursor: pointer;
}

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

.box h3
{
	margin: 10px 0;
	padding: 10px 10px 0 ;
	font-weight: 300;
}

.box p{
	padding: 0 10px;
}

.box .fa{
	padding: 10px;
}

.container1 .box
{
	position: relative;
	width: 23%;
	height: 400px;
	margin: 20px auto;
	box-sizing: border-box;
	display: inline-block;
	text-align: left;
	line-height: 150%;
	box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.container1 .box .boximg
{
	position: relative;
	overflow: hidden;
}

.container1 .box .boximg img
{
	width: 100%;
	height: 220px;
	transition: transform .2s;
}

.container1 .box:hover .boximg img
{
	transform: scale(1.2);
	overflow: hidden;
	transition: all .2s ease-in;
	opacity: .5;
}

.container1 .box a {
	color: #2d3436;
	text-decoration: none;
}

.container1 .box:hover a {
	text-decoration: none;
}



.container2
{
	width: 100%;
	height: auto;
	margin: 0px auto;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	overflow: hidden;
	cursor: pointer;
}

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

.box2 h3
{
	margin: 20px 0;
	padding: 10px 10px 0 ;
}

.box2 p{
	padding: 0 10px;
}

.box2 .fa{
	padding: 10px;
}

.container2 .box2
{
	position: relative;
	width: 23%;
	height: 400px;
	margin: 20px auto;
	box-sizing: border-box;
	display: inline-block;
	text-align: left;
	line-height: 150%;
	box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.container2 .box2 .boximg2
{
	position: relative;
	overflow: hidden;
}

.container2 .box2 .boximg2 img
{
	width: 100%;
	height: 200px;
	transition: transform .2s;
}

.container2 .box2:hover .boximg2 img
{
	transform: scale(1.2);
	overflow: hidden;
	transition: all .2s ease-in;
	opacity: .5;
}

.container2 .box2 a {
	color: #2d3436;
	text-decoration: none;
}

.container2 .box2:hover a {
	text-decoration: none;
}



.container3
{
	width: 100%;
	height: auto;
	margin: 0px auto;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	overflow: hidden;
	cursor: pointer;
}

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

.box3 h3
{
	margin: 20px 0;
	padding: 10px 10px 0 ;
}

.box3 p{
	padding: 0 10px;
}

.box3 .fa{
	padding: 10px;
}

.container3 .box3
{
	position: relative;
	width: 23%;
	height: 400px;
	margin: 20px auto;
	box-sizing: border-box;
	display: inline-block;
	text-align: left;
	box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.container3 .box3 .boximg3
{
	position: relative;
	overflow: hidden;
}

.container3 .box3 .boximg3 img
{
	width: 100%;
	height: 200px;
	transition: transform .2s;
}

.container3 .box3:hover .boximg3 img
{
	transform: scale(1.2);
	overflow: hidden;
	transition: all .2s ease-in;
	opacity: .5;
}

.container3 .box3 a {
	color: #2d3436;
	text-decoration: none;
}

.container3 .box3:hover a {
	text-decoration: none;
}



.container4
{
	width: 100%;
	height: 600px;
	margin: 20px auto;
}

.container4 .box4
{
	position: relative;
	width: 100%;
	height: 600px;
	margin: auto;
	text-align: center;
}


.container4 h1
{
	font-size: 60px;
	font-weight: 400;
	color: #f2f2f2;
	z-index: 90;
	padding: 70px;
}

.container4 .text{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	color: #f2f2f2;
	z-index: 90;
	background-color: rgb(0,0,0);
    background-color: rgba(0,0,0, 0.4);
}

.container4 .boximg4 img
{
	width: 100%;
	height: 600px;
}

.man {
	position: absolute;
	top: 60%;
	left: 16%;
	z-index: 90;
}

.man img{
	width: 20%;
	height: 20%;
	border: #fff 5px solid;
}

.text a{
	color: #fff;
	text-decoration : none; 
}

.text h2:hover
{
	text-decoration: underline;
}


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

.container5 .box5
{
	width: 24%;
    position: relative;
	height: 200px;
	margin: 20px auto;
	box-sizing: border-box;
	display: inline-block;
	text-align: center;
	box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

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

.box5 h3
{
	margin: 20px 0;
	padding: 10px 10px 0 ;
}

.box5 p{
	padding: 0 10px;
}

.box5 .fa{
	padding: 10px;
}

.container5 .box5 .boximg5
{
	position: relative;
	overflow: hidden;
}

.container5 .box5 .boximg5 img
{
	width: 100%;
	height: 200px;
	transition: transform .2s;
}

.container5 .box5:hover .boximg5 img
{
	transform: scale(1.2);
	overflow: hidden;
	transition: all .2s ease-in;
	opacity: .5;
}

.container5 .box5 a {
	color: #2d3436;
	text-decoration: none;
}

.container5 .box5:hover a {
	text-decoration: none;
}


.container5 .box5 .boximg5 .overlay {
	color: #FFF;
    position: absolute;
	background: #000;
	opacity:0.6;
    bottom: 50%;
	left: 0;
    right: 0;
    overflow: hidden;
    width: 100%;
    height:0;
    transition: .5s ease;
	cursor: pointer;
}

.container5 .box5 .boximg5 .overlay .text {
  color: white;
  font-size: 30px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
}

.container5 .box5:hover .overlay {
  bottom: 0;
  height: 100%;
}

.container5 button {
	width: 15%;
	height: 50px;
	background: #16a085;
	color: #FFF;
	border-radius: 30px;
	font-size: 20px;
	font-weight: bolder;
	cursor: pointer;
	border: none;
}

.container5 button a{
	color: #fff;
	text-decoration: none;
}

.container5 button:hover {
	text-decoration: underline;
} 


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

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

.container6 .box6
{
	position: relative;
	width: 27%;
	height: 300px;
	margin: 30px auto;
	text-align: left;
	padding-top: 20px;
}

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

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

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

.boximg6 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: 50%;
	height: auto;
	margin-top: 100px;
	line-height: 300%;
	padding-left: 30px;
}

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

.box8 button a {
	color: #fff;
	text-decoration: none;
}

.box8 button:hover {
	background-color: #1abc9c;
}



.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: 20%;
    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: 95%;
    height: auto;
	margin: 30px 0;
}

.article button {
	width: 30%;
	height: 50px;
	background: #16a085;
	color: #FFF;
	border-radius: 30px;
	font-size: 20px;
	font-weight: bolder;
	cursor: pointer;
	border: none;
	margin: 30px;
}

.article button a{
	color: #fff;
	text-decoration: none;
}

.article button:hover {
	text-decoration: underline;
} 

.story
{
	font-size: 20px;
	padding: 5px;
}

.story h1
{
	font-weight: lighter;
	
}

.boxtext
{
	width: 40%;
	max-height: 40px;
	padding: 10px;
	background: #FFF;
	z-index: 1;
	margin-top: -80px; 
	color: #2d3436;
}

.boxtext1
{
	width: 30%;
	max-height: 40px;
	padding: 10px;
	background: #FFF;
	z-index: 1;
	margin-top: -80px; 
	color: #2d3436;
}

.boxtext2
{
	width: 35%;
	max-height: 40px;
	padding: 10px;
	background: #FFF;
	z-index: 1;
	margin-top: -80px; 
	color: #2d3436;
}



.container1
{
	width: 100%;
	height: auto;
	margin: 0px auto;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	overflow: hidden;
	cursor: pointer;
}

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

.box h3
{
	margin: 10px 0;
	padding: 10px 10px 0 ;
	font-weight: 300;
}

.box p{
	padding: 0 10px;
}

.box .fa{
	padding: 10px;
}

.container1 .box
{
	position: relative;
	width: 45%;
	height: 400px;
	margin: 20px auto;
	box-sizing: border-box;
	display: inline-block;
	text-align: left;
	line-height: 150%;
	box-shadow: none;
}

.container1 .box .boximg
{
	position: relative;
	overflow: hidden;
}

.container1 .box .boximg img
{
	width: 100%;
	height: 220px;
	transition: transform .2s;
}

.container1 .box:hover .boximg img
{
	transform: scale(1.2);
	overflow: hidden;
	transition: all .2s ease-in;
	opacity: .5;
}

.container1 .box a {
	color: #2d3436;
	text-decoration: none;
}

.container1 .box:hover a {
	text-decoration: none;
}

.container2
{
	width: 100%;
	height: auto;
	margin: 0px auto;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	overflow: hidden;
	cursor: pointer;
}

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

.box2 h3
{
	margin: 20px 0;
	padding: 10px 10px 0 ;
}

.box2 p{
	padding: 0 10px;
}

.box2 .fa{
	padding: 10px;
}

.container2 .box2
{
	position: relative;
	width: 45%;
	height: 400px;
	margin: 20px auto;
	box-sizing: border-box;
	display: inline-block;
	text-align: left;
	line-height: 150%;
	box-shadow: none;
}

.container2 .box2 .boximg2
{
	position: relative;
	overflow: hidden;
}

.container2 .box2 .boximg2 img
{
	width: 100%;
	height: 200px;
	transition: transform .2s;
}

.container2 .box2:hover .boximg2 img
{
	transform: scale(1.2);
	overflow: hidden;
	transition: all .2s ease-in;
	opacity: .5;
}

.container2 .box2 a {
	color: #2d3436;
	text-decoration: none;
}

.container2 .box2:hover a {
	text-decoration: none;
}

.container3
{
	width: 100%;
	height: auto;
	margin: 0px auto;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	overflow: hidden;
	cursor: pointer;
}

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

.box3 h3
{
	margin: 20px 0;
	padding: 10px 10px 0 ;
}

.box3 p{
	padding: 0 10px;
}

.box3 .fa{
	padding: 10px;
}

.container3 .box3
{
	position: relative;
	width: 45%;
	height: 400px;
	margin: 20px auto;
	box-sizing: border-box;
	display: inline-block;
	text-align: left;
	box-shadow: none;
}

.container3 .box3 .boximg3
{
	position: relative;
	overflow: hidden;
}

.container3 .box3 .boximg3 img
{
	width: 100%;
	height: 200px;
	transition: transform .2s;
}

.container3 .box3:hover .boximg3 img
{
	transform: scale(1.2);
	overflow: hidden;
	transition: all .2s ease-in;
	opacity: .5;
}

.container3 .box3 a {
	color: #2d3436;
	text-decoration: none;
}

.container3 .box3:hover a {
	text-decoration: none;
}



.container4
{
	width: 100%;
	height: 600px;
	margin: 20px auto;
}

.container4 .box4
{
	position: relative;
	width: 100%;
	height: 600px;
	margin: auto;
	text-align: center;
	box-shadow: none;
}


.container4 h1
{
	font-size: 60px;
	font-weight: 400;
	color: #f2f2f2;
	z-index: 90;
	padding: 70px;
}

.container4 .text{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	color: #f2f2f2;
	z-index: 90;
	background-color: rgb(0,0,0);
    background-color: rgba(0,0,0, 0.4);
}

.container4 .boximg4 img
{
	width: 100%;
	height: 600px;
}

.man {
	position: absolute;
	display: inline-block;
	top: 75%;
	left: 0%;
	z-index: 90;
}

.man img{
	width: 20%;
	height: 20%;
	border: #fff 3px solid;
}

.text a{
	color: #fff;
	text-decoration : none; 
}

.text h2:hover
{
	text-decoration: underline;
}

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

.container5 .box5
{
	width: 45%;
    position: relative;
	height: 200px;
	margin: 20px auto;
	box-sizing: border-box;
	display: inline-block;
	text-align: center;
	box-shadow: none;
}

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

.box5 h3
{
	margin: 20px 0;
	padding: 10px 10px 0 ;
}

.box5 p{
	padding: 0 10px;
}

.box5 .fa{
	padding: 10px;
}

.container5 .box5 .boximg5
{
	position: relative;
	overflow: hidden;
}

.container5 .box5 .boximg5 img
{
	width: 100%;
	height: 200px;
	transition: transform .2s;
}

.container5 .box5:hover .boximg5 img
{
	transform: scale(1.2);
	overflow: hidden;
	transition: all .2s ease-in;
	opacity: .5;
}

.container5 .box5 a {
	color: #2d3436;
	text-decoration: none;
}

.container5 .box5:hover a {
	text-decoration: none;
}


.container5 .box5 .boximg5 .overlay {
	color: #FFF;
    position: absolute;
	background: #000;
	opacity:0.6;
    bottom: 50%;
	left: 0;
    right: 0;
    overflow: hidden;
    width: 100%;
    height:0;
    transition: .5s ease;
	cursor: pointer;
}

.container5 .box5 .boximg5 .overlay .text {
  color: white;
  font-size: 30px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
}

.container5 .box5:hover .overlay {
  bottom: 0;
  height: 100%;
}

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

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

.container6 .box6
{
	position: relative;
	width: 30%;
	height: 300px;
	margin: 10px auto;
	text-align: left;
	padding-top: 20px;
}

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

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

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

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

.container6 .box8{
	width: 50%;
	height: auto;
	margin-top: 100px;
	line-height: 300%;
	padding-left: 30px;
}

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

.box8 button a {
	color: #fff;
	text-decoration: none;
}

.box8 button:hover {
	background-color: #1abc9c;
}



.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;
}

.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;
}

	
.nav 
{
	float: none;
	padding: 20px;
	display: none;
}
	
.section 
{
    width: 100%;
    height : 300px; 
}
	
#container 
{
	width: 100%;
	height: 100%;
	background-size: cover;
}


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

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

#slides ul li .text a 
{
	text-decoration: none;
}
	
.story {
	font-size: 15px;
}

.story h1 {
	font-weight: lighter;
}
	
.story .boxtext 
{
	width: 60%;
	height: 30px;
	padding: 5px;
	background: #FFF;
	z-index: 1;
	margin-top: -70px; 
	color: #2d3436;
}

.story .boxtext1
{
	width: 50%;
	height: 30px;
	padding: 5px;
	background: #FFF;
	z-index: 1;
	margin-top: -70px; 
	color: #2d3436;
}

.story .boxtext2
{
	width: 60%;
	height: 30px;
	padding: 5px;
	background: #FFF;
	z-index: 1;
	margin-top: -70px; 
	color: #2d3436;
}

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

.article button 
{
	width: 50%;
	height: 50px;
	background: #16a085;
	color: #FFF;
	border-radius: 30px;
	font-size: 20px;
	font-weight: bolder;
	cursor: pointer;
	border: none;
}

.article button a
{
	color: #fff;
	text-decoration: none;
}

.article button:hover {
	text-decoration: underline;
} 
	
.container1
{
	width: 100%;
	height: auto;
	margin: 0px auto;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	overflow: hidden;
	cursor: pointer;
}

.boximg
{
	width: 100%;
	height: 220px;
}

.box h3
{
	margin: 20px 0;
	padding: 10px 10px 0 ;
	font-weight: 300;
}

.box p
{
	padding: 0 10px;
}

.box .fa
{
	padding: 10px;
}

.container1 .box
{
	position: relative;
	width: 100%;
	height: 400px;
	margin: 10px auto;
	box-sizing: border-box;
	display: inline-block;
	text-align: left;
	line-height: 150%;
	box-shadow: none;
}

.container1 .box .boximg
{
	position: relative;
	overflow: hidden;
}

.container1 .box .boximg img
{
	width: 100%;
	height: 220px;
	transition: transform .2s;
}

.container1 .box:hover .boximg img
{
	transform: scale(1.2);
	overflow: hidden;
	transition: all .2s ease-in;
	opacity: .5;
}

.container1 .box a 
{
	color: #2d3436;
	text-decoration: none;
}

.container1 .box:hover a {
	text-decoration: none;
}



.container2
{
	width: 100%;
	height: auto;
	margin: 0px auto;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	overflow: hidden;
	margin-top: 30px;
	cursor: pointer;
}


.boximg2
{
	width: 100%;
	height: 220px;
}

.box1 h3
{
	margin: 20px 0;
	padding: 10px 10px 0 ;
}

.box1 p{
	padding: 0 10px;
}

.box1 .fa{
	padding: 10px;
}

.container2 .box2
{
	position: relative;
	width: 100%;
	height: 400px;
	margin: 10px auto;
	box-sizing: border-box;
	display: inline-block;
	text-align: left;
	line-height: 150%;
	box-shadow: none;
}

.container2 .box2 .boximg2
{
	position: relative;
	overflow: hidden;
}

.container2 .box2 .boximg2 img
{
	width: 100%;
	height: 220px;
	transition: transform .2s;
}

.container2 .box2:hover .boximg2 img
{
	transform: scale(1.2);
	overflow: hidden;
	transition: all .2s ease-in;
	opacity: .5;
}

.container2 .box2 a {
	color: #2d3436;
	text-decoration: none;
}

.container2 .box2:hover a {
	text-decoration: none;
}



.container3
{
	width: 100%;
	height: auto;
	margin: 0px auto;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	overflow: hidden;
	margin-top: 30px;
	cursor: pointer;
}

.boximg3
{
	width: 100%;
	height: 220px;
}

.box3 h3
{
	margin: 20px 0;
	padding: 10px 10px 0 ;
}

.box3 p{
	padding: 0 10px;
}

.box3 .fa{
	padding: 10px;
}

.container3 .box3
{
	position: relative;
	width: 100%;
	height: 400px;
	margin: 10px auto;
	box-sizing: border-box;
	display: inline-block;
	text-align: left;
	line-height: 150%;
	box-shadow: none;
}

.container3 .box3 .boximg3
{
	position: relative;
	overflow: hidden;
}

.container3 .box3 .boximg3 img
{
	width: 100%;
	height: 220px;
	transition: transform .2s;
}

.container3 .box3:hover .boximg3 img
{
	transform: scale(1.2);
	overflow: hidden;
	transition: all .2s ease-in;
	opacity: .5;
}

.container3 .box3 a {
	color: #2d3436;
	text-decoration: none;
}

.container3 .box3:hover a {
	text-decoration: none;
}


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

.container4 h1
{
	font-size: 30px;
	font-weight: 400;
	color: #f2f2f2;
	z-index: 90;
	padding: 30px;
}

.container4 .man{
	top: 40%;
	z-index: 99;
}

.man img{
	width: 50%;
	height: 50%;
	border: #fff 5px solid;
}


.container5
{
	width: 100%;
	height: auto;
	margin: 0px auto;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	overflow: hidden;
	position: relative;
}

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

.container5 .box5
{
	position: relative;
	width: 100%;
	height: 200px;
	margin: 20px auto;
	box-sizing: border-box;
	display: inline-block;
	box-shadow: none;
}

.container5 .boxing5
{
	position: relative;
	overflow: hidden;
}

.container5 .box5 .boxing5 img
{
	width: 100%;
	height: 200px;
	display: block;
}

.container5 .box5 .boxing5 .overlay {
	color: #FFF;
    position: absolute;
	background: #000;
	opacity:0.6;
    bottom: 50%;
	left: 0;
    right: 0;
    overflow: hidden;
    width: 100%;
    height:0;
    transition: .5s ease;
	cursor: pointer;
}

.container5 .box5 .boxing5 .overlay .text {
  color: white;
  font-size: 30px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
}

.container5 .box5:hover .overlay {
  bottom: 0;
  height: 100%;
}


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

.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: 80%;
	height: auto;
	line-height: 300%;
	box-shadow: none;
}

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

.box8 button a {
	color: #fff;
	text-decoration: none;
}

.box8 button:hover {
	background-color: #1abc9c;
}

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

.box7 ul{
	display: flex;
	position: absolute;
	left: 50%;
	top : 30%;
	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;
}

.article
{
    width: 90%;
    height: auto;
	margin: 50px 0;
}

.article button {
	width: 40%;
	height: 50px;
	background: #16a085;
	color: #FFF;
	border-radius: 30px;
	font-size: 20px;
	font-weight: bolder;
	cursor: pointer;
	border: none;
}

.article button a{
	color: #fff;
	text-decoration: none;
}

.article button:hover {
	text-decoration: underline;
} 

.story
{
	font-size: 14px;
	padding: 20px;
}

.story h1
{
	font-weight: lighter;
	
}

.boxtext
{
	width: 90%;
	max-height: 25px;
	padding: 3px;
	background: #FFF;
	z-index: 1;
	margin-top: -75px; 
	color: #2d3436;
}

.boxtext1
{
	width: 70%;
	max-height: 25px;
	padding: 3px;
	background: #FFF;
	z-index: 1;
	margin-top: -75px; 
	color: #2d3436;
}

.boxtext2
{
	width: 80%;
	max-height: 25px;
	padding: 3px;
	background: #FFF;
	z-index: 1;
	margin-top: -75px; 
	color: #2d3436;
}

.hrstory
{
    width: 100%;
	height: 10px;
	background: #3498db;
	border: none;
	margin-top: 80px;
}

.hrstory1
{
    width: 100%;
	height: 5px;
	background: #3498db;
	border: none;
	margin: 10px 0;
}

.readmor
{
	width: 30%;
	height: 40px;
	background: #16a085;
	color: #FFF;
	border-radius: 30px;
	font-size: 20px;
	font-weight: bolder;
	padding-top: 15px;
	cursor: pointer;
}

.container-galleries{
	width: 100%;
	height: auto;
	margin: 10px auto;
	display: flex;
	display: -ms-flexbox; 
	flex-direction: row;
	flex-wrap: wrap;
	-ms-flex-wrap: wrap; 
	overflow: hidden;
	cursor: pointer;
}

.container-galleries .box-gallerie{
	position: relative;
	width: 100%;
	height: auto;
	margin: 20px auto;
	box-sizing: border-box;
	text-align: left;
}

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



.container-galleries .box-gallerie .boxgallerie{
	position: relative;
	overflow: hidden;
}

.container-galleries .box-gallerie .boxgallerie img{
	width: 100%;
	max-height: 100vh;
	height: auto;
	transition: transform 2s;
}

.container-galleries .boxgallerie:hover img{
	transform: scale(1.2);
	overflow: hidden;
	transition: all 1s ease-in;
}

.boxgallerie .overlay {
  position: absolute; 
  bottom: 0; 
  background: rgb(0, 0, 0);
  background: rgba(0, 0, 0, 0.5);
  color: #f1f1f1;
  width: 100%;
  height: 30px;
  transition: .5s ease;
  opacity:0;
  font-size: 20px;
  text-align: center;
  padding: 10px 0;
}

.boxgallerie:hover .overlay {
  opacity: 1;
}

}
