@charset "utf-8";
/*
    -------------------------------------------------------------------
        Theme Name: jrms 
        Theme URI: https://jimmyrakestrawmemorialscholarship.com/
        Author: Andrea Masters
        Author URI: https://andreamasters.design
        Description: Custom Jimmy Rakestraw Theme
        Tags: custom
        Version: 1.0
        Requires at least: 5.0
        Tested up to: 6.2
        Requires PHP: 7.3
    -------------------------------------------------------------------
*/

/* General Imports
-------------------------------------------------------------------*/
@import url('css/bootstrap.css');
@import url('css/aos.css');
@import url('wp-paginate.css');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css');
@import url('https://fonts.googleapis.com/css2?family=League+Spartan:wght@100..900&family=Manrope:wght@200..800&display=swap');


/* Root
-------------------------------------------------------------------*/
:root {
    --white: #FFF;
    --black: #000;
    --light-grey: #F6F6F6;
    --pale-grey: #aaa;
    --med-grey: #888888;
    --dark-grey: #3A3232;
    --red: #C3080B;
    --ff-accent: 'League Spartan', sans-serif;
    --ff-default: 'Manrope', sans-serif;
}

body{
    font-family: var(--ff-default);
    color: var(--black);
    font-size: 18px;
}

@media (max-width: 768px){
    html,
    body {
        overflow-x: hidden;
    }
}

img,
svg,
video,
iframe {
    max-width: 100%;
    height: auto;
}

/* Backgrounds
-------------------------------------------------------------------*/
.bg-grey{
    background: var(--light-grey);
    background-image: url('images/asfalt-dark.png');
    background-repeat: repeat;
}

.bg-light-grey{
    background: var(--light-grey);
}

.bg-red {
    background-color: var(--red);
    background-image: url('images/asfalt-dark.png');
    background-repeat: repeat;
    color: var(--white);
}

.bg-black{
    background-color: var(--black);
    background-image: url(images/asfalt-light.png);
    background-repeat: repeat;
    color: var(--white);
}

/* Gallery
-------------------------------------------------------------------*/
.gallery {
    display: flex;
    flex-wrap: wrap;
    margin: -10px;
}

.gallery .gallery-item {
    float: none !important;
    width: 33.3333% !important;
    margin: 0 !important;
    padding: 10px;
}

.gallery .gallery-icon {
    margin: 0;
}

.gallery .gallery-icon a {
    display: block;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    position: relative;
}

.gallery .gallery-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border: 0 !important;
    transition: transform 0.4s ease;
    transform: scale(1);
}

.gallery .gallery-icon a:hover img {
    transform: scale(1.08);
}

.gallery .gallery-caption {
    margin-top: 10px;
}

.gallery .gallery-icon a {
    display: block;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    position: relative;
}

/* Dark overlay */
.gallery .gallery-icon a::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

/* Magnifying glass */
.gallery .gallery-icon a::before {
    content: "\f002"; /* Font Awesome magnifying glass */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    color: var(--white);
    font-size: 1.8rem;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 2;
}

/* Image zoom */
.gallery .gallery-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border: 0 !important;
    transition: transform 0.4s ease;
    transform: scale(1);
}

/* Hover effects */
.gallery .gallery-icon a:hover img {
    transform: scale(1.1);
}

.gallery .gallery-icon a:hover::after {
    opacity: 1;
}

.gallery .gallery-icon a:hover::before {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

@media (max-width: 767.98px) {
    .gallery .gallery-item {
        width: 50% !important;
    }
}

@media (max-width: 575.98px) {
    .gallery .gallery-item {
        width: 100% !important;
    }
}

.impact-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
}

/* Site Loader
-------------------------------------------------------------------*/
#site-loader {
    position: fixed;
    inset: 0;
    background-color: var(--black);
    background-image: url('images/asfalt-light.png');
    background-repeat: repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#site-loader.loader-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.site-loader-inner {
    text-align: center;
    padding: 20px;
}

