@font-face {
  font-family: Ubuntu;
  src: url(../libs/fonts/Ubuntu-BoldItalic.ttf);
}
@font-face {
  font-family: Poppins-Bold;
  src: url(../libs/fonts/Poppins-Bold.ttf);
}
@font-face {
  font-family: Poppins;
  src: url(../libs/fonts/Poppins-Regular.ttf);
}
:root {
  --header-height: 129px;
  --navbar-height: 60px;
}
* {
  font-family: Poppins;
}
body {
  font-size: calc(0.2vw + 12px);
  background-color: #F2EFE8;
  /* line-height: calc(0.25vw + 20px); */
}
label {
  margin: 0;
}
.container,
ul,
li {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.container{
  margin: auto;
}
@media (min-width: 1400px) {
  .container {
    max-width: 1400px;
  }
}
.btn-custom {
  background: #236726;
  border-radius: 10px;
  border: none;
  transition: all 0.3s ease-in-out;
  font-size: 25px;
  padding: 3px 16px;
  font-family: Poppins-Bold;
}
.btn-custom:hover {
  opacity: 0.9;
}
.form-control {
  border-radius: 12px;
}
.btn-link:hover {
  text-decoration: none;
}

/*#region Header*/
.header {
  height: 129px;
  background: #fff;
  /* position: sticky; */
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}
.header .logo {
  font-family: Ubuntu;
  font-weight: normal;
  font-size: 45px;
  color: #236726;
  white-space: nowrap;
  flex-shrink: 0;
  margin-right: 50px;
  padding: 37px 0px;
}
.header .logo img{
  width: 230px;
  
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.header .search-bar {
  width: 600px;
  height: 50px;
  border-radius: 29px;
  border: 2px solid #707070;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
  padding-right: 12px;
}
.header .search-bar input {
  border: none;
  height: 100%;
  flex-grow: 1;
  background: none;
  padding: 12px;
  color: #495057;
}

.header .search-bar input:focus-visible {
  outline: none;
}
.header .search-bar button {
  border: none;
  background: none;
  flex-shrink: 0;
  font-size: 28px;
  color: #707070;
  font-weight: bold;
}
.header .btn-quota {
  height: 40px;
  color: #fff;
  flex-shrink: 0;
  font-family: poppins;
  /* display: none !important; */
  visibility: hidden;
}
.header .btn-menu {
  display: none;
}
@media (max-width: 1650px) {
  .header {
    height: unset;
  }
  .header .container {
    flex-wrap: wrap;
    padding-bottom: 10px;
  }
  .header .search-bar {
    /* order: 1; */
    flex-grow: 1;
    flex-shrink: 1;
  }
}
@media (max-width: 1200px) {
  .header .btn-menu {
    display: inline-block;
    font-size: 38px;
  }
}
@media (max-width: 768px) {
  .header .container {
    row-gap: 10px;
    margin-left: 20px !important;
  }
  .header .btn-quota {
    display: none;
  }
}
@media (max-width: 992px) {
  .header .search-bar {
    order: 1;
  }
}
/* @media (min-width: 768px) {
  .header .container {
    margin-left: 20px !important;
  }
} */
/*#endregion Header*/

/*#region Navbar*/
.navbar {
  background: #387826;
  width: 100%;
  padding: 0;
  height: 60px;
  position: sticky;
  /* top: var(--header-height); */
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
}
.navbar .nav-link {
  /* font-size: 22px; */
  color: #fff;
  white-space: nowrap;
  font-family: Poppins-Bold;
  /* width: 188px; */
  text-align: center;

  font-size: 17px;
  line-height: 35px;
  padding: 0px calc(0.25vw + 25px);
  margin: 10px 40px;
}
.navbar .navbar-nav {
  margin: 0 auto;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  height: 100%;
}
.navbar .nav-item {
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
}
.navbar .nav-item::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: calc(100% - 20px);
  background-color: #fff;
}
.navbar .nav-item.active .nav-link,
.navbar .nav-item:hover .nav-link {
  background: #fff;
  color: #387826;
  cursor: pointer;
  border-radius: 25px;
}
.navbar .nav-item:last-child::after {
  display: none;
}
.navbar .nav-item:hover .nav-menu {
  display: block;
}
.navbar .nav-menu {
  position: absolute;
  top: 100%;
  background: #fff;
  display: none;
  z-index: 999;
  /* box-shadow: 5px 5px 10px #ccc; */
  width: 368px;
}
.navbar .nav-menu .nav-menu-item {
  /* height: 66px; */
  display: block;
  line-height: 50px;
  padding: 0 20px;
  white-space: nowrap;
  color: #1e5f26;
  text-underline-offset: 20px;
  font-size: 18px;
}
.navbar .nav-menu .nav-menu-item.active,
.navbar .nav-menu .nav-menu-item:hover {
  font-family: Poppins-Bold;
}
.navbar .nav-menu .nav-menu-item.sub {
  text-indent: 1em;
  font-size: 16px;
}
.navbar .nav-menu .nav-menu-item.empty {
  cursor: default;
}
.navbar .nav-menu .nav-menu-item.empty:hover {
  text-decoration: none;
}

/* Products Menu Styles */
.navbar .nav-menu-products {
  width: 700px;
  padding: 40px;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 40px 0px;
  border-radius: 15px;
  left: 20px;
}

.navbar .nav-item:hover .nav-menu-products {
  display: grid;
}

.navbar .nav-menu-products .products-menu-item {
  display: flex;
  align-items: center;
  gap: 0px;
  text-decoration: none;
}

.navbar .nav-menu-products .products-menu-item img {
  width: 51px;
  height: 97px;
  object-fit: contain;
  flex-shrink: 0;
}

.navbar .nav-menu-products .products-menu-item span {
  font-size: 20px;
  font-weight: normal;
  color: #387826;
  white-space: nowrap;
  padding: 8px 20px;
  border-radius: 15px;
  transition: all 0.3s ease;
  display: inline-block;
}

.navbar .nav-menu-products .products-menu-item:hover span {
  background: #EF7113;
  color: #fff;
}

/* Support Menu Styles */
.navbar .nav-menu-support {
  width: 160px;
  padding: 20px 0;
  border-radius: 15px;
  text-align: center;
  left: 20px;
}

.navbar .nav-menu-support .support-menu-item {
  display: inline-block;
  padding: 10px 40px;
  text-decoration: none;
  color: #387826;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  border-radius: 30px;
}

.navbar .nav-menu-support .support-menu-item:hover {
  background: #EF7113;
  color: #fff;
}

.navbar .nav-menu-support .support-menu-divider {
  height: 1px;
  background: #999;
  margin: 12px auto;
  width: 60px;
}

@media (max-width: 1200px) {
  .navbar {
    height: unset;
    display: none;
  }
  .navbar .nav-link {
    border: none;
  }
  .navbar .navbar-nav {
    width: 960px;
    flex-direction: column;
  }
  .navbar .nav-item {
    width: 100%;
    border-bottom: 1px dashed #fff;
  }
  .navbar .nav-item:last-child {
    border: none;
  }

  .navbarLang{
    display: block;
  }
}
@media (max-width: 992px) {
  .navbar .navbar-nav {
    width: 720px;
    margin-left: 20px;
  }
  .navbar .navbar-nav .nav-link {
    width: 100px;
  }

  .navbarLang .navbar-nav{
    width: auto;
    margin-left: 0px;
  }
}
@media (max-width: 768px) {
  .navbar .navbar-nav {
    width: 100%;
    margin-left: 20px;
  }
  .navbar .navbar-nav .nav-link {
    width: 100px;
  }
}
/*#endregion Navbar*/

/*#region footer*/
.footer {
  background: #387826;
  padding: 60px 0;
  color: white;
}

.footer .footer-content {
  display: flex;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: stretch;
}

.footer .footer-column {
  flex: 1;
}

.footer .footer-title {
  font-size: 20px;
  font-weight: bold;
  color: white;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.footer .footer-contact-item {
  margin-bottom: 20px;
}

.footer .footer-label {
  display: block;
  font-size: 16px;
  color: white;
  margin-bottom: 5px;
}

.footer .footer-value {
  display: block;
  font-size: 16px;
  color: white;
  line-height: 1.4;
}

.footer .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links li {
  margin-bottom: 15px;
}

.footer .footer-links a {
  color: white;
  text-decoration: none;
  font-size: 16px;
}

.footer .footer-links a:hover {
  text-decoration: underline;
}

.footer .footer-newsletter {
  position: relative;
  padding-left: 40px;
  display: flex;
  align-items: center;
}

.footer .footer-divider {
  position: absolute;
  left: 0;
  top: 0px;
  bottom: 0px;
  width: 2px;
  background: white;
}

.footer .newsletter-title {
  font-size: 18px;
  font-weight: bold;
  color: white;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.footer .newsletter-subtitle {
  font-size: 14px;
  color: white;
  margin-bottom: 20px;
  line-height: 1.4;
}

.footer .newsletter-form {
  display: flex;
  gap: 10px;
}

.footer .newsletter-input {
  flex: 1;
  padding: 12px 16px;
  border: none;
  border-radius: 25px;
  font-size: 14px;
  background: white;
  color: #333;
}

.footer .newsletter-input::placeholder {
  color: #999;
}

.footer .newsletter-button {
  padding: 12px 24px;
  background: #E67E22;
  color: white;
  border: none;
  border-radius: 25px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  white-space: nowrap;
}

.footer .newsletter-button:hover {
  background: #D35400;
}

@media (max-width: 1200px) {
  .footer .footer-content {
    flex-wrap: wrap;
    gap: 40px;
  }
  .footer .footer-column {
    flex: 1 1 45%;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 40px 20px;
  }
  .footer .footer-content {
    flex-direction: column;
    gap: 30px;
  }
  .footer .footer-column {
    flex: 1 1 100%;
  }
  .footer .footer-newsletter {
    padding-left: 0;
  }
  .footer .footer-divider {
    display: none;
  }
}
/*#endregion footer*/

.sitemap {
  background: #eeeeee;
  font-size: 15px;

  font-size: calc(0.2vw + 12px);
  font-family: 'Poppins', 'Arial', sans-serif;
  font-weight: 400;
  padding: 15px 0;
}
.sitemap a {
  color: #000;
}

.row .col {
  padding: 0;
}

.pagination .page-item.active .page-link {
  background-color: #387826;
  border-color: #387826;
}


.cH1{
  text-align: center;
  font-size: calc(1.2vw + 16px) !important;
  line-height: calc(1.25vw + 20px)  !important;
  font-weight: bold;
}

.cH2{
  text-align: center;
  font-size: calc(1vw + 10px) !important;
  line-height: calc(1.25vw + 20px) !important;
  font-weight: 200;
}

.cContent{
  font-size: calc(0.2vw + 12px) !important;
  line-height: calc(0.25vw + 20px) !important;
  font-family: 'Poppins', 'Arial', sans-serif;
}

.lH1{
  text-align: center;
  font-size: calc(0.2vw + 14px) !important;
  line-height: calc(0.25vw + 20px) !important;
}

.lH2{
  font-size: calc(0.1vw + 12px) !important;
  line-height: calc(0.15vw + 15px) !important;
  font-family: 'Poppins', 'Arial', sans-serif;
}

.langSwtich{
  background: #236726;
  display: none !important;
}

.langSwtich div{
  padding: 0;
}

.langSwtich h2{
  font-size: calc(0.2vw + 12px);
  font-family: 'Poppins', 'Arial', sans-serif;

  color: #fff;
  padding: 6px 0px 0px 0px;
}

.langSwtich .navbar{
  font-size: calc(0.2vw + 12px);
  font-family: 'Poppins', 'Arial', sans-serif;

  background: none;
  height: 32px;
}
.langSwtich  .navbar .nav-menu {
  background: #222;
  color: #a1c379;
  box-shadow: 5px 5px 10px #222;
  width: 128px;
}
.langSwtich .navbar .nav-menu .nav-menu-item {
  color: #fff;
  font-size: calc(0.2vw + 12px);
}
.langSwtich .navbar .nav-link {
  padding: 0px calc(0.25vw + 15px) !important;
  color: #fff;
}
.langSwtich .navbar .nav-item:hover {
  background: none;
  color: #fff !important;
}
.langSwtich .navbar .nav-item a {
  background: none;
  color: #fff !important;
}
