body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
}

* {
  box-sizing: border-box;
}

*:focus-visible {
  border-radius: 0;
  outline: 0;
}

img {
  width: 100%;
}

h1,
h2,
h3,
h4 {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 1.2rem 0;
  line-height: 1.2;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.6rem;
}

p {
  margin: 0 0 1.5rem 0;
}

a,
a:link {
  color: #333;
}

.container {
  padding-right: 25px;
  padding-left: 25px;
}

/* HEADER */
header {
  position: relative;
  width: 100%;
  height: auto;
}

.parallax-banner {
  padding-top: 0;
  min-height: 500px;
}

#language {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 1000;
}

#language ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
}

#language ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  padding: 10px;
  font-size: 17px;
}

header #banner {
  position: relative;
}

header #banner:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .35);
}

header #title {
  position: absolute;
  width: 100%;
  bottom: 10%;
  left: 0;
  z-index: 99;
  padding: 0 25px;
}

header #title h1 {
  color: #fff;
  font-size: 2.8rem;
}

header #title .btn {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  text-decoration: none;
}

header #title .btn:hover {
  color: #000;
}

@media (min-width: 576px) {
  header #title {
    width: 65%;
    top: 35%;
    bottom: auto;
    left: 10%;
  }

  header #title h1 {
    font-size: 3.2rem;
  }

  header #title .btn {
    font-size: 1.5rem;
  }
}

@media (min-width: 768px) {
  header #title h1 {
    font-size: 4.5rem;
  }

  header #title .btn {
    font-size: 1.8rem;
  }
}

@media (min-width: 992px) {
  header #title h1 {
    font-size: 5.5rem;
  }

  header #title .btn {
    font-size: 2.2rem;
  }
}

@media (min-width: 1200px) {
  header #title h1 {
    font-size: 7rem;
  }
}

@media (min-width: 1400px) {
  header #title h1 {
    font-size: 8rem;
  }
}

/* INTRO STRIP */
#intro {
  background-color: #ef9000;
  padding: 2rem 1.5rem 1.5rem 1.5rem;
}

#intro h2 {
  text-align: center;
  color: #000;
  margin: 0;
  font-weight: 500;
}

#counter {
  display: inline;
  margin: 0;
}

/* PRESENTATION */
#presentation {
  padding: 2rem 0;
}

blockquote {
  margin: 0;
  background-color: #000;
  padding: 2rem;
}

blockquote:nth-child(1),
blockquote:nth-child(3) {
  transform: skew(2deg, -3deg);
}

blockquote:nth-child(2) {
  transform: skew(-2deg, 3deg);
}

blockquote p {
  color: #fff;
  font-size: 1rem;
  margin: 0;
}

blockquote:nth-child(1) p,
blockquote:nth-child(3) p {
  transform: skew(-2deg, 3deg);
}

blockquote:nth-child(2) p {
  transform: skew(2deg, -3deg);
}

blockquote p span {
  font-size: 1rem;
  display: block;
  font-style: italic;
  margin-top: .3rem;
  align-items: right;
}

#paul {
  line-height: 0;
  position: relative;
  width: 100%;
  line-height: 0;
  overflow: hidden;
}

#paul img {
  width: 180%;
  position: relative;
  left: -40%;
}

/* ALBUM */
#album {
  padding: 3rem 0;
  background-color: #000;
  color: #fff;
}

.cover {
  position: relative;
  margin-bottom: 1.5rem;
}

.cover .play {
  position: absolute;
  max-width: 200px;
  height: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.tracks,
.linsten {
  margin-bottom: 2rem;
}

.tracks ol {
  padding-left: 25px;
}

.tech ul {
  padding-left: 25px;
}

.listen a,
.buy a {
  display: block;
  max-width: 200px;
}

.badges {
  display: flex;
}

.badges a {
  width: 45%;
  margin-right: 5%;
}

.badges a:last-child {
  margin-right: 0;
}

/* VIDEO */
#video {
  background-color: #000;
  padding-bottom: 2rem;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* CTA */
#cta {
  padding: 3rem 0;
  text-align: center;
  background: url('../img/cta-bg.jpg') center center no-repeat #ccc;
  background-size: cover;
  background-attachment: fixed;
}

#cta h2 {
  color: #000;
}

#cta .boxed {
  max-width: 650px;
  margin: 0 auto;
}

.input-group {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}

input:not([type=checkbox]) {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  padding: 0.5rem 1rem;
  border: 2px solid #000;
  border-radius: 0;
}

.field {
  width: 100%;
}

#name,
#email {
  width: 100%;
  min-height: 55px;
  margin: 0 0 10px 0;
  order: 0;
}

#submit {
  width: 100%;
  min-height: 55px;
  order: 2;
}

.btn {
  border-radius: 0;
  border: 2px solid #000;
  font-size: 1.2rem;
  font-weight: normal;
  line-height: 1;
  padding: 0.5rem 1rem;
  text-transform: uppercase;
  color: #fff;
  background-color: #000;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

.btn:hover {
  color: #6b564f;
  background-color: #fff;
}

#checkbox {
  margin: 0 0 10px 0;
  order: 1;
}

