:root {
    --primary-color: #78f1ef;
    --primary-color-2: #78f1ef;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden !important;
}

.funds-container {
    width: 100vw;
    min-height: 100vh;
    position: relative;
}

.home-page-container {
    width: 100vw;
    min-height: 100vh;
    position: relative;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    overflow-x: hidden;
}

/* ! HEADER CONTENTS */

.header-container {
    width: 100%;
    padding: 7px 3%;
    background-color: black;
}

.header-flexbox {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.h-logo {
    width: 200px;
    height: 100px;
}

.h-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.header-menu {
    flex: 0.8;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.h-menu-lists-flexbox {
    display: flex;
    column-gap: 50px;
    align-items: center;
}

.h-menu-list a {
    color: white;
    text-decoration: none;
    font-size: 14px;
}

.h-menu-con {
    cursor: pointer;
}

.h-menu-con button {
    background: transparent;
    border: none;
    font-size: 14px;
    color: white;
    pointer-events: none;
}

.h-menu-con i {
    color: white;
    font-size: 14px;
    margin-left: 7px;
}

.h-funds-contents {
    position: absolute;
    background-color: white;
    color: black;
    padding: 20px 10px;
    border-radius: 20px;
    transition: all 700ms linear;
    box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.h-funds-contents::after {
    content: "";
    width: 30px;
    height: 30px;
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    z-index: 1;
    background-color: white;
}

.h-funds-contents.h-funds-con1 {
    --vis-menu1: hidden;
    --opa-menu1: 0;
    width: 320px;
    top: 1.5%;
    left: 52%;
    opacity: var(--opa-menu1);
    visibility: var(--vis-menu1);
}

.h-funds-flexbox-col {
    display: flex;
    flex-direction: column;
    row-gap: 25px;
}

.h-funds-flexbox-row {
    display: flex;
    align-items: center;
    column-gap: 13px;
}

.h-funds-flexbox-row i {
    width: 19px;
    height: 19px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: white;
    font-size: 12px;
}

.h-funds-flexbox-row .fa-bolt {
    background-color: #78f1ef;
}

.h-funds-flexbox-row .fa-leaf {
    background-color: #78f1ef;
}

.h-funds-flexbox-row .fa-tint {
    background-color: #78f1ef;
}

.h-funds-flexbox-row .fa-google-wallet {
    background-color: #78f1ef;
}

.h-funds-flexbox-row .fa-user-plus {
    background-color: var(--primary-color);
}

.h-funds-flexbox-row .fa-sign-in {
    background-color: #78f1ef;
}

.h-funds-flexbox-row a {
    font-size: 15px;
    text-decoration: none;
    color: black;
}

.h-funds-con2 {
    --vis-menu2: hidden;
    --opa-menu2: 0;
    width: 220px;
    right: 18%;
    top: 1.5%;
    opacity: var(--opa-menu2);
    visibility: var(--vis-menu2);
}

.h-download-btn button {
    padding: 8px 25px;
    font-weight: bold;
    border-radius: 20px;
    border: none;
}

.burger {
    width: 30px;
    height: 25px;
    display: flex;
    flex-direction: column;
    row-gap: 4px;
    cursor: pointer;
    display: none;
}

.bar {
    width: 100%;
    height: 4px;
    background-color: white;
}

/* ! CONTENT CONTAINER */

.content-container {
    width: 100%;
    padding: 5% 3%;
    height: fit-content;
}

.content-flexbox {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
}

.content-flexbox-col {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contents-arranger {
    display: flex;
    flex-direction: column;
}

.contents-pre-title {
    font-size: 20px;
    font-weight: 550;
    letter-spacing: 1px;
    color: rgba(0, 0, 0, 0.6);
}

.content-flexbox-image {
    width: 330px;
    height: 330px;
    align-self: center;
}

.contents-title {
    width: 490px;
    font-size: 46px;
    text-transform: uppercase;
    font-weight: 800;
    line-height: 50px;
}

.contents-post-title {
    font-size: 20px;
    font-weight: 550;
    color: rgba(0, 0, 0, 0.6);
    letter-spacing: 1px;
}

.content-flexbox-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 25px;
}

.contents-bottom-arranger {
    display: flex;
}

.contents-bottom-col {
    display: flex;
    flex-direction: column;
    row-gap: 2px;
    border-right: 1px solid black;
    padding-right: 30px;
}

.contents-bottom-col:not(.contents-bottom-col:first-child) {
    padding-left: 30px;
}

.contents-bottom-title {
    font-size: 14px;
    font-weight: 500;
}

.contents-bottom-title-c {
    font-weight: 550;
    font-size: large;
    color: #78f1ef;
}

/* ! FUND VISION CONTAINER */

.fund-vision-container {
    width: 100%;
    height: fit-content;
    padding: 4.5% 4%;
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    align-items: center;
    justify-content: center;
    background-color: #78f1ef;
}

.fund-vision-title {
    font-size: 45px;
    font-weight: bold;
}

.fund-vision-flexbox {
    display: flex;
    width: 100%;
    justify-content: space-around;
}

.fund-vision-first {
    width: 550px;
    font-size: 15.5px;
    line-height: 1.8;
}

.fund-vision-sec {
    width: 550px;
    font-size: 15.5px;
    line-height: 1.8;
}

/* ! IMPACT STYLING */

.impact-container {
    width: 100%;
    padding: 4.5% 4%;
    background-color: #f9f9fa;
}

.impact-flexbox {
    display: flex;
    flex-direction: column;
    row-gap: 3rem;
}

.impact-header {
    display: flex;
    flex-direction: column;
    row-gap: 6px;
    align-items: center;
}

.impact-title {
    font-size: 4rem;
    font-weight: 700;
}

.impact-subtitle {
    max-width: 650px;
    text-align: center;
    font-weight: 400;
}

.impact-cards {
    margin-top: 1rem;
    align-self: center;
    display: flex;
    gap: 1.6rem;
    align-items: center;
}

.imp-card {
    width: 300px;
    height: 200px;
    background-color: white;
    box-shadow: 0px 0px 7px 3px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    row-gap: 2rem;
}

.imp-card-title {
    font-size: 35px;
    font-weight: bold;
}

.imp-card-content {
    font-size: large;
    font-weight: 550;
}

.impact-contents {
    display: flex;
    column-gap: 2rem;
    font-weight: 400;
}

.impact-con1 {
    flex: 1;
    font-size: 15px;
}

.impact-con2 {
    flex: 1;
    display: flex;
    flex-direction: column;
    row-gap: 2rem;
    font-size: 15px;
}

.performance-container {
    width: 100%;
    padding: 4.5% 4%;
    background-color: #f9f9fa;
}

.performance-flexbox {
    display: flex;
    flex-direction: column;
    row-gap: 3rem;
}

.performance-headers {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.performance-title {
    font-size: large;
}

.performance-subtitle {
    font-size: 50px;
    font-weight: 700;
}

.performance-graph {
    width: 80%;
    height: fit-content;
    margin: 0 auto;
    padding: 26px;
    background-color: white;
    box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.3);
    border-radius: 30px;
}

#stats {
    width: 100%;
    height: 500px;
}

/* ! CUMULATIVE STYLING */

.cumulative-container {
    width: 100%;
    padding: 0 4%;
    background-color: #f9f9fa;
}

.cumulative-flexbox {
    display: flex;
    flex-direction: column;
    row-gap: 2.5rem;
    width: 80%;
    height: 250px;
    border-radius: 20px;
    box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.3);
    margin: 0 auto;
    background-color: white;
    padding: 3rem 7%;
}

.cumu-desc {
    width: 80%;
    margin: 0 auto;
    font-size: 15px;
    color: rgba(0, 0, 0, 0.6);
    margin-top: 2rem;
}

.cumulative-header-flex {
    width: 100%;
    overflow-x: scroll;
}

.cumulative-header-flex::-webkit-scrollbar {
    width: 100%;
    height: 5px;
}

.cumulative-btns {
    display: flex;
    column-gap: 20px;
    min-width: 550px;
}

.cumulative-btn {
    width: 160px;
    font-size: 15px;
    padding: 5px 10px;
    border-radius: 20px;
    font-weight: 500;
    border: none;
    background-color: #f9f9fa;
    cursor: pointer;
}

.cumulative-divider {
    border: 1px solid #f9f9fa;
}

.cumulative-contents {
    position: relative;
}

.cumu-content-con {
    display: flex;
    flex-direction: column;
    row-gap: 2rem;
    align-items: flex-start;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: all 700ms linear;
}

.cumu-content-headers {
    display: flex;
    font-weight: 600;
    font-size: 14px;
    align-items: center;
    justify-content: flex-start;
}

.cumu-content-values {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 14px;
}

.cumu-header:not(.cumu-header:last-child) {
    width: 100px;
}

.cumu-content:not(.cumu-content:last-child) {
    width: 100px;
}

.black-out {
    background-color: black;
    color: white;
}

.show-cumu-content {
    opacity: 1;
}

/* ! EXPOSTURE STYLING */

.exposure-container {
    padding: 4%;
    background-color: #f9f9fa;
}

.exposture-rec {
    display: flex;
    flex-direction: column;
    row-gap: 30px;
}

.expo-header-scroll {
    overflow-x: scroll;
}

.expo-header-scroll::-webkit-scrollbar {
    width: 100%;
    height: 4px;
}

.exposture-headers {
    min-width: 550px;
    display: flex;
    align-items: center;
    column-gap: 12px;
}

.exposture-header {
    width: 280px;
}

.exposture-divider {
    border: 1px solid rgba(0, 0, 0, 0.3);
}

.exposture-graph {
    width: 80%;
    height: fit-content;
    margin: 0 auto;
    padding: 5% 3%;
    background-color: white;
    box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.3);
    border-radius: 30px;
}

