/*----- FONT -----*/
@import url(../css/clash-display.css);

/* ========== VARIABLES ========== */
:root {
    --c-dark: #212529;
    --c-brand: #4e57d4;
    --c-brand-light: #6970dd;
    --c-brand-rgb: 78, 87, 212;
    --c-body: #727272;
    --font-base: "ClashDisplay", sans-serif;
    --box-shadow: 0px 15px 25px rgba(0,0,0,.08);
    --transition: all .5s ease;

    --SHADOW-02: 0 0.46875rem 2.1875rem rgba(90, 97, 105, 0.1), 0 0.9375rem 1.40625rem rgba(90, 97, 105, 0.1), 
    0 0.25rem 0.53125rem rgba(90, 97, 105, 0.12), 0 0.125rem 0.1875rem rgba(90, 97, 105, 0.1);
}

/*----- RESET & HELPERS -----*/
body {
    font-family: var(--font-base);
    line-height: 1.7;
    color: var(--c-body);
    position: relative;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    font-weight: 600;
    color: var(--c-dark);
    margin: 0;
    padding: 0;
}

a{
    text-decoration: none;
    color: var(--c-brand);
    transition: var(--transition);
}

ul {
    list-style: none;
    padding: 0;
}

a:hover {
    color: var(--c-brand-light);
}

.arrow__up {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    border: none;
    background-color: #4e57d4;
    cursor: pointer;
    position: fixed;
    bottom: 1rem;
    right: 2rem;
    z-index: 100;
    font-size: 1.8rem;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .2s ease-out;
    opacity: 0;
    pointer-events: none;
}

.arrow__up.active {
    bottom: 2rem;
    opacity: 1;
    pointer-events: auto;
}

.arrow__up .arrow__up-icon {
    color: white;
    transition: .2s ease-out;
}

.arrow__up:hover {
    background-color: #6970dd;
}

.arrow__up:hover .arrow__up-icon {
    transform: translateY(-2.5px);
}

.section__padding {
    padding-top: 80px;
    padding-bottom: 80px;
}

.title__section {
    margin-bottom: 50px;
}

.title__section .line {
    width: 100px;
    height: 2px;
    border-radius: 1rem;
    background-color: var(--c-brand);
    margin: 5px auto 12px;
}

.title__section p {
    max-width: 500px;
    margin: 0 auto;
}

.iconbox {
    width: 70px;
    height: 70px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: rgba(var(--c-brand-rgb), .1);
    color: var(--c-brand);
    font-size: 30px;
    border-radius: .2rem;
    flex: none;
}

.theme__shadow {
    box-shadow: var(--box-shadow);
}

img {
    max-width: 100%;
    height: auto;
}

.image-zoom {
    position: relative !important;
    overflow: hidden !important;
}

.image-zoom-wrapper {
    position: relative;
    overflow: hidden !important;
}

.image-zoom-wrapper img {
    transition: var(--transition);
} 

.image-zoom:hover img{
    overflow: hidden;
    transform: scale(1.1);
}



/*----- NAV SECTION -----*/
.navbar{
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    overflow: hidden;
}

.navbar .nav_logo {
    max-width: 280px !important;
    margin-left: -4rem !important;
    width: 100%;
    height: auto;
}

.navbar .nav_logo:focus {
    box-shadow: none;
    border: none;
    outline: none;
}

.navbar-toggler:focus {
    box-shadow: none !important;
}

.lni-grid-alt {
    font-size: 2rem;
}

.lni-cross-circle {
    font-size: 2rem;
    margin-top: 1rem;
}

.navbar .nav-link {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--c-dark);
}

.navbar .nav-link.active {
    color: var(--c-brand) !important;
}

.btn {
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    border-radius: 0;
    padding: 10px 24px;
}

.btn__brand {
    background-color: var(--c-brand);
    color: white;
    word-spacing: 5px;
    letter-spacing: .07rem;
    border-radius: .2rem;
    cursor: pointer;
    border-color: var(--c-brand);
    transition: var(--transition);
    border-radius: 3px;
}

.btn__brand--outline {
    background-color: white;
    color: var(--c-brand);
    border-radius: 3px;
}