#checkbox label {
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
}

#checkbox label input[type=checkbox] {
  position: relative;
  visibility: hidden;
  width: 28px;
  margin: 0 10px 0 0;
}

#checkbox label span {
  text-align: left;
}

#checkbox label input[type=checkbox]+span:before {
  display: block;
  position: absolute;
  content: '';
  height: 28px;
  width: 28px;
  top: 0;
  left: 0;
  border: 2px solid #000;
  border-radius: 0;
  background-color: #fff;
}

#checkbox label input[type=checkbox]+span:after {
  display: block;
  position: absolute;
  content: '';
  height: 14px;
  width: 8px;
  top: 6px;
  left: 10px;
  visibility: hidden;
  border-style: solid;
  border-color: #000;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(43deg);
  -ms-transform: rotate(43deg);
  transform: rotate(43deg);
}

#checkbox label input[type=checkbox]:checked+span:after {
  visibility: visible;
}

.help-block {
  margin: 0;
  color: #ff0000;
  font-size: .9rem
}

.danger {
  display: block;
  margin: 0.3rem 0 0 0;
  text-align: left;
}

/* FOOTER */
footer {
  padding: 1rem 15px;
  text-align: center;
  background-color: #ef9000;
  color: #000;
}

.copy a {
  color: #000;
  text-decoration: none;
  text-transform: uppercase;
}

.social a {
  color: #000;
  display: inline-block;
  margin: 0 10px;
}

.footer-menu {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  justify-content: center;
}

.footer-menu li {
  margin: 0 5px;
}

.footer-menu li a {
  font-size: .9rem;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
}

/* COOKIE BANNER */
#cookies-eu-banner {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  opacity: 1;
  z-index: 999;
  transition: opacity .3s ease-in-out;
}

#cookies-eu-banner:before {
  content: '';
  background-color: rgba(255, 255, 255, .65);
  position: absolute;
  width: 100%;
  height: 100%;

}

#cookies-eu-banner .content {
  font-size: 1rem;
  z-index: 999;
  position: relative;
  max-width: 350px;
  background: #fff;
  color: #000;
  padding: 2rem;
  left: auto;
  top: 10%;
  margin: 0 auto;
  transform: none;
  box-shadow: 0 0 25px rgba(0, 0, 0, .25);
}

#cookies-eu-banner .content p {
  margin-top: 0;
  line-height: 1.3;
}

.buttons {
  display: flex;
  justify-content: center;
  align-items: center;
}

#cookies-eu-more {
  text-decoration: underline;
  color: #000;
  margin: 0 5px;
}

#cookies-eu-accept,
#cookies-eu-reject {
  font-family: 'Poppins', sans-serif;
  background: #222;
  color: #fff;
  border: 1px solid #000;
  cursor: pointer;
  padding: .5rem 1rem;
  margin: 0 5px;
  font-weight: bold;
}

#cookies-eu-more:hover,
#cookies-eu-more:focus,
#cookies-eu-accept:hover,
#cookies-eu-accept:focus {
  background: #fff;
  color: #222;
}

#cookies-eu-reject {
  background: none;
  color: #000;
  cursor: pointer;
}

#cookies-eu-reject:hover,
#cookies-eu-reject:focus {
  border-color: #fff;
  background: #222;
  color: #fff;
}

/* PRIVACY COOKIE */
.remodal h1 {
  font-size: 1.8rem;
  text-align: center;
}

.remodal h2 {
  font-size: 1.5rem;
}

.remodal h3 {
  font-size: 1.3rem;
}

.remodal .cont {
  text-align: left;
}

.remodal .cont h1 {
  font-size: 1.6rem;
}

.remodal .cont h2 {
  font-size: 1.4rem;
}

.remodal .cont h3 {
  font-size: 1.2rem;
}

.remodal .cont ul {
  padding-left: 1.5rem;
}


/* RESPONSIVE *******************************************************************/

@media (min-width: 768px) {
  h1 {
    font-size: 4rem;
  }

  h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.6rem;
  }

  .remodal h1 {
    font-size: 3rem;
  }

  .remodal h2 {
    font-size: 2.2rem;
  }

  .remodal h3 {
    font-size: 1.6rem;
  }

  .parallax-banner {
    padding-top: 56%
  }

  #intro {
    padding: 3rem 3rem 2rem 3rem;
  }

  #intro h2 {
    font-size: 3rem;
  }

  #content p:last-child {
    margin-bottom: 0
  }

  #paul {
    width: 100%;
    margin-right: 0;
    padding: 0;
  }

  #paul img {
    position: static;
    left: 0;
    width: 100%;
  }

  #presentation,
  #album,
  #cta {
    padding: 5rem 0;
  }

  .cover {
    margin-bottom: 0;
  }

  #video {
    padding-bottom: 5rem;
  }

  .field {
    width: calc(40% - 10px);
    margin: 0 10px 0 0;
  }

  #name,
  #email {
    margin: 0;
  }

  #submit {
    width: 20%;
    order: 1;
  }

  #checkbox {
    margin-top: 10px;
    order: 2;
  }

  #cookies-eu-banner .content {
    position: absolute;
    max-width: 450px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}