/* ===================================================
   DRIIIV — Clean CSS (no Webflow dependencies)
   =================================================== */

/* --------------------------------------------------
   FONTS
   -------------------------------------------------- */
@font-face {
  font-family: 'Cutivemono';
  src: url('../fonts/CutiveMono-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Switzer';
  src: url('../fonts/Switzer-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Didot Title';
  src: url('../fonts/Didot-Title.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Didot';
  src: url('../fonts/Didot.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* --------------------------------------------------
   MINIMAL RESET
   -------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
}
html, body {
  margin: 0;
  padding: 0;
}
img, video {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
}

/* --------------------------------------------------
   CSS VARIABLES
   -------------------------------------------------- */
:root {
  --page-bg: #1a1a1a;
  --main-white: #f3f2ee;
  --primary: #e70010;
}

/* --------------------------------------------------
   FLEX UTILITIES (replaces Webflow w-layout-*)
   -------------------------------------------------- */
.hflex {
  flex-direction: row;
  align-items: flex-start;
  display: flex;
}
.vflex {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

/* --------------------------------------------------
   TYPOGRAPHY
   -------------------------------------------------- */
h2 {
  color: var(--page-bg);
  text-transform: uppercase;
  width: 100%;
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Switzer, Tahoma, sans-serif;
  font-size: clamp(56px, 7vw, 130px);
  font-weight: 400;
  line-height: 90%;
}
h3 {
  color: var(--page-bg);
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Switzer, Tahoma, sans-serif;
  font-size: clamp(46px, 5vw, 85px);
  font-weight: 400;
  line-height: 80%;
  text-align: left; 
}
h4 {
  color: var(--page-bg);
  text-transform: uppercase;
  margin-top: 10px;
  margin-bottom: 0;
  font-family: Switzer, Tahoma, sans-serif;
  font-size: clamp(24px, 2vw, 36px);
  font-weight: 400;
  line-height: 120%;
}
h5 {
  color: var(--page-bg);
  text-transform: uppercase;
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Cutivemono, 'Palatino Linotype', sans-serif;
  font-size: clamp(9px, 3vw, 14px);
  font-weight: 400;
  line-height: 100%;
}
p {
  color: var(--page-bg);
  margin-bottom: 10px;
  font-family: Cutivemono, 'Palatino Linotype', sans-serif;
  font-size: clamp(18px, 1.1vw, 22px);
  line-height: 120%;
}
a {
  color: var(--main-white);
}

/* --------------------------------------------------
   BODY
   -------------------------------------------------- */
body {
  background-color: var(--page-bg);
  cursor: none;
}

a, button, [role="button"], input, label, select, textarea {
  cursor: none;
}

html.page-loading,
body.page-loading {
  overflow: hidden;
}

/* Light background variant (e.g. imprint page) */
body.light {
  background-color: var(--main-white);
}

.section.imprint {
  padding-top: 80px;
  justify-content: flex-start;
}

.push-top {
  margin-top: 80px;
}

/* --------------------------------------------------
   STARTUP LOADER
   -------------------------------------------------- */
.page-loader {
  position: fixed;
  inset: 0;
  background-color: #232323;
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  z-index: 9999;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}

body.page-ready .page-loader {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

body.page-loading .section.hero .driiiv-logo,
body.page-loading .topline,
body.page-loading .section.hero h5.white,
body.page-loading .med-p.max-w,
body.page-loading .hero-scroll-hint {
  opacity: 0;
}

body.page-loading .topline,
body.page-loading .section.hero h5.white {
  transform: translate3d(0, 40px, 0);
}

body.page-loading .med-p.max-w {
  transform: translate3d(0, 120px, 0);
}

/* --------------------------------------------------
   SECTIONS
   -------------------------------------------------- */
.section {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 100vw;
  min-height: 100dvh;
  padding: 200px 8vw;
  display: flex;
  position: relative;
  overflow: hidden;
  gap: 6vw;
}
.section.centerd {
  justify-content: center;
  align-items: center;
}
.section.centerd.contact {
  justify-content: flex-start;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 48px;
}
.section.hero {
  min-height: 100svh;
  padding-bottom: 10vw;
  position: relative;
  z-index: 2;
}

/* --------------------------------------------------
   HEADER / NAV
   -------------------------------------------------- */
.header {
  z-index: 10;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding: 24px;
  display: flex;
  position: fixed;
  inset: 0 0 auto 0;
}
.header-content {
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  padding-left: 4px;
  padding-right: 4px;
}
.driiiv-logo-header {
  color: var(--main-white);
  text-transform: uppercase;
  mix-blend-mode: difference;
  font-family: Switzer, Tahoma, sans-serif;
  font-size: 10px;
  font-weight: 400;
}
.menue-btn {
  z-index: 10;
  color: var(--main-white);
  text-transform: uppercase;
  background-color: transparent;
  padding: 4px 8px;
  font-family: Cutivemono, 'Palatino Linotype', sans-serif;
  position: relative;
  cursor: none;
}

/* Menu flyout */
#menue-flyout {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 1s cubic-bezier(0.83, 0, 0.17, 1),
    transform 1s cubic-bezier(0.83, 0, 0.17, 1),
    visibility 1s;
  z-index: 9;
  gap: 17px;
  justify-content: flex-start;
  align-items: flex-end;
  padding: 81px 30px 27px;
  inset: 0 0 auto auto;
  flex-direction: column;
  display: flex;
}
#menue-flyout.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
#menue-flyout > * {
  opacity: 0;
  transform: translateX(30px);
  transition:
    opacity 1s cubic-bezier(0.83, 0, 0.17, 1),
    transform 1s cubic-bezier(0.83, 0, 0.17, 1);
}
#menue-flyout.active > * {
  opacity: 1;
  transform: translateX(0);
}
.menue-item-wrap {
  display: block;
}
.menue-item {
  color: #f3f2eeb3;
  text-transform: uppercase;
  font-family: Cutivemono, 'Palatino Linotype', sans-serif;
  display: inline-block;
  transition: color 0.4s ease, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
body[data-bg-theme="dark"] .menue-item-wrap:hover .menue-item,
body[data-bg-theme="light"] .menue-item-wrap:hover .menue-item,
body[data-bg-theme="dark"] .menue-item-wrap.is-active .menue-item,
body[data-bg-theme="light"] .menue-item-wrap.is-active .menue-item {
  color: rgb(231, 0, 16) !important;
  transform: scale(1.1);
}
body[data-bg-theme="red"] .menue-item-wrap:hover .menue-item,
body[data-bg-theme="red"] .menue-item-wrap.is-active .menue-item {
  color: rgb(243, 242, 238) !important;
  transform: scale(1.1);
}

/* --------------------------------------------------
   HERO SECTION
   -------------------------------------------------- */
.brand-wrapper {
  gap: 5vw;
  justify-content: flex-start;
  align-items: center;
  width: 90%;
  position: relative;
  z-index: 3;
}
.topline {
  color: var(--main-white);
  text-align: center;
  font-family: 'Didot Title', Georgia, sans-serif;
  font-size: 18px;
}

/* --------------------------------------------------
   HERO EYE — Fixed full-screen overlay
   -------------------------------------------------- */
.hero-eye {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100svh;
  object-fit: cover;
  object-position: center;
  opacity: 1;
  z-index: 1;
  pointer-events: none;
  transform-origin: center center;
}

/* --------------------------------------------------
   LOGO
   -------------------------------------------------- */
.driiiv-logo {
  width: 100%;
  max-width: 1200px;
  position: relative;
  z-index: 3;
}

.hero-scroll-hint-wrap {
  position: fixed;
  top: 50vh;
  left: 50%;
  z-index: 3;
  pointer-events: none;
  /* horizontal centering + vertical offset are set by GSAP in calcLogoOffset */
}

.hero-scroll-hint {
  margin: 0;
  color: var(--main-white);
  font-family: Cutivemono, 'Palatino Linotype', sans-serif;
  font-size: clamp(9px, 0.9vw, 14px);
  line-height: 1.4;
  text-transform: uppercase;
  text-align: center;
  width: max-content;
  z-index: 3;
  transition: opacity 0.2s linear;
}

.section.hero .med-p,
.section.hero h5 {
  position: relative;
  z-index: 3;
  transition: opacity 0.2s linear, transform 0.2s linear;
}
.driiiv-logo.small-logo {
  width: 26%;
  margin-bottom: 20px;
}

/* --------------------------------------------------
   TEXT UTILITIES
   -------------------------------------------------- */
.text-span,
.strike-custom {
  text-decoration: line-through;
}
.white {
  color: var(--main-white);
}
.white.center {
  text-align: center;
}
.center {
  text-align: center;
}
.full-width {
  width: 100%;
}
.uppercase {
  text-transform: uppercase;
}
.full-width.white.nomargin {
  margin-bottom: -15px;
}

/* --------------------------------------------------
   MED-P (large display text)
   -------------------------------------------------- */
.med-p {
  color: var(--main-white);
  text-align: left;
  text-transform: uppercase;
  width: 90%;
  font-family: Switzer, Tahoma, sans-serif;
  font-size: clamp(42px, 6vw, 120px);
  font-weight: 400;
  line-height: 86%;
}
.med-p.full-width {
  color: var(--page-bg);
  text-align: left;
  width: 100%;
  margin-top: 43px;
}
.med-p.left-align {
  text-align: left;
}
.med-p.left-align.dark {
  color: var(--page-bg);
}
.med-p.left-align.darklink {
  color: var(--page-bg);
  transition: color 0.4s;
}
.med-p.left-align.darklink:hover {
  color: var(--main-white);
}
.med-p.max-w {
  text-align: left;
  max-width: 1200px;
  margin-top: -1vw;
}
.med-p.center {
  text-align: center;
}
.med-p-smaller {
  font-size: clamp(36px, 5vw, 90px) !important;
  line-height: 86% !important;
}

/* --------------------------------------------------
   BIG-P
   -------------------------------------------------- */
.big-p {
  z-index: 1;
  color: var(--main-white);
  text-transform: uppercase;
  width: 100%;
  max-width: 1200px;
  font-family: Switzer, Tahoma, sans-serif;
  font-size: 7vw;
  line-height: 86%;
  position: relative;
}
.big-p.center { text-align: center; }
.big-p.center.dark-text { color: var(--page-bg); }

/* --------------------------------------------------
   CONTENT WRAPPER
   -------------------------------------------------- */
.content-wrapper {
  flex-flow: column;
  flex: 1;
  justify-content: space-between;
  align-items: center;
  width: 94%;
  max-width: 1380px;
  height: auto;
  display: flex;
  position: relative;
  gap: 0;
}
.content-wrapper.teaser {
  gap: 6vw;
  width: 92%;
}
/* --------------------------------------------------
   MINDSET DARK SECTION
   -------------------------------------------------- */
.why-dark {
  position: relative;
}
.why-dark .teaser {
  align-items: flex-start;
}
.why-dark h5 {
  margin-bottom: 4px;
}
.why-dark h3 {
  margin-top: 0;
}
/* Mindset (light) section — same layout rules */
.why .teaser {
  align-items: flex-start;
}
.why h5 {
  margin-bottom: 4px;
}
.why h3 {
  margin-top: 0;
  text-transform: uppercase;
}
.why-side-text {
  position: absolute;
  left: 2vw;
  top: 50%;
  font-family: Cutivemono, 'Palatino Linotype', sans-serif;
  font-size: clamp(9px, 0.9vw, 14px);
  color: var(--page-bg);
  line-height: 1.4;
  margin: 0;
  pointer-events: none;
  z-index: 1;
}
.what-side-text {
  position: absolute;
  left: 2vw;
  top: 50%;
  font-family: Cutivemono, 'Palatino Linotype', sans-serif;
  font-size: clamp(9px, 0.9vw, 14px);
  color: var(--page-bg);
  line-height: 1.4;
  margin: 0;
  pointer-events: none;
  z-index: 1;
}
.contact-side-text {
  position: absolute;
  left: 2vw;
  top: 50%;
  font-family: Cutivemono, 'Palatino Linotype', sans-serif;
  font-size: clamp(9px, 0.9vw, 14px);
  color: var(--page-bg);
  line-height: 1.4;
  margin: 0;
  pointer-events: none;
  z-index: 1;
}
.why-dark h3 {
  text-transform: uppercase;
}
.why-dark-side-text {
  position: absolute;
  left: 2vw;
  top: 50%;
  font-family: Cutivemono, 'Palatino Linotype', sans-serif;
  font-size: clamp(9px, 0.9vw, 14px);
  color: var(--main-white);
  line-height: 1.4;
  margin: 0;
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: difference;
}
.content-wrapper.smaller-with {
  max-width: 52vw;
}
.content-wrapper.evensmaller-with {
  max-width: 32vw;
}


/* --------------------------------------------------
   TEASER SECTION
   -------------------------------------------------- */
.teaser {
  justify-content: flex-start;
  align-items: center;
}
.teaser-content {
  width: 96%;
  max-width: 1200px;
}
.heading {
  text-transform: uppercase;
  width: 96%;
  max-width: 1200px;
  margin-top: 0;
  margin-bottom: 24px;
  font-family: Switzer, Tahoma, sans-serif;
  font-size: 5vw;
  font-weight: 400;
  line-height: 90%;
}

/* --------------------------------------------------
   BRANDS SECTION
   -------------------------------------------------- */
.brand-logo {
  color: var(--main-white);
  text-transform: uppercase;
  margin-top: -7px;
  font-size: clamp(18px, 2vw, 36px);
  font-weight: 400;
  line-height: 100%;
  margin-bottom: clamp(10px, 3vw, 10px);
}
.flex-brands {
  gap: 4px;
  text-align: justify;
  flex-flow: wrap;
  place-content: center flex-start;
  align-items: center;
  width: 100%;
  margin-top: 118px;
  display: flex;
}
.flex-brands-header {
  justify-content: center;
  align-items: center;
  width: 30vw;
  margin-bottom: 63px;
  display: flex;
  flex-direction: column;
}

/* --------------------------------------------------
   PORTFOLIO / VIDEO SECTION
   -------------------------------------------------- */
.background-video {
  box-sizing: border-box;
  aspect-ratio: 16 / 9;
  width: 100%;
  margin-top: 53px;
  overflow: hidden;
  position: relative;
}
.background-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.video-cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: opacity 0.5s ease;
}
.video-cover.hidden {
  opacity: 0;
  pointer-events: none;
}
.paragraph-2 {
  margin-top: 49px;
}
.paragraph-3 {
  color: var(--page-bg);
  margin-top: 16px;
  font-family: Switzer, Tahoma, sans-serif;
  font-size: 30px;
  transition: color 0.4s;
}
.paragraph-3:hover {
  color: var(--main-white);
}

/* --------------------------------------------------
   PARTNER / TEAM SECTION
   -------------------------------------------------- */
.partner {
  position: relative;
  overflow: hidden;
}
.partner-bg-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  pointer-events: none;
  will-change: opacity;
  mix-blend-mode: screen;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 18%, #000 82%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, #000 18%, #000 82%, transparent 100%);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}
.partner-bg {
  position: absolute;
  width: 100%;
  height: calc(100% + 35vh);
  top: auto;
  bottom: 0;
  left: 0;
  object-fit: cover;
  object-position: center center;
  transform: scale(1);
  transform-origin: center center;
  will-change: transform;
}
.partner::before,
.partner::after {
  display: none;
}
.partner-grad {
  display: none;
}
.partner .content-wrapper,
.partner-side-text {
  position: relative;
  z-index: 2;
}
.partner-side-text {
  position: absolute;
  left: 2vw;
  top: 50%;
  font-family: Cutivemono, 'Palatino Linotype', sans-serif;
  font-size: clamp(9px, 0.9vw, 14px);
  color: var(--main-white);
  line-height: 1.4;
  margin: 0;
  pointer-events: none;
  mix-blend-mode: difference;
}
.flex-partner {
  gap: 8vw;
  justify-content: flex-start;
  align-items: center;
  margin-top: 40px;
  display: flex;
  flex-direction: row;
}
.profile-img {
  box-sizing: border-box;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: 50% 24%;
  width: 30%;
  overflow: clip;
  flex-shrink: 0;
}
.profile-img.robert {
  object-position: 50% 15%;
}
.flex-partner-text {
  gap: 0;
  display: flex;
  flex-direction: column;
}

/* --------------------------------------------------
   WE DON'T CARE / TWO-COL TEXT SECTION
   -------------------------------------------------- */
.two-col-text {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6vw;
  width: 100%;
}
.col-text {
  display: flex;
  flex-direction: column;
}

/* --------------------------------------------------
   CONTACT SECTION
   -------------------------------------------------- */
.flex-contact-top {
  justify-content: flex-start;
  align-items: flex-start;
  width: 85%;
  display: flex;
  flex-direction: column;
}
.flex-contact-sub {
  justify-content: flex-end;
  align-items: flex-start;
  width: 100%;
  display: flex;
}
.flex-contact-footer {
  justify-content: flex-start;
  align-items: center;
  width: 85%;
  display: flex;
  flex-direction: column;
}
.flex-contact-logo {
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.flex-contact-logo .med-p {
  margin-top: 0;
  margin-bottom: 0;
  line-height: 90%;
}
.dark-link {
  color: var(--page-bg);
  transition: color 0.4s;
}
.dark-link:hover {
  color: var(--main-white);
}
.dark-link.email {
  text-decoration: underline;
}
.dark-link.email:hover {
  color: var(--primary);
}
.small-footer-text {
  color: var(--page-bg);
  font-family: Cutivemono, 'Palatino Linotype', sans-serif;
  font-size: clamp(9px, 3vw, 14px);
  text-transform: uppercase;
}

/* --------------------------------------------------
   GRAIN OVERLAY
   -------------------------------------------------- */
.grain {
  z-index: 10;
  pointer-events: none;
  mix-blend-mode: screen;
  background-image: url('../images/grain.webp');
  background-position: 50%;
  background-size: cover;
  width: 100vw;
  height: 100dvh;
  position: fixed;
  inset: 0;
}

/* --------------------------------------------------
   CUSTOM CURSOR
   -------------------------------------------------- */
.fake-cursor-desk {
  z-index: 20;
  pointer-events: none;
  mix-blend-mode: difference;
  width: 100vw;
  height: 100vh;
  position: fixed;
  inset: 0;
}
#cursor {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  background-color: var(--primary);
  border-radius: 50%;
  width: 60vw;
  height: 60vw;
  transition: width 0.6s ease, height 0.6s ease, transform 0.6s ease-out;
}
#cursor.is-small {
  width: 16px !important;
  height: 16px !important;
}
@keyframes ringPulse {
  0%   { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.6); opacity: 0; }
}
.is-pulsating::after {
  content: '';
  position: absolute;
  top: -2px; left: -2px; right: -2px; bottom: -2px;
  border: 2px solid inherit;
  border-radius: 50%;
  animation: ringPulse 1.2s infinite ease-out;
}

/* --------------------------------------------------
   RESPONSIVE — Tablet (≤991px)
   -------------------------------------------------- */
@media screen and (max-width: 991px) {
  p { font-size: 20px; }
  .section {
    justify-content: space-between;
    align-items: center;
    min-height: 100dvh;
    padding: 140px 8vw;
  }
  .topline { font-size: 17px; }
  .content-wrapper {
    justify-content: space-between;
    align-items: center;
    height: 100%;
  }
  .content-wrapper.smaller-with { max-width: 94%; }
  .content-wrapper.evensmaller-with { max-width: 94%; }
  .why-side-text,
  .why-dark-side-text,
  .what-side-text,
  .partner-side-text,
  .contact-side-text { display: none; }
  .heading { font-size: 6vw; }

  .brand-logo { font-size: 30px; }
  .flex-brands { display: flex; }
  .flex-brands-header { width: 30vw; }
  #menue-flyout {
    z-index: 5;
    gap: 16px;
    background-color: transparent;
  }
}

