/* common css start  */
*{
    margin: 0;
    padding: 0;
    font-family:"Open Sans", sans-serif;
}
.container{
    width: 1140px;
    margin: 0 auto;
}
ul,ol{
    list-style-type: none;
}
a{
    text-decoration: none;
    display: inline-block;
}
/* common css start  */

/* header part start  */
#headerPart{
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px 0;
    position: fixed;
}
.logoMenu{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.menu ul{
    display: flex;
    justify-content: space-between;
    
}
.menu ul li a{
    padding: 0 35px;
    color: #474747;
    font-size: 20px;
    font-weight: 400;
    text-transform: uppercase;
}
.menu ul li .btn{
    padding: 10px 20px;
    background: #FD6E0A;
    color: white;
    margin-top: -8px;
    border: 2px solid #FD6E0A;
    border-radius: 5px;
}
.menu ul li a:hover{
    color: brown;
    transition: .4s;
}
.menu ul li .btn:hover{
    background: transparent;
    color: #FD6E0A;
}
/* header part end  */

/* banner part start  */
#bannerPart{
    padding-top: 300px;
    padding-bottom: 125px;
    background: url(../images/bannerBg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.bannerText{
    width: 585px;
}
.bannerText h3{
    font-size: 45px;
    font-weight: 600;
    color: #474747;
}
.bannerText h1{
    font-size: 85px;
    font-weight: 700;
    color: #181818;
    padding-top: 35px;
    padding-bottom: 30px;
}
.bannerText p {
    font-size: 18px;
    font-weight: 400;
    color: #757575;
    line-height: 30px;
}
.bannerText a{
    padding: 10px 20px;
    background: #FD6E0A;
    color: white;
    border-radius: 5px;
    margin-right: 30px;
    margin-top: 40px;
    font-size: 20px;
    font-weight: 400;
    border: 1px solid #FD6E0A;
}
.bannerText a:hover{
    background: transparent;
    color: #FD6E0A;
    transition: .4s;
}
/* banner part end  */

/* about part start  */
#aboutPart{
    padding: 135px 230px;
}
.aboutContent{
    background: #FFF8F3;
    text-align: center;
    padding: 124px 155px;
}

.aboutText h3{
    font-size: 35px;
    font-weight: 700;
    color: #181818;
}
.aboutText p {
    font-size: 18px;
    font-weight: 400;
    color: #757575;
    line-height: 30px;
    padding-top: 40px;
}
.intro{
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}
.intro h4{
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    color: #757575;
}
.intro p{
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
    color: #474747;
}
/* about part end  */

/* service part start  */
.serviceHead{
    text-align: center;
}
.serviceHead h3{
    font-size: 35px;
    font-weight: 700;
    color: #181818;
}
.serviceHead p {
    font-size: 18px;
    font-weight: 400;
    color: #757575;
    line-height: 30px;
    padding: 0 110px;
    padding-top: 30px;
    padding-bottom: 50px;
}
.serviceItemFlex{
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    margin-bottom: 135px;
    
}
.serviceItem{
    width: 23%;
    padding: 30px;
    box-shadow: 3px 3px 37px -10px rgba(0,0,0,0.83);
    -webkit-box-shadow: 3px 3px 37px -10px rgba(0,0,0,0.83);
    -moz-box-shadow: 3px 3px 37px -10px rgba(0,0,0,0.83);
    box-sizing: border-box;
}
.serviceItem h3{
    font-size: 20px;
    font-weight: 700;
    color: #181818;
    padding-top: 30px;
    padding-bottom: 25px;
}
.serviceItem p {
    font-size: 16px;
    font-weight: 400;
    color: #757575;
    line-height: 28px;
}

/* service part end  */

/* resume part start  */
#resumePart{
    padding-bottom: 110px;
}
.resumeHead{
    text-align: center;
}
.resumeHead h3{
    font-size: 35px;
    font-weight: 700;
    color: #181818;
}
.resumeFlex{
    display: flex;
    justify-content: space-between;
    padding-top: 115px;
}
.resumeLeft h3{
    font-size: 30px;
    font-weight: 700;
    color: #474747;
}
.resumeRight h3{
    font-size: 30px;
    font-weight: 700;
    color: #474747;
}
.resumeItem{
    width: 511px;
    border-bottom: 2px solid #d1d1d1;
    padding-bottom: 30px;
}
.resumeItem h3{
    font-size: 25px;
    font-weight: 700;
    color: #474747;
    padding-top: 30px;
    padding-bottom: 15px;
}
.resumeItem h4{
    font-size: 20px;
    font-weight: 600;
    color: #757575;
}
.resumeItem p {
    font-size: 16px;
    font-weight: 400;
    color: #757575;
    line-height: 28px;
    padding-top: 25px;
}
.bb{
    border-bottom: none !important;
}
.btn{
    text-align: center;
}
.btn a{
    padding: 10px 20px;
    background: #FD6E0A;
    color: white;
    border-radius: 5px;
    margin-right: 30px;
    margin-top: 40px;
    font-size: 20px;
    font-weight: 400;
    border: 1px solid #FD6E0A;
}
.btn a:hover{
    background: transparent;
    color: #FD6E0A;
    transition: .4s;
}
/* resume part end  */

/* footer part start  */
#footerPart{
    width: 100%;
    padding-top: 135px;
    padding-bottom: 130px;
    background: #FFF8F3;
}
.footerFlex{
    display: flex;
    justify-content: space-between;
}
.footerLeft h3{
    font-size: 35px;
    font-weight: 700;
    color:#181818; 
}
.footerLeft p {
    font-size: 16px;
    font-weight: 400;
    color: #474747;
    line-height: 28px;
    width: 560px;
    padding-top: 30px;
    padding-bottom: 40px;
}
.footerLeft a {
    color: #FD6E0A;
    font-size: 30px;
    padding: 0 10px;
}
.footerLeft a:hover{
    color: #181818;
    transition: .4s;
}
.contactUs h3{
    font-size: 35px;
    font-weight: 700;
    color:#181818; 
}
.myInput{
    display: block;
    padding: 20px 30px;
    background: white;
    margin: 25px 0;
    width: 100%;
    border: none;
    border-radius: 5px;
    outline: none;
}
.contactUs button{
    padding: 10px 20px;
    background: #FD6E0A;
    color: white;
    border-radius: 5px;
    margin-right: 30px;
    margin-top: 25px;
    font-size: 20px;
    font-weight: 400;
    border: 1px solid #FD6E0A;
}
.contactUs button:hover{
    background: transparent;
    color: #FD6E0A;
    transition: .4s;
}
.myInput::placeholder{
    color: black;
}
/* footer part end  */

/* header part start  */
/* header part end  */

/* header part start  */
/* header part end  */

/* header part start  */
/* header part end  */

/* header part start  */
/* header part end  */

/* header part start  */
/* header part end  */

/* header part start  */
/* header part end  */

/* header part start  */
/* header part end  */

/* header part start  */
/* header part end  */

/* header part start  */
/* header part end  */

/* header part start  */
/* header part end  */

