/* =========================================================
   SPARK LABS
   CURRICULUM PAGE
========================================================= */


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #102a43;
    background: #ffffff;
}

img {
    display: block;
    max-width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}


/* NAVBAR */

.navbar {
    height: 84px;
    padding: 0 80px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;

    position: sticky;
    top: 0;
    z-index: 1000;
}

/* =========================================================
   LOGO
========================================================= */

.logo {
    display: flex;
    align-items: center;

    gap: 10px;

    flex-shrink: 0;

    cursor: pointer;
}

.logo-icon {
    width: 42px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;
}

.logo-icon img {
    width: 42px;
    height: 48px;

    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo-text strong {
    color: #1268e8;

    font-size: 22px;
    line-height: 23px;

    font-weight: 700;
}

.logo-text small {
    margin-top: 3px;

    color: #111827;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 2px;
}


/* =========================================================
   NAVIGATION
========================================================= */

.navigation {
    display: flex;
    align-items: center;

    gap: 37px;

    height: 100%;

    margin-left: auto;
    margin-right: 40px;
}

.navigation a {
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;

    color: #0d172a;

    font-size: 13px;
    font-weight: 700;

    white-space: nowrap;
}

.navigation a:hover {
    color: #1769e8;
}


/* ACTIVE CURRICULUM */

.navigation a.active {
    color: #1268e8;
}

.navigation a.active::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    height: 2px;

    background: #1268e8;
}


/* =========================================================
   ENROLL BUTTON
========================================================= */

.enroll-button {
    width: auto;
    min-width: 140px;
    height: 48px;

    padding: 0 24px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    background: #176ce8;

    color: #ffffff;

    border-radius: 9px;

    font-size: 13px;
    font-weight: 700;

    white-space: nowrap;

    box-shadow: 0 7px 18px rgba(23, 108, 232, 0.18);

    flex-shrink: 0;
}

.enroll-button:hover {
    background: #0f5ed6;
}


/* =========================================================
   CURRICULUM HERO
========================================================= */

.curriculum-hero {
    width: 100%;
    height: 380px;

    position: relative;

    display: flex;

    overflow: hidden;

    background: #eef7ff;
}


/* =========================================================
   HERO CONTENT
========================================================= */

.hero-content {
    width: 52%;

    padding-left: 6%;
    padding-top: 43px;

    position: relative;

    z-index: 5;
}

.hero-label {
    color: #0867e8;

    font-size: 14px;
    font-weight: 700;

    margin-bottom: 12px;
}

.hero-content h1 {
    color: #102a43;

    font-size: 48px;

    line-height: 1.08;

    font-weight: 700;

    letter-spacing: -1.3px;

    margin-bottom: 17px;
}

.hero-content h1 span {
    display: block;

    color: #176ce8;
}

.hero-description {
    max-width: 580px;

    color: #526b89;

    font-size: 14px;

    line-height: 1.7;

    margin-bottom: 20px;
}


/* =========================================================
   HERO FEATURE BOXES
========================================================= */

.feature-row {
    display: flex;

    gap: 10px;

    width: 100%;
}

.feature-box {
    width: 145px;
    min-height: 70px;

    display: flex;
    align-items: center;

    padding: 10px 11px;

    background: #ffffff;

    border: 1px solid #d6e3f0;

    border-radius: 9px;

    box-shadow: 0 3px 10px rgba(21, 72, 120, 0.04);
}

.feature-image {
    width: 38px;
    min-width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-right: 8px;
}

.feature-image img {
    width: 34px;
    height: 34px;

    object-fit: contain;
}

.feature-text {
    color: #102a43;

    font-size: 12px;

    line-height: 1.35;

    font-weight: 700;
}


/* =========================================================
   HERO IMAGE
========================================================= */

.hero-image-wrapper {
    position: absolute;

    right: 0;
    top: 0;

    width: 50%;
    height: 100%;

    overflow: hidden;
}

.hero-main-image {
    position: absolute;

    top: 0;
    right: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center;

    border-radius: 48% 0 0 48%;
}


/* =========================================================
   HERO CIRCLE
========================================================= */

