h1 {
    font-family: 'Open Sans', sans-serif;
    font-weight: bold;
    font-size: 24px;
    text-transform: uppercase;
}

.descriptiontext {
    font-family: 'Open Sans', sans-serif;
    font-weight: bold;
    font-size: 14px;
    color: gray;
    max-width: 500px;
}

.caption {
    font-family: 'Open Sans', sans-serif;
    font-size: 12px;
    color: gray;
}

.anchor {
    font-family: 'Open Sans', sans-serif;
    font-weight: bold;
    font-size: 18px;
    color: gray;
    text-transform: uppercase;
    text-decoration: none;
}

.link {
    text-decoration:none;
    color: black;
}

.contactlink {
    color: black;
    target: blank;
}

/* Image Grid */
.container {
  margin: 0 auto;
  max-width: 1200px;
  padding: 20px;
}

.responsive-image {
  max-width: 100%;
}

.cell img {
  display: block;
}


.cell {
    margin: 4px;
}

@media screen and (min-width: 600px) {
  .grid {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
  }
  .cell {
    width: calc(50% - 8px);
  }
}

@media screen and (min-width: 1000px) {
  .cell {
    width: calc(33.3333% - 8px);
  }
}


/* Top Navigation Stuff */
.topnav {
    float:right;
    max-width: 400px;
    font-family: 'Open Sans', sans-serif;
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
    text-decoration: none;
    padding-top: 13px;
    background-color: #ffffff;
}

.topnav a:hover {
  color: #000000;
  text-decoration: none;
}

.active {
    color:black;
    text-decoration: none;
}

.inactive {
    text-decoration: none;
    color: gray;
}




/* Hamburger Menu / Responsive Navigation */

/* Hide the link that should open and close the topnav on small screens */
.topnav .icon {
  display: none;
}

 /* When the screen is less than 600 pixels wide, hide all links. Show the link that contains should open and close the topnav (.icon) */
@media screen and (max-width: 600px) {
  .topnav a {display: none;}
  .topnav a.icon {
    float: right;
    display: block;
    font-size: 18px;
    color: black;
  }
}

/* The "responsive" class is added to the topnav with JavaScript when the user clicks on the icon. This class makes the topnav look good on small screens (display the links vertically instead of horizontally) */
@media screen and (max-width: 600px) {
  .topnav.responsive {position: relative;
    background-color: #ffffff;
    padding: 15px 0px 0px 0px;}
  .topnav.responsive a.icon {
    position: absolute;
    right: 0;
    top: 0;
  }
    
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: center;
    font-size: 14px;
    }
}




/* Image Hover Stuff */

.overlaycontainer {
  position: relative;
  width: 100%;  
}

.overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: .25s ease;
  background-color: #000000;
}

.overlaycontainer:hover .overlay {
  opacity: .65;
}

.overlaytext {
  color: white;
  font-size: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
  font-family: 'Open Sans', sans-serif;
  font-weight: bold;
  font-size: 24px;
  text-transform: uppercase;
}




/* Inner Pages Images */
.center {
    text-align: center;
}




/* iframe stuff */
.iframe-container {
    position: relative;
    overflow: hidden;
    padding-top: 56.25%;
}

.iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.iframe-container-4x3 {
    padding-top: 75%;
}
