* {
  margin: 0;
  padding: 0;
  font-family: Lato, sans-serif;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
}

html {
  height: 100%;
  font-size: 14px;
}

p {
  font-size: 1em;
  line-height: 1.3em;
  margin: 0.8em 0;
  color: #000;
  letter-spacing: 1px;
}

h2 {
  font-size: 2em;
  color: #CB280B;
  line-height: 1em;
  letter-spacing: 1px;
}

h3 {
  font-size: 1.2em;
  margin: 1em 0 0 0;
  letter-spacing: 1px;
}

a {
  text-decoration: none;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  color: #CB280B;
}

a:hover {
  color: #666;
}

span.hide {
  display: none;
}

.icon-link {
	display: block;
	margin-left: 30px;
	position: relative;
}

.icon-link svg {
	position: absolute;
	left: -30px;
	top: 0;
	fill: #CB280B;
	width: 20px;
}

body.home {
  background: #000;
  min-width: 320px;
  height: 100%;
  z-index: 0;
}

#wrapper {
  position: relative;
  float: left;
  width: 100%;
  min-width: 320px;
  height: 100%;
  overflow: hidden;
}

#home-wrap {
  position: relative;
  width: 100%;
  min-width: 320px;
  height: 100%;
  min-height: 540px;
  background: #000;
  margin: 0 auto;
  overflow: hidden;
}

#flex-wrap {
  position: relative;
  display: -webkit-box;      /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;         /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;      /* TWEENER - IE 10 */
  display: -webkit-flex;     /* NEW - Chrome */
  display: flex; 
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  align-items: stretch;
  height: 100%;
  min-height: calc(100vh - 30px);
  width: 100%;
  min-width: 320px;
  z-index: 100;
}

#boxseat {
  top: 0;
  left: 65%;
  width: 260px;
  height: 100%;
  background-image: url(../images/boxseat.jpg);
  background-position: left 16%;
}

#actors {
  top: calc(13% + 280px);
  left: -5px;
  width: 220px;
  height: calc(79% - 250px);
  max-height: 600px;
  background-image: url(../images/actors.png);
  background-position: left top;
}

#boxseat, #actors {
  position: absolute;
  background-size: 100%;
  background-repeat: no-repeat;
  z-index: 0;
}

#vh-top {
  width: 100%;
  background: rgba(0,0,0,0.35);
  -webkit-flex: 0.3 1 auto;
  flex: 0.3 1 auto;
}

#vh-mid {
  width: 100%;
  height: 340px;
}

#home-center {
  position: relative;
  display: -webkit-box;      /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;         /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;      /* TWEENER - IE 10 */
  display: -webkit-flex;     /* NEW - Chrome */
  display: flex; 
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  z-index: 10;
  height: 100%;
  width: 100%;
}

#vh-left, #vh-right {
  position: relative;
  background: rgba(0,0,0,0.35);
  height: 100%;
}

#vh-center {
  position: relative;
  width: 100%;
  height: 100%;
  background: rgba(27,128,254,0.15);
  margin: auto;
}


#vh-bottom {
  width: 100%;
  background: rgba(0,0,0,0.35);
  -webkit-flex: 2 1 auto;
  flex: 2 1 auto;
}

#top {
  position: fixed;
  width: 100%;
  height: 47px;
  background: #CB280B;
  z-index: 10;
  transition: 0.5s;
	transform-style: preserve-3d;
}

#top:after {
  content: " ";
  display: block;
  width: 100%;
  height: 14px;
  position: relative;
  bottom: 14px;
  left: 0;
  box-shadow: 0 1px 3px 0px rgba(0,0,0,0.5);
  opacity: 0;
  transition: opacity 0.5s;
	transform: translateZ(-1px);
}

#top.shadow:after {
  opacity: 1;
}

#header {
  position: relative;
  color: #fff;
  width: 100%;
  min-width: 320px;
  height: 100%;
  max-width: 1140px;
  margin: 0 auto;
}

.home #header {
  width: 100vw;
  color: #FE5B02;
  background: none;
}

#header h1 {
  position: relative;
  float: left;
  margin-left: 8px;
  margin-top: 6px;
  font-size: 28px;
  font-weight: normal;
  letter-spacing: 1px;
}

#header h1 a {
  color: #fff;
}

#main {
  position: relative;
  width: 100%;
  max-width: 1000px;
  min-width: 320px;
  min-height: calc(100vh - 246px);
  padding: 20px 10px;
  margin: 47px auto 0 auto;
  z-index: 0;
}

#main img {
  max-width: 100%;
}

figure {
  margin: 20px 0;
}

figcaption {
  font-size: 14px;
}

.bio #main img, .contact #main img {
  display: table;
  width: 200px;
  max-width: 96%;
  margin: 20px 0 0 0;
}

.book {
  position: relative;
  clear: both;
  min-height: 300px;
  padding: 20px 0 4px 0;
  border-bottom: 2px solid #ccc;
}

.book-anchor {
	position: absolute;
	top: -80px;
}

#main .book > img {
  position: relative;
  float: left;
	max-width: 160px;
  -moz-box-shadow: -1px 1px 3px 0px #000;
  -webkit-box-shadow: -1px 1px 3px 0px #000;
  box-shadow: -1px 1px 3px 0px #000;
}

.book > div {
  position: relative;
  clear: both;
  width: 100%;
  padding-top: 10px;
}

.book h3 {
  margin: 0;
}

.directing h2 span.h2-small {
  font-size: 19px;
}

ul.ulstyle {
  margin: 0;
  padding: 0.2em 0;
  list-style: none;
  font-size: 1em;
  line-height: 1.4em;
  letter-spacing: 1px;
}

ul.ulstyle li {
  margin: 14px 0 14px 30px;
  text-indent: -30px;
}

