@charset "utf-8";

/* CSS Document */

/* whole page */

body {

	margin: 0 auto;
	padding: 0;
	width: 100%;
	height: 100%;
	background-color: rgb(235, 235, 235);
}

.main {
	width: 100%;
	height: auto;
	background-color:#FFF;
	text-align: left;
	font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
	font-size:14px;
	padding-left: 20px;
	padding-right: 20px;
	display: block;
	overflow: auto;
    margin-top: 0px;
	margin-bottom: 25px;
	padding-top: 25px;
	padding-bottom: 25px;
} 

.clear { clear: both; 
}

a:link {
	color:#66CC66;
}

a:visited {
	color:#66CC66;
}

a:hover {
	color:#006633;
}

.highlight {
    width: 100%;
	height: auto;
    background-color: #006633;
    text-align: left;
	font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
    color: #FFF;
	font-size:14px;
	padding-left: 20px;
	padding-right: 20px;
	display: block;
	overflow: auto;
    margin-top: 0px;
	margin-bottom: 15px;
	padding-top: 15px;
	padding-bottom: 15px;
}

.highlight a:link {
        color:#66CC66;
    }
    
.highlight a:visited {
        color:#66CC66;
    }
    
.highlight a:hover {
        color:#FFF;
    }



/* header and nav hamburger */

#header {
    position: sticky;
	top: 0;	
	padding-bottom: 0px; 
    background-color: rgb(235, 235, 235);
    height: 75px;
    flex-shrink: inherit;
}

#header img {
    text-align: right;
    float: right;
	height: 80px;
    width: auto;
    padding-right: 15px;
    padding-top: 15px;
	padding-bottom: 0px;
    object-fit: contain;
    z-index: 1;

} 

@media screen and (max-width: 500px) {
	#header {
		position: sticky;
		top: 0;	
		padding-bottom: 0px; 
        background-color: rgb(235, 235, 235);
        height: 75px;

	}
}

@media screen and (max-width: 500px) {
    #header img {
		text-align: right;
		float: right;
		width: 60%;
		padding-right: 15px;
        padding-top: 15px;
		padding-bottom: 0px;
    }
}

#menuToggle {
    display: block;
    position: fixed;
    float: left;
    top: 28px;
    left: 20px;
    overflow: visible;
    z-index: 1;
    -webkit-user-select: none;
    user-select: none;
  }
  
  @media screen and (max-width: 500px) {
      #menuToggle {
        width: 100%;
        display: block;
          position: fixed;
        float: left;
        top: 28px;
        left: 20px;
        overflow: visible;
        z-index: 1;
        -webkit-user-select: none;
        user-select: none;
      }
  
  }
  
  #menuToggle a {
    text-decoration: none;
    color: #006633;
    transition: color 0.3s ease;
  }
  
  #menuToggle a:hover {
    color: white;
  }
  
  #menuToggle input {
    display: block;
    width: 50px;
    height: 32px;
    position: absolute;
    top: -7px;
    left: -5px;
    cursor: pointer;
    opacity: 0; 
    z-index: 2; 
    -webkit-touch-callout: none;
  }
  
  #menuToggle span {
    display: block;
    width: 33px;
    height: 4px;
    margin-bottom: 5px;
    position: relative;
    overflow: visible;
    background: #006633;
    border-radius: 3px;
    z-index: 1;
    transform-origin: 4px 0px;
    transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
                background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
                opacity 0.55s ease;
  }
  
  #menuToggle span:first-child {
    transform-origin: 0% 0%;
  }
  
  #menuToggle span:nth-last-child(2) {
    transform-origin: 0% 100%;
  }
  
  #menuToggle input:checked ~ span {
    opacity: 1;
    transform: rotate(45deg) translate(-2px, -1px);
    background: #006633;
  }
  
  #menuToggle input:checked ~ span:nth-last-child(3) {
    opacity: 0;
    transform: rotate(0deg) scale(0.2, 0.2);
  }
  
  #menuToggle input:checked ~ span:nth-last-child(2) {
    transform: rotate(-45deg) translate(0, -1px);
  }
  
  #menu {
    position: absolute;
    width: 250px;
    margin: -100px 0 0 -50px;
    padding: 20px;
    padding-top: 100px;
    padding-bottom: 40px;
    background: #66CC66;
    opacity: 0.95;
    list-style-type: none;
    -webkit-font-smoothing: antialiased;
    transform-origin: 0% 0%;
    transform: translate(-100%, 0);
    transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
  }
  
  #menu li {
    padding: 10px 0;
    padding-bottom: 10px;
    font-size: 22px;
    font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
  }
  
  #menuToggle input:checked ~ ul {
    transform: none;
    overflow: visible;
  }
  
