/*
Theme Name: Hungryman 2017
Theme URI: http://funkhaus.us
Description: A theme for WordPress.
Author: Funkhaus
Author URI: http://www.funkhaus.us
Version: 1.2

Fonts:
    font-family: "Garet", Helvetica, Arial, sans-serif;
    font-weight: 400; Reg, Italic

Colors:
    Light Blue: var(--light-grey);
    Dark Blue:  var(--black);
    Grey/Blue:  var(--dark-grey);
    Orange:     var(--orange);

/*-------------------------------------------------------------- */

@font-face {
  font-family: "Garet";
  src: url("/wp-content/themes/hungryman2017/fonts/GaretRegular.woff2"),
    url("/wp-content/themes/hungryman2017/fonts/GaretRegular.woff");
  font-style: normal;
  font-weight: 400;  
}
@font-face {
  font-family: "Garet";
  src: url("/wp-content/themes/hungryman2017/fonts/GaretRegularItalic.woff2"),
    url("/wp-content/themes/hungryman2017/fonts/GaretRegularItalic.woff");
  font-style: italic;
  font-weight: 400;  
}

/* CSS Vars */
:root {
  --black: #000000;
  --light-grey: #C0C0C0;
  --dark-grey: #666666;
  --orange: #F15D2A;
 
  --light-blue: var(--light-grey);
  --dark-blue: var(--black);
  --grey-blue: var(--dark-grey);
}

/*
 * Globals
 */
body {
  font-family: "Garet", Helvetica, Arial, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 16px;
  background-color: var(--black);
  color: var(--light-grey);
  margin: 0;
  padding: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 400;
}
::selection {
  color: var(--orange);
  background: var(--light-grey);
}
::-moz-selection {
  color: var(--orange);
  background: var(--light-grey);
}
.fullscreen {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.overlay {
  background-color: rgba(0, 0, 0, 0.1);
}

/*
 * Links
 */
a {
  color: var(--orange);
  text-decoration: none;
  outline: none;
}
.not-mobile a:hover {
  color: var(--light-grey);
  text-decoration: none;
}
a img {
  border: none;
}

/*
 * Page Structure
 */
#container {
  
}
#header {
}
#content {
  -webkit-animation: fadein 1s;
  animation: fadein 1s;
}
#footer {
}

/*
 * Utilities
 */
/* Responsive image containers */
.fluid-width-image-wrapper img {
  height: auto;
  width: 100%;
}
#tagline {
  display: none;
}

/*
 * Menus
 */
.menu-button {
  position: fixed;
  padding: 25px;
  top: calc(50px - 25px);
  right: calc(30px - 25px);
  cursor: pointer;
  z-index: 510;
}
.menu-button .word {
  font-size: 13px;
  position: absolute;
  text-transform: uppercase;
  color: var(--light-grey);
  right: 70px;
  top: 23px;
}
.menu-button .line {
  width: 30px;
  height: 1px;
  position: relative;
  background-color: var(--light-grey);
  transform-origin: center center;

  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.menu-button .line-1 {
  margin-bottom: 5px;
}
.menu-button .line-3 {
  opacity: 0;
  position: relative;
}
.menu-button .line-4 {
  margin-top: 4px;
}
.not-mobile .menu-button:hover .line-1 {
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
}
.not-mobile .menu-button:hover .line-4 {
  -webkit-transform: translateY(2px);
  transform: translateY(2px);
}
.close {
  position: fixed;
  padding: 25px 25px 25px 10px;
  top: calc(36px - 25px);
  right: calc(30px - 25px);
  z-index: 600;
  cursor: pointer;
}
.close .svg {
  display: block;
}
.close:hover path {
  fill: #a4469a;
}
#menu-panel {
  position: fixed;
  background-color: var(--black);
  height: 100vh;
  width: 100%;
  max-width: 400px;
  top: 0;
  right: 0;
  z-index: 490;
  box-sizing: border-box;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);

  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}