.site-loader-logo {
    max-width: 160px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 25px;
    animation: loaderFade 1.8s ease-in-out infinite;
}

.site-loader-line {
    width: 100px;
    height: 3px;
    background-color: var(--red);
    margin: 0 auto;
    border-radius: 100px;
    overflow: hidden;
    position: relative;
}

.site-loader-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -40%;
    width: 40%;
    height: 100%;
    background-color: var(--white);
    animation: loaderSweep 1.2s ease-in-out infinite;
}

@keyframes loaderFade {
    0% {
        opacity: 0.65;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.03);
    }
    100% {
        opacity: 0.65;
        transform: scale(1);
    }
}

@keyframes loaderSweep {
    0% {
        left: -40%;
    }
    100% {
        left: 100%;
    }
}

/* Header
-------------------------------------------------------------------*/
.site-header {
    z-index: 9999;
}

.site-logo {
    width: 140px;
    height: auto;
}

.main-navigation ul {
    list-style: none;
    margin: 0;
    padding: 1rem 0 0;
    font-family: var(--ff-accent);
}

.main-navigation li {
    list-style: none;
    padding:13px 20px;
}

.main-navigation a {
    color: var(--white);
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 1.15rem;
}

.main-navigation a:hover {
    color: var(--white);
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 1.15rem;
    text-decoration:none;
    opacity:.85;
}

.main-navigation li:last-child a {
    background: var(--red);
    color: var(--white);
    padding: 10px 34px;
    border-radius: 999px;
    display: inline-block;
}

.main-navigation li:last-child a:hover {
    background: var(--black);
    color: var(--white);
    padding: 10px 34px;
    border-radius: 999px;
    display: inline-block;
}

@media (max-width: 1024px) {
    .main-navigation a, .main-navigation a:hover{
        font-size: .80rem;
    }
    .site-logo {
        width: 100px;
        height: auto;
    }
    .home-hero {
        min-height: 50vh !important;
    }
}

/* Mobile Offcanvas
-------------------------------------------------------------------*/
.mobile-menu-toggle {
    background: transparent;
    border: 1px solid rgba(255,255,255,.45);
    color: var(--white);
    border-radius: 999px;
    padding: .75rem 1rem;
    gap: .75rem;
    font-size: .95rem;
    font-weight: 700;
    line-height: 1;
    transition: all .3s ease;
}

.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
    background: rgba(255,255,255,.12);
    color: var(--white);
    border-color: rgba(255,255,255,.75);
}

.mobile-menu-toggle:focus-visible,
.mobile-menu-close:focus-visible,
.mobile-menu-list a:focus-visible,
.mobile-menu-cta .btn:focus-visible {
    outline: 2px solid var(--white);
    outline-offset: 3px;
}

.mobile-menu-toggle-icon {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
}

.mobile-menu-toggle-icon span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
}

.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.65);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .45s ease, visibility .45s ease;
}

.mobile-menu-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: min(90vw, 420px);
    height: 100vh;
    background: var(--black);
    z-index: 9999;
    overflow-y: auto;
    padding: 1.5rem;
    box-shadow: -8px 0 30px rgba(0,0,0,.25);
    transform: translateX(100%);
    opacity: 1;
    visibility: hidden;
    transition: transform .55s ease, visibility .55s ease;
    will-change: transform;
}

