

/*--- body-start ---*/

body {
    background-color: var(--secondary-color);
}


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; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 60%;
    padding: 10px ;
}

main .first-sec h1, main .second-sec h1{
    font-family: boldd;
    color: var(--main-color);
    padding-bottom: 30px;
}

.main-about .text-part p, .main-about .text-part p{
    text-align: justify;
    font-size: 20px;
    font-family: regular;
}

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 ---*/


/*-- contact-button-starts --*/

main .contact-button{
    /* border: 5px solid red; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

main .contact-button p{
    font-family: regular;
    color: var(--main-color);
}

main .contact-button a{
    /* border: 2px solid green; */
    padding: 10px 25px;
    font-family: regular;
    text-decoration: none;
    color: var(--secondary-color);
    background-color: var(--primary-color);
    transition: .3s;
}

main .contact-button a:hover{
    background-color: var(--main-color);
    box-shadow: 0 0 15px var(--main-color);
}

/*-- contact-button-ends --*/



