@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Fredoka:wght@300..700&display=swap");

:root {
  --primary-color: #ffd800;
  --secondary-color: #137438;
  --third-color: #82bc3f;
  --hardgreen-color: #21502c;
  --secondary-btn-color: #82bc3f;
  --black-color: #000;
  --white-color: #fff;
  --title-color: #161921;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  text-decoration: none;
}

ul {
  list-style: none;
}

body {
  font-size: 16px;
  line-height: 28px;
  font-family: "DM Sans", sans-serif;
  font-weight: normal;
  color: var(--black-color);
}

h1 {
  font-size: 55px;
  font-weight: 700;
  line-height: 52px;
  font-family: "Poppins", sans-serif;
}

h2 {
  font-size: 38px;
  font-weight: 700;
  line-height: 55px;
  font-family: "Poppins", sans-serif;
}

h3 {
  font-size: 30px;
  font-family: "Poppins", sans-serif;
}

h4 {
  font-size: 25px;
  line-height: 28px;
  font-family: "Poppins", sans-serif;
}

h5 {
  font-size: 22px;
  font-family: "Poppins", sans-serif;
}

h6 {
  font-size: 20px;
  font-family: "Poppins", sans-serif;
}
p {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
}
.container {
  width: 1160px;
  margin: 0 auto;
}
/* .nav-container {
    width: 1400px;
    max-width: 90%;
    padding: 0px 74px;
    margin: 0 auto;
  } */
.img-responsive {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}
.flex {
  display: flex;
}
.row {
  display: flex;
  flex-direction: row;
}
.column {
  display: flex;
  flex-direction: column;
}
.space-between {
  justify-content: space-between;
}
.flex-space-between {
  justify-content: space-between;
}

.grecaptcha-badge{
	display: none;
}

.align-center {
  align-items: center;
}
.justify-center {
  justify-content: center;
}
.flex-start {
  align-items: flex-start;
}
.flex-end {
  align-items: flex-end;
}
.flex-wrap {
  flex-wrap: wrap;
}
.place-end {
  place-content: flex-end;
}
.text-center {
  text-align: center;
}
.grid {
  display: grid;
}
.grid-1-06 {
  grid-template-columns: 1fr 0.64fr;
}
.grid-2 {
  grid-template-columns: 1fr 1fr;
}
.grid-3 {
  grid-template-columns: 1fr 1fr 1fr;
}
.grid-4 {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
.grid-1-13-1 {
  grid-template-columns: 1fr 1.3fr 1fr;
}
.overflow-hidden {
  overflow: hidden;
}
button {
  background: transparent;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  border-radius: 5px;
}

input,
textarea {
  padding: 15px 20px;
  background: transparent;
  border-radius: 5px;
  font-size: 18px;
  font-family: "Inter" !important;
}
input::placeholder,
textarea::placeholder {
  font-family: "Inter" !important;
}
/* GAPS */
.gap-10 {
  gap: 10px;
}
.gap-15 {
  gap: 15px;
}
.gap-20 {
  gap: 20px;
}
.gap-25 {
  gap: 25px;
}
.gap-30 {
  gap: 30px;
}
.gap-45 {
  gap: 45px;
}
.gap-60 {
  gap: 60px;
}
.gap-80 {
  gap: 80px;
}
.pt-0 {
  padding-top: 0 !important;
}
.pt-10 {
  padding-top: 10px;
}
.pb-10 {
  padding-bottom: 10px;
}
.pt-20 {
  padding-top: 20px;
}
.pb-20 {
  padding-bottom: 20px;
}
.pb-30 {
  padding-bottom: 30px;
}
.pt-30 {
  padding-top: 30px;
}
.pt-35 {
  padding-top: 35px;
}
.pt-40 {
  padding-top: 40px;
}
.pb-40 {
  padding-bottom: 40px;
}
.pb-45 {
  padding-bottom: 45px;
}
.pt-60 {
  padding-top: 60px;
}
.pb-60 {
  padding-bottom: 60px;
}
.pt-80 {
  padding-top: 80px;
}
.pb-80 {
  padding-bottom: 80px;
}
.pl-80 {
  padding-left: 80px;
}
.pr-80 {
  padding-right: 80px;
}
.pt-100 {
  padding-top: 100px;
}
.pb-100 {
  padding-bottom: 100px;
}
.pb-300 {
  padding-bottom: 300px;
}
.py-60 {
  padding: 60px 0px;
}
.py-80 {
  padding: 80px 0px;
}
/* MARGINS */
.m-0-auto {
  margin: 0 auto;
}
.mt-20 {
  margin-top: 20px;
}
.mt-25 {
  margin-top: 25px;
}
.mt-35 {
  margin-top: 35px;
}
.mb-35 {
  margin-bottom: 35px;
}
.mt-45 {
  margin-top: 45px;
}
.mt-60 {
  margin-top: 60px;
}
.mb-60 {
  margin-bottom: 60px;
}
.mt-170 {
  margin-top: 170px;
}
.mt--120 {
  margin-top: -120px;
}
.mt--150 {
  margin-top: -150px;
}
.mt--185 {
  margin-top: -185px;
}
/* BACKGROUND-COLORS */
.radial-gradient {
  background-image: radial-gradient(#1f3050, #0f1a2e);
}
.secondary-bg {
  background: var(--secondary-color);
}
.lightblue-bg {
  background: #dee6f5;
}
.lightgrey-bg {
  background: #fafafa;
}
.p-txt {
  color: var(--primary-color);
}
/* POSITION */
.po-relative {
  position: relative;
}
/* RADIUS */
.bdr-radius-0 {
  border-radius: 0px !important;
}
.bdr-radius-5 {
  border-radius: 5px;
}
.bdr-radius-5-0-0-5 {
  border-radius: 5px 0px 0px 5px;
}
.bdr-radius-0-5-5-0 {
  border-radius: 0px 5px 5px 0px;
}
/* FONT-SIZE */
.f-16 {
  font-size: 16px !important;
}
/* WIDTHS */
.w-15 {
  width: 15px;
}
.w-60-h-48 {
  height: 48px;
  width: 60px;
}
.w-52-h-52 {
  height: 52px !important;
  width: 52px !important;
}
.w-h-60 {
  height: 60px;
  width: 60px;
}
.w-h-100 {
  height: 100px;
  width: 100px;
}
.w-100 {
  width: 100% !important;
}
.h-100 {
  height: 100% !important;
}
/* HOVER-EFFECT */
.hvr-link {
  position: relative;
}
.hvr-link::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--secondary-color);
  transition: all 0.5s ease-in-out;
}
.hvr-link:hover::before {
  right: auto;
  left: 0;
  width: 100%;
  transition: all 0.5s ease-in-out;
}
.hvr-link-2 {
  position: relative;
}
.hvr-link-2::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--primary-color);
  transition: all 0.5s ease-in-out;
}
.hvr-link-2:hover::before {
  right: auto;
  left: 0;
  width: 100%;
  transition: all 0.5s ease-in-out;
}
.white-hvr-link {
  position: relative;
}
.white-hvr-link::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--white-color);
  transition: all 0.5s ease-in-out;
}
.white-hvr-link:hover::before {
  right: auto;
  left: 0;
  width: 100%;
  transition: all 0.5s ease-in-out;
}
/* HOVER-FLOAT */
.hvr-float {
  display: inline-block;
  vertical-align: middle;
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  transition-duration: 0.3s;
  transition-property: transform;
  transition-timing-function: ease-out;
}
.hvr-float:hover,
.hvr-float:focus,
.hvr-float:active {
  transform: translateY(-8px);
}
.image-effect {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
}
.image-effect img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.5s ease-in-out;
}

