@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Rubik:100,400,800");
body, html {
  font-family: "Rubik";
}

h1 {
  font-family: "Rubik";
  font-weight: 300;
  font-size: 2rem;
  line-height: 100%;
  color: #f7f7f7;
}

h2 {
  font-family: "Rubik";
  font-weight: 300;
  font-size: 2rem;
  line-height: 100%;
  color: #f7f7f7;
}

h4 {
  padding: 0px 0px 10px 0px;
  margin: 0px;
  font-size: 1.3rem;
  line-height: 100%;
}

h5 {
  padding: 0px;
  margin: 0px;
  line-height: 100%;
  font-size: 24px;
}

.h1-variant {
  font-family: "Rubik";
  font-weight: 300;
  font-size: 1.5rem;
  line-height: 100%;
  color: #f7f7f7;
  margin-bottom: 30px;
}

.content-text {
  font-family: "Rubik";
  font-weight: 100;
  font-size: 16px;
  color: #f7f7f7;
}

.content-text a {
  text-decoration: underline;
  color: #f7f7f7;
}

.content-text a:hover {
  color: #f7f7f7;
}

.content-text-small {
  font-family: "Rubik";
  font-weight: 100;
  font-size: 13px;
  color: #f7f7f7;
}

.content-text-small a {
  text-decoration: underline;
  color: #f7f7f7;
}

.content-text-small a:hover {
  color: #f7f7f7;
}

.large-link {
  font-family: "Rubik";
  color: #f7f7f7;
  font-size: 1.5rem;
}

.text-person {
  font-family: "Rubik";
  font-size: 13px;
  color: #f7f7f7;
}

.large-link:hover {
  color: #f7f7f7;
}

.text-sec {
  font-family: "Rubik";
  font-weight: 100;
  font-size: 13px;
  color: #f7f7f7;
}

.text-sec a:hover {
  text-decoration: underline;
  color: #f7f7f7;
}

@media (min-width: 1400px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-weight: 300;
    font-size: 2.5rem;
  }
  .h1-variant {
    font-family: "Rubik";
    font-weight: 300;
    font-size: 2rem;
    line-height: 100%;
    color: #f7f7f7;
  }
  .text-sec {
    font-size: 16px;
  }
}
.text-color {
  color: #f7f7f7;
}

p a {
  color: #f7f7f7;
  text-decoration: underline;
}

p a:hover {
  color: #f7f7f7;
}

.breadcrumb-container {
  color: #f7f7f7;
  padding-bottom: 10px;
  font-size: 13px;
  text-align: left;
}

.breadcrumb-container a {
  color: #f7f7f7;
}

.breadcrumb-link {
  color: #f7f7f7;
}

.breadcrumb-link:hover {
  color: #f7f7f7;
  text-decoration: underline;
}

.mobile-menu-area {
  z-index: 999;
  overflow-y: auto;
  display: none;
  /* background-color:#e8e8e8; */
  /* border:10px solid #212529; */
  padding: 0px;
}

.mobile-sub-menu a {
  font-family: "Rubik";
  font-size: 20px !important;
  font-weight: 100 !important;
  color: #f7f7f7;
  cursor: pointer;
}

.header-menu-mobile {
  width: 100%;
  flex: 1;
}

.header-menu-mobile li {
  width: 100%;
  padding: 5px 0px;
}

.container-submenu {
  padding: 5px 0px;
}
@media (max-width: 767px) {
  .container-submenu {
    padding: 5px 60px;
  }
}

/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger-col {
  max-width: 40px;
  margin-right: 30px;
  margin-left: 20px;
  margin-top: 40px;
}

.hamburger {
  padding: 20px 0px;
  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;
}

.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: #f7f7f7; /* 212529; */
}

.hamburger-box {
  width: 40px;
  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: 40px;
  height: 4px;
  background-color: #f7f7f7; /* 212529; */
  border-radius: 0px;
  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;
}

/*
   * Squeeze
   */
