/* =========================================================
OYDC ZAMBIA
HOMEPAGE
PREMIUM SPORTS WEBSITE DESIGN
========================================================= */

/* =========================================================
WORLD ATHLETICS REGULAR
========================================================= */

@font-face {


font-family: 'World Athletics';

src:
    url('../Font/WorldAthletics.eot');

src:
    local('World Athletics'),
    local('WorldAthletics'),
    url('../Font/WorldAthletics.eot?#iefix') format('embedded-opentype'),
    url('../Font/WorldAthletics.woff2') format('woff2'),
    url('../Font/WorldAthletics.woff') format('woff'),
    url('../Font/WorldAthletics.ttf') format('truetype');

font-weight: normal;

font-style: normal;

font-display: swap;


}

/* =========================================================
WORLD ATHLETICS HEADLINE
========================================================= */

@font-face {


font-family: 'World Athletics Headline';

src:
    url('../Font/WorldAthleticsHeadline.eot');

src:
    local('World Athletics Headline'),
    local('WorldAthleticsHeadline'),
    url('../Font/WorldAthleticsHeadline.eot?#iefix') format('embedded-opentype'),
    url('../Font/WorldAthleticsHeadline.ttf') format('truetype');

font-weight: bold;

font-style: normal;

font-display: swap;


}

/* =========================================================
GLOBAL
========================================================= */

* {

  margin: 0;

  padding: 0;

  box-sizing: border-box;

}

html {


scroll-behavior: smooth;


}

body {


font-family:
    'World Athletics',
    Arial,
    sans-serif;

color: #171717;

background: #ffffff;

overflow-x: hidden;


}

img {


max-width: 100%;

display: block;


}

a {


color: inherit;


}

button {


font-family: inherit;


}

/* =========================================================
VARIABLES
========================================================= */

:root {


--oydc-green: #00843D;

--oydc-dark-green: #006B32;

--oydc-deep-green: #004F27;

--oydc-light-green: #69C993;

--oydc-black: #101010;

--oydc-white: #ffffff;

--oydc-grey: #686868;

--oydc-light: #F5F7F5;

--oydc-border: #E4E8E5;

--container: 1240px;


}

/* =========================================================
CONTAINER
========================================================= */

.container {


width: min(var(--container), 88%);

margin: 0 auto;


}

/* =========================================================
HERO SLIDER
========================================================= */

.hero-slider {
    position: relative;
    width: 100%;
    height: 540px;
    min-height: 540px;
    max-height: 540px;
    overflow: hidden;
    background: #07170F;
}

/* =========================================================
SLIDE
========================================================= */

.hero-slide {


position: absolute;

inset: 0;

opacity: 0;

visibility: hidden;

transform: scale(1.04);

transition:

    opacity 0.9s ease,

    visibility 0.9s ease,

    transform 7s ease;


}

.hero-slide.active {


opacity: 1;

visibility: visible;

transform: scale(1);


}

/* =========================================================
SLIDE IMAGE
========================================================= */

.slide-image {


position: absolute;

inset: 0;

width: 100%;

height: 100%;

object-fit: cover;

object-position: center;


}

/* =========================================================
SLIDE OVERLAY
========================================================= */

.slide-overlay {


position: absolute;

inset: 0;

background:

    linear-gradient(
        90deg,
        rgba(0, 25, 13, 0.96) 0%,
        rgba(0, 47, 24, 0.82) 35%,
        rgba(0, 58, 29, 0.48) 65%,
        rgba(0, 0, 0, 0.15) 100%
    );


}

/* Additional bottom fade */

.slide-overlay::after {


content: "";

position: absolute;

left: 0;

right: 0;

bottom: 0;

height: 180px;

background:

    linear-gradient(
        transparent,
        rgba(0,0,0,0.65)
    );


}

/* =========================================================
SLIDE CONTENT
========================================================= */

.slide-content {
    position: absolute;
    z-index: 3;
    left: 8%;
    top: 45%;
    transform: translateY(-43%);
    width: min(850px, 80%);
    color: #ffffff;
}

/* =========================================================
SLIDE NUMBER
========================================================= */

.slide-number {


display: flex;

align-items: center;

gap: 12px;

margin-bottom: 23px;

color: rgba(255,255,255,0.65);

font-size: 12px;

font-weight: 700;

letter-spacing: 2px;


}

.slide-number span {


display: block;

width: 45px;

height: 1px;

background: rgba(255,255,255,0.4);


}

/* =========================================================
LABEL
========================================================= */

.hero-label {


display: flex;

align-items: center;

gap: 12px;

margin-bottom: 22px;

font-size: 13px;

font-weight: 700;

letter-spacing: 3px;

color: #ffffff;


}

