/* Hero - section */

.about-hero {
    width: 100%;
    height: 50vh;
    margin: 0 auto;
    display: flex;
    position: relative;
    background: linear-gradient(to right,
    rgba(0,0,0,0.4), 
    rgba(0,0,0,0.4)), url('../assets/the_company.jpg') no-repeat  center / cover;
    filter: brightness(1.8);
}
.hero-section {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-section h1 {
    color: var(--white-color)   
}

/* Welcome Note */

.about-welcome {
    background: linear-gradient(270deg, rgb(255, 255, 255, 0.8) 0%, rgb(255, 255, 255, 0.8) 81%), url('../assets/tech-global.jpg') no-repeat center / cover;
}

.welcome-section {
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    text-align: justify;
    padding: 45px 1.5rem;
    gap: 50px;

} 

/* Vision Section */

.about-vision {
    background: linear-gradient(270deg, rgb(3, 7, 108, 0.8) 0%, rgb(3, 7, 108, 0.8) 81%), url('../assets/complex-aerial-view-city.jpg') no-repeat center / cover;
    
}

.vision-section {
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    padding-top: 40px;
    padding-bottom: 45px;
    gap: 30px;
    color: var(--white-color);
}

.vision-section h3 {
    text-align: center;
}

.vision-section p {
    font-style: italic;
    text-align: center;
    font-weight: 600;
    line-height: 1.8;
    
}


/* Our Team Section */

.about-team {
    background-color: #eceef0;
}

.our-team-section {
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    padding-top: 50px;
    padding-bottom: 50px;
    gap: 70px;

} 

.founder-list {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    justify-content: center;
    align-items: flex-end;

}

.founder {
    background-color: var(--white-color);
    box-shadow: 1px 1px 10px rgb(26, 27, 31, 0.4);
}
.founder img {
    width: 280px;
}

.founder-details {
    margin: 0;
    padding: 20px 0;
    text-align: center;
    background-color: var(--white-color);
    border-radius: 0 0 5px 5px;
}


/* xs */
/* @media (min-width: 475px) {

} */

/* sm */
/* @media (min-width: 640px) {

} */

/* md */
/* @media (min-width: 768px) {
 
} */

/* lg */
@media (min-width: 1024px) {
    /* Hero - section */

    .about-hero {
        height: 75vh;
    }
    
    .hero-section {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .hero-section h1 {
        color: var(--white-color)
    }

    /* Welcome Note */

    .welcome-section {
        width: 70%;
        margin: 0 auto;
        padding-top: 96px;
        padding-bottom: 96px;
    } 
} 

/* xl */
/* @media (min-width: 1280px) {

} */

/* 2xl */
/* @media (min-width: 1536px) {

} */