.mobile-menu-inner {
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

.mobile-menu-logo {
    max-width: 150px;
    height: auto;
}

.mobile-menu-close {
    background: transparent;
    border: 1px solid rgba(255,255,255,.35);
    color: var(--white);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 1.75rem;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease;
}

.mobile-menu-close:hover {
    background: var(--red);
}

.mobile-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-menu-list li {
    margin: 0;
    padding: 0;
    border-bottom: 1px solid rgba(255,255,255,.12);
}

.mobile-menu-list li:last-child {
    border-bottom: 0px !important;
}

.mobile-menu-list li:last-child a {
    background: var(--red);
    color: var(--white);
    padding: 10px 34px;
    border-radius: 999px;
    display: inline-block;
    margin-top: 20px;
    transition: all .3s ease;
}

.mobile-menu-list li:last-child a:hover {
    background: var(--black);
    color: var(--white);
    padding: 10px 34px;
    border-radius: 999px;
    display: inline-block;
}

.mobile-menu-list a {
    display: block;
    color: var(--white);
    text-decoration: none;
    font-size: 1.15rem;
    font-weight: 700;
    padding: 1rem 0;
    transition: all .3s ease;
    text-transform:uppercase
}

.mobile-menu-list a:hover,
.mobile-menu-list a:focus {
    color: var(--white);
    opacity: .85;
    text-decoration:none;
}

.mobile-menu-cta .btn {
    width: 100%;
}

body.mobile-menu-open {
    overflow: hidden;
}

.mobile-menu-overlay.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.mobile-menu-panel.is-open {
    transform: translateX(0);
    visibility: visible;
}

.mobile-menu-overlay.is-closing {
    opacity: 0;
    visibility: visible;
    pointer-events: none;
}

.mobile-menu-panel.is-closing {
    transform: translateX(100%);
    visibility: visible;
}

.mobile-menu-overlay[hidden],
.mobile-menu-panel[hidden] {
    display: block !important;
}

@media (prefers-reduced-motion: reduce) {
    .mobile-menu-overlay,
    .mobile-menu-panel,
    .mobile-menu-toggle,
    .mobile-menu-close,
    .mobile-menu-list a,
    .mobile-menu-list li:last-child a {
        transition: none !important;
    }
}

@media (min-width: 992px) {
    .mobile-menu-overlay,
    .mobile-menu-panel,
    .mobile-menu-toggle {
        display: none !important;
    }
}

/* Headlines
-------------------------------------------------------------------*/
a{
    color: var(--red);
    text-decoration:none;
}

a:hover{
    color: var(--red);
    text-decoration:underline;
}

h1, h2, h3, h4, h5, h6{
    font-family: var(--ff-accent);
    font-weight: 600;
    text-transform: uppercase;
}
.section-subtitle{
    color: var(--black);
    font-family: var(--ff-accent);
    font-size: 25px;
    font-weight: 600;
    text-transform: uppercase;
}
.section-title {
    font-family: var(--ff-accent);
    font-size: clamp(2.5rem, 5vw, 3rem) !important;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1.1;
}

.section-line {
    width: 80px;
    height: 3px;
    background: var(--red);
    margin-top: 15px;
    margin-bottom: 15px;
}

.section-line-center {
    margin-left: auto;
    margin-right: auto;
}

.section-line-left {
    margin-left: 0;
    margin-right: 0;
}

/* General Stuff
-------------------------------------------------------------------*/
blockquote {
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 1.6;
    background: var(--light-grey);
    color: var(--dark-grey);
    border-left: 4px solid var(--red);
    padding: 1.25rem;
    margin: 2rem 0;
}

blockquote p {
    margin-bottom: 0;
}

.box-shadows {
    box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.5);
}
@media (max-width: 768px){
    .image-container{
        margin-bottom:40px;
    }
    .padding-20-lr{
        padding: 0 20px 0 20px;
    }
}

/* Buttons
-------------------------------------------------------------------*/
.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--red);
    font-family: var(--ff-default);
    color: var(--white);
    text-decoration: none;
    font-size: 21px;
    font-weight: 500;
    text-transform: uppercase;
    border-radius: 50px;
    padding: 20px 40px;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background-color 0.25s ease,
        color 0.25s ease;
}

