/* General Styles */
* {
  padding: 0;
  margin: 0;
}
.container {
  padding-right: 0.9375rem;
  padding-left: 0.9375rem;
  margin-right: auto;
  margin-left: auto;
  margin: 0 50px;
}
.main {
  position: relative;
}
/* start nav */
.nav {
  position: fixed;
  width: 100%;
  height: 70px;
  z-index: 999999999;
}
.nav .container {
  margin: 0 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav .logo img {
  height: 48px;
  top: 50%;
  position: absolute;
}
.nav .container .nav_list {
  list-style: none;
  display: flex;
  gap: 70px;
  padding: 0;
  margin: 0;
}
.nav .container .nav_list ul {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav .container .nav_list ul li {
  height: 90px;
  display: flex;
  align-items: end;
  justify-content: center;
  margin-left: 5px;
  border-top: solid 3px transparent;
  transition: 0.3s;
}
.nav .container .nav_list ul li.active {
  border-top: solid 3px #ae9768;
}

.nav .container .nav_list ul li:hover {
  border-top: solid 3px #ae9768;
}

.nav .container .nav_list ul li a {
  color: white;
  text-decoration: none;
  padding: 10px 15px;
  display: block;
  transition: background 0.3s;
  font-size: 19px;
  transition: 0.3s;
}
.nav .container .nav_list ul li a:hover {
  color: #ae9768;
}

.nav .container .nav_list ul li.active a {
  color: #ae9768;
}
/* end nav  */
/* start caption */
.caption {
  position: relative;
  font-family: cursive;
  color: #ffff;
  background-image: url("./images/background.jpeg");
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 125vh;
}
.caption .container {
  position: relative;
  text-align: center;
  align-items: baseline;
  top: 32%;
}
.caption .container span {
  font-size: 20px;
  margin: 20px 0;
}

.caption .container h2 {
  font-size: 65px;
  margin-bottom: 18px;
}

.caption .container .caption_description p {
  font-size: 20px;
  max-width: 750px;
  line-height: 2.5;
  margin: 20px auto 30px;
}
.caption .container .button_caption {
  margin: 20px 0;
}

.caption .container .button_caption .btn_1,
.btn_2 {
  color: #ffff;
  border: 2px solid transparent;
  padding: 20px 28px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 4px;
  cursor: pointer;
  transition: 0.3s;
}
.caption .container .button_caption .btn_1 {
  background-color: #8e7754;
  border: solid #8e7754 2px;
  margin-right: 5px;
}

.Side_icons {
  position: fixed;
  display: flex;
  align-items: center;
  flex-direction: column;
  top: 30%;
  right: 0px;
  background-color: #fff;
  color: gray;
  border-radius: 5px 0 0 5px;
  font-size: 18px;
  transition: 0.3s;
  z-index: 999999;
}
.Side_icons i {
  transition: 0.3s;
  cursor: pointer;
}
.Side_icons i:hover {
  color: rgb(63, 170, 219);
}
.Side_icons .icon {
  position: relative;
  padding: 12px 10px 5px 10px;
}
.Side_icons .panel {
  position: absolute;
  background: #fff;
  box-shadow: 0 0px 8px 1px rgba(0, 0, 0, 0.08);
  border-radius: 3px;
  padding: 7px 11px;
  transition: color 0.3s, background-color 0.3s;
  cursor: pointer;
  right: 48px;
  bottom: 3px;
  width: 150px;
  display: none;
  transition: display 0.8s;
  font-size: 14px;
  cursor: pointer;
}
.Side_icons .panel::after {
  content: "";
  cursor: pointer;
  position: absolute;
  background-color: transparent;
  width: 20%;
  height: 100%;
  top: 0;
  right: -5px;
  /* z-index: -1; */
}
.Side_icons .panel.p_1::after .p_1 {
  display: block;
}
.Side_icons .panel.p_1:hover,
.p_2:hover {
  color: #fff;
  display: block;
  background-color: rgb(63, 170, 219);
}
.Side_icons .i_1:hover .p_1 {
  display: block;
}
.Side_icons .i_2:hover .p_2 {
  display: block;
}
.scroll_image {
  width: fit-content;
  position: absolute;
  background: transparent;
  bottom: 70px;
  right: 47%;
}
.scroll_image button {
  background-color: transparent;
  border: transparent;
}
.scroll_image button img {
  cursor: pointer;
  width: 70px;
  animation: fade 1s infinite alternate;
}

@keyframes fade {
  from {
    opacity: 0.3;
  }

  to {
    opacity: 1;
  }
}
.caption .container .button_caption .btn_2 {
  background-color: transparent;
  border: solid #ffff 2px;
}
.caption .container .button_caption .btn_1:hover {
  background-color: #ffff;
  border: solid #ffff 2px;
  color: #000;
}
.caption .container .button_caption .btn_2:hover {
  background-color: #ffff;
  border: solid #ffff 2px;
  color: #000;
}
/* End cabtion */

/* Satrt description */
.company_description {
  position: relative;
  width: 100%;
  height: fit-content;
}
.company_description .container {
  margin-top: 90px;
  margin-bottom: 90px;
  display: flex;
  align-items: start;
  justify-content: space-between;
  flex-direction: row;
  gap: 60px;
  overflow: hidden;
}
.company_description .imge_description {
  display: flex;
  align-items: center;
  justify-content: center;
}
.company_description .imge_description img {
  max-height: 550px;
}
.text_description {
  width: 50%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  text-align: start;
  flex-wrap: wrap;
}
.text_description h2 {
  font-size: 32px;
  color: #303030;
  line-height: 1.38em;
  font-weight: 400;
  margin-bottom: 35px;
}

.text_description p {
  background: #fff;
  font-size: 15px;
  line-height: 1.86em;
  -webkit-font-smoothing: antialiased;
  font-family: "Open Sans", arial;
  font-weight: 400;
  color: #686868;
  width: 100%;
  margin-bottom: 50px;
}
.text_description .features {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.text_description .features .featur {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.text_description .features .featur p {
  background: #fff;
  font-size: 15px;
  line-height: 1.86em;
  -webkit-font-smoothing: antialiased;
  font-family: "Open Sans", arial;
  font-weight: 400;
  color: #686868;
  width: 100%;
  margin-bottom: 30px;
}
.text_description .features .featur i {
  width: 44px;
  height: 44px;
  border-radius: 100%;
  line-height: 44px;
  font-size: 20px;
  top: 6px;
  color: #8e7754 !important;
  border: 0.5px solid #8e7754;
}

/* End description */

/* start our Location */

.our_location {
  background-color: #f8f8f8;
  padding: 40px 0;
}

.our_location .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 50px;
  gap: 70px;
}

.our_location .container .location_image img {
  max-height: 420px;
}

.our_location .container .location_des h2 {
  font-size: 32px;
  color: #303030;
  line-height: 1.38em;
  font-weight: 400;
  margin-bottom: 40px;
}
.our_location .container .location_des p {
  line-height: 2em;
  max-width: 95%;
  margin-bottom: 20px;
  font-weight: 400;
  color: #686868;
  font-family: "Alegreya Sans";
  font-size: 20px;
}

/* End our Location */

/* Start order_box */
.our_baking_container {
  text-align: center;
  left: -62.3333px;
  box-sizing: border-box;
  width: 100%;
  padding-left: 62.3333px;
  padding-right: 62.6667px;
  margin: 50px 0;
}
.our_baking_container h2 {
  font-size: 26px;
  color: #353434;
  margin-bottom: 30px;
  text-align: center;
}

.our_baking_container p {
  font-size: 17px;
  color: #888;
  max-width: 720px;
  margin: 17px auto 0;
}
.product_cards {
  margin-top: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
}

.product_cards .product_card {
  display: inline-block;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.product_cards .product_card img {
  width: 100%;

  min-width: 300px;
}
.product_cards .product_card h3 {
  margin-top: 20px;
}
.product_cards .product_card p {
  width: 80%;
  text-indent: 20px;
  text-align: center;
}
/* End order_box */
/* Start Contact */

.Contact {
  position: relative;
}

.Contact .container {
  margin: 0;
  padding: 90px;
  background-color: #f8f8f8;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row-reverse;
}
.text_contact {
  width: 50%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  text-align: start;
  flex-wrap: wrap;
}
.text_contact h2 {
  font-size: 32px;
  color: #303030;
  line-height: 1.38em;
  font-weight: 400;
  margin-bottom: 35px;
}

.text_contact p {
  font-size: 15px;
  line-height: 1.86em;
  -webkit-font-smoothing: antialiased;
  font-family: "Open Sans", arial;
  font-weight: 400;
  color: #686868;
  width: 100%;
  margin-bottom: 50px;
}
.text_contact .features {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.text_contact .features .featur {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 30px;
}
.text_contact .features .featur p {
  font-size: 15px;
  line-height: 1.86em;
  -webkit-font-smoothing: antialiased;
  font-family: "Open Sans", arial;
  font-weight: 400;
  color: #686868;
  width: 100%;
  margin: 0px;
}
.text_contact .features .featur i {
  width: 44px;
  height: 44px;
  border-radius: 100%;
  line-height: 44px;
  font-size: 20px;
  color: #fff !important;
  border: 0.5px solid #8e7754;
  background-color: #8e7754;
}

.Contact_image img {
  width: 450px;
  cursor: pointer;
}
/* End Contact */
/* Start Footer */

.footer {
  text-align: center;
  background-color: #353330;
  height: 100vh;
  margin: 0;
  padding: 0;
  position: relative;
  color: #777;
}
.footer .container {
  position: relative;
  top: 50%;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
}
.footer .container ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  list-style: none;
}
.footer .container ul li {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  font-size: 20px;
  color: #8c8a86;
  text-align: center;
  margin-right: 8px;
  margin-bottom: 8px;
  background: #484540;
  transition: color 0.3s, background-color 0.3s, border-color 0.3s;
  overflow: hidden;
  position: relative;
  border-radius: 100%;
}
/*End Footer  */
