/* =========================================
   ADinB Landing Page — Design System
   ========================================= */

/* ---------- @font-face declarations ---------- */
@font-face {
  font-family: 'Neue Montreal';
  src: url('assets/Fonts/NeueMontreal-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Neue Montreal';
  src: url('assets/Fonts/NeueMontreal-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'PP Right Serif';
  src: url('assets/Fonts/PP%20Right%20Serif%20-%20Medium_2.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'PP Editorial New';
  src: url('assets/Fonts/PPEditorialNew-Ultralight.otf') format('opentype');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Acumin Variable';
  src: url('assets/Fonts/AcuminVariableConcept.otf') format('opentype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Helvetica Neue';
  src: url('assets/Fonts/HelveticaNeue.ttc') format('collection');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400;700&display=swap');

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Brand Colors */
  --offwhite: #F5F0EB;
  --cream: #F5F0EB;
  --dark: #2B2B2B;
  --red: #d53639;
  --red-dark: #C42318;
  --lime: #E1FD7B;
  --yellow: #FFF06B;
  --gray-100: #F5F5F5;
  --gray-200: #EBEBEB;
  --gray-400: #999999;
  --gray-600: #666666;
  --gray-800: #333333;
  --whity: #f9f9f2;

  /* Typography */
  --ff-sans: 'Neue Montreal', 'Helvetica Neue', -apple-system, BlinkMacSystemFont, sans-serif;
  --ff-serif: 'PP Editorial New', 'PP Right Serif', Georgia, serif;
  --ff-hand: 'Caveat', cursive;
  --ff-acumin: 'Acumin Variable', 'Neue Montreal', sans-serif;

  /* Spacing */
  --section-pad-x: 7.5%;
  --section-pad-y: clamp(60px, 8vh, 120px);

  /* Transitions */
  --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  scroll-snap-type: y mandatory;
}

body {
  font-family: var(--ff-sans);
  color: var(--dark);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ---------- Responsive Visibility ---------- */
.mobile-only {
  display: none;
}

/* ---------- Full-Screen Section Base ---------- */
.section {
  min-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: var(--section-pad-y) var(--section-pad-x);
  scroll-snap-align: start;
  box-sizing: border-box;
}

/* ---------- Scroll Reveal Animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.15s;
}

.reveal-delay-2 {
  transition-delay: 0.3s;
}

.reveal-delay-3 {
  transition-delay: 0.45s;
}

.reveal-delay-4 {
  transition-delay: 0.6s;
}

.reveal-delay-5 {
  transition-delay: 0.75s;
}

/* =========================================
   SECTION 1 — HERO  (exact PDF match)
   ========================================= */
#hero {
  background: var(--cream);
  padding-left: 10vw;
  padding-right: 10vw;
  justify-content: center;
  align-items: flex-start;
}

/* Logo top-right */
.hero__logo {
  position: absolute;
  top: 1.9vw;
  right: var(--section-pad-x);
  z-index: 10;
}

.hero__logo img {
  height: 2.5vw;
  width: auto;
}

/* Hero text grid — complex layout matching PDF */
.hero__layout {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding-top: 2.2vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  flex: 1;
  gap: 0;
  align-content: space-between;
}

/* Each line row — all items share the same bottom line */
.hero__line {
  display: flex;
  align-items: flex-end;
  gap: 1vw;
  flex-wrap: nowrap;
}

.hero__text {
  font-family: var(--ff-sans);
  font-weight: 400;
  text-transform: uppercase;
  color: var(--red);
  line-height: 1;
  letter-spacing: -0.03em;
  font-size: 7em;
  white-space: nowrap;
  margin-bottom: -0.1em;
}

/* Inline photo thumbnails */
.hero__photo {
  display: inline-block;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 3px;
}

.hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__photo--sm {
  width: 5.5vw;
  height: 6vw;
}

.hero__photo--md {
  width: 6.5vw;
  height: 5.8vw;
}

.hero__photo--tall {
  width: 7.5vw;
  height: 13vw;
}

/* Red dot image (Asset 6) */
.hero__dot-img {
  width: 2vw;
  height: 2vw;
  flex-shrink: 0;
}

/* Legacy - keep if needed */
.hero__dot {
  width: 2.5vw;
  height: 2.5vw;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}

/* Branding words stacked */
.hero__words {
  display: flex;
  flex-direction: column;
  gap: 0;
  flex-shrink: 0;
  margin-bottom: 0;
  align-self: flex-end;
}

.hero__words span {
  font-family: var(--ff-sans);
  font-weight: 500;
  font-size: 1vw;
  text-transform: uppercase;
  color: var(--red);
  letter-spacing: 0.04em;
  line-height: 1.35;
  font-family: 'PP Right Serif';
}

/* Red down arrow — bigger + floated to right edge */
.hero__arrow-down {
  position: absolute;
  right: 3%;
  top: 50%;
  transform: translateY(-50%);
  width: 3.5vw;
}

.hero__arrow-down img {
  width: 100%;
  height: auto;
}

/* Small red arrows grid */
.hero__arrows-grid {
  flex-shrink: 0;
  width: 7vw;
  margin-right: 1vw;
}

.hero__arrows-grid img {
  width: 100%;
  height: auto;
}

/* Photo with red block overlay (Asset 5 — person with glasses + red) */
.hero__photo-overlay {
  position: relative;
  display: inline-block;
  flex-shrink: 0;
  width: 6.5vw;
  height: 8vw;
  overflow: hidden;
  border-radius: 3px;
}

.hero__photo-overlay img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Red square block */
.hero__red-block {
  width: 4.5vw;
  height: 4.5vw;
  background: var(--red);
  flex-shrink: 0;
}

/* Line 1: relative for arrow positioning */
.hero__line--1 {
  position: relative;
  margin-bottom: -0.4vw;
  padding-right: 5vw;
}

/* Line 2: float right, dot aligns bottom */
.hero__line--2 {
  justify-content: flex-end;
  margin-bottom: -0.4vw;
}

/* Lines 3-5 container — relative for floating images */
.hero__rows-block {
  position: relative;
  width: 100%;
}

/* Glasses image + dot: absolutely positioned right, centered on lines 3-4 */
.hero__float-right {
  position: absolute;
  top: 33%;
  transform: translateY(-50%);
  right: 0;
  display: flex;
  align-items: flex-end;
  gap: 0.5vw;
  height: 53%;
  z-index: 2;
}

.hero__float-right-img {
  height: 100%;
  width: auto;
  object-fit: cover;
  border-radius: 3px;
}

/* Walking person: absolutely positioned left, spans lines 4-5 */
.hero__float-left {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 66%;
  z-index: 2;
}

.hero__float-left-img {
  height: 100%;
  width: auto;
  object-fit: cover;
  border-radius: 3px;
}

/* Line 3 inside rows-block — text to the left of glasses image */
.hero__line--3 {
  justify-content: flex-end;
  margin-bottom: -0.4vw;
  padding-right: 13vw;
}

/* Line 4 inside rows-block — text to the left of glasses image, pad left for walking person */
.hero__line--4 {
  justify-content: flex-end;
  margin-bottom: -0.4vw;
  padding-left: 8.5vw;
  padding-right: 13vw;
}

/* Line 5 inside rows-block — starts after walking person, no gap between arrows and text */
.hero__line--5 {
  margin-bottom: 0;
  padding-left: 13vw;
  gap: 0;
  align-items: center;
}

.hero__line--6 {
  margin-top: -0.4vw;
}

/* =========================================
   SECTION 2 — WHO WE ARE
   ========================================= */
#who-we-are {
  background: var(--red);
  color: #fff;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 3.5vw;
  padding-bottom: 2vw;
  overflow: hidden;
}

/* Top row: title + bullets */
.who__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 3.5vw;
  position: relative;
  z-index: 3;
}

.who__label {
  font-size: 6vw;
  font-family: var(--ff-sans);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 0.95;
  color: #fff;
  margin: 0;
}

.who__label-light {
  font-family: 'PP Editorial New', serif;
  font-weight: 300;
}

/* Arrow bullet points top-right */
.who__bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  flex-shrink: 0;
}

.who__bullets li {
  font-family: var(--ff-sans);
  font-size: 1.5vw;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1;
  color: #fff;
}

/* Content area — text overlaps illustration */
.who__content {
  margin-top: 5%;
  position: relative;
  width: 100%;
  flex: 1;
  display: flex;
  align-items: flex-start;
}

.who__text-side {
  position: relative;
  z-index: 3;
  max-width: 70%;
  padding-top: 1vw;
}

.who__body-main {
  font-family: 'PP Editorial New', serif;
  font-weight: 300;
  font-size: 4vw;
  line-height: 1.2;
  color: #000;
  margin: 0 0 1.5vw 0;
}

.who__body-main strong {
  font-weight: 700;
  font-style: normal;
  font-family: var(--ff-sans);
}

.who__body-sub {
  font-family: var(--ff-sans);
  font-size: 1.8vw;
  line-height: 1.2;
  color: #000;
  margin: 0;
  font-weight: 400;
  max-width: 70%;
}

/* Team illustration — positioned to overlap text */
.who__image-side {
  position: absolute;
  right: 0%;
  bottom: -1vw;
  width: 50%;
  z-index: 1;
}

.who__image-side img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* OUR STORY circular badge */
.who__badge {
  position: absolute;
  bottom: 3vw;
  right: 10%;
  z-index: 4;
}

.who__badge-circle {
  width: 5.5vw;
  height: 5.5vw;
  border-radius: 50%;
  background: #222;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.15vw;
}

.who__badge-text-top,
.who__badge-text-bottom {
  font-family: var(--ff-sans);
  font-size: 0.5vw;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
}

.who__badge-arrow {
  font-size: 1.3vw;
  color: #fff;
  line-height: 1;
}


/* =========================================
   SECTION 3 — FOUNDING / STORY
   ========================================= */
#founding {
  background: var(--cream);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 6vw;
  padding-bottom: 4vw;
  min-height: auto;
}

