@font-face {
  font-family: "Avenir Next";
  font-weight: 400;
  src: url("../../assets/Font/AvenirNextLTPro-Regular.otf") format("opentype");
}
@font-face {
  font-family: "Avenir Next";
  font-weight: 600;
  src: url("../../assets/Font/AvenirNextLTPro-Demi.otf") format("opentype");
}
@font-face {
  font-family: "Avenir Next";
  font-weight: 700;
  src: url("../../assets/Font/AvenirNextLTPro-Bold.otf") format("opentype");
}
* {
  box-sizing: border-box;
}

body {
  color: #323232;
  font-family: "Avenir Next", Verdana, Geneva, Tahoma, sans-serif;
  margin: 0;
  padding: 0;
}

h1 {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 2rem;
}
@media (min-width: 768px) {
  h1 {
    font-size: 3.75rem;
    font-weight: 600;
    line-height: 4.25rem;
  }
}

h2 {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 2rem;
  margin: 1.5rem 0 1rem 0;
}
@media (min-width: 768px) {
  h2 {
    font-size: 2.25rem;
    font-weight: 600;
    line-height: 2.75rem;
    margin: 3rem 0 2.25rem 0;
  }
}

h3 {
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.375rem;
  margin: 1.5rem 0 1rem 0;
}
@media (min-width: 768px) {
  h3 {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 2rem;
    margin: 3rem 0 2.25rem 0;
  }
}

p {
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.125rem;
  margin: 1rem 0;
}
@media (min-width: 768px) {
  p {
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.375rem;
  }
}

.site-header {
  align-items: center;
  display: flex;
  justify-content: center;
  background-color: #323232;
  color: #fff;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 1rem;
}
@media (min-width: 768px) {
  .site-header {
    flex-direction: row;
    gap: 4rem;
    justify-content: flex-start;
    padding: 0 2rem;
  }
}
@media (min-width: 1280px) {
  .site-header {
    padding: 0 10rem;
  }
}

.site-logo {
  display: block;
  margin: 0;
}
@media (min-width: 768px) {
  .site-logo--mobile {
    display: none;
  }
}
.site-logo--tablet {
  display: none;
}
@media (min-width: 768px) {
  .site-logo--tablet {
    display: block;
  }
}
.site-logo__image {
  max-height: 1.25rem;
  max-width: 7.5rem;
}

.primary-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
  display: flex;
  justify-content: space-around;
  width: 100vw;
}
@media (min-width: 768px) {
  .primary-nav__list {
    gap: 4rem;
    width: auto;
  }
}
.primary-nav__item {
  flex-grow: 1;
  text-align: center;
}
.primary-nav__link {
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.125rem;
  color: #e1e1e1;
  border-bottom: 4px solid #323232;
  display: inline-block;
  padding-bottom: 0.75rem;
  text-decoration: none;
  transition: 0.3s;
  width: 100%;
}
@media (min-width: 768px) {
  .primary-nav__link {
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.375rem;
    padding: 1rem 0;
  }
}
@media (min-width: 1280px) {
  .primary-nav__link {
    padding: 2rem 0.125rem;
  }
}
.primary-nav__link--active {
  color: #fff;
  border-bottom: 4px solid #fff;
  font-weight: 600;
}
@media (min-width: 1280px) {
  .primary-nav__link:hover {
    color: #fff;
    font-weight: 600;
    border-bottom: 4px solid #fff;
  }
}

.hero {
  background-position: center;
  background-size: cover;
}
.hero--shows {
  background-image: url("../assets/Images/hero-shows.jpg");
}
.hero--bio {
  background-image: url("../assets/Images/hero-bio.jpg");
  height: 30vh;
}
@media (min-width: 768px) {
  .hero--bio {
    height: 50vh;
  }
}
@media (min-width: 1280px) {
  .hero {
    height: 90vh;
  }
}
.hero__overlay {
  align-items: center;
  display: flex;
  justify-content: flex-start;
  background-color: rgba(50, 50, 50, 0.5);
  height: 100%;
  width: 100%;
}
.hero__container {
  padding: 0 1rem;
}
@media (min-width: 768px) {
  .hero__container {
    padding: 0 2rem 1rem 2rem;
  }
}
@media (min-width: 1280px) {
  .hero__container {
    padding: 0 10rem;
  }
}
@media (min-width: 1280px) {
  .hero__container--audio {
    align-items: flex-end;
    display: flex;
    justify-content: flex-start;
    gap: 8rem;
  }
}
@media (min-width: 1280px) {
  .hero__column {
    flex-grow: 1;
    max-width: 50%;
  }
}
.hero__heading {
  color: #fff;
  margin: 0;
  max-width: 70vw;
}
.hero__subheading {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.375rem;
  color: #fff;
}
@media (min-width: 768px) {
  .hero__subheading {
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 2rem;
  }
}

