:root {
  --color-menubar: #0f1222;
  --color-aside: #131930;
  --color-section: #0E1121;
  --color-text: #fff;
  --transition-ease: cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  padding: 0;
  background: black;
  color: #fff;
  font-family: "bilo", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  line-height: 1.5;
}

.logged-in {
  padding-top: 46px;
}

/* TYPOGRAPHY */
h1 {
  font-weight: 600;
  letter-spacing: 2rem;
  text-transform: uppercase;
}
h1.text-center {
  padding-left: 1rem;
}

h5 {
  font-weight: 600;
  letter-spacing: 0.5rem;
  text-transform: uppercase;
}

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

.text-center-last {
  -moz-text-align-last: center;
       text-align-last: center;
}

/* LAYOUT */
.row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
}

.col {
  display: flex;
  flex-direction: column;
  flex-basis: 100%;
  flex: 1;
}

/* MENU */
.site-menu-wrapper {
  margin: 0;
  padding: 0;
  position: fixed;
  top: 0;
  width: 100%;
  height: 3rem;
}

.site-logo {
  margin: auto;
}

@media screen and (min-width: 768px) {
  .site-logo {
    max-width: 82px;
  }
}
.link {
  font-weight: 800;
  letter-spacing: 0.5rem;
  text-transform: uppercase;
  padding-bottom: 6px;
  position: relative;
}
.link:after {
  content: "";
  height: 6px;
  width: 100%;
  background: white;
  position: absolute;
  bottom: 0;
}

.menu-btn {
  height: 24px;
  width: 48px;
  flex-direction: column;
  align-content: center;
  align-items: center;
  justify-content: space-between;
}
.menu-btn span {
  background: #fff;
  display: block;
  width: 26px;
  height: 4px;
  position: relative;
  transform: rotate(0);
  transition: all 0.5s var(--transition-ease);
  top: 0;
}

.show-menu .menu-btn span:nth-child(1) {
  transform: rotate(45deg);
  transform-origin: center;
  top: 11px;
}
.show-menu .menu-btn span:nth-child(2) {
  opacity: 0;
}
.show-menu .menu-btn span:nth-child(3) {
  transform: rotate(-45deg);
  transform-origin: center;
  top: -9px;
}

.site-menu-bar {
  background: var(--color-menubar);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  line-height: 3rem;
}

.site-menu-close svg {
  fill: #fff;
}

.site-menu-content {
  background: rgba(0, 0, 0, 0.9);
}

.site-menu-main .link {
  margin-bottom: 2rem;
  will-change: width;
}
.site-menu-main a:hover {
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
}

.site-menu {
  transition: transform 0.5s var(--transition-ease);
}
.site-menu .link svg {
  position: absolute;
  right: -4px;
}
.site-menu .link:after {
  width: 0;
  transition: width 0.5s var(--transition-ease);
}

@media (max-width: 768px) {
  .site-menu {
    transform: translateY(-100%);
  }
}
@media (min-width: 768px) {
  .site-menu {
    transform: translateX(-100%);
  }
}
.site-menu-content a {
  opacity: 0;
  transform: translate(0, -100%);
  transition: opacity 0.5s var(--transition-ease), transform 0.5s var(--transition-ease);
}

@media (min-width: 768px) {
  .site-menu-content a {
    transform: translate(-100%, 0);
  }
}
.show-menu .site-menu-backdrop {
  display: block;
}
.show-menu .site-menu {
  transform: translateY(0);
}
.show-menu .site-menu .link:after {
  width: 100%;
}
.show-menu .site-menu-content a {
  opacity: 1;
  transform: translate(0, 0);
}
.show-menu footer .link:after {
  transition-delay: 1.6s;
}
@media (min-width: 768px) {
  .show-menu .site-menu {
    transform: translateX(0);
  }
}

.header-menu .link {
  display: block;
}
.header-menu .link:after {
  left: 0;
  height: 4px;
}
.header-menu .link:hover {
  opacity: 0.75;
}
.header-menu .link:hover:after {
  width: 0;
  transition-delay: 0s !important;
}

.show-menu .header-menu .link {
  transition-delay: 0s;
}
.show-menu .header-menu .link:nth-child(1):after {
  transition-delay: 0.2s;
}
.show-menu .header-menu .link:nth-child(2):after {
  transition-delay: 0.4s;
}
.show-menu .header-menu .link:nth-child(3):after {
  transition-delay: 0.6s;
}
.show-menu .header-menu .link:nth-child(4):after {
  transition-delay: 0.8s;
}
.show-menu .header-menu .link:nth-child(5):after {
  transition-delay: 1s;
}

