@import url("https://fonts.googleapis.com/css2?family=Dosis:wght@400;700&family=Poppins:wght@200;300;400;500;600;700&family=Roboto:wght@100;300;400;500;700&display=swap");
* {
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  text-decoration: none;
  list-style: none;
}
.navbar {
  padding: 10px 0px;
  width: 100%;
  position: fixed;
  z-index: 5;
}
.content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: auto;
  max-width: 1100px;
  padding: 0 30px;
}
.navbar .logo {
  font-size: 2em;
  font-weight: 600;
  text-transform: capitalize;
}
.navbar .menu-list {
  display: inline-flex;
}
.navbar .menu-list li {
  margin-left: 20px;
}
.navbar .menu-list li a:hover {
  background: #d9ab7b;
  border-radius: 20px;
  width: 100%;
}
.navbar .menu-list li a,
.navbar .logo a {
  color: antiquewhite;
}

.about {
  background: url(nature\ background.jpg);
  background-size: cover;
  background-position: center;
  min-height: 100vh;
  position: relative;
  padding: 40px 0;
}
.about .content {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 150px 20px;
  z-index: 888;
}
.content .title {
  font-size: 4em;
  font-weight: 900;
  color: antiquewhite;
}
.content .title span {
  color: rgb(76, 96, 46);
  margin-top: 10px;
  letter-spacing: 2px;
}
.content .title p {
  font-size: 16px;
  font-weight: 200;
}
.content .title a {
  font-size: 16px;
  font-weight: 300;
  text-align: center;
  background: #d9ab7b;
  padding: 10px 20px;
  color: aliceblue;
  border-radius: 20px;
  cursor: pointer;
  width: 100%;
}
.title a:hover {
  background: #d8c3ad;
}

.content .icons {
  color: #637140;
  font-size: 30px;
  z-index: 888;
  position: absolute;
  bottom: 30px;
  display: flex;
  justify-content: center;
}
.content .icons i:hover {
  color: #d8c3ad;
  cursor: pointer;
}
.content .icons i {
  margin-left: 40px;
}
.content .icon {
  color: antiquewhite;
  font-size: 25px;
  cursor: pointer;
  display: none;
}
.icon.cancel-btn {
  position: absolute;
  right: 70px;
  top: 100px;
}

/* media queries */
@media (max-width: 992px) {
  .content .icon {
    display: block;
  }
  .content .icon.hide {
    display: none;
  }
  .navbar .menu-list {
    position: fixed;
    top: 0;
    left: -100%;
    height: 100vh;
    width: 100%;
    background: rgb(76, 96, 46, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: auto;
  }
  .navbar .menu-list.active {
    left: 0;
  }
  .navbar .menu-list li {
    margin-top: 50px;
  }
  .navbar .menu-list li a {
    font-size: 23px;
    font-weight: 500;
  }
}