.hero-circle-decoration {
    position: absolute;

    left: -32px;
    top: 44px;

    width: 145px;
    height: 145px;

    border: 2px dashed #1974ee;

    border-radius: 50%;

    z-index: 3;
}

.hero-circle-decoration::after {
    content: "";

    position: absolute;

    width: 15px;
    height: 15px;

    background: #1974ee;

    border-radius: 50%;

    bottom: 9px;
    left: 2px;
}

.hero-dots {
    position: absolute;

    right: 10px;
    top: 275px;

    display: flex;
    flex-direction: column;

    gap: 8px;

    z-index: 4;
}

.hero-dots span {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #1974ee;
}


/* =========================================================
   PROGRAM SECTION
========================================================= */

.programs-section {
    width: 100%;

    padding: 27px 6% 55px;

    background: #ffffff;
}


/* =========================================================
   SECTION HEADING
========================================================= */

.section-heading {
    text-align: center;

    margin-bottom: 20px;
}

.section-heading h2 {
    color: #102a43;

    font-size: 25px;

    line-height: 1.2;

    margin-bottom: 5px;
}

.section-heading p {
    color: #526b89;

    font-size: 13px;
}


/* =========================================================
   HIDDEN RADIO BUTTONS
   Keeps the radio controls completely out of the page
   so clicking a program does NOT move/scroll the screen.
========================================================= */

#program-class1,
#program-class2,
#program-class3,
#program-fpv {
    position: fixed;

    width: 1px;
    height: 1px;

    top: 0;
    left: 0;

    opacity: 0;

    pointer-events: none;

    margin: 0;
    padding: 0;
}


/* =========================================================
   PROGRAM GRID
========================================================= */

.program-grid {
    width: 100%;
    max-width: 1180px;

    margin: 0 auto 23px;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 20px;
}


/* =========================================================
   PROGRAM CARD
========================================================= */

.program-card {
    min-height: 330px;

    background: #ffffff;

    border: 1px solid #dce6f0;

    border-radius: 11px;

    padding: 18px 18px 20px;

    display: flex;
    flex-direction: column;
    align-items: center;

    text-align: center;

    position: relative;

    cursor: pointer;

    box-shadow: 0 5px 15px rgba(20, 50, 90, 0.045);

    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.program-card:hover {
    transform: translateY(-2px);

    box-shadow: 0 9px 24px rgba(20, 50, 90, 0.08);
}


/* =========================================================
   SELECTED PROGRAM
========================================================= */

.selected-check {
    position: absolute;

    top: 11px;
    left: 12px;

    width: 25px;
    height: 25px;

    border-radius: 50%;

    background: #1672f4;

    color: #ffffff;

    display: none;

    align-items: center;
    justify-content: center;

    font-size: 14px;

    font-weight: 700;

    z-index: 5;
}


/* =========================================================
   ACTIVE CARD STATES
========================================================= */

#program-class1:checked ~ .program-grid .card-class1,
#program-class2:checked ~ .program-grid .card-class2,
#program-class3:checked ~ .program-grid .card-class3,
#program-fpv:checked ~ .program-grid .card-fpv {
    border: 2px solid #1672f4;

    box-shadow: 0 7px 20px rgba(22, 114, 244, 0.10);
}


#program-class1:checked ~ .program-grid .card-class1 .selected-check,
#program-class2:checked ~ .program-grid .card-class2 .selected-check,
#program-class3:checked ~ .program-grid .card-class3 .selected-check,
#program-fpv:checked ~ .program-grid .card-fpv .selected-check {
    display: flex;
}


/* =========================================================
   PROGRAM STATUS
========================================================= */

.program-status {
    align-self: flex-start;

    padding: 4px 9px;

    border-radius: 5px;

    font-size: 10px;

    font-weight: 700;

    margin-bottom: 7px;

    opacity: 0;
}

#program-class1:checked ~ .program-grid .card-class1 .program-status,
#program-class2:checked ~ .program-grid .card-class2 .program-status,
#program-class3:checked ~ .program-grid .card-class3 .program-status,
#program-fpv:checked ~ .program-grid .card-fpv .program-status {
    opacity: 1;
}


/* STATUS COLORS */

.blue-status {
    color: #ffffff;
    background: #1672f4;
}

