:root {
  /* Brand colors (Wrap Up brandbook 03.01) */
  --color-green: #C1DEBE;
  --color-yellow: #FFF166;
  --color-orange: #F39200;
  --color-blue: #B1DBE6;
  --color-pink: #E8A7C6;
  --color-grey: #ECECEC;
  --color-white: #FFFFFF;
  --color-black: #000000;
  --color-text: #131313;
  --color-text-soft: #6b6b6b;

  --font-primary: "neue-haas-unica", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-mono: "antarctican-mono", "SF Mono", ui-monospace, "Courier New", monospace;

  --ease-osmo: cubic-bezier(0.625, 0.05, 0, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { font-size: 16px; }

a[href], button, [role="button"] { cursor: pointer; }

body {
  font-family: var(--font-primary);
  background-color: var(--color-grey);
  color: var(--color-text);
  -webkit-font-smoothing: antialiased;
  overflow: hidden;
}

.text-mono {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.6;
}

/* On-brand text highlight */
::selection { background-color: var(--color-yellow); color: var(--color-text); }
::-moz-selection { background-color: var(--color-yellow); color: var(--color-text); }

/* ---------------------------------------------------------
   Plus icon tile (brand element 02.03)
--------------------------------------------------------- */
.plus-tile {
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1 / 1;
}

.plus-tile svg {
  width: 62%;
  height: 62%;
  display: block;
}

.plus-tile.is-green  { background-color: var(--color-green); }
.plus-tile.is-yellow { background-color: var(--color-yellow); }
.plus-tile.is-orange { background-color: var(--color-orange); }
.plus-tile.is-blue   { background-color: var(--color-blue); }
.plus-tile.is-pink   { background-color: var(--color-pink); }

/* ---------------------------------------------------------
   Loading screen (Osmo - Dropping Cards, adapted to plus tiles)
--------------------------------------------------------- */
.loading-container {
  z-index: 100;
  pointer-events: none;
  position: fixed;
  inset: 0;
}

.loading-screen {
  pointer-events: auto;
  color: var(--color-text);
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  overflow: clip;
}

.loading-screen__background {
  background-color: var(--color-grey);
  width: 100%;
  height: 100%;
  position: absolute;
}

.loading-screen__logo {
  position: absolute;
  bottom: 2em;
  display: flex;
  align-items: baseline;
  gap: 0.75em;
  white-space: nowrap;
}

.loading-screen__logo-name {
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--color-text);
}

.loading-screen__logo-tagline {
  font-size: 0.6875rem;
  color: var(--color-text-soft);
}

.loading-screen__list {
  grid-column-gap: 0.5em;
  grid-row-gap: 0.5em;
  opacity: 0;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.loading-screen__card {
  width: 6.5em;
  font-size: max(1.5vw, 1.5em);
  position: absolute;
}

.loading-screen__card-icon {
  width: 100%;
  height: auto;
  display: block;
}

/* ---------------------------------------------------------
   Teaser page (hero only)
--------------------------------------------------------- */
.page-wrapper { position: relative; }

.section_teaser {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: clip;
  padding: 2rem 2.5rem;
}

.teaser_header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
}

/* Brand logo in the header */
.teaser_logo {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.teaser_logo-img {
  display: block;
  width: auto;
}

.teaser_logo-img.is-desktop { height: 3.5rem; }
.teaser_logo-img.is-mobile { display: none; height: 4.5rem; }

.teaser_content {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
  padding: 2rem 0;
  position: relative;
  z-index: 1;
  max-width: 72rem;
  width: 100%;
  margin: 0 auto;
}

.teaser_text-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.75rem;
  max-width: 38rem;
}

.teaser_eyebrow { color: var(--color-text-soft); }

.teaser_heading {
  font-size: clamp(1.75rem, 3.1vw, 2.85rem);
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.15;
  text-wrap: balance;
}

.teaser_paragraph {
  max-width: 34rem;
  font-size: 1.0625rem;
  line-height: 1.55;
  color: #2a2a2a;
}

/* Services woven into the hero — each service has its own brand plus-icon,
   one per brand colour (green, yellow, orange, blue, pink). */
.teaser_services {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1.25rem;
  color: var(--color-text);
}

.teaser_service {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  white-space: nowrap;
}

.teaser_service-tile {
  width: 0.9rem;
  flex-shrink: 0;
}

.teaser_button-wrapper { margin-top: 0.5rem; }

/* ---------------------------------------------------------
   Object stage (specimen carousel)
--------------------------------------------------------- */
.objects {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  justify-self: center;
  width: min(24rem, 100%);
}

.objects_stage {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 11;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

/* Lab-achtige hoekmarkeringen rond het meetveld */
.objects_corner {
  position: absolute;
  width: 1rem;
  height: 1rem;
  border-color: #c2c2c2;
  border-style: solid;
  border-width: 0;
}

.objects_corner.is-top-left     { top: 0; left: 0; border-top-width: 0.0625rem; border-left-width: 0.0625rem; }
.objects_corner.is-top-right    { top: 0; right: 0; border-top-width: 0.0625rem; border-right-width: 0.0625rem; }
.objects_corner.is-bottom-left  { bottom: 0; left: 0; border-bottom-width: 0.0625rem; border-left-width: 0.0625rem; }
.objects_corner.is-bottom-right { bottom: 0; right: 0; border-bottom-width: 0.0625rem; border-right-width: 0.0625rem; }

.objects_item {
  position: absolute;
  inset: 5%;
  opacity: 0;
  pointer-events: none;
}

.objects_item.is-active { pointer-events: auto; }

.objects_image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  /* Witte fotoachtergrond versmelt met de grijze pagina */
  mix-blend-mode: multiply;
}

.objects_caption {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  color: var(--color-text-soft);
  min-height: 1.25rem;
}

.objects_caption-tile {
  width: 1rem;
  flex-shrink: 0;
  transition: background-color 0.4s var(--ease-osmo);
}

.objects_caption-text { white-space: nowrap; }

.objects_dots {
  display: flex;
  gap: 0.375rem;
}

.objects_dot {
  width: 0.75rem;
  border: none;
  cursor: pointer;
  opacity: 0.3;
  padding: 0;
  transition: opacity 0.3s var(--ease-osmo), rotate 0.6s var(--ease-osmo);
}

.objects_dot:hover { opacity: 0.65; }
.objects_dot.is-active { opacity: 1; rotate: 90deg; }

.teaser_footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  color: var(--color-text-soft);
}

