@import url("https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Kanit", sans-serif;
  scroll-behavior: smooth;
}

body {
	background-color:#002802;
}

header {
  position: absolute; 
  top: 0;
  left: 0;
  width: 100%;
  padding: 40px 100px;
  z-index: 1000;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
header .logo {
  height: 100px;
  color: #fff;
  cursor: pointer;
  padding-right: 3em;
}

.logo {
  font-size: 2em;
}

@media (max-width: 900px) {
  header {padding: 40px 50px;}
  .logo {font-size: 1.2em;}
}

.toggle {
  position: fixed;
  top: 40px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: url(../imag/menu.png);
  background-repeat: no-repeat;
  background-size: 30px;
  background-position: center;
  cursor: pointer;
}
.toggle.active {
  background: url(../imag/close.png);
  background-repeat: no-repeat;
  background-size: 25px;
  background-position: center;
  cursor: pointer;
}

.btn {
  display: inline-block;
  background-color: rgb(226, 228, 152);
  padding: 0.5em 1em;
  margin-top: 1em;
  text-decoration: none;
  font-weight: 700;
  color: rgba(0, 35, 0);
  border-radius: 5px;
}

.btn:hover {
  background-color: rgb(248, 250, 182);
}

.showcase {
  position: relative;
  right: 0;
  width: 100%;
  min-height: 100vh;
  padding: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.5s;
  background: url("../imag/bg-lily.jpg");
  background-size: cover;
  background-position: center;
  background-position-y: top;
}

.showcase.active {
  right: 300px;
}

.showcase video {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* opacity: 0.7; */
}

@media (max-width: 900px) {
  video {display: none;}
}

/* .showcase.overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(3, 17, 0, 0.4);
  z-index: 2; 
} */

.product-header {
  position: relative;
  width: 100%;
  height: 140px;
  background-color: rgba(0, 35, 0); 
}
.product-header h1 {
  position: relative;
  top: 50%;
  left: 20%;
  transform: translateY(-50%);
  text-transform: uppercase;
  color: #fff;
  font-size: 90px;
  margin: auto;
}
.product-header h1 span {
  font-size: 40px;
}

.sidepanel  {
  width: 0;
  position: fixed;
  z-index: 1;
  height: 100vh;
  top: 0;
  right: 0;
  background-color: #0b4622;
  /* background-image: linear-gradient(to left, #0b4622 300px, rgba(0,0,0,0.2) 300px 100% ); */
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 60px;
}

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

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

.sidepanel .closebtn {
  position: absolute;
  top: 0;
  right: 30px;
  font-size: 60px;
}

.openbtn {
  font-size: 20px;
  cursor: pointer;
  background-color: #111;
  color: white;
  padding: 10px 15px;
  border: none;
}

.openbtn:hover {
  background-color:#444;
}

.product-page {
  background:rgba(0, 35, 0)
}

.product {
  position: relative;
  margin: auto;
  width: 70%;
  background-color: rgba(0, 35, 0, 1);
  display: grid;
  grid-template-columns: 40% 60%;
}

@media (max-width: 900px) {
  .product {grid-template-columns: 1fr;}
}

.product-pic img {
  width: 100%;
}

.product-content {
  margin: 0;
  padding: 40px 40px;
  background-color: rgba(0, 35, 0, 1);
  color: #fff;
  
}
.product-content h1 {
  padding-bottom: 2em;
}
.product-content p {
  padding-bottom: 1em;
}
.product-content ol, ul {
  padding-left: 30px;
}
.product-content img {
  max-width: 80%;
  height: auto;
  margin: auto;
  display: block;
  padding: 20px;  
}
.product-content video {
  padding: 20px 0;
  width: 700px;
}

.product-detail {
  margin-top: 4em;
}

.product-attachment {
  display: grid;
  justify-content: center;
  color: #fff;
  padding-bottom: 2em;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0031008e;
  /* mix-blend-mode: overlay; */
}

.text {
  position: relative;
  z-index: 10;
  margin-top: 50px;
}

.text h2 {
  font-size: 2.5em;
  font-weight: 800;
  color: #fff;
  line-height: 1em;
  /* text-transform: uppercase; */
}
.text h3 {
  font-size: 2em;
  font-weight: 700;
  color: #fff;
  line-height: 1em;
  text-transform: uppercase;
}
.text p {
  font-size: 1.1em;
  color: #fff;
  margin: 20px 0;
  font-weight: 400;
  max-width: 700px;
}
.text a {
  display: inline-block;
  font-size: 1em;
  background: rgba(255, 255, 255, 0.466);
  padding: 10px 30px;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 500;
  margin-top: 10px;
  color: #111;
  letter-spacing: 2px;
  transition: 0.2s;
}
.text a:hover {
  background: rgba(255, 255, 255, 0.774);
  letter-spacing: 5px;
}
.social {
  position: absolute;
  z-index: 10;
  bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.social li {
  list-style: none;
}
.social li a {
  display: inline-block;
  margin-right: 20px;
  filter: invert(1);
  transform: scale(0.6);
  transition: 0.5s;
}
.social li a:hover {
  transform: scale(0.65) translateY(-15px);
}
.menu {
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.5s;
}
.menu.active {
    right: 0;
}


.menu ul {
  position: relative;
}
.menu ul li {
  list-style: none;
}
.menu ul li a {
  text-decoration: none;
  font-size: 24px;
  color: #111;
  text-shadow:0 0 8px #fff;
}
.menu ul li a:hover {
  color: #00ad09;
}

@media (max-width: 900px) {
  .showcase,
  .showcase header {
    padding: 40px;
  }
  .text h2 {
    font-size: 3em;
  }
  .text h3 {
    font-size: 2em;
  }
}

.s2 {
    position: relative;
    right: 0;
    padding-top: 30px;
    padding-bottom: 30px;
    background: rgb(255, 255, 187);
    transition: 0.5s;
}
.s2.active {
    right: 300px;
}
.s2 h1 {
  margin: auto;
  text-align: center;  
  color: rgb(255, 255, 187);
  background-color: rgba(7, 31, 0, 0.7);
}

.s2 h2 {
  padding: .5em;
}


 .categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-gap: 1em;
    margin-top: 40px;
}

/* LAYOUT */
.container {
  position: relative;
	margin:0 20px;
	overflow:hidden;
  /* width:360px; */
  text-align: center;
}


.wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(430px, 1fr));
  margin: 0 auto;
  padding: 0 30px;
}

