.aboutus-banner{
    display: flex;
    justify-content: center;

}



.aboutus-banner h2{
    font-size: 50px;
    text-align: center;
    font-weight: 400;
    margin: 0;
  }

.aboutus-flex{
    display: flex;
    align-items: center;
    flex-direction: column;
}

.aboutus-banner-img{
    width: 100%;
    height: 500px;
    border-radius: 20px;
}

.aboutus-banner-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.workdone{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.workdone-wrapper{
    border-radius: 20px;
    padding: 30px;
    box-sizing: border-box;
}

.workdoneflex{
    height: 150px;
   
    
    display: flex;
    gap: 200px;
    justify-content: center;
    align-items: center;
    
}

.workdoneflex span{
    font-size: 50px;
    font-weight: 700;
}

.workdoneflex p{
    margin: 0;
}

.mission-vision{
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.mission-vision-flex{
    gap: 50px;
}

.mission-vision-flex h3{
    font-size: 30px;
    margin: 0;
}

.mission, .vision{

    padding: 50px;
    box-sizing: border-box;
    color: #F7F7F7;
    background-color: #000000;
}

.mission div{
    height: 300px;
    width: 100%;
}

.mission h3{
    font-weight: 400;
}

.vision h3{
    font-weight: 400;
}

.vision div{
    height: 300px;
    width: 100%;
}


.mission img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
}
.vision img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.team{
    display: flex;
    justify-content: center;
    margin-bottom: 50px;

}

.team-grid{
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(3,1fr);
}

.team-member-image{
    padding: 10px;
}

.team-member-image img{
    width: 100%;
}

.team-member-details{
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.team-member-details button{
    display: flex;
    align-items: center;
    background: #0076B2;
    gap: 10px;
    font-size: 16px;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 10px;
}

.team-member-details span{
    font-size: 18px;
    font-weight: 500;
    color: #575757;
}

.team-member-details p{
    margin: 5px 0 0 0;
    color: #6b6b6b;
}

.centerheading{
    text-align: center;
    margin: 50px 0;
    
}

.centerheading h2{
    font-size: 35px;
    font-weight: 400;
}

.centerheading span{
    font-weight: 600;
    color: #F1C031;
}

.ceonote{
    display: flex;
    justify-content: center;
    margin-top: 200px;
}

.ceo-wrapper{
    background-color: #000000;
    color: #F7F7F7;
    border-radius: 20px;
    margin: 50px 0;

}

.ceo-wrapper .note{
    width: 60%;
    padding: 30px;
    box-sizing: border-box;
}

.note span{
    font-size: 30px;
    font-weight: 400;
}

.note p{
    font-size: 16px;
    font-weight: 400;
}
.ceoimage {
    position: relative;
    width: 40%;
}

.ceoimage img{
    width: 500px;
    position: absolute;
    bottom: 0;
    right: 20px;
}

@media screen and (min-width: 321px) and (max-width: 768px){
    .aboutus-banner h2{
        font-size: 20px;
    }
    
    .mission-vision-flex{
        flex-direction: column;
    }

    .team-grid{
        grid-template-columns: repeat(1,1fr);
    }

    .ceo-wrapper .note{
        width: 100%;
    }

    .ceoimage img{
        width: 300px;
    }

    .flex{
        flex-direction: column;
    }

    .workdoneflex{
        display: none;
    }

    .ceoimage{
        height: 300px;
        width: 100%;
    }

    
}

@media screen and (min-width: 769px) and (max-width: 1200px){
    
    .container-main{
        width: 95%;
    }
    .ceo-wrapper .note{
        width: 100%;
    }

    .ceoimage img{
        width: 300px;
    }

    .flex{
        flex-direction: column;
    }

    .workdoneflex{
        display: none;
    }

    .ceoimage{
        height: 300px;
        width: 100%;
    }

}