@import url('fonts.css');
@import url('color.css');

* {
    margin: 0;
    padding: 0;
    font-family: "Roboto";
    letter-spacing: 0.5px;

}

nav {
    /* background-color: red; */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
}

nav .nav-item {
    /* background-color: yellow; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

nav .nav-item img{
    width: 25px;
}

nav .nav-item p {
    font-size: 13px;
    font-weight: 500;
    margin-top: 5px;
}

nav .logo img{
    width: 200px;
}

.hero {
    height: 400px;
    background-image: url(/static/images/city.jpg?x=1);
    background-size: cover;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 25px;
      background-color: rgba(0, 0, 0, 0.4); /* tint color */
  background-blend-mode: overlay;
}

.hero h2 {
    font-size: 40px;
}

.hero p {
    font-size: 18px;
    margin: 20px 0 30px 0;
    line-height: 25px;
}

.hero a {
    text-decoration: none;
    color: white;
    border: 1px solid white;
    padding: 15px 20px;
    width: fit-content;

}

.confidence {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.confidence p{
    margin-top: 15px;
    font-size: 16px;
    line-height: 25px;
    text-align: center;
}

.confidence h2 {
    color: #2b4069;
}

.vertical-container .vertical-card {
    background-color: rgb(241, 241, 241);
    padding: 20px 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-size: 16px;
    border-radius: 4px;
    margin: 20px 0;

}

.vertical-container .vertical-card img {
    width: 50px;
}

.bank-image {
    height: 300px;
    background-image: url(/static/images/bank.jpeg?x=54);
    background-position: -50px;
    background-size: cover;
}

.news {
    padding: 30px 0;
    background-color: rgb(241, 241, 241);
}

.news h4 {
    margin-bottom: 10px;
    color: var(--light-green);
}

.news div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.news div h2 {
    text-align: center;
    font-size: 22px;
}

.news .the-news {
    background-color: white;
    padding: 20px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 2px rgba(0, 0, 0, 0.165);
}

.the-news h3 {
    text-align: center;
    color: #2b4069;
}

.the-news p {
    font-size: 16px;
    line-height: 25px;
    margin-top: 10px;
}

.news-container img {
    width: 300px;
}

.news-container {
    margin: 40px 10px 0 10px;
    box-shadow: 2px 2px 2px 2px rgba(0, 0, 0, 0.165);
    
}

.news-container .logo-news {
    width: 100%;
    padding: 100px 0;
    background-color: rgb(241, 241, 241);
}


footer {
    background: var(--secondary-blue);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 10px 0;
    font-size: 15px;
    line-height: 25px;
}

.drop-down-menu {
    position: absolute;
    background-color: rgb(241, 241, 241);
    width: 100%;
    margin-top: 70px;
    padding-bottom: 10px;
    display: none;
}

.drop-main li {
  padding: 10px 20px; /* spacing */
  font-size: 14px;
  list-style: none;
  border-bottom: 1px solid #ccc; /* border between items */

}


.drop-sub {
    margin-top: 15px;
}

.drop-sub li {
  padding: 5px 20px; /* spacing */
  font-size: 12px;
  list-style: none;
}


.popups-container {
    background-color: rgba(0, 0, 0, 0.558);
    position: fixed;
    height: 100%;
    width: 100%;
    top: 0;
    display: none;
}

.login-popups {
    background-color: white;
    margin: 0px 20px;
    display: none;
}

.login-popups form .login-container {
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.login-popups h3 {
    font-size: 24px;
    text-align: center;
    margin-bottom: 15px;
    color: #062f43;
}

.login-popups input {
    height: 50px;
    padding: 0 10px;
    font-size: 16px;
    margin-bottom: 15px;
    border: 2px solid rgba(0, 0, 0, 0.275);
    border-radius: 4px;
}

.login-popups button {
    height: 50px;
    border: 2px solid var(--border-green);
    color: var(--border-green);
    font-weight: bold;
    font-size: 16px;
    background-color: white;
}

.login-popups .mini-line {
    border-bottom: 2px solid rgba(0, 0, 0, 0.166);
    margin: 15px 0;
}

.login-popups .underline {
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    
}

.login-popups .underline a {
    text-decoration: none;
    color: rgba(0, 0, 0, 0.661);
    font-size: 14px;
}

.login-popups .forgot-username {
    text-align: center;
    font-size: 14px;
    margin-top: 15px;
    color: rgba(0, 0, 0, 0.661);
}

.close-button {
    display: flex;
    justify-content: end;
}

.close-button img {
    width: 40px;
    margin: 10px 10px 10px 0;

}






































body.menu-open {
    overflow: hidden !important; /* Prevents the body from scrolling when the menu is open */
    background: #f0f0f0;
}


.button-disabled {
    background-color: #eaecef !important;
    color: #9695b7 !important;
    pointer-events: none !important;
}

.boxed-button-disabled {
    background-color: #eaecef !important;
    border: 1px solid #eaecef !important;
    color: #9695b7 !important;
    pointer-events: none !important;
}



/* input:focus {
    border: 1px solid var(--primary-blue) !important;
    outline: none !important;
} */


.force-label {
    top: 7px !important;
    bottom: 0px !important;
    left: 15px !important;
    font-size: 14px !important;
    opacity: 1 !important;
    color: var(--primary-blue) !important;
}



.toasts {    
    .status-toast{
        z-index: 10000;
        display: flex;
        position: fixed;
        bottom: 80px;
        right: 20px;
        background-color: #f6fbf6;
        border-radius: 6px;
        gap: 12px;
        padding: 15px 15px 15px 10px;
        width: 250px;
        font-size: 15px;
        align-items: flex-start;
        border: 1px solid #c8e6ca;

        img {
            width: 25px;
        }

        .extra-small {
            width: 20px;
            padding: 2.5px;
        }

        div {
            width: calc(100% - 50px);
        }

        .icon-container {
            display: flex;
            height: fit-content;
            width: 25px;
        }

        .toast-type {
            font-weight: bold;
            margin-bottom: 4px;
            color: var(--secondary-green);
        }


        .toast-note {
            line-height: 23px;
            color: #4d4d4d;
        }
    }

    .interactive-toast{
        z-index: 10000;
    
        display: flex;
        position: fixed;
        background-color: #e84b3dd8;
        border-radius: 4px;
        gap: 12px;
        left: 50%;
        transform: translateX(-50%);
        padding: 10px;
        align-items: flex-start;
        width: calc(100% - 70px);
        font-size: 15px;
        border: 1px solid #eaecef;
        pointer-events: none;

        img {
            width: 30px;
        }

        .icon-container {
            display: flex;
            height: fit-content;
            /* background-color: red; */
        }

        .toast-type {
            font-weight: bold;
            margin-bottom: 4px;
            color: white;
        }


        .toast-note {
            line-height: 23px;
            color: #d9d8d8;
            font-size: 14px;
        }
    }
}



.login-loader {
    background: white;
    margin: 0px 20px;
    display: none;

    .spin-container {
        display: flex;
        padding: 150px 20px;

        justify-content: center;
        align-items: center;
    }

    .spin {
        width: 50px;
        height: 50px;

        background-color: var(--primary-green); /* BLUE COLOR */
        mask-image: url('/static/icons/loading.apng');
        mask-repeat: no-repeat;
        mask-size: contain;
    }
}









.login-otp {
    background-color: white;
    margin: 0px 20px;
    /* display: none; */
}

.login-otp form .login-container {
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.login-otp h3 {
    font-size: 24px;
    text-align: center;
    margin-bottom: 15px;
    color: #062f43;
}

.login-otp input {
    height: 50px;
    padding: 0 10px;
    font-size: 16px;
    margin-bottom: 15px;
    border: 2px solid rgba(0, 0, 0, 0.275);
    border-radius: 4px;
}

.login-otp button {
    height: 50px;
    border: 2px solid var(--border-green);
    color: var(--border-green);
    font-weight: bold;
    font-size: 16px;
    background-color: white;
}


















@media (min-width: 768px) {
  body {
    display: none;
  }
}