/*/* CSS */
/* PAGE: ROW */
/* AUTHOR: hyperstud.io */
@font-face {
  font-family: "Druk Wide Web";
  src: url(/fonts/DrukWide-Medium-Web.woff2?e696320eb0221c4f2c85eb390f32d4fc) format("woff2"), url(/fonts/DrukWide-Medium-Web.woff?4d6447c1413f9134731b723e95684547) format("woff");
  font-weight: 500;
  font-style: normal;
  font-stretch: normal;
}
@font-face {
  font-family: "GT-America-Mono-Regular";
  src: url(/fonts/GT-America-Mono-Regular.woff2?5ae2e84179884223fbeb0744c6f02ea7) format("woff2"), url(/fonts/GT-America-Mono-Regular.woff?9bc4bd838fc02410b0eb1700e47ecbb2) format("woff");
  font-weight: 500;
  font-style: normal;
  font-stretch: normal;
}
@font-face {
  font-family: "GT-America-Regular";
  src: url(/fonts/GT-America-Standard-Regular.woff?54c6bb619c895eaac367e35e0a63521c) format("woff2"), url(/fonts/GT-America-Standard-Regular.woff2?933df297df663b57a9dfc3cadf90a565) format("woff");
  font-weight: 500;
  font-style: normal;
  font-stretch: normal;
}
@font-face {
  font-family: "GT-America-Regular";
  src: url(/fonts/GT-America-Standard-Regular-Italic.woff?978e7ceda1ea1137dd0d42eab1a117aa) format("woff2"), url(/fonts/GT-America-Standard-Regular-Italic.woff2?244f8795f4a26b8d661d2a33d4f5779a) format("woff");
  font-weight: 500;
  font-style: italic;
  font-stretch: normal;
}
html, body {
  position: relative;
  width: 100vw;
  height: 100vh;
  margin: 0;
  padding: 0;
  font-family: "GT-America-Regular", Helvetica, Arial, Sans-serif;
  color: #000;
  font-size: 15px;
  font-weight: 500;
  background: #fff;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-touch-callout: none;
  text-rendering: optimizeLegibility !important;
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
}

/* Table */
.table {
  display: table;
  width: 100%;
  height: 100%;
}

.table-row {
  display: table-row;
}

.table-cell {
  display: table-cell;
  width: 100%;
  height: 100%;
  vertical-align: middle;
  text-align: center;
}

.onehalf, .onethird, .twothird,
.onefourth {
  display: inline-block;
  vertical-align: top;
  position: relative;
}

.onehalf {
  width: 50%;
}

.onethird {
  width: 33.33%;
}

.onefourth {
  width: 25%;
}

/* border-box */
* {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

/* Template */
#wrapper {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
  opacity: 1;
}

.wrapper {
  position: relative;
  display: block;
  width: 100%;
  margin: 0 auto;
  padding: 0 1.2vw;
}

.wrapper.small {
  max-width: 1440px;
}

/* Header */
html:not(.fixed),
body:not(.fixed) {
  overflow: hidden !important;
}

body.fixed #intro {
  display: none;
  opacity: 0;
  pointer-events: none;
}

body.fixed #header-wrapper {
  top: 0px !important;
}

#header-wrapper {
  position: absolute;
  top: 100vh;
  right: 0px;
  left: 0px;
  bottom: 0px;
  pointer-events: none;
}

header {
  position: sticky;
  top: 0px;
  left: 0px;
  width: 100%;
  height: auto;
  padding: 1.2vw 0 1.2vw 0;
  z-index: 100;
  overflow: hidden;
  background: #fff;
  pointer-events: all;
  will-change: height;
}

header nav {
  display: block;
  position: relative;
}

header nav a {
  position: relative;
  margin-right: 0.9vw;
}

header nav a:last-child {
  margin-right: 0px !important;
}

header .languages {
  position: absolute;
  top: 0px;
  right: 1.2vw;
}

header .languages .language {
  margin-right: 0.9vw;
}

header .languages .language:last-child {
  margin-right: 0px;
}

.btn:after {
  content: "";
  position: absolute;
  left: 0px;
  bottom: -0.3vw;
  width: 0px;
  height: 1px;
  background: #000;
  -webkit-transition: width 300ms ease-in-out;
  -o-transition: width 300ms ease-in-out;
  transition: width 300ms ease-in-out;
}

.btn.white:after {
  background: #fff;
}

.btn.selected:after,
.btn:hover:after {
  width: 100%;
}

header .hwrapper {
  position: relative;
  display: block;
  margin-top: 0vw;
  pointer-events: none;
  -webkit-transition: margin-top 250ms ease-in-out;
  -o-transition: margin-top 250ms ease-in-out;
  transition: margin-top 250ms ease-in-out;
  will-change: margin-top;
}

header .logo {
  position: relative;
  display: block;
  margin: -1.15vw auto 0 auto;
  width: 24vw;
  height: 5.5vw;
  background: url(/images/row-logo-black.svg?74b37fb89f3b2a90ebc3a98ee6a0c9bd);
  background-size: 100% auto;
  background-position: top center;
  background-repeat: no-repeat;
  pointer-events: all;
}

/* Header submenu */
header .submenu {
  display: none;
  position: relative;
  margin-top: 2.7vw;
  pointer-events: all;
  opacity: 1;
  -webkit-transition: opacity 200ms ease-in-out;
  -o-transition: opacity 200ms ease-in-out;
  transition: opacity 200ms ease-in-out;
  will-change: opacity;
}

header.out .hwrapper {
  margin-top: -9.5vw;
}

header.out .submenu {
  opacity: 0;
}

header.has-submenu .submenu {
  display: block;
}

header .submenu .btn-all {
  position: absolute;
  top: 0px;
  right: 0px;
  padding-right: 2vw;
  cursor: pointer;
}

header .submenu .btn-all:before {
  content: "";
  position: absolute;
  top: 0px;
  right: 0px;
  width: 1.5vw;
  height: 1vw;
  background-image: url(/images/burger.svg?9a5c2bd6780228ea01ec7afa34fc8c5f);
  background-size: 100% auto;
  background-position: center center;
  background-repeat: no-repeat;
  margin-left: 0.5vw;
}

header .submenu .btn.btn-all:hover:after {
  width: 48%;
}

header .submenu .filters .filter {
  position: relative;
  display: inline-block;
  vertical-align: top;
  margin: 0 0.5vw;
  cursor: pointer;
}

header .submenu .filters .filter:first-child {
  margin-left: 0px;
}

header .submenu .btn-back {
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.5vw;
}

header .submenu .icon-prev-next {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 1vw;
  height: 1.2vw;
  background-image: url(/images/arrow.svg?0cc1e2354e0bbaddd6abf3ac8ed3a419);
  background-size: 50% auto;
  background-repeat: no-repeat;
  background-position: center center;
}

