/* HERO */
.hero {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  overflow: hidden;
}

.hero-background {
  width: 100%;
  height: 100%;
  position: absolute;
  overflow: hidden;
}

.hero-background video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-youtube, .hero-vimeo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero-vimeo iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero-gradient {
  width: 100%;
  height: 100%;
  position: absolute;
  mix-blend-mode: multiply;
}

.hero-content {
	width: 100%;
  height: 100%;
	position: absolute;
  animation: hero-content-fade-in 1s ease;
}

.hero-content-container {
	height: 100%;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	align-items: center;
}

.hero-content-release-container {
  width: 100%;
  position: absolute;
  left: 20px;
  border-radius: 4px 0px 0px 4px;
  animation: hero-content-fade-in 1s ease;
}

@keyframes hero-content-fade-in {
  0%    {opacity: 0;}
  75%   {opacity: 0;}
  100%  {opacity: 1;}
}

.hero-content-release-container-center-left {
  width: 98%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content:
  flex-start;
}

.hero-content-release-container-center {
  width: 98%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content-release-container-center-right {
  width: 98%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content:
  flex-end;
  left: -20px;
}

.hero-content-release-container-bottom-left {
  width: calc(100% - 40px);
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content:
  flex-start;
  bottom: 20px;
}

.hero-content-release-content {
  display: flex;
  align-items: center;
}

.hero-content-release-image {
  float: left;
  margin-right: 20px;
}

.hero-content-release-image img {
  border-radius: 4px;
  box-shadow: 1px 1px 1px rgba(0,0,0,0.3);
}

.hero-content-release-info {
  float: left;
}

.hero-content-release-artist, .hero-content-release-title, .hero-content-release-link {
  color: #ffffff;
  text-shadow: 1px 1px 1px rgba(0,0,0,0.3);
}

.hero-content-release-artist {
  font-weight: 900;
  line-height: 22px;
}

.hero-content-release-link a {
  font-family: 'TradeGothicLTCom-BdCn20';
  color: #ffffff;
  font-size: 14px;
  line-height: 40px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 6px 10px;
  border: 1px solid #ffffff;
  display: inline;
}

.hero-content-release-link a:hover {
  color: #161616;
  background: #ffffff;
  text-shadow: 1px 1px 1px rgba(0,0,0,0.0);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.hero-content-release-container-small {
  font-size: 16px;
}

.hero-content-release-container-medium {
  font-size: 24px;
}

.hero-content-release-container-large {
  font-size: 32px;
}

.hero-content-release-container-small img {
  width: auto;
  height: 120px;
}

.hero-content-release-container-medium img {
  width: auto;
  height: 180px;
}

.hero-content-release-container-large img {
  width: auto;
  height: 240px;
}

.hero-content-release-container-small .hero-content-release-link a {
  font-size: 8px;
}

.hero h6 {
	margin: 24px 0 16px 0;
}

.hero-controls {
  top: calc(100% - 45px);
  width: calc(100% - 40px);
  height: 50px;
  margin: 0 auto;
  position: relative;
  display: flex;
  text-shadow: 1px 1px 1px rgba(0,0,0,0.5);
}

.hero-controls-left, .chevron, .hero-credits-volume {
  display: flex;
  flex: 1;
  align-self: center;
}

.chevron {
  justify-content: center;
}

.material-symbols-outlined {
  font-size: 48px;
  opacity: 0.8;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.material-symbols-outlined:hover {
  opacity: 1;
}

.chevron i.fas, .play-button i.fas, .volume-button i.fas {
	opacity: 0.8;
	text-decoration: none;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.chevron i.fas:hover, .play-button i.fas:hover, .volume-button i.fas:hover {
	opacity: 1;
}

.hero-credits-volume {
  justify-content: flex-end;
}

.hero-credits, .volume-button {
  align-self: center;
}

.hero-credits p, .hero-credits p a {
  font-size: 11px;
  font-weight: 900;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
  text-decoration: none;
  text-align: right;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.hero-credits p a:hover {
  color: rgba(255,255,255,1);
}

.play-button i.fas, .volume-button i.fas {
  color: #ffffff;
  padding: 0 0 0 20px;
  cursor: pointer;
}


/* TABLET */

@media only screen and (min-width: 800px) and (max-width: 1200px) {
  .hero-content-release-container-large {
    font-size: 24px;
  }

  .hero-content-release-container-large img {
    width: auto;
    height: 180px;
  }
}


/* MOBILE */

@media only screen and (min-width: 1px) and (max-width: 799px) {
  .hero-background {
    background-attachment: initial !important;
  }
  .hero-content-release-container-small, .hero-content-release-container-medium, .hero-content-release-container-large {
    font-size: 14px;
  }

  .hero-content-release-container-small img, .hero-content-release-container-medium img, .hero-content-release-container-large img {
    width: auto;
    height: 100px;
  }

  .hero-content-release-container-medium .hero-content-release-link a, .hero-content-release-container-large .hero-content-release-link a {
    font-size: 8px;
  }
}
