/**************/
/* Typography */
/**************/
/*******************/
/* COLOR VARIABLES */
/*******************/
/*****************/
/* DISPLAY WIDTH */
/*****************/
/*****************/
/* base settings */
/*****************/
* {
  padding: 0;
  margin: 0;
  list-style: none;
  box-sizing: border-box;
}

li.list {
  list-style: disc;
}

/**************/
/* Typography */
/**************/
/*******************/
/* COLOR VARIABLES */
/*******************/
/*****************/
/* DISPLAY WIDTH */
/*****************/
@font-face {
  font-family: "Avenir Next Light";
  src: url("../font/AvenirNextLTPro-Light.ttf");
}
@font-face {
  font-family: "Avenir Next Medium";
  src: url("../font/AvenirNext-Medium-06.ttf");
}
@font-face {
  font-family: "Avenir Next Demi Bold";
  src: url("../font/AvenirNext-DemiBold-03.ttf");
}
html {
  font-size: 62.5%;
}

.body {
  font-family: "Avenir Next Medium";
}
@media only screen and (max-width: 600px) {
  .body {
    font-size: 1.6rem;
    line-height: 2.6rem;
  }
}
@media only screen and (min-width: 601px) {
  .body {
    font-size: 1.8rem;
    line-height: 2.99rem;
  }
}