header .submenu .icon-prev-next.prev {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

header .submenu .icon-prev-next.disabled {
  opacity: 0.5;
}

header .submenu div {
  display: inline-block;
  vertical-align: top;
}

main {
  position: relative;
  padding-top: 11.7vw;
  min-height: 100vh;
}

body main,
body .submenu .content {
  opacity: 1;
  -webkit-transition: opacity 200ms ease-in-out;
  -o-transition: opacity 200ms ease-in-out;
  transition: opacity 200ms ease-in-out;
}

body.fadeout main,
body.fadeout .submenu .content {
  opacity: 0;
}

#loader {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 1.3vw;
  height: 1.3vw;
  margin: 0 auto;
  border: 0.2vw solid #000;
  border-bottom-color: transparent;
  border-radius: 50%;
  z-index: 1000;
  opacity: 0;
  -webkit-animation: rotation 1s linear infinite;
          animation: rotation 1s linear infinite;
  -webkit-transition: opacity 200ms ease-in-out;
  -o-transition: opacity 200ms ease-in-out;
  transition: opacity 200ms ease-in-out;
}

body.fadeout #loader {
  opacity: 1;
}

@-webkit-keyframes rotation {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes rotation {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
/* Intro */
#intro {
  position: relative;
  display: block;
  height: 100vh;
  overflow: hidden;
  opacity: 1;
  -webkit-transition: opacity 400ms ease-in-out;
  -o-transition: opacity 400ms ease-in-out;
  transition: opacity 400ms ease-in-out;
}

#intro.fadeout {
  opacity: 0;
}

#intro .intro-slideshow {
  height: 100%;
}

#intro .intro-slideshow .slide {
  position: relative;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

#intro .intro-slideshow .slide img {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  margin: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

#intro .overlay {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  margin: auto;
  background: rgba(0, 0, 0, 0.2);
  opacity: 0.95;
  pointer-events: none;
}

#intro .info {
  position: absolute;
  top: 1.2vw;
  left: 0px;
  right: 0px;
  width: 40vw;
  margin: 0 auto;
  text-align: center;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: -webkit-transform 800ms 1200ms ease-in-out;
  transition: -webkit-transform 800ms 1200ms ease-in-out;
  -o-transition: transform 800ms 1200ms ease-in-out;
  transition: transform 800ms 1200ms ease-in-out;
  transition: transform 800ms 1200ms ease-in-out, -webkit-transform 800ms 1200ms ease-in-out;
}

#intro .info .link {
  pointer-events: all;
  cursor: pointer;
}

#intro .info a.link[href=""] {
  display: none !important;
}

#intro .info .readmore {
  position: relative;
  display: inline-block;
  vertical-align: top;
  margin-top: 1.2vw;
}

#intro #logo {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  width: 85vw;
  height: 19vw;
  margin: auto;
  -o-object-fit: contain;
     object-fit: contain;
  opacity: 1;
  -webkit-transition: opacity 1000ms ease-in-out;
  -o-transition: opacity 1000ms ease-in-out;
  transition: opacity 1000ms ease-in-out;
}

#intro .paginator {
  position: absolute;
  top: 0px;
  right: 1.2vw;
  bottom: 0px;
  width: 5vw;
  height: 0px;
  margin: auto 0;
  background: red;
  overflow: visible;
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition: -webkit-transform 800ms 1200ms ease-in-out;
  transition: -webkit-transform 800ms 1200ms ease-in-out;
  -o-transition: transform 800ms 1200ms ease-in-out;
  transition: transform 800ms 1200ms ease-in-out;
  transition: transform 800ms 1200ms ease-in-out, -webkit-transform 800ms 1200ms ease-in-out;
}

#intro .paginator span {
  position: relative;
  display: inline-block;
  vertical-align: top;
  width: 7vw;
  text-align: center;
  letter-spacing: 0.4em;
  -webkit-transform-origin: center center;
      -ms-transform-origin: center center;
          transform-origin: center center;
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}

#intro .bottom {
  position: absolute;
  bottom: 1.2vw;
  left: 0px;
  right: 0px;
  margin: 0 auto;
  text-align: center;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: -webkit-transform 800ms 1200ms ease-in-out;
  transition: -webkit-transform 800ms 1200ms ease-in-out;
  -o-transition: transform 800ms 1200ms ease-in-out;
  transition: transform 800ms 1200ms ease-in-out;
  transition: transform 800ms 1200ms ease-in-out, -webkit-transform 800ms 1200ms ease-in-out;
}

#intro .bottom a,
#intro .bottom a:visited,
#intro .bottom a:focus {
  display: inline-block;
  vertical-align: top;
  width: auto;
  height: 2.7vw;
  padding-top: 1.7vw;
  color: #fff;
  pointer-events: all;
}

#intro .bottom a:before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  width: 2.3vw;
  height: 1vw;
  margin: 0 auto;
  background-image: url(/images/down.svg?4e7f6e4e7691ce68a3273edc5ec4d1e7);
  background-size: 100% auto;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-transform: translateY(0%);
      -ms-transform: translateY(0%);
          transform: translateY(0%);
  -webkit-transition: -webkit-transform 300ms ease-in-out;
  transition: -webkit-transform 300ms ease-in-out;
  -o-transition: transform 300ms ease-in-out;
  transition: transform 300ms ease-in-out;
  transition: transform 300ms ease-in-out, -webkit-transform 300ms ease-in-out;
}

#intro .bottom a:hover:before {
  -webkit-transform: translateY(15%);
      -ms-transform: translateY(15%);
          transform: translateY(15%);
}

#intro #logo,
#intro .paginator,
#intro .bottom {
  pointer-events: none;
}

/*
#intro .overlay.nocursor{
    cursor:none;
}

#intro #pointer{
    position: absolute;
    top:50%;
    left:50%;
    width:8vw;
    height:1.5vw;
    text-align: center;

    transform:translate(-50%,-50%);
    pointer-events:none;

    opacity: 0;
    transition:opacity 100ms ease-in-out;
}

#intro .overlay.nocursor #pointer{
    opacity: 1;
}

#intro #pointer:not(.next) .next,
#intro #pointer.next .previous{
    display: none;
}*/
body.intro-ani #intro {
  pointer-events: none !important;
}

body.intro-ani #intro #logo {
  opacity: 0;
}

body.intro-ani #intro .info {
  -webkit-transform: translateY(-7vw);
      -ms-transform: translateY(-7vw);
          transform: translateY(-7vw);
}

body.intro-ani #intro .paginator {
  -webkit-transform: translateX(4vw);
      -ms-transform: translateX(4vw);
          transform: translateX(4vw);
}

