*{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  text-decoration: none;
  list-style: none;
}
body{
  padding-top: 80px;
  background: #0d102c;
  color: #fff;
}

/*Navbar*/

header{
  position: fixed;
  top: 0;
  width:100%;
  height:80px;
  background: #11101b;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 100px;
  z-index: 9999;
}

.logo{
  font-size: 30px;
  color:#fefefe;
  font-weight: bold;
} 
.hambuger{
  display:none ;
}
#bar ul{
 display:flex;
}
#bar ul li a{
  display: block;
  color: #fafafa;
  font-size: 20px;
  padding:10px 25px;
  border-radius: 50px;
  transition: 0.2s;
  margin:  0 5px;
}

#bar ul li a:hover{
  color: #11101b;
  background: #fff;
}
#bar ul li a.active{
  color:#11101b;
  background:#fefefe;
}
#bar ul li a.active:hover{
  background:transparent;
  color:#fff;
  border:1px solid #fff;
}
@media only screen and (max-width: 1320px){
  header{
    padding: 0 50px;
  }
}



@media only screen and (max-width: 1100px){
  header{
    padding: 0 30px;
  }
}

@media only screen and (max-width: 900px) {
  .hambuger{
    display:block;
    cursor: pointer;
  }
  
  .hambuger .line{
    width:30px;
    height: 3px;
    background:#fefefe;
    margin: 6px 0;
  }
  
  #bar{
    height: 0;
     position: absolute;
     top: 80px;
     left: 0;
     right:0;
     max-width: 100vw;
     background:#11101b;
     transition: 0.2s;
     overflow: hidden;
  }
  #bar ul{
    display: block;
    width: fit-content;
    margin: 80px auto 0 auto;
    text-align: center;
    transition: 0.5s;
    opacity: 0;
  }
  #bar ul li a{
    margin-bottom: 12px;
  }
  #bar.active ul{
    opacity: 1;
  }
  #bar.active{
    height: 450px;
  }
}


/*Section*/
section{
  width: 95%;
  max-width: 1200px;
  margin: auto;
  margin-top: 2em;
}

.gridSection{
  display: grid;
  align-items: center;
  gap: 40px;
  margin-bottom: 5em
}

#sectionPic{
  width: 100%;
  max-width: 550px;
  margin: auto;
}
.sectionPic img{
  width: 100%;
}

.gridSection .sectionDesc .headline{
  font-size: 2.5rem
}
.btnContainer{
  margin-top: 2em;
}
.btnContainer .btn:hover{
  background:#fff;
  color:#11101b;
}
.btn{
  border: 1px solid #fff;
  border-radius: 50px;
  background-color: transparent;
  color: #fff;
  font-size: 1.1rem;
  padding: .7em 1.5em;
  cursor: position;
}
.btn1{
  margin-right: 1rem;
  border: none;
}
.sectionPic{
  order: 0;
}
.sectionDesc{
  order: 1;
  margin-top: 1em;
}

@media only screen and (min-width: 800px){
  .sectionPic{
  order: 1;
}
.sectionDesc{
  order: 0;
}

}

@media only screen and (min-width:800px){
  section{
    width: 85%
  }
  .gridSection{
    grid-template-columns: 1fr 1fr;
  }
}

@keyframes bounce{
  0%{transform: translateY(-30px);}
  50%{transform: translateY(30px);}
  100%{transform: translateY(-30px);}
}
.bouncepic img{
  animation: bounce 10s infinite;
}

@media only screen and (min-width:1000px){
  .headline{
    font-size: 4rem;
  }
}


/* Scroll counter*/

.wrapper{
  padding: 20px 50px;
}
.wrapper .tittle{
  font-size: 40px;
  font-weight: 600;
  margin-top: 10px;
}

/*project counter*/