.founding__layout {
  display: flex;
  align-items: flex-start;
  gap: 2vw;
  width: 100%;
  flex: 1;
}

.founding__left {
  flex: 0 0 55%;
  max-width: 55%;
}

.founding__headline {
  font-family: 'PP Editorial New', serif;
  font-weight: 300;
  font-size: 4vw;
  line-height: 1.15;
  color: var(--dark);
  margin: 0 0 3vw 0;
  position: relative;
}

.founding__headline sup {
  font-size: 0.45em;
  vertical-align: super;
  font-style: normal;
}

.founding__highlight-img {
  height: 6vw;
  margin-left: -1vw;
  margin-top: 5px;
  margin-bottom: 5px;
  transform: rotate(-8deg);
  vertical-align: middle;
}

.founding__body {
  font-family: var(--ff-sans);
  font-size: 1.05vw;
  line-height: 1.65;
  color: var(--dark);
  max-width: 70%;
  margin-top: 10%;
}

.founding__body strong {
  font-weight: 700;
}

/* Red circle badge — right side */
.founding__badge-side {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  padding-top: 5vw;
}

.founding__vision-badge {
  width: 20vw;
  height: 20vw;

}

/* Bottom quote */
.founding__quote {
  align-self: flex-end;
  font-family: var(--ff-sans);
  font-size: 2vw;
  color: var(--red);
  text-align: right;
  line-height: 1.2;
  font-weight: 600;
  margin: 0;
}