.image-effect:hover img {
  transform: scale(1.04);
}
/* BUTTONS */

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 17px;
  border-radius: 30px;
  font-size: 16px;
  /* border-radius: 5px; */
  font-weight: 500;
  position: relative;
  overflow: hidden;
  z-index: 1;
  width: fit-content;
  transition: all 0.5s ease-in-out;
}
.primary-btn {
  border: 1px solid var(--primary-color);
  color: var(--black-color);
  /* border: 1px solid var(--primary-color); */
  transition: all 0.5s ease-in-out;
}
.primary-btn::after {
  content: "";
  position: absolute;
  height: 110%;
  width: 160%;
  border: 1px solid var(--primary-color);
  background: var(--primary-color);
  transform: skewX(45deg);
  top: 0;
  left: -20%;
  z-index: -2;
  transition: all 0.5s ease-in-out;
}
.primary-btn:hover {
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  transition: all 0.5s ease-in-out;
}
.primary-btn:hover::after {
  left: 130%;
  transition: all 0.5s ease-in-out;
}
.secondary-btn {
  border: 1px solid;
  color: var(--black-color);
  border: 1px solid var(--secondary-btn-color);
  transition: all 0.5s ease-in-out;
}
.secondary-btn::after {
  content: "";
  position: absolute;
  height: 110%;
  width: 160%;
  border: 1px solid var(--secondary-btn-color);
  background: var(--secondary-btn-color);
  transform: skewX(45deg);
  top: 0;
  left: -20%;
  z-index: -2;
  transition: all 0.5s ease-in-out;
}
.secondary-btn:hover {
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  transition: all 0.5s ease-in-out;
}
.secondary-btn:hover::after {
  left: 130%;
  transition: all 0.5s ease-in-out;
}
.secondary-white-btn {
  border: 1px solid;
  color: var(--white-color);
  border: 1px solid var(--secondary-color);
  transition: all 0.5s ease-in-out;
}
.secondary-white-btn::after {
  content: "";
  position: absolute;
  height: 110%;
  width: 160%;
  border: 1px solid var(--secondary-color);
  background: var(--secondary-color);
  transform: skewX(45deg);
  top: 0;
  left: -20%;
  z-index: -2;
  transition: all 0.5s ease-in-out;
}
.secondary-white-btn:hover {
  background: var(--white-color);
  border: 1px solid var(--white-color);
  color: var(--secondary-color);
  transition: all 0.5s ease-in-out;
}
.secondary-white-btn:hover::after {
  left: 130%;
  transition: all 0.5s ease-in-out;
}
.white-btn {
  border: 1px solid;
  color: var(--black-color);
  border: 1px solid var(--white-color);
  transition: all 0.5s ease-in-out;
}
.white-btn::after {
  content: "";
  position: absolute;
  height: 110%;
  width: 160%;
  border: 1px solid var(--white-color);
  background: var(--white-color);
  transform: skewX(45deg);
  top: 0;
  left: -20%;
  z-index: -2;
  transition: all 0.5s ease-in-out;
}
.white-btn:hover {
  border: 1px solid var(--white-color);
  color: var(--white-color);
  transition: all 0.5s ease-in-out;
}
.white-btn:hover::after {
  left: 130%;
  transition: all 0.5s ease-in-out;
}

.outlinebtn {
  border: 1px solid var(--primary-color);
  color: var(--black-color);
}

.front_brand{
	display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
}

.outlinebtn::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 200%;
  background: var(--primary-color);
  top: 0;
  left: -250%;
  z-index: -1;
  transform: skewX(45deg);
  transition: all 0.5s ease-in-out;
}
.outlinebtn:hover {
  color: var(--white-color);
  transition: all 0.5s ease-in-out;
}
.outlinebtn:hover::after {
  left: -50%;
  transition: all 0.5s ease-in-out;
}
.outlinebtn2 {
  background: var(--secondary-color);
  color: var(--white-color);
}
.outlinebtn2::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 200%;
  background: var(--primary-color);
  top: 0;
  left: -250%;
  z-index: -1;
  transform: skewX(45deg);
  transition: all 0.5s ease-in-out;
}
.outlinebtn2:hover::after {
  left: -50%;
  transition: all 0.5s ease-in-out;
}

/* header Start */
.main-header {
  position: fixed;
  top: 0px;
  width: 100%;
  z-index: 1000;
  /* left: 0; */
}
.main-header.small {
  position: relative;
  background: var(--white-color);
  transition: all 0.5s ease-in-out;
}
.top-header-wrapper {
  transition: all 0.5s ease-in-out;
}
.top-header-wrapper .tophead {
  background: var(--hardgreen-color);
  padding: 10px 40px;
  transition: all 0.5s ease-in-out;
}
.top-header-wrapper .tophead .heder-list {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 30px;
}

.top-header-wrapper .tophead .heder-list li a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white-color);
  font-size: 14px;
}

.nav-contentsdiff .hvr-link.active {
  /* color: var(--red-color) !important; */
  border-bottom: 1.5px solid var(--secondary-color);
  width: fit-content;
}
.header-wrapper .header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* box-shadow: 0px 10px 35px 5px rgba(0, 0, 0, 0.1); */
  padding: 20px 0px;
  background-color: var(--white-color);
  transition: all 0.5s ease-in-out;
}
.header-wrapper .header-content .header-menu {
  display: flex;
  align-items: center;
  gap: 15px;
}
.header-wrapper .header-content .header-menu .nav-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.header-wrapper .header-content .header-menu ul li a {
  color: var(--black-color);
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
}
.header-wrapper .header-content .logo-wrapper img {
  width: 110px;
  margin-top: -55px;
  transition: all 0.5s ease-in-out;
}
.main-header.small .bottom-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.5s ease-in-out;
}
.main-header.small .bottom-header .header-wrapper {
  background: var(--white-color);
  box-shadow: 0px 10px 35px 5px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease-in-out;
}
.main-header.small .bottom-header .header-wrapper .logo-wrapper img {
  margin-top: 0;
  width: 80px;
  transition: all 0.5s ease-in-out;
}
.main-header.small .header-wrapper .header-content {
  padding: 10px 0px;
  transition: all 0.5s ease-in-out;
}
.main-header.second-main-header {
  position: relative;
}
.second-header-wrapper {
  background: var(--hardgreen-color);
}
.second-bottom-header {
  background: var(--white-color);
  box-shadow: 0px 10px 35px 5px rgba(0, 0, 0, 0.1);
}
/* dropdown start*/
.drp-down {
  position: relative;
}
.drp-down .drp-down-menu {
  position: absolute;
  padding: 15px 25px;
  top: 50%;
  text-align: left;
  /* min-width: -moz-fit-content;
  min-width: fit-content; */
  width: 200px;
  border-radius: 5px;
  background: var(--white-color);
  box-shadow: 0px 4px 32px 0px rgba(0, 0, 0, 0.08);
  list-style: none;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  cursor: pointer;
  transition: all 0.5s ease-in-out;
}
.drp-down .drp-down-menu li {
  transition: all 0.5s ease-in-out;
  padding-bottom: 15px;
}
.drp-down .drp-down-menu li a {
  font-size: 16px;
  font-weight: 500;
  color: var(--black-color);
  transition: all 0.5s ease-in-out;
}
.drp-down .drp-down-menu li:hover {
  transition: all 0.5s ease-in-out;
}
.drp-down .drp-down-menu li:hover a {
  color: var(--primary-color);
  transition: all 0.5s ease-in-out;
}
.drp-down .drp-down-menu li:nth-last-child(1) {
  padding-bottom: 0px;
}
.drp-down:hover a {
  color: var(--primary-color);
}
.drp-down:hover a .drop {
  filter: invert(0) brightness(1);
  transition: all 0.5s ease-in-out;
}
.drp-down:hover .drp-down-menu {
  margin-top: 25px;
  opacity: 1;
  z-index: 99;
  visibility: visible;
  transition: all 0.5s ease-in-out;
}

/* dropdown end*/

/* mobile menu start*/
nav {
  height: 66px;
}
.mobile-view {
  display: none;
  background: var(--white-color);
  box-shadow: 0px 4px 32px 0px rgba(0, 0, 0, 0.06);
  position: sticky;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 999;
  transition: all 0.5s ease-in-out;
}
.mobile-view.mobile-sticky {
  top: 0;
}
.mobile-menu {
  display: none;
  width: 100%;
  top: 0px;
  left: 0px;
  z-index: 99;
  align-items: center;
}
.slidein-menu {
  display: none;
}
/* mobile menu end*/

/* Header End */

