@font-face{
    font-family: "Nunito";
    src: url("./files/fonts/Others/Nunito-Black.ttf");
}

@font-face{
    font-family: "BS";
    src: url("./files/fonts/Others/BalsamiqSans.ttf");
}

@font-face{
    font-family: "Charlie Text";
    src: url("./files/fonts/charlie_text/charlie-text-3.ttf");
}

@font-face{
    font-family: "Open Sans";
    src: url("./files/fonts/Open_Sans/static/OpenSans-Medium.ttf");
}

@font-face{
    font-family: "Open Sans Bold";
    src: url("./files/fonts/Open_Sans/static/OpenSans-Bold.ttf");
}

*{
    padding: 0px;
    margin: 0px;
}

body{
    font-family: 'Charlie Text','Open Sans', sans-serif;
}



/* Header */

header{
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    box-shadow: 0px 10px 5px -5px rgba(85, 85, 85, 0.2);
    backdrop-filter: blur(100px);
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    justify-content: center;
}

.header{
    width: 90%;
    padding: 14px 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.title{
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
}

.title-logo img{
    height: 45px;
}

.title-name{
    display: none;
    font-size: 30px;
    font-family: 'BS';
    font-weight: bolder;
    color: #072A6C;
}

.menu{
    display: flex;
    align-items: center;
    gap: 24px;
}

.menu a{
    text-decoration: none;
    color: unset;
}

.menu-option{
    font-size: 15px;
    cursor: pointer;
}

.menu-option:hover{
    color: steelblue;
}

.selected{
    color: #072A6C;
}

.header-button{
    display: flex;
    align-items: center;
    gap: 7px;
}

.header-button button{
    width: 110px;
    height: 42px;
    border: none;
    border-radius: 3px;
    font-size: 12px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: white;
    background: #072A6C;
    cursor: pointer;
}

.header-menu{
    display: none;
}

.header-menu button{
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 40px;
    background: transparent;
    cursor: pointer;
}

.header-menu button img{
    height: 21px;
}


/* Mobile Menu */


.mobile{
    position: fixed;
    inset: 0px;
    padding: 35px 30px;
    backdrop-filter: saturate(180%) blur(20px);
    background: rgb(251, 251, 253, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 40px;
    transform: translateY(-20%);
    opacity: 0;
    visibility: hidden;
    transition: 0.5s all ease-in-out; 
}

.mobile-logo{
    width: 100%;
    text-align: right;
}

.mobile-logo button{
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 40px;
    background: transparent;
    cursor: pointer;
}

.mobile-logo button img{
    height: 17px;
}

.mobile-menu{
    width: 100%;
}

.mobile-option{
    padding-top: 10px;
    font-size: 15px;
    cursor: pointer;
}

.mobile-selected{
    color: #072A6C;
}

.mobile-buttons{
    display: flex;
    align-items: center;
    gap: 7px;
}

.mobile-logo, .mobile-menu, .mobile-buttons{
    opacity: 0;
    visibility: hidden;
    transition: 1s all ease-in-out;
}

.mobile-buttons button:first-child{
    width: 110px;
    height: 45px;
    border: none;
    border-radius: 3px;
    font-size: 12px;
    color: white;
    background: #072A6C;
    cursor: pointer;
}

.mobile-buttons button:last-child{
    width: 100px;
    height: 45px;
    border: none;
    border-radius: 3px;
    box-shadow: 0px 1.6px 3.6px rgb(0 0 0 / 14%), 0px 0px 2.9px rgb(0 0 0 / 12%);
    font-size: 13px;
    font-weight: 600;
    color: #2b2b2b;
    background: white;
    cursor: pointer;
}


/* Extra */


.extra{
    display: flex;
}

.extra img{
    width: 100%;
    min-height: 190px;
    object-fit: fill;
}


/* headin */

.headin{
    background-image: url(./files/images/money.jpg);
    background-position: center;
    background-size: cover;
    display: flex;
    justify-content: center;
}

.headin-content{
    width: 85%;
    color: white;
    padding: 140px 0px 40px 0px;
}


.headin-name{
    font-size: 13px;
    text-transform: uppercase;
}

.headin-title{
    width: 60%;
    font-size: 60px;
    font-family: 'Open Sans Bold';
    font-weight: bolder;
    padding: 0 0 14px 0;
}

.headin-data{
    width: auto;
}

.headin-pane{
    display: flex;
    gap: 14px;
}

.headin-logo{
    padding-top: 3px;
}

.headin-logo img{
    height: 16px;
}

.headin-subname{
    font-size: 14px;
}

.headin-quote{
    padding: 50px 0px 10px 0px;
    font-size: 14px;
    font-style: italic;
}


/* Finance */


.finan{
    color: white;
    background: #072A6C;
    display: flex;
    justify-content: center;
}

.finan-contain{
    width: 85%;
    padding: 80px 0px;
}

.finan-name{
    font-size: 30px;
    text-align: center;
}

.finan-content{
    padding-top: 4px;
    display: flex;
    justify-content: center;
}

.finan-subname{
    width: 60%;
    text-align: center;
    font-size: 15px;
}


/* Content */


section{
    display: flex;
    justify-content: center;
}

.content{
    width: 100%;
}


/* loan */


.onloan{
    display: flex;
    justify-content: center;
}

.loan{
    width: 85%;
    padding: 100px 0px;
}

.loan-title{
    text-align: center;
    font-size: 40px;
    font-weight: bolder;
}

.loan-headin{
    display: flex;
    justify-content: center;
}

.loan-headins{
    width: 60%;
    padding-top: 7px;
    text-align: center;
    font-size: 14px;
}

.loan-content{
    padding: 40px 0px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 50px;
}

.loan-pane{
    width: 300px;
    padding: 40px;
    box-shadow: 0px 0px 10px gainsboro;
}

.loan-name{
    font-size: 18px;
    font-weight: 600;
    color: #072A6C;
}

.loan-subname{
    padding-left: 14px;
    font-size: 14px;
    text-align: justify;
    text-justify: inter-word;
}

.loan-subname ul li{
    padding-top: 5px;
}


/* Application */


.on-app{
    display: flex;
    justify-content: center;
}

.app{
    width: 85%;
    padding: 120px 0px;
}

.app-headin{
    width: auto;
}

.app-title{
    font-size: 29px;
    font-weight: 600;
    color: #444;
}

.app-subname{
    padding: 7px 0px 27px 0px;
    font-size: 16px;
}

.app-content{
    padding: 20px 0px;
    display: flex;
}

table{
    width: 100%;
    border-collapse: collapse;
}

th{
    text-align: left;
    font-size: 13px;
    color: #072A6C;
}

th:nth-child(3){
    min-width: 70px;
}

th, td{
    padding: 20px 12px;
    border-bottom: 1px solid darkgray;
}

td{
    font-size: 13px;
}

td button{
    width: 110px;
    height: 43px;
    border: none;
    border-radius: 30px;
    font-size: 12px;
    color: white;
    background: dodgerblue;
    cursor: pointer;
}


/* footer */

footer{
    color: white;
    background: #222;
    display: flex;
    justify-content: center;
}

.footer{
    width: 85%;
    padding: 100px 0px 50px;
}

.footer-headin{
    padding: 0px 0px 30px 0px;
    border-bottom: 1px solid darkgray;
}

.footer-logo{
    width: 100px;
    height: 100px;
    border-radius: 100px;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-logo img{
    height: 50px;
}

.footer-title{
    padding: 10px 0px 7px 0px;
    font-size: 30px;
    font-weight: bold;
}

.footer-data{
    width: 70%;
    font-size: 12px;
    text-align: justify;
    text-justify: inter-word;
}

.footer-contain{
    padding-top: 17px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-subname{
    font-size: 14px;
    color: gainsboro;
}

.footer-content{
    width: auto;
    padding: 40px 0px 10px 0px;
}

.footer-button{
    display: flex;
    gap: 8px;
}

.footer-button button:first-child{
    width: 110px;
    height: 40px;
    border: 2px solid white;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 600;
    color: white;
    background: transparent;
    cursor: pointer;
}

.footer-button button:last-child{
    width: 110px;
    height: 40px;
    border: none;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 600;
    color: white;
    background: #072A6C;
    cursor: pointer;
}

.footer-endless{
    padding-bottom: 20px;
    font-size: 12px;
}


/* @Media */


/* 1180px */

@media screen and (max-width: 1180px) {

    .headin-title{
        width: 70%;
    }
    
}

/* 1150px */

@media screen and (max-width: 1150px) {

    .menu, .header-button{
        display: none;
    }

    .header-menu{
        display: block;
    }
    
}

/* 980px */

@media screen and (max-width: 980px) {

    .headin-title{
        width: auto;
        font-size: 40px;
    }

    .finan-subname{
        width: 100%;
    }

    .loan-pane{
        width: 270px;
    }
    
}

@media screen and (max-width: 900px) {

    .loan{
        width: 90%;
        padding: 50px 0px;
    }

    .loan-headins{
        width: 100%;
    }

    .loan-content{
        gap: 30px;
    }

    .loan-pane{
        width: 100%;
    }

    .app{
        width: 90%;
        padding: 60px 0px 100px;
    }

    .footer-data{
        width: auto;
    }
    
}

/* 750 */

@media screen and (max-width: 650px) {

    .headin{
        color: white;
    }

    .xm-content{
        display: block;
    }

    .xm-box{
        width: auto;
    }

    .xm-box:not(:first-child){
        padding-top: 40px;
    }
    
}

/* 600px */

@media screen and (max-width: 600px) {

    .footer{
        display: block;
    }

    .footer-headin{
        width: auto;
        border-right: none;
    }
    
}

/* 500px */

@media screen and (max-width: 500px) {

    .headin-title{
        font-size: 30px;
    }

    .onsection .content{
        width: 100%;
    }

    .savin{
        padding: 40px 30px;
    }

    .box-content{
        gap: 20px;
    }

    .box-on{
        padding-left: 4px;
    }

    .box-logo{
        width: 30px;
        height: 30px;
        font-size: 13px;
    }

    .box-line{
        margin-left: 13.5px;
    }

    .xm-subname{
        width: auto;
    }

    th:nth-child(2), td:nth-child(2), th:nth-child(3), td:nth-child(3){
        display: none;
    }

    td button{
        width: 90px;
        height: 34px;
    }
    
}

@media screen and (max-width: 350px) {

    .headin-title{
        font-size: 24px;
    }
    
}