body {
  background-color: #FFFFFF;
  overflow-x: hidden;
}


/* banner-start */
.bannercontainer {
  margin-top: -100px;

  position: relative;
  z-index: 2;
}
.bannercontainer .content{
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0%;
  top: 0%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.bannercontainer .content h3{
  font-size: 70px;
  color: #FFFFFF;
  line-height: 70px;
  text-align: center;
  font-weight: bold;
  margin: 0;
}

/* banner-end */


/* main-start  */
#main{
  padding: 80px 0;
}
.main-container{
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}
.main-container>h3{
  font-weight: bold;
  font-size: 36px;
  color: #333333;
  line-height: 42px;
}
.main-container>p{
  font-weight: 400;
  font-size: 16px;
  color: #333333;
  line-height: 30px;
}
.main-container .item{
  margin: 50px 0;
}
.main-container .item h5{
  font-weight: bold;
  font-size: 16px;
  color: #333333;
  line-height: 30px;
  border-bottom: 1px solid #E7E7E7;
  padding-bottom: 10px;
}
.main-container .item p{
  font-size: 16px;
  color: #333333;
  line-height: 30px;
}

/* main-end */

@media screen and (max-width:768px) {
  .bannercontainer {
    margin-top: 0px;
  }
  .bannercontainer .content h3{
    font-size: 50px;
    line-height: 50px;
  }
  #main{
    padding: 30px 0;
  }
  .main-container{
    padding: 0 15px;
  }
  .main-container>h3{
    font-size: 24px;
    line-height: 40px;
  }
}