.hero-btn:hover {
    background-color: var(--black);
    color: var(--white);
    text-decoration: none;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.hero-btn:active {
    transform: translateY(0) scale(0.98);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.custom-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--red);
    font-family: var(--ff-default);
    color: var(--white);
    text-decoration: none;
    font-size: 21px;
    font-weight: 500;
    text-transform: uppercase;
    border-radius: 50px;
    padding: 10px 30px;
    border: 0;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background-color 0.25s ease,
        color 0.25s ease;
}

.custom-btn:hover {
    background-color: var(--black);
    color: var(--white);
    text-decoration: none;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.custom-btn:active {
    transform: translateY(0) scale(0.98);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.custom-btn-alt {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--black);
    font-family: var(--ff-default);
    color: var(--white);
    text-decoration: none;
    font-size: 21px;
    font-weight: 500;
    text-transform: uppercase;
    border-radius: 50px;
    padding: 10px 30px;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background-color 0.25s ease,
        color 0.25s ease;
}

.custom-btn-alt:hover {
    background-color: var(--white);
    color: var(--black);
    text-decoration: none;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.custom-btn-alt:active {
    transform: translateY(0) scale(0.98);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.custom-btn-alt2 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--black);
    font-family: var(--ff-default);
    color: var(--white);
    text-decoration: none;
    font-size: 21px;
    font-weight: 500;
    text-transform: uppercase;
    border-radius: 50px;
    padding: 10px 30px;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background-color 0.25s ease,
        color 0.25s ease;
}

.custom-btn-alt2:hover {
    background-color: var(--red);
    color: var(--white);
    text-decoration: none;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.custom-btn-alt2:active {
    transform: translateY(0) scale(0.98);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.custom-btn-footer {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--red);
    font-family: var(--ff-default);
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    border-radius: 50px;
    padding: 10px 30px;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background-color 0.25s ease,
        color 0.25s ease,
        opacity 0.25s ease;
}

.custom-btn-footer:hover {
    background-color: var(--white);
    color: var(--black);
    text-decoration: none;
    opacity: 1 !important;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.custom-btn-footer:active {
    transform: translateY(0) scale(0.98);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

/* Hero
-------------------------------------------------------------------*/
.home-hero,
.inner-banner {
    position: relative;
    overflow: hidden;
}

/* Dark overlay if needed */
.home-hero::before,
.inner-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

/* Keep actual banner content above overlay */
.home-hero .container,
.inner-banner .container {
    position: relative;
    z-index: 2;
}

/* Give room for header */
.home-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    padding-top: 220px;
    padding-bottom: 80px;
}

@media (max-width: 768px){
   .home-hero {
    background-position: left;
    text-align: center;
} 
}

.home-hero h1,
.home-hero p,
.inner-banner p {
    color: #fff;
}

.hero-line {
    display: block;
    line-height: 0.9;
}

/* EMPOWERING */
.hero-line-1 {
    font-size: clamp(2.5rem, 14vw, 6.25rem);
    font-weight: 600;
    text-transform: uppercase;
    font-family: var(--ff-accent);
    line-height: .80;
}

/* TOMORROW’S */
.hero-line-2 {
    font-size: clamp(2.4rem, 14vw, 6.125rem);
    font-style: italic;
    font-weight: 600;
    text-transform: uppercase;
    font-family: var(--ff-accent);
    line-height: .80;
}

/* CHAMPIONS */
.hero-line-3 {
    font-size: clamp(2.8rem, 16vw, 7.0625rem);
    font-weight: 600;
    text-transform: uppercase;
    font-family: var(--ff-accent);
    line-height: .80;
}

.hero-copy{
    font-family: var(--ff-default);
    font-size: 22px;
    font-weight: 400;
}

/* More Than A Scholarship
-------------------------------------------------------------------*/
.feature-item {
    text-align: center;
}

.feature-icon {
    max-width: 140px;
    margin-bottom: 20px;
}

.feature-item h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.feature-text {
    font-size: 1.1rem;
    color: var(--black);
    max-width: 300px;
    margin: 0 auto;
}

.feature-text p {
    margin-bottom: 0;
}

/* Eligibility & Requirements
-------------------------------------------------------------------*/
.eligibility-section {
    background-position: bottom center;
    background-size: cover;
}

.eligibility-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
}

.eligibility-section .container {
    position: relative;
    z-index: 2;
}

.eligibility-list {
    list-style: none;
    padding: 0;
}

.eligibility-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 18px;
    line-height: 1.5;
}

.eligibility-list li i, .eligibility-list li svg {
    color: var(--red);
    font-size: 18px;
    margin-top: 4px;
    flex-shrink: 0;
}

.eligibility-list li span {
    display: block;
}

/* Meet The Man
-------------------------------------------------------------------*/
@media (max-width: 768px) {
    .meet-the-man{
        text-align: center;
    }
    .meet-the-man .section-line-left {
    margin: auto;
}
}

/* Support the Legacy
-------------------------------------------------------------------*/
.support-title {
    color: var(--white);
    font-size: clamp(2.5rem, 6vw, 4.0625rem) !important;
}

.support-text {
     color: var(--white);
}

.support-btn {
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
}

/* Testimonials
-------------------------------------------------------------------*/
.testimonials-slider-wrap {
    padding-left: 60px;
    padding-right: 60px;
}

.testimonial-card {
    text-align: center;
}

.testimonial-quote {
    background: var(--light-grey);
    padding: 40px 35px;
    min-height: 230px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.testimonial-quote::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -12px;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 12px solid var(--light-grey);
}

.testimonial-quote p {
    margin-bottom: 0;
    font-size: 1.1em;
    line-height: 1.6;
    color: var(--dark-grey);
    font-weight: 400;
}

.testimonial-meta {
    padding-top: 28px;
    text-align: center;
}

.testimonial-meta h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.testimonial-meta span {
    color: var(--red);
    font-size: 1rem;
}

.testimonial-prev,
.testimonial-next {
    position: absolute;
    top: 42%;
    transform: translateY(-50%);
    background: none;
    border: 0;
    color: #000;
    font-size: 2.25rem;
    line-height: 1;
    padding: 0;
    z-index: 5;
}

.testimonial-prev {
    left: 0;
}

.testimonial-next {
    right: 0;
}

.testimonial-prev:hover,
.testimonial-next:hover {
    color: var(--red);
}

@media (max-width: 991.98px) {
    .testimonials-slider-wrap {
        padding-left: 40px;
        padding-right: 40px;
    }

    .testimonial-quote {
        min-height: auto;
    }
}

@media (max-width: 767.98px) {
    .testimonials-slider-wrap {
        padding-left: 30px;
        padding-right: 30px;
    }
}

.modal-content{
    background: var(--light-grey);
}

.testimonial-modal-dialog {
    max-width: 650px;
}

.testimonial-modal-content {
    border: 0;
    border-radius: 0;
    padding: 1.5rem 1.5rem 2rem;
}

#testimonialModal .modal-header {
    padding: 0;
}