.hero-label span {


width: 45px;

height: 3px;

display: block;

background: var(--oydc-green);


}

/* =========================================================
HERO TITLE
========================================================= */

.hero-slide h1 {


max-width: 850px;

margin-bottom: 27px;

font-family:
    'World Athletics Headline',
    'World Athletics',
    Arial,
    sans-serif;

font-size: clamp(60px, 7vw, 100px);

font-weight: 700;

line-height: 0.92;

letter-spacing: -2px;

color: #ffffff;


}

.hero-slide h1 strong {


display: block;

color: #67C58D;

font-weight: inherit;


}

/* =========================================================
SLIDE TEXT ANIMATION
========================================================= */

.hero-slide.active .slide-number,
.hero-slide.active .hero-label,
.hero-slide.active h1,
.hero-slide.active .slide-content > p,
.hero-slide.active .hero-buttons {


animation:

    slideTextIn
    0.85s
    cubic-bezier(.22,.61,.36,1)
    both;


}

.hero-slide.active .hero-label {


animation-delay: .10s;


}

.hero-slide.active h1 {


animation-delay: .20s;


}

.hero-slide.active .slide-content > p {


animation-delay: .30s;


}

.hero-slide.active .hero-buttons {


animation-delay: .40s;


}

@keyframes slideTextIn {


from {

    opacity: 0;

    transform: translateY(35px);

}

to {

    opacity: 1;

    transform: translateY(0);

}


}

/* =========================================================
HERO DESCRIPTION
========================================================= */

.slide-content > p {


max-width: 620px;

margin-bottom: 33px;

color: rgba(255,255,255,0.88);

font-size: 18px;

line-height: 1.75;


}

/* =========================================================
BUTTONS
========================================================= */

.hero-buttons {


display: flex;

align-items: center;

flex-wrap: wrap;

gap: 12px;


}

.hero-btn,
.hero-btn-outline {


min-height: 54px;

padding: 0 24px;

display: inline-flex;

align-items: center;

justify-content: center;

gap: 13px;

text-decoration: none;

font-weight: 700;

transition:

    background .3s ease,

    color .3s ease,

    border-color .3s ease,

    transform .3s ease;


}

.hero-btn {


background: var(--oydc-green);

color: #ffffff;


}

.hero-btn:hover {


background: #ffffff;

color: var(--oydc-green);

transform: translateY(-3px);


}

.hero-btn-outline {


border: 1px solid rgba(255,255,255,.65);

color: #ffffff;


}

.hero-btn-outline:hover {


background: #ffffff;

color: var(--oydc-dark-green);

border-color: #ffffff;

transform: translateY(-3px);


}

/* =========================================================
SLIDER ARROWS
========================================================= */

.slider-arrow {


position: absolute;

z-index: 10;

top: 50%;

transform: translateY(-50%);

width: 58px;

height: 58px;

border-radius: 50%;

border: 1px solid rgba(255,255,255,.35);

background: rgba(0,0,0,.28);

color: #ffffff;

cursor: pointer;

display: flex;

align-items: center;

justify-content: center;

font-size: 16px;

backdrop-filter: blur(6px);

transition:

    background .3s ease,

    border-color .3s ease,

    transform .3s ease;


}

.slider-arrow:hover {


background: var(--oydc-green);

border-color: var(--oydc-green);


}

.slider-prev {


left: 3%;


}

.slider-next {


right: 3%;


}

/* =========================================================
SLIDER DOTS
========================================================= */

.slider-dots {


position: absolute;

z-index: 10;

left: 8%;

bottom: 20px;

display: flex;

align-items: center;

gap: 9px;


}

.slider-dot {


width: 9px;

height: 9px;

padding: 0;

border: 0;

border-radius: 50%;

background: rgba(255,255,255,.45);

cursor: pointer;

transition:

    width .3s ease,

    background .3s ease;


}

.slider-dot.active {


width: 34px;

border-radius: 20px;

background: var(--oydc-green);


}

/* =========================================================
HERO SCROLL
========================================================= */

.hero-scroll {


position: absolute;

z-index: 10;

right: 8%;

bottom: 45px;

display: flex;

align-items: center;

gap: 13px;

color: rgba(255,255,255,.65);

font-size: 9px;

font-weight: 700;

letter-spacing: 2px;


}

.hero-scroll i {


color: #ffffff;

animation: scrollArrow 1.5s infinite;


}

@keyframes scrollArrow {


0%,
100% {

    transform: translateY(0);

}

50% {

    transform: translateY(6px);

}


}

