.topSection {
    position: relative;

    width: 100%;
    height: auto;

    margin-top: 200px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.topBlob {
    position: relative;

    width: 50%;

    margin-top: 100px;

    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
}

.quoteArea {
    position: relative;
    width: 100%;
    height: auto;

    margin-bottom: 100px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center ;
}

.quoteText {
    position: relative;

    font-family: "Outfit";
    font-weight: 400;
    font-size: 20px;
    color: var(--primary);
}

.quoteSubtext {
    position: relative;

    margin-top: 10px;

    font-family: "Outfit";
    font-weight: 400;
    font-size: 14px;
    color: var(--on-surface);
}

.subText_area {
    position: relative;

    width: 100%;
    height: auto;

    display: flex;
    align-items: start;
    justify-content: start;
}

.subText_left {
    position: relative;

    width: 49%;
    height: auto;
}

.subText_right {
    position: relative;

    margin-left: 2%;

    width: 49%;
    height: auto;
}

.subText {
    position: relative;

    margin-top: -10px;

    font-family: "Outfit";
    font-weight: 400;
    font-size: 16px;
    color: var(--on-surface);

    line-height: 20px;
}

.navBlobs {
    position: relative;

    margin-top: 200px;

    width: 100%;
    height: auto;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.navArea {
    position: relative;

    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
    justify-content: center;
}

.navBlob {
    position: relative;

    width: 600px;
    height: 250px;

    background-color: var(--container);
    border-radius: 20px;

    overflow: hidden;

    transition: all var(--expressive-fast-effects);
}

.navTitle {
    position: absolute;

    bottom: 20px;
    left: 20px;

    font-family: "Outfit";
    font-weight: 400;
    font-size: 30px;
    color: var(--on-surface);

    z-index: 3;

    transition: all var(--expressive-fast-effects);
}

.navSubtitle {
    position: absolute;

    bottom: 0px;
    left: 20px;

    font-family: "Outfit";
    font-weight: 400;
    font-size: 15px;
    color: var(--on-surface);

    opacity: 0;

    z-index: 3;

    transition: all var(--expressive-fast-effects);
}

.navOverlay {
    position: absolute;

    top: 0px;
    left: 0px;

    width: 100%;
    height: 100%;

    z-index: 2;

    transition: all var(--expressive-fast-effects);
}

.navIMG {
    position: relative;

    width: 100%;
    height: auto;
    opacity: 0.8;

    transition: all var(--expressive-fast-effects);
}

.navBlob:hover {
    background-color: var(--container-lowest);
    cursor: pointer;
}

.navBlob:hover .navTitle {
    bottom: 40px;
}

.navBlob:hover .navSubtitle {
    bottom: 20px;
    opacity: 1;
}

.navBlob:hover .navOverlay {
    backdrop-filter: blur(20px);
}

.navBlob:hover .navIMG {
    opacity: 0.5;
}

@media (max-width: 768px) {

    .topSection {
        margin-top: 0px;
    }

    .topBlob {
        width: 75%;
    }

    .subText_area {
        position: relative;

        width: 100%;
        height: auto;

        display: flex;
        flex-direction: column;
        align-items: start;
        justify-content: start;
    }

    .subText_left {
        width: 100%;
    }

    .subText_right {
        width: 100%;

        margin-top: 30px;
        margin-left: 0px;
    }

    .subText {
        text-align: justify;
        hyphens: auto;
    }

    .navBlobs {
        margin-top: 100px;
    }

    .navArea {
        position: relative;

        display: flex;
        flex-direction: column;
        gap: 20px;
        align-items: center;
        justify-content: center;
    }

    .navBlob {
        position: relative;

        width: 400px;
        height: 165px;

        border-radius: 10px;
    }

    .navTitle {
        bottom: 20px;
        left: 20px;

        font-size: 20px;
    }

    .navSubtitle {
        display: none;
    }

    .navOverlay {
        display: none;
    }

    .navBlob:hover {
        background-color: var(--container);
        cursor: pointer;
    }

    .navBlob:hover .navIMG {
        opacity: 1;
    }

    .navBlob:hover .navTitle {
        bottom: 20px;
    }
}