/* --- _footer.html --- */

  #prefooter {
    max-width: 100%;
    margin-bottom: 0;
    margin-top: 100px;
  }

  footer {
    background-color: black;
    padding-top: 200px;
    padding-bottom: 20px;
    text-align: center;
    color: #f6eeef;
  }

  footer a {
    color: white;
    text-decoration: none;
  }

  footer a:hover {
    color: white;
    text-decoration: underline;
  }


/* --- _nav.html --- */

  .invert {
    filter: invert(100%);
  }

  #storylogo {
    margin-right: 20px;
  }

  .navbar {
    background-color: black;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999 !important;
    font-family: proxima-nova, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 17px;
    letter-spacing: 0.02em;
    padding: 15px;
    padding-bottom: 15px;
  }

  nav a,
  nav a:hover {
    color: white;
    margin-left: 5px;
    margin-right: 5px;
  }

  nav a:hover {

    color: #0093d1;
  }

  a.active {
    color: #0093d1 !important;
  }


  .socials {
    padding-top: 5px;
  }

  .socials a {
    color: black;
  }

  .socials a,
  .socials a:hover {

    margin-left: 5px;
  }

  .socials-desktop a {
    padding: 0;
  }

  .fa {
    font-size: 25px !important;
  }

  #mob-nav {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: white;
    padding-top: 100px;
    padding-bottom: 50px;
    top: 0;
    text-align: center;
    font-family: proxima-nova, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 22px;
    z-index: 80;
  }

  #mob-nav a {
    color: black;
    display: block;
    padding-bottom: 20px;
  }

  #mob-nav li {
    list-style-type: none;
  }

  .hamburger {
    padding: 0px;
    padding-top: 7px;
    padding-left: 3px;
    display: inline-block;
    cursor: pointer;
    transition-property: opacity, filter;
    transition-duration: 0.15s;
    transition-timing-function: linear;
    font: inherit;
    color: inherit;
    text-transform: none;
    background-color: transparent;
    border: 0;
    margin: 0;
    overflow: visible;
    z-index: 101;
  }

  .hamburger:hover {
    opacity: 0.7;
  }

  .hamburger.is-active:hover {
    opacity: 0.7;
  }

  .hamburger.is-active .hamburger-inner,
  .hamburger.is-active .hamburger-inner::before,
  .hamburger.is-active .hamburger-inner::after {
    background-color: black;
  }

  .hamburger-box {
    width: 30px;
    height: 24px;
    display: inline-block;
    position: relative;
  }

  .hamburger-inner {
    display: block;
    top: 50%;
    margin-top: -2px;
  }

  .hamburger-inner,
  .hamburger-inner::before,
  .hamburger-inner::after {
    width: 30px;
    height: 4px;
    background-color: black;
    border-radius: 4px;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease;
  }

  .hamburger-inner::before,
  .hamburger-inner::after {
    content: "";
    display: block;
  }

  .hamburger-inner::before {
    top: -10px;
  }

  .hamburger-inner::after {
    bottom: -10px;
  }

  .hamburger--spring .hamburger-inner {
    top: 2px;
    transition: background-color 0s 0.13s linear;
  }

  .hamburger--spring .hamburger-inner::before {
    top: 10px;
    transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  .hamburger--spring .hamburger-inner::after {
    top: 20px;
    transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  .hamburger--spring.is-active .hamburger-inner {
    transition-delay: 0.22s;
    background-color: transparent !important;
  }

  .hamburger--spring.is-active .hamburger-inner::before {
    top: 0;
    transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 10px, 0) rotate(45deg);
  }

  .hamburger--spring.is-active .hamburger-inner::after {
    top: 0;
    transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 10px, 0) rotate(-45deg);
  }


  .hideme {
    opacity: 0;
    display: none;
  }

  .showme {
    animation: fadein 0.5s;
    display: block;
  }

  @keyframes fadein {
    from {
      opacity: 0;
    }

    to {
      opacity: 1;
    }
  }


/* --- contact.html --- */

  small p {
    font-size: 16px;
    line-height: 26px;
  }

  #contact-form .form-control {
    padding-top: 10px;
    margin-top: 20px;
    border-radius: 0;
    border: 0;
  }


  #contact-form .send {
    display: block;
    width: 100px;
    height: 45px;
    background-color: #0093d1;
    color: white;
    padding-bottom: 15px !important;
  }

  #contact-form .send:hover {
    cursor: pointer;
  }

  #contact-form textarea {
    height: 250px;
    resize: none;
  }

  ::placeholder {
    color: #AAA !important;
    opacity: 1;
  }


/* --- header.html --- */

  .slogan {
    width: 640px;
    margin: 0 auto;
  }

  #logo {
    margin-bottom: 30px;
    margin-top: 50px;
  }

  #header p {
    font-size: 32px;
  }


/* --- imagestrip.html --- */

  .imagestrip {
    height: 500px;
    overflow: hidden;
    text-align: center;
    margin: 0;
    padding: 0;
    z-index: 99;
  }

  .imagestrip img {
    min-width: 100%;
    margin-top: -10%;
  }

  .parallax2 {
    background-size: cover;
    background-position: center center;
    min-height: 500px;
    width: 100%;
    margin-top: 0 !important;
  }

  .image-title {
    position: absolute;
    color: white;
    margin-top: 30px;
    margin-left: 40px;
    text-transform: none;
    font-size: 18px;

    font-family: proxima-nova, sans-serif;
    font-weight: 400;
    font-style: normal;
    z-index: 9;
  }


/* --- news.html --- */

  section.imagebox {
    border-bottom: 1px solid black;
  }

  .imagebox p {
    margin-bottom: 0;
  }

  .clear {
    clear: both;
  }

  .readmore {
    color: black;
    margin-top: 40px;
    font-size: 20px;
  }


/* --- productions.html --- */

  .line {
    padding-top: 10px;
    padding-bottom: 10px;
    border-top: 1px solid white;
  }

  .article-img {
    width: 100%;
    margin-bottom: 30px;
  }


/* --- story.html --- */

  .slogan {
    width: 800px;
    margin: 0 auto;
  }


/* --- team.html --- */

  .team-subtitle {
    margin-bottom: 20px;
  }


