:root {
  --hero-color: #252525;
  --second-hero-color: #3e3e3e;
  --button-color: #728C69;
  --light-border: solid 0.5px var(--second-hero-color);
  --ease-transition: all ease 0.5ms;
}
* {
  font-family: "Inter", sans-serif;
  line-height: 1.5em;

  /* For webkit */
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box !important;
}

html, body {
    margin: 0;
    padding: 0;
}

.container {
  width: 1080px;
}

.justify {
  max-width: 1477px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1em;
  padding-right: 1em;
}

.adjust {
  margin-left: auto;
  margin-right: auto;
  padding-left: 5%;
  padding-right: 5%;
}

body > div {
  margin-top: 68px;
}

/* Navigation Bar */
.navbar {
  background-color: var(--hero-color);
  position: fixed;
  width: 100%;
  z-index: 2;
}

.navcontent {
  position: relative;
}

.nav-logo {
  position: absolute;
  background-color: var(--second-hero-color);
  padding: 33px 33px 60px;
  z-index: 10;
  transition: padding 0.5s ease;
}

.nav-logo img {
  width: 351px;
  transition: width 0.5s ease;
}

.add-margin-left {
  margin-left: 10%;
}

.add-padding-right {
  padding-right: 10%;
}

.mainnav {
  position: relative;
  height: 150px;
  transition: height 0.5s ease;
}

.scrolled .mainnav {
    height: 73px;
    transition: height 0.3s ease;
}

.scrolled .nav-logo {
    padding: 3px 24px 13px;
    transition: padding 0.3s ease;
}

.scrolled .nav-logo img {
    width: 203px;
    transition: width 0.3s ease;
}
.menu {
  width: 100%;
  position: absolute;
  bottom: 0;
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Chrome */
  display: flex;
  justify-content: right;
  border-top: var(--light-border);
}

.menu div {
  border-left: var(--light-border);
}

.menu div a {
  display: grid;
  color: #ffff !important;
  text-decoration: none !important;
  padding: 1.5em 1em !important;
  transition: background-color 0.5s;
  font-weight: 300;
}

.menu div:last-child {
  border-right: var(--light-border);
}

.hover:hover {
  background-color: var(--second-hero-color);
}

.hover:active {
  transition: ease-out 0.1s;
  outline: dotted 2px var(--second-hero-color);
  outline-offset: 2px;
}

body div div img {
    border-radius: 10px;
}

/* End of Navigation Bar*/
/* Navigation Bar */
/*.dropdown {*/
/*  float: left;*/
/*  overflow: hidden;*/
/*}*/

.dropdown .dropbtn {
  border: none;
  outline: none;
  position: relative !important;
}



.dropdown-content {
  display: none;
  position: absolute;
  background-color: var(--hero-color);
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  width: auto;
  border-top: var(--light-border);
}

.dropdown-content a {
  float: none;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
  border-bottom: var(--light-border);
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* End */

.banner {
  width: 100%;
  max-height: 1080px;
  height: 85vh;
  padding-top: 9em;
  background-color: var(--second-hero-color);
}
.banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.three-column-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 20px;
}

.offset-top {
  margin-top: -111px;
}

.quick-tab1 {
  color: white;
  background-image: url("../images/woodland1.png");
  background-position: center;
  background-size: cover;
}

.quick-tab2 {
  color: white;
  background-image: url("../images/woodland2.png");
  background-position: center;
  background-size: cover;
}

.quick-tab3 {
  color: white;
  background-image: url("../images/woodland3.png");
  background-position: center;
  background-size: cover;
}

.quick-tab1 a, .quick-tab2 a, .quick-tab3 a{
    color:#f0f0f0;
}

.layer {
  position: relative;
  box-shadow: inset 0 0 0 1000px rgba(19, 19, 19, 0.75);
  border-radius: 8px;
  padding: 0.5em 1.5em 1em;
  height: 230px;
}

.layer::before {
  content: "";
  position: absolute;
  top:0;
  left:0;
  display: grid;
  height: 100%;
  width: 100%;
  outline: 1px solid white;
  outline-offset: -10px;
  border-radius: 1rem;
}

.layer h3, .layer ul {
  position: relative;
}

.layer h3 {
  text-align: center;
}

.layer ul {
  padding: 5px 20px;
}

.two-column-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10%;
}

.two-column-grid div img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

div > p > a {
  margin-top: 10px;
}

.button {
  margin: 1em 1em 0 0;
  display: inline-block;
  padding: 10px 40px;
  background-color: var(--button-color);
  color: white;
  border-radius: 2em;
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  box-shadow: 0px 3px 12px #728c6944;
      transition: all 0.2s;
}
.button::after {
    content: " ↝";
}

.button:hover {
    color: white;
    transform: translatey(-5px);
    background-color: #667d5e;
    box-shadow: 0px 8px 22px 5px #728c6944;
}

#announcement {
  color: white;
  background-color: var(--second-hero-color);
  text-align: center;
  padding-bottom: 1em;
    padding-top: 0.5em;
}

#announcement h1 {
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}

#date {
  margin-top: -6px;
}

.wordpress-section {
  border-bottom: solid black 1px;
}

.wordpress-section .text-box {
  padding: 2em 10em;
}

.fb-container {
  width: 600px;
  z-index: 1 !important;
}

.three-column-grid img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.text-box {
    max-width: 1000px;
}

.text-box figure img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

form .button {
    margin: 0 !important;
}

footer {
  margin-top: 4em;
  background-color: var(--hero-color);
}
/* https://cssdeck.com/labs/pure-css3-smooth-drop-down-menu*/

footer > div {
  display: grid;
  grid-template-columns: 2fr 5fr;
  padding-top: 2rem;
  padding-bottom: 2rem;
  height: 100%;
  color: white;
  
  font-weight: 200;
}

footer > div > div > img {
  width: 340px;
}

footer a {
  color: white !important;
}

footer .mainnav {
  display: grid;
  grid-template-columns: repeat(6,1fr);
}

footer .dropdown-content {
  display: contents;
  position: relative;
  background-color: revert;
  box-shadow: none;
  border: none;
}

footer .dropdown-content a {
  float: revert;
  padding: revert;
  text-decoration: none;
  color: white;
  border: none;
}


footer .hover:hover {
  background-color: revert !important;
  text-decoration: underline;
  transition: 0.5s;
}

.list-style-remove {
    list-style-type: none;
    
}

footer ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

footer .nav-arrow {
  display: none !important;
}

footer .two-column-grid p:last-child {
  text-align: right;
}

@media screen and (max-width: 1496px) {
  .add-margin-left {
    margin-left: 20px;
  }
  .add-padding-right {
    padding-right: 20px;
  }
}