/* [project]/src/styles/hero-section.scss.css [app-client] (css) */
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(100%);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-100%);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(100%);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-100%);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-slideInRight {
  animation: .8s ease-out forwards slideInRight;
}

.animate-slideInLeft {
  animation: .8s ease-out forwards slideInLeft;
}

.animate-slideInUp {
  animation: .8s ease-out forwards slideInUp;
}

.animate-slideInDown {
  animation: .8s ease-out forwards slideInDown;
}

.video-mask {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  -webkit-mask-image: url("/assets/hero-section-frame.webp");
  mask-image: url("/assets/hero-section-frame.webp");
  -webkit-mask-position: 0 0;
  mask-position: 0 0;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: repeat;
  mask-repeat: repeat;
}

/* [project]/src/styles/client-stories.scss.css [app-client] (css) */
.client-stories {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.client-stories .story-img {
  opacity: 0;
  transform-origin: center;
  border-radius: 12px;
  position: absolute;
  overflow: hidden;
  transform: translate(0)scale(.3);
}

.client-stories .center-person {
  z-index: 30;
  opacity: 0;
  width: 18%;
  height: 33%;
  top: 5%;
  left: 41%;
  transform: scale(.3);
}

.client-stories.animate-in .story-text {
  opacity: 0;
  animation: .5s ease-out forwards textUp;
  transform: translateY(30px);
}

.client-stories.animate-in .story-img:not(.center-person) {
  animation: 1.4s cubic-bezier(.22, 1, .36, 1) .3s forwards flyOut;
}

.client-stories.animate-in .center-person {
  animation: .7s ease-out .3s forwards centerIn;
}

.client-stories.animate-out .center-person, .client-stories.animate-out .story-img:not(.center-person) {
  animation: .9s cubic-bezier(.55, 0, .55, .2) forwards flyIn;
}

@keyframes flyOut {
  0% {
    opacity: 0;
    top: 5%;
    left: 42%;
    transform: scale(.3);
  }

  40% {
    opacity: 1;
    transform: scale(.9);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes flyIn {
  0% {
    opacity: 1;
    transform: scale(1);
  }

  60% {
    opacity: .4;
    transform: scale(.6);
  }

  100% {
    opacity: 0;
    top: 5%;
    left: 42%;
    transform: scale(.3);
  }
}

@keyframes centerIn {
  0% {
    opacity: 0;
    transform: scale(.3);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes textUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.client-stories .aerospace {
  width: 13%;
  height: 56%;
  top: 20%;
  left: 8%;
}

.client-stories .team {
  width: 13%;
  height: 56%;
  top: 53%;
  left: 8%;
}

.client-stories .industrial {
  width: 13%;
  height: 56%;
  top: 5%;
  left: 24%;
}

.client-stories .ai {
  width: 13%;
  height: 56%;
  top: 38%;
  left: 24%;
}

.client-stories .healthcare {
  width: 13%;
  height: 56%;
  top: 5%;
  left: 63%;
}

.client-stories .mechanical {
  width: 13%;
  height: 56%;
  top: 38%;
  left: 63%;
}

.client-stories .chip {
  width: 13%;
  height: 56%;
  top: 20%;
  left: 79%;
}

.client-stories .banking {
  width: 13%;
  height: 56%;
  top: 53%;
  left: 79%;
}

.client-stories .client-stories-wrapper {
  transform-origin: top;
  transition: transform .3s;
}

@media (max-width: 1024px) {
  .client-stories .client-stories-wrapper {
    transform: scale(.9);
  }
}

@media (max-width: 900px) {
  .client-stories .client-stories-wrapper {
    transform: scale(.8);
  }
}

@media (max-width: 768px) {
  .client-stories .client-stories-wrapper {
    transform: scale(.7);
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .client-stories .client-stories {
    max-height: 75vh;
  }

  .client-stories .center-person {
    width: 19%;
    height: 47%;
    top: 7%;
    left: 40.5%;
  }

  .client-stories .aerospace {
    width: 13%;
    height: 31%;
    top: 21%;
    left: 7%;
  }

  .client-stories .team {
    width: 13%;
    height: 31%;
    top: 55%;
    left: 7%;
  }

  .client-stories .industrial {
    width: 13%;
    height: 27%;
    top: 7%;
    left: 24%;
  }

  .client-stories .ai {
    width: 13%;
    height: 27%;
    top: 38%;
    left: 24%;
  }

  .client-stories .healthcare {
    width: 13%;
    height: 27%;
    top: 7%;
    left: 63%;
  }

  .client-stories .mechanical {
    width: 13%;
    height: 27%;
    top: 38%;
    left: 63%;
  }

  .client-stories .chip {
    width: 13%;
    height: 31%;
    top: 21%;
    left: 80%;
  }

  .client-stories .banking {
    width: 13%;
    height: 31%;
    top: 55%;
    left: 80%;
  }
}

@media (min-width: 1024px) and (max-width: 1366px) {
  .client-stories .center-person {
    width: 19%;
    height: 48%;
    top: 5%;
    left: 40.5%;
  }
}

@media (min-width: 1367px) and (max-width: 1600px) {
  .client-stories .center-person {
    top: 2.5%;
    left: 41%;
    width: 18% !important;
    height: 48% !important;
  }

  .client-stories .story-img {
    width: calc(10% + 2vw);
    height: calc(31% + .8vw);
  }

  .client-stories .story-img.left {
    left: 7%;
  }

  .client-stories .story-img.right {
    right: 7%;
  }

  .client-stories .aerospace {
    top: 15%;
    left: 6%;
  }

  .client-stories .team {
    top: 48%;
    left: 6%;
  }

  .client-stories .industrial {
    top: 3%;
    left: 23%;
  }

  .client-stories .ai {
    top: 33%;
    left: 23%;
  }

  .client-stories .healthcare {
    top: 3%;
    left: 65%;
  }

  .client-stories .mechanical {
    top: 33%;
    left: 65%;
  }

  .client-stories .chip {
    top: 15%;
    left: 83%;
  }

  .client-stories .banking {
    top: 48%;
    left: 83%;
  }
}

@media (min-width: 1601px) {
  .client-stories .center-person {
    width: 23%;
    height: 58%;
    top: 4%;
    left: 39.5%;
  }

  .client-stories .story-img {
    width: calc(16% + .8vw);
    height: calc(40% + .8vw);
  }

  .client-stories .aerospace {
    top: 15%;
    left: 6%;
  }

  .client-stories .team {
    top: 5%;
    left: 6%;
  }

  .client-stories .industrial {
    top: 3%;
    left: 22%;
  }

  .client-stories .ai {
    top: 36%;
    left: 22%;
  }

  .client-stories .healthcare {
    top: 3%;
    left: 65%;
  }

  .client-stories .mechanical {
    top: 36%;
    left: 65%;
  }

  .client-stories .chip {
    top: 15%;
    left: 81%;
  }

  .client-stories .banking {
    top: 50%;
    left: 81%;
  }
}

/*# sourceMappingURL=src_styles_999d884a._.css.map*/