

/*
  1. Use a more-intuitive box-sizing model.
*/
*, *::before, *::after {
  box-sizing: border-box;
}
/*
  2. Remove default margin
*/
* {
  margin: 0;
  font-family: sans-serif;
  font-family: 'Poppins';
  font-weight: 300;
}
/*
  3. Allow percentage-based heights in the application
*/
html, body {
  height: 100%;
}
/*
  Typographic tweaks!
  4. Add accessible line-height
  5. Improve text rendering
*/
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
/*
  6. Improve media defaults
*/
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}
/*
  7. Remove built-in form typography styles
*/
input, button, textarea, select {
  font: inherit;
}
/*
  8. Avoid text overflows
*/
p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}
/*
  9. Create a root stacking context
*/
#root, #__next {
  isolation: isolate;
}

/* THX joshwcomeau */

ul {
  margin-block-start: 0;
  margin-block-end: 0;
  margin-inline-start: 0;
  margin-inline-end: 0;
  padding-inline-start: 0;
}

/* START */

body {
  background-color: #222;
  background-size: cover;
  height: auto;
  min-height: 100vh;
}

.wrapper {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: auto;
  margin: 0 auto;
  max-width: 1920px;
  min-height: 100vh;
}

.wrapper:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(
    128deg,
    hsl(267deg 100% 7%) 10%,
    hsl(333deg 100% 30%) 42%,
    hsl(45deg 59% 46%) 49%,
    hsl(174deg 100% 96%) 52%,
    hsl(202deg 100% 44%) 55%,
    hsl(225deg 71% 30%) 62%,
    hsl(236deg 70% 4%) 99%
  );
}

.wrapper > * {
  z-index: 20;
}

.main {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 4rem 2rem 2rem 2rem;
  height: auto;
  max-width: 1600px;
}

@media screen and (max-width: 768px) {
  .main {
    padding: 2rem;
  }
}

@media screen and (max-width: 480px) {
  .main {
    padding: 1rem;
  }
}

.panel {
  background: rgba(0,0,0,.87);
  -webkit-box-shadow: 0px 20px 39px 8px rgba(0,0,0,0.15);
  -moz-box-shadow: 0px 20px 39px 8px rgba(0,0,0,0.15);
  box-shadow: 0px 20px 39px 8px rgba(0,0,0,0.15);
  flex-basis: 100%;
}

