/* --== About Main ==-- */
.main-about{
    margin-top: 0;
    display: grid;
}
/* --== Section Wise Design ==-- */
/* ---=== Intro Section ===--- */
#story{
    background: var(--secondary);
    padding: 50px 20px;
}
.story{
    padding: 10px;
}
/* --== Mission & Vision Section ==-- */
#mission-vision{
    padding: 50px 20px;
}
.mission-vision{
    display: flex;
    justify-content: center;
    gap: 25px;
}
.statements{
    height: 280px;
    width: 240px;
    padding: 20px;
    border-radius: 30px;
}
.statements:nth-child(1){
    border-top: solid var(--primary) 5px;
}
.statements:nth-child(2){
    border-bottom: solid var(--primary) 5px;
}
.statements:nth-child(3){
    border-top: solid var(--primary) 5px;
}
.statements h3{
    font-size: 22px;
    font-weight: 500;
    color: var(--secondary);
    margin-bottom: 20px;
}
.statements p{
    font-size: 15px;
    font-weight: 200;
    color: var(--dark);
    line-height: 1.5;
}
/* --== Founder Section ==-- */
#founder{
    background: var(--light);
    padding: 50px 20px;
}
.founder{
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 5px;
    background: var(--primary);
    border-radius: 20px;
}
/* ======= */
.founder-info{
    background: var(--light);
    border-radius: 0 0 0 20px;
    overflow: hidden;
    border-bottom: solid var(--primary) 5px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.founder-img{
    height: 250px;
    width: 100%;
    display: flex;
    justify-content: end;
    margin: 0 auto;
    overflow: hidden;
}
.founder-img img{
    width: 180px;
    object-fit: cover;
    transition: all 0.5s ease-in-out;
}
.founder-meta{
    height: 60px;
    background: var(--bgcol);
    display: flex;
    flex-direction: column;
    align-items: end;
    padding: 5px;
}
.founder h3{
    font-size: 20px;
    font-weight: 500;
    color: var(--secondary);
}
.founder h4{
    font-size: 16px;
    font-weight: 500;
    color: var(--light);
}
.social-media {
    width: fit-content;
    display: flex;
    gap: 10px;
    position: absolute;
    z-index: 10;
    left: 10px;
    top: 220px;
}
.social-media a{
    font-size: 16px;
    color: var(--light);
    background: var(--primary);
    width: 22px;
    height: 22px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: all 0.5s ease-in-out;
}
/* ===== */
.founder-det{
    background: var(--light);
    border-radius: 0 20px 0 0;
    overflow: hidden;
    border-top: solid var(--primary) 5px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.founder-head{
    height: 40px;
    background: var(--bgcol);
    display: flex;
    align-items: center;
    padding: 5px;
}
.founder p{
    font-size: 14px;
    font-weight: 400;
    color: var(--dark);
    line-height: 1.5;
    padding: 0 10px 0 10px;
    text-align: start;
    transition: all 0.5s ease-in-out;
}
/* --== FAQ Section ==-- */
#faq{
    padding: 50px 20px;
}
.faq{
    text-align: start;
    padding-top: 20px;
}
.faq-item{
    padding: 10px;
}
.faq-item h3{
    font-size: 18px;
    font-weight: 500;
    color: var(--dark);
}
.faq-item p{
    font-size: 14px;
    font-weight: 400;
    color: var(--dark);
    line-height: 1.5;
}
/* --== Mobile Design ==-- */
@media only screen and (max-width: 768px){
    /* ---=== Intro Section ===--- */
    .story p{
        font-size: 12px;
    }
    /* --== Mission & Vision Section ==-- */
    .mission-vision{ 
        flex-direction: column;
        align-items: center;
    }
    .statements{
        height: 220px;
        width: 220px;
    }
    .statements p{
        font-size: 12px;
    }
    .statements:nth-child(2){
        border-top: solid var(--primary) 5px;
        border-bottom: none;
    }
    /* --== Teams Section ==-- */
    .founder-info{
        border-bottom: 0;
        border-left: solid var(--primary) 5px;
        border-radius: 20px 0 0 0;
    }
    .founder-det{
        border-top: 0;
        border-right: solid var(--primary) 5px;
        border-radius: 0 0 20px 0;
    }
    .founder p{
        font-size: 11px;
    }
    /* --== FAQ Section ==-- */
    .faq-item h3{
        font-size: 14px;
    }
    .faq-item p{
        font-size: 12px;
        text-align: start;
    }
}