* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Quicksand", sans-serif;
    color: #000;
    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;
    background: rgba(255,249,242,.856);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(23,50,77,.09);
    box-shadow: 0 8px 25px rgba(23,50,77,.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;
    text-decoration: none;
    transition: transform .3s ease;
}

.brand:link,
.brand:visited,
.brand:hover,
.brand:active {
    text-decoration: none;
}

.brand:hover {
    transform: translateY(-2px);
}

.brand-name {
    font-size: 30px;
    font-weight: 600;
    color: #17324D;
    text-decoration: none;
}

.fox {
    width: 55px;
    height: 55px;
    object-fit: cover;
    background: none;
    transition: transform .3s ease, box-shadow .3s ease;
}

.brand:hover .fox {
    transform: rotate(-4deg) scale(1.04);
}

.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;
    padding: 9px 21px;
    border: 3px solid #17324D;
    border-radius: 35px;
}

.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: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,.82);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(23,50,77,.07);
    border-bottom: 1px solid rgba(23,50,77,.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-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;
}

.dropdown-panel {
    display: none;
    width: 100%;
}

.dropdown-panel.active {
    display: block;
}

.get-involved-menu {
    display: contents;
}

.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;
    font-size: 20px;
    font-weight: 600;
    color: #17324D;
}

.explore-item p {
    margin: 0;
    max-width: 650px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    color: #526A7A;
}

.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;
}

.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 {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 45px;
    min-width: 100px;
    padding: 0 22px;
    border: none;
    border-radius: 35px;
    background: #17324D;
    color: #FFF9F2;
    font-family: "Quicksand", sans-serif;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    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);
}

.tutor-hero {
    position: relative;
    min-height: 600px;
    margin-top: 75px;
    padding-top: 75px;
    background: #2A9183;
}

.tutor-note {
    width: 120px;
    height: 33px;
    margin-left: 150px;
    border: none;
    border-radius: 10px;
    background: #FCFCFC;
    color: #000;
    font-family: "Quicksand", sans-serif;
    font-weight: 700;
    cursor: pointer;
}

.become-a-tutor-text {
    width: 430px;
    margin-top: 20px;
    margin-left: 150px;
    font-size: 80px;
    font-weight: 700;
    line-height: 1;
    color: #FFF9F2;
}

.become-a-tutor-text2 {
    width: 500px;
    margin-top: -155px;
    margin-left: 650px;
    font-size: 22px;
    font-weight: 500;
    line-height: 1.55;
    color: #FFF9F2;
}

.why-tutor {
    width: 100%;
    padding: 80px 0 100px;
    background: #FFF9F2;
}

.why-tutor > h2 {
    margin: 0 0 65px;
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    color: #050505;
}

.why-tutor-grid {
    width: 1050px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 75px;
    row-gap: 75px;
}

.why-tutor-card {
    display: grid;
    grid-template-columns: 105px 1fr;
    column-gap: 25px;
    align-items: start;
}

.why-tutor-icon {
    width: 105px;
    height: 105px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 55px;
    color: #526071;
}

.why-tutor-info h3 {
    margin: 0 0 18px;
    font-size: 22px;
    font-weight: 800;
    line-height: 1.35;
    color: #080808;
}

.why-tutor-info p {
    margin: 0;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.55;
    color: #687384;
}

.how-it-works-tutor {
    position: relative;
    width: 100%;
    margin-top: -900px;
    padding: 80px 30px 100px;
    background: #F7FAF8;
    overflow: hidden;
    font-family: "Quicksand", sans-serif;
}

.how-it-works-tutor::before,
.how-it-works-tutor::after {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    pointer-events: none;
}

.how-it-works-tutor::before {
    top: -260px;
    left: -220px;
    border: 70px solid rgba(42,145,116,.045);
}

.how-it-works-tutor::after {
    right: -300px;
    bottom: -250px;
    border: 65px solid rgba(42,145,116,.045);
}

.how-it-works-tutor > h2 {
    position: relative;
    z-index: 2;
    margin: 0 0 65px;
    text-align: center;
    font-size: 40px;
    line-height: 1.15;
    font-weight: 700;
    color: #102F29;
}

.how-step-tutor {
    position: relative;
    z-index: 2;
    width: min(900px,100%);
    min-height: 150px;
    margin: 0 auto 65px;
    display: grid;
    grid-template-columns: 150px minmax(0,1fr);
    gap: 45px;
    align-items: center;
}