.exposture-table {
    display: flex;
    flex-direction: column;
    row-gap: 1.6rem;
}

.exposture-table-flex {
    display: flex;
    align-items: center;
    column-gap: 12px;
}

.expo-con {
    width: 280px;
    font-size: 15px;
}

.exposture-cen-flex {
    display: flex;
    align-items: center;
    column-gap: 12px;
}

.exposture-data-reader {
    width: 85%;
    height: 15px;
    border-radius: 20px;
    background-color: #f9f9fa;
}

.expo-top-cen-btn {
    background: transparent;
    border: none;
    font-size: 15.5px;
    cursor: pointer;
}

.exposture-reader {
    width: 12.4%;
    height: 100%;
    background-color: #78f1ef;
    border-top-left-radius: inherit;
    border-bottom-left-radius: inherit;
}

.exposture-score {
    font-weight: 550;
}

.expo-con:last-child {
    text-align: center;
}

.japan-reader {
    width: 14.6%;
}

.canada-reader {
    width: 16.3%;
}

.finland-reader {
    width: 17.4%;
}

.switzerland-reader {
    width: 17.8%;
}

.sweden-reader {
    width: 19.9%;
}

.usa-reader {
    width: 38.4%;
}

/* ! HOLDINGS STYLING */

.holdings-container {
    width: 100%;
    padding: 5% 4%;
    background-color: #f9f9fa;
}