/* =========================================
   SECTION 4 — VISION & MISSION (now part of #founding)
   ========================================= */
#founding .vm__columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6vw;
  width: 100%;
  margin-top: 3vw;
}

.vm__column-head {
  display: flex;
  align-items: center;
  gap: 1vw;
  margin-bottom: 1.5vw;
}

.vm__arrow {
  font-size: 1.5vw;
  color: var(--dark);
}

.vm__column-title {
  font-family: 'PP Editorial New', serif;
  font-size: 3vw;
  font-weight: 200;
}

.vm__column-body {
  font-family: var(--ff-sans);
  font-size: 2vw;
  line-height: 1;
  color: var(--dark);
}

.vm__badge-wrap {
  display: flex;
  justify-content: center;
  margin-top: 3vw;
}

.vm__services-badge {
  width: 10vw;
  height: 10vw;
  bottom: -10%;
  cursor: pointer;

}

.vm__services-badge:hover {
  transform: scale(1.1);
}

/* =========================================
   SECTION 5 — SERVICES
   ========================================= */
#services {
  background: var(--lime);
  position: relative;
  overflow: hidden;
  justify-content: flex-start;
  padding-top: 10vw;
}

.services__header {
  text-align: center;
  position: relative;
  z-index: 2;
}

.services__title {
  font-family: var(--ff-sans);
  font-size: 4.5vw;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.05;
  color: var(--dark);
  margin-bottom: 1vw;
}