#menu-panel .logo {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 0;
  display: none;
}
#menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 480;
  display: none;
}
#menu-panel a {
  color: var(--light-grey);
}
.main-menu {
  line-height: 1;
  margin: 0;
  padding: 0;
  font-weight: 400;
  width: 100%;
}
.main-menu li {
  font-family: "Garet", Helvetica, Arial, sans-serif;
  font-size: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  display: block;
}
.main-menu a {
  display: inline-block;
  padding: 5px 0;
  margin-left: 45px;
}
.main-menu .sub-menu {
  background-color: var(--dark-grey);
  margin: 0;
  padding: 0 0 0 15px;
  display: none;
}
.main-menu .sub-menu a {
  margin-left: 30px;
}
.main-menu .sub-menu li {
  display: inline-block;
  width: auto;
}
.social-wrapper {
  font-family: "Garet", Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: var(--light-grey);
  text-transform: uppercase;
  margin: 30px 0 0 45px;
}
.social-wrapper a {
  font-size: 0;
  padding: 8px;
  display: inline-block;
  vertical-align: middle;
}
.social-wrapper .inactive,
.main-menu .inactive {
  opacity: 0.5;
}

/* Menu opened */
.menu-opened #logo .letters {
  opacity: 0;
}
.menu-opened #menu-panel {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}
.menu-opened #container {
  -webkit-transform: translateX(-380px);
  transform: translateX(-380px);
}
.menu-opened #menu-overlay {
  display: block;
}
.menu-opened .menu-button .word {
  opacity: 0;
}
.menu-opened .menu-button .line {
  background-color: var(--light-grey); !important;
}
.menu-opened .menu-button .line-1 {
  -webkit-transform: scale(0) translateY(0);
  transform: scale(0) translateY(0);
  opacity: 0;
}
.menu-opened .menu-button .line-2 {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.menu-opened .menu-button .line-3 {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  opacity: 1;
}
.menu-opened .menu-button .line-4 {
  -webkit-transform: scale(0);
  transform: scale(0);
  opacity: 0;
}
.menu-opened .breadcrumb {
  opacity: 0;
}

/*
 * Breadcrumb
 */
.breadcrumb {
  font-family: "Garet", Helvetica, Arial, sans-serif;
  transform: rotate(-90deg);
  transform-origin: right bottom;
  position: fixed;
  right: 35px;
  top: 65px;
  color: var(--light-grey);
  z-index: 200;
}
.not-mobile .breadcrumb:hover {
  color: var(--light-grey);
}

/*
 * Header
 */

#logo {
  position: fixed;
  top: 30px;
  left: 30px;
  z-index: 600;
  font-size: 0;
}

/*
 * Header Color Schemes
 */

/* Light Blue Scheme (used on work-grid) */
.light-blue-scheme #logo .film,
.light-blue-scheme #logo .letters path {
  fill: var(--light-grey);
}
.light-blue-scheme .work-grid > .title a,
.light-blue-scheme .photo-grid > .title a {
  color: var(--light-grey);
}
.light-blue-scheme .work-grid > .title:hover a,
.light-blue-scheme .photo-grid > .title:hover a {
  color: var(--light-grey);
}
.light-blue-scheme .menu-button > div {
  background-color: var(--light-grey);
}
.light-blue-scheme .menu-button:hover > div {
  background-color: var(--light-grey);
}
.light-blue-scheme .breadcrumb {
  color: var(--light-grey);
}
.light-blue-scheme .breadcrumb:hover {
  color: var(--light-grey);
}

/* Grey/Blue Scheme (used on work-detail) */
.grey-blue-scheme.video-player-visible #logo .background,
.grey-blue-scheme.video-player-visible #logo .letters path {
  fill: var(--light-grey);
}
.grey-blue-scheme.video-player-visible #logo .film {
  fill: var(--light-grey);
}
.grey-blue-scheme.video-player-visible .menu-button div {
  background-color: var(--dark-grey);
}
.grey-blue-scheme.video-player-visible .menu-button:hover div {
  background-color: var(--light-grey);
}
.grey-blue-scheme .breadcrumb {
  color: var(--dark-grey);
}
.grey-blue-scheme .breadcrumb:hover {
  color: var(--light-grey);
}
body.grey-blue-scheme {
  background-color: #000000;
  color: var(--dark-grey);
}

