html {
  font-size: 16px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: #fff;
  color: #fff;
  font-family: "Chakra Petch", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1;
  display: flex;
}

h1, h2, h3 {
  font-weight: 400;
}

a {
  color: #fff;
  text-decoration: none;
}

.bio {
  z-index: 2;
  top: 0;
  height: 7rem;
  width: 100%;
  padding: 1rem;
  display: flex;
  align-items: center;
  align-content: stretch;
  justify-content: flex-start;
  background: #272727;
}
.bio__mug {
  margin-right: 1rem;
  flex-shrink: 1;
  left: 0;
  position: relative;
  height: 100%;
  border-radius: 50%;
}
.bio__info {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-self: center;
  color: #fff;
}
.bio__info__name {
  font-weight: 700;
  font-size: 3rem;
}
.bio__info__tag {
  font-weight: 400;
  font-size: 1rem;
  border-top: 0.1rem solid #26d1f4;
  padding: 0.5rem 0 0 0;
  margin: 0.5rem 0 0 0;
}

body {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#bgVid {
  position: fixed;
  min-width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}

.filter__btns {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 75vw;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  row-gap: 0.5rem;
  color: #fff;
  padding: 1rem 0 0 0;
}

.filter__btn {
  background-color: #272727;
  padding: 0.5rem 0.5rem;
  border-radius: 0.5rem;
  cursor: pointer;
  text-align: center;
  text-wrap: nowrap;
  transition: all 0.25s ease-in-out;
}
.filter__btn.active {
  background-color: #26d1f4;
  color: #000;
}

.filter__panels {
  width: 75vw;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem 2rem;
  justify-items: stretch;
  padding: 0 0 4rem 0;
}

.filter__panel {
  margin: 1rem;
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  visibility: hidden;
  opacity: 0;
  transition: all 0.25s ease-in-out;
}
.filter__panel a {
  position: relative;
  width: 100%;
}
.filter__panel--link {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  width: 100%;
}
.filter__panel--link::after {
  content: "";
  pointer-events: none;
  position: absolute;
  top: 30%;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(0deg, rgba(39, 39, 39, 0.9) 65%, rgba(39, 39, 39, 0) 100%);
  opacity: 1;
  transition: all 0.25s ease-in-out;
}
.filter__panel--link * {
  -o-object-fit: cover;
     object-fit: cover;
  width: calc(75vw - 2rem);
  height: calc(75vw - 2rem);
}
.filter__panel--link a {
  pointer-events: none;
}
.filter__panel--link:hover::after {
  top: 0%;
  opacity: 1;
}
.filter__panel--link:hover a {
  pointer-events: auto;
}
.filter__panel--link:hover + .filter__panel__info {
  bottom: 35%;
  transition: all 0.25s ease-in-out;
}
.filter__panel--link:hover + .filter__panel__info .filter__panel__info--flavour {
  opacity: 1;
}
.filter__panel__info {
  pointer-events: none;
  position: absolute;
  bottom: 0;
  margin: 0 0 5% 0;
  padding: 0 5%;
  display: flex;
  flex-direction: column;
  color: #fff;
  transition: all 0.25s ease-in-out;
}
.filter__panel__info--title {
  text-wrap: balance;
  font-weight: 1000;
  font-size: 5cqw;
}
.filter__panel__info--tags {
  margin-top: 0.2rem;
  border-top: 0.1rem solid #26d1f4;
  padding-top: 0.2rem;
  font-size: 4cqw;
}
.filter__panel__info--flavour {
  font-size: 3cqw;
  text-wrap: balance;
  position: absolute;
  width: 90%;
  top: 110%;
  opacity: 0;
  transition: all 0.25s ease-in-out;
}
.filter__panel.active {
  position: relative;
  visibility: visible;
  opacity: 1;
}

footer {
  position: fixed;
  font-size: 1rem;
  z-index: 2;
  bottom: 0;
  width: 100%;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #272727;
  color: #fff;
}
footer .social-icons a {
  padding: 0.4rem;
  transition: all 0.25s ease-in-out;
}
footer .social-icons a:hover {
  color: #26d1f4;
}
footer .copyright {
  text-align: right;
}

@media screen and (min-width: 768px) {
  .filter__panels {
    grid-template-columns: repeat(2, 1fr);
  }
  .filter__panel--link * {
    width: calc((75vw - 2rem) / 2 - 2rem);
    height: calc((75vw - 2rem) / 2 - 2rem);
  }
  .filter__panel__info--title {
    font-size: 2.5cqw;
  }
  .filter__panel__info--tags {
    font-size: 2cqw;
  }
  .filter__panel__info--flavour {
    font-size: 1.5cqw;
  }
}
@media screen and (min-width: 1080px) {
  .filter__panels {
    grid-template-columns: repeat(3, 1fr);
  }
  .filter__panel--link * {
    width: calc((75vw - 4rem) / 3 - 2rem);
    height: calc((75vw - 4rem) / 3 - 2rem);
  }
  .filter__panel__info--title {
    font-size: 1.6666666667cqw;
  }
  .filter__panel__info--tags {
    font-size: 1.3333333333cqw;
  }
  .filter__panel__info--flavour {
    font-size: 1cqw;
  }
}
@media screen and (min-width: 1600px) {
  .filter__panels {
    grid-template-columns: repeat(4, 1fr);
  }
  .filter__panel--link * {
    width: calc((75vw - 6rem) / 4 - 2rem);
    height: calc((75vw - 6rem) / 4 - 2rem);
  }
  .filter__panel__info--title {
    font-size: 1.25cqw;
  }
  .filter__panel__info--tags {
    font-size: 1cqw;
  }
  .filter__panel__info--flavour {
    font-size: 0.75cqw;
  }
}
@media screen and (min-width: 2560px) {
  html {
    font-size: 24px;
  }
}
@media screen and (min-width: 3440px) {
  html {
    font-size: 32px;
  }
}
@media (hover: none) {
  .filter__panel--link::after {
    opacity: 1;
  }
  .filter__panel--link a {
    pointer-events: auto;
  }
  .filter__panel__info {
    transition: all 0.25s ease-in-out;
  }
  .filter__panel__info .filter__panel__info--flavour {
    opacity: 0;
  }
}/*# sourceMappingURL=main.css.map */