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

body{
    font-family: 'Space Grotesk', sans-serif;
    width: 100vw;
    overflow-x: hidden;
    background-color: #EEF4FB;
}

.top-nav {
    background-color:#0D215D;
    color: #fff;
    display: flex;
    align-items: center;
    height: 70px;
    position: fixed;
    width: 100%;
    z-index: 999;
}

.top-nav ul{
    list-style: none;
    padding: 0;
    display: flex;
    align-items: center;
    flex-grow: 1;
    max-width: 1300px;
    margin-inline: auto
}
  
.icon{
    height: 30px;
    margin-right: 10px;
}

.top-nav li a {
    text-decoration: none;
    font-size: 16px;
    padding: 5px 10px;
    color: #B2B3B5;
    font-weight: 500;
    position: relative;
}

.nav-links::after{
    bottom: 2px;
    content: "";
    display: block;
    height: 2px;
    left: 50%;
    position: absolute;
    background: #FF6600;
    transition: width 0.3s ease 0s, left 0.3s ease 0s;
    width: 0;
}

.nav-links:hover{
    color:#FFFFFF;
}

.nav-links:hover::after{
    width: 100%;
    left: 0;
}

.flex-parent-container{
    display: flex;
    background-color: #FCFCFC;
    flex-direction: row;
    height: calc(100vh - 70px);
    position: relative;
}

.flex-left-side{
    flex: 1;
    display: flex;
}

.flex-left-side-content{
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
    width: 47%;
}

.container{
    max-width: 1300px;
    margin-inline: auto;
    padding-inline: 1.2rem;
}

.flex-left-side-content h3{
    font-weight: 500;
    font-size: 40px;
}

.flex-parent-container p{
    font-weight: 400;
}

.orange-text{
    color: #FF6600;
    font-weight: 500;
}

.text-break{
    display: block;
}

.get-started{
    background-color: #003399;
    color: #EEF4FB;
    border-style: none;
    width: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px;
    box-shadow: -4px 4px #FF6600;
    cursor: pointer;
}


.get-started img{
    height: 14px;
    width: 14px;
}

.flex-right-side{
    gap: 5px;
    align-items: center;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    display: flex;
    width: 50%;
    background-color: #0D215D;
}

.image{
    width: 10%;
    height: 100%;
    transition: width 1s ease;
}

.image-1{
    background: url(images/Rectangle\ 50\ full.png) no-repeat center/cover;
}

.image-2{
    background: url(images/Rectangle\ 53\ full.png) no-repeat center/cover;
}

.image-3{
    background: url(images/Rectangle\ 51\ full.png) no-repeat center/cover;
}

.expand {
    width: 80%;
}

.grid-container{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 15px;
}

.explore{
    margin: 50px 0 30px 0;
}

a{
    text-decoration: none;
}

.white-bg{
    background-color: #FFFFFF;
    padding-top: 20px;
}

.blue-bg{
    background-color: #0D215D;
}

.products{
    font-size: 25px;
    font-weight: 700;
}

.products-hover{
    background-color: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0px 23px 57px rgba(0, 0, 0, 0.08);
}

.products-hover:hover{
    background-color: #0D215D;
    color: #FFFFFF;
    cursor: pointer;
}

.products-hover:hover .active{
    display: none;
}

.products-hover:hover .hidden{
    display: block;
}

.products-services{
    margin-bottom: 70px;
    background-color: #EEF4FB;
}