/* Footer Start */
.footer-wrapper {
  background: #111111;
  padding: 50px 30px;
}
.footer-top-box .footer-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
}
.footer-top-box .detail-box {
  color: var(--white-color);
  display: grid;
  grid-template-columns: 1fr 6fr;
  gap: 20px;
  border-bottom: 5px solid #41390e;
  padding-bottom: 30px;
  cursor: pointer;
  transition: all 0.5s ease-in-out;
}
.footer-top-box .detail-box:hover {
  border-bottom: 5px solid var(--primary-color);
  transition: all 0.5s ease-in-out;
}
.footer-top-box .detail-box H6 {
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 10px;
}
.footer-top-box .foot-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  width: 50px;
  background: var(--primary-color);
  border-radius: 50%;
}
.footer-top-box .foot-icon img {
  width: 20px;
}
/* .footer-top-box .foot-icon-2 {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  width: 85px;
  background: var(--primary-color);
  border-radius: 50%;
} */
/* .footer-top-box .foot-icon-3 {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  width: 70px;
  background: var(--primary-color);
  border-radius: 50%;
} */
/* .footer-top-box .foot-icon img {
  width: 20px;
} */
.footer-top-box .detail-content a {
  color: var(--white-color);
  font-size: 16px;
}
.footer-wrapper .footer-menus {
  padding-top: 60px;
}
.footer-menus .footer-box-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  align-items: center;
}
.footer-menus .footer-logo img {
  width: 110px;
}
.footer-menus .sechudle .day-time {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #41390e;
  padding: 10px 0;
}
.footer-menus .sechudle .day-time:last-child {
  border-bottom: none;
}
.footer-menus .sechudle .day-time p {
  color: var(--white-color);
  font-size: 14px;
}

.footer-menus .footer-menu-box ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-menus .footer-menu-box li a {
  color: var(--white-color);
}
.footer-menus .footer-menu-box h6 {
  color: var(--white-color);
}

.footer-menus .footer-menu-box p {
  color: var(--white-color);
}
.footer-menus .footer-menu-box .footer-logo {
  margin-bottom: 10px;
}
.footer-menus .second-footer-menu {
  padding-left: 80px;
}
.footer-menus .footer-menu-box .foot-title {
  position: relative;
  margin-bottom: 30px;
  font-size: 22px;
  font-weight: 500;
}
.footer-menus .footer-menu-box .foot-title::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;

  width: 25px;
  height: 3px;
  background: var(--primary-color);
  transition: all 0.5s ease-in-out;
}
.footer-menus .footer-menu-box .newsletter {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white-color);
  border-radius: 30px;
  margin-top: 20px;
  padding: 5px;
}
.footer-menus .footer-menu-box .newsletter input {
  border: none;
  padding-left: 15px;
}
.footer-menus .footer-menu-box .newsletter button {
  border: none;
  background: var(--primary-color);
  height: 40px;
  width: 40px;
  border-radius: 50%;
  cursor: pointer;
}
.footer-menus .footer-menu-box .newsletter input::placeholder {
  font-family: "DM Sans", sans-serif !important;
  font-size: 16px;
}
.footer-bottom {
  background: var(--hardgreen-color);
  padding: 20px;
}
.footer-bottom .copyright {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-bottom .copyright .copy-left {
  display: flex;
  align-items: center;
  gap: 60px;
}
.footer-bottom .copyright .copy-left p,
.footer-bottom .copyright .copy-left a,
.footer-bottom .copyright .copy-right p {
  color: var(--white-color);
}
.footer-bottom .copyright .copy-right {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 3px;
}
.footer-bottom .copyright .copy-right a {
  color: var(--primary-color);
}
/* Footer End */

/* banner Start */
.banner-section .banner-details {
  position: relative;
/*   padding: 300px 0px 200px 0; */
	padding: 200px 0px 200px 0;
  z-index: 2;
}
.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--black-color);
  z-index: -1;
  opacity: 0.3;
}
.banner-details .banner-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.banner-details .banner-content h1 {
  color: var(--white-color);
  font-family: "Fredoka", serif;
  font-weight: 600;
}

.banner-details .banner-content h4 {
  color: var(--white-color);
}
.banner-details .banner-content .btn {
  margin-top: 20px;
}
.banner-section .swiper-button-prev:after,
.banner-section .swiper-button-next:after {
  content: " " !important;
}

.banner-section .swiper-button-prev .banner-prv {
  width: 45px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--white-color);
  padding: 0px 30px;
  /* position: relative; */
  transition: all 0.5s ease-in-out;
}
.banner-section .swiper-button-next .banner-nxt {
  width: 45px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--white-color);
  padding: 0px 30px;
  /* position: relative; */
  transition: all 0.5s ease-in-out;
}
.banner-section .swiper-button-prev .banner-prv:hover {
  background: var(--secondary-color);
  border: 1px solid var(--secondary-color);
  transition: all 0.5s ease-in-out;
}
.banner-section .swiper-button-next .banner-nxt:hover {
  background: var(--secondary-color);
  border: 1px solid var(--secondary-color);
  transition: all 0.5s ease-in-out;
}
.banner-section .swiper-button-next {
  right: 205px;
}
.banner-section .swiper-button-prev {
  left: 205px;
}
/* banner End */

/* Hero Box Start */
.hero-boxes-section .box-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 20px;
  margin-top: -30px;
  position: relative;
  z-index: 10;
}
/* .box-grid .hero-boxes {
  background: var(--hardgreen-color);
} */
.box-grid .box-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 0px 20px 20px 20px;
  background: #f1f5f4;
  text-align: center;

  position: relative;
  z-index: 10;
  transition: all 0.5s ease-in-out;
}

.box-grid .box-content .secondary-btn {
  color: var(--white-color);
  display: none;
  transition: all 0.5s ease-in-out;
}
.box-grid .box-content .secondary-btn:hover {
  color: var(--primary-color);
}
.box-grid .hero-boxes:hover .box-content .secondary-btn {
  display: block;
  transition: all 0.5s ease-in-out;
}
.box-grid .hero-boxes {
  position: relative;
  cursor: pointer;
	border: 6px solid var(--white-color);
    box-shadow: 0px 10px 35px 5px rgba(0, 0, 0, 0.1);
	  transition: all 0.5s ease-in-out;
}

.box-grid .hero-boxes:hover
{
	border: 6px solid var(--hardgreen-color);
	transition: all 0.5s ease-in-out;
}

.box-grid .hero-boxes:hover .box-content {
  background: none;
  color: var(--white-color);
  transition: all 0.5s ease-in-out;
}

.box-grid .hero-boxes .box-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  width: 100px;
  border-radius: 50%;
  background-color: var(--primary-color);
  margin-top: -50px;
  transition: all 0.5s ease-in-out;
}
.box-grid .hero-boxes:hover .box-icon {
  margin-top: -125px;
  transition: all 0.5s ease-in-out;
}
.box-grid .hero-boxes .heroboxbg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--hardgreen-color);
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
.box-grid .hero-boxes:hover .heroboxbg {
  opacity: 1;
  transition: all 0.5s ease-in-out;
}

.box-icon img{
	width: 60px;
}

/* Hero Box End */

/* about section Start */
.about-section .about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
}
.about-section .about-grid .about-left {
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-section .about-grid .about-left img {
  border: 10px solid var(--white-color);
  box-shadow: 0px 10px 35px 5px rgba(0, 0, 0, 0.1);
}
.about-section .about-grid .about-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* gap: 20px; */
}
.about-section .about-grid .about-right p {
  margin-bottom: 15px;
}
.small-title {
  color: var(--hardgreen-color);
}

.about-section .about-grid .about-right a {
  /* margin-top: 10px; */
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding-right: 5px;
  padding-top: 5px;
  padding-bottom: 5px;
}
.about-section .about-grid .about-right a .btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  border-radius: 50%;
}
/* about section End */

/* what we do Start */
.whatwedo-section {
  background: #f3f8ee;
}
.whatwedo-section .wedo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
}
.whatwedo-section .wedo-grid .whatwe-right {
  display: flex;
  align-items: center;
  justify-content: center;
}
.whatwedo-section .wedo-grid .whatwe-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.whatwedo-section .wedo-grid .whatwe-left h3 {
  margin: 20px 0px;
}
.whatwedo-section .wedo-grid .whatwe-left .wedolist-wrapper {
  margin-top: 20px;
}
.whatwedo-section .wedo-grid .whatwe-left .wedolist-wrapper .wedolist {
  display: flex;
  /* justify-content: center; */
  align-items: start;
  gap: 5px;
  margin-bottom: 10px;
}
.whatwedo-section .wedo-grid .whatwe-left .wedolist-wrapper .wedolist img {
  margin-top: 3px;
}
.whatwedo-section .wedo-grid .whatwe-left .buttonlist {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}
.whatwedo-section .wedo-grid .whatwe-left .buttonlist a {
  padding: 6px 30px;
  background: var(--white-color);
  border: 1px solid var(--primary-color);
  color: var(--black-color);
  font-size: 18px;
  font-weight: 500;
  transition: all 0.5s ease-in-out;
  border-radius: 30px;
  flex: 1 1 calc(30% - 30px);
  text-align: center;
  /* min-width: 150px; */
}
.whatwedo-section .wedo-grid .whatwe-left .buttonlist a:hover {
  background: var(--secondary-btn-color);
  color: var(--white-color);
}