/* Dark Blue Scheme (used on contact) */
.dark-blue-scheme #logo .letters path {
  fill: var(--light-grey);
}
.dark-blue-scheme #logo .film {
  fill: var(--orange);
}
.dark-blue-scheme .menu-button div {
  background-color: var(--light-grey);
}
.dark-blue-scheme .menu-button:hover div {
  background-color: var(--orange);
}
.dark-blue-scheme .breadcrumb {
  color: var(--black);
}
.dark-blue-scheme .breadcrumb:hover {
  color: var(--orange);
}
.dark-blue-scheme .contact h3.title {
  color: var(--light-grey);
}

/*
 * Video Player
 */
.video-player {
  height: 100vh;
  position: relative;
  overflow: hidden;
  background-color: #000000;
  color: var(--dark-grey);
}
.video-player > .title {
  font-size: 20px;
  font-weight: 400;
  text-align: center;
  display: inline-block;
  position: absolute;
  left: 50%;
  top: 38px;
  transform: translateX(-50%);
}
.video-player > .title a {
  color: var(--dark-grey);
}
.video-player > .title a:hover {
  color: var(--light-grey);
}
.video-player .stage {
  margin: 110px 100px 0 100px;
  height: calc(100vh - 110px);
  text-align: center;
  position: relative;
  overflow: visible !important;

  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.video-player .button-close {
  position: absolute;
  top: 25px;
  right: 13px;
  padding: 20px;
  cursor: pointer;
}
.video-player .button-close:hover polygon {
  fill: var(--light-grey);
}

/* Credits */
.video-player .media-credits {
  padding: 25px 115px;
  box-sizing: border-box;
  text-align: center;
  min-height: 110px;
  position: relative;
}
.video-player .media-credits .title {
  font-size: 20px;
}
.video-player .director,
.video-player .agency {
  font-family: "Garet", Helvetica, Arial, sans-serif;
  font-weight: 400;
  margin-top: 8px;
  font-size: 14px;
  position: relative;
  z-index: 100;
}
.video-player .director span,
.video-player .agency span {
  text-transform: uppercase;
}
.video-player .media-credits a {
  color: var(--dark-grey);
}
.video-player .awards-wrapper {
  position: absolute;
  top: 30px;
  right: 0;
  left: 0;
  z-index: 0;
  text-align: right;
}
.video-player .awards-wrapper .award:last-child {
  margin-right: 0;
}
.video-player .award-winner path,
.video-player .awards-wrapper path {
  fill: var(--dark-grey);
}
.video-player .media-credits.active > * {
  opacity: 0;
}
.video-player .media-credits.active .awards-wrapper,
.video-player .media-credits.active .awards {
  opacity: 1;
}

/*
 * Takeover slide
 */
.takeover-slide {
  position: fixed;
  z-index: 550;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  overflow-y: scroll;
  font-family: "Mostin", Helvetica, Arial, sans-serif;
}
.takeover-slide .left-box {
  height: 100%;
  width: 50%;
  left: 0;
  top: 0;
  position: absolute;
  background-color: var(--light-grey);
}
.takeover-slide .left-box img {
  position: absolute;
  top: 0;
  left: 0;
  min-height: 100%;
  width: 100%;
  object-fit: cover;
}
.takeover-slide .right-box {
  position: absolute;
  min-height: 100%;
  width: 100%;
  right: 0;
  top: 0;
  background-color: black;
  padding: 140px 100px;
  box-sizing: border-box;
  text-align: left;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: flex-start;
  justify-content: flex-start;
  -webkit-align-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.takeover-slide .right-box .entry {
  color: var(--black);
  text-align: left;
}
.takeover-slide .right-box .entry h2 {
  font-size: 40px;
  font-weight: 400;
  color: #c1c2bd;
  text-align: left;
  text-transform: uppercase;
  display: inline-block;
  line-height: 1.2;
}
.takeover-slide .right-box .entry h2 span.red {
  color: #d92928;
}
.takeover-slide .right-box .entry h2 span.blue {
  color: #0154f5;
}
.takeover-slide .right-box .entry h2 span.white {
  color: #c1c2bd;
}
.takeover-slide .right-box .entry p {
  font-size: 40px;
  text-align: left;
  text-transform: uppercase;
  font-weight: 400;
}

.takeover-slide .right-box .entry #countdown {
  font-family: "Mostin", Helvetica, Arial, sans-serif;
  font-size: 40px;
  color: #c1c2bd;
  text-align: left;
  text-transform: uppercase;
  display: inline-block;
  font-weight: 400;
}
.takeover-slide .right-box .entry #countdown .red {
  color: #d92928;
}

