* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}


html{
  scroll-behavior: smooth;
}

body {
  font-family: poppins;
}

ul, nav {
  list-style: none;
}

a{
  text-decoration: none;
  cursor: pointer;
  color: inherit;
}

header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  display: -webkit-box;
  display: -moz-flex;
  display: -ms-flexbox;
  display: -o-flex;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
  align-items: center;
  color: #fff;
  padding: 35px 100px 0;

}

header h2 {
  text-transform: uppercase;
}

header nav {
  display: -webkit-box;
  display: -moz-flex;
  display: -ms-flexbox;
  display: -o-flex;
  display: flex;
}

header nav li {
  margin: 0 15px;
}

header nav li:first-child {
  margin-left: 0;
}

header nav li:last-child {
  margin-right: 0;
}

@media (max-width: 1000px) {
    header {
      padding: 20px 50px;
    }
}

@media (max-width: 700px){
  header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  header h2{
    margin-bottom: 15px;
  }

  header nav li {
       margin: 0 7px;
  }
}

/*banner area*/

section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 110px 100px        
}

@media (max-width: 1000px){
     section {
       padding: 100px 50px;
     }
}

@media (max-width: 1000px){
  section {
    padding: 125px 30px;
  }
}

section p {
  max-width: 800px;
  text-align: center;
  margin-bottom: 35px;
  padding: 0 20px;
  line-height: 2;
}

.banner-area {
  position: relative;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 100vh;
  color: #fff;
  text-align: center;
}

.banner-area .banner-img {
     background-image: url(images/2.jpg);
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background-size: cover;
     z-index: -1;
}

.banner-area .banner-img::after {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background-color: #000;
     opacity: 0.65;
}

.banner-area h1 {
  margin-bottom: 15px;
  font-size: 65px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.banner-area h3 {
  margin-bottom: 40px;
  font-size: 25px;
}

.banner-area a.banner-btn {
  padding: 15px 35px;
  background: orangered;
  border-radius: 50px;
  text-transform: uppercase;
}

@media (max-width: 800px){
    .banner-area {
      min-height: 600px;
    }
    .banner-area h1 {
      font-size: 32px;
    }

    .banner-area h3 {
      font-size: 20px;
    }

    .banner-area a.banner-btn {
      padding: 15px 40px;
    }
}

/* about area*/

ul.about-content{
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.about-content li {
  padding: 20px;
  height: 290px;
  background-clip: content-box ;
  background-size: cover;
  background-position: center;
}

.about-left {
  -ms-flex-preferred-size: 40%;
      flex-basis: 40%;
  background-image: url(images/1.jpg);
}

.about-right {
  -ms-flex-preferred-size: 60%;
      flex-basis: 60%;
}

.about-area p {
  max-width: 800px;
  margin-bottom: 35px;
  line-height: 1.5;
  text-align: left;
  padding-left: 0;
}

.section-title {
  text-transform: uppercase;
  font-size: 50px;
  margin-bottom: 5%;
}

.about-right h2 {
    margin-bottom: 3%;
}

.about-btn {
  padding: 15px 35px;
  background: orangered;
  border-radius: 50px;
  text-transform: uppercase;
  color: #fff
}

@media (max-width: 1000px) {
      .about-left, .about-right {
        -ms-flex-preferred-size: 1005;
            flex-basis: 1005;
      }

      .about-content li {
        padding: 8px;
      }

      
}


/* service area*/

#services {
  background: #ddd;

}

ul.services-content {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.services-content li {
  padding: 0 30px;
  -ms-flex-preferred-size: 33%;
      flex-basis: 33%;
  text-align: center;
}

.services-content li i {
  font-size: 50px;
  color: orangered;
  margin-bottom: 25px;
}

.services-content li h4 {
   font-size: 20px;
   margin-bottom: 25px;
}

.services-content li p {
  margin: 0;
}

@media (max-width: 1000px) {
  .services-content li {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    margin-bottom: 65px;
  }
  .services-content li:last-child{
    margin-bottom: 0;
  }
  .services-content li p{
    padding: 0;
  }
}


/* contact area */

#contact {
  background: #fff;

}

ul.contact-content {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: wrap;
      -ms-flex-pack: wrap;
          justify-content: center;
}

.contact-content li {
  padding: 0 30px;
  -ms-flex-preferred-size: 33%;
      flex-basis: 33%;
  text-align: center;
}

.contact-content li i{
  font-size: 50px;
  color: orangered;
  margin-bottom: 25px;
}

.contact-content li p {
  margin: 0;
}

@media (max-width: 1000px) {
  .contact-content li {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    margin-bottom: 65px;
  }

  .contact-content li:last-child {
    margin-bottom: 0;
  }

  .contact-content li p {
    padding: 0;
  }
}


/*footer*/

footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  color: #fff;
  background-color: #000;
  padding: 60px 0;
}


