
.page {
    min-height: 100vh;
    background: #f7eee3;
    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.97);

    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 {
    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;

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}
.brand:hover .fox {
    transform:
        rotate(-4deg)
        scale(1.04);
  
}
.brand-name {
    font-family:
        "Quicksand",
        sans-serif;
    font-size: 30px;
    font-weight: 600;
    color: #17324D;
}
.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 {
    padding: 25px;
    background:
        rgba(255, 249, 242, .45);
    border:
        1px solid rgba(23, 50, 77, .07);
    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;
}







.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:
        rgba(255, 249, 242, .45);
    border:
        1px solid rgba(23, 50, 77, .07);
    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);
}

.hero{
  background-color:aquamarine;
  height: 500px;
    margin-top: 75px;
}
.hero-text1{
  font-size: 90px;
  width:650px;
  margin-left:550px;
  font-weight:bold;
  margin-top:70px;
  display:inline-block;
}

.hero-text2{
  font-size: 20px;
  width:500px;
  margin-left: 550px;
  font-weight:bold;
  margin-bottom:-300px;
  display:absolute;
}
.globe-fox{
    height:350px;
    margin-left:75px;
    margin-top:50px;
}

.diplome {
    position: absolute;
    height: 120px;
    width: 160px;
    top: -40px;
    right: -60px;
    z-index: 10;
    filter:
        drop-shadow(
            5px -5px 5px
            rgba(23, 50, 77, .25)
        );
}
.creator {
    position: relative;
    overflow: visible;
    height: 380px;
    margin:
        150px
        200px
        80px;
    border-radius: 25px;
    background:
        radial-gradient(
            circle at 90% 15%,
            rgba(57, 166, 163, .14),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            rgba(255, 249, 242, .98),
            rgba(221, 252, 233, .95)
        );
    border:
        1px solid rgba(23, 50, 77, .06);
    box-shadow:
        0 20px 55px rgba(23, 50, 77, .11);
    isolation: isolate;
    transition:
        transform .4s ease,
        box-shadow .4s ease;
}
.creator-profil{
    display:absolute;
    height:70px;
    width:70px;
    border-radius:400px;
    margin-left:-160px;
    margin-bottom:-25px
}
.creator_text {
    margin-left: 200px;
    margin-top:70px; 
       font-size:23px;
       
}

.creator-text2-1{
    color:rgb(67, 184, 145)
}
.creator_text2,
.creator_text3 {
    margin-left: 150px;
    margin-top:0px; 
       font-size:18px;
}
.testimonial-line {
    width: 1px;
    height: 175px;
    background:
        rgba(23, 50, 77, .20);
    margin-left: 450px;
    position: absolute;
    top: 70px;
}
.testimonial-text {
    font-family:
        "Quicksand",
        sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.45;
    color:
        #17324D;
    position: absolute;
    top: 75px;
    left: 500px;
    max-width: 420px;
}
.testimonial-author {
    font-family:
        "Quicksand",
        sans-serif;
    position: absolute;
    top: 190px;
    left: 745px;
    font-size: 18px;
    font-weight: 700;
    color:
        #17324D;
}
.testimonial-publication {
    position: absolute;
    top: 337px;
    right: 795px;
    font-family:
        "Quicksand",
        sans-serif;
    font-size: 20px;
    font-weight: 600;
    color:
        rgba(23, 50, 77, .30);
}







.values-area{
  margin-top:1000px;
  height:800px;
  border-top: 0.01px solid rgb(197, 197, 197);
}

.values-text{
  text-align:center;
  font-size:70px;
  margin-top:50px;
  font-weight:bold
}

.values-text2{
  text-align:center;
  color:gray;
  margin-top:50px;
  margin-left:350px;
  font-weight:bold;
  width:650px;
}

.icon1{
  font-size:100px;
  display:absolute;
  margin-top:60px;
  margin-left:205px;
}
.icon2{
  font-size:100px;
  display:absolute;
  margin-top: -125px;
  margin-left:500px;
}
.icon3{
  font-size:100px;
  display:absolute;
  margin-top: -130px;
  margin-left:750px;
}
.icon4{
  font-size:100px;
  display:absolute;
  margin-top: -135px;
  margin-left:1000px;
}