.purple-status {
    color: #ffffff;
    background: #8051ee;
}

.green-status {
    color: #ffffff;
    background: #12a86a;
}

.orange-status {
    color: #ffffff;
    background: #f58a0a;
}


/* =========================================================
   PROGRAM LOGOS
========================================================= */

.program-icon {
    width: 180px;
    height: 180px;

    margin: 7px 0 8px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;
}

.program-icon img {
    width: 180px;
    height: 180px;

    object-fit: contain;
}


/* FPV LOGO */

.fpv-icon {
    width: 108px;
    height: 88px;

    margin-top: 5px;
}

.fpv-icon img {
    width: 105px;
    height: 88px;

    object-fit: contain;
}


/* =========================================================
   PROGRAM TITLE
========================================================= */

.program-card h3 {
    color: #102a43;

    font-size: 21px;

    line-height: 1.18;

    margin: 2px 0 9px;

    font-weight: 700;
}


/* =========================================================
   GRADES
========================================================= */

.grade {
    display: inline-block;

    padding: 5px 10px;

    border-radius: 6px;

    font-size: 10px;

    font-weight: 700;

    margin-bottom: 9px;
}

.blue-grade {
    background: #e4efff;
    color: #0867e8;
}

.purple-grade {
    background: #eee7ff;
    color: #7540ed;
}

.green-grade {
    background: #e0f6ed;
    color: #009b62;
}

.orange-grade {
    background: #fff0dd;
    color: #ed7600;
}


/* =========================================================
   PROGRAM DESCRIPTION
========================================================= */

.program-card p {
    color: #344f70;

    font-size: 13px;

    line-height: 1.65;

    min-height: 48px;

    margin-bottom: 10px;
}


/* =========================================================
   PROGRAM LINK
========================================================= */

.program-link {
    margin-top: auto;

    font-size: 13px;

    font-weight: 700;

    display: flex;
    align-items: center;

    gap: 9px;
}

.program-link > span {
    font-size: 20px;

    line-height: 12px;
}

.blue-link {
    color: #0867e8;
}

.purple-link {
    color: #7540ed;
}

.green-link {
    color: #009b62;
}

.orange-link {
    color: #ed7600;
}


/* =========================================================
   CURRICULUM PANELS
========================================================= */

.curriculum-panel {
    width: 100%;
    max-width: 1180px;

    margin: 0 auto;

    display: none;

    background: #eff8ff;

    border: 1px solid #cfe3f8;

    border-radius: 11px;

    padding: 22px 20px 14px;

    overflow: visible;
}


/* =========================================================
   SHOW THE SELECTED PANEL
========================================================= */

#program-class1:checked ~ #class1-panel {
    display: block;
}

#program-class2:checked ~ #class2-panel {
    display: block;
}

#program-class3:checked ~ #class3-panel {
    display: block;
}

#program-fpv:checked ~ #fpv-panel {
    display: block;
}


/* =========================================================
   CURRICULUM HEADER
========================================================= */

.curriculum-header {
    width: 100%;

    display: flex;

    justify-content: space-between;

    align-items: flex-start;

    margin-bottom: 25px;
}

.curriculum-title-area {
    display: flex;

    align-items: flex-start;

    gap: 12px;

    max-width: 800px;
}

.curriculum-main-icon {
    width: 47px;
    height: 47px;

    background: #ffffff;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;
}

.curriculum-main-icon img {
    width: 38px;
    height: 38px;

    object-fit: contain;
}


/* =========================================================
   TITLE
========================================================= */

.title-line {
    display: flex;

    align-items: center;

    gap: 9px;

    margin-bottom: 5px;
}

.title-line h2 {
    color: #102a43;

    font-size: 20px;

    line-height: 1.2;

    font-weight: 700;
}

.title-grade {
    border-radius: 5px;

    padding: 4px 9px;

    white-space: nowrap;

    font-size: 10px;

    font-weight: 700;
}

.blue-title-grade {
    color: #0867e8;
    background: #dfecff;
}

.purple-title-grade {
    color: #7540ed;
    background: #eee7ff;
}

.green-title-grade {
    color: #009b62;
    background: #e0f6ed;
}

