 /* all common css start */
 *{
    margin:0;
    padding:0;
 }  
 .container{
    width:1140px;
    padding:20px 0; 
    margin:0 auto
 }
 ul,ol{
    list-style-type: none;
 }
 a{
    text-decoration: none;
    display: inline-block;
 }
 h1,h2,h3,h4,h5,h6,p{
    margin:0;
    padding:0;
    line-height:0.8;
 }
 /* all common css end */

 #header{
    padding:25px 0;
    /* background: white; */ 
    position:fixed;
    top:0;
    left:0;
    width:100%;
 }
 .logomenubar{
    width:100%;
    display:flex; 
    justify-content: space-between; 
    align-items: center; 
 }
 .menu,.menu ul {
    display:flex;
    align-items: center; 
 }
 .menu ul li a{
    color:rgb(104, 24, 144);
    font-size: 20px;
    font-weight:400;
    margin:0 35px;
 }
 .menu #button{
    color:white;
    font-size: 20px;
    font-weight:700;
    background: #FD6E0A;
    padding:20px 36px;
    border-radius: 10px;
 }

/* banner start */
#bannerPart{
    padding-top:315px;
    padding-bottom: 185px;
    background: url(../images/bannerBg.png);
    background-repeat: no-repeat;
    background-position:center;
    background-size:cover;
}
/* banner end */
.bannerText h4{
    font-size: 45px;
    font-weight:600;
    color:#474747
}
.bannerText h1{
    font-size:85px;
    font-weight:700;
    color:#181818;
    padding-top:30px;
    padding-bottom:35px;
}
.bannerText p{
    font-size:18px;
    font-weight:400;
    color:#757575;
    line-height:30px;
    width:585px;
}
.bannerText a{
    padding:15px 20px;
    background:#FD6E0A;
    color:white;
    border-radius:5px;
    margin-right:10px;
    border:2px solid #FD6E0A;
}
.bannerText a:hover {
    color:#181818;
    background:transparent;
    /* border:2px solid #FD6E0A; */
}
#aboutPart{
    padding:130px;
}
.aboutContent{
    padding:135px 150px;
    background: #FFF8F3;
    text-align:center;
}
.aboutContent h3{
    font-size:35px;
    font-weight:700;
    color:#181818;
}
.aboutContent p{
    font-size:18px;
    font-weight:400;
    color:#757575;
    line-height:30px;
}
.contactDetails{
    display:flex;
    justify-content: space-between;
    margin-top: 20px;
}