* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  pointer-events: none style;
}

a {
  text-decoration: none;
  color: inherit;
}

html {
  font-size: 16px;
}

@font-face {
  font-family: "AvenirNext";
  src: url("/assets/fonts/AvenirNextLTPro-Regular.otf") format("opentype"), url("/assets/fonts/AvenirNextLTPro.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
}
@font-face {
  font-family: "AvenirNext";
  src: url("/assets/fonts/AvenirNextLTPro-Demi.otf") format("opentype"), url("/assets/fonts/AvenirNextLTProDemi.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
}
@font-face {
  font-family: "AvenirNext";
  src: url("/assets/fonts/AvenirNextLTPro-Bold.otf") format("OpenType"), url("/assets/fonts/AvenirNextLTProBold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
}
.nav-bar {
  position: sticky;
  top: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  background-color: #323232;
}
@media (min-width: 768px) {
  .nav-bar {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }
}
.nav-bar__image {
  align-self: center;
  width: 120px;
  margin-top: 1rem;
}
@media (min-width: 768px) {
  .nav-bar__image {
    margin: 0.5rem 2.25rem;
  }
}
@media (min-width: 1280px) {
  .nav-bar__image {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    margin-left: 5rem;
    margin-right: 2.25rem;
  }
}
.nav-bar__links {
  list-style: none;
  display: flex;
  justify-content: space-around;
  font-family: "AvenirNext";
  font-style: normal;
  font-weight: 400;
  color: #323232;
  font-size: 0.8125rem;
  line-height: 1.125rem;
  color: #E1E1E1;
}
.nav-bar__links li {
  display: flex;
  width: 50%;
  padding: 1rem 1.5rem;
  justify-content: center;
}
@media (min-width: 768px) {
  .nav-bar__links li {
    margin: 0 1.5rem;
    padding: 1.5rem 0;
  }
}
.nav-bar__links li:hover {
  border-bottom: 5px solid #FFFFFF;
  color: #FFFFFF;
}

.active-link {
  border-bottom: 5px solid #FFFFFF;
  color: #FFFFFF;
  font-weight: bold;
}

.footer {
  background-color: #323232;
  padding-top: 1.5rem;
  padding-left: 1rem;
  padding-right: 1rem;
  display: flex;
  flex-direction: column;
  color: #FFFFFF;
}
@media (min-width: 768px) {
  .footer {
    flex-wrap: wrap;
    padding: 2.25rem;
  }
}
@media (min-width: 1280px) {
  .footer {
    padding: 2.25rem 5rem;
  }
}
@media (min-width: 768px) {
  .footer__one {
    display: flex;
    align-items: center;
  }
}
.footer__title {
  padding-bottom: 1rem;
  font-family: AvenirNext;
  font-style: normal;
  font-weight: 700;
  color: #323232;
  font-size: 1.5rem;
  line-height: 2rem;
  color: #FFFFFF;
}
@media (min-width: 768px) {
  .footer__title {
    padding-right: 2rem;
    padding-bottom: 0;
    font-family: AvenirNext;
    font-style: normal;
    font-weight: 700;
    color: #323232;
    font-size: 2.25rem;
    line-height: 2.75rem;
    color: #FFFFFF;
  }
}
.footer__icons {
  padding-bottom: 1rem;
}
@media (min-width: 768px) {
  .footer__icons {
    padding: 0;
  }
}
.footer__icon {
  padding-right: 1.5rem;
  scale: 1.1;
}
.footer__contact {
  padding-bottom: 2rem;
}
@media (min-width: 768px) {
  .footer__contact {
    display: flex;
    padding: 2.25rem 0;
  }
}
.footer__copy {
  margin-bottom: 1.5rem;
  color: #FFFFFF;
  font-family: "AvenirNext";
  font-style: normal;
  font-weight: 400;
  color: #FFFFFF;
  font-size: 0.8125rem;
  line-height: 1.125rem;
}
@media (min-width: 768px) {
  .footer__copy {
    padding-right: 3rem;
    font-family: "AvenirNext";
    font-style: normal;
    font-weight: 400;
    color: #FFFFFF;
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
}
.footer__copy--bold {
  font-weight: 600;
}
.footer__logo1 {
  width: 120px;
  display: none;
}
@media (min-width: 768px) {
  .footer__logo1 {
    display: flex;
    position: absolute;
    right: 2.25rem;
  }
}
@media (min-width: 1280px) {
  .footer__logo1 {
    display: flex;
    position: absolute;
    right: 5rem;
  }
}
.footer__logo2 {
  width: 120px;
  padding: 1rem 0;
}
@media (min-width: 768px) {
  .footer__logo2 {
    display: none;
  }
}

.hero {
  background-image: linear-gradient(hsla(0, 0%, 20%, 0.5), hsla(0, 0%, 20%, 0.5)), url("/assets/images/hero-shows.jpg");
  background-size: cover;
  background-position: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: left;
  align-content: left;
  padding: 2rem 1rem 1rem 1rem;
}
@media (min-width: 768px) {
  .hero {
    padding: 3rem 2rem 3rem 2rem;
  }
}
@media (min-width: 1280px) {
  .hero {
    display: flex;
    flex-direction: column;
    height: 35vh;
    align-items: left;
    padding: 5rem;
    justify-content: center;
  }
}
@media (min-width: 1280px) {
  .hero__box {
    display: flex;
    flex-direction: row;
    align-items: left;
  }
}
.hero__subtitle {
  font-family: "AvenirNext";
  font-style: normal;
  font-weight: 400;
  color: #323232;
  font-size: 0.8125rem;
  line-height: 1.125rem;
  color: #FFFFFF;
  padding-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .hero__subtitle {
    font-family: AvenirNext;
    font-style: normal;
    font-weight: 600;
    color: #323232;
    font-size: 1.5rem;
    line-height: 2rem;
    color: #FFFFFF;
  }
}
@media (min-width: 1280px) {
  .hero__subtitle {
    justify-self: center;
  }
}
.hero__title {
  padding-bottom: 1rem;
  font-family: AvenirNext;
  font-style: normal;
  font-weight: 700;
  color: #FFFFFF;
  font-size: 1.5rem;
  line-height: 2rem;
  width: 65%;
}
@media (min-width: 768px) {
  .hero__title {
    font-family: AvenirNext;
    font-style: normal;
    font-weight: 700;
    color: #FFFFFF;
    font-size: 3.75rem;
    line-height: 4.25rem;
    width: 80%;
    padding-bottom: 2.25rem;
  }
}
@media (min-width: 1280px) {
  .hero__title {
    width: 100%;
    padding-right: 5rem;
  }
}
@media (min-width: 768px) {
  .hero__song {
    padding-right: 20rem;
  }
}
@media (min-width: 1280px) {
  .hero__song {
    padding: 0 0 0 5rem;
    width: 100%;
  }
}

.shows {
  display: flex;
  flex-direction: column;
  padding: 0 1rem 1rem 1rem;
}
@media (min-width: 768px) {
  .shows {
    padding: 0 1rem 2.25rem 1rem;
  }
}
@media (min-width: 1280px) {
  .shows {
    padding: 0 5rem 2.25rem 5rem;
    display: flex;
    flex-direction: row;
  }
}
@media (min-width: 1280px) {
  .shows__list {
    width: 100%;
    padding-top: 3rem;
    padding-left: 5rem;
  }
}
.shows__title {
  font-family: AvenirNext;
  font-style: normal;
  font-weight: 700;
  color: #323232;
  font-size: 1.5rem;
  line-height: 2rem;
  padding-top: 1.5rem;
}
@media (min-width: 768px) {
  .shows__title {
    font-family: AvenirNext;
    font-style: normal;
    font-weight: 700;
    color: #323232;
    font-size: 2.25rem;
    line-height: 2.75rem;
    padding: 3rem 0rem 2.25rem 1.125rem;
  }
}
@media (min-width: 1280px) {
  .shows__title {
    padding: 3rem 0 0 0;
  }
}
.shows__label-container {
  display: none;
}
@media (min-width: 768px) {
  .shows__label-container {
    display: flex;
    padding: 0 1.125rem;
  }
}
@media (min-width: 1280px) {
  .shows__label-container {
    width: 100%;
    height: 2.25rem;
    align-items: flex-end;
  }
}
.shows__label {
  width: 25%;
  font-family: AvenirNext;
  font-style: normal;
  font-weight: 700;
  color: #323232;
  font-size: 0.625rem;
  line-height: 1.25rem;
  color: #AFAFAF;
}
@media (min-width: 768px) {
  .shows__label {
    font-family: AvenirNext;
    font-style: normal;
    font-weight: 700;
    color: #323232;
    font-size: 0.75rem;
    line-height: 1.25rem;
    color: #AFAFAF;
  }
}

.show {
  display: flex;
  flex-direction: column;
  padding: 1rem 0;
  border-bottom: 1px solid #E1E1E1;
}
@media (min-width: 768px) {
  .show {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    padding: 1.5rem 1.125rem;
  }
}
.show--active {
  background-color: #E1E1E1;
}
.show__label {
  font-family: AvenirNext;
  font-style: normal;
  font-weight: 700;
  color: #323232;
  font-size: 0.625rem;
  line-height: 1.25rem;
  color: #AFAFAF;
  padding-bottom: 4px;
}
@media (min-width: 768px) {
  .show__label {
    display: none;
  }
}
.show__date {
  font-family: "AvenirNext";
  font-style: normal;
  font-weight: 400;
  color: #323232;
  font-size: 0.8125rem;
  line-height: 1.125rem;
  font-weight: bold;
  padding-bottom: 1rem;
}
@media (min-width: 768px) {
  .show__date {
    width: 25%;
    padding: 0;
    font-family: "AvenirNext";
    font-style: normal;
    font-weight: 400;
    color: #323232;
    font-size: 0.875rem;
    line-height: 1.375rem;
    font-weight: bold;
  }
}
.show__venue {
  font-family: "AvenirNext";
  font-style: normal;
  font-weight: 400;
  color: #323232;
  font-size: 0.8125rem;
  line-height: 1.125rem;
  padding-bottom: 1rem;
}
@media (min-width: 768px) {
  .show__venue {
    width: 25%;
    padding: 0;
    font-family: "AvenirNext";
    font-style: normal;
    font-weight: 400;
    color: #323232;
    font-size: 0.875rem;
    line-height: 1.375rem;
  }
}
.show__location {
  font-family: "AvenirNext";
  font-style: normal;
  font-weight: 400;
  color: #323232;
  font-size: 0.8125rem;
  line-height: 1.125rem;
  padding-bottom: 1rem;
}
@media (min-width: 768px) {
  .show__location {
    width: 25%;
    padding: 0;
    font-family: "AvenirNext";
    font-style: normal;
    font-weight: 400;
    color: #323232;
    font-size: 0.875rem;
    line-height: 1.375rem;
  }
}
.show__button {
  height: 40px;
  background-color: #323232;
  border-radius: 4px;
  border: none;
  font-family: AvenirNext;
  font-style: normal;
  font-weight: 700;
  color: #323232;
  font-size: 0.625rem;
  line-height: 1.25rem;
  color: #FFFFFF;
  cursor: pointer;
}
@media (min-width: 768px) {
  .show__button {
    width: 25%;
    font-family: AvenirNext;
    font-style: normal;
    font-weight: 700;
    color: #323232;
    font-size: 0.75rem;
    line-height: 1.25rem;
    color: #FFFFFF;
  }
}
.show__button:hover {
  background-color: #000000;
}

.show:not(.show--active):hover {
  background-color: #FAFAFA;
}/*# sourceMappingURL=shows.css.map */