.orange-title-grade {
    color: #ed7600;
    background: #fff0dd;
}

.curriculum-title-area p {
    color: #476585;

    font-size: 12px;

    line-height: 1.6;

    max-width: 800px;
}


/* =========================================================
   CURRICULUM STATS
========================================================= */

.curriculum-stats {
    display: flex;

    align-items: center;

    gap: 25px;

    padding-top: 7px;

    white-space: nowrap;
}

.curriculum-stats div {
    color: #173a68;

    font-size: 12px;

    display: flex;

    align-items: center;

    gap: 7px;
}

.curriculum-stats img {
    width: 20px;
    height: 20px;

    object-fit: contain;
}


/* =========================================================
   SESSION GRID
========================================================= */

.session-grid {
    width: 100%;

    display: grid;

    grid-template-columns: repeat(7, 1fr);

    gap: 10px;

    position: relative;

    margin-bottom: 18px;
}


/* =========================================================
   TIMELINE
========================================================= */

.session-grid::before {
    content: "";

    position: absolute;

    top: 13px;

    left: 6%;
    right: 6%;

    border-top: 1px dashed #9fc6f8;

    z-index: 0;
}


/* =========================================================
   SESSION CARD
========================================================= */

.session {
    min-width: 0;

    min-height: 191px;

    background: #ffffff;

    border: 1px solid #d6e4f1;

    border-radius: 9px;

    padding: 20px 9px 11px;

    text-align: center;

    position: relative;

    z-index: 1;

    display: flex;

    flex-direction: column;

    align-items: center;
}


/* =========================================================
   SESSION NUMBER
========================================================= */

.session-number {
    position: absolute;

    top: -14px;

    width: 28px;
    height: 28px;

    border-radius: 50%;

    background: #1672f4;

    color: #ffffff;

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 12px;

    font-weight: 700;

    z-index: 3;
}


/* =========================================================
   SESSION LOGO
========================================================= */

.session-icon {
    width: 50px;
    height: 50px;

    margin-bottom: 5px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    overflow: visible;
}

.session-icon img {
    width: 65px;
    height: 65px;

    object-fit: contain;

    transform: scale(1.25);
}



/* =========================================================
   SESSION TITLE
========================================================= */

.session h4 {
    color: #102a43;

    font-size: 12px;

    line-height: 1.45;

    font-weight: 700;

    margin-bottom: 7px;

    min-height: 35px;
}


/* =========================================================
   SESSION DESCRIPTION
========================================================= */

.session p {
    color: #496684;

    font-size: 10px;

    line-height: 1.55;

    margin: 0;
}


/* =========================================================
   FPV SESSION GRID
========================================================= */

.fpv-session-grid {
    grid-template-columns: repeat(3, 1fr);

    max-width: 850px;

    margin-left: auto;
    margin-right: auto;
}

.fpv-session-grid::before {
    left: 16%;
    right: 16%;
}


/* =========================================================
   INFORMATION BAR
========================================================= */

.program-info-bar {
    width: 100%;

    min-height: 78px;

    background: #ffffff;

    border: 1px solid #d5e5f5;

    border-radius: 10px;

    display: grid;

    grid-template-columns:
        1.05fr
        1.05fr
        1.1fr
        1.2fr;
}

.info-item {
    display: flex;

    align-items: center;

    gap: 11px;

    padding: 10px 20px;

    border-right: 1px solid #d5e0ec;
}

.info-item:last-child {
    border-right: none;
}


/* =========================================================
   INFORMATION LOGOS
========================================================= */

.info-icon {
    width: 32px;
    height: 32px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;
}

.info-icon img {
    width: 27px;
    height: 27px;

    object-fit: contain;
}


/* =========================================================
   INFORMATION TEXT
========================================================= */

.info-item strong {
    display: block;

    color: #102a43;

    font-size: 12px;

    margin-bottom: 4px;
}

.info-item p {
    color: #173a68;

    font-size: 10px;

    line-height: 1.45;
}

.info-item small {
    display: block;

    color: #526b89;

    font-size: 9px;

    line-height: 1.4;

    margin-top: 2px;
}


