html {
      font-family: 'Kanit', sans-serif;
      height: 100%;
}

body {
      margin: 0;
      padding: 0; 
      height: 100%; 
      font-weight: 200; 
      font-size: 18px;
} 

* {
      box-sizing: border-box;
}

h1 {
      font-size: 40px; 
      line-height: 43px; 
      border: none; 
      letter-spacing: 2px; 
      font-weight: 700; 
      padding: 0 15px;
} 

.h2 {
      font-size: 22px; 
      line-height: 35px; 
      font-weight: 300; 
      border: none; 
      padding-bottom: 20px;
} 

a {
      text-decoration: none; 
      color: #ffffff;
}




/*BODY --------------------------------*/

header {
      position: fixed;
      top: 0; 
      left: 0; 
      padding: 6px 30px 15px 30px;
      width: 100%; 
      box-sizing: border-box; 
      z-index: 99; 
} 

header .logo { 
      height: 50px; 
      line-height: 50px; 
      font-size: 24px; 
      float: left; 
      color: #fff;
}  

header img {
      width: 130px;
      margin-top: 10px;
}


.scroll {
  transition: background-color 0.8s ease;
  background-color: rgba(55, 48, 44, 0.88); 
}

.menu-toggle {
      color: #fff; 
      float: right; 
      line-height: 50px; 
      font-size: 24px; 
      cursor: pointer; 
      display: none;
} 

/*TOP IMG------------------------------------------*/

.flex-container {
      display: flex;
      justify-content: center;
      align-items: center; 
      background-image: url("IMG_7377v2.jpg"); 
      background-repeat: no-repeat, repeat; 
      text-align: center; 
      height: 80vh;
      background-position: center;
      background-repeat: no-repeat;
      background-size: cover; 
} 

.top-img { 
      background-position: center; 
      background-repeat: no-repeat; 
      background-size: cover; 
      z-index: 9;
}
  
.flex-container::before {
    content: "";
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    background-color: rgba(55, 48, 44, 0.30); 
    height: 80vh;
}


.flex-container div {
      color: white;
} 

/*.button { 
      font-size: 22px;
      font-weight: 500;
      background-color: #DE9E48; 
      color: white; 
      padding: 15px 20px; 
      width: 250px; 
      margin: 0 auto; 
      -webkit-transition: 0.5s; 
      transition: 0.5s background-color ease-in-out; 
      border-radius: 50px;
} 

.button:hover { 
      background-color: #563727; 
} */



/*MAIN CONTENT---------------------------------*/ 

.poster-col {
      display: flex; 
      flex-direction: row; 
      align-items: center;
      justify-content: center; 
      background: #37302C; 
} 

.reverse {
      flex-direction: row-reverse;
}

.poster-item {
      width: 50%; 
      color: #fff; 
} 

.poster-item img {
      width: 100%; 
      margin-bottom: -6px; 
      max-height: 480px; 
      object-fit: cover;
} 

.text-flex {
      padding: 40px 10%;
}

/*Employee*/ 

.employee-wrapper {
      background-color: #f1efed; 
      padding: 40px 30px;
}

.employee-content {
      display: flex; 
      flex-wrap: wrap; 
      justify-content: space-between;  
      max-width: 1000px; 
      margin: 0 auto;
}

.employee {
      width: 30%;
}

.employee img {
      width: 100%;
}

.employee p {
      margin-top: 5px;
      margin-bottom: 35px;
      line-height: 1.3em;
}

span.name-heading {
      margin-bottom: 10px;
      display: inline-block;
}


/*Footer*/

footer {
      background-color: #f1efed; 
      padding: 20px 30px; 
      font-weight: 300;
      border-top: 4px solid white;
} 

footer img {
      width: 60px; 
      margin-left: -5px;
}

.footer-content {
      max-width: 1000px; 
      margin: 0 auto; 
      display: flex; 
      justify-content: space-between;
} 

.footer-left, .footer-right {
      width: 45%; 
}

/*MEDIA*/

@media (max-width: 767px) {
     .poster-col {
            flex-direction: column-reverse; 
      } 

      .poster-item {
            width: 100%; 
      } 

      .text-flex {
            padding: 40px 18%;
      }

      .employee {
            width: 46%;
      }

      .footer-content {
            flex-direction: column;
      } 

      .footer-left, .footer-right {
            width: 100%; 
      } 

}


