body {
  background-color: white;
  margin: 0;
  padding: 0;
}
@font-face {
  font-family: overpass;
  src: url(Overpass.ttf);
}
@font-face {
  font-family: gilda;
  src: url(GildaDisplay-Regular.ttf);
}

body, html {
  scroll-padding-top: 70px; /* adjust the pixel amount here for your top navigation bar height */
}

html {
scroll-behavior: smooth;
}


h1 {
  color: black;
  font-family: overpass, verdana, sans-serif;
  font-size: 200%;
  font-weight: 200;
    letter-spacing: 1px;
    margin-left: 16px;
    margin-right: 16px;
}
h2 {
  color: black;
  font-family: overpass, verdana, sans-serif;
  font-size: 150%;
  font-weight: 200;
  text-transform: uppercase;
    letter-spacing: 1px;
    margin-left: 16px;
    margin-right: 16px;
}

h3 {
  color: black;
  font-family: overpass, verdana, sans-serif;
  font-size: 120%;
  font-weight: 150;
  text-transform: uppercase;
    letter-spacing: 1px;
    margin-left: 16px;
    margin-right: 16px;
}

p {
  color: black;
  font-family: gilda, garamond, serif;
  font-size: 100%;
  letter-spacing: 1px;
  line-height: 1.8;
  margin-left: 16px;
  margin-right: 16px;
}


ul {
  color: black;
  font-family: gilda, garamond, serif;
  font-size: 100%;
    letter-spacing: 1px;
    line-height: 1.8;
    margin-left: 16px;
    margin-right: 16px;
}

img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.button {
  background-color: #003c00;
  border: none;
  color: white;
  padding: 16px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  margin: 0;
  cursor: pointer;
 font-family: overpass, verdana, sans-serif;
  font-size: 100%;
  font-weight: 150;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition-duration: 0.4s;
}

.button:hover {
  background-color: salmon; /* black */
}

.scrollwrapper {
  overflow: auto;
}

a:link {
  text-decoration: none;
  color: #003c00;
}
a:hover {
  color: salmon;
}
a:visited {
  color: #003c00;
}

.footer{
  float: left;
  width: 33.3%;
  font-size: 80%;
  text-align: center;

  a:link {
  text-decoration: none;
  color: black;
}
a:hover {
  color: #003c00;
}
a:visited {
  color: black;
}
}


.nav-bar .icon {
  display: none;
}

@media screen and (max-width: 900px) {

 .nav-bar a {display: none;}

  .nav-bar a.icon {
    display: block;
    float: right;
    width: 50px;
  }

  .nav-bar.responsive {position: relative;}

  .nav-bar.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }

  .nav-bar.responsive li {
    width: 100%;
  }

  .nav-bar.responsive a {
    display: block;
    float: none;
    text-align: center;
  }

}

.nav-bar{

    ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  top: 0;
  position: fixed;
  width: 100%;
  font-family: overpass, verdana, sans-serif;
  font-weight: 200;
  line-height: 3;
  z-index: 2;
}


li {
  float: left;
  color: white;
  background: #003c00;
  display: block;
  position: relative;
  text-decoration: none;
  transition-duration:0.5s;
  text-align: center;
  width: 20%;
}

li a {
  color: white;
}

li:hover,
li:focus-within {
  background: salmon;
  cursor: pointer;
}

li:focus-within a {
  outline: none;
}

ul li ul {
  background: #595959;
  visibility: hidden;
  opacity: 0;
  min-width: 5rem;
  position: relative;
  transition: all 0.5s ease;
  margin-top: 0;
  padding: 0;
  left: 0;
  display: none;
}

ul li:hover > ul,
ul li:focus-within > ul,
ul li ul:hover,
ul li ul:focus {
  visibility: visible;
  opacity: 1;
  display: block
}

ul li ul li {
  clear: both;
  width: 100%;
}

}

.people {
display: flex;
flex-wrap: wrap;
padding: 8px;

}

.staffPhoto {
  position: relative;
  float: left;
  max-width: 30%;
  margin: 8px;
}

.staffText {
  position: absolute; 
  top: 0px;
  left: 0;
  padding: 16px;
  font-weight: 150;
  color: white;
  background-color: black;
    font-family: overpass, verdana, sans-serif;
    z-index: 1;
}



.conditions {
display: flex;
flex-wrap: wrap;
padding: 8px;

}

.conditionIcon {
  position: relative;
  float: left;
  max-width: 30%;
  margin: 8px;
  cursor: pointer;
  filter: gray; /* IE6-9 */
  -webkit-filter: grayscale(1); /* Google Chrome, Safari 6+ & Opera 15+ */
  filter: grayscale(1); /* Microsoft Edge and Firefox 35+ */
}

.active {
  -webkit-filter: grayscale(0);
  filter: none;
  margin: 8px;
}

.conditionIcon:hover {
  -webkit-filter: grayscale(0);
  filter: none;
}

.conditionIcon:after {
  content: '\002B';
  position: absolute;
  top: 0px;
  right: 0;
  padding: 16px;
  font-weight: 150; 
  color: white;
  background-color: black;
    font-family: overpass, verdana, sans-serif;
    z-index: 1;
}

.active:after {
  content: "\2212";
}

.conditionContent {
  max-height: 0;
  max-width: 0;
  overflow: hidden;
  margin: 0px; padding: 0px ;
  transition: max-height 0.2s ease-out;
  background-color: white;
}

.conditionContentText {
  margin-left: 200px; margin-right: 100px; padding: 0 100px; max-width: 100%; background-color: white;
h1 {
    margin-left: -100px;
  }
h3{
    margin-left: -100px;
  }
}  


.conditionIconText {
  position: absolute; 
  top: 0px;
  left: 0;
  padding: 16px;
  font-weight: 150; 
  color: white;
  background-color: black;
    font-family: overpass, verdana, sans-serif;
    z-index: 1;
}



/* Responsive layout - makes a two column-layout instead of three columns */
@media (max-width: 900px) {
  .conditionIcon {
    max-width: 46%;
  }

    .staffPhoto {
    max-width: 46%;
  }

  .conditionContentText {
  margin-left: 100px;
  margin-right: 50px;

    h1 {
    margin-left: -50px;
  }

h3{
    margin-left: -50px;
  }
}
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media (max-width: 600px) {
  .conditionIcon {
    max-width: 92%;
  }

  .staffPhoto {
    max-width: 92%;
  }

    .conditionContentText {
  margin-left: 12px;
  margin-right: 0px;
      h1 {
    margin-left: -12px;
  }

h3{
    margin-left: -12px;
  }
}
}

/* Use a media query to add a break point at 800px: */
@media screen and (max-width: 800px) {
  .footer {
    width: 100%; /* The width is 100%, when the viewport is 800px or smaller */
  }
}