.main{
  background: url("./Asset/job-5382501_1280.jpg") no-repeat;
  min-height: 50vh;
  display: flex;
  align-items: center;
  padding: 0 50px;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
}
.main::before{
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0,0,0,0.8);
}

.main .container{
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  width:100%;
  height: 100%;
  align-items: center;
  justify-content: space-between;
}
.container .count-heading{
  width: calc(25% - 30px);
  border: 1px dashed rgba(255, 255, 255, 0.6);
  border-radius: 5px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  color: #fff;
  flex-direction: columns;
  border-radius: 5px;
}
.container .count-heading .icon{
  font-size: 48px;
  color:#e6e6e6;
}

.container .count-heading .count{
  font-size: 50px;
  font-weight: 500;
  color:#f2f2f2;
}

@media only screen and (max-width: 900px){
  .container .count-heading{
    width: calc(50% - 30px);
    margin-bottom: 50px;
  }
  .main{
    padding: 50px 50px 0 50px;
  }
}

@media only screen and (max-width: 500px){
  .container .count-heading{
    width: 100%;
    align-items: center;
  }
  .container .count-heading .icon{
    margin-bottom: 150px;
  }
  .container .count-heading h3{
    margin-bottom: 150px;
  }
}



/*FOOTER*/

footer{
  width: 100%;
  bottom: 0;
  background: linear-gradient(to right, #00093c, #2d0b00);
  color: #fff;
  padding: 100px 0 30px;
  font-size: 13px;
  line-height: 20px;
}
.row{
  width:85%;
  margin: auto;
  display:flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
}
.col{
  flex-basis: 25%;
  padding: 10px;
}
.col:nth-child(2), .col.col:nth-child(3){
  flex-basis: 15%;
}
.logo{
  width: 80px;
  margin-bottom: 30px;
}
.col h3{
  width: fit-content;
  margin-bottom: 40px;
  position: relative;
}
.col .crypEmail{
  width: fit-content;
  border-bottom: 1px solid #ccc;
  margin: 20px 0;
}
ul li a{
  color: #fff;
}
footer ul li{
  margin-bottom: 12px;
}
footer form {
  padding-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #ccc;
  margin-bottom: 50px;
}
footer form .fa{
  font-size: 18px;
  margin-right: 50px;
}

footer form input {
  background: transparent;
  color: #ccc;
  border:0;
  outline: none;
}

.social-icons .fab{
  width: 40px;
  height: 40px;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  color: #000;
  background: #fff;
  margin-right: 15px;
  cursor: pointer;
}
hr{
  width: 90%;
  border:0;
  border-bottom: 1px solid #ccc;
  margin:20px auto;
}
.copyright{
  text-align: center;
}
.underline{
  width: 100%;
  height: 5px;
  background: #767676;
  border-radius: 3px;
  position: absolute;
  top: 25px;
  left: 0;
  overflow: hidden;
}
.underline span{
  width: 15px;
  height: 100%;
  background:#fff;
  border-radius: 3px;
  position: absolute;
  top: 0;
  left:10px;
  animation: moving 2s linear infinite;
}
@keyframes moving{
  0%{
    left: -20px;
  }
  100%{
    left: 100%;
  }
}


/*TESTIMONIALS */

.test-con{
  height: 50vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #e3f2fd;
}

.testimony{
  position: relative;
  max-width: 900px;
  width: 100%;
  padding: 50px 0;
  background: #fff;
}

.testimony .image{
  height: 150px;
  width: 150px;
  object-fit: cover;
  border-radius: 50%;
}
.testimony .slide{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  row-gap: 30px;
}
.slide p{
  padding: 0 100px;
  color: #000;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
}
.slide .quote-icon{
  font-size: 30px;
  color: #4070f4;
}
.slide .details{
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #000;
}
.details .test-name{
  font-size: 14px;
  font-weight: 600;
  color: #333;
}
.details .job{
  font-size: 12px;
  font-weight: 400;
  color: #333;
}

/*FORM*/