/* =========================================================
PROGRESS BAR
========================================================= */

.slider-progress {


position: absolute;

z-index: 20;

left: 0;

bottom: 0;

width: 100%;

height: 3px;

background: rgba(255,255,255,.15);


}

.slider-progress-bar {


width: 0;

height: 100%;

background: var(--oydc-green);


}

/* =========================================================
SECTION LABEL
========================================================= */

.section-label {


display: flex;

align-items: center;

gap: 12px;

color: var(--oydc-green);

font-size: 12px;

font-weight: 700;

letter-spacing: 2.5px;


}

.section-label span {


font-size: 12px;


}

.section-label div {


width: 35px;

height: 2px;

background: var(--oydc-green);


}

.section-label.light {


color: #ffffff;


}

.section-label.light div {


background: #ffffff;


}

/* =========================================================
INTRODUCTION
========================================================= */

.intro-section {


   padding: 50px 0 100px;

background: #ffffff;


}

.intro-grid {


display: grid;

grid-template-columns: .7fr 2fr;

gap: 80px;


}

.intro-content {


max-width: 850px;


}

.intro-content h2 {


margin-bottom: 30px;

font-family:
    'World Athletics Headline',
    'World Athletics',
    sans-serif;

font-size: clamp(40px, 4vw, 60px);

line-height: 1.03;

color: var(--oydc-black);


}

.intro-content h2 span,
.section-heading h2 span,
.performance-content h2 span {


color: var(--oydc-green);


}

.intro-content p {


max-width: 760px;

margin-bottom: 18px;

color: #555;

font-size: 17px;

line-height: 1.8;


}

.intro-content .intro-lead {


color: #222;

font-size: 21px;


}

.text-link {


display: inline-flex;

align-items: center;

gap: 12px;

margin-top: 18px;

color: var(--oydc-green);

text-decoration: none;

font-weight: 700;

transition: gap .3s ease;


}

.text-link:hover {


gap: 18px;


}

/* =========================================================
AREAS
========================================================= */

.areas-section {


padding: 110px 0 125px;

background: #f5f7f5;


}

.section-heading {


max-width: 850px;

margin-bottom: 55px;


}

.section-heading h2 {


margin-top: 20px;

font-family:
    'World Athletics Headline',
    'World Athletics',
    sans-serif;

font-size: clamp(40px, 4vw, 60px);

line-height: 1.03;


}

.areas-grid {


display: grid;

grid-template-columns: repeat(4, 1fr);

gap: 1px;

border: 1px solid #dfe5df;

background: #dfe5df;


}

.area-card {


position: relative;

min-height: 350px;

padding: 34px 30px;

background: #ffffff;

text-decoration: none;

overflow: hidden;

transition:

    background .35s ease,

    transform .35s ease,

    color .35s ease;


}

.area-card:hover {


z-index: 2;

background: var(--oydc-dark-green);

color: #ffffff;

transform: translateY(-7px);


}

.area-number {


position: absolute;

top: 25px;

right: 27px;

color: #a1aaa3;

font-size: 12px;

font-weight: 700;


}

.area-icon {


width: 58px;

height: 58px;

margin-top: 35px;

margin-bottom: 35px;

display: flex;

align-items: center;

justify-content: center;

background: rgba(0,132,61,.09);

color: var(--oydc-green);

font-size: 22px;

transition: .3s ease;


}

.area-card:hover .area-icon {


background: rgba(255,255,255,.12);

color: #ffffff;


}

.area-card h3 {


margin-bottom: 15px;

font-family:
    'World Athletics Headline',
    'World Athletics',
    sans-serif;

font-size: 25px;


}

.area-card p {


color: #666;

font-size: 15px;

line-height: 1.65;

transition: color .3s ease;


}

.area-card:hover p {


color: rgba(255,255,255,.78);


}

.card-arrow {


position: absolute;

left: 30px;

bottom: 28px;

color: var(--oydc-green);

transition: .3s ease;


}

.area-card:hover .card-arrow {


color: #ffffff;

transform: translateX(6px);


}

/* =========================================================
FACILITIES
========================================================= */

.facilities-section {


display: grid;

grid-template-columns: 1.15fr .85fr;

min-height: 680px;


}

.facilities-image {


overflow: hidden;

background: #222;


}

.facilities-image img {


width: 100%;

height: 100%;

object-fit: cover;

transition: transform 1s ease;


}

.facilities-section:hover
.facilities-image img {


transform: scale(1.04);


}

.facilities-content {


display: flex;

flex-direction: column;

justify-content: center;

padding: 90px 9%;

background: var(--oydc-dark-green);

color: #ffffff;


}

