/* ==========================================================================
 * Settings
   ========================================================================== */
/* source-sans-pro-300 - latin */
@font-face {
  font-family: 'Source Sans Pro Light';
  font-style: normal;
  font-weight: 300;
  src: local(''), url('../fonts/source-sans-pro-v18-latin-300.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ url('../fonts/source-sans-pro-v18-latin-300.woff') format('woff');
  /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* source-sans-pro-regular - latin */
@font-face {
  font-family: 'Source Sans Pro';
  font-style: normal;
  font-weight: 400;
  src: local(''), url('../fonts/source-sans-pro-v18-latin-regular.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ url('../fonts/source-sans-pro-v18-latin-regular.woff') format('woff');
  /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* source-sans-pro-600 - latin */
@font-face {
  font-family: 'Source Sans Pro Medium';
  font-style: normal;
  font-weight: 600;
  src: local(''), url('../fonts/source-sans-pro-v18-latin-600.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ url('../fonts/source-sans-pro-v18-latin-600.woff') format('woff');
  /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* source-sans-pro-700 - latin */
@font-face {
  font-family: 'Source Sans Pro Bold';
  font-style: normal;
  font-weight: 700;
  src: local(''), url('../fonts/source-sans-pro-v18-latin-700.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ url('../fonts/source-sans-pro-v18-latin-700.woff') format('woff');
  /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* source-sans-pro-900 - latin */
@font-face {
  font-family: 'Source Sans Pro Black';
  font-style: normal;
  font-weight: 900;
  src: local(''), url('../fonts/source-sans-pro-v18-latin-900.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ url('../fonts/source-sans-pro-v18-latin-900.woff') format('woff');
  /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
.headlinefont {
  font-family: "Source Sans Pro", Helvetica, sans-serif;
}
.bodyfont {
  font-family: "Source Sans Pro", Helvetica, sans-serif;
}
.copyfont {
  font-family: Georgia,serif;
}
.fontlight {
  font-family: 'Source Sans Pro Light', Helvetica, sans-serif;
}
.fontregular {
  font-family: 'Source Sans Pro', Helvetica, sans-serif;
}
.fontmedium {
  font-family: 'Source Sans Pro Medium', Helvetica, sans-serif;
}
.fontbold {
  font-family: 'Source Sans Pro Bold', Helvetica, sans-serif;
}
.fontblack {
  font-family: 'Source Sans Pro Black', Helvetica, sans-serif;
}
.fontitalic {
  font-style: italic;
}
.row {
  max-width: 1280px;
  padding: 0 1.5em;
}
/* ==========================================================================
 * http://meyerweb.com/eric/tools/css/reset/ v2.0 | 20110126 License: none (public domain)
   ========================================================================== */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
html {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
/* ==========================================================================
 * Components
   ========================================================================== */
/* ==========================================================================
 * Component Basic
   ========================================================================== */
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
*::-moz-selection {
  background: #000;
  color: #FFF;
  text-shadow: none;
}
*::selection {
  background: #000;
  color: #FFF;
  text-shadow: none;
}
html,
body {
  font-size: 100%;
}
body {
  background-color: #171717;
  font-family: "Source Sans Pro", Helvetica, sans-serif;
  line-height: 1.5;
}
#page {
  height: 100%;
}
main {
  position: relative;
  height: 100%;
  padding-top: 15em;
  opacity: 0;
  -webkit-transition: 400ms ease-in-out;
  transition: 400ms ease-in-out;
}
main.main-bg {
  background-image: url('../img/notes-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
@media only screen and (max-width: 48em) {
  main {
    padding-top: 12em;
  }
}
@media only screen and (max-width: 30em) {
  main {
    padding-top: 7.5em;
  }
}
/* ==========================================================================
 * Component Grid
   ========================================================================== */
.row {
  position: relative;
  width: 100%;
  margin: 0 auto;
}
.row:after,
.row:before {
  display: table;
  content: " ";
}
.row:after {
  clear: both;
}
.row.floating .col:last-child {
  float: left;
}
.col {
  position: relative;
  float: left;
  min-height: 1px;
}
.col:first-child {
  float: left;
}
.col:last-child {
  float: right;
}
.col.n-1 {
  width: 8.3333%;
}
.col.n-2 {
  width: 16.6667%;
}
.col.n-3 {
  width: 25%;
}
.col.n-4 {
  width: 33.3333%;
}
.col.n-5 {
  width: 41.6667%;
}
.col.n-6 {
  width: 50%;
}
.col.n-7 {
  width: 58.3333%;
}
.col.n-8 {
  width: 66.6667%;
}
.col.n-9 {
  width: 75%;
}
.col.n-10 {
  width: 83.3334%;
}
.col.n-11 {
  width: 91.6667%;
}
.col.n-12 {
  width: 100%;
}
@media only screen and (max-width: 48em) {
  .col.n-1,
  .col.n-2,
  .col.n-3,
  .col.n-4,
  .col.n-5,
  .col.n-6,
  .col.n-7,
  .col.n-8,
  .col.n-9,
  .col.n-10,
  .col.n-11,
  .col.n-12 {
    width: 100%;
  }
  .col.n-1.col-half,
  .col.n-2.col-half,
  .col.n-3.col-half,
  .col.n-4.col-half,
  .col.n-5.col-half,
  .col.n-6.col-half,
  .col.n-7.col-half,
  .col.n-8.col-half,
  .col.n-9.col-half,
  .col.n-10.col-half,
  .col.n-11.col-half,
  .col.n-12.col-half {
    width: 50%;
  }
  .col.n-1.col-quarter,
  .col.n-2.col-quarter,
  .col.n-3.col-quarter,
  .col.n-4.col-quarter,
  .col.n-5.col-quarter,
  .col.n-6.col-quarter,
  .col.n-7.col-quarter,
  .col.n-8.col-quarter,
  .col.n-9.col-quarter,
  .col.n-10.col-quarter,
  .col.n-11.col-quarter,
  .col.n-12.col-quarter {
    width: 20%;
  }
  .col.n-1.col-fixed-full,
  .col.n-2.col-fixed-full,
  .col.n-3.col-fixed-full,
  .col.n-4.col-fixed-full,
  .col.n-5.col-fixed-full,
  .col.n-6.col-fixed-full,
  .col.n-7.col-fixed-full,
  .col.n-8.col-fixed-full,
  .col.n-9.col-fixed-full,
  .col.n-10.col-fixed-full,
  .col.n-11.col-fixed-full,
  .col.n-12.col-fixed-full {
    width: 100%;
  }
}
@media only screen and (max-width: 30em) {
  .col.n-1.col-half,
  .col.n-2.col-half,
  .col.n-3.col-half,
  .col.n-4.col-half,
  .col.n-5.col-half,
  .col.n-6.col-half,
  .col.n-7.col-half,
  .col.n-8.col-half,
  .col.n-9.col-half,
  .col.n-10.col-half,
  .col.n-11.col-half,
  .col.n-12.col-half {
    width: 100%;
  }
  .col.n-1.col-quarter,
  .col.n-2.col-quarter,
  .col.n-3.col-quarter,
  .col.n-4.col-quarter,
  .col.n-5.col-quarter,
  .col.n-6.col-quarter,
  .col.n-7.col-quarter,
  .col.n-8.col-quarter,
  .col.n-9.col-quarter,
  .col.n-10.col-quarter,
  .col.n-11.col-quarter,
  .col.n-12.col-quarter {
    width: 50%;
  }
  .col.n-1.col-fixed-half,
  .col.n-2.col-fixed-half,
  .col.n-3.col-fixed-half,
  .col.n-4.col-fixed-half,
  .col.n-5.col-fixed-half,
  .col.n-6.col-fixed-half,
  .col.n-7.col-fixed-half,
  .col.n-8.col-fixed-half,
  .col.n-9.col-fixed-half,
  .col.n-10.col-fixed-half,
  .col.n-11.col-fixed-half,
  .col.n-12.col-fixed-half {
    width: 50%;
  }
}
/* ==========================================================================
 * Component Typography
   ========================================================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #CCCCCC;
  font-family: "Source Sans Pro", Helvetica, sans-serif;
  word-wrap: break-word;
  text-rendering: optimizeLegibility;
  line-height: 1.5em;
  margin-bottom: 0.5em;
}
h1 {
  position: relative;
  margin-bottom: 1em;
  color: #d81d26;
  font-size: 64px;
  font-size: 4rem;
  font-family: 'Source Sans Pro Black', Helvetica, sans-serif;
  letter-spacing: 1px;
  line-height: 1.25em;
  text-transform: uppercase;
}
@media only screen and (max-width: 40em) {
  h1 {
    font-size: 48px;
    font-size: 3rem;
    line-height: 1em;
  }
}
@media only screen and (max-width: 30em) {
  h1 {
    font-size: 36px;
    font-size: 2.25rem;
    line-height: 1em;
  }
}
h1 a {
  font-family: 'Source Sans Pro Black', Helvetica, sans-serif;
}
h1:after {
  position: absolute;
  left: 0;
  bottom: -0.25em;
  width: 100px;
  height: 6px;
  background-color: #d81d26;
  content: "";
}
@media only screen and (max-width: 30em) {
  h1:after {
    bottom: -0.5em;
  }
}
.headline-large {
  position: absolute;
  left: 50%;
  top: 48%;
  width: 100%;
  max-width: 1280px;
  -webkit-transform: translate(-50%, -45%);
      -ms-transform: translate(-50%, -45%);
          transform: translate(-50%, -45%);
  margin: 0;
  padding: 0 1.5em;
  z-index: 5;
}
h2 {
  margin: 0;
  color: #282828;
  letter-spacing: 1px;
  font-size: 56px;
  font-size: 3.5rem;
  font-family: 'Source Sans Pro Black', Helvetica, sans-serif;
  text-transform: uppercase;
  line-height: 1em;
  z-index: -1;
}
h3 {
  font-size: 48px;
  font-size: 3rem;
}
h4 {
  font-size: 36px;
  font-size: 2.25rem;
}
h5 {
  font-size: 28px;
  font-size: 1.75rem;
}
h6 {
  font-size: 20px;
  font-size: 1.25rem;
}
p {
  margin-bottom: 1.5em;
  color: #CCCCCC;
  font-size: 18px;
  font-size: 1.125rem;
  font-family: 'Source Sans Pro Light', Helvetica, sans-serif;
  letter-spacing: 1px;
  line-height: 1.5em;
}
p:last-child {
  margin-bottom: 0;
}
ul {
  margin-bottom: 1.5em;
}
ul li {
  display: block;
  margin-bottom: 0.25em;
  color: #CCCCCC;
  font-size: 18px;
  font-size: 1.125rem;
  font-family: 'Source Sans Pro Light', Helvetica, sans-serif;
  letter-spacing: 1px;
  line-height: 1.5em;
}
strong,
b {
  font-family: 'Source Sans Pro Medium', Helvetica, sans-serif;
  letter-spacing: 2px;
}
em {
  font-family: 'Source Sans Pro Light', Helvetica, sans-serif;
  font-style: italic;
}
.fontbold p {
  font-family: 'Source Sans Pro', Helvetica, sans-serif !important;
}
span.blurb {
  position: absolute;
  bottom: 8%;
  left: 5%;
  width: 300px;
  color: white;
  font-size: 16px;
  font-size: 1rem;
  font-family: 'Source Sans Pro Light', Helvetica, sans-serif;
  line-height: 1.5em;
}
@media only screen and (max-width: 40em) {
  span.blurb {
    width: 100%;
    bottom: 5%;
    left: 0;
    padding: 0 1em;
    text-align: center;
  }
}
span.blurb-r {
  position: absolute;
  bottom: 8%;
  right: 5%;
  width: 300px;
  color: white;
  font-size: 16px;
  font-size: 1rem;
  font-family: 'Source Sans Pro Light', Helvetica, sans-serif;
  line-height: 1.5em;
}
@media only screen and (max-width: 40em) {
  span.blurb-r {
    width: 100%;
    bottom: 14%;
    left: 0;
    padding: 0 1em;
    text-align: center;
  }
}
/* ==========================================================================
 * Component Links
   ========================================================================== */
a {
  color: #d81d26;
  font-family: 'Source Sans Pro Light', Helvetica, sans-serif;
  text-decoration: none;
  -webkit-transition: 300ms ease-in-out;
  transition: 300ms ease-in-out;
}
a:active {
  color: #d81d26;
}
a:hover {
  color: white;
}
a.play {
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  margin: -36px 0 0 -36px;
  width: 72px;
  height: 72px;
}
a.play:hover svg path {
  fill: #d81d26;
}
a.play svg path {
  fill: #282828;
  -webkit-transition: 300ms ease-in-out;
  transition: 300ms ease-in-out;
}
a.btn-menu {
  display: none;
}
@media only screen and (max-width: 48em) {
  a.btn-menu {
    display: block;
    float: right;
  }
}
a.btn-menu:hover svg path {
  fill: #d81d26;
}
a.btn-menu svg path {
  fill: #FFFFFF;
  -webkit-transition: 300ms ease-in-out;
  transition: 300ms ease-in-out;
}
a.btn-close {
  display: block;
  position: absolute;
  right: 1.5em;
  top: 1.5em;
  width: 24px;
  height: 24px;
  z-index: 20;
}
a.btn-close:hover svg path {
  fill: #d81d26;
}
a.btn-close svg path {
  fill: #FFFFFF;
  -webkit-transition: 300ms ease-in-out;
  transition: 300ms ease-in-out;
}
/* ==========================================================================
 * Component Image
   ========================================================================== */
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
img.img-book {
  padding-right: 1.5em;
}
@media only screen and (max-width: 48em) {
  img.img-book {
    margin-bottom: 3em;
  }
}
/* ==========================================================================
 * Component Button
   ========================================================================== */
.btn {
  position: relative;
  display: inline-block;
  margin: 0.5em 0;
  color: #d81d26;
  font-family: inherit;
  font-size: 14px;
  font-size: 0.875rem;
  font-family: 'Source Sans Pro Medium', Helvetica, sans-serif;
  text-align: center;
  letter-spacing: 4px;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  vertical-align: middle;
  cursor: pointer;
  -webkit-transition: 300ms ease-in-out;
  transition: 300ms ease-in-out;
}
.btn:hover {
  color: white;
}
.btn.outline {
  background: none;
  border: 2px solid #d81d26;
  color: #CCCCCC;
}
.btn.outline:hover {
  background: #d81d26;
  color: #282828;
}
.btn.rounded {
  border-radius: 32px;
}
.btn.large {
  padding: 1.5em 2.5em;
  font-size: 1em;
}
.btn.small {
  padding: 0.75em 1.25em;
  font-size: 0.75em;
}
/* ==========================================================================
 * Component Helpers
   ========================================================================== */
.align-left {
  text-align: left;
}
.align-center {
  text-align: center;
}
.align-right {
  text-align: right;
}
.float-left {
  float: left;
}
.float-right {
  float: right;
}
.is-fullheight {
  height: 100%;
}
.is-disabled {
  opacity: 0.25 !important;
  cursor: default;
}
.no-gap {
  margin: 0!important;
  padding: 0!important;
}
/* ==========================================================================
 * Modul Article
 * ========================================================================== */
/* ==========================================================================
 * Modul Header
 * ========================================================================== */
/* ==========================================================================
 * Modul Navigation
 * ========================================================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 4.5em 0;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, rgba(23, 23, 23, 0.75)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(to bottom, rgba(23, 23, 23, 0.75) 50%, rgba(0, 0, 0, 0) 100%);
  z-index: 50;
}
@media only screen and (max-width: 48em) {
  .nav {
    padding: 3em 0;
  }
}
@media only screen and (max-width: 30em) {
  .nav {
    padding: 1.5em 0;
  }
}
@media only screen and (max-width: 48em) {
  .main-nav {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%!important;
    height: 100%;
    background-color: #0e0e0e;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 300ms ease-out;
    transition: 300ms ease-out;
    text-align: center;
  }
  .main-nav.show {
    opacity: 1;
    visibility: visible;
  }
}
@media only screen and (max-width: 48em) and (orientation: landscape) {
  .main-nav {
    overflow: scroll;
  }
}
.main-nav ul {
  margin: 0;
  text-align: right;
}
@media only screen and (max-width: 48em) {
  .main-nav ul {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -40%);
        -ms-transform: translate(-50%, -40%);
            transform: translate(-50%, -40%);
    text-align: center;
  }
}
@media only screen and (max-width: 48em) and (orientation: landscape) {
  .main-nav ul {
    position: relative;
    left: 50%;
    top: 0;
    -webkit-transform: translate(-50%, 0);
        -ms-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
    padding-top: 10%;
  }
}
.main-nav li {
  display: inline-block;
  margin: 0 0 0 2em;
}
.main-nav li.active a {
  color: #d81d26;
}
@media only screen and (max-width: 48em) {
  .main-nav li {
    display: block;
    margin: 0 0 3em 0;
  }
}
@media only screen and (max-width: 30em) {
  .main-nav li {
    margin: 0 0 2em 0;
  }
}
.main-nav li a {
  position: relative;
  display: block;
  color: #FFFFFF;
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 1px;
}
@media only screen and (max-width: 48em) {
  .main-nav li a {
    font-size: 48px;
    font-size: 3rem;
    font-family: 'Source Sans Pro Bold', Helvetica, sans-serif;
  }
  .main-nav li a p {
    font-family: 'Source Sans Pro', Helvetica, sans-serif !important;
  }
}
@media only screen and (max-width: 30em) {
  .main-nav li a {
    font-size: 32px;
    font-size: 2rem;
  }
}
.main-nav li a:hover {
  color: #d81d26;
}
.main-nav a.close-menu {
  display: none;
  position: relative;
  right: 0;
}
@media only screen and (max-width: 48em) {
  .main-nav a.close-menu {
    display: inline-block;
  }
}
.main-nav svg {
  display: inline-block;
  position: relative;
  top: 4px;
}
.main-nav svg:hover path {
  fill: #d81d26;
}
.main-nav svg path {
  fill: #FFFFFF;
  -webkit-transition: 300ms ease-in-out;
  transition: 300ms ease-in-out;
}
.logo a {
  letter-spacing: 4px;
  font-family: 'Source Sans Pro Medium', Helvetica, sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
  text-transform: uppercase;
}
.logo a:hover {
  color: #FFFFFF;
}
/* ==========================================================================
 * Modul Section
 * ========================================================================== */
.section {
  padding-bottom: 4.5em;
}
.section.section-home {
  background-image: url('../img/home-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
/* ==========================================================================
 * Modul Article
 * ========================================================================== */
.article {
  position: relative;
}
.title {
  height: 100vh;
  padding: 0 1.5em;
}
@media only screen and (max-width: 64em) {
  .title {
    padding-top: 12.5%;
  }
}
/* ==========================================================================
 * Modul Copy
 * ========================================================================== */
.copy {
  margin: 0 0 6em;
}
@media only screen and (max-width: 48em) {
  .copy {
    margin-bottom: 4.5em;
  }
}
@media only screen and (max-width: 48em) {
  .copy.copy-header {
    margin-bottom: 1.5em;
  }
}
.copy.copy-center {
  margin-left: auto;
  margin-right: auto;
  float: none;
}
.copy iframe {
  width: 100%;
  height: 380px;
  background-color: black;
}
.trailer {
  margin-bottom: 3em;
}
.trailer h2 {
  margin-bottom: 0.25em;
}
.press ul li {
  margin-bottom: 1em;
}
.meta ul li {
  margin: 0;
  color: #666;
}
.dates ul li {
  margin-bottom: 1em;
  opacity: 0.85;
}
.dates ul li.is-next {
  font-size: 20px;
  font-size: 1.25rem;
  opacity: 1;
}
.dates ul span {
  display: inline-block;
  margin: 0.25em 1em 0 1em;
  line-height: 1.25em;
}
/* ==========================================================================
 * Modul Player
 * ========================================================================== */
.player {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 10;
  background-color: #282828;
}
.player.show {
  visibility: visible;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition-delay: 600ms;
          transition-delay: 600ms;
}
.player iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
/* ==========================================================================
 * Modul Slider
 * ========================================================================== */
.slider {
  overflow: hidden;
}
.slider-bgimage {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  visibility: hidden;
  opacity: 0;
  z-index: -1;
  will-change: transform;
}
.slider-books {
  position: relative;
  left: 15.25%;
}
@media only screen and (max-width: 48em) {
  .slider-books {
    left: 0;
    width: 100%;
    padding: 0 1.5em;
  }
}
.slider-book {
  float: left;
  width: 1280px;
}
@media only screen and (max-width: 48em) {
  .slider-book {
    width: 100%!important;
    margin-bottom: 4.5em;
  }
}
.slider-book.active h1 a {
  color: #d81d26;
}
.slider-book.active h1:after {
  background-color: #d81d26;
}
.slider-book .slider-copy {
  opacity: 0;
  visibility: hidden;
}
@media only screen and (max-width: 48em) {
  .slider-book .slider-copy {
    opacity: 1;
    visibility: visible;
  }
}
.slider-book h1 a {
  color: #282828;
}
@media only screen and (max-width: 48em) {
  .slider-book h1 a {
    color: #d81d26;
  }
}
.slider-book h1:after {
  background-color: #282828;
  -webkit-transition: 300ms ease-in-out;
  transition: 300ms ease-in-out;
}
@media only screen and (max-width: 48em) {
  .slider-book h1:after {
    background-color: #d81d26;
  }
}
.slider-book p {
  width: 100%;
  max-width: 580px;
}
.slide-next,
.slide-prev {
  position: fixed;
  top: 50%;
  width: 40px;
  height: 40px;
  margin-top: -20px;
  border: 2px solid #d81d26;
  border-radius: 100%;
  text-align: center;
  line-height: 33px;
}
@media only screen and (max-width: 48em) {
  .slide-next,
  .slide-prev {
    display: none;
  }
}
.slide-next {
  right: 3em;
}
.slide-prev {
  left: 3em;
}
.video {
  position: relative;
}
.video .video__inner {
  position: relative;
  padding-bottom: 56.25%;
  background-color: black;
}
.video .video__preview {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.video .video__desc {
  position: absolute;
  left: 50%;
  bottom: 1.5em;
  width: 95%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  padding: 0.75rem;
  z-index: 5;
  background-color: white;
}
@media only screen and (max-width: 30em) {
  .video .video__desc {
    width: 100%;
    bottom: 0;
    padding: 0.25rem;
  }
}
.video .video__desc p {
  margin: 0;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.25em;
  color: black;
}
@media only screen and (max-width: 30em) {
  .video .video__desc p {
    font-size: 10px;
    font-size: 0.625rem;
  }
}
.video .video__desc a:hover {
  color: black;
}
.video .btn-play {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 84px;
  height: 84px;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 0;
  color: white;
  background-color: black;
  cursor: pointer;
}
.video .btn-play svg {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.video iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: black;
}
.video img {
  position: relative;
  width: 100%;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
/* ==========================================================================
 * Modul Preloader
 * ========================================================================== */
.preloader {
  display: none;
  position: fixed;
  left: auto;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #282828;
  z-index: 99;
}
body.is-loaded .main {
  opacity: 1;
}
/* ==========================================================================
 * Modul Footer
 * ========================================================================== */
/* ==========================================================================
 * Fallbacks & Hacks
   ========================================================================== */
