/* main nav starts from here */
main{
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    place-items: center;
}
#main-nav{
    position: relative;
    width: 80%;
    height: 100px;
    display: flex;
    justify-content: center;
    place-items: center;
    gap: 10%;
    font-size: 20px;
    font-family: 'Roboto', sans-serif;
}
#main-nav>a{
    color: #383838;
    transition: 200ms;
}
#main-nav>a:hover{
    color: rgb(255, 230, 0);
    transition: 200ms;
}
/* about us start*/
.about-class{
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    place-items: center;
    width: 50%;
    height: max-content;
    font-family: 'Roboto', sans-serif;
    gap: 30px;
    line-height: 40px;
    margin-top: 70px;
}
#our-vision-section{
    height: 260px;
}
.about-headers{
    font-size: 50px;
    width: 190%;
    position: relative;
    display: flex;
    justify-content: center;
    text-align: center;
}
.about-descs{
    text-align: start;
    font-size: 14px;
}
#Why-Choose-Us-section{
    height: 400px;
}
/* about us end */
/* about us footer */
#footer-email-address>a{
    color: white;
    position: relative;
    margin-top: 80px !important;
  }


@media only screen and (max-width:625px) {
    #main-nav{
        font-size: 17px;
    }
}

@media only screen and (max-width:395px) {
    .about-headers{
        font-size: 40px;
    }
    #our-vision-section{
        height: 300px;
    }
    #Why-Choose-Us-section{
        height: 500px;
    }
}