p {
  margin-top: 2.6rem;
  margin-bottom: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

br.space {
  margin-bottom: 2.6rem;
}

ul,
ol {
  margin-top: 2.6rem;
  margin-bottom: 2.6rem;
}
ul ul,
ul ol,
ol ul,
ol ol {
  margin-top: 0;
  margin-bottom: 0;
}

h1,
h2,
h3,
h4 {
  font-family: "Avenir Next Demi Bold";
  margin-top: 3.9rem;
}

h1 {
  font-size: 4rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 2rem;
}

.button__container--menu {
  font-family: "Avenir Next Demi Bold";
  font-size: 2rem;
}

.button__container--impressum {
  font-family: "Avenir Next Light";
  font-size: 2rem;
}

/**************/
/* Typography */
/**************/
/*******************/
/* COLOR VARIABLES */
/*******************/
/*****************/
/* DISPLAY WIDTH */
/*****************/
.body {
  width: 100%;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  overflow: auto;
}

.home-container {
  position: relative;
  display: grid;
  width: 100%;
  height: 100%;
  min-height: 65rem;
}

.grid-area__left {
  position: absolute;
  display: grid;
  width: 100%;
  height: 100%;
}

.grid-area__right {
  position: absolute;
  display: grid;
  width: 100%;
  height: 100%;
}

@media only screen and (max-width: 1222px) {
  .home-container {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(2, 1fr);
    grid-template-areas: "left" "right";
  }

  .grid-area__left {
    grid-template-columns: 1fr;
    grid-template-rows: 100%;
    grid-template-areas: "hd";
  }

  .grid-area__right {
    grid-template-columns: 1fr;
    grid-template-rows: 40% 40% 20%;
    grid-template-areas: "lg" "mn" "id";
  }

  .s-hide {
    display: none;
  }
}
@media only screen and (min-width: 1223px) {
  .home-container {
    grid-template-columns: 3fr minmax(380px, 1fr);
    grid-template-rows: 1fr;
    grid-template-areas: "left right";
  }

  .grid-area__left {
    grid-template-columns: 1fr 1fr minmax(380px, 1fr);
    grid-template-rows: 12% 76% 12%;
    grid-template-areas: "c1 c2 hd" "c1 c2 hd" "c1 c2 hd";
  }

  .grid-area__right {
    grid-template-columns: 1fr;
    grid-template-rows: 12% 19% 19% 19% 19% 12%;
    grid-template-areas: "er1" "lg" "mn" "er2" "er2" "id";
  }
}
.grid-area__left {
  grid-area: left;
}

.grid-area__right {
  grid-area: right;
}

.grid-area__left-col-1 {
  grid-area: c1;
}

.grid-area__left-col-2 {
  grid-area: c2;
}

.grid-area__left-heading {
  grid-area: hd;
  position: relative;
}

.grid-area__logo {
  grid-area: lg;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
}

.grid-area__menu {
  grid-area: mn;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
}

.grid-area__right-empty-1 {
  grid-area: er1;
}

.grid-area__right-empty-2 {
  grid-area: er2;
}

.grid-area__right-empty-3 {
  grid-area: er3;
}

.grid-area__impressum {
  grid-area: id;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
}

/**************/
/* Typography */
/**************/
/*******************/
/* COLOR VARIABLES */
/*******************/
/*****************/
/* DISPLAY WIDTH */
/*****************/
@font-face {
  font-family: "Avenir Next Light";
  src: url("../font/AvenirNextLTPro-Light.ttf");
}
@font-face {
  font-family: "Avenir Next Medium";
  src: url("../font/AvenirNext-Medium-06.ttf");
}
@font-face {
  font-family: "Avenir Next Demi Bold";
  src: url("../font/AvenirNext-DemiBold-03.ttf");
}
.button {
  display: block;
  cursor: pointer;
}

/**********************/
/* modal close button */
/**********************/
.button__close {
  position: absolute;
  right: 0px;
  top: 0px;
  width: 50px;
  height: 50px;
  opacity: 1;
  z-index: 1;
}
.button__close:hover {
  opacity: 1;
}

.button__close:before, .button__close:after {
  content: " ";
  position: absolute;
  top: 0.6rem;
  right: 3.2rem;
  height: 4rem;
  width: 0.6rem;
  background-color: rgb(25, 32, 38);
}
@media only screen and (max-width: 767px) {
  .button__close:before, .button__close:after {
    right: 2.2rem;
  }
}

.button__close:before {
  transform: rotate(45deg);
}

.button__close:after {
  transform: rotate(-45deg);
}

/***********************/
/* contact-form button */
/***********************/
.button__contact {
  width: 100%;
  padding: 1rem;
  margin-top: 0.5rem;
  text-align: center;
  color: rgb(25, 32, 38);
  background-color: rgb(246, 159, 25);
  border: 3px solid rgb(25, 32, 38);
  box-sizing: border-box;
  font-family: "Avenir Next Demi Bold";
  font-size: 1.6rem;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  position: relative;
}

.button__contact:after {
  position: absolute;
  background-color: rgb(25, 32, 38);
  content: "";
  display: block;
  height: 4.2rem;
  width: 100%;
  left: 0;
  top: 3px;
  transform: translate(8px, 8px);
  transition: transform 0.2s ease-out;
  z-index: 0;
}

.button__contact:hover:after {
  transform: translate(0, 0);
}

.button__contact:active {
  background-color: #ffdeda;
  outline: 0;
}

.button__contact:hover {
  outline: 0;
  color: rgb(246, 159, 25);
  background-color: rgb(25, 32, 38);
}

/**************/
/* Typography */
/**************/
/*******************/
/* COLOR VARIABLES */
/*******************/
/*****************/
/* DISPLAY WIDTH */
/*****************/
@font-face {
  font-family: "Avenir Next Light";
  src: url("../font/AvenirNextLTPro-Light.ttf");
}
@font-face {
  font-family: "Avenir Next Medium";
  src: url("../font/AvenirNext-Medium-06.ttf");
}
@font-face {
  font-family: "Avenir Next Demi Bold";
  src: url("../font/AvenirNext-DemiBold-03.ttf");
}
.contact-form {
  width: 100%;
}
.contact-form .contact-form__input {
  width: 100%;
  padding: 1rem;
  margin-bottom: 0.5rem;
  margin-top: 0.5rem;
  color: #ffffff;
  background-color: rgb(25, 32, 38);
  resize: none;
  font-family: "Avenir Next Demi Bold";
  font-size: 1.6rem;
}
.contact-form textarea.contact-form__input {
  margin-bottom: 0 !important;
}
.contact-form .contact-form__button {
  width: 100%;
  padding: 1rem;
  margin-top: 1rem;
  color: #ffffff;
  background-color: rgb(25, 32, 38);
}
.contact-form .contact-form__button:hover {
  color: rgb(25, 32, 38);
  background-color: rgb(246, 159, 25);
}

.hide {
  display: none;
}

.error {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 13px;
  line-height: normal;
  color: #920000;
}

/**************/
/* Typography */
/**************/
/*******************/
/* COLOR VARIABLES */
/*******************/
/*****************/
/* DISPLAY WIDTH */
/*****************/
#toggle-info-modal,
#toggle-studio-modal,
#toggle-references-modal,
#toggle-contact-modal,
#toggle-impressum-modal {
  display: none;
}

.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0;
}

