* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: "Quicksand", sans-serif;
    color: #17324D;
    overflow-x: hidden;
    background: #FFF9F2;
}
.page {
    min-height: 100vh;
    background: #fff9f2;
    animation: pageReveal 1.2s cubic-bezier(.22, 1, .36, 1) both;
}
@keyframes pageReveal {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
.top {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 75px;

    display: flex;
    align-items: center;
    padding: 0 35px;
    gap: 35px;

    /* Plus opaque */
    background: rgba(255, 249, 242, 0.856);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    border-bottom: 1px solid rgba(23, 50, 77, 0.09);

    box-shadow:
        0 8px 25px rgba(23, 50, 77, 0.08);

    z-index: 100000;

    animation:
        navReveal .9s
        cubic-bezier(.22, 1, .36, 1)
        .1s both;
}

@keyframes navReveal {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.brand {
    text-decoration: none;
}

.brand:link,
.brand:visited,
.brand:hover,
.brand:active {
    text-decoration: none;
}

.brand-name {
    text-decoration: none;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-right: auto;
    transition:
        transform .3s ease;
}
.brand:hover {
    transform:
        translateY(-2px);
}
.fox {
    width: 55px;
    height: 55px;
    object-fit: cover;
    border-radius: 28px;
    box-shadow:
        0 6px 16px rgba(23, 50, 77, .10);
    transition:
        transform .3s ease,
        box-shadow .3s ease;
}
.brand:hover .fox {
    transform:
        rotate(-4deg)
        scale(1.04);
    box-shadow:
        0 10px 22px rgba(23, 50, 77, .14);
}
.brand-name {
    font-size: 30px;
    font-weight: 600;
    color: #17324D;
    text-decoration: none;

}
.index-1,
.about-1,
.faq-1,
.story-1,
.involve-1,
.donate-1 {
    position: absolute;
    display: flex;
    align-items: center;
    border: none;
    background: transparent;
    color: #17324D;
    font-family:
        "Quicksand",
        sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    white-space: nowrap;
    transition:
        transform .3s ease,
        color .25s ease,
        opacity .25s ease;
}
.index-1 {
    margin-left: 365px;
}
.about-1 {
    margin-left: 515px;
}
.faq-1 {
    margin-left: 565px;
}
.story-1 {
    margin-left: 610px;
}
.involve-1 {
    margin-left: 665px;
}
.donate-1 {
    margin-left: 790px;
}
.index-1,
.involve-1 {
    cursor: pointer;
}
.index-1.open .triangle,
.involve-1.open .triangle {
    transform:
        rotate(180deg);
}
.triangle {
    display: inline-block;
    margin-left: 5px;
    font-size: 19px;
    transform-origin: center;
    transition:
        transform .35s ease;
}
.index-1:hover,
.about-1:hover,
.faq-1:hover,
.story-1:hover,
.involve-1:hover,
.donate-1:hover {
    color: #39A6A3;
    transform:
        translateY(-2px);
}
.donate-1 {
    border:
        3px solid #17324D;
    border-radius: 35px;
    padding:
        9px 21px;
}
.donate-1:hover {
    color: #39A6A3;
    border-color:
        #39A6A3;
}
.explore-menu {
    position: fixed;
    top: 75px;
    left: 0;
    width: 100%;
    height: calc(100vh - 75px);
    background:
        rgba(255, 249, 242, 0.82);
    backdrop-filter:
        blur(123px);
    -webkit-backdrop-filter:
        blur(123px);
    border-top:
        1px solid rgba(23, 50, 77, 0.07);
    border-bottom:
        1px solid rgba(23, 50, 77, 0.07);
    box-shadow:
        0 15px 40px rgba(23, 50, 77, .08);
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transform:
        translateY(-100%);
    pointer-events: none;
    transition:
        transform .5s cubic-bezier(.22, 1, .36, 1),
        opacity .35s ease,
        visibility .5s ease;
}
.explore-menu.open {
    opacity: 1;
    visibility: visible;
    transform:
        translateY(0);
    pointer-events: auto;
}
.explore-menu-content {
    width: 100%;
    height: 100%;
    padding:
        45px 8%;
    overflow-y: auto;
}
.explore-menu-header {
    margin-bottom: 35px;
}
.explore-menu-header h2 {
    font-family:
        "Quicksand",
        sans-serif;
    font-size: 40px;
    font-weight: 600;
    color: #17324D;
    letter-spacing: -1.5px;
}
.explore-menu-header p {
    margin-top: 10px;
    font-size: 16px;
    font-weight: 500;
    color: #526A7A;
}
.explore-menu-grid {
    display: grid;
    grid-template-columns:
        repeat(4, 1fr);
    gap: 20px;
    width: 100%;
}
.explore-item {
   display:block;
    background:transparent;
    border:none;
      
}
.explore-item:hover {
    transform:
        translateY(-5px);
    background:
       transparent;
    box-shadow:
        0 10px 30px rgba(23, 50, 77, .08);
}
.explore-item h3 {
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 600;
    color: #17324D;
}
.explore-item p {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    color: #526A7A;
}







.explore-menu {
    position: fixed;
    top: 75px;
    left: 0;
    width: 100%;
    height: calc(100vh - 75px);
    background:
        rgba(255, 249, 242, 0.82);
    backdrop-filter:
        blur(12px);
    -webkit-backdrop-filter:
        blur(12px);
    border-top:
        1px solid rgba(23, 50, 77, 0.07);
    border-bottom:
        1px solid rgba(23, 50, 77, 0.07);
    box-shadow:
        0 15px 40px rgba(23, 50, 77, .08);
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transform:
        translateY(-100%);
    pointer-events: none;
    transition:
        transform .5s cubic-bezier(.22, 1, .36, 1),
        opacity .35s ease,
        visibility .5s ease;
}
.explore-menu.open {
    opacity: 1;
    visibility: visible;
    transform:
        translateY(0);
    pointer-events: auto;
}
.explore-menu-content {
    width: 100%;
    height: 100%;
    padding:
        45px 8%;
    overflow-y: auto;
}
.explore-menu-header {
    margin-bottom: 35px;
}
.explore-menu-header h2 {
    font-family:
        "Quicksand",
        sans-serif;
    font-size: 40px;
    font-weight: 600;
    color: #17324D;
    letter-spacing: -1.5px;
}
.explore-menu-header p {
    margin-top: 10px;
    font-size: 16px;
    font-weight: 500;
    color: #526A7A;
}
.explore-menu-grid {
    display: grid;
    grid-template-columns:
        repeat(4, 1fr);
    gap: 20px;
    width: 100%;
}
.explore-item {
    padding: 25px;
    background:none;
    display:block;
    border:none;
    border-radius: 16px;
    backdrop-filter:
        blur(10px);
    -webkit-backdrop-filter:
        blur(10px);
    transition:
        transform .25s ease,
        box-shadow .25s ease,
        background .25s ease;
}
.explore-item:hover {
    transform:
        translateY(-5px);
    background:
        rgba(255, 249, 242, .65);
    box-shadow:
        0 10px 30px rgba(23, 50, 77, .08);
}
.explore-item h3 {
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 600;
    color: #17324D;
}
.explore-item p {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    color: #526A7A;
}

.signin-button {
    border: none;
    border-radius: 20px;
    padding:
        12px 25px;
    background:
        transparent;
    color: #17324D;
    font-family:
        "Quicksand",
        sans-serif;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition:
        transform .3s ease,
        color .25s ease,
        background .25s ease;
}
.signin-button:hover {
    transform:
        translateY(-2px);
    color:
        #39A6A3;
    background:
        rgba(57, 166, 163, .08);
}
.signup-button {
    border: none;
    height: 45px;
    min-width: 100px;
    padding:
        0 22px;
    border-radius: 35px;
    background:
        #17324D;
    color:
        #FFF9F2;
    font-family:
        "Quicksand",
        sans-serif;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 8px 18px rgba(23, 50, 77, .13);
    transition:
        transform .3s ease,
        background .25s ease,
        box-shadow .25s ease;
}
.signup-button:hover {
    transform:
        translateY(-3px);
    background:
        #39A6A3;
    box-shadow:
        0 12px 25px rgba(57, 166, 163, .22);
}

/* =========================
   BLOG
========================= */

.blog {

    width: min(1380px, 92%);

    margin: auto;

    padding-top: 125px;
    padding-bottom: 120px;

}



/* =========================
   FEATURED
========================= */

.featured {

    width: 100%;

    margin-bottom: 100px;

}


.featured-visual{
    position:relative;
    width:100%;
    height:610px;
    border-radius:30px;
    overflow:hidden;
    background:linear-gradient(145deg,#0f4c42,#17324D);
    color:#FFF9F2;
}

.featured-visual::before,
.featured-visual::after{
    content:"";
    position:absolute;
    border-radius:50%;
    border:1px solid rgba(47,202,163,.2);
}

.featured-visual::before{
    width:990px;
    height:1090px;
    top:-780px;
    left:-390px;
}

.featured-visual::after{
   width:990px;
    height:1090px;
    bottom:-820px;
    right:-350px;
}

.featured-visual strong{
    position:relative;
    z-index:2;
    font-size:23px;
    line-height:1.05;
}

.featured-visual small{
    margin-top:10px;
    font-size:8px;
    letter-spacing:1.5px;
    opacity:.75;
}

.mini-icon{
    position:absolute;
    top:15px;
    left:18px;
    font-size:18px;
    color:#2fcaa3;
}

/* =========================
   FEATURED TITLE
========================= */

.featured-title {

    position: absolute;

    top: 50%;

    left: 50%;

    transform: translate(-50%, -50%);

    text-align: center;

    color: white;

    z-index: 2;

    width: 700px;
}


.featured-title span {

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 3px;

    opacity: .8;
}


.featured-title h1 {

    font-size: clamp(45px, 5vw, 72px);

    line-height: .98;

    letter-spacing: -3px;

    margin: 15px 0;

    font-weight: 700;
}


.featured-title p {

    font-size: 17px;

    line-height: 1.5;

    opacity: .85;
}




/* =========================
   ARTICLE BUTTON
========================= */

.article-button {
  text-decoration: none;
    position: absolute;

    right: 30px;
    bottom: 30px;

    z-index: 5;

    background: white;

    color: #111;

    padding: 15px 20px;

    border-radius: 35px;

    font-size: 13px;

    font-weight: 700;

    display: flex;

    align-items: center;

    gap: 15px;

    transition: .25s ease;
}


.article-button span {

    font-size: 17px;
}


.article-button:hover {

    transform: translateY(-3px);

    box-shadow: 0 10px 25px rgba(0,0,0,.15);
}



/* =========================
   TAGS
========================= */

.featured-tags {

    position: absolute;

    bottom: 30px;
    left: 30px;

    display: flex;

    gap: 10px;

    z-index: 4;
}


.featured-tags span {

    background: #05090a;

    color: white;

    padding: 8px 12px;

    border-radius: 6px;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: .5px;
}



/* =========================
   FEATURED INFO
========================= */

.featured-info {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    padding: 50px 35px 0;
}


.featured-heading h2 {

    font-size: 39px;

    line-height: 1.18;

    letter-spacing: -1.5px;

    max-width: 650px;
}


.featured-description {

    max-width: 500px;

    color: #777;

    font-size: 15px;

    line-height: 1.55;
}


.author {

    display: flex;

    align-items: center;

    gap: 12px;

    margin-top: 25px;

    color: #111;
}


.author-avatar {

    width: 158px;
    height: 158px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #;

    font-size: 50px;
}


.learnivia-team{
    height:200px;
}




.author strong {

    display: block;

    font-size: 14px;
}


.author small {

    display: block;

    color: #888;

    font-size: 11px;

    margin-top: 2px;
}



/* =========================
   ARTICLE GRID
========================= */

.articles {

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    column-gap: 35px;

    row-gap: 65px;

}



/* =========================
   CARD
========================= */

.card {

    min-width: 0;
}


.card-image {

    position: relative;

    width: 100%;

    height: 185px;

    border-radius: 18px;

    overflow: hidden;

    display: flex;

    align-items: center;
    justify-content: center;

}


.card-image.green {

    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(255,255,255,.12),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #155d4e,
            #073c3b
        );

}


.card-image.blue {

    background: #4cc7e6;
}


.card-image.purple {

    background: #6d45cc;
}


.card-image.yellow {

    background: #f3cf37;
}


.card-image.earth {

    background: #2778dc;
}


.card-image.space {

    background: #4b22a3;
}


.card-image.orange {

    background: #f4b632;
}


.card-image.conversation {

    background: #c64c32;
}


.card-image.science {

    background: #42c3e0;
}



/* =========================
   CARD VISUALS
========================= */

.mini-logo {

    color: white;

    font-size: 22px;

    font-weight: 700;

    letter-spacing: -1px;
}


.cloud {

    position: absolute;

    width: 75px;
    height: 28px;

    background: white;

    border-radius: 30px;

    opacity: .85;
}


.cloud-one {

    top: 25px;
    left: 25px;
}


.cloud-two {

    top: 40px;
    right: 30px;
}


.sun {

    position: absolute;

    right: 40px;
    top: 20px;

    font-size: 35px;
}


.plant {

    font-size: 75px;

    position: absolute;

    bottom: 10px;
}


.search-icon {

    position: absolute;

    font-size: 60px;

    left: 35px;

    transform: rotate(-15deg);
}


.paper {

    position: absolute;

    right: 50px;

    font-size: 65px;

    transform: rotate(10deg);
}


.stars {

    color: rgba(255,255,255,.5);

    position: absolute;

    top: 20px;
    right: 25px;

    font-size: 25px;

    letter-spacing: 12px;
}


.brain {

    font-size: 90px;

    position: relative;

    z-index: 2;
}


.thinking {

    position: absolute;

    right: 30px;
    top: 25px;

    font-size: 35px;
}


.earth-icon {

    font-size: 85px;
}


.sparkle {

    position: absolute;

    color: white;

    font-size: 40px;

    top: 25px;
    right: 45px;
}


.moon {

    font-size: 80px;

    position: absolute;

    left: 45px;
    bottom: 15px;
}


.planet {

    font-size: 75px;

    position: absolute;

    right: 45px;
    top: 35px;
}


.star {

    color: white;

    position: absolute;

    font-size: 30px;
}


.star-one {

    top: 20px;
    left: 35px;
}


.star-two {

    bottom: 25px;
    right: 25px;
}


.motivation {

    font-size: 80px;

    z-index: 2;
}


.bars {

    position: absolute;

    display: flex;

    gap: 8px;

    right: 35px;

    bottom: 25px;
}


.bars i {

    display: block;

    width: 15px;

    border-radius: 10px;

    background: rgba(255,255,255,.6);
}


.bars i:nth-child(1) {
    height: 40px;
}


.bars i:nth-child(2) {
    height: 65px;
}


.bars i:nth-child(3) {
    height: 85px;
}


.bars i:nth-child(4) {
    height: 105px;
}


.talk {

    font-size: 75px;
}


.people {

    position: absolute;

    bottom: 20px;

    font-size: 45px;

    letter-spacing: 8px;
}


.flasks {

    font-size: 65px;

    letter-spacing: 15px;
}


.question {

    position: absolute;

    top: 20px;
    right: 30px;

    font-size: 55px;

    font-weight: 700;

    color: white;
}



/* =========================
   CARD CONTENT
========================= */

.card-content {

    padding: 20px 12px 0;
}


.meta {

    display: flex;

    justify-content: space-between;

    gap: 10px;

    margin-bottom: 10px;

    font-size: 9px;

    color: #6793bc;

    font-weight: 700;

    letter-spacing: 1px;
}


.card h3 {

    font-size: 20px;

    line-height: 1.2;

    letter-spacing: -.3px;

    margin-bottom: 12px;
}


.card p {

    color: #7b7b7b;

    font-size: 12px;

    line-height: 1.45;

    min-height: 52px;
}



/* =========================
   CARD AUTHOR
========================= */

.card-author {

    display: flex;

    align-items: center;

    gap: 10px;

    margin-top: 17px;
}


.small-avatar {

    width: 37px;
    height: 37px;

    border-radius: 50%;

    display: flex;

    justify-content: center;
    align-items: center;

    background: #e6f0e9;

    font-size: 19px;
}


.card-author strong {

    display: block;

    font-size: 12px;
}


.card-author small {

    display: block;

    margin-top: 2px;

    font-size: 10px;

    color: #888;
}



/* =========================
   HOVER
========================= */

.card {

    cursor: pointer;

    transition:
        transform .3s ease;
}


.card:hover {

    transform: translateY(-6px);
}


.card-image {

    transition:
        box-shadow .3s ease,
        transform .3s ease;
}


.card:hover .card-image {

    box-shadow:
        0 15px 35px rgba(0,0,0,.10);
}



/* =========================
   TABLET
========================= */

@media (max-width: 1000px) {

    .top {

        padding: 0 22px;
    }


    .brand-name {

        display: none;
    }


    .index-1 {

        margin-left: 35px;
    }


    .about-1,
    .faq-1,
    .story-1 {

        margin-left: 22px;
    }


    .involve-1 {

        margin-left: 25px;
    }


    .donate-1 {

        margin-left: 20px;
    }


    .signin-button {

        display: none;
    }


    .featured-visual {

        height: 450px;
    }


    .featured-title {

        width: 90%;
    }


    .featured-info {

        gap: 40px;

        padding-left: 20px;
        padding-right: 20px;
    }


    .featured-heading h2 {

        font-size: 31px;
    }


    .articles {

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 50px 25px;
    }

}



/* =========================
   PHONE
========================= */

@media (max-width: 700px) {

    .top {

        height: 68px;

        padding: 0 15px;
    }


    .fox {

        width: 37px;
        height: 37px;
    }


    .index-1 {

        margin-left: auto;

        font-size: 11px;
    }


    .about-1,
    .faq-1,
    .story-1,
    .involve-1,
    .donate-1 {

        display: none;
    }


    .signup-button {

        margin-left: 10px;

        padding: 9px 15px;

        font-size: 11px;
    }


    .blog {

        width: 92%;

        padding-top: 95px;
    }


    .featured {

        margin-bottom: 60px;
    }


    .featured-visual {

        height: 430px;

        border-radius: 22px;
    }


    .featured-title h1 {

        font-size: 43px;

        letter-spacing: -2px;
    }


    .featured-title p {

        font-size: 14px;
    }


    .floating-avatar {

        width: 43px;
        height: 43px;

        font-size: 20px;
    }


    .avatar-one {

        left: 20px;
        top: 25px;
    }


    .avatar-two {

        right: 20px;
        top: 100px;
    }


    .avatar-three {

        right: 35px;
        bottom: 85px;
    }


    .avatar-four {

        left: 25px;
        bottom: 75px;
    }


    .featured-tags {

        left: 18px;
        bottom: 18px;
    }


    .featured-tags span {

        font-size: 8px;

        padding: 7px 9px;
    }


    .article-button {

        right: 18px;
        bottom: 18px;

        padding: 12px 15px;

        font-size: 11px;
    }


    .featured-info {

        display: block;

        padding: 30px 5px 0;
    }


    .featured-heading h2 {

        font-size: 29px;

        margin-bottom: 25px;
    }


    .featured-description {

        font-size: 13px;
    }


    .articles {

        grid-template-columns: 1fr;

        row-gap: 45px;
    }


    .card-image {

        height: 200px;
    }


    .card h3 {

        font-size: 21px;
    }


    .card p {

        font-size: 13px;
    }

}



/* =========================
   SMALL PHONE
========================= */

@media (max-width: 430px) {

    .index-1 {

        font-size: 10px;
    }


    .signup-button {

        padding: 8px 12px;
    }


    .featured-visual {

        height: 390px;
    }


    .featured-title h1 {

        font-size: 36px;
    }


    .featured-title p {

        font-size: 12px;
    }


    .featured-info {

        padding-top: 25px;
    }


    .featured-heading h2 {

        font-size: 26px;
    }

}
.footer-nav {
    min-height:
        75px;
    padding:
        0 6%;
    display:
        flex;
    align-items:
        center;
    gap:
        25px;
    background:
        rgba(255, 249, 242, .92);
    border-top:
        1px solid
        rgba(23, 50, 77, .08);
    border-bottom:
        1px solid
        rgba(23, 50, 77, .08);
    backdrop-filter:
        blur(12px);
    -webkit-backdrop-filter:
        blur(12px);
    position:
        relative;
    z-index:
        10;
}
.footer-brand {
    display:
        flex;
    align-items:
        center;
    gap:
        8px;
    margin-right:
        auto;
    color:
        #39A6A3;
    text-decoration:
        none;
    font-size:
        20px;
    font-weight:
        700;
}
.footer-brand img {
    width:
        34px;
    height:
        34px;
    border-radius:
        50%;
}
.footer-links {
    display:
        flex;
    align-items:
        center;
    gap:
        25px;
}
.footer-links a,
.footer-signin {
    color:
        #17324D;
    text-decoration:
        none;
    font-size:
        11px;
    font-weight:
        700;
    transition:
        color .25s ease,
        transform .25s ease;
}
.footer-links a:hover,
.footer-signin:hover {
    color:
        #39A6A3;
    transform:
        translateY(-2px);
}
.footer-donate {
    padding:
        9px 17px;
    border:
        2px solid
        #000;
    border-radius:
        30px;
}
.footer-signup {
    padding:
        10px 18px;
    border-radius:
        30px;
    background:
        #2fcaa3;
    color:
        #17324D;
    text-decoration:
        none;
    font-size:
        11px;
    font-weight:
        800;
    transition:
        transform .25s ease,
        box-shadow .25s ease;
}
.footer-signup:hover {
    transform:
        translateY(-3px);
    box-shadow:
        0 8px 20px
        rgba(47, 202, 163, .25);
}
.theme-button {
    width:
        35px;
    height:
        35px;
    border:
        none;
    background:
        transparent;
    color:
        #17324D;
    font-size:
        19px;
    cursor:
        pointer;
}
.learnivia-footer {
    width:
        100%;
    padding:
        55px 8%
        35px;
    background:#17324D;
    color:
        #FFF9F2;
    min-height:
        500px;
}
.footer-top {
    display:
        flex;
    align-items:
        center;
    justify-content:
        space-between;
    max-width:
        1330px;
    margin:
        0 auto 70px;
}
.footer-logo {
    display:
        flex;
    align-items:
        center;
    gap:
        10px;
    color:
        #FFF9F2;
    text-decoration:
        none;
    font-size:
        26px;
    font-weight:
        700;
}
.footer-logo img {
    width:
        45px;
    height:
        45px;
    border-radius:
        50%;
    background:
        rgba(255,255,255,.15);
}
.social-links {
    display:
        flex;
    align-items:
        center;
    gap:
        22px;
}
.social-links a {
    width:
        28px;
    height:
        28px;
    display:
        flex;
    align-items:
        center;
    justify-content:
        center;
    color:
        #FFF9F2;
    text-decoration:
        none;
    font-size:
        17px;
    font-weight:
        700;
    opacity:
        .9;
    transition:
        transform .25s ease,
        opacity .25s ease;
}
.social-links a:hover {
    transform:
        translateY(-4px);
    opacity:
        1;
}
.footer-columns {
    max-width:
        1330px;
    margin:
        0 auto;
    display:
        grid;
    grid-template-columns:
        repeat(4, 1fr);
    gap:
        80px;
}
.footer-column {
    display:
        flex;
    flex-direction:
        column;
    align-items:
        flex-start;
}
.footer-column-title {
    margin-bottom:
        25px;
    font-size:
        9px;
    font-weight:
        800;
    letter-spacing:
        1.5px;
    color:
        rgba(255,249,242,.72);
}
.footer-column a {
    margin-bottom:
        17px;
    color:
        #FFF9F2;
    text-decoration:
        none;
    font-size:
        14px;
    font-weight:
        600;
    transition:
        transform .25s ease,
        opacity .25s ease;
}
.footer-column a:hover {
    transform:
        translateX(5px);
    opacity:
        .75;
}
.footer-bottom {
    max-width:
        1330px;
    margin:
        65px auto 0;
    padding-top:
        20px;
    border-top:
        1px solid
        rgba(255,255,255,.2);
    display:
        flex;
    justify-content:
        space-between;
    color:
        rgba(255,249,242,.7);
    font-size:
        11px;
    font-weight:
        600;
}
@media (max-width: 1100px) {
    .blog-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }
    .faq-inner {
        grid-template-columns:
            1fr;
        gap:
            40px;
    }
    .faq-heading p {
        max-width:
            500px;
    }
    .footer-links {
        gap:
            15px;
    }
    .footer-columns {
        gap:
            40px;
    }
}
@media (max-width: 800px) {
    .blog-header {
        align-items:
            flex-start;
        flex-direction:
            column;
        gap:
            25px;
    }
    .blog-header h2 {
        font-size:
            45px;
    }
    .footer-nav {
        flex-wrap:
            wrap;
        padding:
            20px;
    }
    .footer-brand {
        width:
            100%;
    }
    .footer-links {
        flex-wrap:
            wrap;
    }
    .footer-columns {
        grid-template-columns:
            repeat(2, 1fr);
    }
    .footer-top {
        flex-direction:
            column;
        align-items:
            flex-start;
        gap:
            30px;
    }
}
@media (max-width: 550px) {
    .learnivia-blog {
        padding:
            80px 20px;
    }
    .blog-grid {
        grid-template-columns:
            1fr;
    }
    .blog-image {
        height:
            200px;
    }
    .learnivia-faq {
        padding:
            75px 20px;
    }
    .faq-heading h2 {
        font-size:
            45px;
    }
    .faq-question {
        font-size:
            14px;
    }
    .footer-columns {
        grid-template-columns:
            1fr;
    }
    .footer-bottom {
        flex-direction:
            column;
        gap:
            10px;
    }
    .learnivia-footer {
        padding:
            45px 25px 30px;
    }
}
@media (max-width: 1200px) {
    .index-1 {
        margin-left: 300px;
    }
    .about-1 {
        margin-left: 440px;
    }
    .faq-1 {
        margin-left: 490px;
    }
    .story-1 {
        margin-left: 540px;
    }
    .involve-1 {
        margin-left: 590px;
    }
    .donate-1 {
        margin-left: 705px;
    }
    .stories-container {
        grid-template-columns:
            repeat(3, 1fr);
        gap: 20px;
    }
}
@media (max-width: 900px) {
    .top {
        padding:
            0 20px;
        gap: 15px;
    }
    .brand-name {
        font-size: 24px;
    }
    .fox {
        width: 45px;
        height: 45px;
    }
    .index-1,
    .about-1,
    .faq-1,
    .story-1,
    .involve-1,
    .donate-1 {
        position: static;
        margin-left: 0;
    }
    .stories-container {
        grid-template-columns:
            1fr;
        max-width: 500px;
    }
    .space {
        padding:
            100px 8%;
    }
    .creator {
        margin-left: 8%;
        margin-right: 8%;
    }
}
@media (max-width: 768px) {
    .space .bga-05__terrain,
    .space .bga-05__ridge {
        inset:
            -100%;
    }
    .front_text {
        font-size: 65px;
        word-spacing: 100px;
    }
    .front_text2 {
        font-size: 38px;
    }
}
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior:
            auto;
    }
    *,
    *::before,
    *::after {
        animation-duration:
            .01ms !important;
        animation-iteration-count:
            1 !important;
        transition-duration:
            .01ms !important;
    }
    .space .bga-05__terrain,
    .space .bga-05__ridge {
        filter:
            none;
        opacity:
            .4;
    }
}
@media (max-width: 650px) {
    .top {
        height: 65px;
        padding:
            0 15px;
        gap: 8px;
    }
    .fox {
        width: 40px;
        height: 40px;
    }
    .brand-name {
        font-size: 20px;
    }
    .index-1,
    .about-1,
    .faq-1,
    .story-1,
    .involve-1,
    .donate-1 {
        display:
            none;
    }
    .signin-button {
        padding:
            8px 12px;
        font-size:
            13px;
    }
    .signup-button {
        height:
            38px;
        min-width:
            75px;
        padding:
            0 12px;
        font-size:
            12px;
    }
    .space {
        min-height:
            500px;
        margin-top:
            65px;
        padding:
            80px 7%;
        border-radius:
            0 0 20px 20px;
    }
    .front {
        width:
            100%;
        margin-top:
            80px;
    }
    .front_text {
        font-size:
            52px;
        word-spacing:
            normal;
        letter-spacing:
            -2px;
    }
    .front_text2 {
        font-size:
            32px;
        margin-top:
            30px;
    }
    .front2 {
        width:
            100%;
        margin-left:
            0;
        margin-top:
            20px;
    }
    .start-learning-button {
        width:
            calc(100% - 20px);
    }
    .for-parents,
    .for-educator {
        width:
            42%;
        font-size:
            11px;
    }
    .for-parents {
        margin-left:
            0;
    }
    .for-educator {
        margin-left:
            46%;
    }
    .creator {
        height:
            650px;
        margin:
            80px 20px;
        padding:
            35px;
    }
    .testimonial-line {
        display:
            none;
    }
    .testimonial-text {
        position:
            relative;
        top:
            auto;
        left:
            auto;
        margin:
            50px 20px;
    }
    .testimonial-author {
        position:
            relative;
        top:
            auto;
        left:
            auto;
        margin-left:
            20px;
    }
    .How-text {
        font-size:
            32px;
    }
    .How-text2 {
        font-size:
            17px;
        padding:
            0 25px;
    }
    .stories-container {
        margin:
            50px 20px 200px;
        padding:
            0;
        grid-template-columns:
            1fr;
    }
}

