*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.main_section{
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url(/assets/Branding/Founder_Bio_bg.png) no-repeat center/cover;

}
.back_icon{
    width: 100%;
    height: auto;
    padding-left: 50px;
    align-items: center;
    display: flex;
    gap: 20px;
    
}
.back_icon a{
    text-decoration: none;
    list-style: none;
    font-family: "Figtree", sans-serif;
    font-size: 18px;
    font-weight: 200;
    color: #022C22;
}
.founder_wrapper{
    width: 80%;
    height: 90%;
    padding: 20px 20px;
    background-color: aquamarine;
}
.founder_bio_wrapper{
    width: 80%;
    height: auto;
    padding: 20px 20px;
    background-color:#FFF7ED ;
    border-radius: 24px;
    margin-top: 80px;
    align-items: center;
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.header_3{
    width: 100%;
    height: auto;
    margin: 0 auto;
    display: flex;
    border-bottom: .2px solid #022c222e;
    align-items: center;
    gap: 10px;
    padding-top: 50px ;
    padding-bottom: 20px;
    font-family: "Figtree", sans-serif;
    font-weight: 100;
}
.bio_container{
    width: 90%;
    height: 800px;
    
    margin: 0 auto;
}
.founder_img{
    margin-top: 50px;
    margin-bottom: 20px;
}
.details{
    height: auto;
    width: auto;
    display: flex;
    flex-direction: column;
    font-family: "Figtree", sans-serif;
    margin-bottom: 30px;
}
.details h3{
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 10px;
}
.details p{
    font-size: 16px;
    font-weight: 100;
    color: #022c225b;
}
.founder_data{
    height: auto;
    width: 100%;
    display: flex;
    flex-direction: row;
    font-family: "Figtree", sans-serif;
    margin-bottom: 50px;
}
.data{
    width: 20%;
    height: auto;
    
    font-weight: 400;
    color: #022C22;

}
.value{
    width: 80%;
    height: auto;
    
    font-weight: 100;
    color: #022c2287;
}

/*Mobile responsiveness*/
@media (max-width: 768px) {
    .main_section{
        height: auto;
        padding: 20px;
    }
    .founder_wrapper{
        width: 100%;
        height: auto;
    }
    .founder_bio_wrapper{
        width: 90%;
        height: auto;
        padding: 20px;
    }
    /* .header_3{
        flex-direction: column;
        align-items: center;
    } */
    .bio_container{
        width: 100%;
        height: auto;
    }
    .founder_img{
        width: 100%;
        height: auto;
    }
    .founder_data{
        flex-direction: column;
    }
    .value{
        width: 100%;
    }
    .data{
        
        width: 100%;
        margin-bottom: 20px;
    }
    .back_icon{
        width: 100%;
        height: auto;
        padding-left: 10px;
        align-items: center;
        display: flex;
        gap: 20px;
        
    }
}