:root {
  --almost-black: #111;
}

.serif {
  font-family: "Cormorant Garamond", serif;
}

.sans-serif {
  font-family: "Satoshi";
}

.btn-primary-play {
  border-radius: 200px;
  box-shadow: none;
  display: block;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 1.3em 0.3em;
  border: 1pt solid black;
  transition: 0.3s all ease-in-out;
  background-color: transparent;
  cursor: pointer;
}
.btn-primary-play:hover {
  background-color: var(--black);
  transition: 0.3s all ease-in-out;
}
.btn-primary-play:hover svg {
  fill: var(--client-color-primary);
  transition: 0.3s all ease-in-out;
}
.btn-primary-play svg {
  fill: var(--black);
  display: block;
  width: 20px;
  height: 100%;
}
@media screen and (min-width: 678px) {
  .btn-primary-play svg {
    width: 25px;
  }
}
@media screen and (min-width: 1200px) {
  .btn-primary-play svg {
    width: 20px;
  }
}
@media screen and (min-width: 1800px) {
  .btn-primary-play svg {
    width: 25px;
  }
}
@media screen and (min-width: 2100px) {
  .btn-primary-play svg {
    width: 30px;
  }
}

.btn-secondary {
  transition: 0.3s all ease-in-out;
  background-color: transparent;
  border-radius: 200px;
  border: 1pt solid black;
  box-shadow: none;
  color: var(--black);
  cursor: pointer;
  font-size: 1rem;
  display: block;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 0.25em 0.75em;
  text-decoration: none;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 1rem;
}
.btn-secondary:hover {
  background-color: var(--black);
  color: var(--light);
  transition: 0.3s all ease-in-out;
  cursor: pointer;
}

.btn-carousel-after {
  background-color: none;
  background: none;
  box-shadow: none;
  cursor: pointer;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  outline: none;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  z-index: 5;
  border: none;
  margin-left: 1.5rem;
}
@media screen and (min-width: 1025px) {
  .btn-carousel-after {
    margin-left: initial;
  }
}
.btn-carousel-after svg {
  width: 30px;
  cursor: pointer;
  display: block;
  fill: var(--black);
}
@media screen and (min-width: 1025px) {
  .btn-carousel-after svg {
    width: 100%;
    margin-top: 10px;
    margin-left: initial;
  }
}
.btn-carousel-after:hover {
  opacity: 0.8;
  transition: 0.3s all ease-in-out;
}

.btn-carousel {
  background-color: none;
  background: none;
  box-shadow: none;
  cursor: pointer;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  outline: none;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  z-index: 5;
  border: none;
  transition: 0.3s all ease-in-out;
}
.btn-carousel svg {
  width: 30px;
  cursor: pointer;
  display: block;
  fill: var(--black);
  transform: rotate(180deg);
}
@media screen and (min-width: 1025px) {
  .btn-carousel svg {
    width: 100%;
  }
}
.btn-carousel:hover {
  opacity: 0.8;
  transition: 0.3s all ease-in-out;
}

.no-pointer-events {
  pointer-events: none;
}

.carousel-status {
  white-space: nowrap;
}

.container {
  width: 100%;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: -1;
}

.x {
  -webkit-animation: x 8s linear infinite alternate;
          animation: x 8s linear infinite alternate;
}

.y {
  -webkit-animation: y 5s linear infinite alternate;
          animation: y 5s linear infinite alternate;
}

@-webkit-keyframes x {
  100% {
    transform: translateX(calc(100vw - var(--size)));
  }
}