.teaser_footer-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s var(--ease-osmo);
}

.teaser_footer-link:hover { color: var(--color-text); }

/* Footer contact links (email + phone) */
.teaser_contact {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.teaser_contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  color: var(--color-text-soft);
  text-decoration: none;
  transition: color 0.3s var(--ease-osmo);
}

.teaser_contact-link:hover { color: var(--color-text); }

.teaser_contact-icon {
  width: 1.05rem;
  height: 1.05rem;
  flex-shrink: 0;
  color: currentColor;
}

.teaser_contact-divider {
  width: 1px;
  height: 0.9rem;
  background-color: #c2c2c2;
}

/* Footer legal cluster (policies + copyright + site link) */
.teaser_footer-legal {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.teaser_copyright { color: var(--color-text-soft); white-space: nowrap; }

/* ---------------------------------------------------------
   Osmo Button 070 (brand overrides via CSS variables only)
--------------------------------------------------------- */
:root {
  --button-070-color: #131313;
  --button-070-color-background: transparent;
  --button-070-hover-color: #ECECEC;
  --button-070-hover-color-background: #131313;
  --button-070-color-focus: #131313;
  --button-070-corner-color: #131313;
  --button-070-corner-size: 0.375em;
  --button-070-corner-border-radius: 0em;
  --button-070-corner-border-width: 0.0625em;
  --button-070-corner-move: 0em;
  --button-070-hover-corner-color: #131313;
  --button-070-hover-corner-move: 0.25em;
  --button-070-hover-corner-border-radius: 0em;
  --button-070-padding: 0.75em 1em;
  --button-070-border-radius: 0.25em;
  --button-070-scale: 0.85;
  --button-070-focus-inset: -0.125em;
  --button-070-ease-hover: cubic-bezier(0.32, 0.72, 0, 1);
  --button-070-ease-focus: cubic-bezier(0.32, 0.72, 0, 1);
}

.button-070 {
  color: var(--button-070-color);
  -webkit-user-select: none;
  user-select: none;
  background-color: #0000;
  outline-style: none;
  border: none;
  -webkit-appearance: none;
  appearance: none;
  padding: 0;
  line-height: 1;
  text-decoration: none;
  display: inline-grid;
  position: relative;
  -webkit-tap-highlight-color: transparent;
  transition: color 0.2s var(--button-070-ease-hover);
}

.button-070::after {
  content: '';
  display: block;
  position: absolute;
  inset: var(--button-070-focus-inset);
  border-radius: var(--button-070-border-radius);
  transition: box-shadow 0.3s var(--button-070-ease-focus);
  pointer-events: none;
  z-index: 1;
}

.button-070:is(:focus-visible)::after {
  box-shadow: 0 0 0 0.125em var(--button-070-color-focus);
}

.button-070__bg-wrap {
  pointer-events: none;
  grid-area: 1 / 1;
  width: 100%;
  height: 100%;
  display: grid;
}

.button-070__corner-wrap {
  z-index: 1;
  grid-area: 1 / 1;
  grid-template-rows: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  height: 100%;
  display: grid;
}

.button-070__corner {
  width: var(--button-070-corner-size);
  height: var(--button-070-corner-size);
  padding: 0;
  will-change: transform;
  transition: border-color 0.2s var(--button-070-ease-hover), translate 0.45s var(--button-070-ease-hover), border-radius 0.45s var(--button-070-ease-hover);
}

.button-070__corner.is--top-left {
  border-top-style: solid;
  border-left-style: solid;
  border-top-color: var(--button-070-corner-color);
  border-left-color: var(--button-070-corner-color);
  border-top-left-radius: var(--button-070-corner-border-radius);
  border-top-width: var(--button-070-corner-border-width);
  border-left-width: var(--button-070-corner-border-width);
  place-self: flex-start;
  translate: calc(var(--button-070-corner-move) * -1) calc(var(--button-070-corner-move) * -1) 0;
}

.button-070__corner.is--top-right {
  border-top-right-radius: var(--button-070-corner-border-radius);
  border-top-style: solid;
  border-right-style: solid;
  border-right-color: var(--button-070-corner-color);
  border-right-width: var(--button-070-corner-border-width);
  border-top-width: var(--button-070-corner-border-width);
  border-top-color: var(--button-070-corner-color);
  place-self: flex-start flex-end;
  translate: calc(var(--button-070-corner-move) * 1) calc(var(--button-070-corner-move) * -1) 0;
}

.button-070__corner.is--bottom-left {
  border-bottom-left-radius: var(--button-070-corner-border-radius);
  border-bottom-style: solid;
  border-left-style: solid;
  border-bottom-width: var(--button-070-corner-border-width);
  border-bottom-color: var(--button-070-corner-color);
  border-left-width: var(--button-070-corner-border-width);
  border-left-color: var(--button-070-corner-color);
  place-self: flex-end flex-start;
  translate: calc(var(--button-070-corner-move) * -1) calc(var(--button-070-corner-move) * 1) 0;
}

.button-070__corner.is--bottom-right {
  border-bottom-right-radius: var(--button-070-corner-border-radius);
  border-bottom-style: solid;
  border-right-style: solid;
  border-bottom-color: var(--button-070-corner-color);
  border-bottom-width: var(--button-070-corner-border-width);
  border-right-width: var(--button-070-corner-border-width);
  border-right-color: var(--button-070-corner-color);
  place-self: flex-end;
  translate: calc(var(--button-070-corner-move) * 1) calc(var(--button-070-corner-move) * 1) 0;
}

.button-070__bg {
  background-color: var(--button-070-color-background);
  border-radius: var(--button-070-border-radius);
  grid-area: 1 / 1;
  width: 100%;
  height: 100%;
  padding: 0;
  scale: var(--button-070-scale);
  transition: background-color 0.2s var(--button-070-ease-hover), scale 0.4s var(--button-070-ease-hover);
}

.button-070__inner {
  width: 100%;
  height: 100%;
  padding: var(--button-070-padding);
  z-index: 1;
  grid-area: 1 / 1;
  justify-content: center;
  align-items: center;
  display: flex;
}

@media (hover: hover) and (pointer: fine) and (prefers-reduced-motion: no-preference) {
  .button-070:is(:hover, :focus-visible),
  [data-hover]:is(:hover, :focus-visible) .button-070 {
    color: var(--button-070-hover-color);
    transition: color 0.2s 0.05s var(--button-070-ease-hover);
  }

  .button-070:is(:hover, :focus-visible) .button-070__corner,
  [data-hover]:is(:hover, :focus-visible) .button-070 .button-070__corner {
    --button-070-corner-border-radius: var(--button-070-hover-corner-border-radius);
    --button-070-corner-color: var(--button-070-hover-corner-color);
    transition: border-color 0.2s 0.05s var(--button-070-ease-hover), translate 0.45s 0.05s var(--button-070-ease-hover), border-radius 0.45s 0.05s var(--button-070-ease-hover);
  }

  .button-070:is(:hover, :focus-visible) .button-070__corner.is--top-left,
  [data-hover]:is(:hover, :focus-visible) .button-070 .button-070__corner.is--top-left {
    translate: calc(var(--button-070-hover-corner-move) * 1) calc(var(--button-070-hover-corner-move) * 1) 0;
  }

  .button-070:is(:hover, :focus-visible) .button-070__corner.is--top-right,
  [data-hover]:is(:hover, :focus-visible) .button-070 .button-070__corner.is--top-right {
    translate: calc(var(--button-070-hover-corner-move) * -1) calc(var(--button-070-hover-corner-move) * 1) 0;
  }

  .button-070:is(:hover, :focus-visible) .button-070__corner.is--bottom-left,
  [data-hover]:is(:hover, :focus-visible) .button-070 .button-070__corner.is--bottom-left {
    translate: calc(var(--button-070-hover-corner-move) * 1) calc(var(--button-070-hover-corner-move) * -1) 0;
  }

  .button-070:is(:hover, :focus-visible) .button-070__corner.is--bottom-right,
  [data-hover]:is(:hover, :focus-visible) .button-070 .button-070__corner.is--bottom-right {
    translate: calc(var(--button-070-hover-corner-move) * -1) calc(var(--button-070-hover-corner-move) * -1) 0;
  }

  .button-070:is(:hover, :focus-visible) .button-070__bg,
  [data-hover]:is(:hover, :focus-visible) .button-070 .button-070__bg {
    background-color: var(--button-070-hover-color-background);
    scale: 1;
    transition: background-color 0.2s 0.05s var(--button-070-ease-hover), scale 0.425s 0.05s var(--button-070-ease-hover);
  }
}

/* ---------------------------------------------------------
   Responsive
--------------------------------------------------------- */
@media (max-width: 61.9375rem) {
  .teaser_content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }

  .teaser_text-column { align-items: center; order: 2; max-width: 40rem; }
  .teaser_paragraph { max-width: 34rem; }
  .teaser_services { justify-content: center; }
  .objects { order: 1; width: min(17rem, 100%); }
}

