*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    overflow-x: hidden;
}
.hero-section {
    background: linear-gradient(#00000091, #00000091), url(Media/about-landing.jpeg);
    background-position: center;
    background-size: cover;
    min-height: 100vh;
    padding: 10px 4rem;
}
.btn-donate{
    border: 2px solid white;
    border-radius: 30px;
    padding: 10px 30px;
    font-size: large;
    font-weight: 500;
}
.words{
    color: white;
}
.words h1 {
    font-size: 70px;
    font-weight: 500;
}

.who{
    min-height: 100vh;
    padding-top: 2rem;
    background-color: #F5F5F5;
     padding: 10px 4rem;
     overflow: hidden;
}

.who h1, .our h1, .going h1{
    font-weight: 700;
    font-size: 60px;
    padding-bottom: 40px;
    border-bottom: 2px solid #6F4E37;
}

.who-left {
    font-weight: 700;
    color: #6F4E37;
    font-size: 25px;
    width: 40%;
}

.who-right {
    width: 60%;
    font-size: 20px;
}
.image{
     min-height: 50vh;
    height: auto;
    padding-top: 2rem !important;
    padding: 10px 4rem;
}
.image .pics{
    width: 30%;
    height: 30%;
}
.image .pics img{
    width: 100%;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
}
.what{
    background-color: #F5F5F5;
   min-height: 100vh;
    padding: 10px 2rem;
    overflow: hidden;
}

.what h1{
    font-weight: 700;
    font-size: 60px;
    padding-bottom: 20px;
}

.what h6 {
    padding-bottom: 30px;
    border-bottom: 2px solid #6F4E37;
    font-size: 20px;
    font-weight: 500;
}
.what-mission h3, .what-vision h3{
    color: #6F4E37;
    font-weight: 700;
    padding-bottom: 15px;
}
.what-mission p, .what-vision p{
     font-size: 20px;
    font-weight: 700;
}
.what-mission ul, .what-vision ul{
    font-size: larger;
}
.our{
     padding: 10px 4rem;
     min-height: 100vh;
    padding-top: 5rem;
    /* background-color: #F5F5F5; */
}
.founder-mid{
    width: 100%;
}
.founder-pic {
    width: 350px;
    height: 350px;
    border-radius: 50%;
    overflow: hidden !important;   /* THIS is what clips the image */
    flex-shrink: 0;
}

.founder-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.founder-word{
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 50px;
    padding-top: 20px;
}
.founder-text {
    font-size: 16px;
    line-height: 1.7;
    max-width: 100%;
    box-sizing: border-box;
    overflow-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
}

.founder-text p {
    max-width: 100%;
    margin: 0 auto;
}
.executives {
    padding: 10px 4rem;
    min-height: 100vh;
    background-color: #F5F5F5;
}

.pictures {
    height: 100%;
}

.pictures img {
    width: 100%;
    height: 400px;
    /* object-fit: contain; */
}

.pictures .card-body {
    display: flex;
    flex-direction: column;
}

.pictures .btn {
    margin-top: auto;
    width: 50%;
}


.going{
     padding: 10px 4rem;
    min-height: 100vh;
    background-color: #F5F5F5;
    padding-top: 2rem;
}
.going h4{
    padding-top: 20px;
    color: #6F4E37;
    font-weight: 700;
    font-size: 18px;
}
.going p{
    padding-top: 10px;
    font-size: 18px;
    font-weight: 600;
}
.going ul{
    font-size: 18px;
}
.partner{
    min-height: 50vh;
    padding: 10px 30px;
    text-align: center;
    background-color: #702805;
}
/* .parti{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
} */
.part-img{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    /* padding-top: 40px; */
   
}
.partner-images{
    /* border: 2px solid white; */
    border-radius: 10px;
}
.partner-images img{
    border-radius: 10px;
}
.question {
    padding: 10px 4rem;
    min-height: 50vh;
    background-color: #6F4E37;
    text-align: center;
    overflow-x: hidden;
}

.question h2 {
    font-weight: 700;
    font-size: clamp(28px, 4vw, 50px);
}
footer{
    background-color: black;
    color: white;
    height: 10vh;
    text-align: center;
}
footer p{
    font-size: larger;
}










@media (min-width: 200px) and (max-width:767px){
html, body {
    max-width: 100%;
    overflow-x: hidden;
}

.hero-section {
    background: linear-gradient(#00000091, #00000091), url(Media/about-landing.jpeg);
    background-position: center;
    background-size: cover;
    min-height: 100vh;
    padding: 10px 1rem;
}
.words{
    color: white;
}
.words h1 {
    font-size: 30px;
    font-weight: 500;
}

.who{
    min-height: 100vh;
    padding-top: 2rem;
    background-color: #F5F5F5;
    padding: 10px 1rem;
     overflow: hidden;
}

.who h1, .our h1, .going h1{
    font-weight: 700;
    font-size: 30px;
    padding-bottom: 40px;
    border-bottom: 2px solid #6F4E37;
}

.who-left {
    font-weight: 700;
    color: #6F4E37;
    font-size: 25px;
    width: 100%;
}

.who-right {
    width: 100%;
    font-size: 20px;
}
.image{
    min-height: 50vh;
    height: auto;
    padding-top: 2rem !important;
   padding: 10px 1rem;
}
.image .pics{
    width: 100% !important;
    height: auto;
}
.image .pics img{
    width: 100%;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
}
.what{
    background-color: #F5F5F5;
   min-height: 100vh;
   padding: 10px 1rem;
    overflow: hidden;
}

.what h1{
    font-weight: 700;
    font-size: 50px;
    padding-bottom: 20px;
}

.what h6 {
    padding-bottom: 30px;
    border-bottom: 2px solid #6F4E37;
    font-size: 20px;
    font-weight: 500;
}
.what-mission h3, .what-vision h3{
    color: #6F4E37;
    font-weight: 700;
    padding-bottom: 15px;
}
.what-mission p, .what-vision p{
     font-size: 20px;
    font-weight: 700;
}
.what-mission ul, .what-vision ul{
    font-size: larger;
}
.our{
     padding: 10px 1rem;
     min-height: 100vh;
    padding-top: 5rem;
    /* background-color: #F5F5F5; */
}
.founder-mid{
    width: 100%;
}
.founder-pic {
    width: min(250px, 80vw);
    height: min(250px, 80vw);
}

.founder-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.founder-word{
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 50px;
    padding-top: 20px;
}
.founder-text {
    font-size: 16px;
    line-height: 1.7;
    max-width: 100%;
    box-sizing: border-box;
    overflow-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
}

.founder-text p {
    max-width: 100%;
    margin: 0 auto;
}
.executives {
    padding: 10px 1rem;
    min-height: 100vh;
    background-color: #F5F5F5;
}

.pictures {
    height: 100%;
}

.pictures img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}


.pictures .card-body {
    display: flex;
    flex-direction: column;
}

.pictures .btn {
    width: 100%;
}

.going{
     padding: 10px 1rem;
    min-height: 100vh;
    background-color: #F5F5F5;
    padding-top: 2rem;
}
.going h4{
    padding-top: 20px;
    color: #6F4E37;
    font-weight: 700;
    font-size: 18px;
}
.going p{
    padding-top: 10px;
    font-size: 18px;
    font-weight: 600;
}
.going ul{
    font-size: 18px;
}
.partner{
    min-height: 50vh;
    padding: 10px 1rem;
    text-align: center;
    background-color: #702805;
}
/* .parti{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
} */
.part-img {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}
.partner-images{
    /* border: 2px solid white; */
    border-radius: 10px;
}
.partner-images img {
    max-width: 100%;
    height: auto;
    display: block;
}
.question {
    padding: 10px 1rem;
    min-height: 50vh;
    background-color: #6F4E37;
    text-align: center;
    overflow-x: hidden;
}

.question h2 {
    font-weight: 700;
    font-size: clamp(28px, 4vw, 50px);
}
footer{
    background-color: black;
    color: white;
    height: 10vh;
    text-align: center;
}
footer p{
    font-size: larger;
}
}

@media (min-width: 768px) and (max-width: 991px){
html, body {
    max-width: 100%;
    overflow-x: hidden;
}
    .hero-section {
    background: linear-gradient(#00000052, #00000052), url(Media/about-landing.jpeg);
    background-position: center;
    background-size: cover;
    min-height: 100vh;
    padding: 10px 2rem;
}
body{
    overflow-x: hidden !important;
    border: 2px solid;
}
.words{
    color: white;
}
.words h1 {
    font-size: 60px;
    font-weight: 500;
    
}

.who{
    min-height: 100vh;
    padding-top: 2rem;
    background-color: #F5F5F5;
     padding: 10px 2rem;
}
.who h1, .our h1, .going h1{
    font-weight: 700;
    font-size: 50px;
    padding-bottom: 40px;
    border-bottom: 2px solid #6F4E37;
}

.who-left {
    font-weight: 700;
    color: #6F4E37;
    font-size: 25px;
    width: 100%;
}

.who-right {
    width: 100%;
    font-size: 23px;
}
.image{
    min-height: 90vh;
    padding-top: 2rem;
    padding: 10px 2rem;
    overflow: hidden;
    
}
.image .pics{
    width: 600px !important;
    height: 100%;
}
.image .pics img{
    width: 100%;
    height: 100%;
    border-radius: 30px;
    overflow: hidden;
}
.what{
    background-color: #F5F5F5;
   min-height: 100vh;
    padding: 10px 2rem;
}

.what h1{
    font-weight: 700;
    font-size: 50px;
    padding-bottom: 20px;
}

.what h6 {
    padding-bottom: 30px;
    border-bottom: 2px solid #6F4E37;
    font-size: 20px;
    font-weight: 500;
}
.our{
     padding: 10px 2rem;
     min-height: 100vh;
    padding-top: 5rem;
    /* background-color: #F5F5F5; */
}
.founder-mid{
    display: flex !important;
    /* flex-direction: column !important; */
    justify-content: space-between;
    gap: 10px;
}
  .founder-pic {
      width: 300px;
      height: 300px;
      margin: 0 auto;
  }

.founder-word{
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    font-size: 15px;
}
.founder-word h3{
    font-size: 20px;
}
.founder-text{
    font-size: 20px;
}
.executives{
     padding: 10px 2rem;
     min-height: 100vh;
background-color: #F5F5F5;
}
.pictures{
    display: flex;
    flex-direction: row !important;
    height: 350px;
    overflow: hidden;
    /* width: 350px; */
}
.pictures img{
    width: 50%;
    height: 350px;
    
}
.pictures {
    display: flex;
    flex-direction: column;
}
.card-body{
    width: 50%;
    /* display: flex;
    flex-direction: column; */
}


.going{
     padding: 10px 2rem;
    min-height: 100vh;
    background-color: #F5F5F5;
    padding-top: 2rem;
}
.going h4{
    padding-top: 20px;
    color: #6F4E37;
    font-weight: 700;
    font-size: 25px;
}
.going p{
    padding-top: 10px;
    font-size: 25px;
    font-weight: 600;
}
.going ul{
    font-size: 25px;
}
.question{
    padding: 10px 2rem;
    min-height: 50vh;
    background-color: #6F4E37;
    text-align: center;
}
.question h2{
    font-weight: 500;
    font-size: 40px;
    width: 100%;
}
.question button{
    width: 50% !important;
}

}