.services__subtitle {
  font-family: 'PP Editorial New', serif;
  font-size: 1.8vw;
  color: var(--dark);
  max-width: 35vw;
  margin: 0 auto;
  line-height: 1.5;
}

/* Grid is a positioned container for the bubbles */
.services__grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.service-bubble {
  width: 12vw;
  position: absolute;
  pointer-events: all;
  cursor: pointer;
  transition: transform 0.5s var(--ease-spring);
}

.service-bubble:hover {
  transform: translateY(-0.8vw) scale(1.04);
}

/* Position each bubble to match PDF layout */
.service-bubble--top-left {
  top: 10%;
  left: 5%;
}

.service-bubble--top-right {
  top: 10%;
  right: 5%;
}

.service-bubble--mid-left {
  top: 48%;
  left: 10%;
}

.service-bubble--center {
  bottom: 20%;
  left: 40%;
  transform: translateX(-50%);
}

.service-bubble--center:hover {
  transform: translateX(-50%) translateY(-0.8vw) scale(1.04);
}

.service-bubble--mid-right {
  top: 60%;
  right: 10%;
}

/* Play button accent (YouTube icon) */
.play-accent {
  position: absolute;
  bottom: 1vw;
  left: -1vw;
  width: 4vw;
  height: 4vw;
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-accent img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.play-accent svg {
  width: 10px;
  height: 10px;
  fill: #fff;
}

/* =========================================
   SECTION 6 — EXPERIENCES
   ========================================= */
#experiences {
  background: var(--lime);
  align-items: flex-start;
  justify-content: center;
}

.exp__grid {
  display: grid;
  grid-template-columns: 50% auto 1fr;
  gap: 2vw;
  width: 100%;
  align-items: start;
}

.exp__label {
  font-family: var(--ff-sans);
  font-size: 4vw;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 2vw;
}

.exp__text-side {
  width: 90%;
}

.exp__label .outlined {
  font-weight: 300;
  -webkit-text-stroke: 0;
  color: var(--dark);
}

.exp__body {
  font-family: var(--ff-sans);
  font-size: 4vw;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1.5vw;
  color: var(--dark);
  position: relative;
}

.exp__collab-img {
  height: 5vw;
  vertical-align: baseline;
  display: inline;
  position: relative;
  top: 0.3vw;
  margin-left: -50%;
}

.exp__body-sub {
  font-family: var(--ff-sans);
  font-size: 1.8vw;
  color: var(--dark);
  line-height: 1.6;
  max-width: 100%;
}

.exp__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
  cursor: pointer;
  align-self: center;
}

.exp__arrow:hover {
  transform: translateX(0.5vw);
}

.exp__arrow-img {
  width: 3vw;
  height: auto;
}