.btn__brand--outline:active,
.btn__brand--outline:hover {
    border: 1px solid white;
    color: white;
}

.btn__brand:hover {
    background-color: var(--c-brand-light);
    border-color: white;
    color: white;
}

/* ----- HERO SECTION ----- */
#hero {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.hero__banner {
    background: linear-gradient(rgba(78, 87, 212, .85), rgba(78, 87, 212, .84)), url("../img/credit.jpg");
    background-position: top left;
    background-repeat: no-repeat;
    color: #4e57d4;

    height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-h1 {
    margin-bottom: 1.5rem;
}

.hero-h5 {
    margin-bottom: 2rem;
    letter-spacing: 1.5px;
}

.hero_buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}


/* SERVICE SECTION */
.services {
    position: relative;
    overflow: hidden;
    border-radius: .2rem;
}

.services::after {
    content: "";
    height: 40px;
    width: 40px;
    background: rgba(var(--c-brand-rgb), .2);
    position: absolute;
    bottom: 0;
    right: 0;
    transition: var(--transition);
}

.services:hover::after {
    width: 100%;
    height: 100%;
    background: var(--c-brand);
    z-index: -1;
}

.services:hover h5,
.services:hover p {
    color: white;
}

.services:hover .iconbox {
    background-color: rgba(255,255,255, .2);
    color: white;
}

#counter {
    background: linear-gradient(rgba(var(--c-brand-rgb), .807), rgba(var(--c-brand-rgb), .838));
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

/* ----- REVIEW SECTION ----- */
.review__head {
    position: relative;
}

.review__head::after {
    content: "";
    width: 28px;
    height: 28px;
    background-color: white; 
    position: absolute;
    bottom: -14px;
    transform: rotate(45deg);
}

.review__person img {
    width: 4rem;
}

.review__person small {
    font-weight: 600;
    text-transform: uppercase;
    color: var(--c-brand);
}

/* ----- STEPS SECTION ----- */
.step__img {
    width: 60%;

}

/* ----- TEAM SECTION ----- */
#faq .accordion .accordion-header:focus {
    border: none;
    outline: none;
}

/* ----- TEAM SECTION ----- */
.team__member--content {
    background-color: var(--c-brand);
    position: absolute;
    bottom: -24px;
    left: 50%;
    padding: 24px;
    width: calc(100% - 50px);
    transform: translateX(-50%);
    transition: var(--transition);
    opacity: 0;
}

.team__member:hover .team__member--content {
    opacity: 1;
    bottom: 24px;
}

/* ----- CONTACT SECTION ----- */
#contact {
    position: relative;
    z-index: 2;
}

#contact::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 70%;
    background: linear-gradient(rgba(var(--c-brand-rgb), .807), rgba(var(--c-brand-rgb), .838));
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: -1;
}

#contact .form-control {
    border-radius: 0 !important;
}

#contact .form-control:focus {
    box-shadow: none;
    border-color: var(--c-brand);
}

/* ----- FOOTER SECTION ----- */
footer {
    padding-top: 120px;
}

.footer__logo img {
    width: 18rem;
    margin-left: -3.5rem;
}

.footer-text-1 {
    width: 100%;
    max-width: 75%;
}

.social__icons {
    margin-top: 2rem !important;
    width: 100%;
    max-width: 60%;
    display: flex;
    justify-content: space-between;
}

.social__icons a {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, .1);
    border-radius: 100px;
}

.social__icons a:hover {
    background-color: var(--c-brand);
    color: white;
}

.footer__top {
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,.6);
}

.footer__middle {
    display: flex;
    justify-content: center;

}

.footer__bottom {
    padding-top: 10px;
    padding-bottom: 10px;
    text-align: center;
}

footer li, footer a, footer p {
    color: rgba(255,255,255,.7);
}

footer .line {
    width: 40px;
    height: 4px;
    background-color: var(--c-brand);
    margin-top: 12px;
    margin-bottom: 24px;
}

#footer .footer__bottom .right p {
    font-size: .5rem !important;
}

/* ----- SIGN UP SECTION ----- */
#signup {
    background: linear-gradient(rgba(244, 247, 250, .35),rgba(244, 247, 250, .35) ), url("../img/mine/signup-bg-stars.svg");
    background-repeat: no-repeat;
    min-height: 100vh;
    background-position: 100% 100%;
    width: 100%;
}

