/* =========================================
   RESET
========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #f2f2f0;
    color: #111;
    font-family: "Inter", sans-serif;
    overflow-x: hidden;
}

img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

a {
    text-decoration: none;
}


/* =========================================
   VARIABLES
========================================= */

:root {
    --red: #e60000;
    --dark: #090909;
    --black: #050505;
    --white: #ffffff;
    --cream: #f4f4f2;
    --gray: #8b8b8b;
}


/* =========================================
   HERO
========================================= */

.training-hero {
    min-height: 470px;

    position: relative;

    display: flex;
    align-items: center;

    padding: 150px 7% 90px;

    background-image:
        linear-gradient(
            90deg,
            rgba(0,0,0,0.96),
            rgba(0,0,0,0.72),
            rgba(0,0,0,0.45)
        ),
        url("image.png");

    background-size: cover;
    background-position: center;

    color: white;

    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at 75% 50%,
            rgba(230,0,0,0.12),
            transparent 35%
        );
}

.hero-content {
    position: relative;
    z-index: 2;

    max-width: 850px;
}

.small-red-title {
    display: block;

    color: var(--red);

    font-family: "Barlow Condensed", sans-serif;

    font-size: 14px;
    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 10px;
}

.hero-content h1 {
    font-family: "Barlow Condensed", sans-serif;

    font-size: clamp(48px, 6vw, 86px);

    line-height: 0.91;

    font-weight: 800;

    letter-spacing: -1px;
}

.hero-content h1 span {
    color: var(--red);
}

.hero-content p {
    max-width: 570px;

    margin-top: 25px;

    color: #bcbcbc;

    font-size: 17px;

    line-height: 1.7;
}

.hero-dots {
    position: absolute;

    bottom: 25px;
    left: 50%;

    transform: translateX(-50%);

    display: flex;
    gap: 9px;

    z-index: 3;
}

.hero-dots span {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: #777;

    transition: 0.3s;
}

.hero-dots span.active {
    background: white;

    transform: scale(1.5);
}


/* =========================================
   INTRO
========================================= */

.discipline-intro {
    background: var(--cream);

    padding: 85px 7% 50px;
}

.intro-inner {
    max-width: 1100px;

    margin: auto;
}

.intro-inner h2 {
    font-family: "Barlow Condensed", sans-serif;

    font-size: clamp(40px, 5vw, 68px);

    font-weight: 900;

    line-height: 0.95;

    margin-bottom: 15px;
}

.intro-inner p {
    max-width: 700px;

    font-size: 11px;

    color: #777;

    line-height: 1.7;
}


/* =========================================
   PROGRAMS
========================================= */

.programs {
    width: min(1180px, 92%);

    margin: 0 auto;

    padding-bottom: 70px;
}


/* =========================================
   PROGRAM CARD
========================================= */

.program-card {
    position: relative;

    display: grid;

    grid-template-columns: 1fr 1fr;

    min-height: 430px;

    overflow: visible;

    margin-bottom: 0;
}


/* LIGHT CARD */

.program-card.light {
    background: white;
}


/* DARK CARD */

.program-card.dark {
    background: var(--dark);

    color: white;
}


/* =========================================
   CONTENT
========================================= */

.program-content {
    padding: 65px 55px;

    display: flex;

    justify-content: center;

    flex-direction: column;

    position: relative;

    z-index: 2;
}

.program-number {
    color: var(--red);

    font-family: "Barlow Condensed", sans-serif;

    font-size: 16px;

    font-weight: 700;

    letter-spacing: 1.5px;

    margin-bottom: 9px;
}

.program-content h3 {
    font-family: "Barlow Condensed", sans-serif;

    font-size: clamp(38px, 4vw, 55px);

    line-height: 0.95;

    font-weight: 800;

    margin-bottom: 20px;
}

.program-content p {
    max-width: 570px;

    font-size: 14px;

    line-height: 1.7;

    color: #777;
}

.dark .program-content p {
    color: #999;
}


