
/* Primary style */
body{
  font-family: 'Source Sans Pro', sans-serif;
  line-height: 1.5;
  background-color: rgb(255, 255, 255);
}
.section{
  position: relative;
}

.container{
  max-width: 1440px;
  width: 100%;
  padding: 0 3%;
  margin: 0 auto;
}

.padding-bottom120{
    padding-bottom:120px;
}


a{
  text-decoration: none;
  color: #006EDD;
}

.button{
  width: 120px;
  text-align: center;
  padding: 10px 0;
  font-weight: 600;
  display: block;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
}

.button-borderx2{
  border-radius: 10px;
}

.primary-button{
  background-color: #006EDD;
  color: white !important;
  border:none
}


/* typography */
.section-headline{
  font-weight: 700;
  color: rgb(8, 8, 8);
  margin-bottom: 20px;
}

h1{
  font-size: 34px;
  line-height: 1.2;
}

h2{
  font-size: 24px;
}


p{
  font-size: 16px;
  font-weight: 300;
}

@media only screen and (min-width:1024px){
  h1{
    font-size: 54px;
  }
  h2{
    font-size: 34px;
  }
  h3{
    font-size: 24px;
  }
}


/* top navigation */

.header{
  width: 100%;
  height: 100px;
  position: absolute;
  z-index: 999;
  display: flex;
  align-items: center;

}

.icon{
  width: 24px;
  display: inline-block;
  margin-right: 5px;
  vertical-align: middle;
}

.logo{
  width: 65px;
  float: left;
}

.main-nav{
  width: 44px;
  height: 34px;
  background: url(../images/Icon-material-menu.svg) no-repeat center center;
  background-size: cover;
  float: right;
  margin-top: 20px;
  cursor: pointer;
}

.main-nav ul{
  width: 100%;
  position: absolute;
  left: 0;
  top: 100px;
  transform: translateY(-150%);
  background-color: white;
  opacity: 0;
}

.main-nav ul.is-visible{
  transform: translateY(0);
  opacity: 1;
}
.main-nav li, .main-nav li a{
  line-height: 80px;
  width: 100%;
  display: block;
}

.main-nav a{
  padding: 0 20px;
}

@media only screen and (min-width:1024px){
  .main-nav{
    width: auto;
    height: auto;
    background:transparent;
    float: right;
  }

  .main-nav ul{
    width: auto;
    height: auto;
    position: relative;
    background:transparent;
    top: 0;
     transform: translateY(0);
    opacity: 1;
  }

  .main-nav li, .main-nav li a{
    line-height: 1.5;
    display: inline-block;
    width: auto;
  }

  .main-nav a{
    color: rgb(255, 255, 255);

  }

  .main-nav .button{
    width: 120px;
    text-align: center;
    padding: 10px 0;
    font-weight: 600;
    display: block;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
  }
  .color a{
    color: black;
  }
}

/* forms */