.takeover-slide .right-box .entry a {
  font-family: "Mostin", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  font-weight: 400;
  color: #c1c2bd;
  position: relative;
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.takeover-slide .right-box .entry a span {
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  position: relative;
}
.takeover-slide .right-box .entry a:after,
.takeover-slide .right-box .entry a span:after {
  position: absolute;
  height: 5px;
  margin: 0 auto;
  content: "";
  left: 0;
  right: 0;
  width: 100%;
  left: 0;
  bottom: -5px;
  transition: background-color 0.4s ease-in-out;
}
.takeover-slide .right-box .entry a:after {
  background-color: #c1c2bd;
}
/* Link Hovers */
.takeover-slide .right-box .entry a:hover {
  color: #0154f5;
}
.takeover-slide .right-box .entry a:hover:after,
.takeover-slide .right-box .entry a:hover span:after {
  background-color: #0154f5;
}

.takeover-slide .button-close {
  font-family: "Mostin", Helvetica, Arial, sans-serif;
  position: absolute;
  top: 25px;
  right: 15px;
  cursor: pointer;
  z-index: 0;
  padding: 20px;
}
.takeover-slide .button-close polygon {
  fill: #c1c2bd;
}
/* Continue to Site  */
.takeover-slide .button-enter {
  font-family: "Mostin", Helvetica, Arial, sans-serif;
  font-weight: 900;
  text-transform: capitalize;
  color: #c1c2bd;
  text-align: center;
  cursor: pointer;
  text-transform: uppercase;

  position: absolute;
  bottom: 5px;
  left: 0%;
  padding: 60px 100px;
  font-size: 20px;
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.takeover-slide .button-enter span {
  position: relative;
}
.takeover-slide .button-enter span:after {
  position: absolute;
  height: 3px;
  margin: 0 auto;
  content: "";
  left: 0;
  right: 0;
  width: 100%;
  left: 0;
  bottom: -3px;
  transition: background-color 0.4s ease-in-out;
  background-color: #c1c2bd;
}
/* Button-enter Hovers */
.takeover-slide .button-enter:hover {
  color: #0154f5;
}
.takeover-slide .button-enter:hover span:after {
  background-color: #0154f5;
}
.takeover-slide .button-enter .svg {
  display: block;
  margin: 15px auto 0 auto;
  width: 22.579px;
  height: 8.07px;
}
.takeover-slide .button-enter .svg polygon {
  fill: #d92928;
}

.takeover-slide.closed .left-box {
  transform: translateX(-100%);
}
.takeover-slide.closed .right-box {
  transform: translateX(100%);
}
.takeover-slide-active #logo .background {
  fill: #0154f5;
}

/*
 * Awards component
 */
.awards-wrapper {
  display: inline-block;
  position: relative;
  width: 100%;
}
.award-winner {
  font-family: "Garet", Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  width: 100%;
  position: relative;
  z-index: 10;
  cursor: default;
}
.award-winner .svg {
  vertical-align: middle;
  margin-right: 6px;
  display: inline-block;
}
.award-winner path {
  fill: var(--light-grey);
}
.awards {
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  opacity: 0;
}
.award {
  display: inline-block;
  vertical-align: middle;
  margin: 0 10px;
}
.award .svg {
  height: 50px;
  width: auto;
}

/* Hover state */
.awards-wrapper:hover .award-winner {
  opacity: 0;
}
.awards-wrapper:hover .awards {
  opacity: 1;
}

/*
 * Home
 */
body.home {
  overflow: hidden;
}
.slideshow {
  height: 100vh;
  width: 100%;
  z-index: 0;
  position: relative;
  z-index: 0;
}
.slide {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: var(--black);
}
.home .slide {
  display: -ms-flexbox !important;
  display: -webkit-flex !important;
  display: flex !important;
  transition: all 0.2s ease-out;

  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-align-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.slideshow .slide > img {
  display: none;
}
.slideshow .meta {
  position: relative;
  margin-bottom: 70px;
  text-align: center;
  color: var(--light-grey);
}
.home .slideshow .title {
  font-size: 78px;
  cursor: pointer;
  padding: 100px 70px 0 70px;
  line-height: 1;
  font-weight: 400;
  display: block;
  position: relative;
  color: var(--light-grey);
}
.slideshow .title .button-play {
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%) translateY(50px);
  cursor: pointer;
  opacity: 0;
}
.not-mobile .slideshow .title:hover .button-play {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}
.home .slideshow .credits {
  font-family: "Garet", Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  margin-top: 22px;
}
.home .slideshow .credits div {
  display: inline-block;
}
.home .slideshow .credits span {
  text-transform: uppercase;
}
.home .slideshow .credits a {
  color: var(--light-grey);
}
.home .slideshow .credits a:hover {
  text-decoration: underline;
}
.home .slideshow .seperator {
  margin: 0 15px;
}
.home .awards-wrapper {
  margin-top: 25px;
}
.arrow-down {
  cursor: pointer;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 400;
  padding: 25px;
}
.home.video-player-visible .menu-button {
  display: none;
}
.home .video-player {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 100;
}
.home.scrolled-down #header {
  display: none;
}

