/********** Template CSS **********/
:root {
  --primary: #254336;
  --secondary: #545454;
  --light: #efefef;
  --dark: #1e1916;
  --text-color: #4c4947;
  --text-accent-color: #b7b597;
  --font-family-theme: "TikTok Sans", serif;
  /* --font-family-theme: "Playfair Display", serif; */
  --font-family-text: "Poppins", serif;
}
body {
  background-color: #e7e7e7;
  /* background: url(../img/home-bg.jpg) center center no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-position: center; */
}

h4,
h5,
h6,
.h4,
.h5,
.h6 {
  font-weight: 600 !important;
}

p,
span {
  font-family: var(--font-family-text);
  font-size: 18px;
  line-height: 1.8;
  font-weight: 300;
  color: var(--text-color);
}
/* .text-primary {
    color: #DAD3BE;
} */
.py-6 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.my-6 {
  margin-top: 6rem;
  margin-bottom: 6rem;
}

.fs-7 {
  font-size: 14px;
}
.text-regular {
  font-weight: 300;
  font-family: var(--font-family-text);
  font-size: 1rem;
  line-height: 1.5;
  color: var(--text-color);
}
.text-medium {
  font-weight: 300;
  font-family: var(--font-family-text);
  font-size: 1.125rem;
  line-height: 1.5;
  color: var(--text-color);
}
.back-to-top {
  position: fixed;
  display: none;
  right: 30px;
  bottom: 30px;
  z-index: 99;
}

.img-fluid {
  width: 100%;
}
.section_subtitle {
  font-size: 0.9rem;
  font-weight: 600;
  background: #ccc;
  display: inline-block;
  padding: 0.25rem 1rem;
  border-radius: 2rem;
}
.footer_developer {
  font-size: 0.9rem;
  font-weight: 500;
  color: #FFF !important;
  text-decoration: none;
  padding: 0.25rem 0.75rem;
  line-height: normal;
  border-radius: 2rem;
  border: 2px solid #FFF;
}

/*** Spinner ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity 0.5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}

/*** Button ***/
.btn {
  font-weight: 500;
  transition: 0.5s;
}

.btn.btn-primary {
  color: #ffffff;
}

.btn-square {
  width: 38px;
  height: 38px;
}

.btn-sm-square {
  width: 32px;
  height: 32px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
}

/*** Navbar ***/
.navbar {
  border-bottom: 1px solid rgba(125, 125, 125, 0.2);
}
.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  vertical-align: middle;
  margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
  font-family: var(--font-family-text);
  padding: 35px 25px;
  color: var(--dark);
  outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
  color: var(--text-accent-color);
}

.navbar.fixed-top {
  transition: 0.5s;
  background: var(--light);
}

.top-bar-shadow {
  box-shadow: 0 0 3px 3px rgba(0, 0, 0, 0.1);
}

@media (max-width: 991.98px) {
  .navbar .navbar-nav {
    margin-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    background: var(--dark);
  }

  .navbar .navbar-nav .nav-link {
    padding: 10px 0;
  }
}

@media (min-width: 992px) {
  .navbar .nav-item .dropdown-menu {
    display: block;
    visibility: hidden;
    top: 100%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
    transition: 0.5s;
    opacity: 0;
  }

  .navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    transition: 0.5s;
    opacity: 1;
  }
}

/*** Header ***/
.header-carousel .owl-carousel-inner {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
  .header-carousel .owl-carousel-item {
    position: relative;
    min-height: 600px;
  }

  .header-carousel .owl-carousel-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .header-carousel .owl-carousel-item p {
    font-size: 16px !important;
  }
}

.header-carousel .owl-nav {
  position: absolute;
  width: 100%;
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  top: calc(50vh - 40px);
  /* top: calc(50% - 40px); */
}

/* .header-carousel .owl-nav::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #FFFFFF;
    transform: rotate(45deg);
} */

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
  position: relative;
  width: 60px;
  aspect-ratio: 1 / 1;
  font-size: 40px;
  color: var(--light);
  transition: 0.5s;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
  color: var(--dark);
}

.page-header {
  /* margin-bottom: 6rem; */
  /* background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/carousel-3.jpg) center center no-repeat; */
  background-size: cover;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: var(--dark);
}

/*** Facts ***/
.fact-item {
  transition: 0.5s;
}

.fact-item:hover {
  margin-top: -10px;
  background: #ffffff !important;
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.07);
}

/*** About ***/
.img-twice::before {
  position: absolute;
  content: "";
  width: 60%;
  height: 80%;
  top: 10%;
  left: 20%;
  background: var(--primary);
  border: 25px solid var(--light);
  border-radius: 6px;
  z-index: -1;
}

/* @keyframes appear {
  0% {
    opacity: 0;
    scale: 0.4;
  }
  100% {
    opacity: 1;
    scale: 1;
  }
}

#about-btn {
  animation: appear 5s linear;
  animation-timeline: view();
  animation-range: entry 30% cover 100%;
} */