.values-icon-text1{
  font-size:20px;
  margin-left:170px;
  display:inline-block;
 
}
.why{
   background: #271405;
   height:800px;
   margin-top:-200px
}



.peer {
    border-bottom:
        .5px solid #B8C8D2;
    height: 500px;
    position: relative;
    margin-top:50px;
}
.book-a2 {
    position: absolute;
    height: 150px;
    width: 150px;
    margin-top: 130px;
    margin-left: 6px;
    background:
        transparent;
      
}
.google-meet {
    margin-left: 40px;
    margin-top: 28px;
    height: 378px;
    width:650px;
}
.the-video {
    background:
        black;
    border-radius: 20px;
    height: 430px;
    width: 730px;
    margin-left: 149px;
    box-shadow:
        0 20px 45px rgba(23, 50, 77, .16);
}
.the-text {
    background:
        transparent;
    display: block;
    margin-bottom: 150px;
    margin-top: -500px;
    margin-left: 0px;
    height: 400px;
    width: 340px;
      padding-bottom: 60px;
}
.peer-text {
    font-family:
        "Quicksand",
        sans-serif;
    font-size: 40px;
    font-weight: 600;
    color:
        #17324D;
         margin-top: -40px;
      
         
}
.something-text {
    font-family:
        "Quicksand",
        sans-serif;
    font-size: 18px;
    font-weight: 400;
    color:
        #526A7A;
    line-height: 1.6;
}
.join-bootcamp{
        border: none;
    margin-top: px;
    margin-bottom: 6px;
    margin-left: 10px;
    height: 45px;
    width: 300px;
    border-radius: 35px;
    background:
        #17324D;
    color:
        #FFF9F2;
    font-family:
        "Quicksand",
        sans-serif;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    position: absolute;
    box-shadow:
        0 10px 22px rgba(23, 50, 77, .15);
    transition:
        transform .3s ease,
        box-shadow .3s ease,
        background .3s ease;
}
.join-bootcamp:hover {
    transform:
        translateY(-4px)
        scale(1.01);
    background:
        #39A6A3;
    box-shadow:
        0 14px 30px rgba(57, 166, 163, .25);
}


.why2{
   background: transparent;
   height:900px;
   margin-top:-200px
}


.learnivia-blog {
    margin-top: 500px;
    width: 1526px;
    margin-left: -90px;
    padding:
        125px 8%
        110px;
    background:
        transparent;
    color:
        #17324D;
}
.blog-header {
    max-width: 1330px;
    margin:
        0 auto 45px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}
