/*
 * File: user/style/AboutUsStyle.css
 * Author: Yash Balotiya
 * Description: This file contains all the styling part of the About Us Page.
 * Created on: 01/08/2024
 * Last Modified: 25/11/2024
**/

* {
    margin: 0;
    padding: 0;
    font-family: "Open Sans";
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Lato";
    margin: 0;
    font-weight: bold;
}

/* Main Content */
main {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Welcome Intro */
#introSection {
    display: flex;
    justify-content: space-between;
    width: 1200px;
    margin: 50px 0;
}

#introChild1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

#ngoImage1 {
    width: 600px;
}

#introSection div h1 {
    font-size: 50px;
    font-weight: 600;
    color: #064b69;
}

#introSection div p {
    height: 60px;
    font-size: 22px;
}

#wellnessBanner2 {
    width: 530px;
    height: 530px;
    border-radius: 15px;
}

/* About Us */
.infoDiv {
    width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 30px 0;
    text-align: justify;
}

.headingText {
    margin-bottom: 25px;
}

/* Founder */
#founderSection div {
    width: 100%;
    display: flex;
    padding: 40px;
    border-radius: 40px;
    background-color: #f3f2f3;
}

#founderSection div img {
    border-radius: 50%;
    width: 250px;
    margin-right: 40px;
    box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
}

/* Vision */
#vissionSection {
    width: 1200px;
    display: flex;
    justify-content: space-evenly;
    margin: 50px 0;
    text-align: justify;
}

#vissionSection div {
    width: 40%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Docs */
#docsSection img,
#docsSection iframe {
    width: 100%;
    height: 500px;
}

.card-header {
    width: 1200px;
}