.form{
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.form-container{
  max-width: 320px;
  width:100%;
  margin: 0 auto;
}

label{
  position: relative;
  display: block;
  width: 100%;

  font-size: 14px;
}

.form input, .form textarea {
  height: 45px;
  padding-left: 20px;
  width: 100%;
  border-radius: 3px;
  border:1px solid lightgray;
  outline:none;
  margin-top: 10px;
  font-size: 14px;
}




textarea{
  display: block;
}

input::placeholder, textarea::placeholder{
  font-family: 'Source Sans Pro', sans-serif;
}


.form input[type="submit"]{
  margin-top: 20px;
  width: 47%;
  border: none;
  padding: 15px 0;
  height: auto;
  width:120px !important;
  border-radius: 5px;
  font-size: 16px;
  width: 20px;
  height: 20px;
}

.form .text-wrap{
  margin: 0 auto;

  max-width: 768px;
  text-align: center;
}

.form-content{
  margin-top: 40px;
}

.form-content label{
  display: block;
  width: 100%;
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.label{
  display: inline-block !important;
  width: auto !important;
  margin: 20px 40px 0 0;
}

.label span{
  display:inline-block;
  margin-left: 5px;
  font-weight: 300;
}

input[type="checkbox"]{
  width: auto;
  margin: 0;
  height: auto;
}

.form-content .side-by-side{
  width: 47%;
}

.icon-visibility{
  position: absolute;
  right:-10%;
  cursor: pointer;
}
.icon-visibility img{
  width: 18px;
}

/* top */
.top{
  width: 100%;
  height: 600px;background:url(../images/yellow-excavator-2101137@2x.jpg) no-repeat center center;
  background-size: cover;
  position: relative;
  overflow: hidden;
}


video{
  width: 100%;
  display: none;
}

 .overlay{
  width:100%;
  height: inherit;
  background-color: rgba(0, 0, 0, 0.404);
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 99;
}

 .kicker{
  font-size: 22px;
}

.top h1, .top p{
  color: white;
}

@media only screen and (min-width:1024px){
  video{
    display: block;
  }
}

@media only screen and (min-width:1920px){
  .top{
    height: 650px;
  }
}

@media only screen and (min-width:1440px){
  .top{
    height: 860px;
  }
}

.top .text-wrap{
  max-width: 768px;
  text-align: center;
  margin: 0 auto;
  width: 100%;;
}


.top .button{
  margin: 20px auto;
}

/* Client */

.client-wrap{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding-top: 25px;

}

.client-wrap ul{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  max-width: 340px;
  width: 100%;
}


.client-unit{
  width: 130px;
}

@media only screen and (min-width:768px){
  .client-wrap ul{
    max-width:550px
  }
  .client-unit{
    width: 100px;
  }
}

@media only screen and (min-width:1170px){
  .client-wrap ul{
    max-width:850px
  }
  .client-unit{
    width: 100px;
  }
}

@media only screen and (min-width:1366px){
  .client-wrap ul{
    max-width:980px
  }
  .client-unit{
    width: 100px;
  }
}
/* about */
 .g-text-wrap{
  max-width: 768px;
  width: 100%;
  margin: 0 auto;
  padding-top: 120px;
  text-align: center;
}

.texts{
  padding-top: 60px;
}


.texts .text-unit{
  width: 243px;
  margin: 20px auto;
  text-align: center;

}


@media only screen and (min-width:1024px){
  .texts{
  display: flex;
  flex-wrap: wrap;
  padding-top: 60px;
  align-items: center;
  max-width: 919px;
  justify-content: space-between;
  margin: 0 auto;
}
}

.about .texts .text-unit:nth-last-of-type(2){
  width: 360px;
  height: 440px;
  background-color: #006EDD;
  padding: 50px 40px;
  color: white;
}

.texts .text-unit:nth-last-of-type(2) h3{
  color: white;
}

.texts .text-unit:nth-last-of-type(2) p{
  width: 265px;
}

 .texts .text-unit:nth-last-of-type(2) a{
  display: block;
  color: white !important;
  margin-top: 50px;
}

/* Services */
.services .text-wrap{
  max-width: 778px;
}

.thumb-wrap{
 display: flex;
 flex-wrap: wrap;
 justify-content: space-between;
 align-items: top;
 padding-top: 60px;
}

.thumb-wrap .thumb-unit{
  max-width: 370px;
  width: 100%;
  margin: 20px auto;
}

@media only screen and (min-width:1440px){
  .thumb-wrap .thumb-unit{
    max-width: 430px;
  }
}

.thumb-unit .thumb-tag{
  max-width: 400px;
  text-align: center;
}

.thumb-tag p{
  height: 100px;
}


/*
  empowerment
*/

/* .empowerment{
  height: 650px;
  width: 100%;
  margin-top: 120px;
} */

/* .empowerment .text-wrap {
  max-width: 520px;
} */

.empowerment .text-wrap h2, .empowerment .text-wrap .kicker{
  color:white
}

.empowerment .button{
  margin: 40px auto;
}

.empowerment-texts .texts{
  max-width: 100%;
  padding-top: 130px;
  align-items: flex-start;
}

.empowerment-texts .texts .text-unit h3{
  color: black;
}

.empowerment-texts .button{
  margin: 50px auto;
}
@media only screen and (min-width:1024px){
  .empowerment-texts .button{
    margin: 50px auto;
  }
}

.objectives{
  padding-top: 120px;
}

.full-wrap{
  width: 100%;
}

.full-wrap .half-wrap{
  width: 100% !important;
  display: block;
}

.full-wrap .half-wrap:last-of-type{
  height: 400px;
  display: flex;
  align-items: center;
}



.hips{
  margin-top: 120px;
}

@media only screen and (min-width:1024px){
  .full-wrap{
    display: flex;
    justify-content: space-between;
  }

  .full-wrap .half-wrap{
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

  .full-wrap .half-wrap:last-of-type{
    height: auto;

  }
}

.half-wrap .text-wrap{
  max-width: 520px;
  padding: 0 3%;
}

footer{
  background-color: rgb(19, 19, 19);
}

.footer-wrap{
  padding: 50px 0;
  display: flex;
  flex-wrap:wrap ;
  justify-content: space-between;
  align-items: flex-start;
  font-size: 14px;
  color: white;
  line-height: 25px;
}

.intro{
  max-width: 1024px;
  padding-top: 220px;
}

.about-wrap{
  max-width:520px ;
}

b{
  font-weight: bold;
}
.about-text-unit{
  margin-top: 60px;
  padding-right: 50px;
  display: inline-block;
  vertical-align: top;
}
.about-text-unit h2{
  opacity: 0.7;
}


.quote{
    height:100vh;
}

.about-bg-image-1{
  width: 100%;
  height: 480px;
  background:url(../images/3.jpg) no-repeat center center;
  background-size: cover;
  margin: 120px 0 120px 0;
}

.about-bg-image-3{
  width: 100%;
  height: 480px;
  background:url(../images/2.jpg) no-repeat center center;
  background-size: cover;

}

@media only screen and (min-width:1024px){
  .about-bg-image-1,.about-bg-image-3 {
    width: 100%;
    height: 680px;
  }

}

@media only screen and (min-width:1366px){
  .about-bg-image-1, .about-bg-image-3{
    width: 100%;
    height: 768px;
  }
}

@media only screen and (min-width:1440px){
  .about-bg-image-1, .about-bg-image-3{
    width: 100%;
    height: 860px;
  }
}