@-webkit-keyframes fadeIntoRight {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }
  70% {
    transform: translateX(5%);
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fadeIntoRight {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }
  70% {
    transform: translateX(5%);
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@font-face {
  font-family: "AvenirNextLTPro";
  src: url("../assets/fonts/AvenirNextLTPro-Regular.otf") format("opentype"), url("../assets/fonts/Alternative files/AvenirNextLTPro.ttf") format("truetype");
  font-weight: 400;
}
@font-face {
  font-family: "AvenirNextLTPro";
  src: url("../assets/fonts/AvenirNextLTPro-Bold.otf") format("opentype"), url("../assets/fonts/Alternative files/AvenirNextLTProBold.ttf") format("truetype");
  font-weight: 600;
}
@font-face {
  font-family: "AvenirNextLTPro";
  src: url("../assets/fonts/AvenirNextLTPro-Demi.otf") format("opentype"), url("../assets/fonts/Alternative files/AvenirNextLTProDemi.ttf") format("truetype");
  font-weight: 600;
}
body {
  box-sizing: border-box;
  font-family: "AvenirNextLTPro", sans-serif;
  color: #323232;
  background: #323232;
  overflow-x: hidden;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

.heading-primary, .banner__heading {
  font-size: 1.5rem;
  line-height: 32px;
  font-weight: 700;
}
@media (min-width: 48em) {
  .heading-primary, .banner__heading {
    font-size: 3.75rem;
    line-height: 4.25rem;
  }
}

.heading-secondary {
  padding: 1.5rem 0 0.9375rem 0;
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 700;
}
@media (min-width: 48em) {
  .heading-secondary {
    padding: 3rem 0 2.25rem 0;
  }
}
@media (min-width: 48em) {
  .heading-secondary {
    font-size: 2.25rem;
    line-height: 2.75rem;
  }
}

.heading-tertiary {
  font-size: 0.875rem;
  line-height: 1.375rem;
  font-weight: 600;
}
@media (min-width: 48em) {
  .heading-tertiary {
    font-size: 1.5rem;
    line-height: 2rem;
  }
}

.paragraph, .about__content, .form__name, .form__comment, .comment, .footer-text, .footer {
  font-size: 0.8125rem;
  line-height: 1.125rem;
  font-weight: 400;
}
@media (min-width: 48em) {
  .paragraph, .about__content, .form__name, .form__comment, .comment, .footer-text, .footer {
    line-height: 1.375rem;
  }
}

@media (min-width: 48em) {
  .footer-text, .footer {
    line-height: 1.25rem;
  }
}

.label-text {
  font-size: 0.625rem;
  line-height: 1.25rem;
  font-weight: 700;
}
@media (min-width: 48em) {
  .label-text {
    font-size: 0.75rem;
  }
}

.visually-hidden {
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.container, .about__content, .gallery__container, .comments__container, .banner__container, .footer__container, .nav__container {
  width: 100%;
  max-width: 63.75rem;
}

.container--small, .comments__container--small, .comments__list {
  width: 100%;
  max-width: 37.5rem;
}

.header {
  display: flex;
  flex-direction: column;
  min-height: 65vh;
}
@media (min-width: 48em) {
  .header {
    min-height: 83vh;
  }
}
@media (min-width: 80em) {
  .header {
    min-height: 90vh;
  }
}

.nav {
  padding: 1.5rem 0 0 0;
  display: flex;
  justify-content: center;
  -webkit-animation-name: fadeIntoRight;
          animation-name: fadeIntoRight;
  -webkit-animation-duration: 1.25s;
          animation-duration: 1.25s;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
  gap: 1rem;
}
@media (min-width: 48em) {
  .nav {
    padding: 0 2.5rem 0 2.5rem;
  }
}
.nav__sticky {
  position: fixed;
  width: 100%;
  z-index: 1000;
  background-color: #323232;
}
.nav__container {
  gap: 1rem;
  display: flex;
  flex-direction: column;
}
@media (min-width: 48em) {
  .nav__container {
    flex-direction: row;
    align-items: center;
    gap: 2.5rem;
  }
}
.nav__logo-box {
  align-self: center;
  min-width: 7.5rem;
  max-height: 1.25rem;
}
.nav__logo {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.nav__list {
  white-space: nowrap;
  display: flex;
  list-style: none;
}
@media (min-width: 48em) {
  .nav__list {
    gap: 1.5rem;
  }
}
.nav__item {
  flex-basis: 50%;
  text-align: center;
}
.nav__link {
  width: 100%;
  position: relative;
  text-decoration: none;
  color: #e1e1e1;
  display: inline-block;
  padding: 1rem 0.5rem;
}
@media (min-width: 48em) {
  .nav__link {
    padding: 2rem 1rem;
  }
}
.nav__link:hover {
  color: #ffffff;
}
.nav__link::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  border-bottom: 3px solid #ffffff;
  transform: scaleX(0);
  transition: transform 0.2s;
  transform-origin: 0% 50%;
}
.nav__link:hover::before {
  transform: scaleX(1);
}
.nav__link--active {
  position: relative;
  color: #ffffff;
  font-weight: 700;
}
.nav__link--active::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  border-bottom: 3px solid #ffffff;
}

.footer {
  background-color: #323232;
  color: #e1e1e1;
  padding: 0 1.5rem 2rem 1.5rem;
  display: flex;
  justify-content: center;
}
@media (min-width: 48em) {
  .footer {
    padding: 0 2.5rem 2rem 2.5rem;
  }
}
.footer__container {
  gap: 1.5rem;
  display: flex;
  flex-direction: column;
}
@media (min-width: 48em) {
  .footer__container {
    gap: 0;
  }
}
.footer__social-media {
  display: flex;
  flex-direction: column;
}
@media (min-width: 48em) {
  .footer__social-media {
    flex-direction: row;
    align-items: baseline;
    gap: 2rem;
  }
}
.footer__heading {
  font-weight: 600;
  color: #ffffff;
}
.footer__social-list {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}
@media (min-width: 48em) {
  .footer__social-list {
    gap: 2rem;
  }
}
.footer__social-link {
  display: inline-block;
  height: 1.5rem;
}
.footer__social-icon {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.footer__contacts {
  display: flex;
  flex-direction: column;
  margin-top: 0.5rem;
  gap: 0.5rem;
}
@media (min-width: 48em) {
  .footer__contacts {
    flex-direction: row;
    gap: 2rem;
  }
}
.footer__contact-person {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font-style: normal;
}
.footer__contact-person:not(:last-child) {
  margin-bottom: 1.5rem;
}
@media (min-width: 48em) {
  .footer__contact-person {
    gap: 1rem;
    margin-bottom: 2rem;
  }
  .footer__contact-person:not(:last-child) {
    margin-right: 3rem;
  }
}
.footer__name {
  color: #ffffff;
  font-weight: 600;
}
.footer__email {
  text-decoration: none;
  color: inherit;
}
.footer__copyright {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer__logo-box {
  height: 1.25rem;
  width: 7.5rem;
}
@media (min-width: 48em) {
  .footer__logo-box {
    order: -1;
    align-self: flex-end;
    transform: translateY(4.85rem);
  }
}
.footer__logo {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.banner {
  flex: 1;
  display: flex;
  justify-content: center;
  color: #ffffff;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 0 1.5rem;
}
@media (min-width: 48em) {
  .banner {
    padding: 0 2.5rem;
  }
}
.banner--home {
  background-image: linear-gradient(to right, rgba(50, 50, 50, 0.5), rgba(50, 50, 50, 0.5)), url("../../assets/images/hero-bio.jpg");
}
.banner--show {
  background-image: linear-gradient(to right, rgba(50, 50, 50, 0.5), rgba(50, 50, 50, 0.5)), url("../../assets/images/hero-shows.jpg");
}
.banner__container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
  -webkit-animation-name: fadeIntoRight;
          animation-name: fadeIntoRight;
  -webkit-animation-duration: 1.6s;
          animation-duration: 1.6s;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
}
@media (min-width: 48em) {
  .banner__container {
    gap: 2rem;
  }
}
@media (min-width: 80em) {
  .banner__container {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 4rem;
  }
}
.banner__heading {
  width: 90%;
}
@media (min-width: 48em) {
  .banner__heading {
    width: 65%;
  }
}
@media (min-width: 80em) {
  .banner__heading {
    width: 75%;
    transform: translateY(-1.8rem);
  }
}
.banner__heading--small {
  font-size: 0.9rem;
  display: block;
}
@media (min-width: 48em) {
  .banner__heading--small {
    font-size: 1.5rem;
  }
}
.banner__iframe {
  width: 100%;
  max-height: 7rem;
  border: none;
  border-radius: 0.25rem;
}
@media (min-width: 48em) {
  .banner__iframe {
    width: 70%;
    min-height: 12rem;
  }
}

.gallery__item {
  border-radius: 0.25rem;
  overflow: hidden;
  position: relative;
  flex-basis: calc(100% / 1);
  aspect-ratio: 16/9;
  filter: grayscale(65%);
  transition: all 0.2s;
}
.gallery__item:hover {
  filter: grayscale(0);
}
@media (min-width: 48em) {
  .gallery__item {
    flex-basis: calc(100% / 3 - 1.5rem);
  }
  .gallery__item:hover {
    transform: scale(1.05);
    box-shadow: 5px 5px 5px 0px rgba(0, 0, 0, 0.4);
  }
}
.gallery__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.form {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.form__group {
  min-height: 2.25rem;
  row-gap: 0.25rem;
  display: flex;
  flex-direction: column;
}
@media (min-width: 48em) {
  .form__group {
    min-height: 3rem;
  }
}
.form__label {
  color: #e1e1e1;
}
.form__name, .form__comment {
  font-family: inherit;
  border: none;
  border-radius: 0.3125rem;
  padding: 0.75rem;
  outline: 1px solid #e1e1e1;
}
.form__name::-moz-placeholder, .form__comment::-moz-placeholder {
  color: #323232;
  opacity: 0.9;
}
.form__name:-ms-input-placeholder, .form__comment:-ms-input-placeholder {
  color: #323232;
  opacity: 0.9;
}
.form__name::placeholder, .form__comment::placeholder {
  color: #323232;
  opacity: 0.9;
}
.form__name:focus, .form__comment:focus {
  outline: 1px solid #323232;
}
@media (min-width: 48em) {
  .form__name, .form__comment {
    padding: 1rem;
  }
}
.form__btn {
  align-self: flex-end;
}
.form__error {
  outline: 1px solid #d22d2d;
}

.comment {
  display: flex;
  padding: 2rem 0;
  gap: 1rem;
  border-bottom: 1px solid #e1e1e1;
}
@media (min-width: 48em) {
  .comment {
    gap: 1.5rem;
  }
}
.comment__avatar {
  border-radius: 50%;
  max-width: 3rem;
  max-height: 3rem;
  -o-object-fit: cover;
     object-fit: cover;
}
.comment__text-box {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 1rem;
}
@media (min-width: 48em) {
  .comment__text-box {
    gap: 0.5rem;
  }
}
.comment__author {
  flex: 1;
  font-weight: 600;
}
.comment__date {
  color: #afafaf;
}
.comment__text {
  flex-basis: 100%;
}
.comment__delete-btn {
  cursor: pointer;
  padding: 0.5rem 1.5rem;
  background-color: lightcoral;
  color: white;
  border: none;
  border-radius: 0.3rem;
  transition: all 0.2s;
}
.comment__delete-btn:hover {
  background-color: #e96c6c;
}

.show {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #e1e1e1;
  margin: 0 -1.5rem;
  padding: 1rem 1.5rem;
  gap: 1rem;
}
@media (min-width: 48em) {
  .show {
    gap: 0;
    flex-direction: row;
  }
}
@media (min-width: 80em) {
  .show {
    padding: 1.5rem 1.125rem;
  }
}
.show--hover {
  background-color: #fafafa;
}
.show--active {
  background-color: #e1e1e1;
}
.show__text-box {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.5rem;
}
.show__title {
  color: #afafaf;
}
@media (min-width: 48em) {
  .show__title {
    display: none;
  }
}
@media (min-width: 48em) {
  .show__title--first {
    display: block;
    position: absolute;
    transform: translate(0.8rem, -4rem);
  }
}
.show__date {
  font-weight: 600;
}
.btn, .form__btn, .show__btn {
  border: none;
  border-radius: 0.25rem;
  cursor: pointer;
  min-height: 2.5rem;
  min-width: 9.375rem;
  display: inline-block;
  padding: 1rem 2rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #ffffff;
  background-color: #323232;
}
.btn:hover, .form__btn:hover, .show__btn:hover {
  background-color: #000000;
}

.about,
.gallery,
.comments {
  padding: 0 1.5rem 2rem 1.5rem;
}
@media (min-width: 48em) {
  .about,
.gallery,
.comments {
    padding: 0 2.5rem 2.5rem 2.5rem;
  }
}

.about {
  background: #ffffff;
  display: flex;
  justify-content: center;
}
.about__content {
  gap: 1.5rem;
  display: flex;
  flex-direction: column;
}
@media (min-width: 48em) {
  .about__content {
    padding: 0 3rem;
  }
}
.about__img-box {
  aspect-ratio: 16/9;
  min-height: 20vw;
  box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.3);
  border-radius: 0.5rem;
  overflow: hidden;
}
@media (min-width: 48em) {
  .about__img-box {
    margin-bottom: 1rem;
  }
}
.about__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about__blockquote {
  gap: 0.8rem;
  margin-bottom: 1rem;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.5;
  display: flex;
  flex-direction: column;
}
@media (min-width: 48em) {
  .about__blockquote {
    font-size: 1.4rem;
  }
}
.about__citation {
  font-weight: 600;
  font-size: 1rem;
}
.about__article {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.about__textbox {
  margin-top: 0.5rem;
  gap: 1rem;
  display: flex;
  flex-direction: column;
}
@media (min-width: 48em) {
  .about__textbox {
    flex-direction: row;
    justify-content: center;
    gap: 2rem;
  }
}

.gallery {
  background-color: #fafafa;
  display: flex;
  justify-content: center;
}
.gallery__inner-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.comments {
  background-color: #ffffff;
  align-items: center;
  display: flex;
  flex-direction: column;
}
.comments__container--small {
  display: flex;
  gap: 1rem;
  border-bottom: 1px solid #e1e1e1;
  padding-bottom: 1.5rem;
}
@media (min-width: 48em) {
  .comments__container--small {
    gap: 1.5rem;
  }
}
.comments__user-photo {
  border-radius: 50%;
  max-width: 3rem;
  max-height: 3rem;
  margin-top: 1rem;
  -o-object-fit: cover;
     object-fit: cover;
}
.comments__list {
  list-style: none;
}/*# sourceMappingURL=bio.css.map */