.wrapper2 {
  margin: 0 auto;
  padding: 0 30px;
}

.category {
  margin: auto;
  text-align: center;
}

.prod {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 10px;
}

.prod2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  padding: 10px;
}

.herbs {
  background-color: hsla(120, 100%, 20%, 0.4);
}

.pest {
  background-color: hsla(51, 100%, 50%, 0.4);
}

.steril {
  background-color: hsla(212, 69%, 53%, 0.4);
}

.solvents {
  background-color: hsla(315, 57%, 51%, 0.4);
}

.food {
  background-color: hsla(0, 98%, 50%, 0.4);
}

.card {
  position: relative;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.card a {
  text-decoration: none;
  color: #000;
  font-size: large;
  transition: .3s;
}

.card a:hover {
  color: #fff;
}

/* .picture {
  overflow: hidden;
} */

.card img {
  position: relative;
  transition: transform .2s;
  filter: drop-shadow(1px 3px 7px rgba(0, 0, 0, 0.8));
}
.card img:hover {
  transform: scale(1.1);
  filter: drop-shadow(1px 3px 10px rgba(0, 0, 0, 0.5));
}
.card-title {
  margin-top: 1em;
  height: 3.5em;
}

/* Events */

.eventh {
  position:relative; 
  background-image: url('../imag/animals.jpg');
  background-color: black;
  background-position:center;
  background-position-y: top;
  background-size:cover;
  background-repeat:no-repeat;
  background-attachment:fixed;  
  min-height: 500px;
  z-index: 3;
  right: 0;
  transition: 0.5s;
}
.eventh.active {
  right: 300px;
}

.eventc {
  position: relative;
  z-index: 3;
  background-color: #147d3e;
  padding: 30px;  
  right: 0;
  transition: 0.5s;
}
.eventc.active {
  right: 300px;
}

.event-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 10px;
}

.event-card {
  background-color: #ffffbb;
  /* width: 300px; */
  margin: 20px;
  overflow: hidden;
  align-items: center;    
}
.event-card img {
  position: relative;
  width: 100%;   
}
.event-card p {
  padding: 10px;
}
.event-card img:hover {
  transform: scale(1.1);
  transition: .4s; 
}


.about {
  position:relative; 
  background-image: url('../imag/3.jpg');
  background-color: black;
  background-position:center;
  background-position-y: top;
  background-size:cover;
  background-repeat:no-repeat;
  background-attachment:fixed;  
  min-height: 500px;
  z-index: 3;
  right: 0;
  transition: 0.5s;
}
.about.active {
  right: 300px;
}

.aboutcon {
  position: relative;
  z-index: 4;
  margin: 0 auto;
  background-color: rgb(255, 255, 187);
  text-align: center;
  padding: 100px;
  min-height: 400px;
  right: 0;
  transition: 0.5s;
}
.aboutcon.active {
  right: 300px;
}
.aboutcon p {
  font-size: 24px;
  margin-bottom: 20px;
}
.aboutcon img {
  width: 80%;
  height: auto;
}

