*{
  margin:0;
  padding:0;
  box-sizing: border-box;
}
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap');
body{
  font-family: 'Roboto', sans-serif;
  line-height:1.4;
}
a{
  text-decoration: none;
}
p{
  padding:.75rem 0;
}

/* Utility classes */

.container{
    padding: 1rem;
    margin:auto;
    padding:0 2rem;
    overflow:hidden;
}
.bg-dark{
  background:#333;
  color:white;
}
.bg-light{
  background: #f4f4f4;
  color:#333;
}
.bg-primary{
  background-color: #93cd52;
  color:white;
}
.text-primary{
  color: #93cd52;
}
.btn{
  display: inline-block;
  color:#fff;
  background: #93cd52;
  padding:.8rem 1rem;
  border-radius: 5px;
  border: none;
}
.btn-dark{
  display: inline-block;
  color:#fff;
  background: #555;
  padding:.5rem 1rem;
  border-radius: 5px;
  border: none;
}

.btn:hover{
  background: #333;
}

.text-center{
  text-align: center;
}
.py-1{ padding: 1.5rem 0; }
.py-2{ padding: 2rem 0; }
.py-3{ padding: 3rem 0; }

.p-1{ padding: 1.5rem; }
.p-2{ padding: 2rem; }
.p-3{ padding: 3rem; }

.l-heading{
  font-size: 4rem;
  margin-bottom: .75rem;
  line-height: 1.1;
}
.m-heading{
  font-size: 1.5rem;
  line-height: 1.1;
  margin-bottom: .75rem;
}
.lead{
  font-size: 1.3rem;
}

.list {
  margin:0.5rem 0;
  list-style: none;
}
.list li{
  padding: .5rem 0;
  border-bottom:1px #555 dotted;
}


/* navbar */
#navbar{
  background: #333;
  color:#fff;
  position: sticky;
  top:0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1;
  padding: 1rem;
}

#navbar ul{
  display: flex;
  list-style: none;
  align-items: center;
}

#navbar ul li a{
  margin:0 0.25rem ;
  padding:.75rem;
  color:white;
}

#navbar ul li a:hover{
  background: #93cd52;
  border-radius:5px;
}

/* showcase */
#showcase{
  background: url('../img/showcase.jpg') no-repeat center center/cover;
  height:100vh;
  color:#fff;
}

#showcase .showcase-content{
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  align-items: center;
  height:100%;
  padding:0 2rem;
  /* overlay */
  position: absolute;
  top:62px;
  left:0;
  right:0;
  bottom:0;
  background: rgba(0,0,0,0.4);
}

/* what we do */
#what .items{
  display: flex;
  padding:1rem;
}

#what .items .item{
  flex:1;
  padding:1rem;
  text-align: center;
  
}
#what .items .item i{
  background: #93cd52;
  padding:1rem;
  border-radius:50%;
  margin-bottom: .5rem;
}

/* What we do */
#who{
  display: flex;
}
#who div{
  flex:1;
}
#who .image-who{
  background: url('../img/people.jpg') no-repeat center center/cover;
}

/* clients */
#clients .items{
  display: flex; 
}
#clients .items img{
  /* display: block; */
  width:60%;
  margin:auto;
}

/* contact */
#contact{
  display: flex;
}
#contact .contact-form .form-group{
  margin:.75rem;
}
#contact .contact-form,#contact #map{
  flex:1;
}

#contact .contact-form label{
  line-height: 3.0;
  width: 10px;
  
}
#contact .contact-form input,textarea{
  display: block; 
  width:100%;
  padding:10px;
}
#contact .btn{
  margin-top: 1rem;
}

#contact #map iframe{
  height: 100%;
  width:50vw;
}