@media (max-width: 47.9375rem) {
  .section_teaser { padding: 1.5rem 1.25rem; }
  .teaser_logo-img.is-desktop { display: none; }
  .teaser_logo-img.is-mobile { display: block; height: 3.25rem; }
  .teaser_footer { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .teaser_footer-legal { justify-content: flex-start; }
  .modal_panel { padding: 2.25rem 1.5rem 1.75rem; }
}

/* ---------------------------------------------------------
   Reduced motion
--------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  .loading-container { display: none; }
  .objects_dot, .objects_caption-tile { transition: none; }
}

/* ---------------------------------------------------------
   Failsafe reveal
   Belt-and-suspenders so the loading screen can never trap
   the page. If the animation script does not run (e.g. the
   GSAP CDN is blocked), this fades the loader out on its own.
   main.js normally removes the loader well before this fires;
   see also the <noscript> block in index.html for the
   JS-disabled case.
--------------------------------------------------------- */
.loading-container {
  animation: loader-failsafe 0.6s ease 7s forwards;
}

@keyframes loader-failsafe {
  to { opacity: 0; visibility: hidden; pointer-events: none; }
}

@media (prefers-reduced-motion: reduce) {
  .loading-container { animation: none; }
}

/* ---------------------------------------------------------
   No-GSAP degraded mode
   main.js adds .no-gsap to <html> when the animation library
   is unavailable. Hide the loader and show the first wrapped
   object statically so the page is fully usable without JS
   animation.
--------------------------------------------------------- */
.no-gsap .loading-container { display: none; }
.no-gsap .objects_item:first-of-type { opacity: 1; }

/* ---------------------------------------------------------
   Contact modal (Tally form)
   Open/close runs on CSS transitions with the brand osmo
   easing, so it stays smooth even without GSAP.
--------------------------------------------------------- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s var(--ease-osmo), visibility 0s linear 0.5s;
}

.modal.is-open {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s var(--ease-osmo);
}

.modal_backdrop {
  position: absolute;
  inset: 0;
  background-color: rgba(19, 19, 19, 0.5);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  cursor: pointer;
}

.modal_panel {
  position: relative;
  width: min(34rem, 100%);
  max-height: min(90vh, 46rem);
  overflow-y: auto;
  background-color: var(--color-white);
  padding: 2.75rem 2.25rem 2rem;
  transform: translateY(1.5rem) scale(0.98);
  opacity: 0;
  transition: transform 0.6s var(--ease-osmo), opacity 0.5s var(--ease-osmo);
}

.modal.is-open .modal_panel {
  transform: translateY(0) scale(1);
  opacity: 1;
}

/* Lab-style corner markers, echoing the object stage */
.modal_corner {
  position: absolute;
  width: 0.85rem;
  height: 0.85rem;
  border-color: var(--color-text);
  border-style: solid;
  border-width: 0;
  pointer-events: none;
}

.modal_corner.is-top-left     { top: 0.75rem; left: 0.75rem; border-top-width: 1px; border-left-width: 1px; }
.modal_corner.is-top-right    { top: 0.75rem; right: 0.75rem; border-top-width: 1px; border-right-width: 1px; }
.modal_corner.is-bottom-left  { bottom: 0.75rem; left: 0.75rem; border-bottom-width: 1px; border-left-width: 1px; }
.modal_corner.is-bottom-right { bottom: 0.75rem; right: 0.75rem; border-bottom-width: 1px; border-right-width: 1px; }

.modal_close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: none;
  background-color: transparent;
  color: var(--color-text);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: background-color 0.4s var(--ease-osmo);
}