/* =========================================================
   BOTTOM CTA
========================================================= */

.bottom-cta {
    width: calc(100% - 12%);

    max-width: 1180px;

    margin: 0 auto 35px;

    min-height: 175px;

    padding: 28px 40px;

    border-radius: 20px;

    background: linear-gradient(
        110deg,
        #182f8f,
        #063fa9
    );

    color: #ffffff;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 40px;

    position: relative;

    overflow: hidden;
}

.bottom-cta h2 {
    font-size: 22px;

    margin-bottom: 7px;
}

.bottom-cta p {
    font-size: 12px;

    line-height: 1.55;

    margin-bottom: 3px;

    opacity: 0.95;
}

.cta-button {
    display: inline-block;

    background: #ffffff;

    color: #17366e;

    font-size: 12px;

    font-weight: 700;

    padding: 12px 22px;

    border-radius: 8px;

    margin-top: 14px;
}

.cta-right {
    border-left: 1px solid rgba(255,255,255,0.5);

    padding-left: 35px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    gap: 15px;
}

.cta-right div {
    display: flex;

    flex-direction: column;
}

.cta-right strong {
    font-size: 12px;

    margin-bottom: 3px;
}

.cta-right span {
    font-size: 11px;

    opacity: 0.9;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .navbar {
        padding: 0 4%;
    }

    .navigation {
        gap: 22px;

        margin-right: 25px;
    }

    .curriculum-hero {
        min-height: 390px;
        height: auto;
    }

    .hero-content {
        width: 55%;

        padding-left: 5%;
    }

    .hero-content h1 {
        font-size: 42px;
    }

    .hero-image-wrapper {
        width: 48%;
    }

    .feature-box {
        width: 135px;
    }

    .programs-section {
        padding-left: 4%;
        padding-right: 4%;
    }

    .program-grid {
        gap: 14px;
    }

    .curriculum-panel {
        max-width: none;
    }

    .bottom-cta {
        width: 92%;
    }
}


/* =========================================================
   TABLET / SMALL LAPTOP
========================================================= */

@media (max-width: 850px) {

    .navbar {
        height: auto;

        min-height: 80px;

        padding: 15px 5%;

        flex-wrap: wrap;

        gap: 15px;
    }

    .navigation {
        height: auto;

        margin: 0 auto;

        flex-wrap: wrap;

        justify-content: center;

        gap: 18px;
    }

    .navigation a {
        height: 35px;
    }

    .navigation a.active::after {
        bottom: 0;
    }


    .curriculum-hero {
        height: auto;

        display: block;

        padding-bottom: 30px;
    }

    .hero-content {
        width: 100%;

        padding: 35px 7% 0;
    }

    .hero-image-wrapper {
        position: relative;

        width: 90%;
        height: 300px;

        margin: 25px auto 0;
    }

    .hero-main-image {
        border-radius: 25px;
    }

    .hero-circle-decoration {
        display: none;
    }

    .feature-row {
        flex-wrap: wrap;
    }


    .program-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    .curriculum-header {
        flex-direction: column;

        gap: 15px;
    }

    .curriculum-stats {
        width: 100%;
    }


    .session-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .session-grid::before {
        display: none;
    }


    .fpv-session-grid {
        grid-template-columns: 1fr 1fr;
    }


    .program-info-bar {
        grid-template-columns: 1fr 1fr;
    }

    .info-item:nth-child(2) {
        border-right: none;
    }

    .info-item:nth-child(3),
    .info-item:nth-child(4) {
        border-top: 1px solid #d5e0ec;
    }


    .bottom-cta {
        grid-template-columns: 1fr;
    }

    .cta-right {
        border-left: none;

        border-top: 1px solid rgba(255,255,255,0.5);

        padding-left: 0;

        padding-top: 20px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 550px) {

    .navbar {
        padding: 14px 5%;
    }

    .logo-text strong {
        font-size: 19px;
    }

    .logo-text small {
        font-size: 8px;
    }

    .navigation {
        gap: 12px;
    }

    .navigation a {
        font-size: 12px;
    }

    .enroll-button {
        min-width: auto;

        height: 42px;

        padding: 0 15px;

        font-size: 12px;
    }


    .hero-content h1 {
        font-size: 35px;
    }

    .hero-description {
        font-size: 13px;
    }


    .feature-row {
        display: grid;

        grid-template-columns: 1fr 1fr;
    }

    .feature-box {
        width: 100%;
    }


    .program-grid {
        grid-template-columns: 1fr;
    }

    .program-card {
        min-height: 300px;
    }


    .curriculum-title-area {
        flex-direction: column;
    }

    .title-line {
        flex-direction: column;

        align-items: flex-start;
    }

    .curriculum-stats {
        flex-direction: column;

        align-items: flex-start;

        gap: 8px;
    }


    .session-grid,
    .fpv-session-grid {
        grid-template-columns: 1fr;
    }


    .program-info-bar {
        grid-template-columns: 1fr;
    }

    .info-item {
        border-right: none !important;

        border-bottom: 1px solid #d5e0ec;
    }

    .info-item:last-child {
        border-bottom: none;
    }


    .bottom-cta {
        padding: 25px;
    }
}

/* =========================================================
   FOOTER
========================================================= */

.footer {
    background-color: #071b33;
    color: white;
    padding: 60px 6% 0;
}


/* =========================================================
   FOOTER CONTAINER
========================================================= */

.footer-container {
    max-width: 1400px;
    margin: 0 auto;

    display: grid;

    grid-template-columns:
        1.5fr
        1fr
        1fr
        1.2fr
        1.6fr;

    gap: 40px;

    padding-bottom: 45px;
}


/* =========================================================
   FOOTER BRAND
========================================================= */

.footer-brand {
    max-width: 260px;
}


.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}