@keyframes x {
  100% {
    transform: translateX(calc(100vw - var(--size)));
  }
}
@-webkit-keyframes y {
  100% {
    transform: translateY(calc(100vh - var(--size)));
  }
}
@keyframes y {
  100% {
    transform: translateY(calc(100vh - var(--size)));
  }
}
.ball {
  position: absolute;
  pointer-events: none;
  height: var(--size);
  width: var(--size);
}
.ball img {
  height: 20vh;
  mix-blend-mode: multiply;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (min-width: 1025px) {
  .ball img {
    height: 30vh;
  }
}
@media screen and (min-width: 2000px) {
  .ball img {
    height: 40vh;
  }
}

.letter-title {
  align-items: center;
  display: flex;
  padding-bottom: 1em;
}
.letter-title .letter-word:first-letter {
  text-transform: uppercase;
}
.letter-title .letter-abaco {
  align-items: center;
  display: flex;
  height: 1.5em;
  justify-content: center;
  text-transform: uppercase;
  width: 1.5em;
}
.letter-title .letter-separator {
  padding: 0 0.5em;
}

video {
  width: 100%;
  height: 100%;
}

.play-button-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: auto;
  pointer-events: none;
  z-index: 10;
}
.play-button-wrapper .play-gif {
  cursor: pointer;
  pointer-events: auto;
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.play-button-wrapper .play-gif svg {
  width: 60px;
  height: 60px;
  fill: #fff;
  stroke: #fff;
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  opacity: 0.9;
}
@media screen and (min-width: 1024px) {
  .play-button-wrapper .play-gif svg {
    width: 100px;
    height: 100px;
  }
}

:root {
  --almost-black: #111;
}

.serif {
  font-family: "Cormorant Garamond", serif;
}

.sans-serif {
  font-family: "Satoshi";
}

.btn-primary-play {
  border-radius: 200px;
  box-shadow: none;
  display: block;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 1.3em 0.3em;
  border: 1pt solid black;
  transition: 0.3s all ease-in-out;
  background-color: transparent;
  cursor: pointer;
}
.btn-primary-play:hover {
  background-color: var(--black);
  transition: 0.3s all ease-in-out;
}
.btn-primary-play:hover svg {
  fill: var(--client-color-primary);
  transition: 0.3s all ease-in-out;
}
.btn-primary-play svg {
  fill: var(--black);
  display: block;
  width: 20px;
  height: 100%;
}
@media screen and (min-width: 678px) {
  .btn-primary-play svg {
    width: 25px;
  }
}
@media screen and (min-width: 1200px) {
  .btn-primary-play svg {
    width: 20px;
  }
}
@media screen and (min-width: 1800px) {
  .btn-primary-play svg {
    width: 25px;
  }
}
@media screen and (min-width: 2100px) {
  .btn-primary-play svg {
    width: 30px;
  }
}

.btn-secondary {
  transition: 0.3s all ease-in-out;
  background-color: transparent;
  border-radius: 200px;
  border: 1pt solid black;
  box-shadow: none;
  color: var(--black);
  cursor: pointer;
  font-size: 1rem;
  display: block;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 0.25em 0.75em;
  text-decoration: none;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 1rem;
}
.btn-secondary:hover {
  background-color: var(--black);
  color: var(--light);
  transition: 0.3s all ease-in-out;
  cursor: pointer;
}

.btn-carousel-after {
  background-color: none;
  background: none;
  box-shadow: none;
  cursor: pointer;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  outline: none;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  z-index: 5;
  border: none;
  margin-left: 1.5rem;
}
@media screen and (min-width: 1025px) {
  .btn-carousel-after {
    margin-left: initial;
  }
}
.btn-carousel-after svg {
  width: 30px;
  cursor: pointer;
  display: block;
  fill: var(--black);
}
@media screen and (min-width: 1025px) {
  .btn-carousel-after svg {
    width: 100%;
    margin-top: 10px;
    margin-left: initial;
  }
}
.btn-carousel-after:hover {
  opacity: 0.8;
  transition: 0.3s all ease-in-out;
}

.btn-carousel {
  background-color: none;
  background: none;
  box-shadow: none;
  cursor: pointer;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  outline: none;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  z-index: 5;
  border: none;
  transition: 0.3s all ease-in-out;
}
.btn-carousel svg {
  width: 30px;
  cursor: pointer;
  display: block;
  fill: var(--black);
  transform: rotate(180deg);
}
@media screen and (min-width: 1025px) {
  .btn-carousel svg {
    width: 100%;
  }
}
.btn-carousel:hover {
  opacity: 0.8;
  transition: 0.3s all ease-in-out;
}

.no-pointer-events {
  pointer-events: none;
}

.carousel-status {
  white-space: nowrap;
}

.container {
  width: 100%;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: -1;
}

.x {
  -webkit-animation: x 8s linear infinite alternate;
          animation: x 8s linear infinite alternate;
}

.y {
  -webkit-animation: y 5s linear infinite alternate;
          animation: y 5s linear infinite alternate;
}

@keyframes x {
  100% {
    transform: translateX(calc(100vw - var(--size)));
  }
}
@keyframes y {
  100% {
    transform: translateY(calc(100vh - var(--size)));
  }
}
.ball {
  position: absolute;
  pointer-events: none;
  height: var(--size);
  width: var(--size);
}
.ball img {
  height: 20vh;
  mix-blend-mode: multiply;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (min-width: 1025px) {
  .ball img {
    height: 30vh;
  }
}
@media screen and (min-width: 2000px) {
  .ball img {
    height: 40vh;
  }
}

.letter-title {
  align-items: center;
  display: flex;
  padding-bottom: 1em;
}
.letter-title .letter-word:first-letter {
  text-transform: uppercase;
}
.letter-title .letter-abaco {
  align-items: center;
  display: flex;
  height: 1.5em;
  justify-content: center;
  text-transform: uppercase;
  width: 1.5em;
}
.letter-title .letter-separator {
  padding: 0 0.5em;
}

video {
  width: 100%;
  height: 100%;
}

.play-button-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: auto;
  pointer-events: none;
  z-index: 10;
}
.play-button-wrapper .play-gif {
  cursor: pointer;
  pointer-events: auto;
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.play-button-wrapper .play-gif svg {
  width: 60px;
  height: 60px;
  fill: #fff;
  stroke: #fff;
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  opacity: 0.9;
}
@media screen and (min-width: 1024px) {
  .play-button-wrapper .play-gif svg {
    width: 100px;
    height: 100px;
  }
}

.gallery-project {
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.gallery-project .flickity-viewport,
.gallery-project .flickity-slider {
  height: 100%;
}
.gallery-project .gallery-project-item {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  pointer-events: all;
}
.gallery-project .gallery-project-item .gallery-image {
  height: 30vh;
  width: 100%;
  position: absolute;
  z-index: 5;
  top: 0;
}
@media screen and (min-width: 648px) {
  .gallery-project .gallery-project-item .gallery-image {
    height: 40vh;
  }
}
@media screen and (min-width: 967px) {
  .gallery-project .gallery-project-item .gallery-image {
    height: 55vh;
  }
}
.gallery-project .gallery-project-item .gallery-image img,
.gallery-project .gallery-project-item .gallery-image video {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
}

.audio-navbar {
  position: absolute;
  padding: 10px;
  width: 100%;
  margin-top: auto;
  bottom: 0;
}
.audio-navbar .audio-inner {
  width: 100%;
}

.carousel-controller {
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: space-between;
  margin-top: 1rem;
}
@media screen and (min-width: 967px) {
  .carousel-controller {
    flex-direction: column;
    margin-top: initial;
  }
}
.carousel-controller .btn-carousel-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
@media screen and (min-width: 1025px) {
  .carousel-controller .btn-carousel-wrapper {
    flex-direction: column;
  }
}

.slider-is-single {
  visibility: hidden;
}

:root {
  --almost-black: #111;
}

.serif {
  font-family: "Cormorant Garamond", serif;
}

.sans-serif {
  font-family: "Satoshi";
}

.btn-primary-play {
  border-radius: 200px;
  box-shadow: none;
  display: block;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 1.3em 0.3em;
  border: 1pt solid black;
  transition: 0.3s all ease-in-out;
  background-color: transparent;
  cursor: pointer;
}
.btn-primary-play:hover {
  background-color: var(--black);
  transition: 0.3s all ease-in-out;
}
.btn-primary-play:hover svg {
  fill: var(--client-color-primary);
  transition: 0.3s all ease-in-out;
}
.btn-primary-play svg {
  fill: var(--black);
  display: block;
  width: 20px;
  height: 100%;
}
@media screen and (min-width: 678px) {
  .btn-primary-play svg {
    width: 25px;
  }
}
@media screen and (min-width: 1200px) {
  .btn-primary-play svg {
    width: 20px;
  }
}
@media screen and (min-width: 1800px) {
  .btn-primary-play svg {
    width: 25px;
  }
}
@media screen and (min-width: 2100px) {
  .btn-primary-play svg {
    width: 30px;
  }
}

.btn-secondary {
  transition: 0.3s all ease-in-out;
  background-color: transparent;
  border-radius: 200px;
  border: 1pt solid black;
  box-shadow: none;
  color: var(--black);
  cursor: pointer;
  font-size: 1rem;
  display: block;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 0.25em 0.75em;
  text-decoration: none;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 1rem;
}
.btn-secondary:hover {
  background-color: var(--black);
  color: var(--light);
  transition: 0.3s all ease-in-out;
  cursor: pointer;
}

.btn-carousel-after {
  background-color: none;
  background: none;
  box-shadow: none;
  cursor: pointer;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  outline: none;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  z-index: 5;
  border: none;
  margin-left: 1.5rem;
}
@media screen and (min-width: 1025px) {
  .btn-carousel-after {
    margin-left: initial;
  }
}
.btn-carousel-after svg {
  width: 30px;
  cursor: pointer;
  display: block;
  fill: var(--black);
}
@media screen and (min-width: 1025px) {
  .btn-carousel-after svg {
    width: 100%;
    margin-top: 10px;
    margin-left: initial;
  }
}
.btn-carousel-after:hover {
  opacity: 0.8;
  transition: 0.3s all ease-in-out;
}

.btn-carousel {
  background-color: none;
  background: none;
  box-shadow: none;
  cursor: pointer;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  outline: none;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  z-index: 5;
  border: none;
  transition: 0.3s all ease-in-out;
}
.btn-carousel svg {
  width: 30px;
  cursor: pointer;
  display: block;
  fill: var(--black);
  transform: rotate(180deg);
}
@media screen and (min-width: 1025px) {
  .btn-carousel svg {
    width: 100%;
  }
}
.btn-carousel:hover {
  opacity: 0.8;
  transition: 0.3s all ease-in-out;
}

.no-pointer-events {
  pointer-events: none;
}

.carousel-status {
  white-space: nowrap;
}

.container {
  width: 100%;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: -1;
}

.x {
  -webkit-animation: x 8s linear infinite alternate;
          animation: x 8s linear infinite alternate;
}

.y {
  -webkit-animation: y 5s linear infinite alternate;
          animation: y 5s linear infinite alternate;
}

@keyframes x {
  100% {
    transform: translateX(calc(100vw - var(--size)));
  }
}
@keyframes y {
  100% {
    transform: translateY(calc(100vh - var(--size)));
  }
}
.ball {
  position: absolute;
  pointer-events: none;
  height: var(--size);
  width: var(--size);
}
.ball img {
  height: 20vh;
  mix-blend-mode: multiply;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (min-width: 1025px) {
  .ball img {
    height: 30vh;
  }
}
@media screen and (min-width: 2000px) {
  .ball img {
    height: 40vh;
  }
}

.letter-title {
  align-items: center;
  display: flex;
  padding-bottom: 1em;
}
.letter-title .letter-word:first-letter {
  text-transform: uppercase;
}
.letter-title .letter-abaco {
  align-items: center;
  display: flex;
  height: 1.5em;
  justify-content: center;
  text-transform: uppercase;
  width: 1.5em;
}
.letter-title .letter-separator {
  padding: 0 0.5em;
}

video {
  width: 100%;
  height: 100%;
}

.play-button-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: auto;
  pointer-events: none;
  z-index: 10;
}
.play-button-wrapper .play-gif {
  cursor: pointer;
  pointer-events: auto;
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.play-button-wrapper .play-gif svg {
  width: 60px;
  height: 60px;
  fill: #fff;
  stroke: #fff;
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  opacity: 0.9;
}
@media screen and (min-width: 1024px) {
  .play-button-wrapper .play-gif svg {
    width: 100px;
    height: 100px;
  }
}

.filter-wrapper {
  z-index: 1;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  width: calc(100% - var(--page-space) * 2);
  margin-top: 4rem;
  position: absolute;
  font-size: var(--small-text);
}
@media screen and (min-width: 678px) {
  .filter-wrapper {
    margin-top: initial;
    width: 100%;
    position: relative;
  }
}
.filter-wrapper * {
  cursor: pointer;
}

.filter-inner {
  border: 1pt solid var(--black);
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 2rem;
  background-color: var(--secondary);
  position: relative;
  max-height: auto;
  transition: 0.3s all ease-in-out;
}
@media screen and (min-width: 678px) {
  .filter-inner {
    margin-top: initial;
    width: 75%;
  }
}
@media screen and (min-width: 1024px) {
  .filter-inner {
    margin-top: initial;
    width: 60%;
  }
}
.filter-inner .filter-navbar {
  display: flex;
  padding: 0.2em 0.5em;
  align-items: center;
  position: relative;
}
.filter-inner .filter-navbar .filter-eyebrow {
  width: 30%;
}
.filter-inner .filter-navbar .change-filter {
  text-transform: capitalize;
}
.filter-inner .arrow-filter {
  width: 30%;
  transition: 0.3s all ease-in-out;
}
.filter-inner .arrow-filter svg {
  display: block;
  width: 18px;
  margin: auto 0;
  pointer-events: none;
  fill: var(--almost-black);
  visibility: hidden;
  opacity: 0;
  transition: 0.3s all ease-in-out;
}
@media screen and (min-width: 1800px) {
  .filter-inner .arrow-filter svg {
    width: 25px;
  }
}
.filter-inner .is-focused {
  transition: 0.3s all ease-in-out;
}
.filter-inner .is-focused .arrow-filter svg {
  opacity: 1;
  visibility: visible;
  transition: 0.3s all ease-in-out;
}
.filter-inner .filter:hover .arrow-filter svg {
  opacity: 1;
  visibility: visible;
  transition: 0.3s all ease-in-out;
}
.filter-inner .filter-text {
  pointer-events: none;
  grid-column: 2/4;
}
.filter-inner .filter-text:first-letter {
  text-transform: uppercase;
}
.filter-inner .caret {
  margin-left: auto;
}
.filter-inner .caret svg {
  display: block;
  width: 20px;
  height: 100%;
  fill: var(--black);
}

li {
  cursor: pointer;
  list-style: none;
}
.filters {
  opacity: 0;
  position: relative;
  visibility: hidden;
  width: 100%;
  z-index: 10;
  height: 0;
  display: grid;
  cursor: pointer;
  background-color: var(--client-color-primary);
  border-top: 1px solid var(--black);
  position: relative;
}
.filters.show {
  opacity: 1;
  height: auto;
  visibility: visible;
  transition: 0.3s all ease-in-out;
}
.filters.show *:hover {
  opacity: 0.5;
  transition: 0.3s all ease-in-out;
}

.filter {
  padding: 0.5em;
  display: flex;
  align-items: center;
}
@media screen and (min-width: 678px) {
  .filter {
    padding: 0.2em 0.5em;
  }
}

.rotate .caret svg {
  transition: 0.3s all ease-in-out;
  transform: rotate(180deg);
}

/*  Needed for filters */
.hide-new {
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s all ease-in-out;
  transition: all 0.3s ease-in-out !important;
  overflow: hidden;
  max-height: 0;
}

.show-new {
  opacity: 1;
  max-height: auto;
  visibility: visible;
  transition: 0.3s all ease-in-out;
  transition: all 0.3s ease-in-out !important;
}

/*  // Needed for filters */
main {
  margin-top: 4rem;
}
@media screen and (min-width: 678px) {
  main {
    margin-top: 2rem;
  }
}
@media screen and (min-width: 678px) and (min-width: 678px) {
  main {
    margin-top: 8rem;
  }
}

@media screen and (min-width: 768px) {
  .only-mobile {
    display: none;
  }
}

.change-color,
.filter-change-color {
  background-color: var(--client-color-secondary) !important;
  transition: 0.3s all ease-in-out;
}

.accordion {
  width: 100%;
  transition: 0.3s all ease-in-out;
}
.accordion > * {
  cursor: pointer;
}

.accordion-wrapper {
  padding: var(--page-space) 0;
  padding-bottom: 0;
  background-color: none;
  width: 100%;
  border-bottom: 1pt solid var(--black);
  height: auto;
  transition: 0.3s all ease-in-out;
}
.accordion-wrapper .accordion-wrapper-inner {
  height: 100%;
}
.accordion-wrapper .accordion-navbar-item {
  display: none;
  width: 100%;
  padding: 0 var(--page-space);
  margin-bottom: 1em;
  pointer-events: none;
}
@media screen and (min-width: 678px) {
  .accordion-wrapper .accordion-navbar-item {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  }
}
.accordion-wrapper .accordion-navbar-inner {
  border-top: 1pt solid var(--black);
  display: grid;
  width: 100%;
  padding: 1em var(--page-space);
  align-items: center;
  font-size: var(--body-text);
  cursor: pointer;
}
.accordion-wrapper .accordion-navbar-inner .category-name {
  text-transform: capitalize;
}
.accordion-wrapper .accordion-navbar-inner .project-title {
  display: flex;
  justify-content: space-between;
  font-weight: bold;
}
.accordion-wrapper .accordion-navbar-inner .project-year {
  display: none;
}
@media screen and (min-width: 768px) {
  .accordion-wrapper .accordion-navbar-inner .project-year {
    display: block;
  }
}
.accordion-wrapper .accordion-navbar-inner .project-year-mobile {
  font-weight: normal;
}
@media screen and (min-width: 768px) {
  .accordion-wrapper .accordion-navbar-inner .project-year-mobile {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .accordion-wrapper .accordion-navbar-inner {
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  }
}
.accordion-wrapper .accordion-navbar-inner:hover {
  color: var(--black);
  border-top: 1pt solid var(--black);
  transition: 0.3s all ease-in-out;
  opacity: 0.5;
}
.accordion-wrapper .accordion-navbar-inner:hover .caret svg {
  fill: var(--black) !important;
  transition: 0.3s all ease-in-out;
  transform: rotate(180deg);
}
.accordion-wrapper .accordion-navbar {
  background-color: inherit;
  width: 100%;
  text-align: left;
  transition: 0.3s all ease-in-out;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
}
.accordion-wrapper .accordion-navbar:hover:after {
  border: 1px solid var(--black);
  background-color: var(--black);
  transition: 0.3s all ease-in-out;
}
.accordion-wrapper .accordion-navbar:hover .follow-mouse {
  visibility: visible;
  opacity: 1;
  z-index: -1;
  transition: all 0.3s ease-in-out;
}
.accordion-wrapper .accordion-navbar .follow-mouse {
  visibility: hidden;
  position: absolute;
  z-index: -1;
  opacity: 0;
  pointer-events: none;
}
@media screen and (max-width: 1025px) {
  .accordion-wrapper .accordion-navbar .follow-mouse {
    display: none !important;
  }
}
.accordion-wrapper .accordion-navbar .follow-mouse.is-hidden {
  display: none;
  pointer-events: none;
}
.accordion-wrapper .accordion-navbar .follow-mouse .overlay {
  background-color: var(--client-color-secondary);
  width: 100%;
  height: 100%;
  position: absolute;
}
.accordion-wrapper .accordion-navbar .img-hover {
  opacity: 0.5;
  display: block;
  filter: grayscale(1);
  mix-blend-mode: multiply;
  cursor: pointer;
  z-index: -1;
  pointer-events: none;
}
@media screen and (min-width: 1800px) {
  .accordion-wrapper .accordion-navbar .img-hover {
    height: 400px;
  }
}
@media screen and (min-width: 2100px) {
  .accordion-wrapper .accordion-navbar .img-hover {
    height: 500px;
  }
}
@media screen and (min-width: 2400px) {
  .accordion-wrapper .accordion-navbar .img-hover {
    height: 600px;
  }
}
.accordion-wrapper .accordion-navbar .accordion-navbar-inner {
  width: 100%;
}

button {
  padding: 0px;
}

.opened .accordion-navbar-inner {
  color: var(--black);
  border-top: 1pt solid var(--black);
  transition: 0.3s all ease-in-out;
}
.opened .caret svg {
  fill: var(--black) !important;
  transition: 0.3s all ease-in-out;
  transform: rotate(180deg);
}

.accordion-read-more {
  justify-content: space-between;
  display: flex;
  align-items: center;
}
.accordion-read-more .caret svg {
  display: block;
  width: 20px;
  height: 100%;
  fill: var(--black);
}

.accordion:hover {
  background-color: none;
}

.panel {
  background-color: none;
  max-height: 0;
  width: 100%;
  overflow: hidden;
  transition: 0.3s all ease-in-out;
  position: relative;
}
@media screen and (min-width: 967px) {
  .panel p {
    padding-right: 1em;
  }
}
.panel .panel-wrapper {
  display: grid;
  padding: var(--page-space);
}
@media screen and (min-width: 1025px) {
  .panel .panel-wrapper {
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  }
}
@media screen and (max-width: 1025px) {
  .panel .panel-wrapper .project-text {
    margin-top: 2rem;
  }
}
.panel .carousel-wrapper {
  height: 30vh;
  width: 100%;
}
@media screen and (min-width: 648px) {
  .panel .carousel-wrapper {
    height: 40vh;
  }
}
@media screen and (min-width: 1025px) {
  .panel .carousel-wrapper {
    height: 55vh;
    padding-right: 1em;
    grid-column: span 2;
  }
}
.panel .carousel-controller {
  width: 100%;
}
@media screen and (min-width: 1025px) {
  .panel .carousel-controller {
    height: 55vh;
  }
}