.about {
  padding: 0 1rem;
}
@media (min-width: 768px) {
  .about {
    padding: 0 2rem 2.25rem 2rem;
  }
}
@media (min-width: 1280px) {
  .about {
    padding: 0 10rem 2.25rem 10rem;
  }
}
.about__image {
  display: block;
  width: 100%;
}
@media (min-width: 768px) {
  .about__container {
    padding: 0 5rem;
  }
}
@media (min-width: 768px) {
  .about__text-container {
    align-items: normal;
    display: flex;
    justify-content: normal;
    gap: 1rem;
  }
}
.about__text {
  margin: 1rem 0;
}
@media (min-width: 768px) {
  .about__text {
    margin: 0;
  }
}

.bquote {
  margin: 1rem 0;
}
.bquote__text {
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.375rem;
  margin: 1rem 0;
}
@media (min-width: 768px) {
  .bquote__text {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 2rem;
  }
}
.bquote__cite {
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.375rem;
  font-style: normal;
}
.bquote__cite::before {
  content: "- ";
}

.gallery {
  background-color: #fafafa;
  padding: 1.5rem 1rem 0 1rem;
}
@media (min-width: 768px) {
  .gallery {
    padding: 3rem 2rem 2.25rem 2rem;
  }
}
@media (min-width: 1280px) {
  .gallery {
    padding-left: 10rem;
    padding-right: 10rem;
  }
}
.gallery__heading {
  margin-top: 0;
}
@media (min-width: 768px) {
  .gallery__collection {
    align-items: normal;
    display: flex;
    justify-content: normal;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
}
.gallery__image {
  display: block;
  filter: grayscale(1);
  margin: 1rem 0;
  transition: 0.6s;
  width: 100%;
}
@media (min-width: 768px) {
  .gallery__image {
    flex-grow: 1;
    margin: 0;
    width: 31%;
  }
}
.gallery__image:hover {
  filter: grayscale(0);
}

.comments {
  padding: 1.5rem 1rem 1rem;
}
@media (min-width: 768px) {
  .comments {
    padding: 3rem 2rem 2rem;
  }
}
@media (min-width: 1280px) {
  .comments {
    padding-left: 10rem;
    padding-right: 10rem;
  }
}
.comments__heading {
  margin-top: 0;
}
.comments__form-container {
  align-items: normal;
  display: flex;
  justify-content: normal;
  border-bottom: 1px solid #e1e1e1;
  gap: 1rem;
  padding-bottom: 1rem;
}
@media (min-width: 768px) {
  .comments__form-container {
    gap: 0.5rem;
    margin: 0 auto;
    max-width: 80vw;
  }
}
@media (min-width: 1280px) {
  .comments__form-container {
    max-width: 35vw;
  }
}
.comments__form-container > * + * {
  flex-grow: 1;
}
@media (min-width: 768px) {
  .comments__container {
    margin: 0 auto;
    max-width: 80vw;
  }
}
@media (min-width: 1280px) {
  .comments__container {
    max-width: 35vw;
  }
}

.btn {
  background-color: #323232;
  border-radius: 4px;
  border: none;
  color: #fff;
  cursor: pointer;
  font-family: "Avenir Next", Verdana, Geneva, Tahoma, sans-serif;
  font-weight: 600;
  height: 2.5rem;
  padding: 0 2rem;
  text-transform: uppercase;
  transition: 0.25s;
  width: 100%;
}
@media (min-width: 768px) {
  .btn {
    min-width: 9.375rem;
  }
}
@media (min-width: 1280px) {
  .btn:hover {
    background-color: #000;
  }
}
.btn--complex {
  align-items: center;
  display: flex;
  justify-content: normal;
  background-color: #fff;
  border: 1px solid #e1e1e1;
  color: #323232;
  font-size: 0.8125rem;
  font-weight: 400;
  height: auto;
  min-width: 0;
  padding: 0.5rem 0.75rem;
  width: auto;
}
.btn--complex:hover {
  background-color: #fafafa;
  border-color: #afafaf;
}
.btn--complex > * {
  pointer-events: none;
}
.btn--complex > * + * {
  margin-left: 0.5rem;
}
.btn--delete:hover {
  border-color: #d22d2d;
}
.btn__icon {
  height: 1rem;
}

.form {
  align-items: flex-end;
  display: flex;
  justify-content: normal;
  flex-direction: column;
  gap: 1rem;
}
.form__field-container {
  align-items: normal;
  display: flex;
  justify-content: normal;
  flex-direction: column;
  gap: 4px;
  width: 100%;
}
.form__label {
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.125rem;
  color: #afafaf;
  text-transform: uppercase;
}
.form__field {
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.125rem;
  border: 1px solid #e1e1e1;
  border-radius: 4px;
  color: #323232;
  font-family: "Avenir Next", Verdana, Geneva, Tahoma, sans-serif;
  padding: 0.75rem;
  transition: 0.3s;
}
.form__field:focus-visible {
  border: 1px solid #323232;
  outline: none;
}
.form__field--textarea {
  resize: none;
  white-space: normal;
}
.form__field--error, .form__field--error:focus-visible {
  border: 1px solid #d22d2d;
}
.form__field--error::-moz-placeholder, .form__field--error:focus-visible::-moz-placeholder {
  color: #d22d2d;
}
.form__field--error::placeholder, .form__field--error:focus-visible::placeholder {
  color: #d22d2d;
}
@media (min-width: 768px) {
  .form__field {
    padding: 1rem;
  }
}
.form__submit {
  width: 100%;
}
@media (min-width: 768px) {
  .form__submit {
    width: 9.375rem;
  }
}

.avatar__image {
  background-color: #e1e1e1;
  border-radius: 50%;
  height: 2.25rem;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: left;
     object-position: left;
  width: 2.25rem;
}
@media (min-width: 768px) {
  .avatar__image {
    height: 3rem;
    width: 3rem;
  }
}
.avatar__image--form {
  margin-top: 1.5rem;
}

.comment {
  align-items: normal;
  display: flex;
  justify-content: normal;
  border-bottom: 1px solid #e1e1e1;
  gap: 1rem;
  padding: 1rem 0;
}
.comment__content {
  flex-grow: 1;
}
.comment__meta-data {
  align-items: normal;
  display: flex;
  justify-content: space-between;
}
.comment__text {
  margin: 0.5rem 0 0;
}
.comment__text--name {
  font-weight: 600;
  margin: 0;
}
.comment__text--date {
  color: #afafaf;
  margin: 0;
}
.comment__controls {
  align-items: normal;
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
}

.site-footer {
  background-color: #323232;
  color: #fff;
  padding: 1.5rem 1rem 1rem 1rem;
}
@media (min-width: 768px) {
  .site-footer {
    padding: 3rem 2rem;
  }
}
@media (min-width: 1280px) {
  .site-footer {
    padding-left: 10rem;
    padding-right: 10rem;
  }
}
@media (min-width: 768px) {
  .site-footer__heading-group {
    align-items: baseline;
    display: flex;
    justify-content: flex-start;
    gap: 2rem;
  }
}
@media (min-width: 768px) {
  .site-footer__brand-group {
    align-items: baseline;
    display: flex;
    justify-content: space-between;
  }
}
@media (min-width: 1280px) {
  .site-footer__brand-group {
    padding-right: 2.25rem;
  }
}
.site-footer__heading {
  margin-top: 0;
}
.site-footer__social {
  align-items: normal;
  display: flex;
  justify-content: normal;
  gap: 1.5rem;
}
.site-footer__social-link {
  text-decoration: none;
}
.site-footer__social-icon {
  height: 1.5rem;
  max-width: 1.5rem;
}
.site-footer__contact {
  margin-bottom: 2.25rem;
}
@media (min-width: 768px) {
  .site-footer__contact {
    align-items: normal;
    display: flex;
    justify-content: normal;
    gap: 3rem;
  }
}
.site-footer__contact-details {
  font-style: normal;
}
.site-footer__subheading {
  font-weight: 600;
}
@media (min-width: 768px) {
  .site-footer__subheading {
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.25rem;
    margin: 0 0 1.5rem 0;
  }
}
.site-footer__email {
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.125rem;
  color: #fff;
  text-decoration: none;
  margin: 1rem 0;
}
@media (min-width: 768px) {
  .site-footer__email {
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.25rem;
  }
}
.site-footer__copyright {
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.125rem;
  display: inline-block;
  margin: 0.5rem 0;
}
@media (min-width: 768px) {
  .site-footer__copyright {
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.25rem;
  }
}/*# sourceMappingURL=bio.css.map */