.facilities-content h2 {


margin: 25px 0;

font-family:
    'World Athletics Headline',
    'World Athletics',
    sans-serif;

font-size: clamp(45px, 4vw, 65px);

line-height: 1;


}

.facilities-content h2 span {


color: #66c58d;


}

.facilities-content > p {


max-width: 520px;

margin-bottom: 30px;

color: rgba(255,255,255,.78);

font-size: 17px;

line-height: 1.8;


}

.facility-list {


display: grid;

gap: 13px;

margin-bottom: 35px;


}

.facility-list div {


display: flex;

align-items: center;

gap: 13px;

color: rgba(255,255,255,.9);

font-size: 15px;


}

.facility-list i {


color: #66c58d;


}

.light-button {


align-self: flex-start;

min-height: 52px;

padding: 0 23px;

display: inline-flex;

align-items: center;

justify-content: center;

gap: 13px;

background: #ffffff;

color: var(--oydc-dark-green);

text-decoration: none;

font-weight: 700;

transition: .3s ease;


}

.light-button:hover {


background: var(--oydc-green);

color: #ffffff;

transform: translateY(-3px);


}

/* =========================================================
PERFORMANCE
========================================================= */

.performance-section {


padding: 120px 0;

background: #ffffff;


}

.performance-grid {


display: grid;

grid-template-columns: 1fr 1fr;

gap: 100px;

align-items: center;


}

.performance-content h2 {


margin: 25px 0;

font-family:
    'World Athletics Headline',
    'World Athletics',
    sans-serif;

font-size: clamp(42px, 4vw, 62px);

line-height: 1.03;


}

.performance-content p {


max-width: 600px;

margin-bottom: 30px;

color: #5e5e5e;

font-size: 17px;

line-height: 1.8;


}

.dark-button {


min-height: 52px;

padding: 0 24px;

display: inline-flex;

align-items: center;

gap: 13px;

background: var(--oydc-black);

color: #ffffff;

text-decoration: none;

font-weight: 700;

transition: .3s ease;


}

.dark-button:hover {


background: var(--oydc-green);

transform: translateY(-3px);


}

.performance-quote {


position: relative;

padding: 65px;

border-left: 5px solid var(--oydc-green);

background: #f5f7f5;


}

.quote-mark {


position: absolute;

top: 15px;

left: 35px;

color: #dce7df;

font-family: Georgia, serif;

font-size: 90px;

line-height: 1;


}

.performance-quote blockquote {


position: relative;

z-index: 1;

margin-bottom: 30px;

font-family:
    'World Athletics Headline',
    'World Athletics',
    sans-serif;

font-size: clamp(27px, 2.5vw, 37px);

line-height: 1.25;


}

.quote-line {


width: 45px;

height: 2px;

margin-bottom: 15px;

background: var(--oydc-green);


}

.performance-quote > span {


color: var(--oydc-green);

font-size: 11px;

font-weight: 700;

letter-spacing: 2px;


}

/* =========================================================
CTA
========================================================= */

.cta-section {


position: relative;

overflow: hidden;

padding: 110px 0;

background:
    linear-gradient(
        120deg,
        #004F27,
        #00843D
    );

color: #ffffff;


}

.cta-pattern {


position: absolute;

width: 600px;

height: 600px;

right: -220px;

top: -300px;

border: 90px solid rgba(255,255,255,.05);

border-radius: 50%;


}

.cta-content {


position: relative;

max-width: 850px;


}

.cta-content h2 {


margin: 25px 0;

font-family:
    'World Athletics Headline',
    'World Athletics',
    sans-serif;

font-size: clamp(48px, 5vw, 75px);

line-height: .98;


}

.cta-content h2 span {


color: #72d19b;


}

.cta-content p {


max-width: 650px;

margin-bottom: 32px;

color: rgba(255,255,255,.82);

font-size: 18px;


}

.cta-buttons {


display: flex;

flex-wrap: wrap;

gap: 13px;


}

.cta-outline {


min-height: 52px;

padding: 0 25px;

display: inline-flex;

align-items: center;

justify-content: center;

border: 1px solid rgba(255,255,255,.65);

color: #ffffff;

text-decoration: none;

font-weight: 700;

transition: .3s ease;


}

.cta-outline:hover {


background: #ffffff;

color: var(--oydc-green);


}

/* =========================================================
ACCESSIBILITY
========================================================= */

a:focus-visible,
button:focus-visible {


outline: 3px solid #69c993;

outline-offset: 4px;


}

/* =========================================================
   OYDC ZAMBIA
   LATEST NEWS
   COMPACT HORIZONTAL NEWS SLIDER
========================================================= */