.step-left-tutor {
    transform: translateX(-35px);
}

.step-right-tutor {
    grid-template-columns: minmax(0,1fr) 150px;
    transform: translateX(35px);
}

.how-image-tutor {
    width: 130px;
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.illustration-circle-tutor {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 2px solid #C5E3D7;
    border-radius: 50%;
    background: #E2F2EC;
    font-size: 48px;
    box-shadow: 0 8px 25px rgba(25,95,73,.08);
    transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
}

.how-text-tutor {
    min-width: 0;
    max-width: 570px;
}

.how-text-tutor h3 {
    margin: 0 0 12px;
    font-size: 21px;
    line-height: 1.3;
    font-weight: 700;
    color: #123C32;
}

.how-text-tutor p {
    width: 100%;
    max-width: 570px;
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 500;
    color: #68756F;
}

.step-right-tutor .how-text-tutor {
    text-align: right;
    justify-self: end;
}

.step-left-tutor .how-text-tutor {
    text-align: left;
    justify-self: start;
}

.how-step-tutor:not(:last-child)::after {
    content: "";
    position: absolute;
    bottom: -34px;
    left: 50%;
    width: 45px;
    height: 2px;
    transform: translateX(-50%);
    background: #D8E8E1;
    border-radius: 10px;
}

.how-step-tutor:hover .illustration-circle-tutor {
    transform: translateY(-4px);
    background: #D8EEE5;
    box-shadow: 0 12px 28px rgba(25,95,73,.12);
}

.tutor-testimonial {
    width: 100%;
    padding: 75px 0 85px;
    background: none;
}

.testimonial-content-tutor {
    width: 650px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 105px 1fr;
    gap: 30px;
    align-items: center;
}

.testimonial-avatar-tutor {
    width: 95px;
    height: 95px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 5px solid #3D8DF5;
    border-radius: 50%;
    background: #3D8DF5;
    font-size: 48px;
}

.stars-tutor {
    margin-bottom: 12px;
    color: #E6B800;
    font-size: 18px;
    letter-spacing: 3px;
}

.testimonial-text-tutor {
    margin: 0;
    font-size: 14px;
    line-height: 1.55;
    font-weight: 500;
    color: #202020;
}

.testimonial-bottom-tutor {
    margin-top: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.testimonial-bottom-tutor strong {
    font-size: 16px;
    color: #111;
}

.testimonial-bottom-tutor span {
    font-size: 12px;
    color: #555;
}

.learnivia-faq {
    padding: 100px 8% 120px;
    background: none;
    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-size: 55px;
    font-weight: 600;
    letter-spacing: -2px;
    color: #17324D;
}

.faq-heading p {
    max-width: 260px;
    margin-top: 20px;
    font-size: 15px;
    line-height: 1.6;
    font-weight: 500;
    color: #647582;
}

.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: #17324D;
    font-family: "Quicksand", sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
}

.faq-question:hover {
    color: #39A6A3;
}

.faq-plus {
    font-size: 27px;
    font-weight: 400;
    line-height: 1;
    transition: transform .35s ease, color .25s ease;
}

.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;
    max-width: 700px;
    margin: 0;
    padding: 0;
    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;
}

.learnivia-footer {
    width: 100%;
    min-height: 500px;
    margin-top: -2000px;
    padding: 55px 8% 35px;
    background: #17324D;
    color: #FFF9F2;
}

.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;
    display: flex;
    justify-content: space-between;
    border-top: 1px solid rgba(255,255,255,.2);
    color: rgba(255,249,242,.7);
    font-size: 11px;
    font-weight: 600;
}

.footer {
    margin-top: 2000px;
}