.form__title h1 {
    color: #0a2e65;
    word-spacing: 5px;
}

.signup__form {
    margin-top: 80px !important;
}

.signup__form h5 {
    color: #0a2e65;
}

.signup__form .form-control {
    border-radius: 0;
}

.signup__form .form-control:focus {
    box-shadow: 0 1px 8px 6px rgba(var(--c-brand-rgb), .438);
    border-color: var(--c-brand);
}

.signup__form span {
    font-size: 15px;
}

.signup__form a {
    font-weight: 500;
}

.signup__form .otp__inputs {
    box-sizing: border-box;
    width: 100%;
    gap: 1px;
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
}

.signup__form .otp__inputs input{
    width: 40px; /* Default for mobile */
    height: 50px;
    text-align: center;
    font-size: 1.8rem;
    border: 1px solid #ccc;
    border-radius: 5px;

    text-align: center;
    font-size: 20px;
    font-weight: 500;
    border: none;
    outline: none;
    background-color: rgba(var(--c-brand-rgb), .15) !important;
}

.signup__form .otp__inputs input:focus {
    box-shadow: none;
}

@media screen and (max-width:1200px) {
    .signup__form .otp__inputs input{
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    } 
}

@media screen and (max-width:574px) {
    .signup__form .otp__inputs input{
        width: 35px;
        height: 40px;
        font-size: 1.1rem;
        font-weight: 500;
    } 
}

@media screen and (min-width:767px) {
    .signup__form .otp__inputs input{
        width: 50px;
        height: 60px;
    } 

    .signup__form {
        margin-top: 40px !important;
    }
}


@media screen and (max-width:574px) {
    .iconbox {
        width: 50px;
        height: 50px;
        font-size: 25px;
    }

    .p-small {
        padding: 0px !important;
    }

    .navbar{
        z-index: 1000;
    }

    .navbar .nav_logo {
        max-width: 220px !important;
        margin-left: -1.5rem !important;
    }

    .nav__btn-box {
        padding-left: 1rem !important;
        justify-content: left !important;
    }
    
    .lni-grid-alt {
        font-size: 1.8rem;
    }
    
    .lni-cross-circle {
        font-size: 2rem;
        margin-top: 1rem;
    }
    
    .navbar .nav-link {
        font-size: 1.2rem;
        font-weight: 500;
        color: var(--c-dark);
    }

    /* ----- HERO SECTION ----- */
    .hero__banner {
        background-position: bottom center;
        height: 95vh;
    }
    
    .hero-h1 {
        margin-bottom: 1.5rem;
        font-size: 2.5rem;
        font-weight: 800;
        word-spacing: 3px;
        letter-spacing: 2px;
        margin-top: -2rem;
    }
    
    .hero-h5 {
        margin-bottom: 2rem;
        letter-spacing: 1px;
        font-size: 1rem;
    }
    
    .hero__banner .hero_buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 1.5rem !important;
    }

    .signup__form {
        margin-top: 40px !important;
    }
    
    /* ----- FOOTER SECTION ----- */
    footer {
        padding-top: 100px;
    }

    .footer__logo img {
        margin-left: -2.5rem;
    }

    .footer-text-1 {
        max-width: 100%;

    }

    .footer__middle {
        display: flex;
        justify-content: space-between;
        padding: 0 .5rem;
    }

    .footer-h5 {
        font-size: 1rem;
        font-weight: 500;
        letter-spacing: 1px;
    }

    .footer__top {
        padding-top: 10px !important;
        border-bottom: 1px solid rgba(255,255,255,.6);
    }


    .social__icons {
        width: 100%;
        max-width: 100%;
        padding: 0 1rem;
    }

}
.deposit__img {
    max-width: 50%;
}




/* DASHBOARD */
#profileImg {
    position: relative !important;
    width: 200px;
    height: 200px;
}

#profileIconBox {
    position: absolute;
    top: 150px;
    right: 90px;
    z-index: 5;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: gray;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

#profileIconBox .profileIcon {
    font-size: 25px;
    color: white;
    cursor: pointer;
}