/*** Product ***/
.product-item {
  transition: 0.5s;
  /* border: 1px solid var(--primary); */
  border-radius: 2rem;
  padding-top: 1rem;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
  margin: 1rem 0;
}

.product-item:hover {
  background: var(--primary) !important;
}
.product-item:hover .product-overlay a {
  background: #FFF !important;
}

.product-item:hover * {
  color: var(--light);
}

.product-item:hover .border-primary {
  border-color: var(--light) !important;
}

.product-item .product-overlay {
  position: absolute;
  width: 100%;
  height: 0;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  overflow: hidden;
  opacity: 0;
  transition: 0.5s;
}

.product-item:hover .product-overlay {
  height: 100%;
  opacity: 1;
}
.product-item div:first-child {
  min-height: 134px;
}

.app-section .app-product-item .img-fluid {
  width: 100%;
  aspect-ratio: 2 / 1;
}
.app-section .app-product-item .product-overlay {
  display: none;
}


.product_card {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  padding: 2rem;
  border-radius: 1rem;
  background-color: #ffffff;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: start;
  margin: 1rem 0;
}
/*.product_card .product_card_img .img-fluid {
  width: 70px;
  aspect-ratio: 1 / 1;
} */
.product_card .product_card_img .img-fluid {
  width: 100%;
  aspect-ratio: 1 / 1;
}
.product_card hr:not([size]) {
    height: 1px;
    width: 100%;
    margin-bottom: 0;
}
.product_card .product_card_content {
    display: block;
    width: 100%;
    text-align: center;
}
.product_card .product_card_content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-color);
    margin: 0.5rem 0;
    margin-top: 1rem;
}
/*** Team ***/
.team-item .team-text {
  position: relative;
  height: 100px;
  overflow: hidden;
}

.team-item .team-title {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--light);
  transition: 0.5s;
}

.team-item:hover .team-title {
  top: -100px;
}

.team-item .team-social {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 100px;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  transition: 0.5s;
}

.team-item .team-social .btn {
  margin: 0 3px;
}

.team-item:hover .team-social {
  top: 0;
}

/*** Testimonial ***/
.testimonial-carousel .owl-item .testimonial-item img {
  width: 60px;
  height: 60px;
}