/* --------------------------------------------------
   RESPONSIVE — Mobile (≤767px)
   -------------------------------------------------- */
@media screen and (max-width: 767px) {
  p { font-size: 18px; }
  body { cursor: auto; }
  .section {
    justify-content: space-between;
    align-items: center;
    min-height: 100dvh;
    padding: 120px 8vw;
  }
  .section.centerd.why { gap: 10vw; }
  .section.centerd.contact { padding-top: 100px; }
  .topline { font-size: 16px; }
  .header { padding-left: 6vw; padding-right: 6vw; }
  .driiiv-logo.small-logo { width: 30%; }
  .fake-cursor-desk { display: none; }
  .why-side-text,
  .why-dark-side-text,
  .what-side-text,
  .partner-side-text,
  .contact-side-text { display: none; }

  .brand-logo { margin-top: -4px; font-size: 32px; }
  .flex-partner {
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .two-col-text {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .profile-img { width: 30%; }
  .content-wrapper.smaller-with { max-width: 94%; }
  .content-wrapper.evensmaller-with { max-width: 94%; }
  .flex-contact-top { width: 100%; }
  .flex-contact-footer { width: 100%; }
  .center { text-align: left; }
  .flex-brands-header { width: 40vw; }
  #menue-flyout { padding-right: 8vw; }
}

/* --------------------------------------------------
   RESPONSIVE — Small Mobile (≤479px)
   -------------------------------------------------- */
@media screen and (max-width: 479px) {
  .section {
    justify-content: space-between;
    align-items: center;
    padding: 120px 8vw;
  }
  .section.centerd.why { gap: 15vw; }
  .section.centerd.brands { min-height: auto; }
  .section.centerd.contact { padding-top: 80px; }
  .big-p { line-height: 90%; }
  .header { padding-left: 5vw; padding-right: 5vw; }
  .driiiv-logo-header {
    opacity: 0;
    width: 45%;
    line-height: 100%;
  }
  .driiiv-logo.small-logo { width: 50%; margin-bottom: 12px; }
  .header-content { width: 94%; }
  .content-wrapper.teaser { width: 100%; }
  .content-wrapper.smaller-with { max-width: 94%; }
  .content-wrapper.evensmaller-with { max-width: 94%; }
  .heading { width: 94%; font-size: 11vw; }
  .med-p { font-size: 11vw; }
  .brand-logo { margin-top: -7px; font-size: 22px; }
  .flex-brands { margin-top: 65px; }
  .flex-brands-header { width: 76vw; }
  .small-footer-text { margin-bottom: 0; }
  #menue-flyout { gap: 12px; padding-right: 10vw; }
}
