@import url('https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@0,200;0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Kaushan+Script&family=Rubik+Puddles&family=Rubik+Wet+Paint&display=swap');

:root{
  --orange:#ff7a00;
  --black:rgba(0,0,0,.3);
  --gray:#666;
  --white:#fff;
  --light-gray:#444;
  --dark-gray:#333;

  --font-exo2:'Exo 2', sans-serif;
}

*{
  margin: 0; 
  padding: 0;
  box-sizing: border-box;
  transition: all .2s linear;
  text-transform: capitalize;
  text-decoration: none;
  font-family: var(--font-exo2);
}

html{
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body{
  overflow-x: hidden;
}

.heading{
  font-size: 4rem;
  text-align: center;
  letter-spacing: 1.7rem;
  color: var(--light-gray);
  margin: 2rem 0;
  padding-top: 6rem;
  text-decoration: underline;
  text-decoration-style: solid;
  text-decoration-color: var(--orange);
  text-underline-offset: -1.4rem;
}


.header{
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: #fff;
  z-index: 100;
  padding: 1rem 2rem;
  box-shadow: 0 .2rem .5rem var(--black); 

}
.header .logo{
  height: 4rem;
}

.header nav ul{
  list-style-type:none;
  display: flex;
  justify-content: space-around;
  margin: 0;
  padding: 0;
}

.header nav ul li{
  margin: 0 1.5rem;
}

.header nav ul li a{
  font-size: 2rem;
  color: var(--gray);
  text-decoration: none;
}

.header nav ul li a:hover{
  color: #000;
  text-decoration: none;
}

.header .fa-bars{
  font-size: 2.5rem;
  color: var(--gray);
  cursor: pointer;
  display: none;
}

.fa-times{
  transform: rotate(180deg);
}

/* HOME */

.home .hero{
  min-height: 60vh;
  background: url(./img/bg-home.jpeg) no-repeat;
  background-size: cover;
  background-position:center;
  display: flex;
  align-items: center;
}

.home .hero .text1{
  font-size: 5rem;
  width: 50rem;
  background: var(--white);
  padding:1rem;
  text-align: center;
  opacity: .8;
  margin-left:1%;
}

.home .hero .text2{
  font-size: 3rem;
  width: 41rem;
  background: var(--orange);
  padding: 1rem;
  text-align: center;
  opacity: .8;
  margin-top: 1rem;
  color: var(--white);
  margin-left:1%;
}

.home .counting{
  min-height: 40vh;
  padding: 2rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.home .counting .box{
  margin: 2rem 4rem;
  text-align: center;
}

.home .counting .box .count{
  font-size: 7rem;
  color: var(--gray);
}

.home .counting .box h3{
  font-size: 2rem;
  color: var(--orange);
}

/* ABOUT */

.about{
min-height: 100vh;
padding-bottom: 3rem;
}

.about .image{
  padding: 2rem;
}

.about .image img{
  height: 45rem;
  object-fit: cover;
  box-shadow: 2.5rem 2.5rem 0 1rem var(--orange);
}

.about .info{
  padding: 2rem;
  margin-top: 3rem;
}

.about .info h2{
  color: var(--orange);
  font-size: 3rem;
}

.about .info p{
  font-size: 1.4rem;
  color: var(--light-gray);
  margin: 2rem 0;
  text-transform:none;
}

.about .info .icons a{
  font-size: 2rem;
  height:4rem;
  width: 4rem;
  line-height: 4rem;
  text-align: center;
  background: var(--dark-gray);
  color: var(--white);
  border-radius: .5rem;
  margin-right: 1rem;
  text-decoration: none;
}

.about .info .icons a:hover{
  background: var(--orange);
}

.service{
  min-height: 100vh;
}

.service .box-container{
  width: 90%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.service .box-container .box{
  height: 25rem;
  width: 25rem;
  box-shadow: 0 .2rem .5rem var(--black);
  border-left: .5rem solid var(--orange);
  border-right: .5rem solid var(--orange);
  text-align: center;
  padding-top: 6rem;
  margin: 2rem 3rem;
}

.service .box-container .box .fas{
  color:var(--orange);
  font-size:5rem;
}

.service .box-container .box p{
  color:var(--dark-gray);
  font-size:1.1rem;
  margin: 2rem 0;
  text-transform: none;
}

/*  PROJECTS SECTION  */

.project{
  min-height: 100vh;
  background: var(--dark-gray);
}

.project .heading{
  color: #fff;
}

.project .box-container{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.project .box-container .box{
  height: 20rem;
  width: 30rem;
  margin: 2rem;
  border-radius: .5rem;
  box-shadow: 0 .2rem .5rem #000;
  overflow: hidden;
}

.project .box-container .box img{ 
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.project .box-container .box img:hover{
  transform:scale(1.4);
}


.contact{
  min-height: 100vh;
  background: white;
}

.contact .heading{
  color: var(--light-gray);
}

.contact-box-container{
  width: 93%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-box-container .contact-box{
  height: 15rem;
  flex: 1 0 30rem;
  margin: 2rem;
  box-shadow: 0 .3rem .5rem var(--black);
  border-radius: .5rem;
  text-align: center;
  padding-top: 4rem;
}

.contact-box-container .contact-box i{
  color: var(--orange);
  font-size: 4rem;
}

.contact-box-container .contact-box h3{
  font-size: 1.8rem;
  color: #444;
  margin: 2rem 0;
}

.contact .form-container{
  width: 90%;
  box-shadow: 0 .3rem .5rem var(--black);
  padding: 1rem 3rem;
  border-radius: .5rem;
  padding: 1rem 3rem;
  margin-bottom: 2rem;
}

.contact .form-container form input, textarea{
  height: 4.5rem;
  padding: 0 1rem;
  margin: 2rem 0;
  font-size: 1.5rem;
  box-shadow: 0 .3rem .5rem var(--black);
  border: none;
  outline: none;
  color: var(--dark-gray);
}

.contact .form-container form .inputBox{
  display: flex;
  justify-content: center;
}

.contact .form-container form input[type="text"]{
  width: 49%;
}

.contact .form-container form input[type="email"]{
  width: 100%;
}

.contact .form-container form textarea{
  width: 100%;
  height: 20rem;
  padding: 1rem;
  resize: none;
  overflow-y: auto;
}

.contact .form-container form input[type="submit"]{
  background: var(--orange);
  width: 15rem;
  color: #fff;
  font-size: 2rem;
}

.contact .form-container form input[type="submit"]:hover{
  opacity: .8;
}

/* FOOTER */

.footer .logo{
height: 5rem;
margin-bottom: .5rem;
}

.footer{
background: var(--dark-gray);
text-align: center;
}

.footer .row{
  width: 100%;
  margin-left: 0;
  padding: 1rem;
}

.footer .row .col-md-3{
  margin: 1rem 0;
}
.footer .row .col-md-3 p{
  text-transform: none;
}

.footer h2{
  font-size: 2.5rem;
  color: var(--white);
}

.footer p{
  font-size: 1.2rem;
  color: #ccc;
}

.footer .list{
  display: flex;
  flex-flow: column;
}

.footer .list a{
  color: #ccc;
  font-size: 1.7rem;
  text-decoration: none;
}

.footer .letter p{
  font-size: 2rem;
}

.footer .letter input[type="email"]{
  outline: none;
  border: none;
  background: none;
  padding: 0 1rem;
  color:var(--white);
  height:3rem;
  width: 100%;
  border: .1rem solid var(--white);
  font-size: 1.5rem;
}

.footer .letter input[type="submit"]{
  outline: none;
  border: none;
  background: var(--white);
  margin: 1rem 0;
  width: 13rem;
  font-size: 1.6rem;
}

.footer .letter input[type="submit"]:hover{
  background: var(--orange);
  color: var(--white);
}

.footer .credit{
  width: 100%;
  text-align: center;
  color: var(--white);
  font-size: 2rem;
  padding: 1rem 0;
  margin: 1rem 0;
  margin-bottom: 0;
  border-top: .1rem solid #aaa;
  letter-spacing: .2rem;
}

.footer .credit span{
  color: var(--orange);
}




/* MEDIA QUERIES */

@media (max-width:768px){

  html{
    font-size: 50%;
  }

  .header .fa-bars{
    display:block;
  }

  .header nav{
    position: fixed;
    top: 6rem; 
    right:-120%;
    height: calc(100vh - 6rem);
    width: 100vw;
    background: var(--black);
    z-index: 1000;
    border-top: .1rem solid var(--black);
  }

  .header nav ul{
    height: 100%;
    width: 33rem;
    background: var(--white);
    flex-flow: column;
    justify-content: center;
    float: right;
  }
  .header nav ul li{
    margin: 1rem 0 ;
    text-align: center;   
  }

  .header nav ul li a{
    display: block;
    padding: .5rem 0;
    border: .1rem solid var(--black);
    border-radius: 6rem;
  }

  .header nav ul li a:hover{
    background:var(--dark-gray);
    color: var(--white);
  }

  .header .nav-toggle{
    right: 0;
  }
}

@media (max-width:425px){

  .home .hero .text1{
    font-size: 3.5rem;
    width: 35rem;
  }

  .home .hero .text2{
    font-size: 2.5rem;
    width: 32rem;
  }


}