/* Paralax animations */
.coming-from-bottom .meta {
  transform: translateY(500px);
}
.coming-from-top .meta {
  transform: translateY(-500px);
}

/*
 * Directors List
 */
#content.directors-list {
  min-height: 100vh;
  width: 100%;
  position: relative;

  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.directors-list > .title {
  display: none;
}
.directors-list .list {
  padding: 100px 25px;
  margin: auto;
  position: relative;
  z-index: 100;
  font-size: 0;
  max-width: 1280px;
}
.directors-list .list li {
  display: inline-block;
  vertical-align: top;
  padding: 0;
  margin: 0;
  list-style: none;
  width: 25%;
  text-align: left;
}
.directors-list .list li a {
  color: var(--light-grey);
  font-size: 16px;
  font-weight: 400;
  padding: 7px 20px;
  display: inline-block;
  transition: color 0.2s;
}
.directors-list .note {
  margin-top: 55px;
  text-align: center;
  color: var(--light-grey);
  font-family: "Garet", Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 14px;
}
.directors-list .note span {
  color: var(--orange);
}

/* Hover and selected states */
.directors-list li.is-selected a {
  opacity: 1;
}
.directors-list li.not-selected a,
.directors-list li.not-hovered a {
  opacity: 0.5;
}
.directors-list li.is-hovered a {
  opacity: 1;
}
.not-mobile .directors-list .list li:not(.not-selected) a:hover {
  color: var(--orange);
  opacity: 1;
}

/*
 * Work Grid
 */

#content.work-grid {
  position: relative;
  min-height: 100vh;
  width: 100%;

  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.work-grid > .title {
  font-size: 20px;
  font-weight: 400;
  padding: 0;
  text-align: center;
  letter-spacing: 1px;
  display: inline-block;
  position: absolute;
  left: 50%;
  top: 38px;
  transform: translateX(-50%);
}
#content.work-grid.film-tv-grid {
flex-direction: column;
}
.work-grid.film-tv-grid > .title {
  font-size: 40px;
  width: 100%;
  font-weight: bold;
  color: #c1c2bd;
  padding: 0px 255px;
  box-sizing: border-box;
}
.work-grid.film-tv-grid  .film-tv-copy {
  font-size: 20px;
  font-weight: 400;
  color: #c1c2bd;
  max-width: 1080px;
  width: 100%;
  margin: 150px auto 0px auto;
  padding: 0px 20px;
  box-sizing: border-box;
}