.section-eyebrow {
    display: block;
    margin-bottom: 12px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color:
        #39A6A3;
}
.blog-header h2 {
    font-family:
        "Quicksand",
        sans-serif;
    font-size: 58px;
    line-height: 1;
    font-weight: 600;
    letter-spacing: -2px;
    color:
        #17324D;
}
.see-all-news {
    display: flex;
    align-items: center;
    gap: 10px;
    padding:
        13px 20px;
    border-radius:
        30px;
    background:
        #f4f7f4;
    color:
        #17324D;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    transition:
        transform .3s ease,
        background .3s ease,
        color .3s ease;
}
.see-all-news span {
    font-size: 15px;
    transition:
        transform .3s ease;
}
.see-all-news:hover {
    transform:
        translateY(-3px);
    background:
        #2fcaa3;
    color:
        #FFF9F2;
}
.see-all-news:hover span {
    transform:
        translate(3px, -3px);
}
.blog-grid {
    width: 100%;
    max-width: 1330px;
    margin:
        0 auto;
    display: grid;
    grid-template-columns:
        repeat(4, 1fr);
    gap: 25px;
}
.blog-card {
    min-width: 0;
    color:
        #17324D;
}
.blog-card h3 {
    margin:
        12px 12px 12px;
    font-size: 17px;
    line-height: 1.35;
    font-weight: 700;
    color:
        #17324D;
}
.blog-card > p {
    margin:
        0 12px;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 500;
    color:
        #647582;
}
.blog-image {
    display: block;
    width: 100%;
    height: 170px;
    border-radius:
        18px;
    overflow: hidden;
    text-decoration: none;
    box-shadow:
        0 8px 22px
        rgba(23, 50, 77, .08);
    transition:
        transform .4s
        cubic-bezier(.22, 1, .36, 1),
        box-shadow .4s ease;
}
.blog-image:hover {
    transform:
        translateY(-6px)
        scale(1.015);
    box-shadow:
        0 18px 35px
        rgba(23, 50, 77, .13);
}
.blog-image-content {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
}
.blog-green {
    background:
        linear-gradient(
            145deg,
            #0f4c42,
            #17324D
        );
    color:
        #FFF9F2;
}
.blog-green::before,
.blog-green::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    border:
        1px solid
        rgba(47, 202, 163, .2);
}
.blog-green::before {
    width: 230px;
    height: 230px;
    top: -160px;
    left: -70px;
}
.blog-green::after {
    width: 180px;
    height: 180px;
    bottom: -120px;
    right: -50px;
}
.blog-green strong {
    position: relative;
    z-index: 2;
    font-size: 23px;
    line-height: 1.05;
}
.blog-green 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;
}
.blog-teal {
    background:
        linear-gradient(
            145deg,
            #0f685d,
            #16466b
        );
    color:
        #FFF9F2;
}
.blog-teal::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 120px;
    left: -80px;
    bottom: -50px;
    border-radius:
        50%;
    background:
        rgba(47, 202, 163, .12);
}
.blog-teal strong {
    font-size: 25px;
    line-height: 1.05;
}
.mini-spark {
    position: absolute;
    right: 20px;
    top: 15px;
    color:
        #F4C95D;
    font-size: 18px;
}
.blog-sky {
    background:
        #7edcf0;
    justify-content:
        flex-end;
    color:
        #17324D;
}
.blog-sky::before {
    content: "";
    position: absolute;
    width: 130px;
    height: 50px;
    top: 22px;
    left: -20px;
    background:
        rgba(255,255,255,.75);
    border-radius:
        50%;
}
.blog-sky::after {
    content: "";
    position: absolute;
    width: 150px;
    height: 70px;
    top: 8px;
    right: -35px;
    background:
        rgba(255,255,255,.8);
    border-radius:
        50%;
}
.sun {
    position: absolute;
    right: 25px;
    top: 25px;
    font-size: 25px;
    color:
        #F4C95D;
}
.hill {
    position: absolute;
    width: 150%;
    height: 90px;
    bottom: -35px;
    left: -25%;
    border-radius:
        50% 50% 0 0;
    background:
        #6ecb70;
    font-size: 40px;
    padding-top: 5px;
}
.study-title {
    position: relative;
    z-index: 5;
    margin-bottom: 50px;
    font-size: 22px;
    line-height: 1.05;
}
.blog-raspberry {
    background:
        linear-gradient(
            145deg,
            #72234e,
            #AD0062
        );
    color:
        #FFF9F2;
    align-items:
        flex-start;
    padding:
        25px;
}
.blog-raspberry strong {
    font-size: 24px;
    line-height: 1.05;
    margin-top: 45px;
    text-align:
        left;
}
.blog-raspberry small {
    margin-top: 12px;
    font-size: 8px;
    letter-spacing: 1.5px;
    opacity: .75;
}
.big-x {
    position: absolute;
    top: -15px;
    left: 5px;
    font-size: 80px;
    opacity: .15;
    font-weight: 700;
}
.percentage {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 45px;
    opacity: .2;
    font-weight: 700;
}
.blog-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin:
        16px 12px 0;
}
.blog-meta span {
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1px;
    color:
        #39A6A3;
}
.blog-meta time {
    font-size: 10px;
    color:
        #8996A0;
}
.blog-author {
    display: flex;
    align-items: center;
    gap: 10px;
    margin:
        18px 12px 0;
}
.author-avatar {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius:
        50%;
    background:
        #2fcaa3;
    color:
        #17324D;
    font-size: 13px;
    font-weight: 800;
}
.avatar-raspberry {
    background:
        #AD0062;
    color:
        #FFF9F2;
}
.avatar-yellow {
    background:
        #F4C95D;
}
.avatar-blue {
    background:
        #7edcf0;
}
.blog-author div:last-child {
    display: flex;
    flex-direction: column;
}
.blog-author strong {
    font-size: 12px;
    color:
        #17324D;
}
.blog-author span {
    font-size: 10px;
    color:
        #8996A0;
}


