* {
  padding: 0;
  margin: 0;
}
/* Navbar Starting*/
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #f4eeeb;
  box-shadow: 0 5px 10px rgb(0, 0, 0, 0.1);
  padding: 10px 3%;
  display: flex;
  align-items: center;
  z-index: 999;
  height: 150px;
}
.Logo {
  width: 200px;
  height: 150px;
}
header .Navbar ul {
  list-style: none;
}
header .Navbar ul li {
  position: relative;
  float: left;
  text-transform: capitalize;
}
header .Navbar ul li a {
  font-size: 20px;
  padding: 25px;
  color: #472004;
  display: block;
  text-decoration: none;
  transition: 0.4s ease-in-out;
  font-family: "Times New Roman", Times, serif;
}
header .Navbar ul li a:hover {
  color: rgb(77, 25, 25);
}
/* header .Navbar ul li a:hover::after {
        content: "";
        width: 100%;
        height: 0.2rem;
        background: #472004;
        position: absolute;
        bottom: 0.6rem;
        left: 0.4rem;
      } */
header .Navbar ul li ul {
  position: absolute;
  left: 0;
  width: 200px;
  background: #f4eeeb;
  display: none;
  padding: 5px;
}
header .Navbar ul li ul li {
  width: 100%;
  border-top: 1px solid rgb(0, 0, 0, 0.2);
}
header .Navbar ul li:focus-within > ul,
header .Navbar ul li:hover > ul {
  display: initial;
}
#check {
  display: none;
}
header label {
  font-size: 40px;
  font-weight: bolder;
  color: #472004;
  cursor: pointer;
  float: right;
  display: none;
  margin-right: 15px;
}
.team-socials {
  font-size: 20px;
  font-weight: bolder;
  color: #472004;
  cursor: pointer;
  float: right;
  margin-left: 59px;
  margin-top: 25px;
  word-spacing: 34px;
}
.team-socials i {
  color: #472004;
}
/* Navbar end*/

/* about us starting */
.heading-about {
  text-align: center;
  padding-top: 180px;
  font-size: 36px;
  font-weight: 900;
  color: #472004;
}
.responsive {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .Navbar {
    display: none;
  }
  .responsive {
    display: initial;
  }

  .Logo {
    width: 100%;
    height: 50px;
    margin-bottom: 90px;
    margin-right: 120px;
  }
  header {
    padding: 5px 1%;
  }
  header label {
    display: initial;
  }
  header .Navbar {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #f4eeeb;
    border-top: 1px solid rgb(0, 0, 0, 0.1);
    display: none;
  }
  header .Navbar ul li {
    width: 100%;
    height: 100%;
  }
  header .Navbar ul li a {
    padding: 20px;
  }
  .team-socials {
    float: none;
    text-align: center;
    margin-left: 8px;
  }
  #check:checked ~ .Navbar {
    display: initial;
  }
}