.news-section {
    position: relative;
    padding: 75px 0 80px;
    background: #ffffff;
    overflow: hidden;
}


/* =========================================================
   NEWS HEADER
========================================================= */

.news-header {
    margin-bottom: 32px;
}

.news-heading-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 35px;
    margin-top: 15px;
}

.news-heading-row h2 {
    max-width: 760px;
    margin: 0;

    font-family:
        'World Athletics Headline',
        'World Athletics',
        Arial,
        sans-serif;

    font-size: clamp(36px, 3.5vw, 54px);
    line-height: 1.02;

    color: var(--oydc-black);
}

.news-heading-row h2 span {
    color: var(--oydc-green);
}

.news-intro {
    max-width: 600px;
    margin-top: 12px;

    color: #666;
    font-size: 15px;
    line-height: 1.6;
}


/* =========================================================
   VIEW ALL NEWS
========================================================= */

.news-view-all {
    flex-shrink: 0;

    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding-bottom: 4px;

    color: var(--oydc-green);
    text-decoration: none;

    font-size: 13px;
    font-weight: 700;

    transition: gap .3s ease;
}

.news-view-all:hover {
    gap: 16px;
}


/* =========================================================
   NEWS WRAPPER
========================================================= */

.news-wrapper {
    position: relative;
}

.news-track {
    display: flex;
    gap: 20px;

    overflow-x: auto;

    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;

    scrollbar-width: none;

    padding: 5px 3px 12px;
}

.news-track::-webkit-scrollbar {
    display: none;
}


/* =========================================================
   NEWS CARD
========================================================= */

.news-card {
    position: relative;

    flex: 0 0 calc(33.333% - 14px);
    min-width: 300px;

    height: 405px;

    display: flex;
    flex-direction: column;

    background: #ffffff;

    border: 1px solid var(--oydc-border);

    overflow: hidden;

    scroll-snap-align: start;

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}

.news-card:hover {
    transform: translateY(-5px);

    border-color:
        rgba(0,132,61,.25);

    box-shadow:
        0 15px 35px rgba(0,0,0,.10);
}


/* =========================================================
   NEWS IMAGE
========================================================= */

.news-image {
    position: relative;

    display: block;

    width: 100%;
    height: 175px;

    flex-shrink: 0;

    overflow: hidden;

    background: #e9eeeb;
}

.news-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .6s ease;
}

.news-card:hover
.news-image img {
    transform: scale(1.05);
}


/* =========================================================
   IMAGE DARK OVERLAY
========================================================= */

.news-image::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    height: 70px;

    background:
        linear-gradient(
            transparent,
            rgba(0,0,0,.35)
        );

    pointer-events: none;
}


/* =========================================================
   NEWS CATEGORY
========================================================= */

.news-category {
    position: absolute;

    left: 15px;
    bottom: 14px;

    z-index: 3;

    display: inline-flex;
    align-items: center;

    min-height: 27px;

    padding: 0 10px;

    background:
        var(--oydc-green);

    color: #ffffff;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 1.2px;

    text-transform: uppercase;
}


/* =========================================================
   NEWS CONTENT
========================================================= */

.news-content {
    display: flex;
    flex-direction: column;

    flex: 1;

    padding: 18px 20px 18px;
}


/* =========================================================
   NEWS DATE
========================================================= */

.news-date {
    display: flex;
    align-items: center;
    gap: 7px;

    margin-bottom: 9px;

    color: #888;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: .8px;

    text-transform: uppercase;
}

.news-date i {
    color: var(--oydc-green);
}


/* =========================================================
   NEWS TITLE
========================================================= */

.news-title {
    display: -webkit-box;

    overflow: hidden;

    margin: 0 0 10px;

    color: var(--oydc-black);

    font-family:
        'World Athletics Headline',
        'World Athletics',
        Arial,
        sans-serif;

    font-size: 20px;

    line-height: 1.16;

    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}


/* =========================================================
   NEWS EXCERPT
========================================================= */

.news-excerpt {
    display: -webkit-box;

    overflow: hidden;

    margin: 0 0 12px;

    color: #666;

    font-size: 13px;

    line-height: 1.5;

    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}


/* =========================================================
   READ MORE
========================================================= */

.news-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin-top: auto;

    color: var(--oydc-green);

    text-decoration: none;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: .4px;

    transition:
        gap .3s ease;
}

.news-read-more:hover {
    gap: 14px;
}


/* =========================================================
   NEWS ARROWS
========================================================= */