.meet {
    font-family:
        "Quicksand",
        sans-serif;
    font-size: 40px;
    text-align: center;
    margin-top: 45px;
    font-weight: 500;
    color:
        #17324D;
    letter-spacing: -1px;
}
.tutor {
    font-family:
        "Quicksand",
        sans-serif;
    font-size: 25px;
    text-align: center;
    margin-top: 44px;
    font-weight: 500;
    color:
        #526A7A;
    line-height: 1.5;
}
.student-video,
.student-video2,
.student-video3 {
    height: 550px;
    background:
        linear-gradient(
            145deg,
            #17324D,
            #214F70
        );
    border-radius: 20px;
    width: 400px;
    margin-top: 34px;
    box-shadow:
        0 18px 38px rgba(23, 50, 77, .14);
    transition:
        transform .4s ease,
        box-shadow .4s ease;
}
.student-video:hover,
.student-video2:hover,
.student-video3:hover {
    transform:
        translateY(-8px);
    box-shadow:
        0 25px 50px rgba(23, 50, 77, .19);
}
.student-video {
    margin-left: 30px;
}
.student-video2 {
    margin-left: 470px;
    margin-top: -550px;
}
.student-video3 {
    margin-left: 900px;
    margin-top: -550px;
}
.learnivia-faq {
    padding:
        100px 8%
        120px;
    background:
        #FFF9F2;
    border-top:
        1px solid
        rgba(23, 50, 77, .12);
}
.faq-inner {
    max-width:
        1000px;
    margin:
        0 auto;
    display: grid;
    grid-template-columns:
        35% 65%;
    gap: 80px;
}
.faq-heading h2 {
    font-family:
        "Quicksand",
        sans-serif;
    font-size:
        55px;
    font-weight:
        600;
    letter-spacing:
        -2px;
    color:
        black;
}
.faq-heading p {
    margin-top:
        20px;
    max-width:
        260px;
    font-size:
        15px;
    line-height:
        1.6;
    font-weight:
        500;
    color:
        black;
        ;
}
.faq-list {
    width:
        100%;
}
.faq-item {
    border-bottom:
        1px solid
        rgba(23, 50, 77, .13);
}
.faq-question {
    width:
        100%;
    min-height:
        58px;
    padding:
        15px 0;
    display:
        flex;
    align-items:
        center;
    justify-content:
        space-between;
    gap:
        20px;
    border:
        none;
    background:
        transparent;
    color:
        black;
        ;
    font-family:
        "Quicksand",
        sans-serif;
    font-size:
        15px;
    font-weight:
        700;
    text-align:
        left;
    cursor:
        pointer;
}
.faq-plus {
    font-size:
        27px;
    font-weight:
        400;
    line-height:
        1;
    transition:
        transform .35s ease,
        color .25s ease;
}
.faq-question:hover {
    color:
        #17324D;
}
.faq-item.active
.faq-plus {
    transform:
        rotate(45deg);
    color:
        #AD0062;
}
.faq-answer {
    display:
        grid;
    grid-template-rows:
        0fr;
    transition:
        grid-template-rows .35s ease;
}
.faq-answer p {
    overflow:
        hidden;
    margin:
        0;
    padding:
        0;
    max-width:
        700px;
    font-size:
        14px;
    line-height:
        1.6;
    color:
        #647582;
}
.faq-item.active
.faq-answer {
    grid-template-rows:
        1fr;
}
.faq-item.active
.faq-answer p {
    padding:
        0 40px 20px 0;
}
.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:
        linear-gradient(
            145deg,
            #269b7c,
            #2fcaa3
        );
    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;
    }
}
.footer{
    margin-top: 2000px;
}