#testimonialModal .btn-close {
    box-shadow: none;
    opacity: 1;
    position: absolute;
    right: 10px;
}

#testimonialModal .modal-body {
    padding-top: 1rem !important;
}

#testimonialModal .section-title {
    margin-bottom: 0;
}

#testimonialModal p {
    margin-top: 0;
    margin-bottom: 0;
}

/* Form Options
-------------------------------------------------------------------*/
.form-control{
    border-radius: 0;
}

textarea {
    height: 120px;
}

/* Inner pages
-------------------------------------------------------------------*/
.inner-page-hero {
    min-height: 450px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.inner-page-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.inner-page-hero .container {
    z-index: 2;
}

.inner-page-hero h1 {
    color: var(--white);
    font-family: var(--ff-accent);
    font-size: clamp(2.5rem, 6vw, 5.5rem);
    font-weight:600;
    line-height: 0.95;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.inner-page-hero .hero-paragraph {
    color: var(--white);
    font-size: 1.35rem;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto;
}

.inner-page-hero .hero-paragraph p:last-child {
    margin-bottom: 0;
}

@media (max-width: 991.98px) {
    .inner-page-hero {
        min-height: 500px;
        padding: 100px 0 60px;
    }

    .inner-page-hero .hero-paragraph {
        font-size: 1.1rem;
    }
}

@media (max-width: 575.98px) {
    .inner-page-hero {
        min-height: 480px;
    }
}

@media (max-width: 768px) {
    .about-top-tribute{
        text-align: center;
    }
    .about-top-tribute .section-line-left{
        margin:auto;
    }
}
.tribute-quote{
    color: var(--red);
    font-family: var(--ff-accent);
    font-size: 40px;
    font-weight: 400;
    font-style: italic;
    line-height: 40px;
}

.tribute-text p{
    font-size: 21px;
}

/* Financials
-------------------------------------------------------------------*/
.financials-commitment .container.bg-grey {
    border-radius: 8px;
}

.commitment-box {
    padding: 2rem;
}

.commitment-icon {
    width: 90px;
    height: 90px;
    object-fit: contain;
}

.commitment-text {
    font-size: 1rem;
    line-height: 1.6;
}

.commitment-text p:last-child {
    margin-bottom: 0;
}

.financials-commitment .col-md-2 {
    border-right: 1px solid rgba(0, 0, 0, .15);
}

@media (max-width: 767px) {
    .commitment-box {
        text-align: center;
        padding: 2rem 1.5rem;
    }

    .financials-commitment .col-md-2 {
        border-right: 0;
        border-bottom: 1px solid rgba(0, 0, 0, .15);
        padding-bottom: 1.5rem;
    }

    .commitment-icon {
        width: 80px;
        height: 80px;
    }
}

/* Blog Archive
-------------------------------------------------------------------*/
.blog-card-image img {
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
}

.blog-placeholder {
    aspect-ratio: 1 / 1;
    width: 100%;
    padding: 6rem;
}

.blog-placeholder-logo {
    max-width: 220px;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.blog-card-title {
    font-family: var(--ff-accent);
    font-size: 1.75rem;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 1rem;
}

.blog-card-title a {
    color: var(--black);
    text-decoration: none;
}

.blog-card-title a:hover {
    color: var(--red);
}

.blog-card-date {
    color: var(--red);
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.blog-card-excerpt p:last-child {
    margin-bottom: 0;
}

/* Sidebar Layout */
.blog-sidebar {
    position: sticky;
    top: 120px;
    background: var(--light-grey);
}

/* Make sidebar feel tighter than 25% */
@media (min-width: 992px) {
    .blog-sidebar {
        max-width: 260px;
    }
}

/* Category List */
.blog-category-list li a {
    display: block;
    text-decoration: none;
    transition: all .25s ease;
    color: var(--black);
}

/* Hover */
.blog-category-list li a:hover,
.blog-category-list li a:focus {
    background: #f8f8f8;
    border-color: rgba(0,0,0,.2);
}

/* Active Category (WordPress adds .current-cat) */
.blog-category-list .current-cat a {
    background: var(--brand-accent);
    color: #fff;
    border-color: var(--brand-accent);
}

/* Spacing cleanup */
.blog-sidebar h2 {
    font-weight: 700;
}

/* Mobile spacing */
@media (max-width: 991px) {
    .blog-sidebar {
        position: relative;
        top: auto;
        max-width: 100%;
    }
}

/* Pagination
-------------------------------------------------------------------*/
.archive-pagination {
    text-align: center;
}

.archive-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    margin: 0 4px;
    padding: 0 14px;
    text-decoration: none;
    background: var(--light-grey);
    color: var(--black);
    line-height: 1;
    border: 0;
}

.archive-pagination .page-numbers.current {
    background: var(--black);
    color: var(--white);
}

.archive-pagination a.page-numbers:hover {
    background: var(--red);
    color: var(--white);
}

.archive-pagination .prev,
.archive-pagination .next {
    font-size: 18px;
    padding: 0 16px;
}

/* Blog Categories
-------------------------------------------------------------------*/
.blog-category-list a.active {
    color: var(--red);
    font-weight: 600;
    position: relative;
}

.blog-category-list a.active::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 70%;
    background: var(--red);
}

/* Footer
-------------------------------------------------------------------*/
.site-footer .textwidget{
    font-size:17px;
}

.footer-title {
    font-family: var(--ff-accent);
    font-size: 27px;
    font-weight: 600;
    text-transform: uppercase;
}

.site-footer a{
    text-decoration: none;
    font-size:17px;
    color: var(--white);
}

.site-footer a:hover{
    opacity: 0.7;
}

.site-footer ul {
    list-style: none !important;
    padding-left: 0;
    margin: 0 0 .5rem 0;
}

.site-footer li {
    list-style: none !important;
}

.site-footer ul li::marker {
    content: none !important;
}

.footer-social {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

@media (max-width: 768px) { 
    .footer-social {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 20px;
        margin-top: 10px;
    }
}

.footer-social a {
    color: #fff;
    font-size: 25px;
    transition: opacity 0.3s ease;
}

.footer-social a:hover {
    opacity: 0.7;
}

.site-footer .border-top {
    border-top: var(--bs-border-width) var(--bs-border-style) rgba(255, 255, 255, 0.25) !important;
}

@media (max-width: 768px) {
   .site-footer{
       text-align:center;
   }
}

/* Back to Top
-------------------------------------------------------------------*/
.scrolltop {
    display: none;
    width: 100%;
    margin: 0 auto;
    position: fixed;
    right: 1%;
    bottom: 0%;
    z-index: 1070;
}

@media screen and (max-width: 768px) {
    .scrolltop {
        right: 0%;
    }
}

@media screen and (max-width: 575px) {
    .scrolltop {
        display: none !important;
    }
}

.scroll {
    position: absolute;
    right: 0;
    bottom: 70px;
    background: var(--black);
    border-radius: 50%;
    text-align: center;
    margin: 0 0 0 0;
    cursor: pointer;
    transition: 0.5s;
    -moz-transition: 0.5s;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    width: 40px;
    height: 40px;
    color: #FFF;
    padding-top: 8px;
}

.scroll:hover {
    background: var(--pale-rose);
}

.scroll .fas {
    font-size: 20px;
    transition: 0.5s;
    -moz-transition: 0.5s;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
}

/* Plugin Edits
-------------------------------------------------------------------*/
.cky-preference-title{
    font-family: var(--ff-accent) !important;
    text-transform: uppercase;
}
.cky-revisit-bottom-left {
    background-color: var(--red) !important;
}
.cky-consent-container .cky-consent-bar {
    box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.5) !important;
}
.cky-notice-btn-wrapper .cky-btn, .cky-prefrence-btn-wrapper .cky-btn {
    background-color: var(--red) !important;
    border-color: var(--red) !important;
    text-transform: uppercase;
    border-radius: 50px 50px 50px 50px;
}
.cky-revisit-bottom-left, .djacc-popup .djacc__openbtn, .djacc-popup .djacc__close:hover, .djacc-popup .djacc__bar:after, .djacc-popup .djacc__bar:before, .djacc-popup .djacc__close, .djacc-popup .djacc__btn--active {
    box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.5);
    border-radius: 50px;
}

button.cky-btn.cky-btn-customize{
    background-color: transparent !important;
    color: var(--white);
    border-color: var(--white) !important;
    text-transform: uppercase;
}
button.cky-show-desc-btn:not(:hover):not(:active) {
    color: var(--white) !important;
    text-transform: uppercase;
}
.cky-modal {
    box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.5) !important;
    font-family: var(--ff-default) !important;
}    
.cky-preference-content-wrapper .cky-show-desc-btn {
    color: var(--light-grey) !important;
}    