/*box-shadow: 0 2px 2px -1px rgba(0, 0, 0, 0.4);*/



/* footer section */

#footer {
    width: 100%;
	height: auto;
    background-color: #006633;
    color: #FFF;
    position: relative;
	left: 0;
    right: 0;
	bottom: 0;
	text-align: center;
	font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
	font-size:18px;
	padding-top: 5px;
	padding-bottom: 5px;

}

.footer {
    width: 100%;
	height: auto;
    background-color: #006633;
    color: #FFF;
    position: relative;
	left: 0;
    right: 0;
	bottom: 0;
	text-align: center;
	font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
	font-size:18px;
	padding-top: 5px;
	padding-bottom: 5px;
    z-index: 5;

}

/* Photo Gallery */

div.gallery {
	border: 1px solid #66CC66;
}

div.gallery:hover {
	border: 1px solid #66CC66;
}

div.gallery img {
	width: 100%;
	height: auto;
}

div.desc {
	padding: 15px;
	text-align: center;
}

* {
	box-sizing: border-box;
}

.responsive {
	padding: 0 6px;
	float: left;
	width: 24.99999%;
}
  
@media only screen and (max-width: 700px) {
	.responsive {
	  	width: 49.99999%;
		margin: 6px 0;
	}
}

@media only screen and (max-width: 500px) {
	.responsive {
	  	width: 100%;
	}
}

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

/* image class for small screens */

.image {
	display: block;
	width: absolute;
	height: auto;
	float: inherit;
	padding-bottom: 10px;
}

@media only screen and (max-width: 700px) {
	.image {
	  	width: 49.99999%;
	  	margin: 6px 0;
	}
}

@media only screen and (max-width: 500px) {
	.image {
	  	width: 100%;
	}
}

@media only screen and (max-width: 500px) { 
  	#center {
		width: 100%;
	}
}

/* Image Location */  

#center {		
	display: block;
	margin-left: auto;
	margin-right: auto;
	align-items: center;
}

#right {
	display: block;
	margin-left: 20px;
	margin-right: auto;
	float: right;
}

#left {
	display: block;
	margin-left: auto;
	margin-right: 20px;
	float: left;
}

/* Two image row - three image containers (use 25% for four, and 50% for two, etc) */

.column {
	float: right;
	width: 33.33%;
	padding: 5px;
}

/* Clear floats after image containers */

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

.container {
	text-align:center;
	border: 0px;
}

.center_images {
    display:inline-block;
    margin:5px 20px;
	padding:20px;
	border: 0px;
	align-items: center;
	text-align: center;
	width: 95%;
}

/* Meet the Team Image Oganization */

html {
	box-sizing: border-box;
}

*, *:before, *:after {
	box-sizing: inherit;
}

.column {
	float: left;
	width: 33.3%;
	margin-bottom: 16px;
	padding: 0 8px;
}

@media screen and (max-width: 650px) {
	.column {
	  width: 100%;
	  display: block;
	}
}

.card {
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}

.container {
	padding: 0 16px;
}

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

.title {
	color: grey;
}

.button {
	border: none;
	outline: 0;
	display: inline-block;
	padding: 8px;
	color: white;
	background-color: #006633;
	text-align: center;
	cursor: pointer;
	width: 100%;
}

.button:hover {
	background-color: #66CC66;
}

* {box-sizing: border-box}
.mySlides1, .mySlides2 {display: none}
img {vertical-align: middle;}

/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a grey background color */
.prev:hover, .next:hover {
  background-color: #f1f1f1;
  color: black;
}