/* =====================================
   POINTS
======================================== */

.program-points {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 25px;

    margin-top: 18px;
}

.program-points ul {
    list-style: none;
}

.program-points li {
    position: relative;

    font-size: 13px;

    color: #666;

    margin-bottom: 8px;

    padding-left: 13px;
}

.dark .program-points li {
    color: #aaa;
}

.program-points li::before {
    content: "";

    position: absolute;

    width: 4px;
    height: 4px;

    background: var(--red);

    left: 0;
    top: 5px;
}


/* =========================================
   IMAGE
========================================= */

.program-image {
    min-height: 430px;

    position: relative;

    overflow: hidden;
}

.program-image img {
    transition:
        transform 0.8s ease,
        filter 0.8s ease;
}

.program-card:hover .program-image img {
    transform: scale(1.04);

    filter: brightness(0.85);
}


/* =========================================
   REVERSE
========================================= */

.program-card.reverse {
    grid-template-columns: 1fr 1fr;
}

.program-card.reverse .program-image {
    order: 1;
}

.program-card.reverse .program-content {
    order: 2;
}


/* =========================================
   BUTTONS
========================================= */

.buttons {
    display: flex;

    gap: 10px;

    margin-top: 23px;

    flex-wrap: wrap;
}

.btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 36px;

    padding: 0 18px;

    font-family: "Barlow Condensed", sans-serif;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1px;

    transition: 0.3s;

    cursor: pointer;
}

.red-btn {
    background: var(--red);

    color: white;

    border: 1px solid var(--red);
}

.red-btn:hover {
    background: #b90000;

    border-color: #b90000;

    transform: translateY(-2px);
}

.white-btn {
    color: #111;

    border: 1px solid #ddd;

    background: white;
}

.white-btn:hover {
    background: #111;

    color: white;

    border-color: #111;
}

.dark-btn {
    color: white;

    background: transparent;

    border: 1px solid #555;
}

.dark-btn:hover {
    background: white;

    color: #111;
}

.outline-btn {
    color: white;

    border: 1px solid #666;

    background: transparent;
}

.outline-btn:hover {
    color: #111;

    background: white;
}


/* =========================================
   FLOATING CONTROLS
========================================= */

.floating-controls {
    position: absolute;

    top: 50%;

    left: 50%;

    transform: translate(-50%, -50%);

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    min-width: 65px;

    height: 25px;

    padding: 0 9px;

    border-radius: 20px;

    background: rgba(255,255,255,0.92);

    box-shadow: 0 4px 15px rgba(0,0,0,0.12);

    z-index: 5;
}

.floating-controls span {
    font-size: 9px;

    color: #777;

    cursor: pointer;

    transition: 0.2s;
}

.floating-controls span:hover {
    color: var(--red);
}


/* =========================================
   REVEAL ANIMATION
========================================= */

.reveal {
    opacity: 0;

    transform: translateY(35px);

    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

.reveal.show {
    opacity: 1;

    transform: translateY(0);
}


/* =========================================
   FINAL CTA
========================================= */

.final-cta {
    min-height: 280px;

    position: relative;

    display: flex;

    align-items: center;

    padding: 55px 7%;

    color: white;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,0.96),
            rgba(40,0,0,0.85)
        ),
        url("images/cta.jpg");

    background-size: cover;

    background-position: center;

    overflow: hidden;
}

.cta-overlay {
    position: absolute;

    inset: 0;

    background:
        radial-gradient(
            circle at 20% 50%,
            rgba(230,0,0,0.16),
            transparent 35%
        );
}

.cta-content {
    position: relative;

    z-index: 2;

    width: min(1180px, 100%);

    margin: auto;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 60px;

    align-items: center;
}

.cta-left h2 {
    font-family: "Barlow Condensed", sans-serif;

    font-size: clamp(48px, 6vw, 76px);

    font-weight: 900;

    line-height: 0.9;
}

.cta-right p {
    color: #aaa;

    font-size: 11px;

    line-height: 1.7;

    max-width: 430px;

    margin-bottom: 20px;
}

