/* apply a natural box layout model to all elements */
/***COLORS*****/
/********BODY FONT*******/
/*****DIMENSIONS*****/
/******MIXINS*******/
.content-box {
  -moz-box-sizing: content-box !important;
  -webkit-box-sizing: content-box !important;
  box-sizing: content-box !important;
}
.scaler {
  position: relative;
  -webkit-background-size: cover!important;
  -moz-background-size: cover!important;
  -o-background-size: cover!important;
  background-size: cover!important;
}
.central {
  width: 100%;
  max-width: 1280px !important;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px 0 20px;
  position: relative;
}
.central.narrow {
  max-width: 960px!important;
}
.centered {
  text-align: center;
}
.fixed-bg {
  background-attachment: fixed;
}
/*************FONTS***********/
.serif {
  font-family: unbounded, sans-serif;
}
.sans-serif {
  font-family: unbounded, sans-serif;
}
.bold {
  font-weight: bold;
}
.italic {
  font-style: italic;
}
.uppercase {
  text-transform: uppercase;
}
.mobile-nav {
  height: 0;
  overflow: hidden;
}
.menu-toggle {
  color: #404646;
  font-size: 18px;
  position: absolute;
  top: 10px;
  right: 10px;
  outline: none;
  z-index: 500;
  display: none;
}
.menu-toggle:hover {
  cursor: pointer;
}
@media only screen and (max-width: 768px) {
  .site-header {
    position: relative;
  }
  .main-navigation {
    display: none;
  }
  .site-branding img.logo {
    max-width: 240px;
    display: inline-block;
    vertical-align: top;
  }
  .menu-toggle {
    display: inline-block;
  }
  #primary,
  #secondary {
    padding: 20px 10px 20px 10px;
  }
  .mobile-center {
    text-align: center;
  }
  .mobile-hide {
    display: none!important;
  }
}
