@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@200;300;400;600;800&family=Poppins:wght@400;600;700&display=swap');

:root{
    --black:#181D31;
    --orange:#CB1C8D;
    --yellow:#474E68;
}
#home{
  color: #F95F1D;
}

*{
    font-family: 'Nunito',sans-serif;
    margin: 0;padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    border: none;
    text-transform:capitalize;
    transition: 0.2s linear;  
}
html{
    font-size: 62.5%;
    overflow-x: hidden;
}
section{
    padding: 0 7%;
    padding-top: 7.5rem;
    padding-bottom: 3rem;
    min-height: 100vh
}
.btn{
    display:inline-block;
    margin-top: 1rem;
    padding: .7rem 2.5rem;
    font-size: 1.7rem;
    color: var(--yellow);
    border: .2rem solid var(--yellow);
    cursor: pointer;
    background: none;
    border-radius: 3rem;
}
.btn:hover{
    background:#181D31;
    color: #fff;
    border-radius: 3rem;
}
.heading{
    text-align: center;
    color:var(--black);
    padding:1rem;
    text-transform: uppercase;
    font-size: 4.5rem;
}
header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding:  2rem 7%;
    box-shadow: 0 .5rem 1rem rgba(0, 0,0,1);
    background:#fff;
    z-index: 1000;
}
header .logo{
    font-size: 2.5rem;
    color: #666;
    font-weight: bolder;
}
header .navbar a{ 
    font-size: 2rem;
    margin-left: 2.5rem;
    color: var(--black);   
}
header .navbar a:hover{
    color: var(--orange);
}
#menu-bar{
    font-size: 3rem;
    color:var(--black);
    cursor:pointer;
    display:none;
  }
  .home{
    display:flex;
    align-items:center;
    background:url(/imageFolder/home-bg.jpg) no-repeat;
    background:#557153;
    background-size: cover;
    background-position: center;
    flex-wrap:wrap;
  }
  .home .image{
    padding-top: 4rem;
    flex:1 1 40rem;
  }
  .home .content{
    padding: 1rem;
    flex:1 1 40rem;
  }
  .home .content h3{
      color: #fff;
      font-size:4.6rem;
      text-transform: uppercase;
  }
  .home .content p{
    color: #fff;
    font-size: 2rem;
    padding: 3rem 2rem 0 0;
}
.home .image img{
    width:100%;
  }
.home .content .btn{
    color: #444;
    background: #fff;
}
.home .content .btn:hover{
    color:#fff;
    background:none;
    border-color: #fff;
  }
  .feature .box-container{
    display: flex;
    align-items: center;
    justify-content:center;
    flex-wrap: wrap;
  }
  .feature .box-container .box{
    margin: 1rem; 
    text-align: center;
    padding: 2rem 4rem;
    border: 0.5rem solid rgb(68, 26, 68);
    flex: 1 1 30rem;
  }
  .feature .box-container .box h3{
    font-size: 2.5rem;
    color: var(--black);
    padding: 1rem 0;
  }
  .feature .box-container .box p{
    font-size: 1.3rem;
    color:#666;
    padding: 1rem 0;
    padding-bottom: 1rem;
  }
  .service{
    background:var(--black);
  }
  .service .heading{
    color: #fff;
  }
  .service .box-container{
    display: flex;
    align-items: center;
    justify-content:center;
    flex-wrap: wrap;
  }
  .service .box-container .box{
    padding: 4rem;
    margin: 1rem;
    flex: 1 1 30rem;
    border: 1rem solid #fff3;
    text-align: center;
  }
  .service .box-container .box h3{
    font-size: 2.5rem;
    color: rgb(255, 255,204);
    padding: 1rem 0;
  }
  .service .box-container .box p{
    font-size: 1.5rem;
    color: #fff;
    padding-bottom: 1rem;
  }
  .service .box-container .box:hover{
    background: #fff;
  }
  .service .box-container .box:hover h3{
   color: var(--black);
  }
