
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    font-family: sans-serif;
}
a{
    text-decoration: none;
    color: black;
}

html, body{
    height: 100%;
    width: 100%;
}
.main{
    position: relative;
    height: 100%;
}
#banner{
    background-image: url("assets/images/Deposits.jpg");
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 60vh;
    position: relative;
}
#banner #banner-ctnt{
    text-transform: capitalize;
    width: 35%;
    margin: 5% auto;
    margin-left: 5%;
    position: absolute;
}
#banner #banner-ctnt h1{
    font-size: 2.5rem;
    font-weight: 600;
    color: black;
    position: relative;
}

#banner #banner-ctnt p{
    margin-top: 2rem;
    font-size: 1rem;
    font-weight: 600;
    color: rgb(61, 61, 61);
}
.breadcrumb{
    padding-left: 5%;
    padding-top: 1rem;
}
.breadcrumb .breadcrumb-item{
    font-size: 1.5rem;
    cursor: pointer;
}
.hero-main{
    <!-- height: 70vh; -->
}
.hero-main .s-account-dets{
    display: flex;
    padding: 0 5%;
    padding-bottom: 2rem;
}
.s-account-dets h1{
 font-size: 2rem;
 text-transform: uppercase;
 font-weight: 600;
 flex-basis: 30%;
}
.s-account-dets span{
    color: greenyellow;
}
.hero-main .container-fluid{
        box-shadow: 0px 7px 5px  rgba(211, 211, 211, 0.851);
}
.s-account-dets p{
    position: relative;
    flex-basis: 65%;
    font-size: 1rem;
    font-weight: 300;
}
.s-account-dets p::before{
    content: "";
    position: absolute;
    top: 0;
    left: -50px;
    height: 100%;
    width: 1px;
    background-color: greenyellow;
}

.hero-main .container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
    grid-gap: 40px;
    margin: 3rem 0;
    padding: 4rem 10%;
    border-radius: 1rem;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}
.container .box{
    padding: 1rem;
    position: relative;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
    min-height: 55vh;
}
.hero-main .container div img, .items-container div h3, .items-container div button{
    display: block;
    margin-inline:auto ;
    text-align: center;
    margin-bottom: 1rem;
}
.container .box h3{
    margin-top: 1rem;
    font-size:1.5rem;
}
.hero-main .container div button{
    font-size: 1rem;
    font-weight: bold;
    padding: .6rem 1.5rem;

}

.content{
    width:100%;
    height: 10rem;
}
.account-info{
    padding-top: 5rem;
    padding-inline: 5%;
}
.account-info div{
    margin: 3rem 0;
}
.account-info h2{
    font-size: 1.7rem;
    font-weight: 600;
    margin-left: 2rem ;
    margin-bottom: 2rem;
}
.account-info h3{
    font-size: 1.5rem;
    margin-left: 2rem ;
}
.account-info ul li{
    font-size: 1rem;
    font-weight: bold;
    list-style: none;
}
.account-info ul li i{
    font-size: .5rem;
    color: greenyellow;
    margin-right: 1rem;
    margin-bottom: 1rem
}
.container .tab-titles{
    margin-top: 5rem;
    display: flex;
    gap: 3rem;
    justify-content: flex-start;
    align-items: start;
    /* position: relative; */
    margin-bottom: 3rem;
    
}
.tab-titles .tab-links{
    font-size: 1.2rem;
    cursor: pointer;
    font-weight: 400;
    position: relative;
}


.tab-links::after{
    content: "";
    width: 0;
    height: .2rem;
    border-radius: 1rem;
    background: green;
    position: absolute;
    left:0;
    bottom: -1rem;
    transition: all ease .5s;
 }
 
 .tab-links.active-link{
     position: relative;
    font-weight: 700;
    color: green;
}
 .tab-links.active-link::after{
     width: 100%;
    }
    .fa-circle{
        font-size: .5rem;
    }
    .content-container{
        height: 40vh;
        width: 100%;
    }
    .tab-contents ol li{
        font-weight: 50;
        font-size: 1.5rem;
    }
    .tab-contents{
        display: none;
    }
    .tab-contents.active-tab{
        transition: all ease 1.5s;
        display: block;
    }
    .breadcrumb .breadcrumb-item{
        font-size: 1rem;
        margin-left: 1%;
    }
    #contact-det h2{
        text-align: center;
        text-transform: capitalize;
        /* color: green; */
        font-size: 3rem;
        font-weight: 600;
        word-spacing: .01rem;
    }
    #contact-det h2 span{
        color: greenyellow;
        font-size: 3.5rem;
    }
    
    #contact-det .det-icons{
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 4rem;
        margin-bottom: 2rem;
        gap: 10rem;
    }
    .det-icons .circle{
        height: 150px;
        width: 150px;
        border: 1px solid #ababab;
        border-radius: 50%;
        position: relative;
    }
    .circle i{
        font-size: 5rem;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: darkslategrey;
    }
    .det{
        margin-bottom: 5rem;
    }
    .det p{
        font-size: 2rem;
        font-weight: 700;
        position: absolute;
        color: darkslategrey;
        margin: 1rem 1.5rem;
    }
    @media only screen and (max-width: 768px){
        #banner #banner-ctnt {
    text-transform: capitalize;
    width: 46%;
    margin: 5% auto;
    margin-left: 5%;
    position: absolute;
}
#banner #banner-ctnt h1 {
    font-size: 2rem;
}
#banner #banner-ctnt p {
    font-size: 0.8rem;
}
.s-account-dets h1 {
    font-size: 1.5rem;
    flex-basis: 23%;
}
.s-account-dets p {
    flex-basis: 77%;
    font-size: 0.8rem;
}
    }
    @media only screen and (max-width: 500px){
        #banner #banner-ctnt h1 {
    font-size: 1.5rem;
}
.hero-main .s-account-dets {
    flex-direction: column;
}
.account-info {
    padding-top: 0rem;
    padding-inline: 2%;
}
.account-info h2 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}
.account-info ul li {
    font-size: 0.9rem;
    font-weight: 500;
    list-style: none;
}
.account-info h2 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}
.account-info h3 {
    font-size: 1rem;
    margin-left: 2rem;
}
    }