body,h1,h2,h3,h4,h5,h6 {font-family: "Comfortaa", sans-serif; font-weight: 700;}
p {font-family: "Roboto", sans-serif} 

body, html {
  height: 100%;
  line-height: 1.8;
}

/* Full height image header */
.bgimg-1 {
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    background-image: url("../images/background-8.png");
    min-height: 100%;
  }
  
  .logo-img {
    max-width: 50%;
}
  
  .w3-bar .w3-button {
    padding: 16px;
  }
  
  .w3-bar-item {
    vertical-align: middle;
  }
  
  .pd-beige {
    color:#000!important;
    background-color: #f9f5e0!important;
  }
  
  .pd-light-green {
    color:#fff!important;
    background-color: #A6A867!important;
  }
  
  .pd-dark-green {
    color:#fff!important;
    background-color: #52523D!important;
  }
  
/* Video related CSS*/
/* First make sure the video thumbnail images are responsive. */

img {
    max-width: 100%;
    height: auto;
  }
  
  /* 
  This is the starting grid for each video with thumbnails 4 across for the largest screen size.
  It's important to use percentages or there may be gaps on the right side of the page. 
  */
  .video {
    background: #f9f5e0!important;
    padding-bottom: 20px;
    padding: 6px;
    border-radius: 20px;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.15);
    width: 23%; /* Thumbnails 4 across */
    margin: 1%;
    flex: 1;
    float: left;

    .videoTitle {
      color: #52523D;
      text-align: center;
      text-size-adjust: auto;
    }
  }

   /* 
   These keep the height of each video thumbnail consistent between YouTube and Vimeo.
   Each can have thumbnail sizes that vary by 1px and are likely break your layout. 
   */

  .video figure {
    height: 0;
    padding-bottom: 56.25%;
    overflow: hidden;

    .video figure a {
      display: block;
      margin: 0;
      padding: 0;
      border: none;
      line-height: 0;
    }
  }

  /* Media Queries - This is the responsive grid. */

  @media (max-width: 1024px) {
    .video {
      width: 31.333%; /* Thumbnails 3 across */
    }
  }

  @media (max-width: 600px) {
    .video {
      width: 48%; /* Thumbnails 2 across */
    }
  }

  @media (max-width: 360px) {
    .video {
      display: block;
      width: 96%; /* Single column view. */
      margin: 2%; /* The smaller the screen, the smaller the percentage actually is. */
      float: none;
    }
  }

  /* These are my preferred rollover styles. */
  .video img {
    width: 100%;
    opacity: 1;
  }

  .video img:hover, .video img:active, .video img:focus {
    opacity: 0.75;
  }

