* {
  margin: 0px;
  padding: 0px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  width: 100%;
  height: 100%;
  scroll-behavior: smooth;
  font-size: 14px;
}

body {
  background-color: #e3e3e3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  font-family: 'Roboto', sans-serif;
}

h1 {
  font-style: normal;
  font-weight: 300;
  font-size: 2.5rem;
  font-family: 'Roboto Mono', monospace;
}

h4 {
  font-style: normal;
  font-weight: 300;
  font-size: 1.4rem;
  font-family: 'Roboto Mono', monospace;
}

p {
  font-size: 1.2rem;
  line-height: 1.4rem;
}

p a {
  font-size: 1.2rem;
}

/*===========header============*/
header {
  position: fixed;
  width: 100%;
  background: #e3e3e3;
  min-height: 5.5rem;
  overflow: hidden;
  z-index: 100;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  float: left;
  height: 4.7rem;
  padding: 1.2rem 1rem 1rem 1.5rem;
}

svg {
  width: auto;
  height: 100%;
}

.lobster {
  height: 100%;
  width: auto;
  fill: #000000;
}

.navi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  max-height: 0;
  -webkit-transition: max-height .5s linear;
  transition: max-height .5s linear;
}

.menue {
  width: 100%;
  padding: 3rem 0rem 3rem 0rem;
  text-align: center;
}

ul {
  list-style-type: none;
}

a {
  color: #000000;
  text-decoration: none;
  font-size: 1.4rem;
}

/*===================mobile==================*/
.burger-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: auto;
  float: right;
  cursor: pointer;
  padding: 2rem 1.5rem 0.5rem 1rem;
}

.bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 3px 0px;
  height: 2px;
  width: 30px;
  background-color: #000000;
}

.burger-btn {
  display: none;
}

.burger-btn:checked ~ .navi {
  max-height: 100vh;
}

/*==================Desktop=================*/
@media (min-width: 801px) {
  p {
    font-size: 1rem;
    line-height: 1.2rem;
  }
  p a {
    font-size: 1rem;
  }
  a:hover {
    color: #FB5B5B;
  }
  svg:hover {
    fill: #FB5B5B;
  }
  .burger-icon {
    display: none;
  }
  .navi {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    float: right;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    max-height: auto;
    width: auto;
    padding: 0.5rem 1.5rem 0rem 1rem;
  }
  .menue {
    padding: 4.5rem 0rem 0rem 4rem;
  }
}

/*===========site============*/
.title {
  margin: 0rem 1rem 0rem 1rem;
  border-bottom: 1px solid #000000;
}

.title h4 {
  font-weight: 400;
  padding-left: 0.5rem;
  padding-bottom: 0.2rem;
}

.content {
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-top: 6rem;
}

.card {
  margin: 0rem 1rem 0rem 1rem;
  border-bottom: 1px solid #000000;
}

/*===========footer============*/
footer {
  margin-top: auto;
  padding: 2rem 0rem 2rem 0.5rem;
}

footer a {
  font-size: 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  float: left;
  padding: 0rem 0rem 0.5rem 1.2rem;
}

/*===========hello============*/
.banner {
  width: 100%;
  height: 101vh;
  z-index: -1;
}

.gif-container {
  padding: 6rem 0 0rem 0;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  overflow: hidden;
}

.gif-container img {
  height: 55%;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.hello {
  position: absolute;
  width: 100%;
  bottom: 0rem;
}

.card h1 {
  padding: .5rem;
}

/*===========Artists/Archive============*/
/*.btn{
    background-color: $con;
    border: none;
    
    position: fixed;
    bottom: 2rem;
    right: 2rem;

    border-radius: 50%;
    text-align: center;
    
}*/
/*.btn p{ 
    font-size: 1.2rem; 
    line-height: 1.5rem; 
    font-family: 'Roboto', 
    sans-serif; 
    color: $bg;
}*/
.card {
  margin: 0rem 1rem 0rem 1rem;
  border-bottom: 1px solid #000000;
}

.card-name {
  display: -ms-grid;
  display: grid;
  grid-gap: 1rem;
  -ms-grid-columns: auto auto;
      grid-template-columns: auto auto;
  width: 100%;
  padding: 0.5rem 0.5rem 0.5rem .5rem;
}

.card-name-nohover {
  display: -ms-grid;
  display: grid;
  grid-gap: 1rem;
  -ms-grid-columns: auto auto;
      grid-template-columns: auto auto;
  width: 100%;
  padding: 0.5rem 0.5rem 0.5rem .5rem;
}

.big-name {
  display: none;
}

img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 20%;
     object-position: 50% 20%;
  overflow: hidden;
}

iframe {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
  grid-area: iframe;
  width: 100%;
  height: 6rem;
}