.news-arrow {
    position: absolute;

    z-index: 10;

    top: 50%;

    transform: translateY(-50%);

    width: 46px;
    height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(0,0,0,.10);

    border-radius: 50%;

    background: #ffffff;

    color: var(--oydc-black);

    box-shadow:
        0 7px 22px rgba(0,0,0,.12);

    cursor: pointer;

    transition:
        background .3s ease,
        color .3s ease,
        transform .3s ease;
}

.news-arrow:hover {
    background: var(--oydc-green);

    color: #ffffff;

    transform:
        translateY(-50%)
        scale(1.05);
}

.news-prev {
    left: -23px;
}

.news-next {
    right: -23px;
}


/* =========================================================
   NEWS BOTTOM
========================================================= */

.news-bottom {
    display: flex;
    align-items: center;
    gap: 18px;

    margin-top: 18px;
}

.news-progress {
    position: relative;

    width: 150px;
    height: 2px;

    overflow: hidden;

    background: #dfe5df;
}

.news-progress span {
    position: absolute;

    left: 0;
    top: 0;

    width: 0;
    height: 100%;

    background:
        var(--oydc-green);

    transition:
        width .4s ease;
}

.news-count {
    color: #888;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 1.3px;

    text-transform: uppercase;
}


/* =========================================================
   LOADING
========================================================= */

.news-loading {
    width: 100%;
    min-height: 180px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    color: #777;

    font-size: 13px;
}

.news-loading i {
    color: var(--oydc-green);
}


/* =========================================================
   ERROR / EMPTY
========================================================= */

.news-message {
    width: 100%;

    padding: 40px 20px;

    text-align: center;

    color: #777;

    font-size: 13px;
}

.news-message i {
    display: block;

    margin-bottom: 10px;

    color: var(--oydc-green);

    font-size: 23px;
}


/* =========================================================
   06 — PARTNERS
   PREMIUM MOVING LOGO SECTION
========================================================= */

.partners-section {
    position: relative;
    padding: 100px 0 55px;
    background: #f5f7f5;
    overflow: hidden;
}


/* =========================================================
   PARTNERS HEADER
========================================================= */

.partners-header {
    margin-bottom: 55px;
}

.partners-heading-row {
    margin-top: 18px;
}

.partners-heading-row h2 {
    max-width: 850px;
    margin: 0;

    font-family:
        'World Athletics Headline',
        'World Athletics',
        Arial,
        sans-serif;

    font-size: clamp(40px, 4vw, 60px);
    line-height: 1.03;

    color: var(--oydc-black);
}

.partners-heading-row h2 span {
    color: var(--oydc-green);
}

.partners-intro {
    max-width: 650px;
    margin-top: 18px;

    color: #666;
    font-size: 16px;
    line-height: 1.7;
}


/* =========================================================
   LOGO MARQUEE
========================================================= */

.partners-marquee {
    position: relative;
    width: 100%;
    overflow: hidden;

    padding: 25px 0;

    border-top: 1px solid var(--oydc-border);
    border-bottom: 1px solid var(--oydc-border);

    background: #ffffff;
}


/* FADE EDGES */

.partners-marquee::before,
.partners-marquee::after {
    content: "";

    position: absolute;
    top: 0;
    bottom: 0;

    width: 150px;

    z-index: 3;

    pointer-events: none;
}

.partners-marquee::before {
    left: 0;

    background:
        linear-gradient(
            90deg,
            #ffffff 0%,
            rgba(255,255,255,0) 100%
        );
}

.partners-marquee::after {
    right: 0;

    background:
        linear-gradient(
            270deg,
            #ffffff 0%,
            rgba(255,255,255,0) 100%
        );
}


/* =========================================================
   MOVING TRACK
========================================================= */

.partners-track {
    display: flex;
    align-items: center;

    width: max-content;

    animation:
        partnersMove 35s linear infinite;
}


/* PAUSE WHEN USER HOVERS */

.partners-marquee:hover .partners-track {
    animation-play-state: paused;
}


/* =========================================================
   PARTNER LOGO
========================================================= */

.partner-logo {
    width: 210px;
    height: 115px;

    margin: 0 15px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    background: #ffffff;

    border: 1px solid #e5e9e6;

    transition:
        transform .3s ease,
        border-color .3s ease,
        box-shadow .3s ease;
}

.partner-logo:hover {
    transform: translateY(-4px);

    border-color:
        rgba(0,132,61,.35);

    box-shadow:
        0 12px 30px rgba(0,0,0,.08);
}


/* =========================================================
   LOGO IMAGE
========================================================= */

.partner-logo img {
    width: auto;
    max-width: 150px;

    height: 70px;

    object-fit: contain;

    display: block;

    filter: grayscale(100%);

    opacity: .72;

    transition:
        filter .3s ease,
        opacity .3s ease,
        transform .3s ease;
}