.modal_close svg {
  width: 1.25rem;
  height: 1.25rem;
  display: block;
  transition: transform 0.5s var(--ease-osmo);
}

.modal_close:hover,
.modal_close:focus-visible {
  background-color: var(--color-yellow);
  outline: none;
}

.modal_close:hover svg,
.modal_close:focus-visible svg {
  transform: rotate(90deg);
}

.modal_eyebrow { color: var(--color-text-soft); margin-bottom: 0.75rem; }

.modal_title {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.1;
}

.modal_intro {
  margin-top: 0.75rem;
  color: var(--color-text-soft);
  font-size: 0.95rem;
  line-height: 1.5;
}

.modal_body { margin-top: 1.75rem; }

.modal_body iframe {
  width: 100%;
  min-height: 313px;
  border: 0;
  display: block;
}

/* Placeholder shown until the Tally embed is pasted in */
.modal_placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
  padding: 2.5rem 1.5rem;
  border: 1px dashed #c2c2c2;
  color: var(--color-text-soft);
  line-height: 1.6;
}

.modal_placeholder-tile { width: 1.75rem; }

.modal_placeholder-sub { text-transform: none; letter-spacing: 0; }

.modal_placeholder a { color: var(--color-text); }

/* Lock scroll while the modal is open */
body.modal-open { overflow: hidden; }

