/* =============================================
 *
 *   FIXED RESPONSIVE NAV
 *
 *   (c) 2014 @adtileHQ
 *   http://www.adtile.me
 *   http://twitter.com/adtilehq
 *
 *   Free to use under the MIT License.
 *
 * ============================================= */

body, div,
h1, h2, h3, h4, h5, h6,
p, blockquote, pre, dl, dt, dd, ol, ul, li, hr,
fieldset, form, label, legend, th, td,
article, aside, figure, footer, header, hgroup, menu, nav, section,
summary, hgroup {
  margin: 0;
  padding: 0;
  border: 0;
}

a:active,
a:hover {
  outline: 0;
}

@-webkit-viewport { width: device-width; }
@-moz-viewport { width: device-width; }
@-ms-viewport { width: device-width; }
@-o-viewport { width: device-width; }
@viewport { width: device-width; }


/* ------------------------------------------
  RESPONSIVE NAV STYLES
--------------------------------------------- */

.nav-collapse ul {
  margin: 0;
  padding: 0;
  width: 100%;
  display: block;
  list-style: none;
  font-family: "Avant Garde", Avantgarde, "Century Gothic", CenturyGothic, "AppleGothic", sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: lighter;
  padding-left: 0px;
}

.nav-collapse li {
  width: 100%;
  display: block;
}

.js .nav-collapse {
  clip: rect(0 0 0 0);
  max-height: 0;
  position: absolute;
  display: block;
  overflow: hidden;
  zoom: 1;
}

.nav-collapse.opened {
  max-height: 9999px;
}

.disable-pointer-events {
  pointer-events: none !important;
}

.nav-toggle {
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
}

@media screen and (min-width: 70em) {
  .js .nav-collapse {
    position: relative;
  }
  .js .nav-collapse.closed {
    max-height: none;
  }
  .nav-toggle {
    display: none;
  }
}


/* ------------------------------------------
  DEMO STYLES
--------------------------------------------- */

body {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  color: #37302a;
  background: #fff;
  font: normal 100%/1.4 sans-serif;
}

section {
  border-bottom: 1px solid #999;
  text-align: center;
  padding: 120px 0 0;
  height: 800px;
  width: 100%;
  margin-top: -30px;
}

h1 {
  margin-bottom: .5em;
}

p {
  padding-bottom: 1em;
}


/* ------------------------------------------
  FIXED HEADER
--------------------------------------------- */

header {
  background: transparent;
  position: fixed;
  z-index: 3;
  width: 100%;
  left: 0;
  top: 0;
  padding-top: 20px;
}

.logo {
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  line-height: 55px;
  padding: 10px 40px;
  float: left;
  max-width: 250px;
}


/* ------------------------------------------
  MASK
--------------------------------------------- */

.mask {
  -webkit-transition: opacity 500ms;
  -moz-transition: opacity 500ms;
  transition: opacity 500ms;
  background: white;
  visibility: hidden;
  position: fixed;
  opacity: 0;
  z-index: 2;
  bottom: 0;
  right: 0;
  left: 0;
  top: 0;
}

.android .mask {
  -webkit-transition: none;
  transition: opacity 300ms;
}

.js-nav-active .mask {
  visibility: visible;
  opacity: 1;
}

@media screen and (min-width: 70em) {
  .mask {
    display: none !important;
    opacity: 0 !important;
  }
}


/* ------------------------------------------
  NAVIGATION STYLES
--------------------------------------------- */

.fixed {
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
}

.nav-collapse,
.nav-collapse * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding-right: 20px;
}

.nav-collapse,
.nav-collapse ul {
  list-style: none;
  width: 100%;
  float: left;
}

@media screen and (min-width: 70em) {
  .nav-collapse {
    float: right;
    width: auto;
  }
}

.nav-collapse li {
  float: left;
  width: 100%;
}

@media screen and (min-width: 70em) {
  .nav-collapse li {
    width: auto;
  }
}