/* =====================================================
   DROPDOWN PANELS
   ===================================================== */

.explore-menu-content {
    display: block;
}

.dropdown-panel {
    display: none;
    width: 100%;
}

.dropdown-panel.active {
    display: block;
}

.get-involved-menu {
    display: contents;
}

.explore-menu-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    width: 100%;
}

.get-involved-panel .explore-item {
    min-height: 150px;
}

/* =====================================================
   DROPDOWN ITEMS — VERTICAL, NO BACKGROUND, PAGE LINKS
   ===================================================== */

.explore-menu-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
}

.explore-item {
    display: block;
    width: 100%;
    padding: 18px 0;
    margin: 0;
    background: transparent !important;
    border: none;
    border-radius: 0;
    box-shadow: none !important;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    color: #17324D;
    text-decoration: none;
    cursor: pointer;
    transition:
        transform .25s ease,
        color .25s ease;
}

.explore-item:hover {
    background: transparent !important;
    box-shadow: none !important;
    transform: translateX(8px);
}

.explore-item h3 {
    margin: 0 0 7px;
    color: #17324D;
    font-size: 20px;
    font-weight: 600;
}

.explore-item p {
    margin: 0;
    max-width: 650px;
    color: #526A7A;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
}

.explore-item:focus-visible {
    outline: 3px solid rgba(57, 166, 163, .35);
    outline-offset: 6px;
    border-radius: 4px;
}

.get-involved-panel .explore-item {
    min-height: 0;
}

@media (max-width: 650px) {
    .explore-menu {
        top: 65px;
        height: calc(100vh - 65px);
    }

    .explore-menu-content {
        padding: 35px 7%;
    }

    .explore-menu-list {
        gap: 0;
    }

    .explore-item {
        padding: 15px 0;
    }
}



.learnivia-team{
    height:35px;
}