/* COLOUR LOGO ON HOVER */

.partner-logo:hover img {
    filter: grayscale(0);

    opacity: 1;

    transform: scale(1.05);
}


/* =========================================================
   MARQUEE ANIMATION
========================================================= */

@keyframes partnersMove {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }

}


/* =========================================================
   PARTNERS BOTTOM
========================================================= */

.partners-bottom {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 25px;

    padding-top: 28px;
}

.partners-bottom > span {
    color: #888;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2px;
}

.partners-bottom a {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    color: var(--oydc-green);

    text-decoration: none;

    font-size: 12px;

    font-weight: 700;

    transition: gap .3s ease;
}

.partners-bottom a:hover {
    gap: 16px;
}


/* =========================================================
   PARTNERS — TABLET
========================================================= */

@media (max-width: 800px) {

    .partners-section {
        padding: 75px 0 45px;
    }

    .partners-header {
        margin-bottom: 40px;
    }

    .partners-marquee {
        padding: 20px 0;
    }

    .partner-logo {
        width: 175px;
        height: 100px;

        margin: 0 10px;
    }

    .partner-logo img {
        max-width: 125px;
        height: 60px;
    }

    .partners-marquee::before,
    .partners-marquee::after {
        width: 80px;
    }

}


/* =========================================================
   PARTNERS — MOBILE
========================================================= */

@media (max-width: 600px) {

    .partners-section {
        padding: 65px 0 40px;
    }

    .partners-heading-row h2 {
        font-size: 38px;
    }

    .partners-intro {
        font-size: 14px;
    }

    .partner-logo {
        width: 155px;
        height: 90px;

        margin: 0 8px;
    }

    .partner-logo img {
        max-width: 110px;
        height: 52px;
    }

    .partners-bottom {
        flex-direction: column;

        align-items: flex-start;

        gap: 18px;
    }

    .partners-marquee::before,
    .partners-marquee::after {
        width: 45px;
    }

}




/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .news-card {
        flex: 0 0 calc(50% - 10px);
    }

    .news-prev {
        left: -14px;
    }

    .news-next {
        right: -14px;
    }

}


/* =========================================================
   SMALL TABLET
========================================================= */

@media (max-width: 800px) {

    .news-section {
        padding: 65px 0 70px;
    }

    .news-heading-row {
        align-items: flex-start;

        flex-direction: column;

        gap: 15px;
    }

    .news-card {
        flex: 0 0 72%;

        min-width: 280px;

        height: 395px;
    }

    .news-arrow {
        display: none;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .news-section {
        padding: 60px 0 65px;
    }

    .news-heading-row h2 {
        font-size: 37px;
    }

    .news-intro {
        font-size: 14px;
    }

    .news-card {
        flex: 0 0 88%;

        min-width: 0;

        height: 390px;
    }

    .news-image {
        height: 170px;
    }

    .news-content {
        padding: 17px 18px 18px;
    }

    .news-title {
        font-size: 19px;
    }

    .news-excerpt {
        font-size: 12.5px;
    }

    .news-bottom {
        margin-top: 15px;
    }

    .news-progress {
        width: 115px;
    }

}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

    .news-card {
        flex: 0 0 91%;

        height: 380px;
    }

    .news-image {
        height: 160px;
    }

    .news-title {
        font-size: 18px;
    }

}

















/* =========================================================
TABLET
========================================================= */

@media (max-width: 1100px) {

.news-card {


flex: 0 0 calc(50% - 11px);


}

.news-prev {


left: -15px;


}

.news-next {


right: -15px;


}

}

/* =========================================================
SMALL TABLET
========================================================= */

@media (max-width: 800px) {

.news-section {


padding: 80px 0 85px;


}

.news-heading-row {


align-items: flex-start;

flex-direction: column;

gap: 20px;


}

.news-card {


flex: 0 0 75%;

min-width: 300px;


}

.news-arrow {


display: none;


}

}

/* =========================================================
MOBILE
========================================================= */

@media (max-width: 600px) {

.news-section {


padding: 70px 0 75px;


}

.news-heading-row h2 {


font-size: 39px;


}

.news-intro {


font-size: 15px;


}

.news-card {


flex: 0 0 88%;

min-width: 0;


}

.news-image {


height: 210px;


}

.news-content {


padding: 22px;


}

.news-title {


font-size: 22px;


}

.news-bottom {


margin-top: 18px;


}

.news-progress {


width: 120px;


}

}

/* =========================================================
VERY SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

.news-card {


flex: 0 0 92%;


}

.news-image {


height: 190px;


}

}


/* =========================================================
TABLET
========================================================= */

