@font-face {
font-family: 'Clash Grotesk';
src: url(//runners.staging-sc.com/wp-content/themes/runners/assets/fonts/ClashGrotesk-Extralight.woff2) format('woff2');
font-weight: 200;
font-style: normal;
font-display: swap;
}
@font-face {
font-family: 'Clash Grotesk';
src: url(//runners.staging-sc.com/wp-content/themes/runners/assets/fonts/ClashGrotesk-Regular.woff2) format('woff2');
font-weight: 400;
font-style: normal;
font-display: swap;
}
@font-face {
font-family: 'Clash Grotesk';
src: url(//runners.staging-sc.com/wp-content/themes/runners/assets/fonts/ClashGrotesk-Semibold.woff2) format('woff2');
font-weight: 600;
font-style: normal;
font-display: swap;
} :root {
--primary: #ff7b00;
--navy-top: #14314f;
--navy-bottom: #060f1c;
--white: #ffffff;
--text: #0a0d14;
--muted: #525866;
--bg: #fff8f2;
--bg-strong: #190c00;
--border: #cdd0d5;
--placeholder: #868C98;
--section-bg: #FFFCF9;
--blue: #375DFB;
--nav-h: 110px;
--nav-h-mobile: 76px;
--max-w: 1352px;
--radius-md: 24px;
--section-space:  clamp(32px, 4vw, 48px);
--small-width: 100px;
--medium-width: 240px;
--active-width: 420px;
--gap: 25px;
}
*,
*::before,
*::after {
box-sizing: border-box;
}
html {
scroll-behavior: smooth;
}
body {
margin: 0;
font-family: 'Clash Grotesk', sans-serif;
color: var(--white);
background: var(--bg);
}
img,
svg {
display: block;
max-width: 100%;
}
a {
color: inherit;
text-decoration: none;
}
p {
font-family: inherit;
font-size: clamp(16px, 1.25vw, 18px);
font-weight: 400;
line-height: 24px;
letter-spacing: -1.5%;
}
li  {
font-family: inherit;
font-size: clamp(16px, 1.25vw, 18px);
font-weight: 400;
line-height: 24px;
letter-spacing: -1.5%;
} main {
display: block;
}
.container {
width: min(var(--max-w), 100% - 40px);
margin: 0 auto;
}
section {
padding: var(--section-space) 0;
}
.bg-light {
background: var(--bg);
color: #0b0f14;
}
.bg-light h2 {
font-family: inherit;
font-weight: 600;
} .navbar {
position: sticky;
top: 0;
left: 0;
right: 0;
z-index: 100;
height: var(--nav-h);
background: transparent;
border-bottom: 1px solid transparent;
color: var(--white);
transition: background .3s ease, border-color .3s ease, backdrop-filter .3s ease, color .3s ease;
}
.navbar-inner {
width: min(var(--max-w), 100% - 40px);
height: 100%;
margin: 0 auto;
display: flex;
align-items: center;
justify-content: space-between;
column-gap: 24px;
}
.navbar.menu-open {
background: var(--bg-strong);
}
.navbar.is-scrolled,
.navbar.menu-open.is-scrolled {
background: rgba(6, 15, 28, .72);
backdrop-filter: blur(14px);
-webkit-backdrop-filter: blur(14px);
}
.navbar.theme-light {
background: var(--bg);
}
.navbar.theme-light.is-scrolled {
background: rgba(255, 248, 242, .85);
}
.navbar.theme-light,
.navbar.theme-light * {
color: #0b0f14;
}
.navbar.theme-light .lang-toggle {
background: rgba(11, 15, 20, .06);
border-color: rgba(11, 15, 20, .18);
}
.navbar.theme-light .hamburger span {
background: #0b0f14;
}
.logo {
display: flex;
align-items: center;
justify-content: center;
gap: 10px;
height: 90px;
opacity: 1;
border: none;
outline: none;
}
.logo:focus {
outline: none;
border: none;
}
.logo svg {
height: 100%;
width: auto;
display: block;
}
.logo-img {
height: 100%;
width: 100%;
filter: brightness(1.12) saturate(1.25);
}
.logo-img--dark {
display: none;
}
.navbar.theme-light .logo-img--default {
display: none;
}
.navbar.theme-light .logo-img--dark {
display: block;
}
.nav-right {
display: flex;
align-items: center;
gap: clamp(28px, 3.5vw, 56px);
}
.nav-links {
display: flex;
align-items: center;
gap: clamp(32px, 4vw, 64px);
list-style: none;
margin: 0;
padding: 0;
}
.no-nav-transition .nav-links {
transition: none !important;
}
.nav-links a {
display: inline-flex;
align-items: center;
gap: 6px;
font-size: 14px;
font-weight: 600;
line-height: 20px;
white-space: nowrap;
}
.nav-links svg {
width: 14px;
height: 14px;
flex: 0 0 auto;
}
.has-dropdown {
position: relative;
}
.has-dropdown>a>svg {
transition: transform .2s ease;
}
.has-dropdown:hover>a>svg,
.has-dropdown.open>a>svg {
transform: rotate(180deg);
}
.dropdown {
position: absolute;
top: 100%;
left: 0;
padding-top: 14px;
min-width: 220px;
opacity: 0;
visibility: hidden;
pointer-events: none;
transition: opacity .2s ease, visibility .2s ease;
z-index: 60;
}
.dropdown-inner {
display: flex;
flex-direction: column;
background: #FFF8F2;
border-radius: 16px;
padding: 6px;
box-shadow: 0 14px 28px rgba(6, 15, 28, .16);
transform: translateY(-6px);
transition: transform .2s ease;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown,
.has-dropdown.open .dropdown {
opacity: 1;
visibility: visible;
pointer-events: auto;
}
.has-dropdown:hover .dropdown-inner,
.has-dropdown:focus-within .dropdown-inner,
.has-dropdown.open .dropdown-inner {
transform: translateY(0);
}
.dropdown a {
display: flex;
align-items: center;
justify-content: space-between;
gap: 20px;
padding: 14px 16px;
background: transparent;
border: none;
border-radius: 10px;
color: #0b0f14;
font-family: 'Poppins', sans-serif;
font-weight: 600;
font-size: 15px;
white-space: nowrap;
box-shadow: none;
transition: background .15s ease;
}
.dropdown a:hover {
background: rgba(11, 15, 20, .06);
}
.dropdown a svg {
width: 14px;
height: 14px;
color: #0b0f14;
flex: 0 0 auto;
} .lang-toggle {
position: relative;
display: inline-flex;
align-items: center;
border: 1.5px solid #E2E4E9;
border-radius: 120px;
padding: 4px;
height: 46px;
width: 104px;
}
.lang-thumb {
position: absolute;
top: 4px;
left: 4px;
width: calc(50% - 4px);
height: calc(100% - 8px);
background: var(--primary, #FF7B00);
border-radius: 999px;
transition: transform 0.28s cubic-bezier(.4, 0, .2, 1);
z-index: 0;
}
.lang-toggle[data-active="right"] .lang-thumb {
transform: translateX(100%);
}
.lang-option {
position: relative;
z-index: 1;
flex: 1;
text-align: center;
font-family: inherit;
font-size: 13px;
font-weight: 600;
letter-spacing: .3px;
color: var(--white);
text-decoration: none;
line-height: 1;
transition: color .2s ease;
}
.lang-option.active {
color: var(--white);
font-weight: 700;
}
.navbar.theme-light .lang-option.active {
color: var(--white);
}
.nav-toggle {
display: none;
}
.hamburger {
display: none;
width: 28px;
height: 20px;
position: relative;
cursor: pointer;
flex-direction: column;
justify-content: space-between;
z-index: 110;
}
.hamburger span {
display: block;
height: 2px;
width: 100%;
background: var(--white);
border-radius: 2px;
transition: transform .25s ease, opacity .25s ease;
} .hero {
position: relative;
height: 120vh;
min-height: 560px;
max-height: 1024px;
display: flex;
flex-direction: column;
margin-top: calc(var(--nav-h) * -1);
overflow: hidden;
}
.hero-bg {
position: absolute;
inset: 0;
z-index: 0;
background-image: url(//runners.staging-sc.com/wp-content/themes/runners/assets/images/tgi-banner.webp);
background-size: cover;
background-position: center 30%;
background-repeat: no-repeat;
filter: saturate(1.05);
}
.hero-bg::after {
content: "";
position: absolute;
inset: 0;
background:
linear-gradient(180deg, rgba(255, 248, 242, 0) 74.32%, #FFF8F2 91.65%),
linear-gradient(0deg, rgba(0, 0, 0, 0.56), rgba(0, 0, 0, 0.56));
}
.hero-content {
position: relative;
z-index: 1;
flex: 1;
width: 100%;
max-width: var(--max-w);
margin: 0 auto;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
padding: 100px 24px 100px;
}
.eyebrow {
font-family: inherit;
font-weight: 200;
font-size: clamp(22px, 3vw, 32px);
color: rgba(255, 255, 255, .75);
margin: 0 0 18px;
}
.headline {
font-family: inherit;
font-weight: 600;
text-transform: uppercase;
font-size: clamp(28px, 6vw, 56px);
line-height: 1.08;
letter-spacing: .5px;
margin: 0;
max-width: 90ch;
}
.cta {
margin-top: 32px;
display: inline-block;
border: 1.5px solid var(--white);
padding: 10px;
font-family: inherit;
font-size: 24px;
font-weight: 400;
letter-spacing: .3px;
transition: background .2s ease, color .2s ease;
}
.cta:hover {
background: var(--white);
color: #0b1420;
} .community {
position: relative;
width: 100%;
width: min(1352px, 100% - 40px);
margin: 0 auto;
border-radius: 0;
padding: clamp(70px, 7.2vw, 108px) 0 clamp(48px, 5vw, 76px);
overflow: hidden;
}
.community__top {
display: grid;
grid-template-columns: 1fr auto;
align-items: start;
gap: 24px;
margin-bottom: 12px;
}
.community__heading {
margin: 0;
color: var(--text);
text-align: left;
max-width: 918px;
font-weight: 600;
letter-spacing: -.045em;
text-transform: uppercase;
font-size: clamp(28px, 4vw, 56px);
line-height: 1.02;
}
.community__rule {
width: clamp(100px, 11vw, 210px);
height: 6px;
background: var(--primary);
border-radius: 3px;
margin-top: 14px;
justify-self: end;
align-self: end;
}
.community__body {
display: grid;
grid-template-columns: minmax(210px, 1fr) minmax(270px, 480px) minmax(270px, 480px);
grid-template-rows: auto auto auto;
grid-template-areas:
"stats  img1  img2"
"facts  facts img2"
"cta    cta   img2";
column-gap: 16px;
row-gap: clamp(20px, 2.6vw, 36px);
margin-top: 0;
align-items: start;
overflow: hidden;
}
.community__stats {
grid-area: stats;
display: flex;
flex-direction: column;
align-items: center;
margin-top: 45px;
gap: 24px;
}
.community__stats .stat,
.community__stats .stat__number,
.community__stats .stat__label {
text-align: center;
}
.stat__number {
margin: 0;
font-size: clamp(28px, 4vw, 56px);
font-weight: 600;
color: var(--primary);
line-height: 1;
}
.stat__label {
margin: 5px 0 0;
font-size: 24px;
font-weight: 400;
color: var(--text);
}
.community__facts {
grid-area: facts;
display: flex;
flex-direction: column;
gap: 17px;
}
.community__facts p {
margin: 0;
font-size: 18px;
font-weight: 400;
line-height: 1.45;
color: var(--muted);
text-align: left;
}
.community__facts strong {
color: var(--text);
font-weight: 700;
}
.community__cta {
grid-area: cta;
justify-self: start;
align-self: start;
display: inline-block;
background: var(--primary);
color: var(--white);
text-decoration: none;
font-size: 24px;
font-weight: 400;
padding: 10px 72px;
border: none;
cursor: pointer;
transition: background 0.2s ease, transform 0.2s ease;
}
.community__cta:hover {
background: #E56E00;
transform: translateY(-1px);
}
.media__front {
margin-top: 45px;
grid-area: img1;
width: 100%;
max-width: 480px;
aspect-ratio: 1 / .75;
object-fit: cover;
}
.media__back {
grid-area: img2;
width: 100%;
max-width: 480px;
height: 100%;
min-height: 0;
aspect-ratio: .8 / 1;
object-fit: cover;
}
.community__dots {
margin-top: 48px;
width: 100%;
max-width: 100%;
}
.community__dots img {
width: 100%;
height: auto;
display: block;
} .events {
width: min(var(--max-w), 100% - 40px);
margin: 0 auto;
}
.events__eyebrow,
.rfid-label,
.section-subtitle {
margin: 0 0 12px;
color: var(--text);
font-size: 20px;
letter-spacing: .04em;
font-weight: 200;
text-transform: uppercase;
}
.events__heading {
margin: 0;
font-size: clamp(28px, 4vw, 56px);
line-height: 1.3;
font-weight: 600;
letter-spacing: -.045em;
color: var(--text);
max-width: 1108px;
text-transform: uppercase;
}
.events__card {
margin-top: 28px;
border: 1px solid var(--border);
border-radius: 0;
overflow: hidden;
background: var(--bg);
}
.events__photo {
display: block;
width: 100%;
aspect-ratio: 900 / 260;
object-fit: cover;
}
.events__info {
padding: 18px 20px 20px;
}
.events__tag {
display: flex;
align-items: center;
gap: 8px;
margin: 0 0 7px;
font-size: 10px;
letter-spacing: 0.1em;
font-weight: 700;
text-transform: uppercase;
}
.events__tag.upcoming_event {
color: var(--primary);
}
.events__tag.upcoming_event::before {
background: var(--primary);
}
.events__tag.past-event {
color: var(--blue);
}
.events__tag.past-event::before {
background: var(--blue);
}
.events__tag::before {
content: "";
width: 6px;
height: 6px;
border-radius: 50%;
}
.events__title {
margin: 0 0 5px;
font-size: clamp(22px, 1.2vw, 24px);
font-weight: 600;
color: var(--text);
}
.events__meta {
margin: 0 0 16px;
color: var(--muted);
}
.btn-more {
display: inline-block;
background: transparent;
border: 1px solid var(--text);
color: var(--muted);
font-size: 14px;
font-weight: 400;
line-height: 20px;
padding: 10px 45px;
border-radius: 0;
cursor: pointer;
text-decoration: none;
transition: border-color 0.2s ease, color 0.2s ease;
}
.btn-more:hover {
background: var(--bg-strong);
border-color: var(--bg-strong);
color: var(--white);
}
.events__more {
display: flex;
justify-content: center;
margin-top: 28px;
}
.events__more .btn-more {
padding: 12px 40px;
font-size: clamp(13px, 1vw, 15px);
} .rfid-section {
position: relative;
width: min(var(--max-w), 100% - 40px);
margin: 0 auto;
}
.rfid-dots-bg {
position: absolute;
bottom: -10%;
left: 50%;
width: 90%;
height: 55%;
background-image: url(//runners.staging-sc.com/wp-content/themes/runners/assets/images/dots-2.svg);
background-repeat: no-repeat;
z-index: 1;
opacity: .9;
transform: translateX(-50%);
}
.rfid-container {
position: relative;
z-index: 2;
}
.rfid-top-row {
display: grid;
grid-template-columns: 1.7fr 1fr;
gap: 25px;
}
.rfid-text-col {
width: 100%;
margin-top: 48px;
}
.rfid-label {
margin-bottom: 12px;
text-transform: uppercase;
display: block;
}
.rfid-title-row {
margin-bottom: -48px;
}
.rfid-title-row h2 {
font-size: clamp(28px, 4vw, 56px);
line-height: 1.3;
width: min(917px, 70% - 30px);
margin: 0 0 20px;
color: var(--text);
font-weight: 600;
letter-spacing: -.045em;
text-transform: uppercase;
}
.rfid-text-colk p {
font-size: 18px;
color: var(--muted);
margin-bottom: 18px;
line-height: 1.5;
}
.btn-link {
display: block;
width: fit-content;
margin-top: 24px;
padding: 10px 45px;
font-size: clamp(18px, 1.2vw, 24px);
color: var(--muted);
border: 1px solid var(--text);
border-radius: 0;
background: transparent;
cursor: pointer;
transition: all 0.3s ease;
}
.btn-link:hover {
background: var(--bg-strong);
color: var(--white);
}
.rfid-right-col {
width: 100%;
max-width: 480px;
display: flex;
flex-direction: column;
align-items: flex-end;
}
.rfid-orange-bar {
width: 200px;
height: 12px;
background-color: var(--primary);
margin-bottom: 18px;
}
.rfid-img-main {
width: 100%;
height: 567px;
object-fit: cover;
}
.rfid-bottom-row {
display: grid;
grid-template-columns: 1fr 1.2fr;
gap: 25px;
margin-top: 45px;
}
.rfid-img-2 {
width: 100%;
max-width: 376px;
height: 410px;
object-fit: cover;
margin-top: 72px;
}
.rfid-img-3 {
width: 100%;
max-width: 448px;
height: 402px;
object-fit: cover;
} .highlights-section {
display: flex;
flex-direction: column;
align-items: center;
width: min(var(--max-w), 100% - 40px);
margin: 0 auto;
margin-top: clamp(48px, 5vw, 76px);
}
.highlights-title {
margin-bottom: 50px;
color: var(--text);
font-size: clamp(28px, 4vw, 56px);
font-weight: 600;
line-height: 1.3;
letter-spacing: -0.5px;
text-align: center;
text-transform: uppercase;
}
.carousel-container {
position: relative;
display: flex;
align-items: center;
width: 100%;
height: 520px;
overflow: hidden;
} .carousel-track {
position: absolute;
left: 0;
display: flex;
align-items: center;
gap: var(--gap);
user-select: none;
will-change: transform;
backface-visibility: hidden;
transition: transform 1.8s cubic-bezier(0.42, 0, 0.58, 1);
}
.carousel-slide {
flex: 0 0 var(--small-width);
height: 140px;
overflow: hidden;
cursor: pointer;
will-change: flex-basis, height;
transition: flex-basis 1.8s cubic-bezier(0.42, 0, 0.58, 1), height 1.8s cubic-bezier(0.42, 0, 0.58, 1);
}
.carousel-slide.medium {
flex: 0 0 var(--medium-width);
height: 320px;
}
.carousel-slide.active {
flex: 0 0 var(--active-width);
height: 480px;
}
.carousel-slide img {
width: 100%;
height: 100%;
object-fit: cover;
pointer-events: none;
} .blog-section {
width: min(var(--max-w), 100% - 40px);
margin: 0 auto;
}
.blog-title {
font-size: clamp(28px, 4vw, 56px);
line-height: 1.3;
max-width: 1190px;
margin: 14px 0 0;
font-weight: 600;
letter-spacing: -.045em;
text-transform: uppercase;
}
.blog-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 22px;
margin-top: 34px;
}
.blog-card {
border: 1px solid var(--border);
padding-bottom: 17px;
}
.blog-card img {
width: 100%;
height: 215px;
object-fit: cover;
margin-bottom: 12px;
}
.blog-card h3 {
font-size: clamp(22px, 1.2vw, 24px);
line-height: 1.18;
margin: 0 14px 14px;
text-transform: none;
}
.blog-card .btn {
margin-left: 14px;
}
.blog-card__link {
display: block;
color: inherit;
text-decoration: none;
}
.blog-card .btn-more:hover {
background: var(--bg-strong);
border-color: var(--bg-strong);
color: var(--white);
} .blog-pagination {
display: flex;
justify-content: center;
margin-top: 48px;
}
.blog-pagination ul.page-numbers {
display: flex;
align-items: center;
flex-wrap: wrap;
gap: 10px;
list-style: none;
margin: 0;
padding: 0;
}
.blog-pagination .page-numbers li {
display: flex;
}
.blog-pagination a.page-numbers,
.blog-pagination span.page-numbers {
display: flex;
align-items: center;
justify-content: center;
min-width: 44px;
height: 44px;
padding: 0 14px;
border: 1px solid var(--border);
color: var(--muted);
font-family: inherit;
font-size: 15px;
font-weight: 600;
text-decoration: none;
transition: background .2s ease, border-color .2s ease, color .2s ease;
}
.blog-pagination a.page-numbers:hover {
background: var(--bg-strong);
border-color: var(--bg-strong);
color: var(--white);
}
.blog-pagination span.page-numbers.current {
background: var(--primary);
border-color: var(--primary);
color: var(--white);
}
.blog-pagination .page-numbers.dots {
border: none;
color: var(--muted);
min-width: auto;
padding: 0 4px;
}
.blog-pagination a.page-numbers.prev,
.blog-pagination a.page-numbers.next {
font-size: 18px;
font-weight: 400;
} .sponsors {
padding: 72px 0;
background: var(--bg-strong);
text-align: center;
}
.sponsors__eyebrow {
margin: 0 0 20px;
color: rgba(255, 255, 255, .54);
font-size: 20px;
font-weight: 200;
text-transform: uppercase;
letter-spacing: -.04em;
}
.sponsors__title {
max-width: 820px;
margin: 0 auto 36px;
color: var(--primary);
font-size: clamp(50px, 5vw, 56px);
line-height: 64px;
letter-spacing: -1%;
font-weight: 600;
text-transform: uppercase;
}
.sponsors__desc {
max-width: 900px;
margin: 0 auto 30px;
color: var(--white);
font-size: 18px;
font-weight: 400;
line-height: 24px;
letter-spacing: -1.5%;
}
.btn-primary {
display: inline-block;
background: var(--primary);
color: var(--white);
border: none;
cursor: pointer;
border-radius: 0;
padding: 13px 48px;
font-size: clamp(18px, 1.2vw, 24px);
font-weight: 400;
transition: background 0.1s ease, color 0.1s ease;
}
.btn-primary:hover {
background: var(--bg-strong);
color: var(--white);
}
.sponsors .btn-primary {
max-width: 258px;
padding: 10px 54px;
font-size: 20px;
font-weight: 400;
}
.sponsors .btn-primary:hover {
background: var(--bg);
color: var(--primary);
}
.marquee {
width: min(1352px, 100% - 40px);
margin: 0 auto;
padding-top: 64px;
overflow: visible;
-webkit-mask-image: none;
mask-image: none;
}
.marquee__row {
display: flex;
align-items: center;
gap: 96px;
width: 100%;
padding: 0;
}
.marquee__row+.marquee__row {
margin-top: 58px;
}
.marquee__track {
display: grid;
grid-template-columns: repeat(5, minmax(0, 1fr));
align-items: center;
width: 100%;
gap: 42px;
animation: none;
}
.marquee__row--reverse .marquee__track {
animation-name: scroll-right;
}
.marquee__track> :nth-child(n+6) {
display: none;
}
@keyframes scroll-left {
from {
transform: translateX(0);
}
to {
transform: translateX(-50%);
}
}
@keyframes scroll-right {
from {
transform: translateX(-50%);
}
to {
transform: translateX(0);
}
}
.sponsors .logo {
display: flex;
align-items: center;
justify-content: space-between;
width: 100%;
height: 92px;
opacity: 1;
}
.sponsors .logo svg {
width: min(100%, 190px);
height: auto;
max-height: 88px;
}
.site-footer {
max-width: none;
margin: 0;
padding: 0 max(28px, calc((90vw - 1200px) / 2)) clamp(60px, 7vw, 25px);
background: var(--bg-strong);
}
.site-footer__divider {
max-width: 1352px;
border: none;
border-top: 1px solid rgba(255, 255, 255, 0.14);
border-top-color: rgba(255, 255, 255, .48);
margin: 0 auto clamp(30px, 4vw, 40px);
}
.site-footer__row {
max-width: 1320px;
margin: 0 auto;
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 42px;
}
.site-footer__brand {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
gap: 18px;
}
.site-footer__label {
font-size: 16px;
font-weight: 200;
letter-spacing: -.04em;
color: rgba(255, 255, 255, .52);
}
.site-footer__handle {
font-size: clamp(34px, 3vw, 48px);
line-height: .95;
font-weight: 600;
letter-spacing: -.055em;
color: var(--primary);
}
.site-footer__socials {
display: flex;
gap: 16px;
}
.social-icon {
display: flex;
align-items: center;
justify-content: center;
width: 40px;
height: 40px;
border-radius: 50%;
background: rgba(255, 255, 255, .2);
transition: background 0.2s ease;
}
.social-icon:hover {
background: var(--primary);
}
.social-icon img {
width: 21px;
height: 21px;
fill: var(--white);
}
.site-footer__menu {
display: flex;
justify-content: flex-end;
gap: clamp(24px, 3.2vw, 58px);
flex-wrap: wrap;
padding-bottom: 2px;
}
.site-footer__menu a {
display: inline-flex;
align-items: center;
gap: 6px;
color: rgba(255, 255, 255, .96);
font-size: 24px;
font-weight: 400;
letter-spacing: -.04em;
white-space: nowrap;
}
.site-footer__menu svg {
width: 17px;
height: 17px;
opacity: 0.8;
} @media (prefers-reduced-motion: reduce) {
.marquee__track {
animation: none;
}
}
@media (min-width: 961px) {
.rfid-orange-bar {
margin-bottom: 10px;
}
}
@media (max-width: 1024px) {
:root {
--small-width: 80px;
--medium-width: 180px;
--active-width: 320px;
--gap: 15px;
}
.hero {
height: 100vh;
}
.carousel-container {
height: 400px;
}
.carousel-slide {
height: 100px;
}
.carousel-slide.medium {
height: 240px;
}
.carousel-slide.active {
height: 360px;
}
}
@media (max-width: 960px) {
.nav-links {
gap: 24px;
}
.nav-links a {
font-size: 14px;
}
.logo-img {
height: 60px;
}
.blog-grid {
grid-template-columns: repeat(2, 1fr);
}
.rfid-right-col {
align-items: flex-start;
max-width: 100%;
margin-top: 40px;
}
.rfid-orange-bar {
align-self: flex-start;
}
.rfid-bottom-row {
flex-wrap: wrap;
justify-content: center;
margin-top: 40px;
}
.rfid-img-2 {
margin-top: 0;
}
}
@media (max-width: 900px) {
.sponsors {
padding: 72px 24px 56px;
padding-bottom: 56px;
}
.marquee__row {
gap: 56px;
}
.marquee__track {
gap: 20px;
}
.logo {
height: 40px;
}
.sponsors .logo {
height: 70px;
}
.site-footer {
padding: 0 24px 40px;
}
.site-footer__row {
flex-direction: column;
align-items: flex-start;
}
.site-footer__menu {
justify-content: flex-start;
}
}
@media (max-width: 768px) {
:root {
--nav-h: var(--nav-h-mobile);
--small-width: 50px;
--medium-width: 140px;
--active-width: 240px;
--gap: 10px;
} .navbar {
position: fixed;
width: 100%;
}
.navbar-inner {
padding: 0 20px;
}
.nav-right {
gap: 14px;
}
.hamburger {
display: flex;
}
.logo-img {
height: 48px;
}
.nav-links {
position: fixed;
inset: var(--nav-h-mobile) 0 0 0;
z-index: 105;
min-height: calc(100dvh - var(--nav-h-mobile));
padding: 20px 28px 40px;
overflow-y: auto;
background: var(--bg-strong);
color: var(--white);
isolation: isolate;
-webkit-overflow-scrolling: touch;
flex-direction: column;
justify-content: flex-start;
align-items: flex-start;
gap: 0;
transform: translateX(100%);
transition: transform .3s ease;
}
.navbar.theme-light .nav-links,
.navbar.is-scrolled .nav-links {
background: var(--bg);
color: var(--muted);
}
.navbar.theme-light .nav-links a,
.navbar.is-scrolled .nav-links a {
background: var(--bg);
color: var(--muted);
}
.navbar.theme-light .nav-links a svg,
.navbar.is-scrolled .nav-links a svg {
background: var(--bg);
color: var(--muted);
}
.nav-links a,
.navbar.theme-light .nav-links a {
width: 100%;
padding: 18px 0;
font-size: 18px;
}
.navbar.menu-open .nav-links {
transform: translateX(0);
}
.navbar.menu-open .hamburger span:nth-child(1) {
transform: translateY(9px) rotate(45deg);
}
.navbar.menu-open .hamburger span:nth-child(2) {
opacity: 0;
}
.navbar.menu-open .hamburger span:nth-child(3) {
transform: translateY(-9px) rotate(-45deg);
}
.has-dropdown {
width: 100%;
}
.dropdown {
position: static;
transform: none;
padding-top: 0;
min-width: 0;
width: 100%;
opacity: 1;
visibility: visible;
pointer-events: auto;
max-height: 0;
overflow: hidden;
transition: max-height .3s ease;
}
.dropdown-inner {
background: transparent;
border-radius: 0;
box-shadow: none;
padding: 6px 0 16px;
gap: 10px;
transform: none;
}
.has-dropdown.open .dropdown {
max-height: 220px;
}
.dropdown a {
background: rgba(255, 255, 255, .06);
border: 1px solid rgba(255, 255, 255, .16);
border-radius: 14px;
color: var(--white);
box-shadow: none;
padding: 14px 16px;
}
.dropdown a svg {
color: var(--white);
}
.lang-toggle {
transform: scale(.92);
transform-origin: right center;
}
.hero-content {
padding: 70px 20px 70px;
}
.cta {
padding: 16px 32px;
font-size: 15px;
}
.btn-link,
.btn-more { 
padding: 10px 35px;
}
.community__top {
grid-template-columns: 1fr;
}
.community__rule {
justify-self: start;
align-self: start;
margin-top: 14px;
}
.community__body {
grid-template-columns: 1fr 1fr;
grid-template-areas:
"stats stats"
"img1  img2"
"facts facts"
"cta   cta";
row-gap: 24px;
}
.media__front,
.media__back {
aspect-ratio: 4 / 5;
height: auto;
margin-top: 0;
}
.community__stats {
flex-direction: row;
flex-wrap: wrap;
column-gap: 34px;
row-gap: 18px;
}
.community__dots {
max-width: 100%;
}
.blog-page {
margin-top: calc(var(--nav-h) + 20px);
}
.blog-grid {
grid-template-columns: 1fr 1fr;
}
.rfid-section {
padding-top: 50px;
}
.rfid-text-col {
max-width: 100%;
}
.rfid-img-main {
width: 100%;
}
.rfid-title-row h2 {
width: 100%;
}
.rfid-bottom-row {
width: 100%;
}
.rfid-top-row { 
grid-template-columns: 1fr;
}
.rfid-img-2,
.rfid-img-3 {
height: 402px;
}
.rfid-dots-bg {
width: calc(100% - 40px);
}
.highlights-title {
font-size: 20px;
margin-bottom: 30px;
}
.carousel-container {
height: 320px;
}
.carousel-slide {
height: 80px;
}
.carousel-slide.medium {
height: 180px;
}
.carousel-slide.active {
height: 280px;
}
.site-footer__row {
flex-direction: column;
align-items: center;
}
}
@media (max-width: 640px) {
.sponsors {
padding: 68px 20px 50px;
}
.sponsors__eyebrow {
font-size: 14px;
}
.sponsors__title {
font-size: clamp(34px, 10vw, 48px);
margin-bottom: 24px;
}
.sponsors__desc {
font-size: 16px;
line-height: 1.5;
}
.sponsors .btn-primary {
min-width: 210px;
font-size: 17px;
padding: 14px 28px;
}
.marquee__row+.marquee__row {
margin-top: 24px;
}
.marquee__track {
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 20px 26px;
}
.sponsors .logo {
height: 60px;
}
.sponsors .logo svg {
max-height: 54px;
}
.site-footer {
padding: 0 20px 58px;
}
.site-footer__divider {
margin-bottom: 46px;
}
.site-footer__row {
flex-direction: column;
gap: 42px;
}
.site-footer__brand {
width: 100%;
}
.site-footer__handle {
font-size: clamp(31px, 9vw, 42px);
}
.site-footer__menu{
width: 100%;
gap: 19px 26px;
}
.site-footer__menu a {
font-size: 16px;
}
}
@media (max-width: 560px) {
.blog-grid {
grid-template-columns: 1fr;
}
.blog-pagination ul.page-numbers {
gap: 6px;
}
.blog-pagination a.page-numbers,
.blog-pagination span.page-numbers {
min-width: 38px;
height: 38px;
padding: 0 10px;
font-size: 14px;
}
.sponsors__title {
font-size: 30px;
}
.sponsors__desc {
font-size: 15px;
}
.site-footer__menu {
justify-content: center;
gap: 20px 28px;
padding: 0;
}
.site-footer__menu a {
font-size: 15px;
}
}
@media (max-width: 480px) {
.headline {
font-size: 30px;
}
.eyebrow {
font-size: 19px;
}
.lang-option {
font-size: 12px;
}
.community__heading {
font-size: 22px;
max-width: 100%;
}
.community__body {
grid-template-columns: 1fr 1fr;
}
.media__front {
margin-top: 0;
}
.community__top {
gap: 0;
}
.community__rule {
justify-self: left;
align-self: start;
}
.community__stats {
column-gap: 24px;
row-gap: 16px;
justify-content: center;
}
.stat__number {
font-size: 26px;
}
.stat__label {
font-size: 20px;
}
.community__cta {
width: 100%;
text-align: center;
justify-self: stretch;
}
.events__info {
padding: 18px 18px 22px;
}
}  .page-hero {
position: relative;
min-height: 480px;
display: flex;
flex-direction: column;
margin-top: calc(var(--nav-h) * -1);
overflow: hidden;
}
.page-hero-bg {
position: absolute;
inset: 0;
z-index: 0;
overflow: hidden;
}
.page-hero-bg__img {
position: relative;
z-index: 0;
width: 100%;
height: 100%;
object-fit: cover;
object-position: center 30%;
filter: saturate(1.05);
}
.page-hero-bg::after {
content: "";
position: absolute;
inset: 0;
background: #0000008F;
}
.page-hero-content {
position: relative;
z-index: 1;
flex: 1;
width: 100%;
max-width: 480px;
max-width: var(--max-w);
margin: 0 auto;
display: flex;
flex-direction: column;
align-items: center;
justify-content: flex-end;
text-align: center;
padding: calc(var(--nav-h) + 48px) 24px 48px;
}
.page-eyebrow {
margin: 0 0 14px;
font-family: inherit;
font-weight: 200;
font-size: clamp(23px, 1.4vw, 32px);
letter-spacing: .06em;
text-transform: uppercase;
color: var(--white);
}
.page-headline {
margin: 0;
max-width: 1160px;
font-family: inherit;
font-weight: 600;
text-transform: uppercase;
letter-spacing: -.03em;
font-size: clamp(50px, 2vw, 56px);
line-height: 1.3;
color: var(--white);
}
.page-contact {
background: var(--bg);
color: var(--text);
padding: 90px 24px;
padding-left: max(24px, calc((100vw - 1200px) / 2));
padding-right: max(24px, calc((100vw - 1200px) / 2));
} .faq-section {
width: min(var(--max-w), 100% - 40px);
margin: 0 auto;
}
.faq-heading {
margin: 0;
font-family: inherit;
font-weight: 600;
letter-spacing: -.045em;
text-transform: uppercase;
font-size: clamp(28px, 3.3vw, 46px);
color: var(--text);
}
.faq-list {
margin-top: 28px;
border-top: 1px solid var(--border);
}
.faq-item {
border-bottom: 1px solid var(--border);
}
.faq-question {
display: flex;
align-items: center;
justify-content: space-between;
gap: 20px;
padding: 24px 0;
list-style: none;
cursor: pointer;
font-family: inherit;
font-size: clamp(22px, 1.2vw, 24px);
font-weight: 600;
color: var(--text);
-webkit-tap-highlight-color: transparent;
}
.faq-question::-webkit-details-marker {
display: none;
}
.faq-question::marker {
content: "";
}
.faq-icon {
flex-shrink: 0;
width: 16px;
height: 16px;
color: var(--text);
transition: transform .2s ease;
}
.faq-item[open] .faq-icon {
transform: rotate(180deg);
}
.faq-answer {
margin: 0 0 24px;
max-width: 1320px;
color: var(--muted);
}
.faq-answer p {
margin: 0;
}
.sponsors .logo img {
width: min(100%, 190px);
height: auto;
max-height: 88px;
object-fit: contain;
}
@media (max-width: 768px) {
.page-hero {
min-height: 420px;
}
.page-hero-content {
padding: calc(var(--nav-h-mobile) + 40px) 20px 44px;
}
.faq-section {
padding-left: 20px;
padding-right: 20px;
}
.faq-question {
padding: 18px 0;
}
}
@media (max-width: 480px) {
.page-headline {
font-size: 26px;
}
.faq-heading {
font-size: 26px;
}
.faq-answer {
font-size: 16px;
}
} .page-detail {
padding-top: clamp(48px, 8vw, 90px);
padding-bottom: clamp(48px, 8vw, 90px);
}
.page-detail .page-content {
max-width: 700px;
margin: 0 auto clamp(40px, 6vw, 72px);
}
.page-detail .page-content p {
margin: 0 0 24px;
font-family: inherit;
font-size: 16px;
line-height: 1.75;
color: var(--muted);
}
.page-detail .page-content p:last-child {
margin-bottom: 0;
}
.page-detail .page-image {
max-width: 1200px;
margin: 0 auto;
}
.page-detail .page-image img {
width: 100%;
aspect-ratio: 21 / 9;
object-fit: cover;
}
@media (max-width: 768px) {
.page-detail {
padding-top: 40px;
padding-bottom: 40px;
}
.page-detail .page-content p {
font-size: 15px;
line-height: 1.7;
margin-bottom: 20px;
}
.page-detail .page-image img {
aspect-ratio: 4 / 3;
}
}
@media (max-width: 480px) {
.page-detail .page-content p {
font-size: 14px;
line-height: 1.65;
margin-bottom: 18px;
}
.page-detail .page-image img {
aspect-ratio: 1 / 1;
}
}