.holdings-flexbox {
    display: flex;
    flex-direction: column;
    row-gap: 2.5rem;
}

.holdings-card {
    width: 80%;
    display: flex;
    column-gap: 2.5rem;
    align-self: center;
}

.holdings-paper {
    flex: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    row-gap: 1.6rem;
    font-size: 15px;
}

.holdings-paper-flexbox {
    display: flex;
    justify-content: space-between;
}

.holdings-value {
    font-weight: 550;
}

/* ! DOCUMENTS-CONTAINER */

.documents-container {
    width: 100%;
    padding: 5% 4%;
    min-height: 90vh;
    background: url("../fundimages/swishy-bg-light.d9fbbfc9.webp");
    object-fit: cover;
    object-position: center;
}

.documents-flexbox {
    width: 80%;
    margin: 0 auto;
    background-color: white;
    border-radius: 20px;
    padding: 4%;
    display: flex;
    flex-direction: column;
    row-gap: 30px;
}

.documents-content {
    display: flex;
    column-gap: 2.5rem;
}

.document-title {
    font-size: 23px;
    font-weight: 520;
}

.document-con1 {
    flex: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    row-gap: 1rem;
}

.doc-type {
    text-decoration: none;
    display: flex;
    align-items: center;
    column-gap: 14px;
    padding: 8px 0;
    border-radius: 20px;
}

.doc-type:hover {
    background-color: #f9f9fa;
}

.doc-type i {
    color: black;
}

.doc-type button {
    background: transparent;
    border: none;
    font-size: 15.7px;
    color: rgba(0, 0, 0, 0.6);
}

.document-con2 {
    flex: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    row-gap: 1.7rem;
}

/* ! FOOTER STYLING */

.footer-container {
    width: 100%;
    height: fit-content;
    background-color: #78f1ef;
}

.footer-first-row {
    padding: 20px;
    padding: 1% 4%;
}

.footer-flexbox {
    width: 100%;
    display: flex;
    flex-direction: column;
    row-gap: 12px;
    align-items: center;
}

.footer-image {
    width: 100%;
}

.footer-image img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    object-position: center;
}

.footer-content {
    width: 70%;
    margin: 0 auto;
    text-align: center;
    text-transform: capitalize;
}

.footer-sec-row {
    margin-top: 16px;
    width: 100%;
    background-color: #000;
    padding: 12px;
    box-shadow: 0px -10px 0px white;
}

.footer-sec-row img {
    width: 100%;
    object-position: center;
    object-fit: contain;
    height: 100px;
}

.footer-third-row {
    width: 100%;
    padding: 3% 4% 0.6%;
    background-color: #000;
    border-bottom: 1.9px solid white;
}

.footer-mid-flexbox {
    display: flex;
    flex-direction: column;
    row-gap: 15px;
}

