/* Fonts */
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
    /* Colors */
    /* --primary-color: #a08146; */
    --primary-color: #efff05;
    --secondary-color: #ffffff;
    --third-color: #abc6b7;
    --four-color: #002c14;
    --five-color: #094524;
    --six-color: #abc6b7;
    --body_bg-color: #003819;
    --primary-color-rgb: 160, 129, 70;
    --secondary-color-rgb: 255, 255, 255;
    --third-color-rgb: 171, 198, 183;
    --four-color-rgb: 0, 44, 20;
    --five-color-rgb: 9, 69, 36;
    --six-color-rgb: 171, 198, 183;
    --body_bg-color-rgb: 0, 56, 25;
    --gradient-color-from: #c0ce00;
    --gradient-color-to: #949e00;
    /* --gradient-color-from: #d7ba83;
    --gradient-color-to: #a08146; */
    --gradient-color2-from: #8312ff;
    --gradient-color2-to: #2cb0ff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    line-height: 1.3;
    overflow-x: hidden;
    font-weight: 400;
    letter-spacing: 0;
    color: var(--third-color);
}

.line,
.word {
    overflow: hidden;
}

.line,
.char {
    transform: translateY(100%);
    opacity: 0;
}

.clip-path {
    clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
}

.bg-grad {
    background-color: transparent;
    background-image: linear-gradient(135deg, #949e00 0%, #c0ce00 100%);
}

p {
    margin: 0px;
    padding: 0px;
    color: #ffffff99;
    font-size: 16px;
    line-height: 26px;
}

.text-light {
    color: #ffffff;
}

.text-dark {
    color: black;
}

.text-grey {
    color: #666666 !important;
}

.md-text {
    font-size: 48px;
    letter-spacing: -0.96px;
    font-weight: 300;
}

.sm-text {
    font-size: 32px;
    letter-spacing: -0.64px;
    margin-bottom: 0px;
    font-weight: 300;
}

.s-text {
    font-size: 24px;
    margin-bottom: 0px;
    font-weight: 300;
}

.uppercase {
    text-transform: uppercase;
}

.text-gradient {
    background: linear-gradient(
        245deg,
        var(--gradient-color-from) 34.77%,
        var(--gradient-color-to) 99.47%
    );
    background-color: initial;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.divider {
    background-color: #2a2a2a;
}

.divider-inner {
    display: block;
    width: 150px;
    height: 1px;
    background-image: linear-gradient(
        to right,
        var(--gradient-color-from),
        var(--gradient-color-to)
    );
}

.bg-black {
    background-color: black;
}

.spacer {
    height: 10rem;
}

.sm-space {
    height: 3rem;
}

.xs-space {
    height: 1rem;
}

/* Hero */
.hero {
    height: 100vh;
    background-color: black;
    background-image: url(../img/bg1.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: row;
    align-items: end;
    padding-bottom: 7rem;
    position: relative;
}

.hero::after {
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000000;
    background: linear-gradient(
        0deg,
        rgba(0, 0, 0, 1) 0%,
        rgba(0, 0, 0, 0.41) 100%
    );
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.hero h3 {
    color: #ffffff;
    -webkit-text-stroke-color: #ffffff;
    font-size: 64px;
    line-height: 74px;
    letter-spacing: -1.28px;
    margin-bottom: 0px;
}

.stats-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.counter-container {
    padding: 1rem 0rem;
}

.counter-container span {
    font-size: 120px;
    letter-spacing: -2.4px;
    color: #ffffff;
}

.stats-img {
    height: 400px;
    width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem;
}

.stats-img-inner {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: -60px;
    background-color: black;
    background-image: url(../img/pa-2.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.awards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.awards img {
    height: 50px;
    width: auto;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.loan-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
}

.loan-grid .card-item {
    background-color: white;
}

.card-icon {
    background-color: #ffffff;
    width: 92px;
    height: 92px;
    border-radius: 11111px 11111px 11111px 11111px;
    margin: 0px 0px 0px 0px;
    display: grid;
    place-content: center;
    min-width: 92px;
}

.card-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
    padding: 48px 50px;
    border-radius: 10px;
}

.card-1 {
    background-color: #f0f0f0;
}

.card-2 {
    background-color: black;
    color: white;
}

.card-4 {
    border: 1px solid #e9e9e9;
}

.card-4 .card-icon {
    border: 1px solid #e9e9e9;
}

.transfer,
.loan {
    background-color: #f0f0f0;
}

.calculator {
    padding: 33px 50px;
    background-color: white;
    border-radius: 10px;
}

label {
    color: #010101;
    font-size: 14px;
    font-weight: 400;
    padding: 0 4px;
    background-color: #fff;
    margin-left: 12px;
    transform: translatey(9px);
    z-index: 3;
    position: relative;
    display: inline-block;
}

input {
    height: 50px;
    background-color: #fff;
    border-radius: 10px;
    color: #000;
    border: 1px solid #c8c8c8;
    padding-left: 14px;
    line-height: 1.73;
    font-size: 16px;
    font-weight: 400;
    width: 100%;
    outline: none;
    font-family: inherit;
    padding: 6px 25px;
    appearance: none;
    transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

input:focus-visible {
    border-color: black;
    transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type="number"] {
    appearance: textfield;
    -moz-appearance: textfield;
}

.converter select {
    height: 50px;
    cursor: pointer;
    position: absolute;
    color: #010101;
    font-size: 14px;
    font-weight: 400;
    width: 50px;
    background-color: initial;
    z-index: 2;
    padding: 0;
    top: 50%;
    transform: translatey(-50%);
    right: 20px;
    line-height: 1.73;
    transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
    border-radius: 30px;
    outline: none;
    border: none;
}

.transfer .container img {
    position: absolute;
    right: 0;
    bottom: 0;
}

.transfer-content {
    position: relative;
    z-index: 1;
}

.for-img {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.for-img img {
    width: 100%;
}

.g-7 {
    gap: 3rem;
}

.review-container {
    padding: 0rem 3rem 0rem 12rem;
}

.main-stats-number {
    font-size: 120px;
    letter-spacing: -2.4px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: nowrap;
    color: white;
    line-height: 1em;
    font-weight: 300;
}

.mobile-view {
    display: none;
}

.main-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.main-stats-item {
    padding: 0rem 3rem;
}

.main-stats-center {
    border-right: 1px solid rgba(255, 255, 255, 0.253);
    border-left: 1px solid rgba(255, 255, 255, 0.253);
}

/* Accordion */

.faq-accordion {
    background: transparent;
    transition: background 0.3s, border 0.3s, border-radius 0.3s,
        box-shadow 0.3s, transform var(--e-transform-transition-duration, 0.4s);
}

.f-item {
    overflow: hidden;
    border-radius: 10px;
    overflow: hidden;
    padding: 17px 25px 17px 54px;
    position: relative;
    z-index: 1;
    background-color: rgba(0, 0, 0, 6%);
    -webkit-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
    -khtml-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
    -moz-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
    -ms-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
    -o-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.f-icon {
    position: absolute;
    top: 21px;
    left: 20px;
    display: inline-block;
    height: 14px;
    width: 14px;
    cursor: pointer;
}

.f-icon::before {
    width: 14px;
    height: 2px;
    top: 6px;
    left: 0;
    content: "";
    background-color: #122a00;
    position: absolute;
    -webkit-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
    -khtml-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
    -moz-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
    -ms-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
    -o-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.f-icon::after {
    width: 2px;
    height: 14px;
    left: 6px;
    top: 0;
    content: "";
    background-color: #122a00;
    position: absolute;
    -webkit-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
    -khtml-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
    -moz-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
    -ms-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
    -o-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.f-title {
    color: #010101;
    font-size: 18px;
    font-weight: 400;
    -webkit-transition: all 300ms linear 0ms;
    -khtml-transition: all 300ms linear 0ms;
    -moz-transition: all 300ms linear 0ms;
    -ms-transition: all 300ms linear 0ms;
    -o-transition: all 300ms linear 0ms;
    transition: all 300ms linear 0ms;
    position: relative;
    margin-bottom: 0;
    cursor: pointer;
}

.f-content {
    margin-top: 17px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    margin-bottom: 3px;
}

.f-item.active {
    background-color: #010101;
}

.f-item.active .f-icon::before {
    background-color: #c0ce00;
}

.f-item.active .f-icon::after {
    background-color: #c0ce00;
    transform: rotate(90deg);
}

.f-item.active .f-title {
    color: white !important;
}

.f-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Footer */

.footer-logo {
    width: 45%;
}

footer {
    background-color: #f0f0f0;
}

.footer-link {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

a {
    text-decoration: none;
}

.footer-link a {
    color: #010101;
    font-size: 14px;
    text-transform: capitalize;
    transition: 0.3s ease;
    text-decoration: none;
}

.footer-link a:hover {
    color: grey;
    transition: 0.3s ease;
}

.footer-link-head {
    color: #666666;
    -webkit-text-stroke-color: #666666;
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 0px;
    margin-bottom: 1rem;
}

.footer-bottom {
    position: relative;
    overflow: hidden;
    padding: 1rem 0rem;
    background-color: black;
    margin-top: 3rem;
}

.footer-bottom-content {
    position: relative;
    z-index: 2;
    color: grey;
}

.footer-bottom-content p {
    font-size: 14px !important;
}

.socials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    width: max-content;
    margin-bottom: 1rem;
}

.socials-item a {
    height: 2rem;
    width: 2rem;
    display: grid;
    place-content: center;
    border-radius: 0.2rem;
    transition: 0.3s ease;
    background-color: black;
}

.socials-item a i {
    color: var(--primary-color);
    font-size: 1.1rem;
    transition: 0.3s ease;
}

.socials-item a:hover i {
    color: white;
    transition: 0.3s ease;
}

/* Login Page */
.login-form-logo {
    width: 30%;
    margin-bottom: 2rem;
}

.login-page {
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    background-image: url(../img/pa-1.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.reg-page {
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    background-image: url(../img/reg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.login-main {
    background-color: rgb(255, 255, 255);
    padding: 2rem;
    border-radius: 10px;
}

input:-webkit-autofill {
    background-color: transparent !important;
    -webkit-box-shadow: 0 0 0px 1000px white inset !important; /* or your desired background */
    -webkit-text-fill-color: #000 !important; /* text color */
    transition: background-color 5000s ease-in-out 0s; /* prevents flickering */
}

.form-step {
    display: none;
}
.form-step.active {
    display: block;
}

.login-form-link {
    color: black;
    text-decoration: underline;
    font: 14px;
}

/* Error */

.error-container {
    height: 100vh;
    display: grid;
    place-content: center;
    background-color: black;
}

.align-items-center {
    align-items: center !important;
}

.error-text {
    font-size: 25vw;
    font-family: "Poppins", "Arial", sans-serif;
    font-weight: 300;
    margin: 0;
    line-height: 1em;
    color: white;
}

/* Preloader */

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    background-color: white;
    z-index: 99999999;
    overflow: hidden;
}

.preloader-inner {
    width: 100%;
    height: 100%;
    display: grid;
    place-content: center;
}

.preloader-inner img {
    height: 100px;
    width: auto;
    animation: pulseFade 2s ease-in-out infinite;
}

@keyframes pulseFade {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0;
        transform: scale(1.05);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.no-scroll {
    height: 100vh !important;
    overflow: hidden !important;
}

/* Terms */

.terms h1,
.terms h2,
.terms h3,
.terms h4,
.terms h5,
.terms h6 {
    font-weight: 300;
    color: black;
    margin-top: 4rem;
}

.terms p,
li {
    color: grey !important;
}

.terms-hero {
    height: 50vh;
    background-color: black;
    background-image: url(../img/bg1.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: row;
    align-items: end;
    padding-bottom: 7rem;
    position: relative;
}

.terms-hero::after {
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000000;
    background: linear-gradient(
        0deg,
        rgba(0, 0, 0, 1) 0%,
        rgba(0, 0, 0, 0.41) 100%
    );
}

.terms-hero-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.terms-hero h3 {
    color: #ffffff;
    -webkit-text-stroke-color: #ffffff;
    font-size: 64px;
    line-height: 74px;
    letter-spacing: -1.28px;
    margin-bottom: 0px;
    font-weight: 400;
}