.nav-collapse a {
  /*  font-family: "Open Sans", sans-serif; */
  font-family: "Avant Garde", Avantgarde, "Century Gothic", CenturyGothic, "AppleGothic", sans-serif;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  border-top: 1px solid transparent;
  text-decoration: none;
  background: transparent;
  padding: 0.5em 1.5em;
  color: black;
  width: 100%;
  float: left;
  text-align: left;
}


.nav-collapse a:active,
.nav-collapse .active a {
  background: transparent;
}

.nav-collapse a:hover {
  text-decoration: underline;
}

@media screen and (min-width: 70em) {
  .nav-collapse a {
    padding: 1.02em 0.8em;
    text-align: center;
    border-top: 0;
    float: left;
    margin: 0;
  }
}

.nav-collapse ul ul a {
  background: #ca3716;
  padding-left: 2em;
}

@media screen and (min-width: 70em) {
  .nav-collapse ul ul a {
    display: none;
  }
}



/* ------------------------------------------
  NAV TOGGLE STYLES
--------------------------------------------- */


.nav-toggle {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-decoration: none;
  text-indent: -300px;
  position: relative;
  overflow: hidden;
  width: 60px;
  height: 55px;
  float: right;
  padding-right: 20px;
}

.nav-toggle:before {
  color: black; /* Edit this to change the icon color */
  font: normal 30px/25px "Open Sans", sans-serif; /* Edit font-size (28px) to change the icon size */
  transition: all 100ms linear;
  text-transform: none;
  text-align: center;
  position: absolute;
  content: "\2261"; /* Hamburger icon */
  text-indent: 0;
  speak: none;
  width: 100%;
  left: 0;
  top: 0;
}

.nav-toggle.active:before {
  font-family: "Open Sans", sans-serif;
  font-size: 30px;
  content: "\78"; /* Close icon */
}

@media (max-width: 70em) {
  header {
    position: absolute;
  }
  #top, #bottom, #left, #right{
    display: none;
  }
  .logo{
    padding: 0px 20px;
  }
  .nav-toggle{
    padding: 0px;
  }
}


#top, #bottom, #left, #right {
  background: #333;
  position: fixed;
  z-index: 4;
}
#left, #right {
  top: 0; bottom: 0;
  width: 15px;
}
#left { left: 0; }
#right { right: 0; }

#top, #bottom {
  left: 0; right: 0;
  height: 15px;
}
#top { top: 0; }
#bottom { bottom: 0; }


body
{
  min-width:100px;
  min-height:100px;
  font-family: "Avant Garde", Avantgarde, "Century Gothic", CenturyGothic, "AppleGothic", sans-serif;
  }
.heavy
{
  font-weight: bold;
}
.content 
{
  text-align: left;
  font-family: "Avant Garde", Avantgarde, "Century Gothic", CenturyGothic, "AppleGothic", sans-serif;
  font-size: 90%;
  width:90%;
  margin:0 auto;
  padding:10px;
  line-height: 200%;
  letter-spacing: 1px;
}
.center{
  text-align: center;
}
.main-content 
{
  padding-top: 100px;
  padding-bottom: 50px;
}

a {
  text-decoration: none;
  color: black;
}

.caption{
    text-align: center;
    text-transform: uppercase;
    padding: 10px;
}
.text-larger{
  font-size: 120%;
  line-height: 200%;
}

.right{
  text-align: right;
}


#maincontent .mix{
  display: none;
}

.filter {
    display: inline;
    padding-left: 20px;
    cursor: pointer;
}

#filter-control .active{
  text-decoration: underline;
}

#filter-control::before { 
    content: "Filter:";
}

.nav-collapse .active a{
  text-decoration: underline;
}

.gray-border{
  border-top:1px solid lightgray;
  margin-top:50px; margin-bottom:50px;
}

.gallery-title{
  font-size: 175%;
  font-style: oblique;
}

.instagram-title{
  font-size: 175%;
  font-style: oblique;
}

.modern-button{
    background: transparent;
    border: none;
    font-family: inherit;
    cursor: pointer;
    font-size: 175%;
    text-transform: uppercase;
    text-decoration: underline;
}


@media (max-width: 70em) {
  .gallery-title{
    font-size: 150%;
  }
  .instagram-title{
    font-size: 120%;
  }
}