@font-face {
  font-family: 'Pacifico';
  font-style: normal;
  font-weight: 400;
  src: local('Pacifico Regular'), local('Pacifico-Regular'), url(https://fonts.gstatic.com/s/pacifico/v12/FwZY7-Qmy14u9lezJ-6H6MmBp0u-.woff2) format('woff2');
  font-display: swap;
}



/* CSS RESET */
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* html{
  scroll-behavior: smooth;
} */
body{
   /* font-family: 'Yeseva One', cursive; */
   font-family: 'Rubik', sans-serif;
   font-weight: 500;
   line-height: 1.4;
}
a{
  text-decoration: none;
}
p{
  font-family: 'Rubik', sans-serif;
  font-weight: 400;
  margin: 0.75rem 0;
}


/* Utility Classes */
.container{
  max-width: 1100px;
  /* for aligning middle */
  margin: auto;
  padding: 0 2rem;
  /* no scrollbars */
  overflow: hidden;
}
.text-center{
  text-align: center;
}
.text-primary{
  color: #93cb52;
}
.l-heading{
  font-size: 3.5rem;
  margin-bottom: 0.75rem;
  line-height: 1.1;
  letter-spacing: 1px;
}
.m-heading{
  font-size: 2rem;
  margin-bottom: 0.75rem;
  line-height: 1.1;
  letter-spacing: 1px;
}
.lead{
  font-size: 1.2rem;
  margin-bottom: 2rem;
  font-family: 'Rubik', sans-serif;
  font-weight: 500;
}
.lead2{
  font-size: 1rem;
  margin-bottom: 0.5rem;
  font-family: 'Rubik', sans-serif;
  font-weight: 500;
}
.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;}
.font-primary{
  font-family: 'Rubik', sans-serif;
  font-weight: 500;
}

.font-secondary{
  font-family: 'Rubik', sans-serif;
  font-weight: 500;
  font-style: italic;
}
.font-tertiary{
  font-family: 'Rubik', sans-serif;
  font-weight: 400;
}
.btn{
  display: inline-block;
  color: #fff;
  background: #93cb52;
  padding: 0.5rem 2rem;
  border: none;
  border-radius: 5px;
  font-size: 1.3rem;
  transition: 0.3s;
}
.btn:hover{
  background:#93cb52;
}
.btn-dark{
  background: #333;
  color: #fff;
}
.btn-dark:hover{
  background: #93cb52;
}
.list{
  margin: 0.5rem 0;
  list-style: none;
  font-size: 16px;
}
.list li{
  padding: 0.5rem 0;
  border-bottom: #444 dotted 1px;
}
.bg-dark{
  background: #333;
  color: #fff;
}

.bg-light{
  background: #f4f4f4;
  color: #333;
}
.bg-primary{
  background: #93cb52;
  color: #fff;
}
.bg-normal{
  background: #fff;
  color: #333;
}

/* Navbar */
#navbar{
  display: flex;
  background: #333;
  color: #fff;
  /* For sticky navbar set position to sticky */
  position: sticky;
  /* For sticking it in top position */
  top: 0;
  /* Add space in between flex items h1 & ul */
  justify-content: space-between;
  /* To make it appear over everything else the higher the z index the closer it is to screen */
  z-index: 1;
  /* 16px padding all around */
  padding: 1rem;
}
#navbar ul{
  /* children li also flex items */
  display: flex;
  /* vertical align center */
  align-items: center;
  list-style: none;
}
#navbar ul li a{
  color: #fff;
  /* padding .75rem all around */
  padding: 0.75rem;
  /* margin 0.25rem in left and right */
  margin: 0 0.25rem;
  transition: 0.3s;
}
#navbar ul li a:hover{
  background: #93cb52;
  border-radius: 5px;
}

/* Showcase */
#showcase{
  /* Adding background image to showcase */
  background: #333 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;
  /* set height to 100% of its container in this case #showcase */
  height: 100%;
  /* 32px padding in left and right */
  padding: 0 2rem;
  /* Overlay */
  position: absolute;
  top: 60px;
  left:0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.3);
}

/* Section What We Do */
#what .items{
  display: flex;
  padding: 1rem;
}
#what .items .item{
  flex: 1;
  text-align: center;
  padding: 1rem;
}
#what .items .item i{
  background: #93cb52;
  padding: 1rem;
  border-radius: 50%;
  margin-bottom: 1rem;
}

/* section who we are */
#who{
  display: flex;
}
#who div{
  /* to split two divs in half */
  flex: 1;
}
#who .who-img{
  background: url('../img/people.jpg') no-repeat center center/cover;
}

/* Clients */
#clients .items{
  display: flex;
}
#clients .items img{
  display: block;
  margin: auto;
  width: 60%;
}

/* Section Contact */
#contact{
  display: flex;
}
#contact .map, #contact .contact-form{
  flex: 1;
}

#contact .contact-form .form-group{
  margin: 0.75rem;
  font-family: 'Rubik', sans-serif;
}

#contact .contact-form label{
  display: block;
}

#contact .contact-form input,
#contact .contact-form textarea{
  width: 100%;
  padding: 0.5rem;
  font-family: 'Rubik', sans-serif;
  font-weight: 500;
  border: 1px #ddd solid;
  border-radius: 5px;
}
#contact .contact-form textarea{
height: 100px;
overflow: hidden;
resize: none;
}
#contact .contact-form input:focus,
#contact .contact-form textarea:focus{
  outline: none;
}