body.intro-ani #intro .bottom {
  -webkit-transform: translateY(4vw);
      -ms-transform: translateY(4vw);
          transform: translateY(4vw);
}

body.intro-ani .btn-big-wrapper {
  opacity: 0;
}

/* Looper */
body.has-looper .intro-slideshow {
  height: calc(100% - 2.55vw);
  top: 2.55vw;
}

body.has-looper #intro .overlay {
  top: 2.55vw;
}

#looper {
  position: absolute;
  top: 0px;
  right: 0px;
  left: 0px;
  height: 2.55vw;
  background: #fff;
  white-space: nowrap;
}

#looper .post {
  display: inline-block;
  vertical-align: top;
  padding: 0.55vw;
  margin: 0 5vw 0 0;
}

/* Entries */
#entries {
  position: relative;
  padding-top: 0vw;
  height: auto;
  min-height: calc(100vh - 11.5vw);
  /*background:#ccc;*/
}

#entries .sticky {
  position: sticky;
  top: 11.7vw;
  left: 0px;
}

#entries .slider {
  white-space: nowrap;
  width: 100%;
  padding-left: 1.2vw;
  overflow: hidden;
  /*
  scrollbar-width: none;
  -ms-overflow-style: none;
  */
}

#entries .slider::-webkit-scrollbar {
  display: none;
}

#entries .slider .container {
  display: inline-block;
  vertical-align: top;
}

#entries .slider .entry {
  position: relative;
  display: inline-block;
  vertical-align: top;
  width: auto;
  margin-right: 7vw;
  padding-bottom: 8vw;
}

#entries .slider .entry.last {
  margin-right: 1.2vw !important;
}

#entries .slider .entry .image {
  display: block;
  width: auto;
  height: 30vw;
}

#entries .slider .entry .image img {
  display: inline-block;
  vertical-align: top;
  width: auto;
  height: 100%;
}

#entries .slider .entry .details {
  position: absolute;
  top: 30vw;
  left: 0px;
  width: 100%;
  padding-top: 0.85vw;
  white-space: normal;
}

#entries .slider .entry .details .copyright {
  margin-top: 0.3vw;
}

#entries .slider .entry .details .year {
  margin-top: 0.2vw;
}

/* Movie */
section#movie-detail {
  padding-bottom: 7vw;
}

/* layout 1 */
section#movie-detail[data-layout="1"] .header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

section#movie-detail[data-layout="1"] .header .trailer {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

section#movie-detail[data-layout="1"] .header .trailer .image {
  position: relative;
  width: calc(100% - 1.2vw);
  height: 100%;
}

section#movie-detail[data-layout="1"] .header .trailer .image.no-image {
  background-color: #ccc;
}

section#movie-detail[data-layout="1"] .header .trailer .image img {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  margin: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

section#movie-detail[data-layout="1"] .header .trailer .image .play {
  cursor: pointer;
  background: rgba(0, 0, 0, 0);
  -webkit-transition: background 200ms ease-in-out;
  -o-transition: background 200ms ease-in-out;
  transition: background 200ms ease-in-out;
}

section#movie-detail[data-layout="1"] .header .trailer .image .play:hover {
  background: rgba(0, 0, 0, 0.15);
}

section#movie-detail[data-layout="1"] .header .trailer .image .play:after {
  opacity: 1;
}

section#movie-detail[data-layout="1"] .header .poster img {
  width: auto;
  height: 34vw;
}

section#movie-detail[data-layout="1"] .details {
  display: block;
  margin-top: 2vw;
  white-space: nowrap;
  overflow: hidden;
}

section#movie-detail[data-layout="1"] .details .onehalf.first {
  width: 75%;
  padding-right: 1.2vw;
  white-space: normal;
}

section#movie-detail[data-layout="1"] .details .onehalf.second {
  width: 25%;
  white-space: normal;
  text-align: right;
}

section#movie-detail[data-layout="1"] .details .summary {
  display: block;
  margin-top: 3vw;
}

section#movie-detail[data-layout="1"] .content {
  display: block;
  margin-top: 5vw;
}

section#movie-detail[data-layout="1"] .content .onehalf.first {
  padding-right: 10vw;
}

section#movie-detail[data-layout="1"] .content .onehalf.first .text2 {
  margin-top: 5vw;
}

section#movie-detail[data-layout="1"] .photos .photo {
  display: block;
  margin-bottom: 1.2vw;
}

section#movie-detail[data-layout="1"] .photos .photo img {
  width: 100%;
  height: auto;
}

/* layout 2 */
section#movie-detail[data-layout="2"] .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

section#movie-detail[data-layout="2"] .content .onehalf.first {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

section#movie-detail[data-layout="2"] .content .onehalf.second {
  text-align: right;
  width: auto;
}

section#movie-detail[data-layout="2"] .content .onehalf.first .inside {
  display: block;
  margin-right: 15%;
}

section#movie-detail[data-layout="2"] .content .onehalf.first .summary {
  display: block;
  margin-top: 5vw;
}

section#movie-detail[data-layout="2"] .content .onehalf.first .text {
  display: block;
  margin-top: 5vw;
}

section#movie-detail[data-layout="2"] .content .onehalf.first .text2 {
  display: block;
  margin-top: 5vw;
}

section#movie-detail[data-layout="2"] .content .onehalf.second .poster img {
  width: auto;
  height: 34vw;
}

section#movie-detail[data-layout="2"] .content .onehalf.second .details {
  display: block;
  margin-top: 0.5vw;
}

/* About */
#about main .onehalf.second {
  padding-left: 9vw;
}

#about main .onehalf.first img {
  width: 100%;
}

#about main .onehalf.second h2 {
  margin-bottom: 20px;
}

#about main .onehalf.second {
  padding-right: 3vw;
}

/* All */
#all {
  display: none;
}

#all .list {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100vw;
  height: calc(100vh - 5vw);
  background: #fff;
  z-index: 9999;
  overflow-x: hidden;
  overflow-y: scroll;
  padding-top: 1.2vw;
  display: none;
}

#all.visible {
  display: block;
}

#all.visible .list {
  display: block !important;
  opacity: 1;
}

#all .entries {
  display: block;
}

#all .bottom {
  position: fixed;
  bottom: 0px;
  left: 0px;
  right: 0px;
  height: 5vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fff;
  z-index: 9999;
}

#all .bottom .btn.close {
  display: inline-block;
  vertical-align: top;
  cursor: pointer;
}

#all .entries .entry {
  display: grid;
  grid-template-columns: repeat(39, 1fr);
  grid-column-gap: 1.9vw; /* 2.2 */
  height: 2.75vw;
}