.ptext{
  position:absolute;
  top:50%;
  width:100%;
  text-align:center;
  color:#000;
  font-size:40px;
  letter-spacing:8px;
  text-transform:uppercase;
  line-height: 2.5em;
}

.ptext .border{
  background-color:rgba(7, 31, 0, 0.7);
  color:#fff;
  padding:20px;
}

.lilyblog {
  position:relative; 
  background-image: url('../imag/blog-bg.png');
  background-color: black;
  background-position:center;
  background-position-y: top;
  background-size:cover;
  background-repeat:no-repeat;
  background-attachment:fixed;  
  min-height: 500px;
  z-index: 3;
  right: 0;
  transition: 0.5s;
}
.lilyblog.active {
  right: 300px;
}

.lilyblogcon {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  grid-gap: 30px;
  margin-top: 40 auto;
  background-color: rgb(255, 255, 187);
  text-align: center;
  padding: 100px;
  min-height: 400px;
  right: 0;
  transition: 0.5s;
}
.lilyblogcon.active {
  right: 300px;
}

.card1 {
  position: relative;
  margin: 20px;
  border-radius: 20px;
}
.card1 img {
  width: 100%;
  height: auto;
  border-radius: 20px 20px 0 0;
}
.card1 a {
  text-decoration: none;
  color: #111;
}
.card1:hover {
  background-color: rgb(235, 235, 171);
}

.conect {
  position: relative;
  z-index: 3;
  right: 0;
  background-color: rgba(35, 83, 0, 0.65);
  text-align: center;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  margin: auto;
  padding: 30px 0;
  color: rgb(255, 255, 187);
  transition: 0.5s;
}
.conect h1 {
  font-size: 40px;
  color: rgb(255, 255, 187);
}
.conect div {
  padding: 20px;
}
.conect.active {
  right: 300px;
}

footer {
  position: relative;
  bottom:0;
  z-index: 3;
  width: 100%;
  margin: auto;
  background-color: rgba(7, 31, 0, 1);
  padding: 15px;
  text-align: center;
  color: rgb(255, 255, 187);
}
footer a {
  color: rgb(255, 255, 187);
}

/* Table Style */

.container th h1 {
  font-weight: bold;
  font-size: 1em;
text-align: left;
color: #185875;
}

.container td {
  font-weight: normal;
  font-size: 1em;
-webkit-box-shadow: 0 2px 2px -2px #0E1119;
   -moz-box-shadow: 0 2px 2px -2px #0E1119;
        box-shadow: 0 2px 2px -2px #0E1119;
}

.container {
  text-align: left;
  overflow: hidden;
  width: 100%;
  margin: 0 auto;
display: table;
padding: 2em 0 2em 0;
}

.container td, .container th {
  padding-bottom: 2%;
  padding-top: 2%;
padding-left:2%;  
}

/* Background-color of the odd rows */
.container tr:nth-child(odd) {
  background-color: #325032;
}

/* Background-color of the even rows */
.container tr:nth-child(even) {
  background-color: #2c4630;
}

.container th {
  background-color: #142414;
}

/* .container td:first-child { color: #FB667A; } */

.container tr:hover {
 background-color: #465246;
-webkit-box-shadow: 0 6px 6px -6px #0E1119;
   -moz-box-shadow: 0 6px 6px -6px #0E1119;
        box-shadow: 0 6px 6px -6px #0E1119;
}

.container td:hover {
background-color: #fff942d8;
color: #403E10;
font-weight: bold;

box-shadow: #7F7C21 -1px 1px, #7F7C21 -2px 2px, #7F7C21 -3px 3px, #7F7C21 -4px 4px, #7F7C21 -5px 5px, #7F7C21 -6px 6px;
transform: translate3d(6px, -6px, 0);

transition-delay: 0s;
  transition-duration: 0.4s;
  transition-property: all;
transition-timing-function: line;
}

@media (max-width: 800px) {
.container td:nth-child(4),
.container th:nth-child(4) { display: none; }
}

@import url(https://fonts.googleapis.com/css?family=Open+Sans:400italic);
blockquote{
  font-size: 1.4em;
  width:90%;
  margin:50px auto;
  font-family:Open Sans;
  font-style:italic;
  color: #ffffff;
  padding:1.2em 30px 1.2em 75px;
  border-left:8px solid #095009 ;
  line-height:1.6;
  position: relative;
  background:#ededed59;
}

blockquote::before{
  font-family:Arial;
  content: "\201C";
  color:#095009;
  font-size:4em;
  position: absolute;
  left: 10px;
  top:-10px;
}

blockquote::after{
  content: '';
}

blockquote span{
  display:block;
  color:#333333;
  font-style: normal;
  font-weight: bold;
  margin-top:1em;
}

.artical {
	margin:auto;
	margin-top:160px;
	width:70%;
	}