.footer-logo img {
    width: 42px;
    height: 42px;
    object-fit: contain;
}


.footer-logo strong {
    display: block;
    color: #ffffff;
    font-size: 19px;
}


.footer-logo small {
    display: block;
    margin-top: 3px;
    color: #b9cce0;
    font-size: 8px;
    letter-spacing: 1px;
    font-weight: 700;
}


.footer-brand > p {
    color: #aebfd1;
    font-size: 12px;
    line-height: 1.7;
}


/* =========================================================
   FOOTER COLUMNS
========================================================= */

.footer-column h3,
.footer-newsletter h3 {
    margin-bottom: 18px;
    color: white;
    font-size: 14px;
}


.footer-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
}


.footer-column a {
    color: #aebfd1;
    text-decoration: none;
    font-size: 12px;
    transition: 0.2s;
}


.footer-column a:hover {
    color: #0878e8;
}


.footer-column p {
    color: #aebfd1;
    font-size: 12px;
    line-height: 1.5;
    margin: 0;
}


/* =========================================================
   NEWSLETTER
========================================================= */

.footer-newsletter {
    max-width: 300px;
}


.footer-newsletter > p {
    color: #aebfd1;
    font-size: 12px;
    line-height: 1.6;
    margin-bottom: 15px;
}


.newsletter-form {
    display: flex;
    width: 100%;
}


.newsletter-form input {
    min-width: 0;
    flex: 1;

    padding: 12px;

    border: 1px solid #304b66;
    border-right: none;
    border-radius: 6px 0 0 6px;

    background-color: #102a43;
    color: white;

    outline: none;
    font-size: 11px;
}


.newsletter-form input::placeholder {
    color: #8fa5ba;
}


.newsletter-form input:focus {
    border-color: #0878e8;
}


.newsletter-form button {
    padding: 12px 14px;

    border: none;
    border-radius: 0 6px 6px 0;

    background-color: #0878e8;
    color: white;

    cursor: pointer;

    font-size: 11px;
    font-weight: 600;
}


.newsletter-form button:hover {
    background-color: #0566c7;
}


/* =========================================================
   FOOTER BOTTOM
========================================================= */

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;

    padding: 20px 0;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border-top: 1px solid #203a53;
}


.footer-bottom p {
    color: #8299ad;
    font-size: 10px;
}


.footer-bottom-links {
    display: flex;
    gap: 20px;
}


.footer-bottom-links a {
    color: #8299ad;
    text-decoration: none;
    font-size: 10px;
}


.footer-bottom-links a:hover {
    color: white;
}