#all .entries .entry div {
  height: 100%;
  padding: 0.5vw 0 0 0;
  border-bottom: 1px solid #000;
  white-space: nowrap;
  overflow: hidden;
}

#all .entries .entry div span {
  display: block;
  width: 100%;
  height: 100%;
}

#all .entries .entry div:not(.type) span {
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  overflow: hidden;
}

#all .entries .entry:last-child div {
  border-bottom: none;
}

#all .entries .entry .title {
  grid-column: 1/14;
}

#all .entries .entry .copyright {
  grid-column: 14/20;
}

#all .entries .entry .country {
  grid-column: 20/30;
}

#all .entries .entry .year {
  grid-column: 30/35;
}

#all .entries .entry .type {
  grid-column: 35/40;
}

/* Trailer */
#trailer {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 9999;
  display: none;
}

#trailer .inside {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#trailer .video-wrapper {
  display: inline-block;
  vertical-align: top;
  width: 97.6vw;
  height: auto;
}

#trailer .overlay {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  margin: auto;
  pointer-events: none;
}

#trailer .overlay nav {
  position: absolute;
  top: 1.2vw;
  left: 1.2vw;
  right: 1.2vw;
  pointer-events: all;
  line-height: 1.3em;
}

#trailer .overlay nav .btn-control {
  position: relative;
  display: inline-block;
  vertical-align: top;
  cursor: pointer;
}

#trailer .overlay nav .btn-control.replay {
  margin-right: 20px;
}

#trailer .overlay nav .btn-control.share {
  position: absolute;
  top: 0px;
  right: 0px;
}

/*
#trailer .overlay nav .popup{
    position: absolute;
    left:8.7vw;
    top:0px;
    display: none;
}

#trailer .overlay nav .popup.visible{
    display: block;
}*/
#trailer .bottom {
  position: absolute;
  bottom: 0px;
  left: 0px;
  right: 0px;
  height: 4.5vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  pointer-events: all;
}

#trailer .bottom a {
  display: inline-block;
  vertical-align: top;
}

#trailer .video-js .vjs-control-bar {
  display: none !important;
}

.btn-big-wrapper {
  position: absolute;
  top: 0px;
  right: 0px;
  height: calc(100% - 100vh - 4vw);
  width: 100%;
  z-index: 101;
  pointer-events: none;
  opacity: 1;
  -webkit-transition: opacity 1000ms 1400ms ease-in-out;
  -o-transition: opacity 1000ms 1400ms ease-in-out;
  transition: opacity 1000ms 1400ms ease-in-out;
}

.btn-big-wrapper .sticky {
  position: sticky;
  top: 0px;
  right: 0px;
  width: 100%;
}

.btn-big {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  top: 82vh;
  right: 3vw;
  /*bottom:3vw;*/
  width: 7vw;
  height: 7vw;
  border-radius: 100%;
  background: #FF7D3C;
  cursor: pointer;
  pointer-events: all;
  z-index: 198;
}

.btn-big[data-targetdiv=contact] {
  right: 8.5vw;
  background: #0069DC;
}

.btn-big.selected {
  z-index: 199 !important;
}

.btn-big.transition {
  -webkit-transition: -webkit-transform 400ms ease-in-out;
  transition: -webkit-transform 400ms ease-in-out;
  -o-transition: transform 400ms ease-in-out;
  transition: transform 400ms ease-in-out;
  transition: transform 400ms ease-in-out, -webkit-transform 400ms ease-in-out;
}

/* News */
#overlay {
  position: fixed;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  background: rgba(0, 0, 0, 0.2);
  cursor: pointer;
  z-index: 200;
  display: none;
}

#overlay .container {
  display: none;
  position: absolute;
  top: 1.2vw;
  right: 0px;
  height: auto;
  width: 25vw;
  background: #fff;
  border-radius: 0.7vw;
  padding: 1.2vw;
  overflow-x: hidden;
  overflow-y: scroll;
  -webkit-transform: translateX(100%);
      -ms-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 400ms ease-in-out;
  transition: -webkit-transform 400ms ease-in-out;
  -o-transition: transform 400ms ease-in-out;
  transition: transform 400ms ease-in-out;
  transition: transform 400ms ease-in-out, -webkit-transform 400ms ease-in-out;
}

#overlay .container#news {
  height: calc(100vh - 2.4vw);
}

#overlay[targetdiv=contact] .container#contact,
#overlay[targetdiv=news] .container#news {
  display: inline-block;
}

#overlay.visible .container {
  -webkit-transform: translateX(-1.2vw);
      -ms-transform: translateX(-1.2vw);
          transform: translateX(-1.2vw);
}

#overlay[targetdiv=contact] .container#contact .social {
  margin-bottom: 0.5vw;
}

#overlay[targetdiv=contact] .container#contact .social:last-child {
  margin-bottom: 0px !important;
}

#overlay .container#news .post {
  position: relative;
  display: block;
  padding-bottom: 1.2vw;
  border-bottom: 1px solid #000;
  margin-bottom: 1.2vw;
}

#overlay .container#news .post:last-child {
  border-bottom: none;
  margin-bottom: 0px;
}

#overlay .container#news .post img {
  display: block;
  width: 100%;
  height: auto;
  margin-top: 1.2vw;
}

#overlay .container#news .post .excerpt {
  display: block;
  margin-top: 1.2vw;
}

#overlay .container#news.loading {
  padding-bottom: 2vw;
}

#overlay .container#news .preloader {
  text-align: center;
  border-top: 1px solid #000;
  padding-top: 1.2vw;
  display: none;
}

#overlay .container#news.loading .preloader {
  display: block;
}

#overlay .container#news .preloader .loading {
  display: inline-block;
  vertical-align: top;
  width: 2vw;
  height: 2vw;
  margin: 0 auto;
  border: 0.25vw solid #000;
  border-bottom-color: transparent;
  border-radius: 50%;
  -webkit-animation: rotation 1s linear infinite;
          animation: rotation 1s linear infinite;
}

@keyframes rotation {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
/* Pages */
.page {
  display: block;
}

/* Modules */
.module {
  margin-bottom: 1.2vw;
}

.module:last-child {
  margin-bottom: 0px;
}

.module.style-1 + .module.style-2 {
  margin-top: 0px;
}

.module.style-3 .image {
  display: block;
}

.module.style-3 .image img {
  width: 100%;
  height: auto;
}

body#page main {
  padding-bottom: 7vw;
}

body#page main .wrapper .wysiwyg,
body#page main .wrapper .image {
  width: 75%;
}

body#page .wysiwyg {
  margin-bottom: 0px;
}

body#page .wysiwyg ul li {
  position: relative;
  padding-left: 1vw;
}