/* what we do End */

/* Why Sagun Group Start */
.maintitle h2 {
  /* display: flex;
  flex-direction: column;
  justify-content: center; */
  text-align: center;
  margin-top: 10px;
}
.maintitle img {
  display: block;
  margin: auto;
}
.sagungroup .whysagungrid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-top: 60px;
}
.sagungroup .whysagungrid .whysagbubox {
  text-align: center;
  /* position: relative; */
}

.sagungroup .whysagungrid .whysagbubox h6 {
  margin: 10px 0px;
}
.sagungroup .whysagungrid .whysagbubox .whysagun-img img {
  border-radius: 50%;
  width: 200px;
  height: 200px;
}
.sagungroup .whysagungrid .whysagbubox .whysagun-img {
  position: relative;
}
.sagungroup .whysagungrid .whysagbubox .whysagun-img .img-circle {
  position: absolute;
  height: 220px;
  width: 220px;
  border: 2px dashed var(--primary-color);
  border-radius: 50%;
  top: 99.5px;
  left: 129px;
  animation: rotate 20s linear infinite;
}
.sagungroup .whysagungrid .whysagbubox h2 {
  font-size: 80px;
  position: absolute;
  bottom: -53px;
  left: 86px;
  z-index: -1;
  color: #efefef;
}
@keyframes rotate {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
/* Why Sagun Group End */

/* Counter Start */
.countersection {
  background: #212121;
}
.countersection .maintitle {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
}
.countersection .maintitle .outlinebtn {
  color: var(--white-color);
  margin-top: 40px;
}
.countersection .maintitle h2 {
  width: 60%;
  margin: 10px auto 0px auto;
  line-height: 1.4;
}
.countersection .counter-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 50px;
  margin-top: 70px;
}
.countersection .counter-grid .counter-box .countr-icon {
  height: 80px;
  width: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--primary-color);
}

.countersection .counter-grid .counter-box .countr-icon img{ 
	width: 55px;
}
.countersection .counter-grid .counter-box {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  color: var(--white-color);
}
.countersection .counter-grid .counter-box .counter-number {
  font-size: 45px;
}
.countersection .counter-grid .counter-box p {
  margin-top: 10px;
}
/* Counter End */

/* brand logo start */
.brand-section .logo-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
/*   padding: 30px; */
  background: #f1f5f4;
}
.brand-section .logo-wrapper img {
    padding: 10px;
    background: #fff;
	border: 1px solid var(--primary-color);
	border-radius: 15px;
}
/* brand logo start */
.brand-section .logo-swiper {
  margin-top: 40px;
}
.brand-section .swiper {
  padding-bottom: 60px;
	padding-left: 30px;
	padding-right: 30px;
	padding-top: 10px;
}
.brand-section .swiper .swiper-pagination-bullet {
  background-color: #137438 !important;
}
.brand-section .swiper .swiper-pagination-bullet-active {
  background-color: #ffd800 !important;
}

/* brand logo End */

/* Contact Page Start */
.page-banner {
  background: url("../images/banner-image.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 80px 0px;
  position: relative;
  z-index: 1;
}
.page-banner h1 {
  color: var(--white-color);
  font-size: 40px;
  font-weight: 500;
  margin-bottom: 10px;
}
.page-banner .breadcrum {
  display: flex;
  gap: 10px;
  font-size: 16px;
  text-transform: uppercase;
  color: var(--white-color);
}
.page-banner .breadcrum a {
  color: var(--white-color);
}
.page-banner .breadcrum p {
  color: var(--white-color);
  font-size: 16px;
}
.page-banner .overlay-banner {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: var(--black-color);
  opacity: 0.4;
  z-index: -1;
}

.contact-box-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
}
.contact-box-grid .contact-box-detail {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 15px 30px 30px 30px;
  border: 1px solid #c1c1c1;
}
.contact-box-grid .contact-box-detail .box-details .contat-icon {
  height: 50px;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--primary-color);
  color: var(--white-color);
}
.contact-box-grid .contact-box-detail .box-details .contat-icon img {
  width: 20px;
}
.contact-box-grid .contact-box-detail .box-details {
  display: grid;
  grid-template-columns: 1fr 5fr;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid #c1c1c1;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.contact-box-grid .contact-box-detail .box-details:last-child {
  border-bottom: none;
  padding-bottom: 0px;
  margin-bottom: 0px;
}
.contact-box-grid .contact-box-detail .box-details p {
  font-size: 14px;
}
.contact-box-grid .contact-box-detail .box-details .content-title {
  font-size: 17px;
}
.contact-box-grid .contact-box-detail .box-details a {
  color: var(--black-color);
  font-size: 14px;
}
.contact-box-grid .outer-box-detail .con-box-heading {
  background: var(--secondary-color);
  padding: 10px 30px;
  border: 1px solid var(--hardgreen-color);
}
.contact-box-grid .outer-box-detail .con-box-heading h5 {
  font-weight: 500;
  font-size: 20px;
  color: var(--white-color);
}
.contact-box-grid .contact-box-detail .contact-box-title-wrapper h6 {
  font-size: 16px;
  font-weight: 600;
}
/* Contact Page End */

/* Faq Section Start */
.contact-faq-section .raq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.inner_content {
  display: none;
}
.accordion-title {
  padding: 15px 25px;
  /* border-radius: 5px; */
  cursor: pointer;
  transition: all 0.5s ease-in-out;
}
.accordion-title .icon {
  /* height: 8px; */
  width: 20px;
  -o-object-fit: contain;
  object-fit: contain;
  /* margin-top: 10px; */
  transition: all 0.5s ease-in-out;
}
.accordion-title .title {
  font-size: 18px;
  line-height: 1.35;
  font-weight: normal;
  /* color: #005897; */
  /* font-family: "euclid_medium"; */
}
.accordion-title.active {
  background: var(--primary-color);
  color: var(--black-color);
}
.accordion-title.active .title {
  color: var(--black-color);
}
.accordion-title.active .icon {
  /* filter: brightness(0) invert(1); */
  transform: rotate(180deg);
  transition: all 0.5s ease-in-out;
}

.acc-wrap {
  margin-bottom: 20px;
}
.acc-wrap .bg-border {
  border: 1px solid #c1c1c1;
}
.accordion-content {
  padding: 20px 20px 0px 20px;
  /* padding-left: 30px;
  padding-bottom: 10px; */
}
.accordion-content p {
  font-size: 16px;
}

.faq-column {
  -moz-column-count: 2;
  column-count: 2;
  -moz-column-gap: 60px;
  column-gap: 60px;
}
.faq-column .acc-wrap {
  display: inline-block;
  width: 100%;
  margin-bottom: 20px;
  -moz-column-break-inside: avoid;
  break-inside: avoid;
}

.faq-top-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  grid-gap: 60px;
}

.contact-right {
  padding: 30px;
  background: var(--white-color);
  box-shadow: 0px 10px 35px 5px rgba(0, 0, 0, 0.1);
}
.form-fields {
  margin-top: 30px;
}
.form-fields input {
  padding: 10px 20px;
  width: 100%;
  background: #f6f6f6;
  border: none;
  margin-bottom: 15px;
  font-size: 14px;
}
.select-box {
  padding: 13px 20px;
  width: 100%;
  background: #f6f6f6;
  border: none;
  margin-bottom: 15px;
  color: #79757d;
}
.select-box option {
  color: #79757d;
}
.form-fields .input-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
.form-fields input::placeholder {
  font-size: 14px;
  font-family: "DM Sans", sans-serif !important;
}
.form-fields textarea {
  padding: 10px 20px;
  width: 100%;
  background: #f6f6f6;
  font-size: 14px;
  border: none;
}
.form-fields textarea::placeholder {
  font-size: 14px;
  font-family: "DM Sans", sans-serif !important;
}
/* Faq Section End */

/* About Page Start */
.aboutfooter-desc {
  background: var(--white-color);
}

.aboutfooter-desc p {
  margin-top: 20px;
  margin-bottom: 30px;
}
.aboutfooter-desc p:last-child {
  margin-bottom: 0px;
}

