/* animation */
@keyframes fade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fade {
  animation: fade 1s;
}

@-webkit-keyframes fade-down {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -10%, 0);
    transform: translate3d(0, -10%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fade-down {
  from {
    opacity: .5;
    -webkit-transform: translate3d(0, -10%, 0);
    transform: translate3d(0, -10%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fade-down {
  -webkit-animation: fade-down 1s;
  animation: fade-down 1s;
}

@-webkit-keyframes fade-up {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 10%, 0);
    transform: translate3d(0, 10%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fade-up {
  from {
    opacity: .5;
    -webkit-transform: translate3d(0, 10%, 0);
    transform: translate3d(0, 10%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fade-up {
  -webkit-animation: fade-up 1s;
  animation: fade-up 1s;
}

@-webkit-keyframes fade-left {
  from {
    opacity: .5;
    -webkit-transform: translate3d(-20%, 0, 0);
    transform: translate3d(-20%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fade-left {
  from {
    opacity: .5;
    -webkit-transform: translate3d(-20%, 0, 0);
    transform: translate3d(-20%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fade-left {
  -webkit-animation: fade-left 1s;
  animation: fade-left 1s;
}

@-webkit-keyframes fade-right {
  from {
    opacity: .5;
    -webkit-transform: translate3d(20%, 0, 0);
    transform: translate3d(20%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fade-right {
  from {
    opacity: .5;
    -webkit-transform: translate3d(20%, 0, 0);
    transform: translate3d(20%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fade-right {
  -webkit-animation: fade-right 1s;
  animation: fade-right 1s;
}

/* reset */
* {
  margin: 0;
  padding: 0;
  background: transparent;
  position: relative;
}

#map, #map *{
position: static 
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
  vertical-align: baseline;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

html,
body {
  height: 100%;
}

body {
  background: #111;
}

body,
button,
input,
select,
textarea {
  font: 14px/1.4 "Open Sans", serif;
  color: #aaa;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
  display: block;
}

img {
  border: none;
  max-width: 100%;
  vertical-align: top;
}

/* anchors */
a,
:focus {
  outline: 0;
}

a {
  text-decoration: none;
  transition-property: color;
  transition-duration: .4s;
}

a,
a:visited {
  color: #fefefe;
}

a:hover {
  color: #999;
}

a.button,
input.button {
  display: inline-block;
  padding: 8px 18px;
  color: #fefefe !important;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  margin-left: 2px;
  font-size: 1em;
  cursor: pointer;
  transition: background-color 500ms;
  margin-bottom: 10px;
  border: none;
  border: 1px solid #fefefe;
}

.button:hover,
input.button:hover {
  background: rgba(255,255,255,.2);
}

a.selected {
  background: #fefefe !important;
  color: #222 !important;
}

/* typography */
h1,
h2,
h3,
h4 {
  font-weight: 400;
  margin-bottom: 15px;
  line-height: 1.15;
}

h1 {
  font-size: 2.125em;
  letter-spacing: -2px;
  font-weight: 300;
  margin-bottom: 30px;
}

h2 {
  font-size: 1.75em;
  font-weight: 300;
  letter-spacing: -1px;
}

h3 {
  font-size: 1.5em;
}

h4 {
  font-size: 1.125em;
  font-weight: 600;
}

h5 {
  font-size: 1em;
}

h6 {
  font-size: .875em;
}

p {
  font-size: 1em;
  margin-bottom: 20px;
  line-height: 1.6;
}

small {
  font-size: 80%;
}

big {
  font-size: 106.25%;
}

strong {
  font-weight: 600;
  color: #fefefe;
}

.disc li {
  margin-left: 25px;
}

hr {
display: block;
position: relative;
padding: 0;
margin: 0 auto 30px;
width: 100%;
clear: both;
border: none;
border-top: 1px solid #333;
font-size: 1px;
line-height: 0;
overflow: visible;
}

@media screen and (min-width: 64em) {
  h1 {
    font-size: 2.75em;
  }

  h2 {
    font-size: 2em;
  }

  h3 {
    font-size: 1.75em;
  }

  h4 {
    font-size: 1.25em;
  }
}

/* navigation */
nav {
  display: block;
  background: rgba(0,0,0,.7);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9;
}

.nav-menu {
  list-style: none;
  overflow: hidden;
  clear: both;
  max-height: 0;
  transition: max-height .4s ease-out;
  margin: 0;
  padding: 0;
  background: #444;
  background-size: auto 90%;
  box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
}

.nav-menu li a {
  font-size: 1.125em;
  display: block;
  padding: 20px;
  text-align: right;
  line-height: 1.2;
  font-weight: 600;
}

.nav-menu li a:link,
.nav-menu li a:visited {
  color: #e2e2e2;
}

.nav-menu li.selected a, #home .nav-menu li.home a {
  color: #222;
  background: #e2e2e2;
}

.nav-menu li.logo a {
  background: none;
  opacity: .9;
}

.logo img {
  max-width: 350px;
}

.nav-ico {
  cursor: pointer;
  display: inline-block;
  float: right;
  padding: 21px 16px;
  position: relative;
  user-select: none;
  width: auto;
}

.nav-ico span {
  background: #fff;
  display: block;
  height: 3px;
  position: relative;
  transition: background .2s ease;
  width: 18px;
}

.nav-ico span:before,
.nav-ico span:after {
  background: #fff;
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  transition: all .2s ease;
  width: 100%;
}

.nav-ico span:before {
  top: 6px;
}

.nav-ico span:after {
  top: -6px;
}

#nav-btn {
  display: none;
}

#nav-btn:checked~.nav-menu {
  max-height: 400px;
}

#nav-btn:checked~.nav-ico span {
  background: transparent;
}

#nav-btn:checked~.nav-ico span:before {
  transform: rotate(-45deg);
}

#nav-btn:checked~.nav-ico span:after {
  transform: rotate(45deg);
}

#nav-btn:checked~.nav-ico span:before,
#nav-btn:checked~.nav-ico span:after {
  top: 0;
}

@media screen and (min-width: 48em) {
  nav {
    position: absolute;
    background: rgba(0,0,0,.6);
    background: linear-gradient(180deg, rgba(0,0,0,.7) 0%, rgba(0,0,0,0) 100%);
    height: 80px;
  }

  #home nav {
    height: 250px;
  }

  .nav-menu {
    max-height: none;
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    background: none;
    overflow: visible;
    box-shadow: none;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
  }

  .nav-menu li {
    display: inline-block;
    z-index: 8;
  }

  .nav-menu li a {
    border-top: 5px solid transparent;
    width: 100%;
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    align-items: center;
    -ms-flex-align: center;
    justify-content: space-around;
    -ms-flex-pack: center;
    -ms-flex-wrap: wrap;
  }

  .nav-menu li a:hover, .nav-menu li.selected a, #home .nav-menu li.home a, #projects .nav-menu li:nth-child(4) a {
    border-top: 5px solid #e2e2e2;
    background: none;
    color: #e2e2e2;
  }

  .nav-menu li.logo {
    display: inline-block;
    z-index: 9;
    margin-right: auto;
    margin-left: 5px;
  }

  .nav-menu li.logo a {
    height: auto;
    padding-left: 20px;
    border-top: none;
  }

  .logo img {
    max-width: 300px;
  }

  .nav-ico {
    display: none;
  }

  .xs-show {
    display: none;
  }
}

.xs-logo{
  position: absolute;
  bottom: 1rem;
  left: 0;
  z-index: 8;
}

.xs-logo img{
  padding: 1rem;
}

@media screen and (min-width: 64em) {
  .nav-menu li a {
    padding: 20px 30px;
  }

  .logo img {
    max-width: 345px;
  }
}

/*grid */
.flex {
  display: flex;
  display: -webkit-flex;
  display: -ms-flexbox;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}

.prop {
  min-height: 500px;
}

.no-flex {
  flex: none !important;
  -webkit-flex: none !important;
  -ms-flex: none !important;
}

@media screen and (min-width: 33em) and (max-width: 47em) {
  .sm-half {
    width: 50%;
  }
}

@media screen and (min-width: 48em) {
  .md-flex {
    display: flex;
    display: -webkit-flex;
    display: -ms-flexbox;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
  }

  .iflex {
    flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
  }

  .vflex {
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    flex-direction: column;
    -ms-flex-direction: column;
  }

  .flex-btw {
    justify-content: space-between;
    -ms-flex-pack: justify;
  }

  .flex-ard {
    justify-content: space-around;
    -ms-flex-pack: center;
  }

  .flex-ctr {
    align-items: center;
    -ms-flex-align: center;
  }

  .col-fill {
    width: 0;
    min-width: 0;
    flex-grow: 1;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
  }
}

@media screen and (min-width: 64em) {
  .col1-12 {
    width: calc(100%*1/12);
  }

  .col2-12 {
    width: calc(100%*2/12);
  }

  .col3-12 {
    width: 25%;
  }

  .col4-12 {
    width: calc(100%*4/12);
  }

  .col5-12 {
    width: calc(100%*5/12);
  }

  .col6-12 {
    width: 50%;
  }

  .col7-12 {
    width: calc(100%*7/12);
  }

  .col8-12 {
    width: calc(100%*8/12);
  }

  .col9-12 {
    width: 75%;
  }

  .col10-12 {
    width: calc(100%*10/12);
  }

  .col11-12 {
    width: calc(100%*11/12);
  }

  .col12-12 {
    width: 100%;
  }
}

/* layout */
.container {
  width: 100%;
  margin: 0 auto;
  background: #111;
}

.hero {
  padding-bottom: 165%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
}

.banner {
  padding-bottom: 31.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
  opacity: .7;
}

.hero div {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover !important;
  transition: opacity 2.5s;
  opacity: 0;
  display: block;
}

.banner div {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover !important;
  display: block;
}

.bg01 {
  background-image: url(i/b01.jpg);
}

.bg02 {
  background-image: url(i/b02.jpg);
}

.bg03 {
  background-image: url(i/b03.jpg);
}

.bg04 {
  background-image: url(i/b04.jpg);
}

.bg05 {
  background-image: url(i/b05.jpg);
}

.bg06 {
  background-image: url(i/bg06.jpg);
}

.bg07 {
  background-image: url(i/bg07.jpg);
}

.bg08 {
  background-image: url(i/bg08.jpg);
}

.banner01 {
  background-image: url(i/banner01.png);
}

.hero div:first-child {
  z-index: 2;
  opacity: 1;
}

.hero div:last-child {
  z-index: 1;
  opacity: 1;
}

.tagline {
  text-align: center;
  padding: 30px 30px 0;
  max-width: 740px;
}

.tagline p {
  color: #fefefe;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 1);
  font-size: 2em;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -2px;
}

.cover {
  background-size: cover !important;
}

.main {
  color: #e2e2e2;
}

.main.no-banner {
  padding-top: 50px;
}

.main p {
  color: #aaa;
}

figure {
  display: inline-block;
  margin: 1px;
}

figure img {
  width: 100%;
}

figcaption {
  padding: 10px;
}

.filter {
  text-align: center;
  margin-bottom: 30px;
}

.filter button {
  font-size: 1em;
  font-weight: 600;
  padding: 10px 25px;
  text-transform: uppercase;
  transition: all .3s ease-out;
  border: none;
  background: #252525;
  margin-top: 3px;
  cursor: pointer;
}

.filter button:hover,.filter button.active {
  background: #999;
  color: #111;
}

.filter button.active {
  background: #fefefe;
}

.grid {
  margin: 0 auto;
}

.grid:after {
  content: "";
  display: table;
  clear: both;
}

.category .item {
  min-height: 185px;
}

.category .item img {
  margin: 2px;
}

.grid figcaption {
  font-size: 80%;
  text-align: center;
}

@media screen and (min-width: 26em) {
  .category .item {
    width: calc(50% - 4px);
  }
}

@media screen and (min-width: 48em) {
  .grid {
    width: auto;
  }
  figure img {
    max-width: 400px;
  }
  .category .item {
    width: 260px;
  }

  .filter {
    width: 20%;
    float: left;
  }

  .filter button {
    width: 100%;
    text-align: left;
    margin-top: 0;
    background: none;
  }

  .filter button:hover,.filter button.active {
    background: none;
    color: #fff;
  }

  .grid {
    width: 80%;
    float: left;
  }
}

footer {
  padding: 10px;
  font-size: .625em;
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #666;
  clear: both;
  margin-top: 4px;
}

footer a:link, footer a:visited {
  color: #666;
}

/* utility */
.pad {
  padding: 25px;
}

.taC {
  text-align: center;
}

.taL {
  text-align: left;
}

.xs-hide {
  display: none;
}

.divider {
  background: #fff;
  width: 100%;
  padding: 10px;
}

#map {
  width: 100%;
  min-height: 500px;
  border: none;
  margin: 0;
  vertical-align: top;
}

span.item{ display: block;}

.hide,.item a {
  display: none;
}

.item a:first-child{
	display: inline-block;
}

@media screen and (min-width: 48em) {
  .xs-hide {
    display: block;
  }

  .taR {
    text-align: right;
  }

  #map {
    width: 75%;
    height: 700px;
  }

  .main.no-banner {
    padding-top: 80px;
  }
}

@media screen and (min-width: 64em) {
  .hero {
    padding-bottom: 50%;
  }

  .banner {
    padding-bottom: 17.5%;
  }

  .tagline {
    position: absolute;
    bottom: 15%;
    right: 0;
    width: 55%;
    z-index: 10;
    text-align: right;
  }

  .tagline p {
    font-size: 2.5em;
  }

  .bg01 {
    background-image: url(i/b01@2x.jpg);
  }

  .bg02 {
    background-image: url(i/b02@2x.jpg);
  }

  .bg03 {
    background-image: url(i/b03@2x.jpg);
  }

  .bg04 {
    background-image: url(i/b04@2x.jpg);
  }

  .bg05 {
    background-image: url(i/b05@2x.jpg);
  }

  .bg06 {
    background-image: url(i/bg06@2x.jpg);
  }

  .bg07 {
    background-image: url(i/bg07@2x.jpg);
  }

  .bg08 {
    background-image: url(i/bg08@2x.jpg);
  }

  .banner01 {
    background-image: url(i/banner01@2x.png);
  }
}

.ppl .col3-12{
	flex: 1 0 420px;
}
@media screen and (min-width: 58em) {
.ppl .col3-12{
	margin-bottom: 30px;
}
}
@media screen and (min-width: 64em) {
.ppl .col3-12{
	flex: 1 0 auto;
}

}

.ppl p{ font-size: 80%; margin-bottom: 5px; padding-right: 10px;}


  @-moz-document url-prefix() {
    img {
        width: 100%;
        max-width: -moz-max-content;
    }