body#page .wysiwyg ul li:before {
  top: 0.6vw;
  left: 0px;
  width: 0.4vw;
  height: 0.4vw;
  border-radius: 100%;
}

/* Slideshow Full */
.slideshow {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  font-size: 0px;
}

.intro-slideshow .flickity-viewport,
.slideshow .flickity-viewport {
  height: 100% !important;
}

.intro-slideshow .flickity-slider,
.slideshow .flickity-slider {
  height: 100% !important;
}

.slideshow .slide {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  font-size: 0px;
  -webkit-transition: opacity 0.4s;
  -o-transition: opacity 0.4s;
  transition: opacity 0.4s;
}

.slideshow .slide img {
  position: absolute;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
  width: 100%;
  height: 100%;
  margin: auto;
  -o-object-fit: cover;
     object-fit: cover;
  display: inline-block;
  vertical-align: top;
}

/*
.slideshow .slide img{
    -webkit-transition: opacity 0.4s;
    -moz-transition: opacity 0.4s;
    transition: opacity 0.4s;
    opacity: 0;    
}

.slideshow .slide img.flickity-lazyerror{
  opacity: 0;
}

.slideshow .slide.is-selected img.flickity-lazyloaded{
    opacity: 1;
}*/
/* Footer */
footer {
  padding-bottom: 1.2vw;
}

footer .onehalf.second {
  text-align: right;
}

footer .onehalf.first a {
  margin-right: 20px;
}

footer .onehalf.second a {
  margin-left: 20px;
}

footer .page-link {
  display: inline-block;
  vertical-align: top;
}

footer .pages a {
  position: relative;
}

footer .onehalf.first .logo {
  display: inline-block;
  vertical-align: top;
  width: 8.7vw;
  height: auto;
}

footer .onehalf.first .logo img {
  width: 100%;
  height: auto;
}

footer .onehalf.first .item {
  display: inline-block;
  vertical-align: top;
  margin-right: 1vw;
}

footer .onehalf.first .address {
  display: inline-block;
  vertical-align: top;
  position: relative;
  top: -0.15vw;
}

footer .onehalf.second {
  white-space: nowrap;
  padding-top: 1vw;
}

footer .pages {
  display: inline-block;
  vertical-align: top;
  margin-left: 3vw;
}

footer .pages:first-child {
  margin-left: 0px;
}