@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: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: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;
    }

    .why-tutor-grid {
        width: calc(100% - 60px);
    }

    .how-it-works-tutor {
        padding: 65px 30px 80px;
    }

    .how-it-works-tutor > h2 {
        font-size: 34px;
        margin-bottom: 55px;
    }

    .how-step-tutor {
        width: min(720px,100%);
        grid-template-columns: 120px minmax(0,1fr);
        gap: 30px;
        margin-bottom: 55px;
        transform: none;
    }

    .step-right-tutor {
        grid-template-columns: minmax(0,1fr) 120px;
        transform: none;
    }

    .how-image-tutor {
        width: 105px;
        height: 105px;
    }

    .illustration-circle-tutor {
        width: 100px;
        height: 100px;
        font-size: 40px;
    }

    .how-text-tutor h3 {
        font-size: 19px;
    }

    .how-text-tutor p {
        font-size: 15px;
        line-height: 1.5;
    }

    .testimonial-content-tutor {
        width: min(650px,calc(100% - 50px));
    }

    .stories-container {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .space {
        padding: 100px 8%;
    }

    .creator {
        margin-left: 8%;
        margin-right: 8%;
    }

    .blog-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 25px;
    }

    .blog-header h2 {
        font-size: 45px;
    }

    .footer-columns {
        gap: 40px;
    }
}

@media (max-width:800px) {
    .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: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 (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 {
        margin-top: 30px;
        font-size: 32px;
    }

    .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 {
        padding: 0 25px;
        font-size: 17px;
    }

    .stories-container {
        margin: 50px 20px 200px;
        padding: 0;
        grid-template-columns: 1fr;
    }

    .explore-menu {
        top: 65px;
        height: calc(100vh - 65px);
    }

    .explore-menu-content {
        padding: 35px 7%;
    }

    .explore-item {
        padding: 15px 0;
    }

    .why-tutor {
        padding: 60px 20px 75px;
    }

    .why-tutor > h2 {
        font-size: 32px;
        margin-bottom: 45px;
    }

    .why-tutor-grid {
        width: 100%;
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .tutor-hero {
        min-height: auto;
        padding: 70px 25px;
    }

    .tutor-note {
        margin-left: 0;
    }

    .become-a-tutor-text {
        width: 100%;
        margin-left: 0;
        font-size: 55px;
    }

    .become-a-tutor-text2 {
        width: 100%;
        margin: 30px 0 0;
        font-size: 18px;
    }

    .how-it-works-tutor {
        padding: 50px 22px 65px;
    }

    .how-it-works-tutor > h2 {
        font-size: 29px;
        margin-bottom: 45px;
    }

    .how-step-tutor,
    .step-right-tutor {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 16px;
        margin-bottom: 55px;
        transform: none;
        text-align: center;
    }

    .step-left-tutor .how-image-tutor,
    .step-right-tutor .how-image-tutor {
        order: 1;
    }

    .step-left-tutor .how-text-tutor,
    .step-right-tutor .how-text-tutor {
        order: 2;
        width: 100%;
        text-align: center;
        justify-self: center;
    }

    .how-image-tutor {
        width: 95px;
        height: 95px;
    }

    .illustration-circle-tutor {
        width: 90px;
        height: 90px;
        font-size: 36px;
    }

    .how-text-tutor {
        max-width: 340px;
    }

    .how-text-tutor h3 {
        margin-bottom: 9px;
        font-size: 18px;
    }

    .how-text-tutor p {
        max-width: 340px;
        font-size: 14px;
        line-height: 1.5;
    }

    .how-step-tutor:not(:last-child)::after {
        bottom: -28px;
        width: 35px;
    }

    .testimonial-content-tutor {
        grid-template-columns: 1fr;
        width: calc(100% - 40px);
        text-align: center;
    }

    .testimonial-avatar-tutor {
        margin: 0 auto;
    }

    .testimonial-bottom-tutor {
        flex-direction: column;
        gap: 8px;
    }

    .learnivia-faq {
        padding: 75px 20px;
    }

    .faq-heading h2 {
        font-size: 45px;
    }

    .faq-question {
        font-size: 14px;
    }

    .learnivia-footer {
        padding: 45px 25px 30px;
    }

    .footer-columns {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width:600px) {
    .how-it-works-tutor {
        padding: 50px 22px 65px;
    }
}

@media (max-width:550px) {
    .learnivia-blog {
        padding: 80px 20px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-image {
        height: 200px;
    }
}

@media (max-width:380px) {
    .how-it-works-tutor {
        padding-left: 18px;
        padding-right: 18px;
    }

    .how-it-works-tutor > h2 {
        font-size: 26px;
    }

    .how-text-tutor h3 {
        font-size: 17px;
    }

    .how-text-tutor p {
        font-size: 13px;
    }

    .illustration-circle-tutor {
        width: 82px;
        height: 82px;
        font-size: 32px;
    }
}

@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;
    }
}

.confidence-fox{
height:150px;
}