.section {
  position: relative;
  width: 100vw;
}

.section.hero {
  height: 100vh;
  background-image: url('../images/Hero_Cover.jpg');
  background-position: 50% 50%;
  background-size: cover;
}

.section.footer {
  background-color: #1b1b1b;
}

.fade {
  position: absolute;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.6);
}

.hero-holder {
  position: relative;
  z-index: 5;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 90vw;
  height: 100vh;
  max-width: 70vw;
  margin-right: auto;
  margin-left: auto;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.hh.hh-left {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.hh.hh-right {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.button {
  margin-top: 2rem;
  margin-bottom: 2rem;
  padding: 1rem 2rem;
  border-radius: 2rem;
  background-image: -webkit-gradient(linear, left top, right top, from(#fe509c), to(#927cda));
  background-image: linear-gradient(90deg, #fe509c, #927cda);
  box-shadow: 0 0 30px 0 #fe6cc5;
  font-size: 1rem;
  line-height: 1rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-logo {
  margin-bottom: 0.5rem;
}

.socials {
  position: absolute;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: auto;
  z-index: 25;
  text-align: right;
}

.socials.footer-socials {
  position: relative;
  margin-bottom: 2rem;
  text-align: center;
}

.social {
  padding: 0.5rem;
}

.social-img {
  max-width: 40px;
}

.blur {
  position: absolute;
  z-index: 15;
}

.blur.left-blur {
  left: 0%;
  top: auto;
  right: auto;
  bottom: 0%;
}

.blur.right-blur {
  left: auto;
  top: auto;
  right: 0%;
  bottom: 0%;
}

.hero-block {
  position: absolute;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.hero-block.logo-holder {
  z-index: 20;
}

.hero-block.nino-holder {
  z-index: 10;
}

.tree {
  position: absolute;
  z-index: 5;
}

.tree.left-blur {
  left: 0%;
  top: auto;
  right: auto;
  bottom: 0%;
}

.tree.right-blur {
  left: auto;
  top: auto;
  right: 0%;
  bottom: 0%;
}

.tree.left-tree {
  left: 0%;
  top: auto;
  right: auto;
  bottom: 0%;
  max-height: 70vh;
}

.tree.right-tree {
  left: auto;
  top: auto;
  right: 0%;
  bottom: 0%;
  max-height: 70vh;
}

.hide {
  opacity: 0;
}

.music-holder {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.album-cover {
  width: 100%;
}

.content {
  position: relative;
  width: 90vw;
  max-width: 800px;
  margin-right: auto;
  margin-left: auto;
  padding-top: 8vw;
  padding-bottom: 8vw;
  text-align: center;
}

.heading {
  margin-top: 0px;
  margin-bottom: 1.5rem;
  color: #fff;
  text-transform: uppercase;
}

.heading.featvidtitle {
  margin-bottom: 2rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.video {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  opacity: 0.5;
  cursor: pointer;
}

.video:hover {
  opacity: 1;
}

.video.selected {
  opacity: 1;
}

.videoimg {
  height: 70px;
}

.entrytitle {
  padding-left: 2rem;
  color: #fff;
  font-size: 1.2rem;
  line-height: 1.2rem;
}

.text {
  color: #fff;
}

.text-link {
  color: #fff;
}

.body {
  background-color: #151515;
}

.blur-bg-1 {
  position: fixed;
  left: 0%;
  top: auto;
  right: 0%;
  bottom: 0%;
  z-index: -5;
  width: 100%;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50% 50%;
  background-size: cover;
}

.blur-bg-2 {
  position: fixed;
  left: 0%;
  top: auto;
  right: 0%;
  bottom: 0%;
  z-index: -5;
  width: 100%;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50% 50%;
  background-size: cover;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.bg-fade {
  position: absolute;
  top: 100vh;
  width: 100vw;
  height: 100vh;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#151515), to(rgba(21, 21, 21, 0)));
  background-image: linear-gradient(180deg, #151515, rgba(21, 21, 21, 0));
}

.trailblazin-blur {
  position: absolute;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: auto;
  width: 100%;
}

.image {
  width: 33vw;
  max-width: 455px;
}

.fader {
  position: absolute;
  left: 0%;
  top: auto;
  right: 0%;
  bottom: 0%;
  display: none;
  width: 100vw;
  height: 30vh;
  background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), to(#151515));
  background-image: linear-gradient(180deg, transparent, #151515);
}

.album-link {
  width: 100%;
  max-width: 70%;
}

@media screen and (max-width: 991px) {
  .hero-holder {
    max-width: 90vw;
  }

  .socials {
    padding: 1rem;
  }

  .social-img {
    max-width: 30px;
  }

  .image {
    width: 50vw;
  }
}

@media screen and (max-width: 767px) {
  .hero-holder.hh-logo-hero {
    width: 100vw;
    max-width: 100vw;
    padding-right: 10vw;
    padding-left: 10vw;
  }

  .hh.hh-left.hh-nino-hide {
    display: none;
  }

  .hh.hh-right.hh-nino-hide {
    display: none;
  }

  .hh.hh-right.hh-nino-logo-main {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }

  .socials {
    text-align: center;
  }

  .tree.left-tree {
    max-height: 50vh;
  }

  .tree.right-tree {
    max-height: 50vh;
  }

  .music-holder {
    position: relative;
    z-index: 10;
  }

  .heading.featvidtitle {
    font-size: 1.2rem;
    line-height: 1.2rem;
  }

  .entrytitle {
    padding-left: 1.2rem;
    font-size: 1rem;
    line-height: 1rem;
  }

  .image.hh-nino-image {
    width: 70vw;
  }

  .fader {
    z-index: 15;
    display: block;
    height: 40vh;
  }
}

@media screen and (max-width: 479px) {
  .hero-holder.hh-nino-wide {
    width: 100vw;
    max-width: 100vw;
  }

  .hh.hh-left.hh-nino {
    overflow: hidden;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .hh.hh-right.hh-nino-logo-main {
    padding-bottom: 5rem;
  }

  .hero-logo {
    margin-bottom: 0rem;
  }

  .socials {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }

  .socials.footer-socials {
    padding-right: 0rem;
    padding-left: 0rem;
  }

  .social {
    padding-right: 0.3rem;
    padding-left: 0.3rem;
  }

  .social-img {
    max-width: 25px;
  }

  .blur.left-blur {
    opacity: 0.4;
  }

  .blur.right-blur {
    opacity: 0.4;
  }

  .heading.featvidtitle {
    font-size: 1rem;
    line-height: 1rem;
  }

  .videoimg {
    height: 40px;
  }

  .entrytitle {
    padding-left: 1rem;
    font-size: 0.8rem;
    line-height: 1rem;
    text-align: left;
  }

  .image.hh-nino-image {
    width: 130vw;
    max-width: 130vw;
  }

  .fader {
    height: 50vh;
  }
}