.card {
  flex-basis: calc(50% - 1rem);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.panel .inner {
  padding: 2.5rem;
  max-width: 772px;
  margin: 0 auto;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.panel em {
  font-style: normal;
  font-weight: 400;
  display: inline-block;
  padding-bottom: .1rem;
  font-size: 1.4rem;
}

.panel .inner p:nth-last-of-type(2) {
  flex-grow: 1;
}

@media screen and (max-width: 990px) {
  .panel .inner {
    padding: 2rem 1.5rem 1.8rem 1.5rem;
  }
}

@media screen and (max-width: 760px) {
  .panel.card {
    flex-basis: 100%;
  }
}

@media screen and (max-width: 480px) {
  .panel .inner {
    padding: 1.5rem;
  }
}

h1 {
  padding-bottom: 0.6rem;
}

h1, h2, h3 {
  font-size: 2rem;
  margin-bottom: 1.2rem;
  line-height: 1.2;
}

h3 {
  font-size: 1.8rem;
}

* + h2,
* + h3 {
  margin-top: 2rem;
}

@media screen and (max-width: 768px) {
  h1, h2 {
    font-size: 1.8rem;
  }

  h3 {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 480px) {
  h1, h2 {
    font-size: 1.6rem;
  }

  h3 {
    font-size: 1.4rem;
  }
}

.panel ul {
  margin: 1.8rem 0;
}

.panel li {
  list-style-type: none;
}

.panel li + li {
  margin-top: .65rem;
}

.panel li:before {
  content: "– ";
}

p,
.panel a,
.panel li {
  font-size: 1.2rem;
  line-height: 1.4;
  letter-spacing: .2px;
}

.panel .li {
  line-height: 1.2;
}

.panel a {
  transition: color ease .2s;
}

.panel a:hover,
.footer-main li a:hover {
  color: hsl(68deg 100% 45%);
}

@media screen and (max-width: 480px) {
  p {
    font-size: 1.1rem;
  }
}

p + p {
  margin-top: .7rem;
}

.panel h1,
.panel h2,
.panel h3,
.panel p,
.panel a,
.panel li,
.footer-main li a {
  color: #fff;
}

a.btn {
  display: inline-block;
  color: #111;
  text-transform: uppercase;
  text-align: center;
  font-size: 1.3rem;
  text-decoration: none;
  padding: .4rem .9rem;
  margin-top: 1.5rem;
  font-weight: 600;
  letter-spacing: .68px;
  transition: none;

  background-image: linear-gradient(
    45deg,
    hsl(118deg 100% 43%) 0%,
    hsl(99deg 100% 44%) 11%,
    hsl(91deg 100% 44%) 22%,
    hsl(84deg 100% 45%) 33%,
    hsl(78deg 100% 45%) 44%,
    hsl(73deg 100% 45%) 56%,
    hsl(68deg 100% 45%) 67%,
    hsl(63deg 100% 46%) 78%,
    hsl(59deg 100% 47%) 89%,
    hsl(55deg 100% 50%) 100%
  );
}

a.btn:hover {
  padding: .4rem .98rem;
  color: hsl(78deg 100% 45%);

  background-image: linear-gradient(
    45deg,
    hsl(240deg 50% 23%) 0%,
    hsl(222deg 53% 22%) 11%,
    hsl(204deg 57% 22%) 22%,
    hsl(186deg 60% 22%) 33%,
    hsl(168deg 63% 21%) 44%,
    hsl(151deg 68% 21%) 56%,
    hsl(133deg 71% 21%) 67%,
    hsl(115deg 75% 20%) 78%,
    hsl(97deg 78% 20%) 89%,
    hsl(79deg 82% 20%) 100%
  );
}

@media screen and (max-width: 480px) {
  a.btn {
    font-size: 1.2rem;
    padding: .4rem .8rem;
    margin-top: 1rem;
  }
}

/* custom elements */

.content--text-center-image {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: auto;
  z-index: 15;
  filter: brightness(70%);
}

.content--text-center,
.card {
  text-align: center;
}

.content--repertoire ul {
  margin-bottom: 0;
}

.content--repertoire ul li:before {
  content: none;
}

.content--repertoire li.last {
  margin-top: 2rem;
}

.container--logo {
  width: 28rem;
  display: inline-block;
  margin: .5rem auto 2rem auto;
  position: relative;
  left: -0.9rem;
}

.container--logo svg {
  filter: drop-shadow(0px 0px 18px #000);
  width: 100%;
  height: auto;
}

.content--text-center h1, .content--text-center h2 {
  display: block;
}

@media screen and (max-width: 915px) {
  .content--text-center-image {
    width: 130vw;
  }

  .container--logo {
    width: 60%;
  }
}

@media screen and (max-width: 550px) {
  .container--logo {
    width: 65vw;
    margin-top: 1rem;
    margin-bottom: 0;
  }
}

.is--ctl-imprint h1 {
  font-size: 2.6rem;
  margin-bottom: 0;
  padding-bottom: 0;
}

.is--ctl-imprint h3 {
  margin.top: .5rem;
}

.is--ctl-imprint p + h2 {
  margin-bottom: 0;
}

.is--ctl-imprint h2 + h3 {
  margin-top: 1rem;
}

@media screen and (max-width: 480px) {
  .is--ctl-imprint h1 {
    font-size: 2.3rem;
  }

  .is--ctl-imprint .panel * {
    word-break: break-all;
  }
}

.footer-main {
  background: rgba(0,0,0,.87);
  padding: 2rem 4rem;
}

.nav--footer {
  display: block;
  width: auto;
  margin: 0 auto;
}

.nav--footer ul {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.nav--footer li {
  list-style-type: none;
}

.nav--footer a {
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .5px;
  font-size: 1.3rem;
  opacity: .8;
  transition: color ease .2s, opacity ease .2s;
}

.nav--footer a:hover {
  opacity: 1;
}

/**/
