/**
 * Isolated TAS company hero. Prefix: tas-hero
 * Overrides only #hero presentation; navbar and later sections stay intact.
 */

html body #main header#hero.framer-z7p5eg,
html body #main header#hero[data-framer-name="Hero section"] {
  --tas-hero-gold: #f3b20c;
  --tas-hero-ink: #0c0d10;
  --tas-hero-paper: #f4f1ea;
  --tas-hero-muted: #c6c2b8;
  box-sizing: border-box;
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  justify-content: flex-start !important;
  place-content: start !important;
  gap: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  min-height: clamp(720px, calc(100svh - 8px), 880px) !important;
  max-height: none !important;
  margin: 0 !important;
  padding: 128px 32px 0 !important;
  overflow: hidden !important;
  background: var(--tas-hero-ink) !important;
  transform: none !important;
  z-index: 0;
}

html.tas-animations-ready #main header#hero.tas-scroll-reveal,
html.tas-animations-ready #main header#hero.tas-scroll-reveal.tas-revealed {
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}

html body #main header#hero > :not(.tas-hero) {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
  width: 0 !important;
  height: 0 !important;
  overflow: hidden !important;
}

.tas-hero {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  width: 100%;
  max-width: 1320px;
  min-height: 0;
  margin: 0 auto;
  overflow-x: hidden;
  box-sizing: border-box;
  color: var(--tas-hero-paper, #f4f1ea);
}

.tas-hero__grid {
  pointer-events: none;
  position: absolute;
  inset: 0 0 48px;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 80px 80px;
  background-position: center top;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.45), transparent 88%);
}

.tas-hero__container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.45fr) minmax(0, 0.55fr);
  gap: 40px 48px;
  align-items: stretch;
  flex: 1 1 auto;
  min-height: 0;
  width: 100%;
}

.tas-hero__content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  min-width: 0;
  padding: 28px 0 16px;
}