.djacc__title{
    font-family: var(--ff-accent) !important;
    text-transform: uppercase;
}
.djacc-popup .djacc__panel {
    background: #121212 !important;
    border-radius: 0;
    font-family: var(--ff-default) !important;
}  

.djacc-popup .djacc__openbtn {
    width: 45px !important;
    height: 45px !important;
}

.djacc-popup .djacc__openbtn, .djacc-popup .djacc__close:hover, .djacc-popup .djacc__bar:after, .djacc-popup .djacc__bar:before, .djacc-popup .djacc__close, .djacc-popup .djacc__btn--active  {
    background: var(--red) !important;
}

.djacc-popup .djacc__arrows:hover, .djacc-popup .djacc__btn:hover, .djacc-popup .djacc__btn--active {
    border-color: var(--red) !important;
}

.djacc-popup .djacc__dec, .djacc-popup .djacc__inc, .djacc-popup .djacc__footer-link:hover{
    color: var(--red) !important;
}

.djacc-highlight-titles .djacc-title {
    outline: 2px solid var(--red) !important;
    outline-offset: 2px !important;
}

.djacc-popup .djacc__dec:hover svg [stroke^="#"], .djacc-popup .djacc__inc:hover svg [stroke^="#"] {
    stroke: var(--red) !important;
}