@media (max-width: 1100px) {


.hero-slider {

    min-height: 650px;

}


.hero-slide h1 {

    font-size: 70px;

}


.areas-grid {

    grid-template-columns: repeat(2, 1fr);

}


.intro-grid {

    grid-template-columns: 1fr;

    gap: 35px;

}


.facilities-section {

    grid-template-columns: 1fr;

}


.facilities-image {

    min-height: 500px;

}


.performance-grid {

    gap: 55px;

}


}

/* =========================================================
TABLET / SMALL LAPTOP
========================================================= */

@media (max-width: 800px) {


.hero-slider {

    height: 720px;

    min-height: 650px;

}


.slide-overlay {

    background:

        linear-gradient(
            90deg,
            rgba(0,30,15,.96),
            rgba(0,50,25,.72)
        );

}


.slide-content {

    left: 7%;

    width: 82%;

}


.hero-slide h1 {

    font-size: 58px;

}


.slide-content > p {

    font-size: 17px;

}


.slider-arrow {

    width: 48px;

    height: 48px;

}


.slider-prev {

    left: 3%;

}


.slider-next {

    right: 3%;

}


.intro-section,
.areas-section,
.performance-section {

    padding: 85px 0;

}


.performance-grid {

    grid-template-columns: 1fr;

}


.performance-quote {

    padding: 50px;

}


}

/* =========================================================
MOBILE
========================================================= */

@media (max-width: 600px) {


.container {

    width: 88%;

}


.hero-slider {

    height: 720px;

    min-height: 650px;

}


.slide-image {

    object-position: 60% center;

}


.slide-overlay {

    background:

        linear-gradient(
            90deg,
            rgba(0,28,14,.97),
            rgba(0,45,23,.78)
        );

}


.slide-content {
    left: 6%;
    top: 47%;
    width: 88%;
    transform: translateY(-45%);
}


.slide-number {

    margin-bottom: 18px;

    font-size: 10px;

}


.hero-label {

    margin-bottom: 18px;

    font-size: 10px;

    letter-spacing: 2px;

}


.hero-label span {

    width: 30px;

}


.hero-slide h1 {

    margin-bottom: 22px;

    font-size: 46px;

    line-height: .95;

    letter-spacing: -.5px;

}


.slide-content > p {

    margin-bottom: 25px;

    font-size: 15px;

    line-height: 1.6;

}


.hero-buttons {

    flex-direction: column;

    align-items: stretch;

}


.hero-btn,
.hero-btn-outline {

    width: 100%;

}


.slider-arrow {

    top: auto;

    bottom: 75px;

    width: 42px;

    height: 42px;

}


.slider-prev {

    left: auto;

    right: 82px;

}


.slider-next {

    right: 28px;

}


.slider-dots {

    left: 6%;

    bottom: 93px;

}


.hero-scroll {

    display: none;

}


.intro-section,
.areas-section,
.performance-section {

    padding: 70px 0;

}


.intro-content h2,
.section-heading h2,
.performance-content h2 {

    font-size: 39px;

}


.intro-content .intro-lead {

    font-size: 18px;

}


.intro-content p {

    font-size: 16px;

}


.areas-grid {

    grid-template-columns: 1fr;

}


.area-card {

    min-height: 310px;

}


.facilities-image {

    min-height: 360px;

}


.facilities-content {

    padding: 65px 7%;

}


.facilities-content h2 {

    font-size: 46px;

}


.performance-quote {

    padding: 45px 30px;

}


.performance-quote blockquote {

    font-size: 27px;

}


.cta-section {

    padding: 80px 0;

}


.cta-content h2 {

    font-size: 47px;

}


.cta-content p {

    font-size: 16px;

}


.cta-buttons {

    flex-direction: column;

    align-items: stretch;

}


.light-button,
.cta-outline {

    width: 100%;

}


}

/* =========================================================
VERY SMALL MOBILE
========================================================= */

@media (max-width: 380px) {


.hero-slider {

    height: 690px;

}


.hero-slide h1 {

    font-size: 39px;

}


.slide-content > p {

    font-size: 14px;

}


.intro-content h2,
.section-heading h2,
.performance-content h2 {

    font-size: 34px;

}


.facilities-content h2 {

    font-size: 40px;

}


.cta-content h2 {

    font-size: 40px;

}


}

/* =========================================================
REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {


html {

    scroll-behavior: auto;

}


*,
*::before,
*::after {

    animation-duration: .01ms !important;

    animation-iteration-count: 1 !important;

    transition-duration: .01ms !important;

}


}