ul.ulstyle i {
  font-style: italic;
  font-weight: bold;
}

.news ul {
  list-style: none;
  padding-bottom: 20px;
}

p.postdate {
  font-style: italic;
  margin-bottom: 0.4em;
}

p.title {
  margin: 0;
  font-weight: bold;
}

.directing #main img, .faq #main img {
  margin: 0.6em 0;
}

.sliding-banner {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 200px;
  padding: 0;
  margin: 0.6em 0;
}

.sliding-banner li {
  position: absolute;
  z-index: 0;
  list-style: none;
  width: 100%;
  height: 200px;
  margin: 0;
  padding: 0;
  text-indent: 0;
  overflow: hidden;
}

.sliding-banner li span { 
  position: absolute;
  float: left;
  right: 0;
  opacity: 0;
  width: 4800px;
  height: 200px;
  text-align: left;
  background-image: url(../images/directing-slider-e.jpg);
  background-size: auto 100%;
    z-index: 0;
    animation: imageAnimation 96s linear infinite 0s;  
}

.sliding-banner li:nth-child(1) span { 
    animation-delay: 0s; 
    background-position: left top;
}

.sliding-banner li:nth-child(2) span { 
    animation-delay: 24s;
    background-position: -3600px top; 
}

.sliding-banner li:nth-child(3) span { 
    animation-delay: 48s; 
    background-position: -2400px top;
}

.sliding-banner li:nth-child(4) span { 
    animation-delay: 72s; 
    background-position: -1200px top;
}


@keyframes imageAnimation { 
    0% { right: 0; z-index: 1; opacity: 1;}
    25% { z-index: 1; opacity: 1;}
    26% { z-index: 0; opacity: 0;}
    100% { right: -4800px; z-index: 0; opacity: 0;}
}

.contact p {
  font-size: 1.2em;
}

.contact a {
	font-weight: bold;
}

.video {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  margin: 20px 0;
}

.video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#bottom {
  width: 100%;
  height: 200px;
  background: #464646;
}

#footer {
  width: 100%;
  min-width: 320px;
  max-width: 1140px;
  margin: 0 auto;
  padding: 20px 16px;
}

#footer p {
  color: #fff;
  font-size: 0.9em;
  line-height: 0.5em;
}

#footer p.small {
  font-size: 0.7em;
  color: #C2C2C2;
  line-height: 0.5em;
}

#footer p.small a {
  color: #C2C2C2; 
}

#footer p.small a:hover {
  color: #fff; 
}

@media screen and (min-width: 320px) {
  
  body.home {
    overflow-x: hidden;
  }

}

@media screen and (min-width: 400px) {
  
  .bio #main img {
    display: inline;
    float: right;
    margin: 20px 0 10px 20px;
  }
  
  #header h1 {
    letter-spacing: 2px;
  }
  
  .directing h2 span.h2-small {
    font-size: 24px;
  }

}

@media screen and (min-width: 480px) {

  .contact #main {
    height: 400px;
  }
  
  .contact #main img {
    display: inline;
    float: right;
    margin: 20px 0 10px 20px;
  }

}

@media screen and (min-width: 600px) {

  html {
    font-size: 16px;
  }

  .bio #main img {
    width: auto;
  }
  
  span.hide {
    display: inline;
  }
  
  h2 {
    margin-top: 10px;
  }
  
  .book {
    border-bottom: 2px solid #fff;
    padding: 20px 0;
  }

  .book img {
    position: relative;
    float: left;
    margin-top: 4px;
  }

  .book > div {
    margin-left: 180px;
    padding-top: 0;
    clear: none;
    width: calc(100% - 180px);
  }

  .book h3 {
    margin: 0;
  }
  
  .contact #main {
    height: 500px;
  }
  
  .contact #main img {
    width: 260px;
  }

}

@media screen and (min-width: 792px) {

  #home-wrap {
    width: 1320px;
    left: -660px;
    margin-left: 50%;
  }

  #boxseat {
    top: calc(12.5% - 140px);
    left: 61%;
    width: 409px;
    height: calc(100% + 110px);
  }

  #actors {
    top: 0;
    left: 17%;
    height: calc(28% + 540px);
    max-height: none;
    margin-left: 0;
    width: 304px;
    background-position: left bottom;
  }
  
  #vh-top {
    -webkit-flex: 0.8 1 auto;
    flex: 0.8 1 auto;
  }
  
  #vh-mid {
    width: 100%;
    height: 400px;
  }
    
  #home-center {
    width: 100%;
  }
  
  #vh-left {
    width: 20%;
  }
  
  #vh-center {
    width: 60%;
  }

  #vh-right {
    width: 20%;
  }
  
  .contact #main {
    height: 800px;
  }
  
  .contact #main img {
    width: auto;
  }

}



@media screen and (min-width: 940px) {

  #top {
    height: 60px;
  }
  
  #main {
    min-height: calc(100vh - 260px);
    padding: 20px 16px;
    margin: 60px auto 0 auto;
  }

  #header h1 {
    font-size: 36px;
    margin-left: 16px;
  }
  
  p {
    font-size: 1em;
    line-height: 1.4em;
    margin: 1.2em 0;
  }
  
  h2 {
    margin-top: 20px;
  }

  h3 {
    font-size: 1.5em;
    margin: 20px 0 0 0;
  }
  
  #actors {
    width: 378px;
    height: calc(28% + 620px);
    max-height: none;
    left: 9%;
  }
  
  #vh-mid {
    height: 444px;
  }
  
  .directing #main img, .faq #main img, .sliding-banner {
    margin: 1.2em 0;
  }

}



@media screen and (min-width: 1320px) {

#home-wrap {
  left: auto;
  margin: 0 auto;
  padding-left: 0;
}


}