/* css reset */
* {
  margin: 0;
  padding: 0;
  font-family: "RocknRoll One", sans-serif;
}

/* css variables */
:root {
  --navbar-height: 59px;
}

/* navigation menu */
#navbar {
  display: flex;
  align-items: center;
}

/* logo */
#logo {
  margin: 3px 35px;
}

#logo img {
  height: 60px;
}

/* nav bar */
#navbar {
  position: relative;
}

#navbar ul {
  display: flex;
}

#navbar::before {
  content: "";
  background-color: rgb(217, 233, 193);
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: -1;
  opacity: 0.2;
}

#navbar ul li {
  list-style: none;
  font-size: 20px;
}

#navbar ul li a {
  display: block;
  padding: 3px 18px;
  border-radius: 20px;
  text-decoration: none;
  color: orangered;
}

#navbar ul li a:hover {
  color: #79bd79;
  border-radius: 17px;
}
#navbar ul li a:hover {
  color: rgb(59, 59, 59);
}

/* home section */
#home {
  display: flex;
  flex-direction: column;
  padding: 3px 200px;
  align-items: center;
  justify-content: center;
  height: 460px;
}

#home::before {
  content: "";
  background: url(bg2.jpg) no-repeat;
  position: absolute;
  height: 500px;
  width: 100%;
  z-index: -2;
  opacity: 0.9;
  top: 0px;
}

#home h1 {
  color: #79bd52;
  font-size: 50px;
}

#home p {
  color: rgb(109, 138, 51);
  font-size: 25px;
  text-align: center;
}

#home .btn {
  background-color: orangered;
  color: aliceblue;
  height: 60px;
  width: 140px;
  font-size: 20px;
  border-radius: 7px;
}

#home .btn:hover {
  background-color: #79bd52;
}

/* services section */
.center {
  text-align: center;
}

#services {
  position: relative;
  display: flex;
  padding: 30px;
}

#services .box {
  border: 3px solid #79bd52;
  margin: 3px 6px;
  margin-bottom: 28px;
  border-radius: 8px;
  padding: 35px;
  background-color: #ecf0ea;
}

#services .box img {
  height: 170px;
  display: block;
  margin: auto;
}

/* client-section  */

#clients-section {
  position: relative;
}

#clients-section::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 30%;
  z-index: -1;
  opacity: 0.5;
  background: url(bg1.jpg) no-repeat center center;
}

#clients {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 34px;
}

.client-item {
  padding: 35px;
}

#clients img {
  height: 124px;
}

/* contact section */
#contact {
  position: relative;
}

#contact::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.7;
  background: url(conbg.jpg) no-repeat center;
}

#contact-box {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 34px;
}

#contact-box input,
#contact-box textarea {
  width: 100%;
  padding: 0.5rem;
  border-radius: 9px;
  font-size: 1.8rem;
}

#contact-box form {
  width: 40%;
}

#contact-box label {
  color: rgb(241, 241, 241);
  font-size: 2.8rem;
  padding: 12px;
}

/* footer section */
footer {
  background-color: rgb(34, 34, 34);
  color: aliceblue;
  padding: 9px 10px;
}

/* utility classes */
.h-primary {
  font-size: 34px;
  padding: 12px;
}

.h-secondary {
  font-size: 25px;
  padding: 12px;
}