/* About Page End */

/* Brand Start */
.brands-archive .brands-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 20px;
}
.brands-archive .brands-grid a
{
	transition: all 0.5s ease-in-out;
}
.brands-archive .brands-grid a .brand-box .brand-name {
  padding: 20px;
  background: var(--secondary-color);
  color: var(--white-color);
	transition: all 0.5s ease-in-out;
}
.brands-archive .brands-grid a .brand-box{
	transition: all 0.5s ease-in-out;
}
.brands-archive .brands-grid a .brand-box .brand-img {
  border: 5px solid #dedad9;
	overflow: hidden;
	transition: all 0.5s ease-in-out;
}

.brands-archive .brands-grid a .brand-box .brand-img .img-responsive
{
	transition: all 0.5s ease-in-out;
}

.brands-archive .brands-grid a:hover .brand-box .brand-img img
{
	transform: scale(1.1);
	transition: all 0.5s ease-in-out;
}
.brands-archive .brands-grid a:hover .brand-box .brand-name
{
	background: var(--primary-color);
	transition: all 0.5s ease-in-out;
}

.grid-3{
	grid-template-columns: 1fr 1fr 1fr !important;
}
/* Brand End */

/* Testimonials Stat */
.testimonial-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;

  margin-top: 40px;
}
.testimonial-wrapper .testimonial-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.testimonial-wrapper .testimonial-box .testimonial-descri {
  padding: 40px 40px 70px 40px;
  text-align: center;
  color: var(--white-color);
  background: var(--secondary-color);
  width: 715px;
}
.testimonial-wrapper .testimonial-box .testimonial-img {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.testimonial-wrapper .testimonial-box .testimonial-img .client-img {
  height: 120px;
  width: 118px;
  border-radius: 50%;
  border: 2px solid var(--primary-color);
  margin-top: -50px;
}

.testimonial-wrapper .testimonial-box .testimonial-img .client-img img {
  height: 110px;
  width: 110px;
  border-radius: 50%;
  margin: 3px;
  /* display: block; */
  /* margin: -50px auto auto auto; */
}

.testimonial-wrapper .testimonial-box .testimonial-img h6 {
  font-size: 18px;
  font-weight: 600;
  margin-top: 10px;
}

.testimonial-wrapper .swiper-button-prev:after,
.testimonial-wrapper .swiper-button-next:after {
  content: " " !important;
}

.testimonial-wrapper .swiper-button-prev .banner-prv {
  width: 20px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  /* border: 1px solid var(--white-color); */
  padding: 0px 22px;
  /* position: relative; */
  background: var(--primary-color);
  transition: all 0.5s ease-in-out;
}
.testimonial-wrapper .swiper-button-next .banner-nxt {
  width: 20px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  /* border: 1px solid var(--white-color); */
  padding: 0px 22px;
  background: var(--primary-color);
  /* position: relative; */
  transition: all 0.5s ease-in-out;
}
.testimonial-wrapper .swiper-button-prev .banner-prv:hover {
  background: var(--secondary-color);
  /* border: 1px solid var(--secondary-color); */
  transition: all 0.5s ease-in-out;
}
.testimonial-wrapper .swiper-button-next .banner-nxt:hover {
  background: var(--secondary-color);
  /* border: 1px solid var(--secondary-color); */
  transition: all 0.5s ease-in-out;
}
.testimonial-wrapper .swiper-button-next {
  right: 160px;
  top: 90px;
}
.testimonial-wrapper .swiper-button-prev {
  left: 160px;
  top: 90px;
}
/* Testimonials End */

/* Liquor Start */
.liquor-section-wrapper .liquor-content {
  margin-bottom: 40px;
}
.liquor-section-wrapper .liquor-content h5 {
  margin-bottom: 40px;
}
.liquor-section-wrapper .liquor-content:last-child {
  margin-bottom: 0px;
}
.liquor-section-wrapper .liquor-content .liquor-box-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}
.liquor-box-grid .liquor-box .liquor-name {
  padding: 20px 30px;
  background: var(--secondary-color);
  margin-top: 5px;
	transition: all 0.5s ease-in-out;
}
.liquor-box-grid .liquor-box 
{
	transition: all 0.5s ease-in-out;
}
.liquor-box-grid .liquor-box .iquor-img
{
	overflow: hidden;
	transition: all 0.5s ease-in-out;
}
.liquor-box-grid .liquor-box .iquor-img img
{
	transition: all 0.5s ease-in-out;
}
.liquor-box-grid .liquor-box:hover img
{
	transform: scale(1.1);
	transition: all 0.5s ease-in-out;
}
.liquor-box-grid .liquor-box:hover .liquor-name { 
	 background: var(--primary-color); 
	transition: all 0.5s ease-in-out;
}
.liquor-box-grid .liquor-box .liquor-name h6 {
  color: var(--white-color);
  font-size: 18px;
  font-weight: 500;
}
/* Liquor End */

.brand-logo-grid 
{
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
	gap: 30px;
	margin-top: 40px;
}
.product-cat-grid
{
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
	gap: 20px;
}
.product-cat-box
{
	    padding: 10px;
    border: 1px solid #000000;
	transition: all 0.5s ease-in-out;
}
.product-cat-img
{
/* 	    border: 5px solid #dedad9; */
}
.product-cat-name
{
	    padding: 15px;
/*     background: var(--secondary-color); */
	border: 1px solid #000000;
    color: #000000;
	transition: all 0.5s ease-in-out;

}
.product-cat-name h6
{
		font-size: 16px;
	font-weight: 600;
	text-align: center;
}
.product-cat-img
{
	overflow: hidden;
}
.product-cat-box .product-cat-img img
{
	transition: all 0.5s ease-in-out;
}
.product-cat-box:hover
{
	 background: var(--secondary-color);
	border: none;
	transition: all 0.5s ease-in-out;
}
.product-cat-box:hover .product-cat-name
{
	color: #ffffff;
	 background: var(--secondary-color);
	border: 1px solid #ffffff;
	transition: all 0.5s ease-in-out;
}
.product-cat-box:hover .product-cat-img img
{
	transform: scale(1.1);
	transition: all 0.5s ease-in-out;
}
.title-center
{
	text-align: center;
	margin-bottom: 20px;
}
.title-center img
{
	margin-bottom: 15px;
}
.home-banner-section
{
	padding: 150px 0px 50px 0px;
}

.home-banner-swiper{
	padding-bottom: 100px;
}

.home-banner-grid
{
	display: grid;
	grid-template-columns: 1.5fr 2fr;
	gap: 40px;
}



.banner-text{
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.banner-text .color-yellow
{
	color: var(--primary-color); 
}
.banner-text h1
{ 
	color: #ffffff;
}
.banner-text h3 
{
	margin: 30px 0px;
	line-height: 1.4;
	color: #ffffff;
}

.home-banner-section  .swiper-wrapper
{
	width: 300px;
}

.home-banner-section .swiper-button-prev:after,
.home-banner-section .swiper-button-next:after {
  content: " " !important;
}

.home-banner-section .swiper-button-prev .banner-prv {
  width: 45px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--white-color);
  padding: 0px 30px;
  /* position: relative; */
  transition: all 0.5s ease-in-out;
}
.home-banner-section .swiper-button-next .banner-nxt {
  width: 45px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--white-color);
  padding: 0px 30px;
  /* position: relative; */
  transition: all 0.5s ease-in-out;
}
.home-banner-section .swiper-button-prev .banner-prv:hover {
  background: var(--secondary-color);
  border: 1px solid var(--secondary-color);
  transition: all 0.5s ease-in-out;
}
.home-banner-section .swiper-button-next .banner-nxt:hover {
  background: var(--secondary-color);
  border: 1px solid var(--secondary-color);
  transition: all 0.5s ease-in-out;
}
.home-banner-section .swiper-button-next {
	left: 105px;
  top: 350px;
  right: -90px;
}
.home-banner-section .swiper-button-prev {
  left: 30px;
	top: 350px;
}
/* .home-banner-section .swiper
{
	overflow: visible;
} */
.home-banner-swiper
{
	backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
}
.swiper-slide-active {
  transition: all 0.5s ease-in-out; /* Smooth fade for active slide */
  opacity: 1; /* Fully visible */
}

.swiper-slide {
  opacity: 0; /* Start invisible */
  transition: all 0.5s ease-in-out; /* Smooth transition for fade */
}
.liquor-content
{
	margin-top: 20px;
}
.liquor-content .maintitle
{
	margin-bottom: 30px;
}

