/*@font-face {
  font-family: 'Roboto';
  src: url('../fonts/Roboto-Black-webfont.woff') format('woff');
  font-style: normal;
  font-weight: 300;
}

@font-face {
  font-family: 'Roboto';
  src: url('../fonts/Roboto-BlackItalic-webfont.woff') format('woff');
  font-style: italic;
  font-weight: 300;
}

@font-face {
  font-family: 'Roboto';
  src: url('../fonts/Roboto-Bold-webfont.woff') format('woff');
  font-style: normal;
  font-weight: 700;
}*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  }

  body {
    font-family: 'Roboto', 'Arial', sans-serif;
    font-weight: 300;
    font-size: 12px;
    line-height: 1.8em;
    background-image: url('../images/Main-Back.png');
    background-color: #F0F0F0;
  }

  h1, h2, h3, h4, h5, h6 {
  font-family: "roboto", "Arial", "sans-serif";
  }

  h1, h2, h3, h4, h5, h6 {
    margin:20px 0;
  }

  h1 {
    font-size:1.8em;
    line-height:25px;
  }

  h2 {
    font-size:1.4em;
  }

  h3 {
    font-size:1.3em;
  }

  h4 {
    font-size: 1em;
  }

  em {
    font-style: italic;
  }

  strong {
    font-weight: bold;  /* Or 700 */
  }

  a {text-decoration: none;}

  p {
    font-family: 'Rooboto', 'Arial', sans-serif;
    font-weight: 300;
    font-size: 14px;
    line-height: 1.3em;
  }

  .title {
    text-align: center;
    font-size:1.8em;
    line-height:1.3em;
    margin: 0 auto;
    padding-bottom: 25px;
    padding-top: 35px;
  }

    .page-top {
      width: 100%;
      height: 30px;
      background-color: #666665;
      display: block;
      text-align: right;
      padding: 0px 5px 5px 5px;

      padding-right: 15px;
    }

    .logo-wrapper {
      width: 100%;
      height: 70px;
      display: flex;
      justify-content: left;
      padding: 10px 0px 0px 25px;

    }

    .illustration img {
      width: 100%;
      display: block;
      padding: 10px 20px 0px 0px;
    }

    .tagline {
      width: 100%;
      height: 90px;
      display: flex;
      justify-content: center;
      align-content: flex-end;
      padding: 5px 5px 0px 5px;
    }

    /*NAV MENU*/

    .toggle,
      [id^=drop] {
      display: none;
     }

     menu {
       margin:0;
       padding: 0;
       background-color: #666665;
     }/*change bc1e2d to 666665 main bar color desktop */

     menu:after {
      content:"";
      display:table;
      clear:both;
     }

     menu ul {
      float: left;
      padding:0;
      margin:0;
      list-style: none;
      position: relative;
     }

    menu ul li {
     margin: 0px;
     display:inline-block;
     float: left;
     }/*aligns menu horizontally*/

     menu a {
      display:block;
      padding:9px 30px;
      color:#fff;
      font-size:15px;
      text-decoration:none;
     }/*sets font colors re-exposes sub menus change padding 14 to 9 (width of bar) 20 to 30 (distance between menus)*/

     menu ul li ul li:hover { background-color:#ada8a9; }/*change bb3946 to ada8a9 changes submenu color on hover desktop and individual menus on mobile*/

     menu a:hover {
      /*background-color: none;*/
      color:#fff;
     }/*could not identify*/

     menu ul ul {
      display: none;
      position: absolute;
      top: 40px;
      }/*positioning for drop downs in relation to main bar change top 48 to 40 match narrower top bar */

      menu ul li:hover > ul {
       display:inherit;
      }

      menu ul ul li {
       width:260px;
       float:none;
       display:list-item;
       position: relative;
       border-bottom: 1px solid #000000;
       background-color: #666665;
     }/*background color for sub menus (desktop) enables additional levels change b52f3c to 666665 change EB8E96 to 000000 divider between menus width 170 to 260 adjusts width of levels */

     menu ul ul ul li {
      position: relative;
      top:-40px;
      left:260px;
      background-color: #666665;
    }/*top determines top of 3rd level-left moves to side bg-color is 3rd level (desktop) b52f3c to 666665 Adj top from -60 to -37 levels tops between levels adj left from 170 to 260 to move and match width above*/


     li > a:after { content:  ' ▼'; font-size:11px;}
     li > a:only-child:after { content: ''; }

     @media all and (max-width : 768px) {

       menu {
        margin: 0;
       }

      .toggle + a, .menu {
       display: none;
       }

      .toggle {
       display: block;
       background-color: #666665;
       padding:14px 20px;
       color:#FFF;
       font-size:15px;
       text-decoration:none;
       border:none;
       }/*Mobile only background on menus with drop down change bg-color 86151F to 666665*/

       .toggle:hover {
        background-color: #ada8a9;
       }/*change DC4E5B ada8a9 hover for dropdown menus light gray*/

       [id^=drop]:checked + ul {
         display: block;
       }

       menu ul li {
        display: block;
        width: 100%;
       }

       menu ul ul .toggle, menu ul ul a {
        padding: 0 40px;
       }

       menu ul ul ul a {
        padding: 0 80px;
       }

       menu a:hover
       {
         background-color: #ada8a9;
       }/* change C34854 to ada8a9 hover non-dropdowns move menu ul ul ul a lower down so hover does not affect color of 3rd tier*/

       menu ul li ul li .toggle,
       menu ul ul a,
       menu ul ul ul a{
         padding:14px 20px;
         color:#FFF;
         font-size:17px;
       }

       menu ul li ul li .toggle,
       menu ul ul a,
       menu ul ul ul a  {
          background-color: #666665;
       }/*mobile only change BF3441 to 666665 background for dropdowns moved menu ul ul ul a from hoover above to match colors otherwise teir 3 had hover color*/

       menu ul ul {
         float: none;
         position:static;
         color: #ffffff;
       }

       menu ul ul li:hover > ul,
       menu ul li:hover > ul {
         display: none;
       }

       menu ul ul li {
         display: block;
         width: 100%;
       }

       menu ul ul ul li {
         position: static;
       }

    }

     @media all and (max-width : 330px) {

       menu ul li {
        display:block;
        width: 94%;
      }
     }
/*END NAV MENU CSS*/

.main-content {
  display: block;
  width: 100%;
  margin: 0 auto;
  padding: 5px 5px 5px 5px;
  }


.footer {
  padding: 10px 10px 10px 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  }

  mobile-hide {
  display: none;
   height: 0px;
   width: 0px;
  }

@media all and (max-width : 440px) {

  .footer {
    display: block;
  }
}

@media only screen and (min-width:961px) {
  .main-content {
    display: block;
    width: 70%;
    margin: 0 auto;
    padding: 10px 100px 10px 100px;
  }

  mobile-hide {
  display: inherit;

  }

  .left-sidebar {
    display: flex;
    width: 20%;
    justify-content: center;
    float: left;
    flex-direction: column;
    align-items: center;
    padding: 1px 60px 1px 60px;

    }


  .right-sidebar {
    display: flex;
    width: 20%;
    justify-content: center;
    float: right;
    flex-direction: column;
    align-items: center;
    padding: 1px 60px 1px 60px;

  }
}