.hamburger--squeeze .hamburger-inner {
  transition-duration: 0.075s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--squeeze .hamburger-inner::before {
  transition: top 0.075s 0.12s ease, opacity 0.075s ease;
}

.hamburger--squeeze .hamburger-inner::after {
  transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--squeeze.is-active .hamburger-inner {
  transform: rotate(45deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--squeeze.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.075s ease, opacity 0.075s 0.12s ease;
}

.hamburger--squeeze.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/* From style.css below */
/* @import url('https://fonts.googleapis.com/css?family=Raleway:100,400,800'); */
::-webkit-scrollbar {
  display: none;
  width: 0px; /* remove scrollbar space */
  background: transparent; /* optional: just make scrollbar invisible */
}

.cell {
  position: relative;
  /* border:1px solid #00ff00; */
  background-color: #333333;
  margin-bottom: 5px;
}

.cell-square {
  width: 26.1%; /*  25.95%    26.47%; */
  height: 0;
  padding-top: 26.1%; /* 25.95%   26.3%; */
  overflow-y: hidden;
  overflow-x: hidden;
}

.cell-16-9 {
  width: calc(47.25% - 6px); /* calc(47.05% - 6px); */
  height: 0;
  overflow-y: hidden;
  overflow-x: hidden;
  padding-top: 26.115%; /* 25.95%   26.3%; */
}

.cell-poster {
  display: block;
  width: 24.4%;
  padding-top: 34.8%; /* 380px? */
  max-height: 328px; /* 378px */
  overflow-y: hidden;
  margin-bottom: 6px;
}

.container-news {
  position: absolute;
  top: 0;
  z-index: 1000;
  color: #f7f7f7;
  width: 100%;
  height: 0;
  padding: 20px;
}

.logo-loading {
  position: absolute;
  width: 100%;
  height: 60px;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  text-align: center;
}

.image-hover-square {
  position: absolute;
  z-index: 100;
  display: none;
  padding: 20px;
  width: 100%;
  height: 100%;
}

.image-hover-16-9 {
  position: absolute;
  z-index: 100;
  display: none;
  padding: 20px;
  width: 100%;
  height: 100%;
}

/* ------------------- */
.studio-image {
  background-repeat: no-repeat;
  background-size: cover !important;
  background-position: center center !important;
}

body {
  background-color: #1a1a1a;
}

.image-fadein {
  opacity: 1 !important;
}

.image-fadeout {
  opacity: 0 !important;
}

.text-fadein {
  transition: opacity 1s;
  opacity: 1 !important;
  display: block;
}

.hiddenbox {
  display: none !important;
}

.map {
  height: 320px;
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
}

.debug {
  border: 1px solid #ff0000;
}

.container-header {
  /* background-color:#e8e8e8; */
  color: #333333;
}

.container-footer {
  /* background-color:#e8e8e8; */
  color: #333333;
  font-size: 11px;
  padding: 10px 20px;
  margin-top: 0px;
}

.container-content {
  /* min-height:500px; */
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  background-color: #1a1a1a;
  color: #eee;
}

.container-sub {
  /* margin:50px 0px 55px 0px; */
  position: absolute;
  top: 25%;
  left: 0;
  right: 0;
  margin: auto;
}

.container-title {
  position: absolute;
  top: 50px;
  width: 100%;
  text-align: center;
  z-index: 1000;
  font-size: 20px;
}

.item-category {
  margin-top: 5px;
}

.item-view {
  position: absolute;
  bottom: 25px;
  left: 0;
  right: 0;
  margin: auto;
  color: #f7f7f7;
  font-size: 11px;
}

.container-photo {
  position: relative;
  cursor: pointer;
  /* float:left;*/
  display: block;
  margin-bottom: 7px;
  overflow: hidden;
}

.container-back {
  background-color: #333333;
  display: block;
  height: 100%;
  width: 100%;
}

.hover-logo {
  opacity: 0.9;
  width: 180px;
}

.left-margin-screen {
  margin-left: 5px;
}

.box-content {
  background-color: #333333;
  color: #f7f7f7;
  font-family: "Rubik";
  padding: 20px !important;
  /* display:block; */
}

.text-headline {
  font-family: "Rubik";
  font-weight: 400;
  color: #f7f7f7;
}

.text-numbers {
  font-family: "Rubik";
  font-weight: 100;
  font-size: 10px;
}

.text-numbers a:hover {
  text-decoration: underline;
  color: #f7f7f7;
}

.text-large {
  font-size: 17px;
}

.text-medium {
  font-size: 15px;
}

.text-small {
  font-size: 11px;
}

.text-xsmall {
  font-size: 11px;
}

.text-link {
  color: #333333;
}

.photo-square {
  width: 100% !important;
}

.photo-16-9 {
  width: 100% !important;
}

.photo-poster {
  width: 100% !important;
}

.poster-sep {
  margin: 0px 5px 0px 0px !important;
  /* border:1px solid #ff0000; */
}

.image-hover-poster {
  position: absolute;
  z-index: 100;
  display: none;
  width: 100%;
  height: 100%;
  padding: 20px;
}

.image-hover-layout {
  background-color: rgba(50, 50, 50, 0.6);
  color: #f7f7f7;
  font-size: 13px;
  font-weight: 100;
  width: 100%;
  height: 100%;
}

.menuitem {
  text-align: left;
}

.menuitem a {
  font-family: "Rubik";
  font-size: 15px;
  font-weight: 100 !important;
  color: #b5b5b5;
  cursor: pointer;
}

@media (max-width: 991px) {
  .menuitem a {
    font-size: 13px !important;
  }
  h1 {
    font-size: 2rem;
  }
}
@media (min-width: 1800px) {
  .menuitem a {
    font-size: 20px !important;
  }
}
ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

li {
  position: relative;
}

.submenupadding {
  margin-top: 20px;
  /* border:1px solid #00ff00; */
}

.current_page_item:after {
  content: "";
  border-bottom: 1px solid #FFCC00;
  width: 25px;
  position: absolute;
  bottom: 0;
  left: 0;
}

#sub-menu {
  margin: 5px 0px 15px 0px;
}

#sub-menu > li > a {
  color: #f7f7f7;
}

.submenuitem {
  font-family: "Rubik";
  font-size: 11px !important;
  font-weight: 100 !important;
  color: #f7f7f7;
  cursor: pointer;
}

.menu-item-selected:after {
  content: "";
  border-bottom: 1px solid #FFCC00;
  width: 25px;
  position: absolute;
  bottom: 0;
  left: 0; /* This will make border center aligned */
}

.block-margin-bottom {
  margin-bottom: 10px;
}

.block-margin-right {
  margin-right: 5px !important;
}

.block-margin-left {
  margin-left: 5px !important;
}

/*
.project-image{
    max-width:100%;
}
*/
.nospace {
  padding: 0px;
  margin: 0px;
}

.space-right {
  padding-right: 10px;
}

.space-left {
  padding-left: 10px;
}

.gridcol {
  /*  margin:0px 6px 7px 6px !important; */
  margin-left: 5px;
  margin-right: 5px;
}

/*  Mobile */
.mobile-menu-button {
  display: none;
}

.col-contact-1 {
  width: 45%;
  background: #1a1a1a;
  display: inline-block;
  /*overflow: hidden;*/
}

.col-contact-2 {
  display: inline-block;
  width: 55%;
  background: #1a1a1a;
  padding: 0px;
  margin: 0px;
}

.col-contact-3 {
  margin-left: 5px;
  height: 100%;
}

.contact-row-large {
  /* max-height:300px; */
}

.contact-row-small {
  /*max-height:140px;*/
}

.contact-margin {
  margin-top: 10px;
  margin-bottom: 10px;
}

.contact-cell-height-1 {
  word-wrap: break-word;
}

.contact-cell-height-2 {
  word-wrap: break-word;
}

@media (min-width: 992px) {
  .mr-2-lg {
    margin-right: 8px;
  }
}
@media (min-width: 768px) {
  .mr-2-screen {
    margin-right: 8px;
  }
}
@media (min-width: 577px) {
  .contact-cell-height-1 {
    min-height: 300px;
  }
  .contact-cell-height-2 {
    min-height: 430px;
  }
}
.imdbmargin {
  margin: 20px 0px;
}

.col-studio-1 {
  width: 45%;
  background: #1a1a1a;
  display: inline-block;
  /*overflow: hidden;*/
}

.col-studio-2 {
  display: inline-block;
  width: 55%;
  background: #1a1a1a;
  padding: 0px;
  margin: 0px;
}

.col-studio-3 {
  margin-left: 5px;
  height: 100%;
}

.newstext-small {
  font-family: "Rubik";
  font-size: 13px;
  color: #f7f7f7;
}

.newstext {
  font-family: "Rubik";
  color: #f7f7f7;
  text-decoration: none;
  font-size: 20px;
  padding: 10px 0px;
  overflow: hidden;
}

.box-project-content {
  height: 185px;
  overflow: scroll;
}

/* Hover problems */
@media (min-width: 500px) {
  .text-link:hover {
    color: #333333;
  }
  ul > li > a:after {
    opacity: 0;
  }
  ul > li > a:hover {
    text-decoration: none;
    opacity: 1;
    color: #fff;
  }
  /*
  ul> li:hover:after {
      content: '';
      border-bottom: 1px solid #FFCC00;
      width: 25px;
      position: absolute;
      bottom: 0;
      left: 0;
      opacity: 1;
  }
  */
  ul > li:hover {
    color: #fff;
  }
  #sub-menu > li > a:hover {
    color: #f7f7f7;
    text-decoration: none;
  }
  #sub-menu > li:hover:after {
    content: "";
    border-bottom: 1px solid #FFCC00;
    width: 25px;
    position: absolute;
    bottom: 0;
    left: 0;
  }
  .js-project-link:hover {
    color: #999 !important;
  }
}
/* Media MAX Width */
@media (max-width: 576px) {
  .container-content {
    min-height: 200px;
    justify-content: center;
  }
  .space-col-mobile {
    padding: 0px 5px; /* Always padding between photos on mobile */
  }
  .top-margin-mobile {
    margin-top: 5px;
  }
  .map {
    width: 100%;
  }
  .container-back {
    /*
    max-height:200px !important;
    max-width:200px !important;
    */
  }
  /*
  .container-photo {
      max-height:200px !important;
      max-width:200px !important;
  }
  */
  /*
  .container-169{
      max-height:200px !important;
      max-width:200px !important;
  }
  */
  .logo-loading {
    position: relative;
    width: 100%;
    text-align: center;
    padding-top: 70px;
    height: 100%;
  }
  .box-project-content {
    height: auto;
    overflow: inherit;
  }
  .col-contact-3 {
    /*
    display:inline-table;
    width:100%;
    background:#333;
    */
    padding: 0px;
    margin: 5px 0px;
  }
  .col-studio-3 {
    padding: 0px;
    margin: 0px;
  }
}
@media (max-width: 767px) {
  .space-col-mobile {
    padding: 0px 5px; /* Always padding between photos on mobile */
  }
  .space-col-mobile-left {
    padding: 0px 5px 0px 0px !important;
  }
  .space-col-mobile-right {
    padding: 0px 0px 0px 5px !important;
  }
  .newstext {
    font-size: 15px;
  }
  .newstext-small {
    font-size: 11px;
  }
  .cell-square {
    width: calc(50% - 3px);
    height: 0;
    padding-top: 49.2%; /* 26.3%; */
  }
  .cell-square:nth-child(odd) {
    margin-right: 3px;
  }
  .cell-square:nth-child(even) {
    margin-left: 3px;
  }
  .padding-left-mobile {
    padding-left: 35px !important;
  }
  .gridcol {
    margin: 0px 0px !important;
  }
  .hover-logo {
    width: 90px;
  }
  .container-sub {
    /* margin:10px 0px 10px 0px; */
  }
  .container-title {
    top: 25px;
    font-size: 13px;
  }
  .col-contact-1 {
    width: 100%;
    height: 140px;
    display: inline-block;
    margin: 5px 0px;
  }
  .col-contact-2 {
    display: inline-table;
    width: 100%;
    background: #333;
    margin: 5px 0px;
  }
  .col-contact-3 {
    /*
    display:inline-table;
    width:100%;
    background:#333;
    */
    /*
    padding:0px;
    margin:0px;
    */
  }
  .col-studio-1 {
    width: 100%;
    height: 140px;
    display: inline-block;
    margin: 0px;
  }
  .col-studio-2 {
    display: inline-table;
    width: 100%;
    background: #333;
    margin: 5px 0px 0px 0px;
  }
  .col-studio-3 {
    /*
    display:inline-table;
    width:100%;
    background:#333;
    */
    /*
    padding:0px;
    margin:0px;
    */
  }
  .contact-row-large {
    /* height:auto; */
  }
  .contact-row-small {
    /* height:200px; */
  }
  .contact-photo-large {
    max-height: 200px;
  }
  .contact-photo-small {
    /* max-height:140px; */
  }
  .contact-box-mobile-topmargin {
    margin-top: 10px;
  }
  .photo-poster:nth-child(1n) { /* margin på alla udda */
    margin: 0px 5px 0px 0px !important;
    /* border:1px solid #ff00ff; */
  }
  .left-margin-screen {
    margin-left: 0px;
  }
  .no-margin-mobile {
    margin: 0px !important;
  }
  .margin-top-mobile {
    margin-top: 5px; /*10*/
  }
  .cell-poster {
    display: block;
    width: 48.75% !important;
    padding-top: 69.5% !important; /* 69% */
    max-height: 600px !important;
    overflow-y: hidden !important;
    margin-bottom: 6px !important;
  }
  .poster-sep {
    margin-top: 0px !important;
  }
}
/*
@media (max-width: 1024px) {

  .cell-poster{
      display:block;
      width:24.4%;
      padding-top: 30.5%;
      max-height: 220px !important;
      overflow-y:hidden !important;
      margin-bottom:6px;
      border:1px solid #00f7f7f7f;
  }
}
*/
@media (min-width: 768px) {
  .newstext {
    color: #f7f7f7;
    text-decoration: none;
    font-size: 13px;
    padding: 5px 0px;
  }
  .cell-poster {
    display: block;
    width: 24.4%;
    padding-top: 34.6%; /* 34.6%;  */
    max-height: 230px !important; /* 330px */
    overflow-y: hidden !important;
    margin-bottom: 6px;
  }
}
@media (min-width: 1000px) {
  .cell-poster {
    display: block;
    width: 24.4%;
    padding-top: 34.8%; /* 380px? */
    max-height: 378px;
    overflow-y: hidden;
    margin-bottom: 6px;
  }
}

/*# sourceMappingURL=main.css.map */