@media (max-width: 1200px) {
  .container {
    width: 90%;
  }
  .footer-top-box .foot-icon-3 {
    width: 84px;
  }
  .footer-top-box .foot-icon-2 {
    width: 98px;
  }
  .sagungroup .whysagungrid .whysagbubox .whysagun-img .img-circle {
    left: 50%;
  }
  .sagungroup .whysagungrid .whysagbubox h2 {
    left: 30%;
  }
	.brand-logo-grid 
{
	grid-template-columns: 1fr 1fr 1fr 1fr 1fr;

}
  /* .footer-top-box .footer-contact-grid {
    grid-template-columns: 1fr;
  } */
}
@media (max-width: 1150px) {
  .countersection .counter-grid .counter-box .counter-number {
    font-size: 30px;
  }
  .countersection .counter-grid {
    gap: 0px;
  }
  .countersection .counter-grid .counter-box p {
    font-size: 14px;
  }
  .footer-menus .footer-box-grid {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }
  .footer-menus .second-footer-menu {
    padding-left: 0px;
  }
  .footer-menus .footer-menu-box .newsletter {
    justify-content: space-between;
  }
}
@media (max-width: 1024px) {
  .main-header {
    display: none;
  }
  /* Mobile Menu and slide start */
  .top-nav,
  .lower-nav {
    display: none;
  }
  .mobile-view {
    display: block;
  }
  .mobile-menu {
    display: block;
  }
  .slidein-logo,
  .logo-wrap {
    padding: 10px 0px;
  }
  .slidein-logo a img,
  .logo-wrap a img {
    /* height: 80px; */
    width: 90px;
  }
  .slidein-menu {
    display: block;
  }
  .ham-btn {
    height: 30px;
    width: 30px;
    right: 5px;
    position: relative;
    cursor: pointer;
  }
  .ham-btn span {
    position: absolute;
    width: 100%;
    height: 5px;
    border-radius: 10px;
    background: var(--primary-color);
    display: block;
  }
  .ham-btn span:nth-child(1) {
    top: 6px;
    width: 80%;
    right: -5px;
  }

  .ham-btn span:nth-child(2) {
    top: 15px;
    right: -5px;
  }
  .ham-btn span:nth-child(3) {
    bottom: 1px;
    right: -5px;
    width: 135%;
  }
  .slidein-menu {
    position: fixed;
    width: 400px;
    height: 100%;
    background: var(--white-color);
    top: 0;
    left: -150%;
    padding: 20px 40px;
    box-sizing: border-box;
    transition: all 0.5s ease-in-out;
    z-index: 999;
  }
  .slidein-menu.open {
    left: 0;
	  width: 100%;
    transition: all 0.5s ease-in-out;
  }
	
	.home-banner-section .swiper-button-next{
		top: 515px;
		left: 220px;
	}
	.home-banner-section .swiper-button-prev{
		top: 515px;
		left: 140px;
	}
	
	.banner-text h3{
		text-align: center;
	}
	.banner-text{
		align-items: center;
	}
	

  .ham-btn.cross span {
    background: var(--primary-color);
  }

  .ham-btn.cross span:nth-child(2) {
    display: none;
  }
  .ham-btn.cross span:nth-child(1) {
    transform: rotate(45deg);
    top: 10px;
    right: 0;
    width: 100%;
  }
  .ham-btn.cross span:nth-child(3) {
    transform: rotate(-45deg);
    bottom: auto;
    top: 10px;
    right: 0;
    width: 100%;
  }
  .slidein-menu .m-nav-bar {
    margin-top: 30px;
  }
  .slidein-menu .m-nav-bar .m-menu-list li {
    position: relative;
    padding: 10px 0px;
  }
  .slidein-btn .btn {
    width: 100%;
  }
  .slidein-bdr {
    border-bottom: 1px solid #ff00002b;
    padding-bottom: 30px;
  }
  .m-menu-list li a {
    font-size: 20px;
    color: var(--black-color);
    font-weight: 500;
    display: block;
    line-height: 2;
    transition: all 0.5s ease-in-out;
  }
  .m-menu-list li a:hover {
    color: var(--primary-color);
    border-bottom: 1px solid var(--primary-color);
    width: fit-content;
    transition: all 0.5s ease-in-out;
  }
  .sidebar-menu {
    color: var(--black-color);
    transition: all 0.5s ease-in-out;
  }
  .sidebar-menu:hover .expand svg {
    color: var(--primary-color);
    transition: all 0.5s ease-in-out;
  }
  .sub-menu {
    display: none;
    color: var(--black-color);
  }
  .sub-menu ul li a {
    font-size: 16px;
    padding-left: 15px;
  }
  .expand1 {
    font-size: 20px;
    line-height: 3;
    font-weight: 500;
  }
  /* Mobile Menu and slide end */
  .banner-section .banner-details {
    padding: 170px 0px 170px 0;
  }
  .banner-section .swiper-button-prev {
    left: 90px;
  }
  .banner-section .swiper-button-next {
    right: 70px;
  }
  .pb-60 {
    padding-bottom: 40px;
  }
  .pb-80 {
    padding-bottom: 40px;
  }
  .py-60 {
    padding: 40px 0px;
  }
  h1 {
    font-size: 45px;
  }

  h2 {
    font-size: 35px;
  }

  h3 {
    font-size: 28px;
  }

  h4 {
    font-size: 24px;
  }

  h5 {
    font-size: 20px;
  }

  h6 {
    font-size: 18px;
  }
  .about-section {
    padding-top: 0px;
  }
  .about-section .about-grid {
    gap: 30px;
    margin-top: 40px;
  }
  .whatwedo-section .wedo-grid {
    gap: 30px;
  }
  .sagungroup .whysagungrid {
    grid-template-columns: 1fr 1fr;
  }

  .sagungroup .whysagungrid .whysagbubox h2 {
    left: 40%;
  }
  .footer-top-box .footer-contact-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-top-box .foot-icon-2 {
    height: 62px;
    width: 75px;
  }
  .footer-top-box .foot-icon-3 {
    height: 65px;
    width: 70px;
  }
  .contact-box-grid {
    grid-template-columns: 1fr 1fr;
    gap: 90px;
  }
  .about-section .about-grid .about-right p:last-child {
    margin-bottom: 0px;
  }
  .testimonial-wrapper .swiper-button-next {
    right: 55px;
  }
  .testimonial-wrapper .swiper-button-prev {
    left: 55px;
  }
.brand-logo-grid 
{
	grid-template-columns: 1fr 1fr 1fr 1fr;
}
}

@media (max-width: 950px) {
  .countersection .maintitle h2 {
    width: 100%;
  }
  .hero-boxes-section .box-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-bottom .copyright {
    flex-direction: column;
  }
  .footer-bottom .copyright .copy-left {
    gap: 10px;
  }
  .page-banner {
    padding: 30px 0px;
  }
  .page-banner h1 {
    font-size: 30px;
  }
  .brands-archive .brands-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
	.brand-logo-grid 
{
	grid-template-columns: 1fr 1fr 1fr;
}
	.product-cat-grid
{
	grid-template-columns: 1fr 1fr 1fr 1fr;
}
	.home-banner-section {
    padding: 60px 0px 80px 0px;
}
}
@media (max-width: 850px) {
	.home-banner-grid {
	grid-template-columns: 1fr;
	}
	.grid-3{
		grid-template-columns: 1fr 1fr !important;
	}
}
@media (max-width: 750px) {
  h1 {
    font-size: 35px;
  }

  h2 {
    font-size: 30px;
  }

  h3 {
    font-size: 24px;
  }

  h4 {
    font-size: 22px;
  }

  h5 {
    font-size: 18px;
  }

  h6 {
    font-size: 18px;
  }

  .slidein-logo a img,
  .logo-wrap a img {
    /* height: 80px; */
    width: 90px;
  }
  .banner-section .banner-details {
    padding: 100px 0px 100px 0;
  }
  .about-section .about-grid {
    grid-template-columns: 1fr;
  }
  .whatwedo-section .wedo-grid {
    grid-template-columns: 1fr;
  }
  .countersection .counter-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  .countersection .counter-grid .counter-box {
    justify-content: start;
  }
  .footer-top-box .footer-contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-box-grid {
    grid-template-columns: 1fr;
    gap: 85px;
  }
  .contact-faq-section .raq-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .item-1 {
    order: 1;
  }
  .item-2 {
    order: -1;
  }
  .testimonial-wrapper {
    margin-top: 30px;
  }
  .testimonial-wrapper .testimonial-box .testimonial-descri {
    width: 430px;
  }
  .testimonial-wrapper .swiper-button-next {
    right: 55px;
    top: 112px;
  }
  .testimonial-wrapper .swiper-button-prev {
    left: 55px;
    top: 112px;
  }
  .liquor-section-wrapper .liquor-content .liquor-box-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 650px) {
	.grid-3{
		grid-template-columns: 1fr !important;
	}
  .pb-60 {
    padding-bottom: 30px;
  }
  .pb-80 {
    padding-bottom: 30px;
  }
  .py-60 {
    padding: 30px 0px;
  }
  .footer-menus .footer-box-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .accordion-title {
    padding: 15px 20px;
  }
  .accordion-title .title {
    font-size: 16px;
  }
  .aboutfooter-desc p {
    margin-bottom: 20px;
  }
	
.brand-logo-grid 
{
	grid-template-columns: 1fr 1fr;
}
	
.product-cat-grid
{
	grid-template-columns: 1fr 1fr 1fr;
}
	
	.page-banner h1 {
    text-align: center;
		
  }
	
}