.footer-lists-arranger {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-arranged-list {
    display: flex;
    flex-direction: column;
    row-gap: 12px;
}

.footer-arrange-header {
    font-size: 21px;
    font-weight: bold;
    color: #78f1ef;
}

.footer-list-menu {
    display: flex;
    flex-direction: column;
    row-gap: 6px;
}

.footer-list a {
    color: white;
    text-decoration: none;
}

.footer-lists-btm-arranger {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-joint-flexbox {
    display: flex;
    column-gap: 6rem;
    align-items: center;
}

.footer-btn-first p {
    font-size: 14px;
    font-weight: bold;
    color: white;
}

.footer-btm-link a {
    text-decoration: none;
    color: #78f1ef;
    font-weight: bold;
}

.footer-fourth-row {
    padding: 2% 4%;
    background-color: #000;
}

.footer-fourth-first {
    text-align: center;
    color: white;
    font-size: 14.5px;
}

.footer-fourth-first :is(a) {
    color: #78f1ef;
    font-weight: bold;
}

.footer-fourth-sec {
    text-align: center;
    margin-top: 15px;
    font-variant: small-caps !important;
    font-size: 13px;
    letter-spacing: 1.4px;
    color: white;
}

.footer-fourth-sec :is(a) {
    text-decoration: none;
    color: white;
    font-size: 12px;
}

/* !Mobile Styling */

.mobile-container {
    width: 100%;
    padding: 0 5%;
    height: 480px;
}

.mobile-flexbox {
    display: flex;
    flex-direction: column;
    row-gap: 1.4rem;
}

.mobile-lists {
    display: flex;
    flex-direction: column;
    row-gap: 1.6rem;
}

.mobile-list a {
    font-size: 14px;
    font-weight: 550;
    color: black;
    text-decoration: none;
}

.mobile-list-col {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-content {
    height: auto;
    margin-left: 15px;
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    row-gap: 0.95rem;
}

.mobile-con-link .fa-bolt {
    color: #78f1ef;
    font-weight: bold;
}

.mobile-con-link .fa-leaf {
    color: #78f1ef;
    font-weight: bold;
}

.mobile-con-link .fa-tint {
    color: #78f1ef;
}

.mobile-con-link .fa-google-wallet {
    color: #78f1ef;
}

.mobile-con-link .fa-user-plus {
    color: #78f1ef;
}

.mobile-con-link .fa-sign-in {
    color: #78f1ef;
}

.mobile-list-col i {
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
}

.mobile-list-col-con {
    height: 0;
    overflow: hidden;
    transition: all 800ms linear;
}

.mobile-shrinker {
    height: 0;
    overflow: hidden;
    transition: all 700ms linear;
}

/* ! ENERGY STYLING */

.energy-vision-container {
    width: 100%;
    height: fit-content;
    padding: 4.5% 4%;
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    align-items: center;
    justify-content: center;
    background-color: #78f1ef;
}

.energy-exposture-reader {
    width: 12.4%;
    height: 100%;
    background-color: #78f1ef;
    border-top-left-radius: inherit;
    border-bottom-left-radius: inherit;
}

.energy-contents-bottom-title-c {
    font-weight: 550;
    font-size: large;
    color: #78f1ef;
}

/* ! WATER STYLING */

.water-vision-container {
    width: 100%;
    height: fit-content;
    padding: 4.5% 4%;
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    align-items: center;
    justify-content: center;
    background-color: #78f1ef;
}

.water-exposture-reader {
    width: 12.4%;
    height: 100%;
    background-color: #78f1ef;
    border-top-left-radius: inherit;
    border-bottom-left-radius: inherit;
}

.water-contents-bottom-title-c {
    font-weight: 550;
    font-size: large;
    color: #78f1ef;
}

/* ! SOCIAL STYLING */

.social-vision-container {
    width: 100%;
    height: fit-content;
    padding: 4.5% 4%;
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    align-items: center;
    justify-content: center;
    background-color: #78f1ef;
}

.social-exposture-reader {
    width: 12.4%;
    height: 100%;
    background-color: #78f1ef;
    border-top-left-radius: inherit;
    border-bottom-left-radius: inherit;
}

.social-contents-bottom-title-c {
    font-weight: 550;
    font-size: large;
    color: #78f1ef;
}

/* ! HOME PAGE STYLING */

.sub-header-section {
    height: fit-content;
}

.sub-header-flexbox {
    display: flex;
    gap: 2.5rem;
    justify-content: center;
    align-items: center;
    height: fit-content;
    position: relative;
    padding: 50px 0;
}

.sub-header-icon-con {
    flex: 0.35;
    width: 100%;
}

.sub-header-icon-con img {
    width: 100%;
    height: 240px;
    object-fit: contain;
    object-position: center;
}

.sub-header-contents-con {
    flex: 0.55;
    width: 100%;
}

.sub-contents-title {
    text-transform: uppercase;
    font-weight: bold;
    font-size: 50px;
    line-height: 1.19;
}

.sub-contents-subtitle {
    font-size: 19px;
    font-weight: 550;
    margin-top: 14px;
}

.sub-contents-subtitle ~ button {
    width: 180px;
    padding: 12px;
    margin-top: 12px;
    border-radius: 20px;
    border: none;
    pointer-events: none;
    background-color: #78f1ef;
}

.sub-contents-subtitle ~ button a {
    font-size: 15px;
    font-weight: bold;
    color: black;
    text-decoration: none;
    pointer-events: all;
}

/* ! CIRCULAR STYLING */

.site-circular-panel {
    position: absolute;
    top: 8%;
    left: 50%;
    height: 230px;
    background-color: #78f1ef;
    width: 230px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    box-shadow: 0px 0px 0px 8px white;
    animation: move 20s linear infinite;
}

.site-circular-panel img {
    width: 90%;
    height: 90%;
}

.circular-orbital {
    position: absolute;
    font-size: 25px;
    font-weight: bold;
    width: 100%;
    height: 100%;
    text-align: center;
    transform: rotate(var(--orbital-rotate));
}

.circular-orbitext2 {
    --orbital-rotate: 10deg;
}
.circular-orbitext3 {
    --orbital-rotate: 20deg;
}
.circular-orbitext4 {
    --orbital-rotate: 30deg;
}
.circular-orbitext5 {
    --orbital-rotate: 40deg;
}
.circular-orbitext6 {
    --orbital-rotate: 50deg;
}

.circular-orbitext7 {
    --orbital-rotate: 63deg;
}
.circular-orbitext8 {
    --orbital-rotate: 75deg;
}

.circular-orbitext9 {
    --orbital-rotate: 90deg;
}
.circular-orbitext10 {
    --orbital-rotate: 105deg;
}
.circular-orbitext11 {
    --orbital-rotate: 115deg;
}
.circular-orbitext12 {
    --orbital-rotate: 125deg;
}
.circular-orbitext13 {
    --orbital-rotate: 135deg;
}
.circular-orbitext14 {
    --orbital-rotate: 145deg;
}
.circular-orbitext15 {
    --orbital-rotate: 155deg;
}

.circular-orbitext16 {
    --orbital-rotate: 170deg;
}
.circular-orbitext17 {
    --orbital-rotate: 180deg;
}
.circular-orbitext18 {
    --orbital-rotate: 190deg;
}
.circular-orbitext19 {
    --orbital-rotate: 198deg;
}
.circular-orbitext20 {
    --orbital-rotate: 207deg;
}

.center-orbital-img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    position: absolute;
    left: 43%;
    bottom: -26%;
    transform: translate(-50% -50%);
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99;
}

.center-orbital-img img {
    width: 80%;
    height: 80%;
    object-fit: contain;
    object-position: center;
}

@keyframes move {
    from {
        transform: translateX(-50%) rotate(0deg);
    }
    to {
        transform: translateX(-50%) rotate(360deg);
    }
}

/* ! BELOW STYLING */

.below-contents-container {
    width: 100%;
    background-color: #78f1ef;
    height: fit-content;
    padding: 50px 0;
    display: flex;
    justify-content: center;
    margin-top: 5rem;
}

.below-contents-flexbox {
    width: 90%;
    height: 450px;
    background-color: white;
    display: flex;
    align-items: center;
    padding: 5rem 4% 4rem;
    border-radius: 20px;
    margin-top: 4%;
}

.below-contents-arranger {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 20px;
}

.below-title {
    text-align: center;
    font-size: 18px;
}

.below-subtitle {
    font-weight: bold;
    font-size: 25px;
    text-align: center;
}

/* ! INVESTMENT STYLING */
.investments-container {
    height: fit-content;
    padding: 4.5rem 0;
    background-color: #f2f3f4;
}

.investments-flexbox {
    width: 85%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 12px;
}

.investment-title {
    font-size: 33px;
    font-weight: 600;
}

.investments-subtitle {
    font-size: 18px;
    text-align: center;
}

.investments-card-grid {
    margin-top: 4rem;
    align-self: flex-start;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 30px;
}

.invest-card-grid {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.invest-card-grid img {
    position: absolute;
    top: -5%;
    width: 230px;
    height: 160px;
}

.invest-card {
    width: 100%;
    background-color: white;
    margin-top: 6.5rem;
    position: relative;
    z-index: 1;
    padding: 6%;
    display: flex;
    flex-direction: column;
    row-gap: 2.2rem;
    border-radius: 20px;
}

.invest-card-title {
    font-size: 26px;
    font-weight: 550;
}

.center-invest-titles {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}

.invest-card-subtitle {
    font-size: 20px;
    font-weight: 550;
}

.invest-card-text {
    font-size: 14.5px;
}

.invest-btn {
    align-self: flex-start;
    width: 35%;
    padding: 12px;
    font-weight: bold;
    background-color: #78f1ef;
    border: none;
    border-radius: 20px;
    display: flex;
    align-items: center;
    column-gap: 5px;
    justify-content: center;
    cursor: pointer;
}

.invest-hyper {
    cursor: pointer;
    text-decoration: none;
}

.fa-arrow-right {
    width: 17px;
    height: 17px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid black;
    border-radius: 50%;
    padding: 7px;
}

/* ! ACCT INVEST STYLING */

.acct-invest-container {
    height: fit-content;
    padding: 6.6% 0;
}

.acct-invest-contents-con {
    display: flex;
    flex-direction: column;
    row-gap: 3rem;
    align-items: center;
}

.acct-invest-top-contents {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.acct-top-content {
    font-size: 28px;
    font-weight: 550;
}

.acct-invest-bottom-con {
    width: 60%;
    margin: 0 auto;
    align-self: flex-start;
    display: flex;
    flex-direction: column;
    row-gap: 1.8rem;
    align-items: flex-start;
}

.acct-invest-bottom-d-col {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.acct-btn-con {
    flex: 1;
    width: 100%;
    border: 1px solid rgba(0, 0, 0, 0.08);
    text-decoration: none;
    padding: 23px 20px;
    border-radius: 50px;
    cursor: pointer;
}

.acct-btm-doc {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: none;
    background: transparent;
    pointer-events: none;
}

.acct-img-text {
    display: flex;
    align-items: center;
    column-gap: 9px;
}

.acct-img-text img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

.acct-img-text span {
    font-size: 14.5px;
    font-weight: 550;
}

.acct-img-text ~ i {
    font-size: 15px;
    font-weight: 550;
}

.acct-invest-bottom-span-col {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.acct-btn-con-span {
    width: 50%;
    border: 1px solid rgba(0, 0, 0, 0.08);
    text-decoration: none;
    padding: 23px 20px;
    border-radius: 50px;
    cursor: pointer;
}

/* ! ACCT WORKS STYLING */

.acct-works-container {
    height: fit-content;
    padding: 6% 5%;
    background-color: #78f1ef;
}

.acct-work-flexbox {
    display: flex;
    flex-direction: column;
    row-gap: 3.4rem;
}

.acct-title-bar {
    align-self: center;
    font-weight: 550;
    font-size: 2.5rem;
}

.acct-cards-flexbox-g {
    display: flex;
    align-items: center;
    gap: 1.4rem;
}

.acct-card-g-con {
    width: 100%;
    flex: 1;
    padding: 2.6rem 2rem;
    background-color: white;
    display: flex;
    flex-direction: column;
    row-gap: 2rem;
    border-radius: 28px;
    height: 430px;
    position: relative;
}

.acct-card-g-con::after {
    content: "1";
    width: 40px;
    height: 40px;
    background-color: white;
    font-size: 18px;
    font-weight: 550;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0px 0px 0px 3px #78f1ef;
}

.acct-card-g-con1::after {
    content: "2";
}

.acct-card-g-con2::after {
    content: "3";
}

.acct-card-g-con-flex {
    align-self: center;
    width: 85%;
    background-color: #78f1ef;
    padding: 10px 1.4rem;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.acct-card-t {
    font-size: 11px;
    padding: 2px 0;
    border-bottom: 1.2px solid white;
    font-weight: 500;
}

.acct-card-md-text {
    font-size: 28px;
    font-weight: 550;
    width: 60%;
    line-height: 1.3;
}

.acct-card-ft-text {
    font-size: 14.5px;
    color: rgba(0, 0, 0, 0.6);
}

.acct-card-sec-con {
    position: relative;
    width: 100%;
    z-index: 1;
}

.acct-card-box {
    width: 130px;
    background-color: #78f1ef;
    position: absolute;
    top: 0;
    z-index: -1;
    backdrop-filter: blur(4px);
    padding: 12px;
    border-top-right-radius: 15px;
    border-top-left-radius: 15px;
    box-shadow: -2px -2px 6px rgba(0, 0, 0, 0.2);
}

.acct-card-box:nth-child(1) {
    height: 90px;
}

.acct-card-box:nth-child(2) {
    left: 30%;
    background-color: #78f1ef80;
    z-index: 99;
    height: 60px;
    top: 30px;
}

.acct-card-box:nth-child(3) {
    left: 60%;
    background-color: #78f1ef60;
    z-index: 99;
    height: 30px;
    top: 60px;
}

.acct-card-md-sec {
    width: 100%;
    margin-top: 6.2rem;
}

.acct-card-md-thr {
    width: 100%;
}

.acct-card-g-con-box {
    align-self: center;
    width: 55%;
    height: 90px;
    background-color: #78f1ef;
    display: flex;
    border-radius: 15px;
    padding: 13px 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.acct-plus-text-box {
    align-self: flex-end;
    width: 75px;
    padding: 0 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    border-radius: 25px;
}

.acct-plus-text-box .fa-plus {
    font-weight: bold;
    width: 20px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #78f1ef;
    border-radius: 50%;
    font-size: 13px;
}

.acct-plus-text {
    font-weight: 550;
}

/* ! HOW TO USE FUNDS STYLING */

.htuf-container {
    height: fit-content;
    padding: 5%;
    background-color: #f2f3f4;
}

.htuf-flexbox {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 30px;
}

.htuf-title {
    font-size: 2.4rem;
    text-transform: capitalize;
    font-weight: 520;
}

.htuf-flexbox-cards {
    align-self: flex-start;
    width: 100%;
    display: flex;
    gap: 1.8rem;
    justify-content: center;
    align-items: center;
    margin-top: 12px;
}

.htuf-card {
    flex: 0.4;
    width: 100%;
    height: 460px;
    background-color: white;
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    padding: 5% 5.5%;
    border-radius: 20px;
}

.htuf-image-grid {
    align-self: center;
    width: 100%;
    position: relative;
}

.htuf-image-grid img {
    width: 90px;
    height: 100px;
    position: absolute;
    left: var(--card-img-placement);
}

.htuf-mid-title {
    margin-top: 9rem;
    font-size: 1.4rem;
    font-weight: 550;
}

.htuf-mid-text {
    font-size: 15px;
    margin-top: 1rem;
}

.htuf-image-grid2 {
    align-self: center;
    width: 100%;
    position: relative;
}

.htuf-image-grid2 img {
    width: 90px;
    height: 100px;
    position: absolute;
    left: var(--card-img-placement);
}

.process-contents-container {
    padding: 10% 5%;
    height: fit-content;
}

.process-contents-flexbox {
    display: flex;
    flex-direction: column;
    row-gap: 3rem;
}

.process-headers-content {
    width: 65%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    row-gap: 7px;
    align-items: center;
    text-align: center;
}

.process-title {
    font-size: 33px;
    font-weight: bold;
}

.process-centered-contents {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
}

.process-icon-flexbox {
    flex: 1;
    display: flex;
    flex-direction: column;
    row-gap: 0.7rem;
}

.process-icon-box {
    width: 35%;
    padding: 20px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 16px solid #78f1ef;
    align-self: center;
}

.process-icon-box img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    object-position: center;
}

.process-content-cen-flexbox {
    display: flex;
    flex-direction: column;
    row-gap: 12px;
}

.process-cen-title {
    align-self: center;
    font-weight: bold;
    font-size: 17.5px;
}

.process-cen-content {
    font-size: 14px;
    text-align: center;
}

/* ! ABOUT US STYLING */

.about-mid-container {
    height: fit-content;
    padding: 5%;
}

.about-flexbox {
    display: flex;
    align-items: center;
}

.aboutus-title {
    flex: 0.35;
    width: 100%;
    display: flex;
    flex-direction: column;
    row-gap: 3rem;
}

.about-title1 {
    font-size: 4rem;
    font-weight: 550;
    line-height: 1;
}

.about-title2 {
    font-weight: 550;
    font-size: 23px;
}

.aboutus-image {
    flex: 0.55;
    width: 100%;
    text-align: right;
}

.aboutus-image img {
    width: 350px;
    height: 350px;
}

.aboutus-contents-container {
    height: fit-content;
    padding: 5%;
    background-color: #f2f3f4;
}

.about-contents-flexbox {
    display: flex;
    gap: 1.6rem;
    align-items: center;
}

.about-content-thicker {
    flex: 0.4;
    width: 100%;
    display: flex;
    flex-direction: column;
    row-gap: 14px;
}

.about-contents-flexer {
    flex: 0.6;
    width: 100%;
}

.about-content-thicker span:first-child {
    font-weight: 550;
    font-size: 18px;
    color: #78f1ef;
}

.about-c-th {
    font-size: 30px;
    font-weight: 550;
}

.about-content-thicker img {
    width: 100%;
    height: 400px;
}

.about-c-padup {
    padding: 5%;
    height: fit-content;
    display: flex;
    background-color: #f2f3f4;
}

.about-contents-flexer2 {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}

.about-team-container {
    height: fit-content;
    padding: 5%;
}

.about-team-flexbox {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    align-items: center;
}

.about-team-desc,
.about-team-subtitle {
    width: 60%;
    text-align: center;
}

.about-team-title {
    text-transform: uppercase;
    font-size: 19px;
    font-weight: 550;
    color: #78f1ef;
}

.about-team-subtitle {
    font-size: 35px;
    font-weight: 550;
}

.about-teams-grid {
    align-self: flex-start;
    margin-top: 2.5rem;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.about-team-desc {
    font-size: 15.5px;
    line-height: 1.5;
    color: rgba(0, 0, 0, 0.6);
}

.about-team-card {
    width: 100%;
    height: 450px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.about-team-card img {
    flex: 0.8;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.about-team-name {
    text-transform: capitalize !important;
    font-weight: 550;
}

.about-team-name ~ div {
    font-size: 14px;
}

.about-team-details {
    flex: 0.2;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    background-color: #78f1ef;
}

.signup-banner {
    width: 100%;
    padding: 5%;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 1.5rem;
    position: relative;
    overflow-y: hidden;
    box-shadow: inset 0px 0px 4px rgba(0, 0, 0, 0.3);
}

.signup-banner::after {
    content: "";
    width: 250px;
    height: 250px;
    position: absolute;
    bottom: -40%;
    right: 5%;
    border-radius: 50%;
    background-color: #78f1ef;
}

.signup-banner::before {
    content: "";
    width: 250px;
    height: 250px;
    position: absolute;
    top: -40%;
    left: 5%;
    border-radius: 50%;
    background-color: #78f1ef;
}

.banner-title {
    font-size: 2.8rem;
    font-weight: 550;
}

.banner-links-flex a {
    font-weight: 550;
    font-size: 15.5px;
    color: black;
    text-decoration: none;
}

.banner-links-flex a:last-child {
    color: #78f1ef;
}

.signup-box-container {
    height: fit-content;
    padding: 5%;
    position: relative;
}

.signup-box {
    width: 720px;
    height: fit-content;
    padding: 4.5%;
    box-shadow: inset 0px 0px 4px rgba(0, 0, 0, 0.2);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    row-gap: 2rem;
}

.signup-title {
    font-size: 2.3rem;
    font-weight: 550;
}

.signup-form {
    display: flex;
    flex-direction: column;
    row-gap: 2.5rem;
}

.signup-flexbox {
    display: flex;
    align-items: center;
    column-gap: 1.4rem;
}

.signup-formcontrol {
    flex: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.signup-formcontrol label {
    font-size: 14.5px;
    font-weight: 500;
}

.signup-formcontrol input {
    width: 100%;
    padding: 8px;
}

.signup-select-input-flex {
    display: flex;
}

.signup-select-input-flex select {
    flex: 0.45;
}

.signup-select-input-flex input {
    flex: 0.55;
}

.signup-control {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.signup-control input {
    width: 100%;
    padding: 8px;
}

.signup-control label {
    font-size: 14.5px;
    font-weight: 500;
}

.signup-recap-control .signup-captcha {
    width: 100%;
    height: 40px;
    background-color: #78f1ef80;
    font-weight: light;
    position: relative;
}

.signup-recap-control input {
    margin-top: 14px;
}

.capt {
    position: absolute;
    left: calc(40% + var(--capt-left));
    top: var(--capt-top);
    transform: translate(-50%) rotate(var(--capt-rotate));
}

.signup-checkbox {
    display: flex;
    align-items: center;
    gap: 6px;
}

.sign-checker {
    accent-color: #78f1ef;
    height: 14px;
    width: 14px;
}

.sign-checker ~ label {
    font-size: 13px;
}

.sign-checker ~ label > a {
    text-decoration: none;
    color: #78f1ef;
}

.reg-btn {
    padding: 8px;
    background-color: #78f1ef;
    font-weight: 550;
    border: none;
    cursor: pointer;
}

input:focus {
    outline: none;
}

.signup-error {
    font-size: 9.5px;
    opacity: 0;
    transition: all 500ms linear;
}

.show-error {
    opacity: 1;
    color: red;
}

.show-success {
    opacity: 1;
    color: green;
}

.alert-slider {
    position: fixed;
    top: 15%;
    right: 0;
    min-width: 250px;
    padding: 12px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--msg-type);
    color: white;
    font-weight: bold;
    transform: translateX(100%);
    transition: all linear 700ms;
}

.alert-message {
    font-size: 13px;
}

.trans-out {
    transform: translateX(0);
}

.funds-center-container {
    border-top: 0.7px solid black;
    width: 100vw;
    height: fit-content;
    padding: 2% 4.5%;
    display: flex;
    flex-direction: column;
    row-gap: 1rem;
    position: relative;
}

.funds-center-container h2 {
    --depends-con: 8px;
    align-self: center;
    padding: var(--depends-con) 0;
}

.funds-center-container p {
    align-self: center;
    font-size: 14px;
    color: red;
}

.funds-center-semi-container {
    width: 90%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding: 12px;
}

.funds-center-card {
    width: 100%;
    height: 280px;
    padding: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: inset 0px 0px 4px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
}

.funds-center-row-flexer {
    display: flex;
    flex-direction: column;
    row-gap: 16px;
    align-items: center;
}

.funds-center-row-flexer a {
    width: 100%;
    text-align: center;
}

.funds-center-title {
    font-weight: bold;
    font-size: 19px;
    text-transform: capitalize;
}

.funds-center-semi-btn {
    width: 90%;
    padding: 10px;
    font-size: 12px;
    text-align: center;
    background-color: #f2f3f4;
    border-radius: 5vmax;
}

.funds-anchor-download-tag {
    text-decoration: none;
    font-size: 12px;
    display: flex;
    column-gap: 8px;
    align-items: center;
    color: #2dbe60;
}

.funds-anchor-download-tag :is(.fa-file) {
    font-size: 14px;
}

.funds-thick-title {
    font-size: 12.5px;
    font-weight: 550;
}

.funds-center-doc-folder :is(.fa-folder-blank) {
    font-size: 15.5px;
    color: #78f1ef;
}

.funds-center-view-btn {
    margin-top: 10px;
    width: 70%;
    padding: 8px;
    border-radius: 10px;
    font-weight: bold;
    text-transform: uppercase;
    background-color: #78f1ef;
    border: none;
}

.funds-pagination-container {
    position: absolute;
    bottom: 0;
    right: 10%;
    width: fit-content;
}

.pagination-flexbox {
    --hide-icons: 0;
    display: flex;
    column-gap: 13px;
    align-items: center;
    opacity: var(--hide-icons);
    transition: all 1s linear;
}

.funds-pag-con {
    display: flex;
    column-gap: 8px;
    font-size: 14px;
    font-weight: bold;
}

.funds-pag {
    text-decoration: underline;
    cursor: pointer;
    pointer-events: fill;
}

.doc-hidden-form {
    --set-height: 0px;
    --set-opa: 0;
    overflow: hidden;
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -45%);
    width: 45%;
    height: var(--set-height);
    backdrop-filter: blur(8px);
    padding: 0px 20px;
    display: flex;
    flex-direction: column;
    row-gap: 1.2rem;
    transition: all 800ms linear;
    box-shadow: 0px 0px 4px 100vmax rgba(0, 0, 0, var(--set-opa));
}

.doc-title {
    font-size: 18px;
    font-weight: 550;
    color: #2dbe60;
    margin-top: 16px;
}

.doc-hidden-form form {
    display: flex;
    flex-direction: column;
    row-gap: 1.5rem;
}

.input-doc-form {
    display: flex;
    flex-direction: column;
}

.input-doc-form input {
    padding: 6px 12px;
    border: none;
    background-color: #f2f3f4;
    font-weight: bold;
}

.btn-doc-containers {
    align-self: flex-end;
}

.btn-doc-containers button {
    width: 120px;
    padding: 6px;
    font-weight: bold;
    border: none;
    border-radius: 9px;
}

.scan-user-name {
    background-color: #2dbe60;
}