.pic {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: pic;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.cover {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: pic;
  width: 100%;
  height: auto;
}

.links {
  padding-bottom: .5rem;
  height: 100%;
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  grid-area: links;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
  max-width: 30rem;
}

.links ul li a {
  font-size: 1.2em;
  line-height: 1.8rem;
}

.card-content {
  overflow: hidden;
  max-height: 0;
  display: -ms-grid;
  display: grid;
  padding: 0rem .5rem 0rem .5rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  grid-gap: 2rem;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  -ms-grid-rows: auto  auto auto;
      grid-template-rows: auto  auto auto;
      grid-template-areas: "pic" "iframe" "links";
}

.releas-card-content {
  overflow: hidden;
  max-height: 0;
  display: -ms-grid;
  display: grid;
  padding: 0rem .5rem 0rem .5rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  grid-gap: 2rem;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  -ms-grid-rows: auto  auto auto;
      grid-template-rows: auto  auto auto;
      grid-template-areas: "pic" "iframe" "links";
}

.active {
  max-height: 100rem;
  padding-top: 1rem;
  padding-bottom: 2rem;
}

.affiliated {
  padding-top: 2rem;
}

.affiliated .card p {
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.5rem;
  max-width: 800px;
  padding: 1rem .5rem 1rem .5rem;
}

@media (min-width: 801px) {
  .hello {
    position: static;
  }
  .gif-container {
    padding: 6rem 0 0 0;
    height: 80%;
    width: 100%;
  }
  .gif-container img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    height: 100%;
    width: 100%;
    max-width: 720px;
    max-height: 720px;
  }
  .card-name {
    display: -ms-grid;
    display: grid;
    grid-gap: 1rem;
    -ms-grid-columns: 1fr 4fr 2fr;
        grid-template-columns: 1fr 4fr 2fr;
    width: 100%;
    padding: 0.5rem 0.5rem 0.5rem .5rem;
  }
  .card-name-nohover {
    display: -ms-grid;
    display: grid;
    grid-gap: 1rem;
    -ms-grid-columns: 1fr 4fr 2fr;
        grid-template-columns: 1fr 4fr 2fr;
    width: 100%;
    padding: 0.5rem 0.5rem 0.5rem .5rem;
  }
  .big-name {
    display: block;
  }
  .card-name:hover {
    color: #FB5B5B;
    cursor: pointer;
  }
  .card-content {
    max-height: 0;
    max-width: 900px;
    display: -ms-grid;
    display: grid;
    grid-gap: 1rem;
    -ms-grid-columns: 1fr auto;
        grid-template-columns: 1fr auto;
    -ms-grid-rows: 1fr auto;
        grid-template-rows: 1fr auto;
        grid-template-areas: "pic links" "pic iframe";
    -webkit-transition: max-height .3s;
    transition: max-height .3s;
  }
  .linksl {
    max-width: 21rem;
  }
  .releas-card-content {
    max-height: 0;
    max-width: 1600px;
    display: -ms-grid;
    display: grid;
    grid-gap: 1rem;
    -ms-grid-columns: auto 1fr;
        grid-template-columns: auto 1fr;
    -ms-grid-rows: 1fr auto auto;
        grid-template-rows: 1fr auto auto;
        grid-template-areas: "pic space" "pic links" "pic iframe";
    -webkit-transition: max-height .3s;
    transition: max-height .3s;
  }
  .active {
    max-height: 35rem;
  }
  .pic {
    padding: 0;
  }
  iframe {
    max-width: 21rem;
    min-width: auto;
    height: 5.5rem;
  }
  img {
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    overflow: hidden;
  }
  .cover {
    padding: 0rem;
    width: 300px;
  }
}

/*===========Contact==============*/
/*===========Impressum============*/
.text {
  padding: 1rem .5rem 1rem .5rem;
}

/*===========coockieconsent============*/
.cc-window {
  opacity: 1;
  -webkit-transition: opacity 1s ease;
  transition: opacity 1s ease;
}

.cc-window.cc-invisible {
  opacity: 0;
}

.cc-animate.cc-revoke {
  -webkit-transition: transform 1s ease;
  -webkit-transition: -webkit-transform 1s ease;
  transition: -webkit-transform 1s ease;
  transition: transform 1s ease;
  transition: transform 1s ease, -webkit-transform 1s ease;
  transition: transform 1s ease,-webkit-transform 1s ease;
}

.cc-animate.cc-revoke.cc-top {
  -webkit-transform: translateY(-2em);
  transform: translateY(-2em);
}

.cc-animate.cc-revoke.cc-bottom {
  -webkit-transform: translateY(2em);
  transform: translateY(2em);
}

