/* -- Global -- */

.w-webflow-badge {
  display: none !important;
}

html {
  height: auto;
}

:root {
  --animation-default-fast: 0.25s cubic-bezier(0.425, 0, 0, 1);
  --animation-default-text: 0.25s ease;
  --animation-default: 0.8s cubic-bezier(0.425, 0, 0, 1);
  --animation-default-speedup: 0.175s ease;
  --header-height: 105px;
  --portfolio-padding: 1.25rem;
  --pi: 2.9rem;
}

/* -- Media --Fixed Size -- */

/* @media (min-width: 990px) {
  :root {
    --size: 1600;
  }

  html {
    height: auto !important;
    -ms-overflow-style: none;
    scrollbar-width: none;
    font-size: calc(15.5 * 100vw / var(--size));
    -webkit-text-size-adjust: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
} */

/* -- Media -- */

@media only screen and (max-width: 1900px) {
}

@media only screen and (max-width: 1440px) {
}

@media only screen and (max-width: 991px) {
}

@media only screen and (max-width: 767px) {
}

@media only screen and (max-width: 479px) {
}

/* -- Keyframe Animations -- */

@keyframes marqueeY {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-100%);
  }
}
@keyframes marqueeYR {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(100%);
  }
}

@keyframes marqueeX {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes marqueeXR {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}

@media only screen and (max-width: 991px) {
  @keyframes marquee {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-100%);
    }
  }
  @keyframes marqueeRev {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(100%);
    }
  }
}

/* -- Hero Component -- */

.hero-component {
  pointer-events: none;
}

/* -- Portfolio -- */

.portfolio_list-item {
  cursor: pointer;
}

.portfolio_item_tag {
  transition: padding var(--animation-default);
}

.portfolio_item-inner {
  transition: all var(--animation-default-text);
}

.portfolio_list-item:hover .portfolio_item_tag:first-child {
  padding-left: var(--portfolio-padding);
}

.portfolio_list-item:hover .portfolio_item_tag:last-child {
  padding-right: var(--portfolio-padding);
}

.portfolio-item-shape {
  height: calc(var(--pi) + 0.125rem);
}

.portfolio_item-head:hover .portfolio_item-inner {
  color: var(--100);
}

.portfolio_list-shape {
  height: calc(var(--pi));
}

.portfolio_list-item.is--active .portfolio_item_tag:first-child {
  padding-left: var(--portfolio-padding);
}

.portfolio_list-item.is--active .portfolio_item_tag:last-child {
  padding-right: var(--portfolio-padding);
}

.portfolio_list-item.is--active .portfolio_item-inner {
  color: var(--100);
}