.modal__container {
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgb(246, 159, 25);
  overflow: auto;
}
@media only screen and (max-width: 767px) {
  .modal__container .modal__heading, .modal__container .modal__content {
    width: 100%;
  }
}
@media only screen and (min-width: 768px) {
  .modal__container .modal__heading, .modal__container .modal__content {
    max-width: 670px;
  }
}
.modal__container .modal__heading {
  height: 10rem;
  margin-left: auto;
  margin-right: auto;
  padding: 4rem 4rem 0rem 4rem;
  color: rgb(25, 32, 38);
  background: rgb(246, 159, 25);
}
.modal__container .modal__heading h1::selection {
  color: rgb(246, 159, 25);
  background: rgb(25, 32, 38);
}
.modal__container .modal__heading h1::-moz-selection {
  color: rgb(246, 159, 25);
  background: rgb(25, 32, 38);
}
.modal__container .modal__content {
  margin-left: auto;
  margin-right: auto;
  padding: 4rem 4rem 4rem 4rem;
  color: rgb(25, 32, 38);
  background: rgb(246, 159, 25);
}
.modal__container .modal__content h2::selection, .modal__container .modal__content h3::selection, .modal__container .modal__content h4::selection, .modal__container .modal__content p::selection, .modal__container .modal__content a::selection, .modal__container .modal__content li::selection, .modal__container .modal__content b::selection, .modal__container .modal__content strong::selection, .modal__container .modal__content span::selection, .modal__container .modal__content div::selection {
  color: rgb(246, 159, 25);
  background: rgb(25, 32, 38);
}
.modal__container .modal__content h2::-moz-selection, .modal__container .modal__content h3::-moz-selection, .modal__container .modal__content h4::-moz-selection, .modal__container .modal__content p::-moz-selection, .modal__container .modal__content a::-moz-selection, .modal__container .modal__content li::-moz-selection, .modal__container .modal__content b::-moz-selection, .modal__container .modal__content strong::-moz-selection, .modal__container .modal__content span::-moz-selection, .modal__container .modal__content div::-moz-selection {
  color: rgb(246, 159, 25);
  background: rgb(25, 32, 38);
}

/**************/
/* Typography */
/**************/
/*******************/
/* COLOR VARIABLES */
/*******************/
/*****************/
/* DISPLAY WIDTH */
/*****************/
input:checked[id=toggle-info-modal] ~ .modal--info {
  pointer-events: auto;
  opacity: 1;
  -webkit-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
}