/* Grid */
.work-grid .grid {
  padding: 115px 99px 99px 99px;
  text-align: center;
  width: 100%;
  max-width: 1998px;
  box-sizing: border-box;

  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-content: flex-start;
  -ms-flex-line-pack: start;
  align-content: flex-start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.grid-block {
  position: relative;
  width: calc(33.33% - 2px);
  color: var(--light-grey);
  margin: 1px;
  font-size: 0;
}
.grid-block .thumbnail {
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  position: relative;
  overflow: hidden;
}
.grid-block .thumbnail > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
}
.grid-block .meta {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding: 0 20px;
  box-sizing: border-box;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 100;
  opacity: 0;

  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.grid-block .title {
  font-family: "Garet", Helvetica, Arial, sans-serif;
  font-size: 32px;
  line-height: 1.2;
  margin: 13px 0;
  position: relative;
}
.grid-block .play-button {
  position: absolute;
  top: 0;
  left: 50%;
  opacity: 0;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  display: none;
}
.not-mobile .grid-block:hover .play-button {
  opacity: 1;
  -webkit-transform: translate(-50%, -50px);
  transform: translate(-50%, -50px);
}
.grid-block .title .line-2 {
  display: block;
  font-size: 22px;
}
.grid-block .credit {
  font-family: "Garet", Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 12px;
  margin-bottom: 2px;
}
.grid-block .credit span {
  text-transform: uppercase;
}
.grid-block .awards-wrapper {
  position: absolute;
  right: 10px;
  bottom: 20px;
  left: 10px;
  text-align: right;
  opacity: 1;
  width: auto;
}
.grid-block .award-winner {
  display: none;
}
.grid-block .awards {
  position: static;
  opacity: 1;
}
.grid-block:hover .awards-wrapper {
  opacity: 0;
}
.grid-block:hover .meta {
  opacity: 1;
}

/* Large Grid */
.reel-sub-menu {
  font-family: "Garet", Helvetica, Arial, sans-serif;
  transform: rotate(-90deg);
  transform-origin: left bottom;
  position: fixed;
  left: 50px;
  bottom: 32px;
  text-transform: uppercase;
  z-index: 200;
  margin: 0;
  list-style: none;
  padding: 0;
}
.reel-sub-menu li {
  display: inline-block;
  margin: 0;
  padding: 0;
}
.reel-sub-menu li a {
  color: var(--light-grey);
  margin: 0 8px;
}
.reel-sub-menu .current_page_item a {
  border-bottom: 1px solid;
}
.reel-sub-menu li a:hover {
  color: var(--orange);
}
.large-grid > .title {
  top: 48px;
}
.large-grid .grid-block {
  max-width: 1280px;
  width: 100%;
  margin-bottom: 110px;
}
.large-grid .grid-block .meta {
  opacity: 1;
  background-color: transparent;
  padding-bottom: 40px;

  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.large-grid .grid-block .title {
  font-size: 60px;
}
.large-grid .grid-block .play-button {
  display: block;
}
.large-grid .grid-block .title .line-2 {
  font-size: 36px;
}
.large-grid .grid-block .credit {
  font-size: 16px;
}
.large-grid .arrow-down {
  bottom: -93px;
}
.large-grid .arrow-down .svg polygon {
  fill: var(--light-grey);
}
.large-grid .grid-block:hover .awards-wrapper {
  opacity: 1;
}

/*
 * Page Browse
 */

.browse-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 1960px;
  height: 70px;
}
.browse {
  position: absolute;
  display: inline-block;
  cursor: pointer;
  padding: 25px;
}
.browse.prev {
  left: 9px;
}
.browse.next {
  right: 9px;
}
.browse:hover polygon {
  fill: var(--light-grey);
}

/*
 * Photo grid
 */

.photo-grid .menu-button div {
  background-color: var(--light-grey);
}
.photo-grid .menu-button:hover div {
  background-color: var(--light-grey);
}
.photo-grid .breadcrumb {
  opacity: 1;
}
.photo-grid .grid {
  margin: 0 99px;
  padding: 0;
  width: auto;
  position: relative;
}
.photo-grid > .title {
  font-size: 32px;
  text-align: center;
  margin: 40px 0;
  padding: 0 100px;
}
.photo-grid .grid-sizer {
  width: 33.3333%;
  float: left;
}
.photo-grid .photo-block {
  width: 33.3333%;
  float: left;
  padding: 1px;
  box-sizing: border-box;
  cursor: pointer;
}
.photo-block .thumbnail {
  position: relative;
  height: 0;
  width: 100%;
  font-size: 0;
}
.photo-block .thumbnail img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
}
.photo-grid .grid:hover .photo-block {
  opacity: 0.5;
}
.photo-grid .grid:hover .photo-block:hover {
  opacity: 1;
}

