
/*SITE WIDE*/
*, *:before, *:after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  outline: none;
}
body {
  font-family: sans-serif;
  font-size: 0.75em;
  line-height: 1.3;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: black;
  overflow: visible;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
  opacity: 1;
  transition: 0.3s;
}
a:hover {
  color: black;
  opacity: 0.4;
  transition: 0.1s;
}
/*HEADER*/
header {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: auto;
}
.header {
  padding-top: 20px;
  padding-left: 0px;
  padding-right: 0px;
  padding-bottom: 18px;
}
.headerbutton {
  padding-top: 20px;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 18px;
}
.info {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: auto;
}
.info div{
  padding-top: 20px;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid;
  border-color: rgba(220, 220, 220, 1);
}
button {
  border:none;
}
.descbutton {
  display: none;
}
#mobhide{
  display: none;
  grid-column: 1 / -1;
}
#deskhide{
  display: block;
  grid-column: 1 / -1;
}
.tail {
  display: none;
  position: absolute;
  box-sizing: border-box;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 99;
  color: white;
	mix-blend-mode: difference;
  filter: grayscale(1);
  cursor: url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7), none !important;
}
/*TICKER*/
@keyframes ticker {
  0% { transform: translate3d(25%, 0, 0); }
  100% { transform: translate3d(-25%, 0, 0); }
}
.tickercontainer{
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 50vw;
}
.tickercontainer .ticker{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.row{
  width: 90vw;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-around;
  overflow: hidden;
  transform: translate3d(25%, 0, 0);
  white-space: nowrap;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-name: ticker;
  animation-duration: 16s;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}
/*FOOTER*/
footer {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: auto;
}
footer div {
  min-height:500px;
  padding: 20px;
}
/*CASE*/
.sticky {
  position: sticky;
  position: -webkit-sticky;
  top: 0em;
  background-color: white;
  z-index: 999999999999999;
  user-select: none;
}
.project-wrapper {
  top:0px;
  width: 100%;
  height: 100%;
  margin: auto;
}
.desc {
  width:68%;
}
.case-bar {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: auto;
}
.case-info {
  padding-top: 20px;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 18px !important;
}
.case-bar {
}
/*GRID*/
.leftline1, .leftline2 {
  border-left: 1px solid;
  border-color: rgba(220, 220, 220, 1);
}
.bottomline {
  border-bottom: 1px solid;
  border-color: rgba(220, 220, 220, 1);
}
.title {
  font-size: 1.5em;
  padding-top: 16px;
  padding-bottom: 15px;
}
.big, .medium, .small, .contact, .top{
  display: inline-block;
}
.big a, .medium a, .small a, .contact a, .top a{
  display: inline-block;
  clear: left;
  float: left;
}
.big p, .medium p, .small p, .contact p, .top p{
  display: inline-block;
}
.big, .medium {
  grid-column: span 2;
}
.small, .contact, .top {
  grid-column: span 1;
}
.number {
  display: inline-block;
  grid-column: span 1;
}
/*IMAGE SLIDER*/
.album-container {
  width: 100%;
  align-items: center;
  justify-content: center;
}
.swiper-container {
  width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
}
.swiper-wrapper {
  margin-left: auto;
  margin-right: auto;
  border-bottom: 1px solid;
  border-color: rgba(220, 220, 220, 1);
  background-color: black;

  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  backface-visibility: hidden;

  -webkit-perspective: 1000;
  -moz-perspective: 1000;
  -ms-perspective: 1000;
  perspective: 1000;

  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.swiper-slide {
  text-align: center;
/* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.presentation {
  background-size: contain;
  webkit-background-size: contain;
  -moz-background-size: contain;
  -o-background-size: contain;
  background-position: center;
  width: 100%;
  height: 50vw;
  background-repeat: repeat;
  background-color: black;
  text-align: center;
}
.videoBlock {
  width: 100%;
  height: 50vw;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  z-index: 1;
}
video {
  margin: 0;
  padding: 0;
  position: relative;
  display: inline-block;
  min-width: 100%;
  min-height: 100%;
}
.swiper-pagination-bullet {
  color: rgba(0, 0, 0, 0.4);
}
.swiper-pagination-bullet-active {
  color: rgba(0, 0, 0, 1);
}
.studioprofile:before {
  content: "Studio Profile";
  display: block;
}
.studioprofile, .studioprofile:before  {
  padding-bottom: 1em;
}
.contact:before {
  content: "Contact";
  display: block;
}
.contact, .contact:before {
  padding-bottom: 1em;
}
.contact{
  width:100%;
}
.adress:before {
  content: "Postpost studio";
  display: block;
}
.adress {
  padding-bottom: 1em;
  width:100%;
}
.emails  {
  display: block;
  width:100%;
  padding-bottom: 1em;
}
.emails p {
  display: block;
}

/* Responsive */
@media only screen and (min-device-width : 10px) and (max-device-width : 1200px) {
  footer {
    min-height:0;
    padding-bottom: 60px;
  }
  a {
    color: inherit;
    text-decoration: none;
    opacity: 1;
    transition: none;
  }
  a:hover {
    color: black;
    opacity: 1;
    transition: none;
  }
  .sticky {
    position: relative;
    top: 0em;
  }
  .tail {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
  }
}
@media only screen and (min-width : 10px) and (max-width : 600px) {
  header, footer, .case-bar {
    grid-template-columns: 1fr 1fr;
  }
  .row{
    width: 250vw;
  }
  .big, header .small  {
    grid-column: span 1;
  }
  .info {
      display: grid;
      grid-template-columns: 1fr 1fr;
      grid-template-rows: auto;
  }
  .info .medium {
    grid-column: span 2;
  }
  .case-bar .small, .case-bar .medium {
    grid-column: span 1;
  }
  .case-bar .number, .contact, .top  {
    grid-column: span 2;
  }
  footer div{
    min-height:0;
    padding-bottom: 60px;
  }
  .desc {
    width:100%;
  }
  .leftline1 {
    border-left: 1px solid;
    border-color: rgba(220, 220, 220, 1);
  }
  .leftline2 {
    border-left: none;
  }
  .topline {
    border-top: 1px solid;
    border-color: rgba(220, 220, 220, 1);
  }
  .sticky {
    position: relative;
    top: 0em;
  }
  .descbutton {
    display: block;
    grid-column: 1 / -1;
    background-color: inherit;
    border-bottom: 1px solid;
    border-color: rgba(220, 220, 220, 1);
    font-family: sans-serif;
    font-size: 1em;
    line-height: 1.3;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: black;
    text-align: left;
    overflow: visible;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    -webkit-user-select: none;  /* Chrome 49+ */
    -moz-user-select: none;     /* Firefox 43+ */
    -ms-user-select: none;      /* No support yet */
    user-select: none;          /* Likely future */
  }
  #mobhide{
    display: none;
    grid-column: 1 / -1;
  }
  #deskhide{
    display: none;
    grid-column: 1 / -1;
  }
  .presentation {
    background-size: contain;
    background-position: center;
    width: 100%;
    height: 75vw;
  }
  .videoBlock {
    width: 100%;
    height: 75vw;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    z-index: 1;
  }
}
@media only screen and (min-width : 601px) and (max-width : 800px) {
  header, footer, .case-bar {
    grid-template-columns: 1fr 1fr;
  }
  .big, header .small  {
    grid-column: span 1;
  }
  .row{
    width: 200vw;
  }
  .info {
      display: grid;
      grid-template-columns: 1fr 1fr;
      grid-template-rows: auto;
  }
  .info .medium {
    grid-column: span 2;
  }
  .case-bar .small, .case-bar .medium {
    grid-column: span 1;
  }
  .case-bar .number, .contact, .top  {
    grid-column: span 2;
  }
  footer div{
    min-height:0;
    padding-bottom: 60px;
  }
  .desc {
    width:100%;
  }
  .leftline1 {
    border-left: 1px solid;
    border-color: rgba(220, 220, 220, 1);
  }
  .leftline2 {
    border-left: none;
  }
  .topline {
    border-top: 1px solid;
    border-color: rgba(220, 220, 220, 1);
  }
  .sticky {
    position: relative;
    top: 0em;
  }
  .descbutton {
    display: block;
    grid-column: 1 / -1;
    background-color: inherit;
    border-bottom: 1px solid;
    border-color: rgba(220, 220, 220, 1);
    font-family: sans-serif;
    font-size: 1em;
    line-height: 1.3;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: black;
    text-align: left;
    overflow: visible;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    -webkit-user-select: none;  /* Chrome 49+ */
    -moz-user-select: none;     /* Firefox 43+ */
    -ms-user-select: none;      /* No support yet */
    user-select: none;          /* Likely future */
  }
  #mobhide {
    display: none;
    grid-column: 1 / -1;
  }
  #deskhide {
    display: none;
    grid-column: 1 / -1;
  }
}
@media only screen and (min-device-width : 10px) and (max-device-width : 600px) {
  .row {
    width: 250vw;
  }
  .topline {
    border-top: 1px solid;
    border-color: rgba(220, 220, 220, 1);
  }
    padding-bottom: 60px;
}
/*Reset information when resizing to desktop-format*/

@media only screen and (min-width : 601px) and (max-width : 1200px) {
  .desc {
    width:100%;
  }
  .row{
    width: 150vw;
  }
  footer div{
    min-height:0;
    padding-bottom: 100px;
  }
}