.modal__content--info p {
  text-align: justify;
}
.modal__content--info img.welcome-picture {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/**************/
/* Typography */
/**************/
/*******************/
/* COLOR VARIABLES */
/*******************/
/*****************/
/* DISPLAY WIDTH */
/*****************/
input:checked[id=toggle-studio-modal] ~ .modal--studio {
  pointer-events: auto;
  opacity: 1;
  -webkit-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
}

.modal__content--studio .section__studio-gear {
  display: grid;
  grid-template-columns: 12rem auto;
  margin-top: 2.6rem;
  border-top: 2px solid rgb(25, 32, 38);
}
.modal__content--studio .section__studio-gear .section__studio-gear--title {
  font-family: "Avenir Next Medium";
  font-size: 1.8rem;
}
.modal__content--studio .section__studio-gear .section__studio-gear--list {
  font-family: "Avenir Next Medium";
  font-size: 1.8rem;
}

/**************/
/* Typography */
/**************/
/*******************/
/* COLOR VARIABLES */
/*******************/
/*****************/
/* DISPLAY WIDTH */
/*****************/
input:checked[id=toggle-references-modal] ~ .modal--references {
  pointer-events: auto;
  opacity: 1;
  -webkit-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
}

.modal__content--references .section__references {
  display: grid;
  grid-template-columns: 1fr;
}
.modal__content--references .section__references .section__references--title {
  font-family: "Avenir Next Medium";
  font-size: 1.8rem;
  border-bottom: 2px solid rgb(25, 32, 38);
  margin-bottom: 1rem;
}
.modal__content--references .section__references .section__references--title h2 {
  margin-top: 2.6rem;
}
.modal__content--references .section__references .section__references--list {
  font-family: "Avenir Next Medium";
  font-size: 1.8rem;
}
.modal__content--references .section__references .section__references--list .iframe__spotify {
  width: 100%;
  max-height: 152px;
}
@media only screen and (max-width: 767px) {
  .modal__content--references .section__references .section__references--list .album {
    margin-bottom: 1.5rem;
  }
  .modal__content--references .section__references .section__references--list .album:last-of-type {
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 768px) {
  .modal__content--references .section__references .section__references--list .album:nth-child(2n+1) {
    text-align: right;
  }
}
.modal__content--references .section__references .section__references--list .album .button__track:hover {
  color: rgb(246, 159, 25);
  background-color: rgb(25, 32, 38);
}
.modal__content--references .section__references .section__references--list .album .button__track:active {
  color: rgb(246, 159, 25);
  background-color: rgb(25, 32, 38);
}
.modal__content--references .section__references .section__references--list .album .button__track .button__track--play {
  display: inline;
  height: 10px;
}
.modal__content--references .section__references .section__references--list .album .button__track .icon__play {
  display: none;
  height: 10px;
}
.modal__content--references .section__references .section__references--list .album .button__track .icon__play .icon__play--active {
  display: inline !important;
}
.modal__content--references .section__references .section__references--list .film-list-item {
  margin-top: 1rem;
}
.modal__content--references .section__references .section__references--list .film-list-item:last-of-type {
  margin-bottom: 4rem;
}
.modal__content--references .section__references .section__references--list .film-list-item ul {
  margin-left: 3rem;
}
.modal__content--references .section__references .extra-padding {
  padding-top: 8px;
}

/**************/
/* Typography */
/**************/
/*******************/
/* COLOR VARIABLES */
/*******************/
/*****************/
/* DISPLAY WIDTH */
/*****************/
input:checked[id=toggle-contact-modal] ~ .modal--contact {
  pointer-events: auto;
  opacity: 1;
  -webkit-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
}

.modal__content--contact .modal__content--contact-text {
  margin-bottom: 1rem;
}

/**************/
/* Typography */
/**************/
/*******************/
/* COLOR VARIABLES */
/*******************/
/*****************/
/* DISPLAY WIDTH */
/*****************/
input:checked[id=toggle-impressum-modal] ~ .modal--impressum {
  pointer-events: auto;
  opacity: 1;
  -webkit-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
}

ul.index li {
  list-style: disc;
}
ul.index .index-link {
  display: block;
  color: rgb(25, 32, 38);
}
ul.index .index-link:hover {
  color: rgb(246, 159, 25);
  background-color: rgb(25, 32, 38);
}

/**************/
/* Typography */
/**************/
/*******************/
/* COLOR VARIABLES */
/*******************/
/*****************/
/* DISPLAY WIDTH */
/*****************/
.popup-dialog {
  position: fixed;
  width: 90%;
  max-width: 64rem;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  font-size: 2rem;
  color: #ffffff;
  background: rgb(246, 159, 25);
  pointer-events: none;
  opacity: 0;
}

@keyframes fade-out {
  from {
    opacity: 0.8;
  }
  to {
    opacity: 0;
  }
}
/**************/
/* Typography */
/**************/
/*******************/
/* COLOR VARIABLES */
/*******************/
/*****************/
/* DISPLAY WIDTH */
/*****************/
.svg__color--white {
  fill: #ffffff;
}

.svg__color--accent {
  fill: rgb(246, 159, 25);
}

.svg__color--none {
  fill: none;
}

/**************/
/* Typography */
/**************/
/*******************/
/* COLOR VARIABLES */
/*******************/
/*****************/
/* DISPLAY WIDTH */
/*****************/
/**********/
/* colors */
/**********/
.light {
  background-color: rgb(56, 60, 65);
  color: #ffffff;
}

.dark {
  background-color: rgb(25, 32, 38);
  color: #ffffff;
}

/**************/
/* Typography */
/**************/
/*******************/
/* COLOR VARIABLES */
/*******************/
/*****************/
/* DISPLAY WIDTH */
/*****************/
.grid-area__left {
  background-image: url("../img/studio.png");
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
}

.h2-container {
  position: absolute;
  bottom: 12rem;
  width: 30rem;
  justify-self: center;
  align-self: center;
}
@media only screen and (max-width: 1222px) {
  .h2-container {
    left: 3rem;
    bottom: 3rem;
  }
}
@media only screen and (min-width: 1223px) {
  .h2-container {
    left: 50%;
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}
@media only screen and (max-width: 1222px) {
  .h2-container .heading {
    text-align: left;
  }
  .h2-container .heading h2 {
    font-size: 2rem !important;
  }
}
@media only screen and (min-width: 1223px) {
  .h2-container .heading {
    text-align: right;
  }
}
.h2-container .heading h2 {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.2rem 0.5rem 0.2rem 0.5rem;
  color: rgb(25, 32, 38);
  background-color: rgba(255, 255, 255, 0.7);
}

.logo__container {
  width: 30rem;
  justify-self: center;
  align-self: center;
}

.button__container--menu {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 30rem;
  justify-self: center;
  align-self: center;
}

@media only screen and (max-width: 1222px) {
  .button__container--menu {
    height: 100%;
    align-items: center;
  }
}
@media only screen and (min-width: 1223px) {
  .button__container--menu {
    height: 100px;
  }
}
.button__container--impressum {
  width: 30rem;
  justify-self: center;
  align-self: center;
  text-align: center;
}
.button__container--impressum .button--impressum {
  display: block;
  color: #ffffff;
  text-decoration: none;
}

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