*, ::after, ::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
    min-width: 100vw;
}

body{
    background-color: white;
    width: 100%;
    overflow-x: hidden;
    font-family: "Poppins", sans-serif;
    min-height: 100vh;
    padding: 0;  
}



/* --------- This is the Fifth section or the bank-story section --------- */
.last-section{
    background-color: #ddd3d3;
    width: 100%;
    min-height: 31.25rem;
    height: fit-content;
    margin-top: 0;
    display: flex;
    justify-content: center;
    align-items: center ;
}

.last-section .section-wrapper{
    max-width: 43.75rem;
    height: 15rem ;
    display: flex;
    align-items: center;
    gap: 6.25rem;
}

.last-section .section-wrapper .logo-story-wrapper{
    height: inherit;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.last-section .section-wrapper .logo-story-wrapper .ls-logo{
    height: 4.375rem;
    width: 5rem;
}

.last-section .section-wrapper .logo-story-wrapper .bank-story{
   
    width: 31.25rem;
    color: rgba(0, 0, 0, 0.5);
    font-size: 0.90rem; 
    line-height: 1.6rem;
}

.last-section .section-wrapper .links-wrapper{
    height: inherit;
    display: inline-block;
    max-width: 9.375rem;
}

.last-section .section-wrapper .links-wrapper .links{
    display: inline-block;
    position: relative;
    max-width: 6.25rem;
    color: #696f73;  
}

.last-section .section-wrapper .links-wrapper .links::after{
    content: '';
    height: 0.1875rem;
    width: 1.875rem;
    background-color: #0000009c;
    position: absolute;
    top: 120%;
    left: 0;  
}

.last-section .section-wrapper .links-wrapper ul {
    margin-top: 1.25rem;
    line-height: 3.125rem;
    list-style-type: none;
    font-size: 0.90rem; 
    color: rgba(0, 0, 0, 0.5);
}

.last-section .section-wrapper .links-wrapper ul li a{
    text-decoration: none;
    color: rgba(0, 0, 0, 0.5);
}

.last-section .section-wrapper .links-wrapper ul li a:hover{
    color: black;
}



/* --------- This is the beginning of all the Media queries --------- */

@media (max-width: 430px){

    /*  This is the styling of the mobile navigation nav-bar */

    html{
        width: 100%;
        overflow-x: hidden;
    }

    header .navbar{
        width: 100%;
    }


    /* styling of the story and Link section(last section) */
    
    .last-section{
        width: 100%;
        min-height: 31.25rem;
        justify-content: start;
        padding-top: 3rem;
    }
    
    .last-section .section-wrapper{
        width: 100%;
        min-height: inherit ;
        flex-direction: column;
        justify-content: start;
        align-items: start;
        gap: 1.25rem;
    }

    .last-section .section-wrapper .logo-story-wrapper{
        height: 12.5rem;
        margin-left: 1rem;
    }
    
    .last-section .section-wrapper .logo-story-wrapper .ls-logo{
        height: 2.5rem;
        width: 2.5rem;
    }
    
    .last-section .section-wrapper .logo-story-wrapper .bank-story{
        width: 90%;
        font-size: 0.875rem;
    }
    
    .last-section .section-wrapper .links-wrapper{
        height: inherit;
        margin-left: 1rem;
    }

    .last-section .section-wrapper .links-wrapper  .links{
        font-size: 1rem; 
        margin-left: 0;   
    }
    
    .last-section .section-wrapper .links-wrapper ul{
        margin-left: 0;
        margin-top: 1.25rem;
        line-height: 2rem;
        font-size: 0.875rem;
    }
}


/* ---------- This is the styling from 431px to 820px screen size ------- */


@media (min-width: 431px) and (max-width: 820px){

    /*  This is the styling of the mobile navigation nav-bar */

   html{
       width: 100%;
       overflow-x: hidden;
   }

   header .navbar{
       width: 100%;
   }

    /* -- styling of the story and Link section(last section)--- */
    
    .last-section{
        height: 31.25rem;
        margin-top: 0;
    }

    .last-section .section-wrapper{
        width: 70%;
        justify-content: space-between;
        gap: 1.875rem;
    }
   
    .last-section .section-wrapper .logo-story-wrapper .bank-story{
        width: 21.875rem;
        font-size: 0.90rem; 
    }

    .last-section .section-wrapper .links-wrapper{
        height: inherit;
        min-width: 6.25rem;
    }
}



/* ---------- This is the styling from 821px to 1024 screen size ------- */

@media (min-width: 821px) and (max-width: 1024px){

     /*  This is the styling of the mobile navigation nav-bar */

    html{
        width: 100%;
        overflow-x: hidden;
    }

    header .navbar{
        width: 100%;
    }

    /* -- styling of the story and Link section(last section)--- */
    
    .about-last-section{
        height: 31.25rem;
        margin-top: 0;
    }

    .about-last-section .section-wrapper{
        width: 70%;
        justify-content: space-between;
        gap: 1.875rem;
    }
   
    .about-last-section .section-wrapper .logo-story-wrapper .bank-story{
        width: 28.125rem;
        font-size: 0.90rem; 
    }

    .about-last-section .section-wrapper .links-wrapper{
        height: inherit;
        min-width: 6.25rem;
    }
}