.products-services-content, .our-values-content{
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.products-services-content img, .our-values-content img{
    width: 32px;
    height: 32px;
}

.hidden{
    display: none;
}

.products-services-content button{
    border: 0 white solid;
    background-color:  transparent;
    color: #003399;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    outline: 0;
    cursor: pointer;
    font-family: 'Space Grotesk', sans-serif;
}

.products-services-content button img{
    width: 18px;
    height: 18px;
}

.see-more-container{
    display: flex;
    justify-content: center;
    margin-top: 25px;
}

.see-more{
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #FF6600;
    border-style: none;
    gap: 3px;
    color: #FFFFFF;
    padding: 10px 24px;
    cursor: pointer;
    font-family: 'Space Grotesk', sans-serif;
}

.see-more-container img{
    width: 15px;
    height: 15px;
}

.why-bank-with-us{
    background-color: #FFFFFF;
}

.why-bank-with-us-flex-container{
    display: flex;
    flex-direction: row;
    align-items: center;
    }

.why-bank-with-us-flex-container-left-side{
    flex-basis: 30%;
}

.why-bank-with-us-flex-container-right-side{
    flex-basis: 50%;
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 70px;
}

.why-bank-with-us-flex-container-left-side img{
    height: 400px;
    width: 400px;
}

.check{
    width: 16px;
    height: 16px;
    margin-right: 2px;
}

.why-bank-with-us-bold-text{
    color: #00040B;
    font-size: 18px;
    font-weight: 700;
    display: flex;
    gap: 10px;
    align-items: center;
}

.why-bank-with-us-smaller-text{
    color:#2A2D33 ;
    font-size: 14px;
}

.bank-with-us-content{
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.bank-with-us-content:hover{
    box-shadow: 4px 13px 9px rgba(255, 102, 0, 0.1);
    cursor: pointer;
    background-color: #FFFFFF;
    transition: 0.3s;
    border-radius: 10px;
    padding: 8px;
}

.why-bank-with-us-title{
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.app-store-play-store-parent{
    padding-top: 30px;
}

.app-store-play-store-flex-container-right-side img{
    height: 400px;
    margin-bottom: -5px;
}

.app-store-play-store-flex-container{
    display: flex;
    flex-direction: row;
}


.app-store-play-store-flex-container-left-side{
    flex-basis: 50%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 15px;
}

.app-store-play-store-flex-container-left-side h3{
    font-size: 30px;
    font-weight: 400;
}

.app-store-play-store-flex-container-right-side{
    flex-basis: 50%;
    /* background-color: red; */
}

.app-store-play-store{
    display: flex;
    gap: 6px;
}



ul{
    list-style: none;
}

.footer{
    background-color: #0D215D;
    padding: 40px 0;
}

.row{
    display: flex;
}

.footer-col{
    width: 300px;
}


.footer-col h4{
    font-size: 18px;
    color: #EEF0F2;
    margin-bottom: 15px;
}

.kolomoni-flex{
    display: flex;
    align-items: center;
    gap: 5px;
    color: #EEF0F2;
}

.footer-col li a{
    text-decoration: none;
    color: #F6F9FF;
    font-size: 13px;
}

.footer-col p{
    color: #F6F9FF;
    font-size: 13px;
    padding: 10px;
}

.social-media-links{
    margin-top: 15px;
    width: 15px;
    height: 15px;
    cursor: pointer;
}

.contact-details{
    color: #FFFFFF;
    margin-top: 8px;
    font-size: 13px;
}

.financial-products-container{
    background: url(/assets/images/finance.jpg) no-repeat center center / cover;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 500px;
    position: relative;
}

.financial-products-content{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.financial-products-content-text{
    z-index: 10;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
}

.financial-products-content-text h3{
    font-size: 40px;
    text-align: center;
    font-weight: 700;
}

.financial-products-content-text p{
    font-weight: 400;
    font-size: 15px;
    text-align: center;
}

.digital-agency-flex-container{
    margin-top: 30px;
    margin-bottom: 80px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.digital-agency-parent{
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    grid-column-gap: 100px;
}

.digital-agency-content{
    width: 400px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
}

.digital-agency-content button{
    border: 0 white solid;
    background-color:  transparent;
    color: #FF6600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    outline: 0;
    cursor: pointer;
}

.digital-agency-content .learn-more img{
    width: 18px;
    height: 18px;
}

.digital-agency-parent img{
    width: 350px;
    height: 250px;
}

.digital-agency-img{
    margin-bottom: 30px;
}

.remittances-loan-investment-container{
    padding: 30px 0;
    background-color: #FFF4ED;
}

.remittances-loan-investment-flex-container{
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.remittances-loan-investment-content button{
    border: 0 white solid;
    background-color:  transparent;
    color: #FF6600;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    outline: 0;
    cursor: pointer;
}

.remittances-loan-investment-content .learn-more img{
    width: 18px;
    height: 18px;
}

.remittances-loan-investment-parent img{
    width: 350px;
    height: 250px;
}

.remittances-loan-investment-parent{
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.remittances-loan-investment-content{
    width: 500px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
}

.remittances-loan-investment-grid-container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.corporate-consultancy-container{
    background-color: #FFFFFF;
    padding: 30px 0;
}

.corporate-consultancy-flex-container{
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.corporate-consultancy-parent{
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 80%;
    grid-column-gap: 100px;
}

.corporate-consultancy-content{
    width: 500px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 15px;
}

.corporate-consultancy-content .open-account img{
    width: 18px;
    height: 18px;
}

.corporate-consultancy-parent img{
    width: 350px;
    height: 250px;
}

.corporate-consultancy-content button{
    border: 1px white solid;
    background-color:  #FF6600;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    outline: 0;
    cursor: pointer;
    padding: 8px;
    width: 200px;
    font-family: 'Space Grotesk', sans-serif;
}

.about-us-flex-parent{
    display: flex;
    justify-content: center;
    height: 600px;
    display: flex;
    align-items: center;
    font-size: 45px;
    position: relative;
    margin-bottom: 250px;
}

.about-us-main{
    background-color: #03184D;
}

.about-us-flex-content{
    display: flex;
    justify-content: center;
    text-align: center;
    padding-bottom: 70px;
}

.about-us-flex-content p{
    font-weight: 500;
    color: #FFFFFF;
}

.about-us-text-container{
    position: absolute;
    background-color: #FFFFFF;
    border-radius: 10px;
    width: 80%;
    min-height: 330px;
    padding: 30px 40px;
    top: 400px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0px 23px 57px rgba(0, 0, 0, 0.08);
}

.about-us-text-content{
    display: flex;
    align-items: center;
    color: #2A2D33;
    font-size: 16px;
}

.our-values{
    background-color: #FFFFFF;
    height: 570px;
}

.our-values-text{
    margin: 50px 0 30px 0;
}

.our-values-text p{
    font-size: 30px;
    font-weight: 700;
}

.digital-banking-flex-container{
    background-color: #03184D;
}

.digital-banking-flex-parent{
    display: flex;
    flex-direction: row;
    height: 100%;
    align-items: center;
}

.digital-banking-flex-left{
    flex-basis: 50%;
    display: flex;
}

.digital-banking-flex-left-content{
    color: #FFFFFF;
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 480px;
}

.digital-banking-flex-container h3{
    font-size: 45px;
}

.google-play-flex-container{
    display: flex;
}

.google-play-flex-content{
    display: flex;
    gap: 10px;
}

.google-play-flex-content img{
    width: 120px;
    height: 35px;
}

.digital-banking-flex-right{
    flex-basis: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(50% 50% at 50% 50%, #DFEAFF 0%, rgba(0, 51, 153, 0) 100%);
    width: 300px;
    height: 600px;
    border-radius: 50%;
}

.digital-banking-flex-right img{
    width: 350px;
    height: 400px;
}

.digital-banking-flex-right-content{
    display: flex;
    justify-content: center;
    align-items: center;
}

.kolomoni-app-text{
    margin: 50px 0 30px 0;
}

.kolomoni-app-flex-parent .double-image{
    width: 500px;
    height: 350px;
}

.kolomoni-app-flex-parent img{
    width: 400px;
    height: 395px;
}


.kolomoni-app-parent{
    background-color: #FFFFFF;
}

.kolomini-app-flex-container{
    display: flex;
    flex-direction: column;
    width: 100%;
}

.kolomoni-app-flex-parent{
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    margin-bottom: 50px;
    margin-top: 40px;
}

.kolomoni-app-flex-content{
    width: 400px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.save-flex-parent{
    background-color: #FFF4ED;
}

.request-bank-flex-parent{
    background-color: #FFFFFF;
}

.digital-banking-flex-left-content button{
    border-style: none;
    outline: 0;
    background-color: #FFFFFF;
    padding: 10px 25px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 3px;
}

.digital-banking-flex-left-content button img{
    width: 20px;
    height: 20px;
    display: flex;
}

.digital-banking-flex-left-content button:hover{
    background-color: #FF6600;
    color: #FFFFFF;
}


.kolomoni-pos-left-content img{
    height: 425.25px;
    width: 430.5px;
}

.kolomoni-pos{
    background-color: #FFF4ED;
    padding-bottom: 30px;
}

.kolomoni-pos-flex-content{
    display: flex;
    flex-direction: row;
    align-items: center;
}

.kolomoni-pos-left-content{
    flex-basis: 50%;
}

.kolomoni-pos-right-content{
    flex-basis: 50%;
}

.kolomoni-pos-right-content-text{
    display: flex;
    gap: 30px;
    height: 40px;
}

.kolomoni-pos-title{
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.kolomoni-pos-title p{
    font-weight: 700;
    font-size: 25px;
}

.kolomoni-pos-title h3{
    font-weight: 400;
    font-size: 17px;
}

.document-kolomomi-pos{
    background-color: #FFFFFF;
    padding-bottom: 30px;
}

.document-kolomoni-pos-flex-content{
    display: flex;
    flex-direction: row;
}

.document-kolomoni-pos-right-content img{
    height: 300px;
    width: 310px;
}

.document-kolomoni-pos-right-content{
    flex-basis: 50%;
}

.document-kolomoni-pos-left-content{
    flex-basis: 50%;
}

.document-kolomoni-pos-left-content-text{
    display: flex;
    flex-direction: column;
    height: 300px;
    justify-content: space-between;
}

.blue-text{
    color: #0D215D;
    font-weight: 700;
}

.help-center-flex-parent{
    display: flex;
    justify-content: center;
    height: 600px;
    align-items: center;
}

.help-center-bg{
    background: url(/assets/images/help\ center\ bg.jpg) no-repeat center center / cover;
}

.help-center-flex-content{
    display: flex;
    justify-content: center;
    text-align: center;
    color: #FFFFFF;
    flex-direction: column;
    gap: 10px;
}

.help-center-flex-content h3{
    font-weight: 700;
    font-size: 45px;
}

.faq-parent{
    display: flex;
    gap: 50px;
    padding: 30px 0;
}

.faq-flex-parent{
    display: flex;
}

.faq-left-side{
    flex-basis: 15%;
}

.faq-right-side{
    flex-basis: 85%;
}

.faq-flex-content{
    display: flex;
    flex-direction: column;
    gap: 17px;
    font-weight: 400;
    font-size: 14px;
}

.faq-top-text{
    margin-bottom: 20px;
    font-weight: 700;
    font-size: 32px;
}

.bullet-point{
    width: 7px;
    height: 7px;
}

.faq-flex-content p{
    display: flex;
    align-items: center;
    gap: 5px;
}

.loans-investment-bg img{
    height: 417px;
    width: 536px;
}

.get-loan button img{
    height: 20px;
    width: 20px;
    display: flex;
}

.get-loan button{
    outline: 0;
    border-style: none;
    display: flex;
    align-items: center;
    gap: 3px;
    cursor: pointer;
    padding: 10px 30px;
    color: #FFFFFF;
    background-color: #FF6600;
    font-family: 'Space Grotesk', sans-serif;
}

.get-loan h3{
    font-weight: 700;
    font-size: 25px;
}

.kolomoni-digital-bank-text{
    font-size: 22px;
    font-weight: 700;
    text-decoration: underline #FF6600;
}

.talk-to-us-parent{
    background-color: #FFF4ED;
}

.talk-to-us-flex-content{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.talk-to-us-left-side{
    flex-basis: 50%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.talk-to-us-right-side{
    flex-basis: 50%;
}

.talk-to-us-right-side img{
    height: 400px;
    width: 400px;
}

.talk-to-us-left-side-text{
    font-weight: 700;
    font-size: 30px;
}

.talk-to-us-left-side-top > p > img{
    height: 20px;
    width: 20px;
}

.talk-to-us-left-side p{
    display: flex;
    align-items: center;
    gap: 5px;
}

.talk-to-us-left-side-top{
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.accordion {
    background-color: #FFFFFF;
    cursor: pointer;
    /* width: 100%; */
    width: 900px;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    transition: 0.4s;
    font-weight: 500;
}
  
.active, .accordion:hover {
    background-color: #FFFFFF;
    font-weight: 700;
    color: #FF6600;
}
  
.panel{
    display: none;
    background-color: white;
    overflow: hidden;
}

.panel ul{
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
    line-height: 23px;
}

.panel ul li{
    display: flex;
    align-items: center;
    gap: 8px;
    list-style-type: none;
    font-weight: 300;
}


.hr{
    border-bottom: 1px solid #d1d1d2;
}

.hr-2{
    border-left: 1px solid #d1d1d2;
}

.panel{
    width: 80%;
}

.panel p{
    margin-bottom: 10px;
    font-weight: 300;
}

.faq-flex-content button{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faq-flex-content button img{
    width: 10px;
    height: 10px;
}

.business-personal-loans-parent{
    background-color: #FFF4ED;
    padding-top: 30px;
}

.business-personal-loans-text{
    font-weight: 500;
    font-size: 23px;
}

.business-personal-loans-flex-container{
    display: flex;
    align-items: center;
    justify-content: center;
}

.business-personal-loans-right img{
    height: 350px;
    width: 340px;
}

.business-personal-loans-left{
    flex-basis: 50%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.business-personal-loans-right{
    flex-basis: 50%;
}

.business-loans-container{
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 70%;
}

.business-loans-container:hover{
    background-color: #FFFFFF;
    box-shadow: 4px 13px 9px rgba(255, 102, 0, 0.1);
    padding: 8px;
    transition: 0.3s;
    cursor: pointer;
    border-radius: 10px;
}

.business-loans-container h3{
    display: flex;
    align-items: center;
    gap: 8px;
}

.why-invest-with-us-parent{
    background-color: rgba(13, 33, 93, 1);
    padding-bottom: 30px;
}

.why-invest-with-us-text{
    padding: 30px 0;
}

.why-invest-with-us-flex-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.why-invest-with-us-top-content{
    display: flex;
    gap: 20px;
}

.competitive-financial-value{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    background-color: #FFFFFF;
    width: 50%;
    text-align: center;
    border-radius: 10px;
    padding: 30px;
}

.competitive-financial-value img{
    height: 30px;
    width: 30px;
    margin-top: 10px;
}


.why-invest-with-us-bottom-content{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.why-invest-with-us-bottom-content h3{
    font-weight: 700;
    font-size: 25px;
}

.why-invest-with-us-bottom-content p{
    color: #FFFFFF;
    font-weight: 400;
}

.send-receive-parent{
    padding: 30px 0;
    background-color: rgba(19, 51, 93, 1);
}

.send-receive-content{
    background: url(/assets/images/Group\ 426.png) no-repeat center center / cover;
    width: 100%;
    height: 791px;
    color: #FFFFFF;
    display: flex;
    align-items: center;
}

.send-receive-flex-container{
    display: flex;
    flex-direction: column;
    height: 350px;
    justify-content: space-between;
}

.send-receive-top-text h3{
    font-size: 40px;
    font-weight: 500;
}

.send-receive-top-text p{
    font-weight: 400;
    font-size: 15px;
}

.send-receive-top-text{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.send-receive-bottom-text{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.send-receive-bottom-img{
    display: flex;
    gap: 20px;
}

.send-receive-bottom-text p{
    font-size: 12px;
}

.send-receive-bottom-text img{
    height: 40px;
    width: 150px;
}



/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
    .grid-container{
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: repeat(2, 1fr);
        gap: 15px;
    }

    .why-invest-with-us-top-content{
        display: flex;
        gap: 20px;
        flex-direction: column;
    }

}


/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (max-width: 768px) {

}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (max-width: 992px) {

}

