

/*--- body-start ---*/

body {
    background-color: var(--secondary-color);
    overflow-x: hidden;
}

main{
    margin: 0 auto;
    max-width:1920px
}

main .first-sec, main .second-sec{
    /* border: 5px solid red; */
    display: flex;
    flex-direction: column;
    padding: 20px 30px;
    /* border: 5px solid blue; */
}

main .first-sec .main-about, main .second-sec .main-about{
    display: flex;
    gap: 20px;
    /* border: 5px solid red; */
}  

main .first-sec .text-part, main .second-sec .text-part{
    /* border: 2px solid blue; */
    width: 60%;
    padding: 10px ;
}

main .first-sec .text-part h1, main .second-sec .text-part h1{
    font-family: mediumm;
    color: var(--main-color);
    padding-bottom: 30px;
}

main .first-sec .text-part p, main .second-sec .text-part p{
    text-align: justify;
    font-size: 20px;
}

main .first-sec .image-part, main .second-sec .image-part{
    /* border: 2px solid rgb(0, 255, 60); */
    width: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
}

main .first-sec .image-part .img-1, main .second-sec .image-part .img-1{
    aspect-ratio: 4.5/5;
    /* height: 600px; */
}

main .first-sec .image-part .img-2, main .second-sec .image-part .img-2{
    display: none;
}


/*--- section-misson-start ---*/

main .vision{
    /* border: 2px solid red; */
    padding: 20px 30px;
}

/*--- section-misson-ends ---*/



