<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.technology {
  background-color: var(--dark-blue);
  transform-origin: top center;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  position: relative;
  min-height: 90vh;
}

.technology__title {
  font-size: 2rem;
  text-shadow: var(--text-shadow);
  color: var(--text-color);
  text-align: center;
  position: absolute;
  left: 50%;
  transform: translate(-50%);
  top: 5rem;
}

.scene {
  position: relative;
  margin-block: 6rem 0;
  width: 100vw;
  height: 300px;
  display: grid;
  place-items: center;
  background-color: var(--dark-blue);
}

.scene::before {
  content: "";
  position: absolute;
  left: 0;
  width: 100px;
  height: 100%;
  background: linear-gradient(
    to right,
    var(--accent-color) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  z-index: 5;
}
.scene::after {
  content: "";
  position: absolute;
  right: 0;
  transform: rotate(180deg);
  width: 100px;
  height: 100%;
  background: linear-gradient(
    to right,
    var(--accent-color) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  z-index: 5;
}
.carousel {
  display: grid;
  padding: 1rem;
  width: 100%;
  gap: 1rem;
  grid-auto-flow: column;
  animation: scroll 35s linear infinite;
  position: absolute;
}

.second {
  left: 0;
  top: 0.55rem;
  animation: scroller 35s linear infinite;
}

@keyframes scroller {
  0% {
    transform: translateX(calc(316px * 9));
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-316px * 9));
  }
}

.carousel &gt; * {
  width: 300px;
  height: 250px;
  background-color: var(--accent-color);
  color: var(--text-color);
  box-shadow: rgb(0 0 0 / 10%) 0px 7px 29px 0px;
  display: grid;
  place-content: center;
  text-align: center;
  gap: 1rem;
  border-radius: 10px;
}

.item {
  font-size: 1.3rem;
}
.container {
  width: min(60ch, 100%);
  position: relative;
}
article {
  color: var(--para-color);
  font-weight: 300;
  position: relative;
  padding: 1.5rem;
  border-radius: 15px;
  margin: 4rem 2rem;
  z-index: 1;
  background-color: var(--accent-color);
  box-shadow: rgba(0, 0, 0, 0.15) 0px 48px 100px 0px;
  border: 1px solid rgba(30, 31, 36, 0.075);
}

article h2 {
  margin-bottom: 1rem;
  color: var(--text-color);
  font-weight: 400;
}
.item i {
  font-size: 2rem;
}

.bubble {
  position: absolute;
  width: 15rem;
  aspect-ratio: 1 /1;
  color: var(--accent-color);
}

.bubble img {
  width: 100%;
  height: 100%;
}
.b--right {
  width: 15rem;
  z-index: 1;
  right: -4rem;
  bottom: -4rem;
}

.b--left {
  z-index: 1;
  left: -4rem;
  top: 0rem;
}

@media (max-width: 464px) {
  .card__left h2 {
    font-size: 1.6rem !important;
  }
  .card__left a {
    font-size: 0.95rem !important;
    padding: 0.7rem 1.2rem !important;
  }
}

@keyframes tick-animation {
  0%,
  20% {
    transform: scaleX(0);
  }
  30% {
    transform: scaleX(1);
  }
  100% {
    opacity: 1;
  }
}

.tick {
  position: relative;
  height: 3px;
  width: 15px;
  margin-right: 15px;
  transform-origin: 0% 0%;
  border-radius: 5px;
  background: #1ac0a2;
  animation: tick-animation 2s forwards;
}

.tick::before {
  content: "";
  position: absolute;
  bottom: 1px;
  right: 0;
  width: 3px;
  height: 30px;
  transform-origin: 0% 100%;
  border-radius: inherit;
  background: inherit;
  animation: tick-before-animation 2s forwards;
}
@keyframes tick-before-animation {
  0%,
  30% {
    transform: scaleY(0);
  }
  45% {
    transform: scaleY(1);
  }
}

.message {
  border: 1px solid #1ac0a2;
  position: fixed;
  z-index: 99999999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1.2);
  display: flex;
  align-items: center;
  color: var(--text-color);
  background-color: var(--dark-blue);
  padding: 3rem;
  gap: 0.5rem;
  border-radius: 10px;
  opacity: 0;
  pointer-events: none;
}

.message.triggered {
  animation: 400ms cubic-bezier(0.34, 1.56, 0.64, 1) alert forwards;
}

@keyframes alert {
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
}

.alert {
  display: grid;
  place-items: end;
  width: 50px;
  height: 50px;
  margin-left: -10px;
  margin-top: -30px;
  transform: rotate(45deg);
}

.technology {
  display: none;
}
</pre></body></html>