.tas-hero__eyebrow {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.28em 0.72em;
  margin: 0;
  font-family: "Nunito Sans", "Segoe UI", sans-serif;
  font-size: clamp(1.08rem, 0.92rem + 0.72vw, 1.5rem);
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.15;
  text-transform: uppercase;
  color: var(--tas-hero-paper, #f4f1ea);
}

.tas-hero__eyebrow-word {
  white-space: nowrap;
}

.tas-hero__eyebrow-initial {
  color: var(--tas-hero-gold, #f3b20c);
  font-size: 1.12em;
}

.tas-hero__rule {
  display: block;
  width: 72px;
  height: 1px;
  margin: 14px 0 22px;
  background: var(--tas-hero-gold, #f3b20c);
  transform-origin: left center;
}

.tas-hero__title {
  margin: 0;
  max-width: 14ch;
  font-family: "Clash Grotesk", "Nunito Sans", "Segoe UI", sans-serif;
  font-size: clamp(2.25rem, 1.85rem + 2.8vw, 4.55rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.05;
  color: var(--tas-hero-paper, #f4f1ea);
  text-wrap: balance;
}

.tas-hero__title span {
  display: block;
}

.tas-hero__description {
  margin: 22px 0 0;
  max-width: 560px;
  font-family: "Nunito Sans", "Segoe UI", sans-serif;
  font-size: clamp(1rem, 0.94rem + 0.28vw, 1.25rem);
  font-weight: 400;
  line-height: 1.55;
  color: var(--tas-hero-muted, #c6c2b8);
}

.tas-hero__panel {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
  min-height: 0;
  padding: 28px 32px 24px;
  overflow: hidden;
  border-left: 1px solid var(--tas-hero-gold, #f3b20c);
  background-color: #111216;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
}

html body #main .tas-hero__mark {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 0;
  display: block;
  width: min(92%, 560px) !important;
  max-width: 92% !important;
  height: auto !important;
  transform: translate(-50%, -50%);
  pointer-events: none;
  user-select: none;
  object-fit: contain;
}

.tas-hero__panel-list,
.tas-hero__panel-meta {
  position: relative;
  z-index: 1;
}

.tas-hero__panel-list {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  justify-content: flex-start;
  min-height: 0;
  overflow: visible;
}

.tas-hero__pillar {
  display: grid;
  grid-template-columns: 3.2rem minmax(0, 1fr);
  gap: 16px 20px;
  align-items: start;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  text-decoration: none;
  color: inherit;
}

.tas-hero__panel-list > .tas-hero__pillar:first-child {
  padding-top: 0;
}

.tas-hero__pillar--intel,
.tas-hero__pillar--robotics,
.tas-hero__pillar--auto {
  grid-template-columns: 3.2rem minmax(0, 1fr) minmax(0, 340px);
  align-items: start;
  min-width: 0;
  min-height: 11rem;
}

.tas-hero__panel-list > .tas-hero__pillar:first-child {
  align-items: start;
}

.tas-hero__pillar:last-of-type {
  border-bottom: 0;
}

.tas-hero__pillar:focus-visible {
  outline: 2px solid var(--tas-hero-gold, #f3b20c);
  outline-offset: 6px;
}

.tas-hero__pillar-index {
  font-family: "Nunito Sans", "Segoe UI", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.2;
  color: var(--tas-hero-gold, #f3b20c);
  font-variant-numeric: tabular-nums;
}

.tas-hero__pillar.is-active .tas-hero__pillar-index {
  box-shadow: inset 0 -1px 0 var(--tas-hero-gold, #f3b20c);
}

.tas-hero__pillar-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.tas-hero__pillar-name {
  font-family: "Clash Grotesk", "Nunito Sans", "Segoe UI", sans-serif;
  font-size: clamp(1.85rem, 1.2rem + 1.6vw, 2.75rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--tas-hero-paper, #f4f1ea);
}

.tas-hero__pillar-copy {
  max-width: 34ch;
  font-family: "Nunito Sans", "Segoe UI", sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.45;
  color: var(--tas-hero-muted, #c6c2b8);
}

.tas-hero__pillar:hover .tas-hero__pillar-name,
.tas-hero__pillar:focus-visible .tas-hero__pillar-name {
  color: #fff;
}

.tas-hero__field {
  position: relative;
  z-index: 2;
  display: block;
  align-self: start;
  min-width: 0;
  width: 100%;
  max-width: 100%;
  color: rgba(244, 241, 234, 0.92);
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.tas-hero__pillar--intel:hover .tas-hero__survey,
.tas-hero__pillar--intel:focus-visible .tas-hero__survey,
.tas-hero__pillar--intel:focus-within .tas-hero__survey,
.tas-hero__pillar--intel.is-inview .tas-hero__survey,
.tas-hero__pillar--robotics:hover .tas-hero__robotics,
.tas-hero__pillar--robotics:focus-visible .tas-hero__robotics,
.tas-hero__pillar--robotics:focus-within .tas-hero__robotics,
.tas-hero__pillar--robotics.is-inview .tas-hero__robotics,
.tas-hero__pillar--auto:hover .tas-hero__auto,
.tas-hero__pillar--auto:focus-visible .tas-hero__auto,
.tas-hero__pillar--auto:focus-within .tas-hero__auto,
.tas-hero__pillar--auto.is-inview .tas-hero__auto {
  opacity: 1;
  visibility: visible;
}

.tas-hero__field-stage {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 628 / 280;
  overflow: hidden;
}

.tas-hero__robotics .tas-hero__field-stage {
  overflow: visible;
}

.tas-hero__robot-rig {
  position: relative;
  display: block;
  height: 100%;
  width: auto;
  max-width: 100%;
  aspect-ratio: 577 / 514;
  margin: 0 auto;
  transform: scale(0.92);
  transform-origin: center bottom;
}

.tas-hero__robot-j2,
.tas-hero__robot-j3,
.tas-hero__robot-j5,
.tas-hero__robot-layer {
  position: absolute;
  inset: 0;
  display: block;
}

.tas-hero__robot-j2 {
  z-index: 2;
  transform-origin: 28.94% 63.23%;
}

.tas-hero__robot-j3 {
  transform-origin: 31.02% 21.01%;
}

.tas-hero__robot-j5 {
  transform-origin: 74.7% 14.98%;
}

.tas-hero__robot-layer--base { z-index: 1; }
.tas-hero__robot-layer--boom { z-index: 2; }
.tas-hero__robot-layer--fore { z-index: 3; }
.tas-hero__robot-layer--grip { z-index: 4; }

html body #main .tas-hero__robot-img {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  height: 100% !important;
  object-fit: fill;
  pointer-events: none;
}

.tas-hero__auto-rig {
  position: relative;
  display: block;
  height: 100%;
  width: auto;
  max-width: 100%;
  aspect-ratio: 628 / 388;
  margin: 0 auto;
}

.tas-hero__auto-scene {
  position: absolute;
  inset: 0;
  display: block;
}

html body #main .tas-hero__auto-scene-img {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  height: 100% !important;
  object-fit: contain;
  object-position: center bottom;
  pointer-events: none;
}

.tas-hero__auto-drone {
  position: absolute;
  z-index: 2;
  left: 18.5%;
  top: 80.5%;
  width: 24.4%;
  transform: translate(-50%, -42%) scale(0.46);
  transform-origin: 50% 50%;
}

html body #main .tas-hero__auto-drone-img {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  height: auto !important;
  pointer-events: none;
}

.tas-hero__field-ground {
  position: absolute;
  left: -6%;
  right: -12%;
  bottom: 0;
  z-index: 0;
  height: 62%;
}

html body #main .tas-hero__field-ground-img {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  height: 100% !important;
  object-fit: cover;
  object-position: center bottom;
}

.tas-hero__field-mover {
  position: absolute;
  left: 4%;
  top: 0;
  z-index: 1;
  width: 54%;
  height: 100%;
  transform-origin: 28% 38%;
}

.tas-hero__field-svg {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.tas-hero__field-craft {
  position: absolute;
  left: 16%;
  top: 6%;
  z-index: 2;
  width: 58%;
}

html body #main .tas-hero__field-craft-img {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.4));
}

.tas-hero__field-spot {
  fill: rgba(244, 241, 234, 0.42);
  stroke: rgba(243, 178, 12, 0.55);
  stroke-width: 1.1;
}

@keyframes tas-hero-survey-fly {
  0%,
  100% {
    transform: translate3d(0, 4%, 0) rotate(-1.4deg);
  }
  35% {
    transform: translate3d(38%, -6%, 0) rotate(2.2deg);
  }
  68% {
    transform: translate3d(22%, 2%, 0) rotate(0.4deg);
  }
}

@keyframes tas-hero-survey-scroll {
  0%,
  100% {
    transform: translate3d(0, 3%, 0);
  }
  50% {
    transform: translate3d(-11%, 0, 0);
  }
}

@keyframes tas-hero-survey-spot {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}

.tas-hero__panel-meta {
  margin: 8px 0 0;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-family: "Nunito Sans", "Segoe UI", sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(244, 241, 234, 0.55);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tas-hero__footer {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  width: 100%;
  margin-top: auto;
  padding: 18px 0 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.tas-hero__discover {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  font-family: "Nunito Sans", "Segoe UI", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(244, 241, 234, 0.78);
}

.tas-hero__discover:hover,
.tas-hero__discover:focus-visible {
  color: #fff;
}

.tas-hero__discover:focus-visible {
  outline: 2px solid var(--tas-hero-gold, #f3b20c);
  outline-offset: 4px;
}

.tas-hero__discover-mark {
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--tas-hero-gold, #f3b20c);
  position: relative;
}

.tas-hero__discover-mark::after {
  content: "";
  position: absolute;
  right: -1px;
  top: 1px;
  width: 7px;
  height: 7px;
  border-right: 1px solid var(--tas-hero-gold, #f3b20c);
  border-bottom: 1px solid var(--tas-hero-gold, #f3b20c);
  transform: rotate(45deg);
}

#about {
  scroll-margin-top: 96px;
}

@media (prefers-reduced-motion: no-preference) {
  .tas-hero__rule {
    animation: tas-hero-rule 0.55s ease both;
  }

  .tas-hero__content > *:not(.tas-hero__rule) {
    animation: tas-hero-in 0.6s ease both;
  }

  .tas-hero__eyebrow { animation-delay: 40ms; }
  .tas-hero__title { animation-delay: 90ms; }
  .tas-hero__description { animation-delay: 150ms; }

  .tas-hero__panel {
    animation: tas-hero-media 0.7s ease both;
  }

  .tas-hero__pillar--intel:hover .tas-hero__survey .tas-hero__field-mover,
  .tas-hero__pillar--intel:focus-visible .tas-hero__survey .tas-hero__field-mover,
  .tas-hero__pillar--intel:focus-within .tas-hero__survey .tas-hero__field-mover,
  .tas-hero__pillar--intel.is-inview .tas-hero__survey .tas-hero__field-mover {
    animation: tas-hero-survey-fly 7.2s ease-in-out infinite;
  }

  .tas-hero__pillar--intel:hover .tas-hero__field-ground,
  .tas-hero__pillar--intel:focus-visible .tas-hero__field-ground,
  .tas-hero__pillar--intel:focus-within .tas-hero__field-ground,
  .tas-hero__pillar--intel.is-inview .tas-hero__field-ground {
    animation: tas-hero-survey-scroll 9s ease-in-out infinite;
  }

  .tas-hero__pillar--intel:hover .tas-hero__field-spot,
  .tas-hero__pillar--intel:focus-visible .tas-hero__field-spot,
  .tas-hero__pillar--intel:focus-within .tas-hero__field-spot,
  .tas-hero__pillar--intel.is-inview .tas-hero__field-spot {
    animation: tas-hero-survey-spot 2.4s ease-in-out infinite;
  }

  .tas-hero__pillar--robotics:hover .tas-hero__robot-j2,
  .tas-hero__pillar--robotics:focus-visible .tas-hero__robot-j2,
  .tas-hero__pillar--robotics:focus-within .tas-hero__robot-j2,
  .tas-hero__pillar--robotics.is-inview .tas-hero__robot-j2 {
    animation: tas-hero-robot-j2 6.8s ease-in-out infinite;
  }

  .tas-hero__pillar--robotics:hover .tas-hero__robot-j3,
  .tas-hero__pillar--robotics:focus-visible .tas-hero__robot-j3,
  .tas-hero__pillar--robotics:focus-within .tas-hero__robot-j3,
  .tas-hero__pillar--robotics.is-inview .tas-hero__robot-j3 {
    animation: tas-hero-robot-j3 6.8s ease-in-out infinite;
  }

  .tas-hero__pillar--robotics:hover .tas-hero__robot-j5,
  .tas-hero__pillar--robotics:focus-visible .tas-hero__robot-j5,
  .tas-hero__pillar--robotics:focus-within .tas-hero__robot-j5,
  .tas-hero__pillar--robotics.is-inview .tas-hero__robot-j5 {
    animation: tas-hero-robot-j5 6.8s ease-in-out infinite;
  }

  .tas-hero__pillar--auto:hover .tas-hero__auto-drone,
  .tas-hero__pillar--auto:focus-visible .tas-hero__auto-drone,
  .tas-hero__pillar--auto:focus-within .tas-hero__auto-drone,
  .tas-hero__pillar--auto.is-inview .tas-hero__auto-drone {
    animation: tas-hero-auto-fly 7.4s ease-in-out infinite;
  }
}

@keyframes tas-hero-in {
  from {
    opacity: 0;
    transform: translate3d(0, 10px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes tas-hero-rule {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@keyframes tas-hero-media {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes tas-hero-robot-j2 {
  0%, 100% { transform: rotate(0deg); }
  28% { transform: rotate(9deg); }
  52% { transform: rotate(-7deg); }
  76% { transform: rotate(4deg); }
}

@keyframes tas-hero-robot-j3 {
  0%, 100% { transform: rotate(0deg); }
  30% { transform: rotate(-14deg); }
  55% { transform: rotate(11deg); }
  78% { transform: rotate(-6deg); }
}

@keyframes tas-hero-robot-j5 {
  0%, 100% { transform: rotate(0deg); }
  35% { transform: rotate(12deg); }
  65% { transform: rotate(-9deg); }
}

@keyframes tas-hero-auto-fly {
  0% {
    left: 18.5%;
    top: 80.5%;
    transform: translate(-50%, -42%) scale(0.46);
  }
  12% {
    left: 28%;
    top: 56.8%;
    transform: translate(-50%, -42%) scale(0.92);
  }
  26% {
    left: 38.2%;
    top: 46.1%;
    transform: translate(-50%, -42%) scale(1);
  }
  44% {
    left: 52.1%;
    top: 49.5%;
    transform: translate(-50%, -42%) scale(1);
  }
  62% {
    left: 65.2%;
    top: 43.4%;
    transform: translate(-50%, -42%) scale(1);
  }
  80% {
    left: 81.3%;
    top: 30.8%;
    transform: translate(-50%, -42%) scale(1);
  }
  90% {
    left: 89.7%;
    top: 27%;
    transform: translate(-50%, -42%) scale(0.96);
    opacity: 1;
  }
  94% {
    left: 89.7%;
    top: 27%;
    opacity: 0;
  }
  95% {
    left: 18.5%;
    top: 80.5%;
    transform: translate(-50%, -42%) scale(0.46);
    opacity: 0;
  }
  100% {
    left: 18.5%;
    top: 80.5%;
    transform: translate(-50%, -42%) scale(0.46);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .tas-hero__rule,
  .tas-hero__content > *,
  .tas-hero__panel {
    animation: none !important;
  }

  .tas-hero__field,
  .tas-hero__field-craft,
  .tas-hero__field-mover,
  .tas-hero__field-ground,
  .tas-hero__field-spot,
  .tas-hero__robot-j2,
  .tas-hero__robot-j3,
  .tas-hero__robot-j5,
  .tas-hero__auto-drone {
    animation: none !important;
    transition: none !important;
  }
}

@media (max-width: 1199.98px) {
  html body #main header#hero.framer-z7p5eg,
  html body #main header#hero[data-framer-name="Hero section"] {
    min-height: 0 !important;
    padding: 72px 28px 8px !important;
    gap: 0 !important;
    align-items: stretch !important;
    place-content: start !important;
  }

  .tas-hero__container {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .tas-hero__content {
    padding: 10px 0 16px;
  }

  .tas-hero__eyebrow {
    font-size: clamp(1.02rem, 0.9rem + 0.8vw, 1.28rem);
    letter-spacing: 0.12em;
    gap: 0.24em 0.64em;
  }

  .tas-hero__panel {
    min-height: 0;
    padding: 22px 24px 18px;
  }

  .tas-hero__pillar {
    padding: 16px 0;
  }

  .tas-hero__pillar--intel,
  .tas-hero__pillar--robotics,
  .tas-hero__pillar--auto {
    grid-template-columns: 3.2rem minmax(0, 1fr) minmax(0, 280px);
    align-items: start;
    min-height: 9.5rem;
  }

  .tas-hero__field {
    align-self: start;
  }

  .tas-hero__robot-rig {
    transform: scale(0.9);
    transform-origin: center top;
    margin-top: 0;
  }

  .tas-hero__footer {
    padding-bottom: 18px;
  }

  #about {
    scroll-margin-top: 88px;
  }
}

@media (max-width: 809.98px) {
  html body #main header#hero.framer-z7p5eg,
  html body #main header#hero[data-framer-name="Hero section"] {
    padding: 64px 18px 4px !important;
    overflow-x: hidden !important;
  }

  .tas-hero__grid {
    background-size: 48px 48px;
  }

  .tas-hero__title {
    max-width: none;
    font-size: clamp(2.05rem, 7.2vw, 2.7rem);
  }

  .tas-hero__eyebrow {
    font-size: clamp(0.98rem, 3.8vw, 1.12rem);
    letter-spacing: 0.1em;
    gap: 0.2em 0.5em;
  }

  .tas-hero__description {
    margin-top: 16px;
    font-size: 1rem;
  }

  .tas-hero__panel {
    padding: 18px 16px 14px;
  }

  .tas-hero__pillar {
    grid-template-columns: 2.4rem minmax(0, 1fr);
    gap: 8px 12px;
    padding: 12px 0;
  }

  .tas-hero__pillar--intel,
  .tas-hero__pillar--robotics,
  .tas-hero__pillar--auto {
    grid-template-columns: 2.4rem minmax(0, 1fr);
    min-height: 0;
  }

  .tas-hero__survey,
  .tas-hero__robotics,
  .tas-hero__auto {
    grid-column: 1 / -1;
    width: min(100%, 22rem);
    max-width: 100%;
    margin-left: auto;
  }

  .tas-hero__pillar-name {
    font-size: clamp(1.45rem, 6vw, 1.9rem);
  }

  .tas-hero__pillar-copy {
    font-size: 0.88rem;
  }

  .tas-hero__footer {
    justify-content: flex-start;
    padding-top: 14px;
    padding-bottom: 16px;
  }

  #about {
    scroll-margin-top: 80px;
  }
}

@media (max-width: 379.98px) {
  html body #main header#hero.framer-z7p5eg {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
}