.service .box-container .box:hover p{
  color: #666;
}
.project .box-container{
  display: flex;
    align-items: center;
    justify-content:center;
    flex-wrap: wrap;
}
.project .box-container .box{
  margin: 1rem;
  border: 1rem slategray rgba(0,0,0, 2) ;
  overflow: hidden;
  height: 25rem;
  flex:1 1 30rem;
  position:relative;
  cursor: pointer;
}
.project .box-container .box img{
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.project .box-container .box .number{
  position: absolute;
  top: 2rem;
  right: 1.5rem;
  font-size: 5rem;
  color: rgba(0,0,0,2);
  font-weight: bolder;
  z-index: 10;
}
.project .box-container .box::before {
  content: '';
  position: absolute;
  top:0; left:0;
  height: 100%;
  width:100%;
  background:#fff;
  transition: .3s ease-out;
  clip-path: circle(30% at 95% 0);
}
.project .box-container .box:hover::before{
  clip-path: circle(100%);
}
.project .box-container .box .info{
  position: absolute;
  top:70%; left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  opacity: 0;
}
.project .box-container .box:hover .info{
  transition-delay: .2s;
  opacity: 1;
  top:50%;
}
.project .box-container .box .info h3{
  color:var(--black);
  font-size: 2.5rem;
}
.project .box-container .box .info p{
  color:#666;
  font-size: 2rem;
}
.team{
  background:rgb(0,128,128);
}
.team .heading{
  color:#000;
}
.team .box-container{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.team .box-container .box{
  width:27rem;
  background:#fff;
  position: relative;
  margin:1rem;
  text-align: center;
  padding-top: 4rem;
  padding-bottom: 8rem;
}
.team .box-container .box img{
  height:10rem;
  width:10rem;
  border-radius: 50%;
  object-fit: cover;
}
.team .box-container .box h3{
  font-size: 2.5rem;
  color:var(--black);
}
.team .box-container .box span{
  font-size: 1.5rem;
  color:var(--orange);
}
.team .box-container .box p{
  padding:1rem 2.5rem;
  font-size: 1.3rem;
  color:#666;
}
.team .box-container .box .share{
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  background:var(--orange);
  display: flex;
  justify-content: center;
}
.team .box-container .box .share a{
  height: 4.5rem;
  width: 4.5rem;
  line-height: 4.5rem;
  color:#fff;
  font-size: 1.7rem;
}
.team .box-container .box .share a:hover{
  background:#fff;
  color:var(--black);
}
.price{
  background:rgb(153,51,102);
}
.price .heading{
  color:#fff;
}
.price .box-container{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap:wrap;
}
.price .box-container .box{
  flex:1 1 35rem;
  margin:1rem;
  text-align: center;
  padding:4rem;
  border:.1rem solid var(--yellow);
}
.price .box-container .box h3{
  font-size: 3rem;
  color:#fff;
  padding: 1rem 0;
} 
.price .box-container .box .amount{
  display: flex;
  justify-content: center;
  font-size: 6rem;
  color:var(--yellow);
}
.price .box-container .box .amount span{
  font-size: 2.5rem;
}
.price .box-container .box p{
  color:#eee;
  font-size: 1.8rem;
  padding:1rem 0;
}
.contact .row{
  display: flex;
  flex-wrap: wrap;
  border:.1rem solid rgba(0,0,0,.2);
  box-shadow: 0 .5rem 1rem rgba(0,0,0,.1);
}
.contact .row form{
  flex:1 1 40rem;
  padding:2rem;
}

.contact .row form .inputBox{
  position: relative;
}
.contact .row form .inputBox input, .contact .row form .inputBox textarea{
  width: 100%;
  margin:1.5rem 0;
  padding:.7rem 1rem;
  font-size: 1.7rem;
  color:#666;
  border:.1rem solid rgba(0,0,0,.2);
  text-transform: none;
}
.contact .row form .inputBox textarea{
  height: 15rem;
  resize: none;
}
.contact .row form .inputBox label{
  font-size: 1.5rem;
  position: absolute;
  top:2.5rem; left:1rem;
  color:#444;
}
.contact .row form .inputBox 
{
  top:-.7rem; left:0;
  color:var(--orange);
}
.footer{
  background:#126E82;
}

.footer .box-container{
  display: flex;
  flex-wrap: wrap;
}

.footer .box-container .box{
  margin:2rem;
  flex:1 1 25rem;
}

.footer .box-container .box h3{
  font-size: 2.5rem;
  color:#fff;
  padding:1rem 0;
}

.footer .box-container .box p{
  font-size: 1.5rem;
  color:#fff;
  padding:.5rem 0;
}

.footer .box-container .box a{
  display: block;
  font-size: 1.5rem;
  color:#fff;
  padding:.5rem 0;
}

.footer a:hover{
  text-decoration: underline;
}


  /* media query */
 @media (max-width:1200px){
    html{
        font-size:55%;
    }
 }
 @media (max-width:991px){  
    section{
        padding: 0 7%;
        padding-top: 7.5rem;
        padding-bottom: 3rem;
        min-height: 100vh 
    }
 }
 @media (max-width:768px){
  #menu-bar{
    display: block;
  }
  header .navbar{
    position:absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #eee;
    height: calc(100vh - 100%);
    border-top: 1rem solid rgba(0,0,0,.2);
    display: none;
  }
  header .navbar.nav-toggle{
    display: block;
  }
   header .navbar a{
    margin: 1rem;
    display: block;
    padding: 1.3rem 0;
    background-color: #fff;
    text-align: center;
    border: 1rem skyblue #444;
    animation: nav-links .5s linear backwards;
   animation-delay: calc(.2s * var(--i));
   }
   
   @keyframes nav-links {
    0%{
       transform: translateY(-50rem); 
       opacity:0;
    }
   }
   .fa-times{
    transform: rotate(180deg);
   }
    .home .content{
      text-align: center;
    }
   .home .content h3{
    font-size: 4rem;
   }
 }
 @media (max-width:450px){
  html{
      font-size:50%;

  }
  .heading{
    font-size: 3.5rem;
}
}