@media (max-width: 550px) {
  h1 {
    font-size: 30px;
  }

  h2 {
    font-size: 27px;
  }

  h3 {
    font-size: 22px;
  }

  h4 {
    font-size: 20px;
  }

  h5 {
    font-size: 16px;
  }

  h6 {
    font-size: 16px;
  }
  .hero-boxes-section .box-grid {
    grid-template-columns: 1fr;
  }
  .sagungroup .whysagungrid {
    grid-template-columns: 1fr;
  }
  .countersection .counter-grid {
    grid-template-columns: 1fr;
  }
  .center-counter {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .slidein-logo a img,
  .logo-wrap a img {
    width: 50px;
  }
  .copy-left p,
  .copy-right p {
    font-size: 14px;
  }
  .copy-left a,
  .copy-right a {
    font-size: 14px;
  }
  .footer-bottom .copyright .copy-left {
    flex-direction: column;
    gap: 5px;
  }
  .countersection .counter-grid {
    margin-top: 30px;
  }
  .brand-section .logo-swiper {
    margin-top: 20px;
  }
  .sagungroup .whysagungrid {
    gap: 30px;
    margin-top: 30px;
  }
  .banner-section .swiper-button-next {
    right: 40px;
  }
  .banner-section .swiper-button-prev {
    left: 50px;
  }
  .banner-section .swiper-button-prev .banner-prv {
    height: 45px;
    padding: 0px 22px;
  }
  .banner-section .swiper-button-next .banner-nxt {
    height: 45px;
    padding: 0px 22px;
  }
  .form-fields .input-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .brands-archive .brands-grid {
    grid-template-columns: 1fr 1fr;
  }

  .testimonial-wrapper .testimonial-box .testimonial-descri {
    width: 320px;
  }
  .testimonial-wrapper .swiper-button-next {
    right: 100px;
    top: 290px;
  }
  .testimonial-wrapper .swiper-button-prev {
    left: 100px;
    top: 290px;
  }
  .liquor-section-wrapper .liquor-content .liquor-box-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .liquor-section-wrapper .liquor-content h5 {
    margin-bottom: 30px;
  }
  .liquor-section-wrapper .liquor-content {
    margin-bottom: 30px;
  }
	.product-cat-grid
{
	grid-template-columns: 1fr 1fr;
}
  /* .box-grid .hero-boxes:hover .box-content {
    margin-top: -220px;
    transition: all 0.5s ease-in-out;
  } */
	
	banner-text h3 {
    margin: 15px 0px;
}
	
		.home-banner-section {
    padding: 40px 0px 50px 0px;
}
	
}

@media (max-width: 430px) {
  .footer-top-box .foot-icon-2 {
    width: 100px;
  }
  .brands-archive .brands-grid {
    grid-template-columns: 1fr;
  }
  .testimonial-wrapper .swiper-button-next {
    right: 30px;
  }
  .testimonial-wrapper .swiper-button-prev {
    left: 30px;
  }
	.brand-logo-grid 
{
	grid-template-columns: 1fr;
}
	.product-cat-grid
{
	grid-template-columns: 1fr;
}
}





/* blog css */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.news-archive-section
{
	padding: 80px 0px;
}
/* 1. The Card Box */
.blog-card {
  background: #ffffff;
  border-radius: 15px; 
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03); /* Very subtle primary shadow */
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid #f0f0f0;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08); /* Stronger hover shadow */
}
/* 2. The Image Area */
.card-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}
.card-image img, 
.card-image .img-responsive {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.blog-card:hover .card-image img {
  transform: scale(1.08);
}
/* 3. The Blue Tag (Exact match to image) */
.category-tag {
  position: absolute;
  bottom: 0;
  right: 0;
  background: #f9d7ab;
  color: #ffffff;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 0; /* Square block as seen in image */
  z-index: 2;
  text-transform: capitalize;
}
/* 4. The Content / Title Area */
.card-body {
  padding: 25px 20px 25px 20px; 
  flex-grow: 1;
}
.card-title {
  margin: 0;
}
.card-title a {
  text-decoration: none;
  font-size: 20px; 
  line-height: 1.3;
  color: #1a1a1b;
  font-weight: 700; 
  transition: color 0.3s ease;
}
.card-title a:hover {
  color: #00aeef;
}
/* 5. The Footer (Exact light gray match) */
.card-footer {
  padding: 0px 25px;
  background-color: #ffffff;
  border-top: 0px !important;
}

.card-footerinner
{
	  display: flex;
  justify-content: space-between;
  align-items: center;
	 border-top: 1px solid #dbdee3;
	padding: 20px 0px ;
}

.card-footer span {
  color: #031424;
  font-size: 14px;
  display: flex;
  align-items: center;
  font-weight: 400;
}
.card-footer span i {
  margin-right: 12px;
  font-size: 14px;
  color: #000000; 
}

/* single page */

.single-post-wrapper {
    padding: 60px 0;
}

.post-layout {
    display: grid;
    grid-template-columns: 68% 1fr; /* Grid handles space better than flex with gaps */
    gap: 40px;
}

.main-content {
    min-width: 0; /* Prevents grid items from overflowing */
}

.sidebar {
    min-width: 0;
}

/* Blog Post */
.blog-post {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding-bottom: 40px;
}

.blog-post p:last-child
{
	margin-bottom: 0px !important;
}

.post-featured-image {
    width: 100%;
    height: auto;
    overflow: hidden;
}

.post-featured-image img, 
.post-featured-image .img-responsive {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-header {
    padding: 40px 40px 20px 40px;
}

.post-meta {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 14px;
    color: #666;
}

.category-tag {
    background: #f9d7ab;
    color: #000000;
    padding: 6px 15px;
    border-radius: 4px;
    font-weight: 600;
}

.post-meta span i {
    margin-right: 8px;
    color: #006738;
}

.singblogbtn 
{
	width: 100%;
}

.post-title {
    font-size: 38px;
/*     font-weight: 700; */
	color: #137438;
    margin: 0;
}

.post-content {
    padding: 0 40px;
    font-size: 17px;
    color: #444;
}

.post-content a{
	color: #99cc33 !important;
}
.post-content a:hover{
	color: #006738 !important;
}
.post-content h1
{
	color: #006738;
	margin-bottom: 30px;
}

.post-content p {
    margin-bottom: 25px;
}

.post-content h2 {
	color: #006738;
    font-size: 28px;
    margin: 0px 0 30px 0;
}

.post-content h3 {
	color: #006738;
    font-size: 22px;
    margin: 30px 0 30px 0;
}

.post-content h4 {
	color: #006738;
    font-size: 20px;
    margin: 30px 0 30px 0;
}

.post-content h5 {
	color: #006738;
    font-size: 20px;
    margin: 30px 0 30px 0;
}

.post-content h {
	color: #006738;
    font-size: 20px;
    margin: 30px 0 30px 0;
}

.post-content img 
{
	width: 100%;
	height: auto;
	object-fit: cover;
}

.post-content blockquote {
    background: #f0f7ff;
    border-left: 5px solid #00aeef;
    padding: 30px;
    margin: 35px 0;
    font-style: italic;
    font-size: 20px;
    color: #1a1a1b;
    border-radius: 0 12px 12px 0;
}

.content-image {
    width: 100%;
    border-radius: 12px;
    margin: 30px 0;
}

.post-content ul {
    margin-bottom: 25px;
    padding-left: 20px;
}

.post-content li {
    margin-bottom: 12px;
}

/* Sidebar Widgets */
.sidebar-widget {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.sidebar-widget ul 
{
	margin: 0px !important;
	padding: 0px !important;
}


.widget-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f7f9fb;
    position: relative;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background: #137438;
}

/* Category List */
.category-list {
    list-style: none;
}

.category-list li {
    margin-bottom: 15px;
}

.category-list a {
    text-decoration: none;
    color: #1a1a1b;
    display: flex;
    justify-content: space-between;
    transition: all 0.3s ease;
    font-weight: 500;
}

.category-list a:hover {
    color: #00aeef;
    padding-left: 5px;
}

.category-list span {
    color: #666;
    font-size: 14px;
}

/* Popular Posts */
.popular-posts {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.popular-post-item {
    display: flex;
    gap: 15px;
/*     align-items: center; */
}

.popular-post-item img {
    width: 70px;
    height: 70px;
    border-radius: 10px;
    object-fit: cover;
}

.popular-post-info h6 {
    font-size: 15px;
    line-height: 1.4;
    margin-bottom: 5px;
}

.popular-post-info a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.popular-post-info a:hover {
    color: #00aeef;
}

.popular-post-info span {
    font-size: 12px;
    color: #666;
}

/* Contact Box Sidebar Widget */
.contact-box {
    background: linear-gradient(145deg, #ffffff, #f0f7ff);
    border: 1px solid #e1efff;
}

.contact-box p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.contact-info {
    margin-bottom: 25px;
}

.info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 18px;
    align-items: center;
}

.info-item i {
    width: 40px;
    height: 40px;
    background: #ffffff;
    color: #137438;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 174, 239, 0.1);
    font-size: 16px;
}

.info-item div {
    display: flex;
    flex-direction: column;
}

.info-item strong {
    font-size: 13px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-item span {
    font-size: 15px;
    color: #1a1a1b;
    font-weight: 600;
}

.btn-primary {
    display: block;
    width: 100%;
    background: #006738;
    color: #ffffff !important;
    text-align: center;
    padding: 15px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 174, 239, 0.2);
}

.btn-primary:hover {
   background: #99cc33;
  color: #fff !important;
  letter-spacing: 1px;
  -webkit-box-shadow: 0px 5px 40px -10px rgba(0, 0, 0, 0.57);
  -moz-box-shadow: 0px 5px 40px -10px rgba(0, 0, 0, 0.57);
  box-shadow: 5px 40px -10px rgba(0, 0, 0, 0.57);
  transition: all 0.4s ease 0s;
}

.blogsidebar
{
	position: sticky;
	top: 100px;
}


/* singlepage */
/* Responsive */
@media (max-width: 992px) {
.post-layout {
        grid-template-columns: 1fr;
    }
    
    .post-featured-image {
        height: 350px;
    }
    
}

@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .card-title a {
    font-size: 18px;
  }
	.news-archive-section
{
	padding: 40px 0px;
}
	
	 .post-title {
        font-size: 26px;
    }
    
    .post-header, .post-content {
        padding: 0px 20px;
    }
    
    .post-featured-image {
        height: 250px;
    }
	
	.single-post-wrapper {
    padding: 40px 0;
}
}





/* Product single */


/* Product Section */
.product-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.product-wrapper {
    display: grid;
    grid-template-columns: 1fr 2.5fr;
    gap: 30px;
    align-items: start;
}

/* Sidebar Left */
.sidebar-left {
    
	height: 100%;
}
.sidebar-left .stickybar{
	position: sticky;
	top: 115px;
	display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Service Sidebar */
.service-sidebar {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-sidebar > li {
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #eeeeee;
    color: #000;
}

.service-sidebar > li:last-child {
    border-bottom: none;
}

.service-sidebar > li i {
    margin-right: 10px;
    color: #137438;
    font-size: 18px;
}

.service-sidebar > li a {
    display: flex;
    align-items: center;
    color: #000;
    text-decoration: none;
    font-weight: 600;
}

.service-sidebar > li a i {
    margin-right: 10px;
    color: #137438;
    font-size: 18px;
}

.service-sidebar .active-parent {
    color: #137438;
}

.service-child {
    list-style: none;
    margin-left: 25px;
    margin-bottom: 10px;
    padding: 0;
}

.service-child li {
    font-weight: 400;
    margin: 0;
    border-bottom: none;
    padding: 5px 0 5px 10px;
    display: flex;
    align-items: center;
}

.service-child li i {
    margin-right: 8px;
    color: #137438;
    font-size: 14px;
}

.service-child li a {
    display: flex;
    align-items: center;
    color: #000;
    text-decoration: none;
    font-weight: 400;
}

.service-child li a i {
    margin-right: 8px;
    color: #137438;
    font-size: 14px;
}

.service-child .active-child {
    color: #137438;
    font-weight: 600;
    margin-bottom: 10px;
    border-bottom: 1px solid #eeeeee;
    padding-bottom: 15px;
}

/* Content Right */
.content-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.product-content {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.product-main-image {
    width: 100% !important;
	max-width: 100% !important;
	height: auto !important;
    border-radius: 8px;
    margin-bottom: 20px;
}

.product-content h1 {
    font-size: 32px;
    color: #000;
    margin-bottom: 20px;
    font-weight: 700;
}

.product-content p {
    margin-bottom: 15px;
    color: #555;
    line-height: 1.8;
}

.product-content h3 {
    font-size: 22px;
    color: #137438;
    margin-top: 25px;
    margin-bottom: 15px;
    font-weight: 600;
}

.product-content ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.product-content ul li {
    padding: 10px 0;
    color: #000;
    display: flex;
    align-items: center;
}

.product-content ul li::before {
    content: "\f058"; /* fa-check-circle */
    font-family: FontAwesome;
    margin-right: 10px;
    color: #137438;
    font-size: 16px;
}

/* List Box */
.list_box {
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.list_box h2 {
    font-size: 20px;
    color: #137438;
    margin-bottom: 10px;
}

.list_box p {
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

.list_box .btn {
	width: 100%;
}

.listbox-second 
{
	text-align: center;
}

/* .btn {
    display: inline-block;
    padding: 12px 30px;
    background: #ffd800;
    color: #137438;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
} */

/* .btn:hover {
    background: #137438;
    color: #fff;
} */

.block {
    display: block;
    width: 100%;
}

/* Product Gallery */
.product-gallery {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.gallery-title {
    font-size: 24px;
    color: #137438;
    margin-bottom: 25px;
    font-weight: 600;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    display: block;
    aspect-ratio: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.producttit
{
	font-size: 14px;
	font-weight: 500;
	text-align: center;
	margin-bottom: 0px !important;
	margin-top: 10px !important;
}
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 216, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.zoom-icon {
    font-size: 48px;
    color: #137438;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .product-section {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    .product-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .sidebar-left {
        order: 2;
    }

    .content-right {
        order: 1;
    }

    .product-title {
        font-size: 28px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .why-choose-box {
        padding: 30px 20px;
    }

    .title h2 {
        font-size: 28px;
    }

    .why-choose-header h3 {
        font-size: 24px;
    }

    .button-group {
        flex-direction: column;
    }

    .button-group .btn {
        width: 100%;
    }
}

@media (max-width: 650px) {
    .product-section {
        padding: 40px 0;
    }

    .why-choose-section {
        padding: 40px 0;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .product-content {
        padding: 20px;
    }

    .product-title {
        font-size: 24px;
    }

    .product-description h3 {
        font-size: 20px;
    }

    .title h2 {
        font-size: 24px;
    }

    .why-choose-header h3 {
        font-size: 22px;
    }

    .gallery-title {
        font-size: 20px;
    }
}

/* Magnific Popup Customization */
.mfp-bg {
    background: #000;
    opacity: 0.9;
}

.mfp-figure:after {
    background: #137438;
}

.mfp-title {
    color: #ffd800;
    font-weight: 600;
/* 	display: none; */
}

.mfp-counter {
    color: #ffd800;
}

/* .mfp-arrow:before,
.mfp-arrow:after {
    border-top-color: #ffd800;
    border-bottom-color: #ffd800;
} */