/* Right side — sector list */
.exp__sectors-side {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.exp__sectors {
  display: flex;
  flex-direction: column;
  gap: 2.5vw;
}

.exp__sector {
  display: flex;
  align-items: baseline;
  gap: 0.5vw;
  transition: transform 0.3s var(--ease-out);
  text-align: center;
  justify-content: center;
}

.exp__sector:hover {
  transform: translateX(0.5vw);
}

.exp__sector-num {
  font-family: var(--ff-sans);
  font-size: 0.8vw;
  font-weight: 400;
  color: var(--dark);
  vertical-align: super;
}

.exp__sector-name {
  font-family: 'PP Editorial New', serif;
  font-style: italic;
  font-size: 1.8vw;
  font-weight: 400;
  text-align: center;
}

.exp__note {
  margin-top: 2.5vw;
  font-family: var(--ff-serif);
  font-size: 2.3vw;
  font-weight: 900;
  text-align: center;
  color: var(--dark);
  line-height: 1;
}

/* =========================================
   SECTION 7 — CLIENTS
   ========================================= */
#clients {
  background: var(--whity);
  justify-content: flex-start;
  padding-top: 5vw;
}

.clients__header {
  display: flex;
  align-items: center;
  gap: 1.5vw;
  margin-bottom: 4vw;
  width: 100%;
}

.clients__title {
  font-family: var(--ff-sans);
  font-size: 4vw;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
}

.clients__title .outlined {
  font-family: 'PP Editorial New', serif;
  font-weight: 200;

  -webkit-text-stroke: 0;
  color: var(--dark);
}

/* Red dot next to title */
.clients__red-dot {
  width: 4vw;
  height: 4vw;
}

/* Client logos as single image */
.clients__logos-img {
  width: 100%;
}

.clients__logos-img img {
  width: 100%;
  height: auto;
}

/* Decorative dots */
.clients__decor {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 1vw;
}

.clients__decor--right {
  right: var(--section-pad-x);
  bottom: 15%;
}

.clients__decor-dot-img {
  width: 2vw;
  height: 2vw;
}

/* =========================================
   SECTION 8 — AWARDS
   ========================================= */
#awards {
  background: var(--cream);
  justify-content: flex-start;
  padding-top: 3vw;
  position: relative;
}

.awards__content {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.awards__title-wrap {
  margin-bottom: 2vw;
}

.awards__title-img {
  height: 6vw;
  width: auto;
}

.awards__image {
  width: 85%;
  margin: 0 auto;
  object-fit: contain;
  border-radius: 0.5vw;
}

.awards__footer {
  display: flex;
  align-items: center;
  gap: 1.5vw;
  margin-top: 2vw;
  align-self: flex-end;
  padding-right: 8%;
}

.awards__arrow {
  width: 4vw;
  height: 4vw;
  border: 2px solid var(--dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  font-size: 1.8vw;
  transition: background 0.3s, transform 0.3s;
  cursor: pointer;
  text-decoration: none;
}

.awards__arrow:hover {
  background: var(--dark);
  color: var(--cream);
  transform: translateX(0.3vw);
}

.awards__footer-tag {
  color: var(--dark);
  font-size: 1.4vw;
  font-family: 'PP Editorial New', serif;
  font-style: italic;
  letter-spacing: 0.02em;
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
  background: var(--dark);
  color: #fff;
  padding: 60px var(--section-pad-x) 32px;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer__brand img {
  height: 28px;
  margin-bottom: 20px;
  filter: brightness(10);
}

.footer__brand p {
  font-family: var(--ff-sans);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  max-width: 280px;
}

.footer__col-title {
  font-family: var(--ff-sans);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 16px;
}

.footer__col a {
  display: block;
  font-family: var(--ff-sans);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  padding: 4px 0;
  transition: color 0.3s, transform 0.3s;
}

.footer__col a:hover {
  color: #fff;
  transform: translateX(4px);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer__socials {
  display: flex;
  gap: 16px;
}

.footer__socials a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}

.footer__socials a:hover {
  border-color: var(--red);
  background: var(--red);
  color: #fff;
}

/* =========================================
   KEYFRAMES
   ========================================= */
@keyframes pulse-dot {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.3);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes spin-slow {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}