@media (prefers-reduced-motion: reduce) {
  .modal,
  .modal.is-open,
  .modal_panel,
  .modal.is-open .modal_panel,
  .modal_close svg {
    transition: none;
  }
  .modal_panel { transform: none; }
}

/* ---------------------------------------------------------
   Thank-you page (/thank-you) — Tally form redirect target
--------------------------------------------------------- */
.thanks {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
}

.thanks_inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  max-width: 40rem;
}

.thanks_eyebrow { color: var(--color-text-soft); }

.thanks_heading {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.thanks_text {
  max-width: 24rem;
  font-size: 1.0625rem;
  line-height: 1.55;
  color: #2a2a2a;
}

.thanks_button-wrapper { margin-top: 0.75rem; }

/* Floating brand plus-icons that pulse in and out at random spots.
   js/thank-you.js repositions and recolours them; the preset positions
   below are the static fallback for no-JS / reduced-motion. */
.thanks_field {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.thanks_plus {
  position: absolute;
  width: 2.75rem;
  height: auto;
  display: block;
  will-change: transform, opacity;
}

.thanks_plus:nth-of-type(1) { top: 16%; left: 80%; }
.thanks_plus:nth-of-type(2) { top: 40%; left: 11%; }
.thanks_plus:nth-of-type(3) { top: 74%; left: 76%; }
.thanks_plus:nth-of-type(4) { top: 82%; left: 22%; }
.thanks_plus:nth-of-type(5) { top: 20%; left: 42%; }

@media (max-width: 47.9375rem) {
  .thanks_plus { width: 2rem; }
}