/*
 * Overlay gallery
 */
body.gallery-opened {
  overflow: hidden;
}
.overlay-gallery {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 1000;
  background-color: #000000;
}
.overlay-gallery .stage {
  position: absolute;
  top: 12.5px;
  bottom: 12.5px;
  left: 0px;
  right: 0px;
  z-index: 0;
}
.overlay-gallery .gallery-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
}
.overlay-gallery .gallery-item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.overlay-gallery .browse {
  z-index: 100;
  top: 50%;
  transform: translateY(-50%);
}
.overlay-gallery .button-close {
  z-index: 100;
  position: absolute;
  cursor: pointer;
  top: 25px;
  right: 15px;
  padding: 20px;
}
.overlay-gallery .button-close:hover polygon {
  fill: var(--light-grey);
}

/*
 * About
 */
.about .page-title {
  margin: 41px 100px;
  text-align: center;
  font-size: 32px;
  color: var(--light-grey);
}
.about .entry {
  margin: 50px auto;
  font-weight: 400;
  font-size: 24px;
}
.about .entry a {
  color: var(--orange);
  border-bottom: 2px solid transparent;
}
.about .entry a:hover {
  border-bottom: 2px solid;
}
.about .entry h2 {
  font-size: 38px;
  text-align: center;
  line-height: 1.3;
  max-width: 1800px;
  padding-right: 100px;
  padding-left: 100px;
  margin: 50px auto;
}
.about .entry p {
  max-width: 740px;
  padding-right: 100px;
  padding-left: 100px;
  margin-right: auto;
  margin-left: auto;
}
.awards-gallery-wrapper {
  background-color: var(--light-grey);
  padding: 44px 100px;
  margin: 50px 0;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
}
.awards-gallery {
  max-width: 1800px;
  margin: 0 auto;

  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.awards-gallery .award {
  padding: 44px;
  margin: 0;
}
#content.about .social-wrapper {
  text-align: center;
  margin-bottom: 80px;
}
#content.about .social-wrapper span {
  display: block;
  color: var(--light-grey);
  margin-bottom: 8px;
}
#content.about .social-wrapper svg path,
#content.about .social-wrapper svg circle {
  fill: var(--light-grey);
}
#content.about .social-wrapper a:hover path,
#content.about .social-wrapper a:hover circle {
  fill: var(--orange);
}

/* 	Scrolled Down */
.scrolled-down #logo .letters {
  opacity: 0;
}
.scrolled-down.about .breadcrumb {
  opacity: 1;
}

/*
 * Contact
 */