.cc-animate.cc-revoke.cc-active.cc-top {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.cc-animate.cc-revoke.cc-active.cc-bottom {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.cc-revoke:hover {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.cc-grower {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 1s;
  transition: max-height 1s;
}

.cc-revoke, .cc-window {
  position: fixed;
  overflow: hidden;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-family: Helvetica,Calibri,Arial,sans-serif;
  font-size: 16px;
  line-height: 1.5em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  z-index: 9999;
}

.cc-window.cc-static {
  position: static;
}

.cc-window.cc-floating {
  padding: 2em;
  max-width: 24em;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.cc-window.cc-banner {
  padding: 1em 1.8em;
  width: 100%;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}

.cc-revoke {
  padding: .5em;
}

.cc-revoke:hover {
  text-decoration: underline;
}

.cc-header {
  font-size: 18px;
  font-weight: 700;
}

.cc-btn, .cc-close, .cc-link, .cc-revoke {
  cursor: pointer;
}

.cc-link {
  opacity: .8;
  display: inline-block;
  padding: .2em;
  text-decoration: underline;
}

.cc-link:hover {
  opacity: 1;
}

.cc-link:active, .cc-link:visited {
  color: initial;
}

.cc-btn {
  display: block;
  padding: .4em .8em;
  font-size: .9em;
  font-weight: 700;
  border-width: 2px;
  border-style: solid;
  text-align: center;
  white-space: nowrap;
}

.cc-highlight .cc-btn:first-child {
  background-color: transparent;
  border-color: transparent;
}

.cc-highlight .cc-btn:first-child:focus, .cc-highlight .cc-btn:first-child:hover {
  background-color: transparent;
  text-decoration: underline;
}

.cc-close {
  display: block;
  position: absolute;
  top: .5em;
  right: .5em;
  font-size: 1.6em;
  opacity: .9;
  line-height: .75;
}

.cc-close:focus, .cc-close:hover {
  opacity: 1;
}

.cc-revoke.cc-top {
  top: 0;
  left: 3em;
  border-bottom-left-radius: .5em;
  border-bottom-right-radius: .5em;
}

.cc-revoke.cc-bottom {
  bottom: 0;
  left: 3em;
  border-top-left-radius: .5em;
  border-top-right-radius: .5em;
}

.cc-revoke.cc-left {
  left: 3em;
  right: unset;
}

.cc-revoke.cc-right {
  right: 3em;
  left: unset;
}

.cc-top {
  top: 1em;
}

.cc-left {
  left: 1em;
}

.cc-right {
  right: 1em;
}

.cc-bottom {
  bottom: 1em;
}

.cc-floating > .cc-link {
  margin-bottom: 1em;
}

.cc-floating .cc-message {
  display: block;
  margin-bottom: 1em;
}

.cc-window.cc-floating .cc-compliance {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
}

.cc-window.cc-banner {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.cc-banner.cc-top {
  left: 0;
  right: 0;
  top: 0;
}

.cc-banner.cc-bottom {
  left: 0;
  right: 0;
  bottom: 0;
}

.cc-banner .cc-message {
  display: block;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  max-width: 100%;
  margin-right: 1em;
}

.cc-compliance {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-line-pack: justify;
  align-content: space-between;
}

.cc-floating .cc-compliance > .cc-btn {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.cc-btn + .cc-btn {
  margin-left: .5em;
}

@media print {
  .cc-revoke, .cc-window {
    display: none;
  }
}

@media screen and (max-width: 900px) {
  .cc-btn {
    white-space: normal;
  }
}

@media screen and (max-width: 414px) and (orientation: portrait), screen and (max-width: 736px) and (orientation: landscape) {
  .cc-window.cc-top {
    top: 0;
  }
  .cc-window.cc-bottom {
    bottom: 0;
  }
  .cc-window.cc-banner, .cc-window.cc-floating, .cc-window.cc-left, .cc-window.cc-right {
    left: 0;
    right: 0;
  }
  .cc-window.cc-banner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .cc-window.cc-banner .cc-compliance {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
  }
  .cc-window.cc-floating {
    max-width: none;
  }
  .cc-window .cc-message {
    margin-bottom: 1em;
  }
  .cc-window.cc-banner {
    -webkit-box-align: unset;
    -ms-flex-align: unset;
    align-items: unset;
  }
  .cc-window.cc-banner .cc-message {
    margin-right: 0;
  }
}

.cc-floating.cc-theme-classic {
  padding: 1.2em;
  border-radius: 5px;
}

.cc-floating.cc-type-info.cc-theme-classic .cc-compliance {
  text-align: center;
  display: inline;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
}

.cc-theme-classic .cc-btn {
  border-radius: 5px;
}

.cc-theme-classic .cc-btn:last-child {
  min-width: 140px;
}

.cc-floating.cc-type-info.cc-theme-classic .cc-btn {
  display: inline-block;
}

.cc-theme-edgeless.cc-window {
  padding: 0;
}

.cc-floating.cc-theme-edgeless .cc-message {
  margin: 2em;
  margin-bottom: 1.5em;
}

.cc-banner.cc-theme-edgeless .cc-btn {
  margin: 0;
  padding: .8em 1.8em;
  height: 100%;
}

.cc-banner.cc-theme-edgeless .cc-message {
  margin-left: 1em;
}

.cc-floating.cc-theme-edgeless .cc-btn + .cc-btn {
  margin-left: 0;
}
/*# sourceMappingURL=style.css.map */