@import url("https://fonts.googleapis.com/css2?family=Roboto&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* Utility Classes */
.text-primary {
  color: #93cb52;
}
.btn {
  display: inline-block;
  color: #fff;
  background: #93cb52;
  padding: 0.5rem 2rem;
  border: none;
  border-radius: 5px;
}
.bg-light {
  background: #f4f4f4;
  color: #333;
}
.bg-primary {
  background: #93cb52;
  color: #fff;
}
.bg-dark {
  background: #333;
  color: #fff;
}
.btn-dark {
  background: #333;
  color: #f4f4f4;
}
.text-center {
  text-align: center;
}
.list {
  margin: 0.5rem 0;
  list-style: none;
}
.list li {
  padding: 0.5rem 0;
  border-bottom: #444 dotted 1px;
}
.container {
  max-width: 1100px;
  margin: auto;
  overflow: hidden;
  padding: 0 2rem;
}
.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;
}

.btn:hover {
  background: #7ab436;
}
.l-heading {
  font-size: 4rem;
}
.lm-heading {
  font-size: 2.5rem;
}
.m-heading {
  font-size: 2rem;
}
.leading {
  font-size: 1.2rem;
  padding-bottom: 1.3rem;
}
body {
  font-family: "Roboto", sans-serif;
  line-height: 1.4;
}
a {
  text-decoration: none;
}
p {
  margin: 0.75rem 0;
}

/* Navbar */
#navbar {
  display: flex;
  position: sticky;
  top: 0;
  background: #333;
  color: #fff;
  justify-content: space-between;
  z-index: 1;
  padding: 1rem;
}
#navbar ul {
  display: flex;
  align-items: center;
  list-style: none;
}
#navbar ul li a {
  color: #fff;
  padding: 0.75rem;
  margin: 0 0.25rem;
}
#navbar ul li a:hover {
  background: #93cb52;
  border-radius: 5px;
}

/* Showcase */
#showcase {
  color: #fff;
  background: #444 url(../images/showcase.jpg) no-repeat center center/cover;
  height: 94vh;
}
#showcase .showcase-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 100%;
  padding: 0 2rem;
  /* Overlay */
  display: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
}

/* Section: What We Do */
#what .items {
  display: flex;
  padding: 1rem;
}
#what .items .item {
  padding: 1rem;
  text-align: center;
}
#what .items .item i {
  background: #93cb52;
  padding: 1rem;
  border-radius: 50%;
  margin-bottom: 1rem;
}

/* Section: Who We Are */
#who {
  display: flex;
}
#who div {
  flex: 1;
}
#who .who-img {
  background: url("../images/people.jpg") no-repeat center center/cover;
}
#clients .items {
  display: flex;
}
#clients .items img {
  width: 60%;
  display: block;
  margin: auto;
}

/* Section: Contact */
#contact {
  display: flex;
}

#contact .map,
#contact .contact-form {
  flex: 1;
}

#contact .contact-form .form-group {
  margin: 0.75rem;
}

#contact .contact-form label {
  display: block;
}
#contact .contact-form {
  padding-top: 5rem;
}
#contact .contact-form h2,
#contact .contact-form p {
  text-align: center;
}

#contact .contact-form input,
#contact .contact-form textarea {
  width: 100%;
  padding: 0.5rem;
}
#contact .contact-form .submitting {
  width: 60%;
  text-align: center;
  margin: 0 auto;
}
/* Footer */
#main-footer p {
  padding: 0.75rem 0;
}