/* SECTION */
.bg-section {
  background-color: var(--color-section);
  z-index: 1;
}

.bg-white {
  background-color: var(--color-text);
  color: var(--color-aside);
}
.bg-white a,
.bg-white .btn,
.bg-white .article-btn {
  border-color: var(--color-aside);
  color: var(--color-aside);
}
.bg-white .btn:before,
.bg-white .filter-option:before {
  background: var(--color-aside);
}
.bg-white .filter-option.active {
  background: var(--color-aside);
  color: var(--color-text);
}
.bg-white .filter-option:hover {
  color: var(--color-text);
}
.bg-white .btn:hover {
  color: var(--color-text);
}
.bg-white .project-card .article-btn:before {
  background: var(--color-aside);
}
.bg-white .project-card:hover .article-btn .chevron-right:after {
  border-color: var(--color-text);
}

main section {
  font-size: 1.4rem;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-landing header {
  border-bottom: 8px solid #fff;
  padding-left: 2rem;
}
.section-landing header h1 {
  border: none;
  letter-spacing: 0.5rem;
  margin-right: -0.5rem;
}

@media screen and (min-width: 768px) {
  .section-landing {
    min-height: 80vh;
  }
  .section-landing header {
    padding-left: 3rem;
  }
  .section-landing header h1 {
    letter-spacing: 1rem;
    margin-right: -1rem;
  }

  .section-hero {
    min-height: unset;
  }
}
@media screen and (min-width: 1280px) {
  .section-landing header {
    padding-left: 4rem;
  }
}
.section-landing-arrow {
  position: absolute;
  bottom: 0;
  right: 1rem;
  z-index: 20;
  margin-bottom: 2.5rem;
}
.section-landing-arrow svg {
  width: 2rem;
  height: 2rem;
  transform: rotate(90);
}

.bg-aside {
  background: var(--color-aside);
}

.section-description {
  background: var(--color-aside);
}

.section-content ul {
  list-style-type: square;
  margin-left: 1.5rem;
}

/* ARTICLES */
.article-btn {
  border: 1px solid #fff;
  width: 1.8rem;
  height: 1.8rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.in-view article:nth-child(1n) {
  -webkit-animation-delay: 0.25s;
          animation-delay: 0.25s;
}

.in-view article:nth-child(2n) {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}

.in-view article:nth-child(3n) {
  -webkit-animation-delay: 0.75s;
          animation-delay: 0.75s;
}

.in-view article:nth-child(4n) {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

.in-view article:nth-child(5n) {
  -webkit-animation-delay: 1.25s;
          animation-delay: 1.25s;
}

.in-view article:nth-child(6n) {
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
}

.in-view article:nth-child(7n) {
  -webkit-animation-delay: 1.75s;
          animation-delay: 1.75s;
}

.in-view article:nth-child(8n) {
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}

.in-view article:nth-child(9n) {
  -webkit-animation-delay: 2.25s;
          animation-delay: 2.25s;
}

.in-view article:nth-child(10n) {
  -webkit-animation-delay: 2.5s;
          animation-delay: 2.5s;
}

/* HOME */
.bg-img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  background-position: center;
  background-size: cover;
}

.bg-video video {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
}

.bg-overlay {
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

/* COMPONENTS */
.btn {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  padding: 0.5rem 0.5rem 0.5rem 1rem;
  text-transform: uppercase;
  font-weight: bold;
  display: inline-flex;
  clear: both;
  margin: auto;
  text-align: center;
  font-size: 1rem;
  letter-spacing: 0.5rem;
  position: relative;
}
.btn:before {
  content: "";
  background: #fff;
  width: 0;
  top: 0;
  left: 0;
  bottom: 0;
  position: absolute;
  transition: width 0.5s var(--transition-ease);
  z-index: -1;
}
.btn:hover, .btn:focus, .btn:active {
  color: var(--color-section);
  outline: none;
}
.btn:hover:before, .btn:focus:before, .btn:active:before {
  width: 100%;
}

.chevron-right {
  box-sizing: border-box;
  position: relative;
  display: block;
  width: 22px;
  height: 22px;
  border: 2px solid transparent;
  border-radius: 100px;
}
.chevron-right:after {
  content: "";
  display: block;
  box-sizing: border-box;
  position: absolute;
  width: 10px;
  height: 10px;
  border-bottom: 2px solid;
  border-right: 2px solid;
  transform: rotate(-45deg);
  right: 6px;
  top: 4px;
}

/* MODAL */
.fullscreen-bg {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  z-index: -100;
}

.fullscreen-bg__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media (min-aspect-ratio: 16/9) {
  .fullscreen-bg__video {
    height: 300%;
    top: -100%;
  }
}
@media (max-aspect-ratio: 16/9) {
  .fullscreen-bg__video {
    width: 300%;
    left: -100%;
  }
}
@media (max-width: 767px) {
  .fullscreen-bg {
    background: url("/wp-content/uploads/2021/05/logo.png");
    background-size: 50% 50%;
    background-position: center;
    background-repeat: no-repeat;
  }
}
.fullscreen-overlay {
  visibility: hidden;
}

.fullscreen-overlay-show {
  overflow: hidden;
}
.fullscreen-overlay-show .fullscreen-overlay {
  visibility: visible;
  display: flex;
  background: rgba(0, 0, 0, 0.75);
  z-index: 80;
  overflow: hidden;
}

.overlay-video {
  width: 100%;
  height: auto;
  margin: auto;
}

.overlay-close {
  position: absolute;
  top: 0;
  right: 0;
  padding: 1rem;
}

.overlay-close {
  position: absolute;
  top: 0;
  right: 0;
  padding: 1rem;
  z-index: 90;
}

.projects-slides .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}
.projects-slides .swiper-slide img {
  -o-object-fit: contain;
     object-fit: contain;
}
.projects-slides .swiper-slide .overlay-video {
  padding: 2rem 0;
}
.projects-slides .swiper-button-next,
.projects-slides .swiper-button-prev {
  color: #fff;
  transition: opacity 0.5s var(--transition-ease);
}
.projects-slides .swiper-button-next:hover,
.projects-slides .swiper-button-prev:hover {
  opacity: 0.5s;
}

.project-card img {
  transition: filter 0.25s var(--transition-ease);
}
.project-card .article-btn {
  position: relative;
}
.project-card .article-btn:before {
  content: "";
  background: white;
  width: 0;
  height: 100%;
  position: absolute;
  left: 0;
  transition: width 0.25s var(--transition-ease);
}
.project-card:hover {
  cursor: pointer;
}
.project-card:hover .article-btn .chevron-right:after {
  border-color: black;
}
.project-card:hover .article-btn:before {
  width: 100%;
}

/* FORM */
.form label {
  font-size: 1rem !important;
}
.form input,
.form textarea {
  background: rgba(255, 255, 255, 0.05) !important;
  border-color: rgba(255, 255, 255, 0.25) !important;
  color: var(--color-text) !important;
  font-size: 1rem !important;
  border: none !important;
  border-bottom: 1px solid !important;
  background: none !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.form input:focus,
.form textarea:focus {
  border-bottom-width: 3px !important;
}
.form input.wpforms-error,
.form textarea.wpforms-error {
  background: none !important;
  color: var(--color-text) !important;
  font-weight: normal;
}
.form [type=submit] {
  font-weight: 600 !important;
}
.form .wpforms-error {
  font-weight: 600;
  padding: 0.5rem;
}

/* PROJECT */
.filter-options .filter-option {
  margin-right: 0.5rem;
}

.filter-option {
  position: relative;
}
.filter-option.active {
  background: #fff;
  color: var(--color-section);
}
.filter-option span {
  z-index: 1;
}
.filter-option:before {
  content: "";
  background: white;
  width: 0;
  height: 100%;
  position: absolute;
  left: 0;
  transition: width 0.25s var(--transition-ease);
  z-index: 0;
}
.filter-option:hover:before, .filter-option.active:before {
  width: 100%;
}

.filter-cards .filter-card {
  display: none;
}
.filter-cards .filter-card.active {
  display: block;
}

/* TWO COLUMNS */
.two-columns .two-column {
  max-width: 704px;
}

/* GALLERY */
.gallery-img {
  aspect-ratio: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
}

/* ANIMATIONS */
.anim-delay-250 {
  -webkit-animation-delay: 0.25s;
          animation-delay: 0.25s;
}

.anim-delay-500 {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}

.anim-delay-750 {
  -webkit-animation-delay: 0.75s;
          animation-delay: 0.75s;
}

.anim-delay-1000 {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

.anim-delay-1250 {
  -webkit-animation-delay: 1.25s;
          animation-delay: 1.25s;
}

.anim-delay-2000 {
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}

.glitch, .glitch-hover:hover {
  color: #fff;
  position: relative;
}
.glitch:after, .glitch-hover:hover:after {
  content: attr(data-text);
  position: absolute;
  left: 2px;
  text-shadow: -1px 0 red;
  top: 0;
  color: white;
  background: black;
  overflow: hidden;
  animation: noise-anim 2s infinite linear alternate-reverse;
}
.glitch:before, .glitch-hover:hover:before {
  content: attr(data-text);
  position: absolute;
  left: -2px;
  text-shadow: 1px 0 blue;
  top: 0;
  color: white;
  background: black;
  overflow: hidden;
  animation: noise-anim-2 15s infinite linear alternate-reverse;
}

@-webkit-keyframes noise-anim {
  0% {
    -webkit-clip-path: inset(52% 0 25% 0);
            clip-path: inset(52% 0 25% 0);
  }
  5% {
    -webkit-clip-path: inset(95% 0 2% 0);
            clip-path: inset(95% 0 2% 0);
  }
  10% {
    -webkit-clip-path: inset(14% 0 83% 0);
            clip-path: inset(14% 0 83% 0);
  }
  15% {
    -webkit-clip-path: inset(65% 0 35% 0);
            clip-path: inset(65% 0 35% 0);
  }
  20% {
    -webkit-clip-path: inset(24% 0 53% 0);
            clip-path: inset(24% 0 53% 0);
  }
  25% {
    -webkit-clip-path: inset(4% 0 68% 0);
            clip-path: inset(4% 0 68% 0);
  }
  30% {
    -webkit-clip-path: inset(26% 0 14% 0);
            clip-path: inset(26% 0 14% 0);
  }
  35% {
    -webkit-clip-path: inset(57% 0 16% 0);
            clip-path: inset(57% 0 16% 0);
  }
  40% {
    -webkit-clip-path: inset(55% 0 46% 0);
            clip-path: inset(55% 0 46% 0);
  }
  45% {
    -webkit-clip-path: inset(60% 0 30% 0);
            clip-path: inset(60% 0 30% 0);
  }
  50% {
    -webkit-clip-path: inset(58% 0 18% 0);
            clip-path: inset(58% 0 18% 0);
  }
  55% {
    -webkit-clip-path: inset(81% 0 15% 0);
            clip-path: inset(81% 0 15% 0);
  }
  60% {
    -webkit-clip-path: inset(10% 0 27% 0);
            clip-path: inset(10% 0 27% 0);
  }
  65% {
    -webkit-clip-path: inset(39% 0 40% 0);
            clip-path: inset(39% 0 40% 0);
  }
  70% {
    -webkit-clip-path: inset(64% 0 9% 0);
            clip-path: inset(64% 0 9% 0);
  }
  75% {
    -webkit-clip-path: inset(5% 0 45% 0);
            clip-path: inset(5% 0 45% 0);
  }
  80% {
    -webkit-clip-path: inset(71% 0 6% 0);
            clip-path: inset(71% 0 6% 0);
  }
  85% {
    -webkit-clip-path: inset(97% 0 3% 0);
            clip-path: inset(97% 0 3% 0);
  }
  90% {
    -webkit-clip-path: inset(56% 0 28% 0);
            clip-path: inset(56% 0 28% 0);
  }
  95% {
    -webkit-clip-path: inset(13% 0 56% 0);
            clip-path: inset(13% 0 56% 0);
  }
  100% {
    -webkit-clip-path: inset(64% 0 33% 0);
            clip-path: inset(64% 0 33% 0);
  }
}

@keyframes noise-anim {
  0% {
    -webkit-clip-path: inset(52% 0 25% 0);
            clip-path: inset(52% 0 25% 0);
  }
  5% {
    -webkit-clip-path: inset(95% 0 2% 0);
            clip-path: inset(95% 0 2% 0);
  }
  10% {
    -webkit-clip-path: inset(14% 0 83% 0);
            clip-path: inset(14% 0 83% 0);
  }
  15% {
    -webkit-clip-path: inset(65% 0 35% 0);
            clip-path: inset(65% 0 35% 0);
  }
  20% {
    -webkit-clip-path: inset(24% 0 53% 0);
            clip-path: inset(24% 0 53% 0);
  }
  25% {
    -webkit-clip-path: inset(4% 0 68% 0);
            clip-path: inset(4% 0 68% 0);
  }
  30% {
    -webkit-clip-path: inset(26% 0 14% 0);
            clip-path: inset(26% 0 14% 0);
  }
  35% {
    -webkit-clip-path: inset(57% 0 16% 0);
            clip-path: inset(57% 0 16% 0);
  }
  40% {
    -webkit-clip-path: inset(55% 0 46% 0);
            clip-path: inset(55% 0 46% 0);
  }
  45% {
    -webkit-clip-path: inset(60% 0 30% 0);
            clip-path: inset(60% 0 30% 0);
  }
  50% {
    -webkit-clip-path: inset(58% 0 18% 0);
            clip-path: inset(58% 0 18% 0);
  }
  55% {
    -webkit-clip-path: inset(81% 0 15% 0);
            clip-path: inset(81% 0 15% 0);
  }
  60% {
    -webkit-clip-path: inset(10% 0 27% 0);
            clip-path: inset(10% 0 27% 0);
  }
  65% {
    -webkit-clip-path: inset(39% 0 40% 0);
            clip-path: inset(39% 0 40% 0);
  }
  70% {
    -webkit-clip-path: inset(64% 0 9% 0);
            clip-path: inset(64% 0 9% 0);
  }
  75% {
    -webkit-clip-path: inset(5% 0 45% 0);
            clip-path: inset(5% 0 45% 0);
  }
  80% {
    -webkit-clip-path: inset(71% 0 6% 0);
            clip-path: inset(71% 0 6% 0);
  }
  85% {
    -webkit-clip-path: inset(97% 0 3% 0);
            clip-path: inset(97% 0 3% 0);
  }
  90% {
    -webkit-clip-path: inset(56% 0 28% 0);
            clip-path: inset(56% 0 28% 0);
  }
  95% {
    -webkit-clip-path: inset(13% 0 56% 0);
            clip-path: inset(13% 0 56% 0);
  }
  100% {
    -webkit-clip-path: inset(64% 0 33% 0);
            clip-path: inset(64% 0 33% 0);
  }
}
@-webkit-keyframes noise-anim-2 {
  0% {
    -webkit-clip-path: inset(35% 0 57% 0);
            clip-path: inset(35% 0 57% 0);
  }
  5% {
    -webkit-clip-path: inset(73% 0 2% 0);
            clip-path: inset(73% 0 2% 0);
  }
  10% {
    -webkit-clip-path: inset(18% 0 42% 0);
            clip-path: inset(18% 0 42% 0);
  }
  15% {
    -webkit-clip-path: inset(67% 0 20% 0);
            clip-path: inset(67% 0 20% 0);
  }
  20% {
    -webkit-clip-path: inset(29% 0 9% 0);
            clip-path: inset(29% 0 9% 0);
  }
  25% {
    -webkit-clip-path: inset(93% 0 2% 0);
            clip-path: inset(93% 0 2% 0);
  }
  30% {
    -webkit-clip-path: inset(32% 0 65% 0);
            clip-path: inset(32% 0 65% 0);
  }
  35% {
    -webkit-clip-path: inset(81% 0 13% 0);
            clip-path: inset(81% 0 13% 0);
  }
  40% {
    -webkit-clip-path: inset(5% 0 54% 0);
            clip-path: inset(5% 0 54% 0);
  }
  45% {
    -webkit-clip-path: inset(15% 0 7% 0);
            clip-path: inset(15% 0 7% 0);
  }
  50% {
    -webkit-clip-path: inset(8% 0 10% 0);
            clip-path: inset(8% 0 10% 0);
  }
  55% {
    -webkit-clip-path: inset(42% 0 18% 0);
            clip-path: inset(42% 0 18% 0);
  }
  60% {
    -webkit-clip-path: inset(25% 0 19% 0);
            clip-path: inset(25% 0 19% 0);
  }
  65% {
    -webkit-clip-path: inset(47% 0 24% 0);
            clip-path: inset(47% 0 24% 0);
  }
  70% {
    -webkit-clip-path: inset(16% 0 49% 0);
            clip-path: inset(16% 0 49% 0);
  }
  75% {
    -webkit-clip-path: inset(46% 0 2% 0);
            clip-path: inset(46% 0 2% 0);
  }
  80% {
    -webkit-clip-path: inset(29% 0 34% 0);
            clip-path: inset(29% 0 34% 0);
  }
  85% {
    -webkit-clip-path: inset(94% 0 3% 0);
            clip-path: inset(94% 0 3% 0);
  }
  90% {
    -webkit-clip-path: inset(27% 0 18% 0);
            clip-path: inset(27% 0 18% 0);
  }
  95% {
    -webkit-clip-path: inset(98% 0 3% 0);
            clip-path: inset(98% 0 3% 0);
  }
  100% {
    -webkit-clip-path: inset(44% 0 10% 0);
            clip-path: inset(44% 0 10% 0);
  }
}
@keyframes noise-anim-2 {
  0% {
    -webkit-clip-path: inset(35% 0 57% 0);
            clip-path: inset(35% 0 57% 0);
  }
  5% {
    -webkit-clip-path: inset(73% 0 2% 0);
            clip-path: inset(73% 0 2% 0);
  }
  10% {
    -webkit-clip-path: inset(18% 0 42% 0);
            clip-path: inset(18% 0 42% 0);
  }
  15% {
    -webkit-clip-path: inset(67% 0 20% 0);
            clip-path: inset(67% 0 20% 0);
  }
  20% {
    -webkit-clip-path: inset(29% 0 9% 0);
            clip-path: inset(29% 0 9% 0);
  }
  25% {
    -webkit-clip-path: inset(93% 0 2% 0);
            clip-path: inset(93% 0 2% 0);
  }
  30% {
    -webkit-clip-path: inset(32% 0 65% 0);
            clip-path: inset(32% 0 65% 0);
  }
  35% {
    -webkit-clip-path: inset(81% 0 13% 0);
            clip-path: inset(81% 0 13% 0);
  }
  40% {
    -webkit-clip-path: inset(5% 0 54% 0);
            clip-path: inset(5% 0 54% 0);
  }
  45% {
    -webkit-clip-path: inset(15% 0 7% 0);
            clip-path: inset(15% 0 7% 0);
  }
  50% {
    -webkit-clip-path: inset(8% 0 10% 0);
            clip-path: inset(8% 0 10% 0);
  }
  55% {
    -webkit-clip-path: inset(42% 0 18% 0);
            clip-path: inset(42% 0 18% 0);
  }
  60% {
    -webkit-clip-path: inset(25% 0 19% 0);
            clip-path: inset(25% 0 19% 0);
  }
  65% {
    -webkit-clip-path: inset(47% 0 24% 0);
            clip-path: inset(47% 0 24% 0);
  }
  70% {
    -webkit-clip-path: inset(16% 0 49% 0);
            clip-path: inset(16% 0 49% 0);
  }
  75% {
    -webkit-clip-path: inset(46% 0 2% 0);
            clip-path: inset(46% 0 2% 0);
  }
  80% {
    -webkit-clip-path: inset(29% 0 34% 0);
            clip-path: inset(29% 0 34% 0);
  }
  85% {
    -webkit-clip-path: inset(94% 0 3% 0);
            clip-path: inset(94% 0 3% 0);
  }
  90% {
    -webkit-clip-path: inset(27% 0 18% 0);
            clip-path: inset(27% 0 18% 0);
  }
  95% {
    -webkit-clip-path: inset(98% 0 3% 0);
            clip-path: inset(98% 0 3% 0);
  }
  100% {
    -webkit-clip-path: inset(44% 0 10% 0);
            clip-path: inset(44% 0 10% 0);
  }
}
.anim-fade-in {
  opacity: 0;
  -webkit-animation-name: fade-in-anim;
          animation-name: fade-in-anim;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: var(--transition-ease) forwards;
          animation-timing-function: var(--transition-ease) forwards;
}

@-webkit-keyframes fade-in-anim {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fade-in-anim {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.anim-fade-in-up {
  opacity: 0;
  -webkit-animation-name: fade-in-anim-up;
          animation-name: fade-in-anim-up;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: var(--transition-ease) forwards;
          animation-timing-function: var(--transition-ease) forwards;
}

@-webkit-keyframes fade-in-anim-up {
  from {
    opacity: 0;
    transform: translate(0, 25%);
  }
  to {
    opacity: 1;
    transform: translate(0, 0);
  }
}

@keyframes fade-in-anim-up {
  from {
    opacity: 0;
    transform: translate(0, 25%);
  }
  to {
    opacity: 1;
    transform: translate(0, 0);
  }
}
.anim-border {
  border-bottom: 0 !important;
  padding-bottom: 8px;
}
.anim-border:before {
  content: "";
  background: #fff;
  width: 0;
  height: 8px;
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-animation-name: border-anim;
          animation-name: border-anim;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: var(--transition-ease) forwards;
          animation-timing-function: var(--transition-ease) forwards;
}

@-webkit-keyframes border-anim {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

@keyframes border-anim {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}/*# sourceMappingURL=style.css.map */