:root {
    --primary-font: "Epilogue", sans-serif;
    --secondary-font: "Quicksand", sans-serif;
}
.header {
    background-color: rgba(0,0,0,0);
    padding: 20px 0px;
    z-index: 990;
    transition: all 0.5s;
}
.fixed-top {
    position: fixed;
    top: 0;
    left: 0;
}
.header .logo img {
	max-height: 75px;
	margin-right: 8px;
}
.navmenu ul {
	margin: 0;
	padding: 0;
	display: flex;
	list-style: none;
	align-items: center;
}
.navmenu > ul > li {
	white-space: nowrap;
	padding: 15px 14px;
}
.navmenu a, .navmenu a:focus {
	font-size: 13px;
	padding: 0 2px;
	font-family: var(--primary-font);
    color: #fff;
	font-weight: 500;
	display: flex;
	align-items: center;
	justify-content: space-between;
	white-space: nowrap;
	transition: 0.3s;
	position: relative;
	text-transform: uppercase;
    text-decoration: none;
}
  .navmenu>ul>li>a:before {
    content: "";
    position: absolute;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: #337a2c;
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navmenu a:hover:before,
  .navmenu li:hover>a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 100%;
  }

  .scrolled .header .navmenu a,
  .navmenu a:focus {
    color: #222;
  }
.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  /* --background-color: rgba(21, 34, 43, 0.85); */
  background-color: rgba(255, 255, 255, 1);
  padding: 8px 0px;
  /* background: linear-gradient(90deg,rgba(0, 117, 186, 0.85) 0%, rgba(241, 90, 50, 0.85) 100%); */

}
/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: #e5eaee;
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: #fff;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navmenu a,
  .navmenu a:focus {
    color: #e5eaee;
    padding: 10px 20px;
    font-family: var(--primary-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

.carousel-caption {
    bottom: 50%;
}
.carousel-caption h5 {
    font-family: var(--primary-font);
    text-transform: uppercase;
    font-size: 32px;
    font-weight: 700;
}
.carousel-caption p {
    font-family: var(--secondary-font);
    font-size: 20px;
    font-weight: 600;
}
#about {
    position: relative;
}
.shape-1 {
    position: absolute;
    top: 0;
    left: 0;
}
.shape-2 {
    position: absolute;
    right: 0;
    bottom: 0;
}
.section-padding{
    padding: 30px 0px;
}
.section-title {
    font-family: var(--primary-font);
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    
}
.section-sub-title {
    font-family: var(--primary-font);
    font-size: 20px;
    font-weight: 500;
    text-transform: uppercase;
    text-align: center;
    
}
.row-mt {
  margin-top: 30px;
}
.about-us p {
    font-family: var(--secondary-font);
    font-size: 22px;
    line-height: 30px;
    text-align: center;
    padding: 32px 30px;
}
.btn-wrapper {
    text-align: center;
}
.main-btn {
    position: relative;
    display: inline-block;
    padding: 13px 25px;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    background-color: #337A2C;
    color: #fff;
    text-decoration: none;
    z-index: 1;
}
.main-btn::before {
    content: "";
    width: 0;
    height: 50%;
    left: 0;
    top: 0;
    position: absolute;
    z-index: -1;
    background-color: #19a337;
    transition: all 0.2s;
}
.main-btn::after {
    content: "";
    width: 0;
    height: 50%;
    right: 0;
    bottom: 0;
    position: absolute;
    z-index: -1;
    background-color: #19a337;
    transition: all 0.2s;
}
.main-btn:hover::before {
    width: 100%;
}
.main-btn:hover::after {
    width: 100%;
}
.main-btn:hover.main-btn {
    color: #fff;
}
.place-container{
  display: flex;
  flex-wrap: wrap;
  padding: 15px 0px;
  justify-content: space-between;
  margin-top: 20px;
  margin-bottom: 40px;
}
.place-item {
  font-family: var(--secondary-font);
  text-transform: uppercase;
  font-weight: 600;
}
.place-item i {
  padding-right: 5px;
  color: #337A2C;
  font-size: 14px;
}
#products {
    background-color: #f4f1ea;
}
.product-wrapper {
    padding-top: 30px;
}
.row-mb {
  margin-bottom: 60px;
}
.product-item-wrapper {
    width: 90%;
    background-color: #fff;
    border-radius: 16px;
    padding: 20px;
    position: relative;
}

.product-name {
    position: absolute;
    bottom: -40px;
    left:50%;
    width: 70%;
    transform: translate(-50%);
    background-color: #eb0029;
    color: #fff;
    padding: 15px 0px;
    text-align: center;
    border: 2px solid #fff;
    border-radius: 16px;
    text-transform: capitalize;
    font-family: var(--secondary-font);
    font-size: 22px;
    font-weight: bold;
}
.footer-top {
    padding: 50px 50px;
    background-color: #337A2C;
    border-radius: 20px;
}
.footer-top .contact-box {
    display: flex;
    justify-content: center;
    gap: 15px;
}
.footer-top .contact-box .item1 i {
    width: 39px;
    height: 39px;
    line-height: 39px;
    text-align: center;
    background-color: #fff;
    color: #337A2C;
    border-radius: 50%;
    display: inline-block;
}
.footer-top .contact-box .item1 h6 {
	color: #fff;
	font-family: var(--secondary-font);
	font-size: 14px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	text-transform: capitalize;
	margin-bottom: 10px;
}
.footer-top .contact-box .item2 p {
	color: #fff;
	font-family: var(--secondary-font);
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
    margin-bottom: 5px;
}
.footer-top .contact-box .item2 p a {
    color: #fff;
    text-decoration: none;
}
.footer-bottom {
    padding: 30px 0px;
    background-color: #0a3000;
}
.footer-bottom p {
    color: #fff;
    text-align: center;
    margin-bottom: 0;
}
/*about page */
.about-sec-padding {
  padding: 30px 0px;
}
.about-hero {
  height: 80vh;
  background: url(../../images/bg-2.jpg) no-repeat;
  background-position-y: 15%;
  background-attachment: fixed;
}
.align-txt-lft {
  text-align: left !important;
  padding-left: 0 !important;
}
.about-sub-title {
  font-family: var(--primary-font);
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 500;
}
.vision .vision-item {
  width: 80%;
  background: #f4f1ea;
  padding: 15px;
  border-radius: 16px;
  min-height: 220px;
  margin-bottom: 15px;
}
.vision-item h4 {
  font-family: var(--secondary-font);
}
.vision-item .vision-text {
  font-family: var(--secondary-font);
}
.vision-txt {
  font-family: var(--secondary-font);
  font-size: 20px;
}

@media(max-width: 500px){
    .section-padding {
        padding: 20px 0px;
    }
    .header .logo img {
        max-height: 50px;
    }
    .about-us p {
        font-size: 18px;
    }
    .place-item {
      margin-bottom: 15px;
    }
    .shape-1 img, .shape-2 img {
        max-width: 100px;
        height: auto;
    }
    .product-name {
    padding: 10px 0px;
    font-size: 18px;
    }
    .mob-m-p {
        margin-bottom: 60px;
    }
    .footer-top .contact-box {
        justify-content: start;
        margin-bottom: 10px;
    }
    .about-hero {
      height: 35vh;
      background-position-x: center;
      background-position-y: 150%;
    }
    .vision-txt {
      font-size: 18px;
    }
}