.testimonial-carousel .owl-item .testimonial-item,
.testimonial-carousel .owl-item .testimonial-item * {
  transition: 0.5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
  background: var(--primary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item * {
  color: #ffffff !important;
}

.testimonial-carousel .owl-nav {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
  margin: 0 12px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  font-size: 22px;
  color: var(--light);
  background: var(--primary);
  transition: 0.5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
  color: var(--primary);
  background: var(--dark);
}

/*** Footer ***/
.footer .btn.btn-link {
  display: block;
  margin-bottom: 5px;
  padding: 0;
  text-align: left;
  font-family: var(--font-family-text);
  font-weight: 300;
  color: var(--light);
  text-transform: capitalize;
  transition: 0.3s;
}

.footer .btn.btn-link::before {
  position: relative;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: var(--light);
  margin-right: 10px;
}

.footer .btn.btn-link:hover {
  color: var(--text-accent-color);
  letter-spacing: 1px;
  box-shadow: none;
}

.copyright {
  background: #111111;
}

.copyright a {
  /* color: var(--primary); */
  color: var(--text-accent-color);
}

.copyright a:hover {
  color: var(--light);
}

/** ARROWS **/
.arrow_box {
  position: absolute;
  top: calc(50% - 25px);
  width: 50px;
  aspect-ratio: 1 / 1;
  background: #d2d2d7a3;
  border-radius: 50%;
  transition: transform 0.5s ease-in,
    opacity 0.7s cubic-bezier(0.15, 0, 0.2, 1) 0.1s;
  z-index: 2;
  cursor: pointer;
  display: none;
  padding: 0%;
}

.arrow_box.active {
  display: flex;
}

.arrow_left_box {
  left: 15px;
}

.arrow_right_box {
  right: 15px;
}

.arrow_box i.arrow {
  border: solid #000000;
  border-width: 0 5px 5px 0;
  display: inline-block;
  cursor: pointer;
  border-radius: 5px;
  /* margin-top: 15px; */
  position: absolute;
  top: 15px;
}

.arrow_box .right {
  width: 20px;
  height: 20px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  left: 13px;
}

.arrow_box .left {
  width: 20px;
  height: 20px;
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
  left: 18px;
}

.home_banner_section {
  display: block;
  align-content: center;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: calc(100vh - 94px);
  /* min-height: 750px; */
  margin-top: 94px;
  /* padding-top: 94px; */
  /*background: url(../img/hero-food-new1.jpg) center center no-repeat; */
    background: url(../img/home-banner/home-banner-1.jpg) center center no-repeat;

  
  /* background-size: cover;
  background-attachment: fixed; */
}

/* .home_banner_section .home_banner_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
} */

.home_banner_section .home_banner_content {
  width: 100%;
  height: fit-content;
  padding: 2rem;
  border-radius: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  color: #000000;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  text-align: center;
}
.home_banner_section .home_banner_content h1 {
  font-size: 50px;
  font-weight: 700;
  margin-bottom: 20px;
}
/* .home_banner_section .home_banner_content ul {
  font-family: "Poppins", sans-serif;
  font-size: 1.5rem;
  font-weight: 200;
  margin: 1rem 0 2rem 0rem;
  list-style-type: disc;
  display: flex;
  flex-wrap: wrap;
  padding: 0%;
}
.home_banner_section .home_banner_content ul li {
  margin-left: 2.5rem;
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--text-color);
  line-height: 1.5;
} */

/*.home_banner_section .home_banner_image_block {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: flex;
  justify-content: end;
  align-items: end;
}
.home_banner_section .home_banner_image_block_container {
  width: 100%;
  height: 100%;
  position: relative;
  /* padding: 10%; */
  /* margin: 5%; */
  transform: translate(-10%, -10%);
}
.home_banner_section .home_banner_image_box {
  width: 60%;
  aspect-ratio: 1 / 1;
  position: absolute;
  -webkit-mask-image: url(../img/badge.png);
  mask-image: url(../img/badge.png);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: cover;
  mask-size: cover;
}
.home_banner_section .home_banner_image_box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home_banner_section .home_banner_image_box1 {
  bottom: 0%;
  right: 0%;
}
.home_banner_section .home_banner_image_box2 {
  width: 25%;
  aspect-ratio: 1 / 1;
  bottom: 54%;
  right: -4%;
}
.home_banner_section .home_banner_image_box3 {
  width: 25%;
  aspect-ratio: 1 / 1;
  bottom: 60%;
  right: 23%;
}
.home_banner_section .home_banner_image_box4 {
  width: 25%;
  aspect-ratio: 1 / 1;
  bottom: 47%;
  right: 47%;
}
.home_banner_section .home_banner_image_box5 {
  width: 25%;
  aspect-ratio: 1 / 1;
  bottom: 23%;
  right: 60%;
}
.home_banner_section .home_banner_image_box6 {
  width: 25%;
  aspect-ratio: 1 / 1;
  bottom: -4%;
  right: 55%;
} */



.leftmenu_toggle_box {

  display: inline-block;

  /* transform: rotate(-90deg); */

  /* position: fixed;

  left: -64px;

  top: 50%; */

  /* border-radius: 0 0 0.5rem 0.5rem; */

  transition: left 0.25s ease;

  /* background-color: #f8f9fa; */

  /* background-color: #333; */

}





.leftmenu_toggle_box .leftmenu_toggle {

  display: flex;

  width: max-content;

  color: var(--text-color);

  font-weight: 500;

}


.leftmenu_toggle_box .leftmenu_toggle:hover {

  color: #bb852b;

}



.leftmenu_toggle_box .leftmenu_toggle.active {

  color: #bb852b;

}


/* .leftmenu_toggle_box .leftmenu_toggle .bi {

  margin-left: 0.5rem;

} */



#leftmenu_content {

  display: block;

  position: fixed;

  left: -280px;

  top: 0%;

  width: 280px;

  height: 100vh;

  background-color: #FAFAFC;

  z-index: 100;

  transition: left 0.25s ease;

  /* box-shadow: -4px 0px 5px rgba(0, 0, 0, 0.05); */

}



#leftmenu_content.active {

  left: 0px;

  /* overflow-y: auto; */

}



#leftmenu_content .leftmenu_categories_box {

  width: 100%;

  height: 100%;

  padding: 1.5rem;

  /* background-color: #FFF; */

  border-radius: 1rem;

  overflow-y: auto;

  align-content: center;

}


#leftmenu_content .leftmenu_categories_box .navbar-nav .nav-link {

  border-bottom: 1px solid #E5E5E5;

}



.form-floating>.form-select {
    padding-top: 0.625rem;
    padding-bottom: .625rem;
}

.about_environment_section {
    display: block;
    width: 100%;
    height: fit-content;
    background: #FFF;
    border-radius: 3rem;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
    position: relative;
    padding: 3rem;
}

.about_environment_section .background-img {
    position: absolute;
    z-index: 0;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 3rem;
}
.about_environment_section .background-overlay {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1;
    border-radius: 3rem;
}
.about_environment_section .environment_content {
    position: relative;
    z-index: 2;
    color: #FFF;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.about_environment_section .environment_content .title, .about_environment_section .environment_content .description,  .about_environment_section .environment_content .content {
    display: block;
    width: 75%;
    color: #FFF;
    text-align: center;
}

#sustainability-section {
    display: block;
    padding-top: 7rem;
    padding-bottom: 3rem;
}