.cta-buttons {
    display: flex;

    gap: 10px;

    flex-wrap: wrap;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .training-hero {
        min-height: 430px;

        padding: 70px 6%;
    }

    .program-content {
        padding: 45px 35px;
    }

    .program-card {
        min-height: 400px;
    }

    .program-image {
        min-height: 400px;
    }

    .cta-content {
        gap: 30px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 700px) {

    .training-hero {
        min-height: 560px;

        padding: 70px 25px;

        align-items: flex-end;

        background-position: center;
    }

    .hero-content h1 {
        font-size: 48px;

        line-height: 0.94;
    }

    .hero-content p {
        font-size: 10px;

        max-width: 100%;
    }


    .discipline-intro {
        padding: 65px 25px 35px;
    }

    .intro-inner h2 {
        font-size: 46px;
    }


    .programs {
        width: 100%;
    }


    .program-card,
    .program-card.reverse {
        display: flex;

        flex-direction: column;

        min-height: auto;
    }


    .program-card .program-image,
    .program-card.reverse .program-image {
        order: 1;

        min-height: 330px;

        width: 100%;
    }


    .program-card .program-content,
    .program-card.reverse .program-content {
        order: 2;

        padding: 45px 25px;

        min-height: 390px;
    }


    .program-content h3 {
        font-size: 46px;
    }


    .program-content p {
        font-size: 10px;
    }


    .program-points {
        gap: 15px;
    }


    .floating-controls {
        top: 330px;

        left: 50%;
    }


    .final-cta {
        padding: 60px 25px;
    }

    .cta-content {
        display: flex;

        flex-direction: column;

        align-items: flex-start;

        gap: 30px;
    }

    .cta-left h2 {
        font-size: 58px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 420px) {

    .hero-content h1 {
        font-size: 41px;
    }

    .program-content h3 {
        font-size: 40px;
    }

    .program-points {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .buttons {
        flex-direction: column;

        align-items: stretch;
    }

    .btn {
        width: 100%;
    }

}









/* =========================================================
   FIGHT CLUB HEADER / NAVBAR / FOOTER
   ORIGINAL SIZE & LAYOUT
========================================================= */


/* =========================================================
   REQUIRED VARIABLES
========================================================= */

:root {
    --red: #ed1025;
    --white: #ffffff;
    --black: #070707;
    --heading-font: "Barlow Condensed", sans-serif;
}


/* =========================================================
   TOP BAR
========================================================= */

.top-bar {
    position: relative;

    z-index: 100;

    width: 100%;

    height: 25px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #ffffff;

    border-bottom: 1px solid #dedbd6;

    color: #555;

    font-family: var(--heading-font);

    font-size: 8px;

    font-weight: 600;

    letter-spacing: 0.14em;

    text-transform: uppercase;
}


.top-bar-left,
.top-bar-center,
.top-bar-right {

    height: 100%;

    display: flex;

    align-items: center;

}


.top-bar {
    justify-content: space-between;

    padding: 0 4.5%;
}


.top-bar-left {
    gap: 6px;
}


.top-star {
    color: var(--red);

    font-size: 9px;
}


.top-bar-center {
    gap: 35px;
}


.top-bar-right {
    color: #111;
}


/* =========================================================
   MAIN HEADER / NAVBAR
========================================================= */

.main-header {

    position: absolute;

    z-index: 90;

    top: 25px;

    left: 0;

    width: 100%;

    height: 66px;

    color: var(--white);

    background: rgba(0, 0, 0, 0.36);

    border-bottom:
        1px solid
        rgba(255, 255, 255, 0.14);

    transition:
        background 0.3s ease,
        height 0.3s ease;
}


/* =========================================================
   SCROLLED HEADER
========================================================= */

.main-header.scrolled {

    position: fixed;

    top: 0;

    height: 62px;

    background: rgba(7, 7, 7, 0.96);

    backdrop-filter: blur(12px);
}


/* =========================================================
   NAV CONTAINER
========================================================= */

.nav-container {

    width: 100%;

    max-width: 1400px;

    height: 100%;

    margin: 0 auto;

    padding: 0 4.5%;

    display: flex;

    align-items: center;

    gap: 28px;
}


/* =========================================================
   LOGO
========================================================= */

.logo {

    flex-shrink: 0;

    display: flex;

    align-items: center;

    gap: 4px;

    color: var(--white);

    font-family: var(--heading-font);

    font-size: 18px;

    font-weight: 900;

    line-height: 1;

    letter-spacing: 0.02em;

    white-space: nowrap;
}


.logo-symbol {

    color: var(--red);

    font-size: 20px;

    line-height: 1;
}


/* =========================================================
   DESKTOP NAVIGATION
========================================================= */

.desktop-nav {

    display: flex;

    align-items: center;

    justify-content: flex-end;

    gap: 23px;

    margin-left: auto;
}


.desktop-nav a {

    position: relative;

    padding: 25px 0;

    color: rgba(255, 255, 255, 0.88);

    font-family: var(--heading-font);

    font-size: 10px;

    font-weight: 600;

    letter-spacing: 0.12em;

    text-transform: uppercase;

    white-space: nowrap;

    transition: color 0.2s ease;
}


.desktop-nav a::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: 17px;

    width: 0;

    height: 2px;

    background: var(--red);

    transition: width 0.25s ease;
}


.desktop-nav a:hover {

    color: var(--white);
}


.desktop-nav a:hover::after {

    width: 100%;
}


/* =========================================================
   NAV BUTTON
========================================================= */

.nav-button {

    flex-shrink: 0;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 38px;

    padding: 0 18px;

    background: var(--red);

    color: var(--white);

    font-family: var(--heading-font);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 0.1em;

    text-transform: uppercase;

    transition:
        background 0.25s ease,
        transform 0.25s ease;
}


.nav-button:hover {

    background: #c90d1f;

    transform: translateY(-1px);
}


/* =========================================================
   HAMBURGER
========================================================= */

.hamburger {

    display: none;

    width: 40px;

    height: 40px;

    margin-left: auto;

    padding: 8px;

    border: 0;

    background: transparent;

    cursor: pointer;
}


.hamburger span {

    display: block;

    width: 22px;

    height: 2px;

    margin: 5px auto;

    background: var(--white);

    transition:
        transform 0.25s ease,
        opacity 0.25s ease;
}


.hamburger.active span:nth-child(1) {

    transform:
        translateY(7px)
        rotate(45deg);
}


.hamburger.active span:nth-child(2) {

    opacity: 0;
}


.hamburger.active span:nth-child(3) {

    transform:
        translateY(-7px)
        rotate(-45deg);
}


/* =========================================================
   MOBILE MENU
========================================================= */

.mobile-menu {

    position: absolute;

    top: 66px;

    left: 0;

    width: 100%;

    padding: 25px;

    display: none;

    flex-direction: column;

    gap: 0;

    background: rgba(8, 8, 8, 0.98);

    border-top: 1px solid #252525;

    box-shadow:
        0 20px 35px
        rgba(0, 0, 0, 0.35);
}


.mobile-menu.active {

    display: flex;
}


.mobile-menu a {

    padding: 15px 4px;

    border-bottom: 1px solid #252525;

    color: var(--white);

    font-family: var(--heading-font);

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 0.12em;

    text-transform: uppercase;
}


.mobile-menu a:hover {

    color: var(--red);
}


.mobile-menu-button {

    margin-top: 15px;

    border: 0 !important;

    background: var(--red);

    text-align: center;
}


.mobile-menu-button:hover {

    color: var(--white) !important;
}


/* =========================================================
   FOOTER
========================================================= */

.main-footer {

    width: 100%;

    padding:
        65px
        max(7%, calc((100vw - 1160px) / 2))
        25px;

    background: #070707;

    color: var(--white);
}


/* =========================================================
   FOOTER TOP
========================================================= */

.footer-top {

    width: 100%;

    max-width: 1160px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        1.5fr
        repeat(3, 0.75fr)
        1fr;

    gap: 35px;

    padding-bottom: 50px;

    border-bottom: 1px solid #242424;
}


/* =========================================================
   FOOTER BRAND
========================================================= */

.footer-brand-column {

    max-width: 250px;
}


.footer-logo {

    display: inline-flex;

    align-items: center;

    gap: 4px;

    color: var(--white);

    font-family: var(--heading-font);

    font-size: 20px;

    font-weight: 900;
}


.footer-brand-column p {

    margin-top: 20px;

    color: #666;

    font-family: var(--heading-font);

    font-size: 8px;

    font-weight: 700;

    line-height: 1.5;

    letter-spacing: 0.1em;
}


/* =========================================================
   FOOTER COLUMNS
========================================================= */

.footer-column {

    display: flex;

    flex-direction: column;

    align-items: flex-start;
}


.footer-column h4 {

    margin-bottom: 20px;

    color: var(--white);

    font-family: var(--heading-font);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 0.13em;
}


.footer-column a {

    margin-bottom: 11px;

    color: #666;

    font-family: var(--heading-font);

    font-size: 8px;

    font-weight: 600;

    letter-spacing: 0.08em;

    transition: color 0.2s ease;
}


.footer-column a:hover {

    color: var(--white);
}


/* =========================================================
   FOOTER JOIN BUTTON
========================================================= */

.footer-join-button {

    width: 100%;

    min-height: 43px;

    padding: 0 15px;

    display: flex !important;

    align-items: center;

    justify-content: space-between;

    background: var(--red);

    color: var(--white) !important;

    font-family: var(--heading-font) !important;

    font-size: 9px !important;

    font-weight: 800 !important;

    letter-spacing: 0.1em;
}


.footer-join-button:hover {

    background: #c90d1f;
}


/* =========================================================
   FOOTER SOCIALS
========================================================= */

.footer-socials {

    display: flex;

    gap: 6px;

    margin-top: 18px;
}


.footer-socials a {

    width: 28px;

    height: 28px;

    margin: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 1px solid #292929;

    color: #777;

    font-size: 7px;

    font-weight: 800;
}


.footer-socials a:hover {

    border-color: var(--red);

    color: var(--red);
}


/* =========================================================
   FOOTER BOTTOM
========================================================= */

.footer-bottom {

    width: 100%;

    max-width: 1160px;

    margin: 0 auto;

    padding-top: 20px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    color: #555;

    font-family: var(--heading-font);

    font-size: 7px;

    font-weight: 600;

    letter-spacing: 0.08em;
}


.footer-bottom div {

    display: flex;

    gap: 25px;
}


.footer-bottom a {

    transition: color 0.2s ease;
}


.footer-bottom a:hover {

    color: var(--white);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .top-bar-center,
    .top-bar-right {

        display: none;
    }


    .top-bar {

        justify-content: center;

        font-size: 8px;
    }


    .desktop-nav,
    .nav-button {

        display: none;
    }


    .hamburger {

        display: block;
    }


    /* FOOTER */

    .main-footer {

        padding-top: 55px;
    }


    .footer-top {

        grid-template-columns:
            repeat(2, 1fr);

        gap: 45px 30px;
    }


    .footer-brand-column {

        max-width: 320px;
    }


    .footer-bottom {

        flex-direction: column;

        align-items: flex-start;

        gap: 15px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .top-bar {

        height: 25px;

        font-size: 7px;
    }


    .main-header {

        top: 25px;

        height: 66px;
    }


    .nav-container {

        padding: 0 20px;
    }


    .logo {

        font-size: 20px;
    }


    /* FOOTER */

    .main-footer {

        padding:
            50px
            20px
            20px;
    }


    .footer-top {

        grid-template-columns: 1fr;

        gap: 35px;

        padding-bottom: 35px;
    }


    .footer-brand-column {

        max-width: 100%;
    }


    .footer-brand-column p {

        max-width: 300px;
    }


    .footer-column h4 {

        margin-bottom: 16px;
    }


    .footer-column a {

        margin-bottom: 9px;
    }


    .footer-join-button {

        max-width: 100%;
    }


    .footer-socials {

        margin-top: 15px;
    }


    .footer-bottom {

        padding-top: 18px;

        gap: 14px;

        font-size: 6px;
    }


    .footer-bottom div {

        flex-wrap: wrap;

        gap: 12px 20px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .main-footer {

        padding-left: 15px;

        padding-right: 15px;
    }

}





/* =========================================================
   EXACT ABOUT PAGE SIZE — NAVBAR + HEADER + FOOTER
========================================================= */


/* =========================
   TOP BAR
========================= */

.top-bar {
    font-size: 15px !important;
}

.top-star {
    font-size: 17px !important;
}


/* =========================
   NAVBAR
========================= */

.desktop-nav {
    gap: 22px !important;
}

.desktop-nav a {
    font-size: 16px !important;
}

.nav-button {
    font-size: 13px !important;
}

.logo {
    font-size: 32px !important;
}

.logo-symbol {
    font-size: 35px !important;
}


/* =========================
   FOOTER
========================= */

.footer-logo {
    font-size: 36px !important;
}

.footer-brand-column p {
    font-size: 13px !important;
    line-height: 1.4 !important;
}

.footer-column h4 {
    font-size: 18px !important;
}

.footer-column a {
    font-size: 16px !important;
    margin-bottom: 15px !important;
}

.footer-join-button {
    font-size: 18px !important;
}

.footer-socials a {
    font-size: 13px !important;
}

.footer-bottom {
    font-size: 13px !important;
}


/* =========================
   MOBILE — SAME ABOUT SIZE
========================= */

@media (max-width: 600px) {

    .top-bar {
        font-size: 16px !important;
    }

    .desktop-nav a {
        font-size: 20px !important;
    }

    .mobile-menu a {
        font-size: 30px !important;
    }

    .mobile-menu-button {
        font-size: 26px !important;
    }

    .footer-brand-column p {
        font-size: 19px !important;
    }

    .footer-column h4 {
        font-size: 22px !important;
    }

    .footer-column a {
        font-size: 20px !important;
    }

    .footer-bottom {
        font-size: 16px !important;
    }

}



/* =========================================
   PROGRAM WIDTH — IMAGE SMALLER / CONTENT BIGGER
========================================= */


/* NORMAL:
   WHITE CONTENT 56%
   IMAGE         44%
*/

.program-card {
    grid-template-columns: 56% 44% !important;
}


/* REVERSE:
   IMAGE         44%
   BLACK CONTENT 56%
*/

.program-card.reverse {
    grid-template-columns: 44% 56% !important;
}







/* =========================================
   FIX — START MY FREE TRIAL BUTTON
   SHOW ALWAYS ON ALL PROGRAM CARDS
========================================= */

.program-card .program-content a,
.program-card.reverse .program-content a,
.program-card .program-content .primary-button,
.program-card.reverse .program-content .primary-button {

    opacity: 1 !important;

    visibility: visible !important;

    display: inline-flex !important;

    color: #ffffff !important;

}


/* RED BUTTON */

.program-card .program-content a:first-of-type,
.program-card.reverse .program-content a:first-of-type,
.program-card .program-content .primary-button {

    background: #ed1025 !important;

    border-color: #ed1025 !important;

    color: #ffffff !important;

}


/* SECOND BUTTON */

.program-card .program-content a:last-of-type {

    color: #111111 !important;

    opacity: 1 !important;

    visibility: visible !important;
}


/* BLACK CARDS */

.program-card.reverse .program-content a:last-of-type {

    color: #ffffff !important;

}


/* HOVER — ONLY SLIGHT EFFECT */

.program-card .program-content a:hover,
.program-card.reverse .program-content a:hover {

    opacity: 0.9 !important;

}