body.contact {
  background-color: var(--black);
}
#content.contact {
  color: var(--light-grey);
}
.region-wrapper {
  overflow: hidden;
  padding: 20px 0;
}
.contact .region-wrapper:nth-of-type(2) {
  background-color: #222222;
}
.contact-grid {
  max-width: 1100px;
  margin: 0 auto;

  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-content: flex-start;
  -ms-flex-line-pack: start;
  align-content: flex-start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.contact h3.title {
  margin: 41px 100px;
  text-align: center;
  font-size: 20px;
  color: var(--light-grey);
}
.contact h2.title {
  font-size: 28px;
  text-align: center;
  margin: 50px 0;
}
.contact-block {
  min-width: 320px;
  font-family: "Garet", Helvetica, Arial, sans-serif;
  font-weight: 400;
  text-align: center;
  font-size: 14px;
  margin-bottom: 40px;
  display: inline-block;
  vertical-align: top;
}
.contact-block a {
  color: var(--light-grey);
}
.contact-block a:hover {
  color: var(--orange);
}
.contact-block > img {
  margin: 0 auto 15px auto;
}
.contact-block h4.title {
  font-family: "Garet", Helvetica, Arial, sans-serif;
  font-size: 20px;
  margin-top: 5px;
}
.contact-block > a:hover .svg path {
  fill: var(--orange);
}
.contact-block .email {
  text-transform: uppercase;
}
.contact-block .email .svg {
  margin: 3px;
  vertical-align: middle;
  position: relative;
  top: -1.5px;
}
.contact-block .email:hover .svg path {
  fill: var(--orange);
}
.contact .section-bottom {
  background-color: #222222;
}
#content.contact .social-wrapper {
  text-align: center;
  padding-bottom: 20px;
  margin: 0;
}
#content.contact .social-wrapper span {
  display: block;
  color: var(--light-grey);
  margin-bottom: 8px;
}
#content.contact .social-wrapper svg path,
#content.contact .social-wrapper svg circle {
  fill: var(--light-grey);
}
#content.contact .social-wrapper a:hover path,
#content.contact .social-wrapper a:hover circle {
  fill: var(--orange);
}
.site-by-funkhaus {
  display: block;
  text-align: center;
  padding: 20px 0 90px 0;
  margin: 0;
}
.site-by-funkhaus .svg:hover path {
  fill: var(--orange);
}

/*
 * Single (Blog detail)
 */

/*
 * Fallback Page
 */

/*
 * Footer
 */

/*
 * Animations
 */

/* Bounce Animation */
.bounce {
  animation: bounce 1.5s ease-in-out infinite;
}
@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-5px);
  }
  60% {
    transform: translateY(5px);
  }
}
@-webkit-keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-5px);
  }
  60% {
    transform: translateY(5px);
  }
}
@-webkit-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Color */
.breadcrumb,
a {
  -webkit-transition: color 0.4s ease-in-out;
  transition: color 0.4s ease-in-out;
}

/* Opacity */
.menu-button .word,
#logo .letters,
.social-wrapper > *,
.main-menu a,
.region,
.photo-block,
.meta,
.title,
.director,
.agency,
.award-winner,
.awards-wrapper,
.awards,
.browse {
  -webkit-transition: opacity 0.4s ease-in-out;
}

/* Transform */
#logo,
.home .meta,
.takeover-slide .box,
#menu-panel {
  -webkit-transition: -webkit-transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out;
}
#container {
  -webkit-transition: -webkit-transform 0.4s ease-in-out,
    -webkit-filter 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out, filter 0.4s ease-in-out;
}

/* Everything */
.grid-block .play-button,
#header,
#logo .svg,
#directors-list a,
.about .entry a,
.button-play,
svg polygon,
svg path,
svg circle {
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

/*
 * Wordpress Required
 */
.alignleft {
  display: inline;
  float: left;
}
.aligncenter {
  clear: both;
  display: block;
  margin: 0 auto 10px auto;
}
.alignright {
  display: inline;
  float: right;
}
img.alignleft {
  margin: 0 10px 10px 0;
}
img.alignright {
  margin: 0 0 10px 10px;
}
img.aligncenter {
  margin: 0 auto 10px auto;
}
.wp-caption {
  background: #f1f1f1;
  color: #888;
  text-align: center;
  margin-bottom: 15px;
  width: auto !important;
  -moz-border-radius: 0 0 4px 4px;
  border-radius: 0 0 4px 4px;
}
.wp-caption img {
  margin: 0px;
}
.wp-caption p.wp-caption-text {
  margin: 0 0 5px;
  padding: 4px;
  font-style: italic;
}
