* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body{
  overflow-x: hidden;
}
/* -----Navbar----- */
.navbar1 {
    /*background: radial-gradient( circle, rgba(22, 36, 0, 1) 0%, rgb(1 253 54) 0%, rgba(0, 255, 29, 1) 100% );*/
	background: linear-gradient(90deg, rgba(2,0,36,1) 0%, rgba(34,207,11,1) 0%, rgba(6,212,120,1) 100%);
}
.navbar-brand {
  margin-left: 5rem;
}

.navbar-brand img {
  height: 96px;
    width: 183px;
    padding: 0px;
    margin: 0px;
}
.topNav-buttons {
  display: flex;
  justify-content: flex-end !important;
  align-items: center;
  column-gap: 2rem;
}
.gstNo {
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: white;
}

.topNav-buttons button {
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  display: flex;
  align-items: center;
  column-gap: 0.2rem;
  color: white;
  font-size: 1.2rem;
  font-weight: 600;
}
.smsBtn {
  background-color: #4fb80c !important;
}
.emailBtn {
  background-color: rgb(63, 88, 88);
}
.menu-icon {
  display: none;
}

.navbar2 {
  /*background-color: rgb(63, 88, 88) !important;*/
  background-color: rgb(12, 108, 3) !important;
}

.navLinks {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 1.5rem;
}
.nav-item a {
  margin: 0 1rem;
  color: white !important;
  font-size: 1rem;
  font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
    "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
  font-weight: 500;
}
.dropdown-menu li a {
  color: black !important;
  font-size: 0.9rem;
  margin: 0 !important;
  font-weight: normal;
}
.active_ {
  background-color: #4fb80c;
  padding: 0.7rem 1rem;
  border-radius: 4px;
}

/* -----Slides----- */
.carousel-item img {
  width: 100%;
  /*height: 80vh;*/
}

/* -----About Section----- */
.about-section {
  margin: 4rem 0;
}

.about-container {
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
}

.about-container h2 {
  color: #4fb80c;
  font-size: 2rem !important;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.about-container button {
  background-color: #4fb80c;
    
}
.about-container button:hover {
  background-color: rgb(63, 88, 88);
}

/* ----Latest Products----- */
.latestProducts-title {
  display: flex;
  justify-content: space-between;
  margin-bottom: 3rem;
}
.latestProducts-title button {
  background-color: #4fb80c;
  border: none;
}
.latestProducts-title button:hover {
  background-color:  rgb(63, 88, 88);
}
.swiper {
  width: 100%;
  margin-bottom: 2rem;
  /* height: 100%; */
}

.swiper-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  row-gap: 1rem;
  border: 1px solid black;
  /* margin: 0 1rem; */
}

.slide-img img {
  width: 100%;
  height: 15rem;
  width: 100%;
}

.swiper-slide h4 {
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  color: #4fb80c;
}
.swiper-slide button {
  background-color: #4fb80c;
  border: none;
  margin-bottom: 1rem;
}
.swiper-slide button:hover {
  background-color: rgb(63, 88, 88);
}

@media only screen and (min-width: 769px) {
  .swiper-slide:first-child {
    transition: transform 100ms;
  }

  .swiper-slide:first-child img {
    transition: box-shadow 500ms;
  }

  .swiper-slide.swiper-slide-active:first-child {
    transform: translateX(50%);
    z-index: 2;
  }

  .swiper-slide.swiper-slide-active:first-child img {
    box-shadow: 0px 32px 80px rgba(0, 0, 0, 0.35);
  }

  .swiper-slide:nth-child(2) {
    transition: transform 100ms;
  }

  .swiper-slide.swiper-slide-next:nth-child(2) {
    transform: translateX(55%);
    z-index: 1;
  }

  .swiper[dir="rtl"] .swiper-slide.swiper-slide-active:first-child {
    transform: translateX(-50%);
  }

  .swiper[dir="rtl"] .swiper-slide.swiper-slide-next:nth-child(2) {
    transform: translateX(-55%);
  }
}

/* ----Footer---- */
.footer {
  background-color: rgb(63, 88, 88);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 1rem;
  padding: 1rem;
}
.footer-links {
  display: flex;
  column-gap: 1rem;
}
.footer-links a {
  text-decoration: none;
  color: white;
}
.footer-divider {
  border-bottom: 0.5px solid white;
}
.footer-rights {
  display: flex;
  justify-content: space-between;
  /* align-items: ; */
}
.copyrights {
  display: flex;
  flex-direction: column;
}
.copyrights div {
  color: white;
  font-size: 0.8rem;
}