/* Video */
.background-video,
.responsive-video {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

/* Video Background */
.background-video {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  z-index: 0;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}

.background-video video {
  position: absolute;
  top: -100%;
  right: -100%;
  bottom: -100%;
  left: -100%;
  width: 100%;
  height: 100%;
  margin: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

/* Video JS */
.video-js {
  background-color: #000;
}

.video-js.vjs-16-9 {
  padding-top: 47.8%;
}

.video-js .vjs-poster {
  background-color: transparent;
  background-size: cover;
}

.video-js .vjs-big-play-button {
  font-size: 0px;
  line-height: 1em;
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  margin: auto;
  background-color: rgba(0, 0, 0, 0);
  background-image: url(/images/video-play.svg?e7fcd77b34f040491658897cbac6ea99);
  background-size: 8.5% auto;
  background-position: center center;
  background-repeat: no-repeat;
  padding: 0;
  opacity: 1;
  border: none;
  -webkit-transition: background 200ms ease-in-out !important;
  -o-transition: background 200ms ease-in-out !important;
  transition: background 200ms ease-in-out !important;
}

.video-js:hover .vjs-big-play-button {
  background-color: rgba(0, 0, 0, 0.15);
}

.video-js .vjs-big-play-button .vjs-icon-placeholder {
  display: none !important;
}

.video-js .vjs-big-play-button .vjs-control-text {
  display: none !important;
}

.video-js .vjs-control-bar {
  background-color: rgba(55, 50, 65, 0);
  height: 40px;
  width: auto;
  left: 10px;
  right: 10px;
}

.video-js .vjs-progress-control .vjs-progress-holder {
  margin: 14px 10px 0 10px;
}

.video-js .vjs-progress-control {
  display: block;
}

.video-js.vjs-ended .vjs-big-play-button,
.video-js.vjs-ended .vjs-poster {
  display: inline-block !important;
}

/* Youtube */
.responsive-video {
  position: relative;
  /*padding-bottom: 56.25%;*/
  padding-bottom: 47.6%;
  padding-top: 0px;
  height: 0;
  overflow: hidden;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
}

.play,
.responsive-video video,
.responsive-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.on-demand {
  background-color: #ccc;
  cursor: pointer;
}

.play:after,
.on-demand:after {
  content: " ";
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  width: 20%;
  height: 20%;
  margin: auto;
  background-color: transparent !important;
  background-image: url(/images/video-play.svg?e7fcd77b34f040491658897cbac6ea99);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  padding: 0;
  opacity: 0.8;
  -webkit-transition: opacity 200ms ease-in-out;
  -o-transition: opacity 200ms ease-in-out;
  transition: opacity 200ms ease-in-out;
  pointer-events: none;
}

.on-demand.on-demand-vjs:after {
  background-image: url(/images/gdpr.png?30c4de7e131664f923af531b32dd4322);
}

.on-demand:hover:after {
  opacity: 1;
}

.on-demand .overlay {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
}

.on-demand .guideline {
  position: absolute;
  bottom: 0px;
  left: 0px;
  right: 0px;
  color: #fff;
  text-align: center;
  z-index: 1000;
  padding: 1vw;
  background: rgba(0, 0, 0, 0.2);
}

.on-demand .guideline a,
.on-demand .guideline a:visited,
.on-demand .guideline a:focus {
  color: #fff;
  text-decoration: underline;
}

/* General */
* {
  outline: none;
}

/* WYSIWYG */
.wysiwyg .block {
  display: block;
  margin-left: 85px;
  margin-bottom: 40px;
}

.wysiwyg .columns {
  /*
  display: inline-block;
  vertical-align: top;
  width:49%;
  padding-right:40px;*/
  display: block;
  -webkit-column-count: 2;
     -moz-column-count: 2;
          column-count: 2;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}

.wysiwyg .columns .element {
  display: inline-block;
  vertical-align: top;
  width: 100%;
  margin-bottom: 1vw;
}

.wysiwyg .columns .element:first-child {
  display: none;
}

.wysiwyg .columns h3:first-child {
  margin-top: 0px;
}

.wysiwyg ul {
  margin: 0 0 0 0;
  padding: 0;
}

.wysiwyg ul li {
  position: relative;
  padding-left: 1vw;
}

.wysiwyg ul li:before {
  content: "";
  position: absolute;
  top: 0.8vw;
  left: 0px;
  width: 0.5vw;
  height: 0.1vw;
  background: #000;
}

.wysiwyg h2 {
  margin-bottom: 1.2vw;
}

.wysiwyg .spacing {
  display: block;
  height: 3vw;
}

.wysiwyg a,
.wysiwyg a:visited {
  text-decoration: none;
}

u {
  text-decoration-thickness: 0.1vw;
  text-underline-offset: 0.2vw;
}

/* General */
.hidden {
  display: none !important;
}

.overflowhidden {
  overflow: hidden !important;
}

.underline {
  text-decoration: underline;
  text-underline-offset: 0.4vw;
}

/* Fonts */
.zfs {
  font-size: 0px;
}

.h1,
.h2,
.h3,
.h4,
.wysiwyg h2,
.wysiwyg h3 {
  font-family: "Druk Wide Web";
}

.h1 {
  /*font-size:3vw;*/
  font-size: 2.2vw;
  line-height: 1.1em;
  letter-spacing: 0.04em;
}

.h2 {
  font-size: 1.7vw;
  line-height: 1.1em;
  letter-spacing: 0.04em;
}

.h3 {
  font-size: 1.3vw;
  line-height: 1.5em;
  letter-spacing: 0.04em;
}

.h4, .wysiwyg h2 {
  font-size: 1vw;
  line-height: 1.3em;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.wysiwyg h3 {
  font-size: 0.7vw;
  font-weight: 300;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: block;
}

.p1,
.p2,
.p3 {
  font-family: "GT-America-Regular";
}

.p1 {
  font-size: 1.7vw;
  line-height: 1.2em;
}

.p2 {
  font-size: 1.2vw;
  line-height: 1.4em;
}

.p3 {
  /*font-size: 0.85vw;*/
  font-size: 1vw;
  line-height: 1.3em;
}

.t1,
.t2,
.t3 {
  font-family: "GT-America-Mono-Regular";
}

.t2 {
  font-size: 1vw;
}

.t3 {
  font-size: 0.8vw;
}

a, a:focus, a:visited, img {
  outline: none;
  border: none;
}

a {
  position: relative;
  display: inline-block;
}

a, a:visited {
  text-decoration: none;
  color: #000;
}

.italic, em {
  font-style: italic;
}

.bold, strong {
  font-weight: 700;
}

.light {
  font-weight: 400;
}

.uppercase {
  text-transform: uppercase;
}

.blue {
  color: blue;
}

.no-select {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

input:focus,
select:focus,
textarea:focus,
button:focus {
  outline: none;
  outline-width: 0;
}

input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #888;
  opacity: 1;
}

input:-moz-placeholder, textarea:-moz-placeholder { /* Firefox 18- */
  color: #888;
  opacity: 1;
}

input::-moz-placeholder, textarea::-moz-placeholder { /* Firefox 19+ */
  color: #888;
  opacity: 1;
}

input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #888;
  opacity: 1;
}

.white, a.white, a.white:focus, a.white:visited {
  color: #fff;
}

.mobile-only {
  display: none;
}

/* > iPhone */
@media (min-width: 768px) {
  #all .entries .entry div span {
    position: relative;
  }
  #all .entries .entry div.title span {
    top: 0.15vw;
  }
  #all .entries .entry:hover div.title span {
    font-size: 1.05vw;
    top: 0.12vw;
  }
  #all .entries .entry:hover div:not(.title) span {
    font-size: 1.27vw;
    top: -0.05vw;
  }
  #all .entries .entry div.type {
    text-align: right;
  }
  #all .entries .entry div.type span {
    display: inline-block;
    vertical-align: top;
    text-align: left;
  }
  #entries .slider .entry .image {
    -webkit-transform: scale(1) translate(0%);
        -ms-transform: scale(1) translate(0%);
            transform: scale(1) translate(0%);
    -webkit-transition: -webkit-transform 350ms ease-in-out;
    transition: -webkit-transform 350ms ease-in-out;
    -o-transition: transform 350ms ease-in-out;
    transition: transform 350ms ease-in-out;
    transition: transform 350ms ease-in-out, -webkit-transform 350ms ease-in-out;
  }
  #entries .slider .entry:hover .image {
    -webkit-transform: scale(1.04) translate(1.9%, 1.9%);
        -ms-transform: scale(1.04) translate(1.9%, 1.9%);
            transform: scale(1.04) translate(1.9%, 1.9%);
  }
  #entries .slider .entry .details {
    -webkit-transition: top 350ms ease-in-out;
    -o-transition: top 350ms ease-in-out;
    transition: top 350ms ease-in-out;
  }
  #entries .slider .entry:hover .details {
    top: 31.2vw;
  }
  #intro .intro-slideshow .slide img.invisible {
    display: none !important;
  }
}
/* iPhone 768px */
@media (max-width: 768px) {
  .iphone-only {
    display: block;
  }
  .desktop-only {
    display: none !important;
  }
  .mobile-only {
    display: inline-block !important;
  }
  #loader {
    width: 18px;
    height: 18px;
    border-width: 3px;
  }
  #intro .intro-slideshow .slide .background-video {
    display: none !important;
  }
  #intro .overlay {
    pointer-events: all;
  }
  #intro .info {
    display: block;
    top: 35px;
    width: auto;
    margin: 0 15px;
  }
  #intro .info .readmore {
    margin-top: 20px;
  }
  #intro #logo {
    width: 70vw;
    height: 16vw;
  }
  #intro .paginator {
    right: 37px;
    width: 20px;
  }
  #intro .paginator span {
    width: 70px;
  }
  #intro .bottom {
    bottom: 35px;
  }
  #intro .bottom a,
  #intro .bottom a:visited,
  #intro .bottom a:focus {
    height: 40px;
    padding-top: 25px;
  }
  #intro .bottom a:before {
    width: 35px;
    height: 15px;
  }
  body.has-looper .intro-slideshow {
    height: calc(100% - 40px);
    top: 40px;
  }
  body.has-looper #intro .overlay {
    top: 40px;
  }
  #looper {
    height: 40px;
  }
  #looper .post {
    padding: 11px 10px 0 10px;
    margin: 0 100px 0 0;
  }
  body.intro-ani #intro .info {
    -webkit-transform: translateY(-120px);
        -ms-transform: translateY(-120px);
            transform: translateY(-120px);
  }
  body.intro-ani #intro .paginator {
    -webkit-transform: translateX(30px);
        -ms-transform: translateX(30px);
            transform: translateX(30px);
  }
  body.intro-ani #intro .bottom {
    -webkit-transform: translateY(80px);
        -ms-transform: translateY(80px);
            transform: translateY(80px);
  }
  .btn-big-wrapper {
    height: calc(100% - 100vh - 80px);
  }
  .btn-big {
    right: 15px;
    top: calc(100vh - 170px);
    width: 85px;
    height: 85px;
    -webkit-transition: top 400ms ease-in-out;
    -o-transition: top 400ms ease-in-out;
    transition: top 400ms ease-in-out;
  }
  .btn-big[data-targetdiv=contact] {
    right: 85px;
  }
  body.scrolling .btn-big {
    top: calc(100vh - 172px) !important;
  }
  .wrapper {
    padding: 0 15px;
  }
  main {
    padding-top: 200px;
    min-height: 0px;
  }
  header {
    padding: 0px 0 17px 0;
  }
  header nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    background: #fff;
    z-index: 2;
    padding-top: 15px;
    height: 35px;
  }
  header nav a {
    height: 15px;
    margin-right: 0px;
  }
  header .languages {
    top: 15px;
    right: 0px;
    pointer-events: all;
  }
  header .languages .slash {
    margin-right: 3px;
  }
  header .hwrapper {
    -webkit-transition: margin-top 350ms ease-in-out;
    -o-transition: margin-top 350ms ease-in-out;
    transition: margin-top 350ms ease-in-out;
  }
  header .logo {
    margin-top: 40px;
    width: 200px;
    height: 45px;
  }
  header .submenu {
    position: relative;
    margin-top: 45px;
    opacity: 1;
    -webkit-transition: opacity 250ms ease-in-out;
    -o-transition: opacity 250ms ease-in-out;
    transition: opacity 250ms ease-in-out;
  }
  header .submenu .btn-all {
    padding-right: 30px;
  }
  header .submenu .btn-all:before {
    width: 20px;
    height: 15px;
    margin-left: 7px;
  }
  header .submenu .icon-prev-next {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    width: 25px;
    height: 20px;
    margin: 0 auto;
    background-size: contain;
  }
  header .submenu .icon-prev-next.prev {
    -webkit-transform: translateX(-25px) rotate(180deg);
        -ms-transform: translateX(-25px) rotate(180deg);
            transform: translateX(-25px) rotate(180deg);
  }
  header .submenu .icon-prev-next.next {
    -webkit-transform: translateX(25px);
        -ms-transform: translateX(25px);
            transform: translateX(25px);
  }
  header .submenu .btn-back {
    margin-right: 0px;
  }
  header.out .hwrapper {
    margin-top: -150px;
  }
  header .submenu {
    -webkit-transition: opacity 250ms ease-in-out;
    -o-transition: opacity 250ms ease-in-out;
    transition: opacity 250ms ease-in-out;
  }
  #entries {
    min-height: 0px;
    padding-bottom: 100px;
  }
  #entries .sticky {
    position: relative;
    top: auto;
    left: auto;
    overflow: hidden;
  }
  #entries .slider {
    padding-left: 15px;
    padding-right: 15px;
    overflow: visible;
  }
  #entries .slider .container {
    display: block;
    width: auto;
  }
  #entries .slider .container .flickity-viewport {
    overflow: visible;
  }
  #entries .slider .entry {
    margin-right: 15px;
    padding-bottom: 120px;
  }
  #entries .slider .entry.last {
    margin-right: 15px;
  }
  #entries .slider .entry .image {
    height: 105vw;
  }
  #entries .slider .entry .details {
    top: 105vw;
    padding-top: 12px;
  }
  #overlay,
  #all {
    position: fixed;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    margin: auto;
    background: rgba(0, 0, 0, 0.2);
    z-index: 9999;
  }
  #overlay #news,
  #all .list {
    position: absolute;
    top: 20px;
    right: 20px;
    bottom: 70px;
    left: 20px;
    width: auto;
    height: auto !important;
    z-index: auto;
    padding-top: 0px;
    border-radius: 12px;
    -webkit-box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.3);
            box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.3);
  }
  #overlay #contact {
    position: relative;
    width: calc(100% - 40px);
    margin: 20px 20px 0 20px;
    padding-top: 15px;
    border-radius: 12px;
    -webkit-box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.3);
            box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.3);
  }
  #overlay .bottom,
  #all .bottom {
    display: inline-block;
    vertical-align: top;
    position: absolute;
    right: 20px;
    bottom: 20px;
    left: 20px;
    height: 40px;
    z-index: auto;
    border-radius: 12px;
    -webkit-box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.3);
            box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.3);
  }
  #overlay .bottom a,
  #all .bottom .btn.close {
    display: block;
    padding: 13px;
    text-align: center;
  }
  #all .bottom .btn.clsoe:after {
    display: none !important;
  }
  #all .entries .entry {
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 10px;
    height: auto;
    padding: 15px 0 15px 0;
    border-bottom: 1px solid #000;
  }
  #all .entries .entry:last-child {
    border: none;
  }
  #all .entries .entry div {
    padding: 0px;
    border: none;
    white-space: normal;
    height: auto;
  }
  #all .entries .entry div span {
    width: auto;
    height: auto;
  }
  #all .entries .entry .title {
    grid-row: 1;
    grid-column: 1/3;
    padding-bottom: 13px;
  }
  #all .entries .entry .copyright {
    grid-row: 2;
    grid-column: 1/2;
  }
  #all .entries .entry .country {
    grid-row: 3;
    grid-column: 1/2;
  }
  #all .entries .entry .year {
    grid-row: 3;
    grid-column: 2/3;
  }
  #all .entries .entry .type {
    grid-row: 2;
    grid-column: 2/3;
  }
  #overlay[targetdiv=contact] .bottom {
    position: relative;
    display: block;
    width: calc(100% - 40px);
    margin: 20px 20px 0 20px;
    right: auto;
    bottom: auto;
    left: auto;
  }
  #overlay[targetdiv=contact] .container#contact .social {
    margin-bottom: 7px;
  }
  #overlay .bottom {
    background: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-transform: translateX(0px);
        -ms-transform: translateX(0px);
            transform: translateX(0px);
    opacity: 0;
    -webkit-transition: opacity 400ms ease-in-out;
    -o-transition: opacity 400ms ease-in-out;
    transition: opacity 400ms ease-in-out;
  }
  #overlay.visible .bottom {
    -webkit-transform: translateX(0px);
        -ms-transform: translateX(0px);
            transform: translateX(0px);
    opacity: 1;
  }
  #overlay .bottom .close {
    display: block;
    width: auto;
    padding: 13px;
    text-align: center;
  }
  #overlay .container {
    padding: 15px;
    -webkit-transform: translateX(0px);
        -ms-transform: translateX(0px);
            transform: translateX(0px);
    opacity: 0;
    -webkit-transition: opacity 400ms ease-in-out;
    -o-transition: opacity 400ms ease-in-out;
    transition: opacity 400ms ease-in-out;
  }
  #overlay.visible .container {
    -webkit-transform: translatex(0px);
        -ms-transform: translatex(0px);
            transform: translatex(0px);
    opacity: 1;
  }
  #overlay .container#news .post {
    padding: 15px 0 30px 0;
    margin-bottom: 0px;
  }
  #overlay .container#news .post img {
    margin-top: 20px;
  }
  #overlay .container#news .post .excerpt {
    margin-top: 20px;
  }
  #overlay .container#news .post .excerpt.p3 {
    font-size: 17px;
  }
  #overlay .container#news.loading {
    padding-bottom: 25px;
  }
  #overlay .container#news .preloader {
    padding-top: 25px;
  }
  #overlay .container#news .preloader .loading {
    width: 25px;
    height: 25px;
    border: 3px solid #000;
    border-bottom-color: transparent;
    border-radius: 50%;
  }
  section#movie-detail {
    padding-bottom: 100px;
  }
  section#movie-detail[data-layout="1"] .header {
    display: block;
  }
  section#movie-detail[data-layout="1"] .header .trailer {
    display: block;
    margin-top: 20px;
  }
  section#movie-detail[data-layout="1"] .header .trailer .image {
    display: block;
    width: auto;
    padding-top: 57%;
  }
  section#movie-detail[data-layout="1"] .header .poster {
    display: none;
  }
  section#movie-detail[data-layout="1"] .details {
    margin-top: 20px;
  }
  section#movie-detail[data-layout="1"] .details .summary {
    margin-top: 40px;
  }
  section#movie-detail[data-layout="1"] .details .onehalf.first {
    display: block;
    width: auto !important;
  }
  section#movie-detail[data-layout="1"] .details .onehalf.second {
    display: block;
    width: auto !important;
    text-align: left;
    margin-top: 0px;
  }
  section#movie-detail[data-layout="1"] .content {
    margin-top: 40px;
  }
  section#movie-detail[data-layout="1"] .content .onehalf.first {
    display: block;
    width: auto;
    padding-right: 0px;
  }
  section#movie-detail[data-layout="1"] .content .onehalf.first .text2 {
    margin-top: 50px;
  }
  section#movie-detail[data-layout="1"] .content .onehalf.second {
    display: block;
    width: auto;
    margin-top: 40px;
    margin-right: -15px;
    margin-left: -15px;
  }
  section#movie-detail[data-layout="1"] .onehalf.second {
    margin-top: 50px;
  }
  section#movie-detail[data-layout="1"] .photos .photo {
    margin: 0;
    display: inline-block;
    vertical-align: top;
    width: 80vw;
    margin-right: 15px;
  }
  section#movie-detail[data-layout="2"] .content {
    display: block;
  }
  section#movie-detail[data-layout="2"] .content .onehalf.first {
    display: block;
    width: auto;
  }
  section#movie-detail[data-layout="2"] .content .onehalf.first .text2 {
    margin-top: 50px;
  }
  section#movie-detail[data-layout="2"] .content .onehalf.second {
    display: block;
    width: auto;
  }
  section#movie-detail[data-layout="2"] .content .onehalf.first .inside {
    margin-right: 0px;
  }
  section#movie-detail[data-layout="2"] .content .onehalf.second {
    text-align: left;
    margin-top: 30px;
  }
  section#movie-detail[data-layout="2"] .content .onehalf.second .poster img {
    height: 90vw;
  }
  section#movie-detail[data-layout="2"] .content .onehalf.second .details {
    margin-top: 20px;
  }
  section#movie-detail[data-layout="2"] .content .onehalf.first .text {
    margin-top: 50px;
  }
  #trailer .overlay nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    top: 15px;
    right: 15px;
    left: 15px;
  }
  #trailer .overlay nav .btn-control.sound,
  #trailer .overlay nav .btn-control.share {
    width: 85px;
  }
  #trailer .overlay nav .btn-control.share {
    text-align: right;
    position: relative;
    top: auto;
    right: auto;
  }
  #trailer .bottom {
    bottom: 15px;
    height: 20px;
  }
  #trailer .video-wrapper {
    width: 100%;
  }
  #trailer #trailer-video.video-js.vjs-16-9 {
    padding-top: 42%;
  }
  #trailer:after {
    content: "";
    position: absolute;
    bottom: -50vh;
    right: 0px;
    left: 0px;
    height: 50vh;
    background: #fff;
  }
  body#about main .onehalf.first {
    display: block;
    width: auto;
    margin-right: -15px;
    margin-left: -15px;
  }
  #about main .onehalf.second {
    display: block;
    width: auto;
    padding-right: 0px;
    padding-left: 0px;
    margin-top: 40px;
    padding-bottom: 100px;
  }
  .play:after, .on-demand:after {
    width: 95px;
    height: 95px;
  }
  .video-js .vjs-big-play-button {
    background-size: 95px auto;
  }
  footer {
    padding-bottom: 15px;
  }
  footer .onehalf.first .logo {
    width: 95px;
  }
  footer .onehalf.first .address {
    display: block;
    width: auto;
    top: 0px;
    margin-top: 20px;
  }
  footer .onehalf.first .address .p3 {
    line-height: 1.6em;
  }
  footer .onehalf.first .item:not([itemprop=telephone]) {
    display: block;
    width: auto;
  }
  footer .onehalf.second {
    padding-top: 44px;
  }
  footer .pages {
    display: block;
    width: auto;
    text-align: left;
    margin-left: 0px;
  }
  footer .pages.first {
    display: none;
  }
  footer .onehalf.second a {
    margin-left: 0px;
  }
  footer .pages .page-link {
    display: block;
    margin-bottom: 19px;
  }
  .btn:after {
    bottom: -5px;
  }
  .underline {
    text-decoration: underline;
    text-underline-offset: 5px;
  }
  .wysiwyg .spacing {
    height: 20px;
  }
  .wysiwyg ul {
    /*margin-bottom:20px;*/
  }
  .wysiwyg ul li {
    padding-left: 17px;
  }
  .wysiwyg ul li:before {
    top: 9px;
    width: 8px;
    height: 1.5px;
  }
  .wysiwyg .columns .element {
    margin-bottom: 20px;
  }
  .wysiwyg h2 {
    margin-bottom: 15px;
  }
  .wysiwyg h3 {
    font-size: 10px;
  }
  .h1 {
    font-size: 26px;
  }
  .h2 {
    font-size: 17px;
  }
  .h3 {
    font-size: 14px;
  }
  .h4, .wysiwyg h2 {
    font-size: 14px;
  }
  .t2 {
    font-size: 15px;
  }
  .t3 {
    font-size: 12px;
  }
  .p1 {
    font-size: 22px;
  }
  .p2 {
    font-size: 17px;
  }
  .p3 {
    font-size: 14px;
  }
}