.djacc-opened .djacc-popup.djacc--bottom-left .djacc__openbtn, .djacc-opened .djacc-popup.djacc--bottom-right .djacc__openbtn, .djacc-opened .djacc-popup.djacc--top-left .djacc__openbtn, .djacc-opened .djacc-popup.djacc--top-right .djacc__openbtn, .djacc-popup.djacc--bottom-left:hover .djacc__openbtn, .djacc-popup.djacc--bottom-right:hover .djacc__openbtn, .djacc-popup.djacc--top-left:hover .djacc__openbtn, .djacc-popup.djacc--top-right:hover .djacc__openbtn {
    margin: 0;
}

.djacc__footer{
    display: none !important;
}

@media (max-width: 767px) {

    .cky-consent-container {
        position: fixed !important;
        left: 12px !important;
        right: 12px !important;
        bottom: 12px !important;
        top: auto !important;
        width: auto !important;
        max-width: none !important;
        min-width: 0 !important;
        margin: 0 !important;
        transform: none !important;
        box-sizing: border-box !important;
    }

    .cky-consent-container .cky-consent-bar {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        margin: 0 !important;
        padding: 20px 16px !important;
        border-radius: 20px !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    .cky-notice {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .cky-title,
    .cky-notice-title {
        font-size: 2rem !important;
        line-height: 1.1 !important;
        margin-bottom: 12px !important;
    }

    .cky-notice-des,
    .cky-notice-group,
    .cky-notice-des p {
        font-size: 1rem !important;
        line-height: 1.5 !important;
    }

    .cky-notice-btn-wrapper {
        display: flex !important;
        flex-direction: column !important;
        gap: 12px !important;
        width: 100% !important;
        margin-top: 20px !important;
    }

    .cky-btn,
    .cky-btn-customize,
    .cky-btn-reject,
    .cky-btn-accept {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        margin: 0 !important;
        padding: 16px 20px !important;
        font-size: 1rem !important;
        line-height: 1.2 !important;
        text-align: center !important;
        white-space: normal !important;
        box-sizing: border-box !important;
    }

    .cky-btn-revisit-wrapper {
        left: 16px !important;
        right: auto !important;
        bottom: 16px !important;
    }

    .cky-consent-container *,
    .cky-consent-container *::before,
    .cky-consent-container *::after {
        box-sizing: border-box !important;
    }
}