* {
  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*/

.heading-about {
  text-align: center;
  padding-top: 180px;
  font-family: "Julius Sans One", sans-serif;
  font-size: 49px;
  font-weight: bolder;
  color: #472004;
}
.heading-about-two {
  text-align: center;
  padding-top: 10px;
  font-family: "Freeman", sans-serif;
  font-size: 49px;
  font-weight: bolder;
  color: #472004;
}
.container-about-us {
  max-width: 1200px;
  margin: 10px auto;
  padding: 26px;
  padding-top: 30px;
  height: 300px;
}
.header-about-us {
  margin-bottom: 20px;
  color: #472004;
}

.header-about-us p {
  font-size: 20px;
  margin: 10px 0;
  color: #472004;
}
.content-about-us {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.card-about {
  flex-basis: calc(31% - 20px);
  background-color: #f4eeeb;
  border-radius: 5px;
  padding: 20px;
}
.card-about p {
  font-size: 15px;
  margin: 10px 0;
  color: #472004;
}
.heading-about-three {
  text-align: center;
  font-family: "Freeman", sans-serif;
  font-size: 49px;
  font-weight: bolder;
  color: #472004;
}
.franchise-container {
  max-width: 1400px;
  width: 55%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f4eeeb;
  padding: 25px 30px;
  border-radius: 5px;
  margin-left: 320px;
}
.franchise-container form .user-detail {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 20px 0 12px 0;
}
form .user-detail .input-box {
  margin-bottom: 15px;
  width: calc(100% / 2-20px);
}
.user-detail .input-box .detail {
  display: block;
  font-weight: 500;
  margin-bottom: 5px;
}
.user-detail .input-box input {
  height: 45px;
  width: 300px;
  outline: none;
  border-radius: 5px;
  border: 1px solid #472004;
  padding-left: 15px;
  font-size: 16px;
  transition: all 0.3s ease;
}
.user-detail .input-box textarea {
  height: 100px;
  width: 620px;
  border-radius: 5px;
  border: 1px solid #472004;
  padding-left: 10px;
  font-size: 16px;
  transition: all 0.3s ease;
}
form .Button {
  height: 45px;
  margin: 45px 0;
}
form .Button input {
  height: 100%;
  width: 100%;
  outline: none;
  color: #f4eeeb;
  border: none;
  background-color: #472004;
  font-weight: 600;
  font-size: 20px;
}
form .Button:hover {
  background-color: #f4eeeb;
  color: #472004;
}
ul {
  margin: 0px;
  padding: 0px;
}

@media screen and (max-width: 768px) {
  .Navbar {
    display: none;
  }
  .heading-about-three {
    padding-top: 360px;
  }
  .franchise-container {
    max-width: 100%;
    background-color: white;
    margin-left: 0;
  }
  form .user-detail .input-box {
    margin-bottom: 15px;
    width: 100%;
    margin-left: 180px;
  }
  /* .franchise-container form .user-detail {
    width: 300px;
  } */
  .user-detail .input-box textarea {
    width: 360px;
  }
  form .Button {
    background-color: white;
  }
  form .Button input {
    width: 50%;
    margin-left: 185px;
  }
  .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;
  }
  #check:checked ~ .Navbar {
    display: initial;
  }
  .single-cta {
    padding-top: 10px;
  }
  .team-social {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-left: 150px;
  }
  .team-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: #472004;
    padding-left: 5px;
  }
  .team-social a i {
    color: #f4eeeb;
    font-size: 16px;
    margin: 0 2px;
    padding: 6px;
  }
  .team-socials {
    float: none;
    text-align: center;
    margin-left: 8px;
  }
}
