@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap");

@font-face {
  font-family: "migoextrabold";
  src: url(../fonts/MigoExtraBold.ttf);
}

@font-face {
  font-family: "migoblack";
  src: url(../fonts/MigoBlack.ttf);
}

@font-face {
  font-family: "migobold";
  src: url(../fonts/MigoBold.ttf);
}

::-webkit-scrollbar {
  z-index: 999;
  position: absolute;
  background: transparent;
  width: 5px;
}

::-webkit-scrollbar-thumb {
  background: #4C9134;
  border-radius: 50px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "migobold", sans-serif;
  scroll-behavior: smooth;
}

body {
  background: white !important;
}

:root {
  --green: #97B641;
  --dark: #1E1E1E;
  --main-green: #4C9134;
  --text: #4A4A4A;
  --light: #F9F9F9;

}

li {
  list-style: none !important;
}

a {
  text-decoration: none !important;
}

ul {
  padding-left: 0 !important;
  margin-bottom: 0 !important;
}

@keyframes rotate {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.main-btn {
  position: relative;
  overflow: hidden;
  display: inline-block;
  border-radius: 0px;
  background: var(--main-green);
  padding: 15px 35px;
  outline: none;
  border: none;
  overflow: hidden;
  min-width: -moz-max-content;
  min-width: max-content;
  border-radius: 100px;
}

.main-btn.border-btn {
  background: transparent;
  border: 1px solid var(--main-green);
}

.main-btn.border-btn span {
  color: var(--main-green);
}

.main-btn.border-btn img {
  filter: invert(0%) brightness(100%);
}

.main-btn.border-btn:hover span {
  color: white;
}

.main-btn.border-btn:hover img {
  filter: invert(100%) brightness(15000%) !important;
}

.main-btn.loading {
  position: relative;
  cursor: not-allowed;
}

.main-btn.loading:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: var(--green);
  width: 100%;
  height: 100%;
  z-index: 8;
}

.main-btn.loading::after {
  content: "";
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: url("../images/spinner.svg") center/contain no-repeat;
  z-index: 88;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: rotate 0.8s linear infinite;
}

.main-btn.link-blue-btn {
  background: transparent !important;
  padding-left: 0;
  padding-right: 0;
}

.main-btn.link-blue-btn span {
  color: var(--blue) !important;
}

.main-btn.link-blue-btn img {
  filter: invert(0%) brightness(100%);
}

.main-btn.link-blue-btn:after {
  display: none;
}

.main-btn.link-blue-btn:hover span {
  color: var(--blue) !important;
}

.main-btn.link-blue-btn:hover img {
  filter: invert(0%) brightness(100%);
  margin-left: 5px;
}

.main-btn.white-border-btn {
  background: transparent;
  border: 1px solid white;
}

.main-btn.white-border-btn:after {
  background: white !important;
}

.main-btn.white-border-btn span {
  color: white;
}

.main-btn.white-border-btn img {
  filter: invert(100%) brightness(155000%);
}

.main-btn.white-border-btn:hover span {
  color: var(--blue);
}

.main-btn.white-border-btn:hover img {
  filter: invert(0%) brightness(100%) !important;
}

.main-btn img {
  filter: invert(100%) brightness(1000%);
  transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  position: relative;
  z-index: 5;
}

.main-btn.white-btn {
  background: white !important;
}

.main-btn.white-btn span {
  color: var(--blue);
}

.main-btn.white-btn img {
  filter: invert(0%) brightness(100%);
}

.main-btn.white-btn:hover span {
  color: white !important;
}

.main-btn.white-btn:hover img {
  filter: invert(100%) brightness(10000%);
}

.main-btn:hover:after {
  transform: translateY(0px);
}

.main-btn:hover span {
  color: white;
}

.main-btn:hover img {
  margin-left: 5px;
}

.main-btn img {
  transition: 0.2s ease-in-out;
}

.main-btn::after {
  content: "";
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 0;
  width: 50%;
  height: 50%;
  background: var(--dark);
  transform: translateY(100%) translateX(-50%);
  transition: all 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19), border-radius 0.5s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  border-top-left-radius: 100px;
  border-top-right-radius: 100px;
}

.main-btn:hover:after {
  width: 100%;
  height: 100%;
  border-radius: 0px;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  transform: translateY(0px) translateX(-50%);
}

.main-btn span {
  color: white;
  font-weight: 600;
  font-size: 14px;
  position: relative;
  z-index: 5;
  transition: 0.2s ease-in-out;
}

.main-btn.block-btn {
  width: 100%;
  display: block;
  text-align: center;
}

.main-btn.orange {
  background: var(--orange);
}

.main-btn.with-icon {
  display: flex;
  max-width: -moz-max-content;
  max-width: max-content;
  align-items: center;
  gap: 10px;
}

.main-btn.with-icon img {
  position: relative;
  z-index: 5;
}

.main-btn.center {
  display: flex;
  max-width: -moz-max-content;
  max-width: max-content;
  align-items: center;
  gap: 10px;
  margin: 0 auto;
}

.light-bg {
  background: var(--light);
}

.line {
  background: #D9D9D9 !important;
}

.light-blue-bg {
  background: #F2F7FB;
}

.dark-blue-bg {
  background: #15222D;
}

.sec-head {
  position: relative;
}

.sec-head.has-arrow {
  max-width: -moz-max-content;
  max-width: max-content;
}

.sec-head.has-arrow.center {
  margin: 0 auto !important;
}

.sec-head.has-arrow img {
  position: absolute;
  right: 0;
  top: 50%;
  width: 100px;
  transform: translateX(105%);
}

.sec-head.sm h2 {
  font-size: 32px;
}

.sec-head.center h2,
.sec-head.center p {
  text-align: center;
}

.sec-head h2 {
  font-size: 42px;
  line-height: 120%;
  color: var(--dark);
  font-family: "migoextrabold", sans-serif;
}

.sec-head h2 span {
  font-family: "migoextrabold", sans-serif;
  color: var(--green);
}

.sec-head h3 span {
  font-family: "migoextrabold", sans-serif;
  color: var(--green);
}

.sec-head p.sub {
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 0;
}

.sec-head.white p,
.sec-head.white h2 {
  color: white;
}

.sec-head.white p span,
.sec-head.white h2 span {
  color: var(--green);
}

.sec-head.blue h2 {
  color: var(--01);
}

.sec {
  padding: 5em 0px;
  position: relative;
  overflow: hidden;
}

.blue-sec {
  background: var(--blue);
}

/* firefox */
.custom-scrollbar {
  scrollbar-width: thin;
  scrollbar-color: var(--knightblue) transparent;
}

.custom-scrollbar:-webkit-scrollbar {
  width: 11px;
}

.custom-scrollbar:-webkit-scrollbar-track {
  background: transparent;
}

.custom-scrollbar:-webkit-scrollbar-thumb {
  background-color: var(--knightblue);
  border-radius: 6px;
  border: 3px solid transparent;
}

/* webkit browsers */
.custom-scrollbar::-webkit-scrollbar,
.custom-scrollbar::-webkit-scrollbar-thumb {
  height: 26px;
  border-radius: 13px;
  background-clip: padding-box;
  border: 10px solid transparent;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
  box-shadow: inset 0 0 0 10px;
}

p.para {
  font-size: 16px;
  color: var(--text);
  line-height: 160%;
}

p.para.white {
  color: white;
}

.quote {
  font-family: "Libre Caslon Text", serif;
  font-size: 16px;
}

.quote span {
  margin-top: 25px;
  display: inline-block;
  font-weight: 500;
  font-size: 16px;
  color: black;
}

.blue-gr {
  background: url(../images/blue-gr.jpg) top/cover no-repeat;
}

.cn-l {
  position: relative;
}

.cn-l li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0px;
}

.cn-l li a span {
  color: white;
  text-decoration: underline;
}

.cn-l li a img {
  width: 28px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-70 {
  margin-top: 70px;
}

.mt-80 {
  margin-top: 80px;
}

.mt-90 {
  margin-top: 90px;
}

.mt-100 {
  margin-top: 100px;
}

.mt-110 {
  margin-bottom: 110px;
}

.mt-120 {
  margin-bottom: 120px;
}

.mt-130 {
  margin-bottom: 130px;
}

.mt-140 {
  margin-bottom: 140px;
}

.mt-150 {
  margin-bottom: 150px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-70 {
  margin-bottom: 70px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mb-90 {
  margin-bottom: 90px;
}

.mb-100 {
  margin-bottom: 100px;
}

.mb-110 {
  margin-bottom: 110px;
}

.mb-120 {
  margin-bottom: 120px;
}

.mb-130 {
  margin-bottom: 130px;
}

.mb-140 {
  margin-bottom: 140px;
}

.mb-150 {
  margin-bottom: 150px;
}

.pt-10 {
  padding-top: 10px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-30 {
  padding-top: 30px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-60 {
  padding-top: 60px;
}

.pt-70 {
  padding-top: 70px;
}

.pt-80 {
  padding-top: 80px;
}

.pt-90 {
  padding-top: 90px;
}

.pt-100 {
  padding-top: 100px;
}

.pt-110 {
  padding-bottom: 110px;
}

.pt-120 {
  padding-bottom: 120px;
}

.pt-130 {
  padding-bottom: 130px;
}

.pt-140 {
  padding-bottom: 140px;
}

.pt-150 {
  padding-bottom: 150px;
}

.pb-10 {
  padding-bottom: 10px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pb-90 {
  padding-bottom: 90px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pb-110 {
  padding-bottom: 110px;
}

.pb-120 {
  padding-bottom: 120px;
}

.pb-130 {
  padding-bottom: 130px;
}

.pb-140 {
  padding-bottom: 140px;
}

.pb-150 {
  padding-bottom: 150px;
}


/* ========= NAVBAR ========= */
.navbar {
  position: relative !important;
  top: 0;
  z-index: 999;
  width: 100%;
  background: white;
  padding: 12px 3em 8px !important;
  transition: 0.5s ease;
  display: flex;
  align-items: center !important;
}

/* Navbar when scrolled */
.navbar.scrolled {
  position: fixed !important;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.nav-inner {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  position: relative !important;
  width: 100%;
}

.nav-logo {
  display: block;
  position: absolute;
  text-decoration: none;
  width: 120px;
  top: 0;
  left: 0;
}

.nav-logo img{
  width: 100%;
  height: auto;
}

/* .navbar.scrolled .nav-logo img {
    width: 135px !important;
} */

.nav-inner .r-part {
  display: flex;
  align-items: center;
  gap: 30px;
}


.nav-links {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  height: fit-content;
}

.nav-links a.nav-link {
  font-family: "migobold", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 100%;
  text-decoration: none;
  color: var(--dark);
  transition: 0.3s ease;
}

.nav-links a.nav-link:hover,
.nav-links a.active {
  color: var(--main-green);
}


/* Dropdown */
.dropdown-li {
  position: relative;
}

.dropdown-li > a.nav-link {
  display: flex;
  flex-direction: row;
  gap: 0px;
  align-items: center;
  border-radius: 14px;
}

.dropdown-li.open > a.nav-link {
  color: var(--main-green);
}

/* Icon rotation */
a.nav-link .dropdown {
  transition: 0.3s ease;
  flex-shrink: 0;
  font-size: 12px;
}

.dropdown-li.open .dropdown {
  transform: rotate(180deg) translateY(-1px);
}

/* Dropdown wrapper */
.dropdown-li .dropdown-wrapper {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(55px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  background-color: var(--light);
  border-radius: 15px;
  padding: 20px 15px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.4s ease;
  z-index: 999;
  border: 1px solid var(--text);
}

.dropdown-li.open .dropdown-wrapper {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(25px);
}

/* Sub menu */
ul.sub-menu {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding-left: 0 !important;
  margin-bottom: 0 !important;
}

/* Dropdown links */
.dropdown-grid a.nav-link {
  font-weight: 500;
  font-size: 15px;
  color: var(--dark);
  padding: 12px 20px 12px 15px;
  border-radius: 8px;
  min-width: max-content;
}

.dropdown-grid a.nav-link:hover {
  color: var(--light);
  background-color: var(--main-green);
}


.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--orange);
  padding: 8px 3em;
}

.top-bar .con-l {
  display: flex;
  align-items: center;
}

.top-bar .con-l li a {
  position: relative;
  display: flex;
  align-items: center;
  color: white;
  font-weight: 500;
  font-size: 14px;
}

.top-bar .con-l li a img {
  width: 20px;
  margin-right: 10px;
}

.top-bar .con-l li a span {
  color: white;
  font-weight: 500;
  font-size: 14px;
}

.top-bar .soc-list {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-nav {
  width: 100%;
  height: 100vh;
  overflow-x: hidden;
  overflow-y: auto;
  background: #97B641;
  padding: 0em 0px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  transform: translateX(-100%);
  opacity: 0;
  transition: 0.3s ease-in-out;
}

.mobile-nav .menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1em 1em;
  padding-right: 2em;
  /* margin-bottom: 2em; */
  position: sticky;
  top: 0;
  z-index: 88;
  background: var(--blue);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-nav .menu-head .logo {
  display: block;
  width: 100px;
}

.mobile-nav .menu-head .logo img {
  width: 100%;
}

.mobile-nav.active {
  opacity: 1;
  transform: translateX(0px);
}

.mobile-nav .menu-close {
  z-index: 5;
  background: transparent;
  outline: none !important;
  border: none !important;
  box-shadow: none !important;
}

.mobile-nav .menu-close img {
  width: 15px;
  height: 15px;
}

.mobile-nav .nav-list li a {
  color: white;
}

.mobile-nav .nav-list .drop-mega {
  padding-top: 0.5em;
  padding-left: 1.2em;
}

.mobile-nav .nav-list .srv-link {
  padding: 12px 1.5em !important;
  display: block;
  color: white !important;
  font-size: 14px;
}

.mobile-nav .nav-list .srv-link .ic {
  display: none !important;
}

.mobile-nav .nav-list>li>a {
  padding: 15px 1.5em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-nav .nav-list>li>a span {
  color: white;
  font-size: 14px;
  font-weight: 500;
}

.menu-btn {
  background: transparent;
  outline: none !important;
  border: none !important;
  box-shadow: none !important;
  display: none;
  margin-top: 25px;
}

.menu-btn img {
  width: 30px;
}

.main-banner {
  position: relative;
  background: url(../images/home-banner.webp) center/cover no-repeat;
}

.main-banner.wakao-banner {
  background: var(--green);
  animation: bgChange 10s linear infinite;
  position: relative;
  overflow: hidden;
}

.main-banner.wakao-banner>img {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%) scale(2.3);
  animation: rotate 35s linear infinite;
}

.main-banner.wakao-banner:after {
  display: none;
}

.main-banner.wakao-banner .banner-content {
  align-items: flex-start;
}

/*.main-banner:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
 background: rgba(0, 0, 0, 0.65);
}*/
.main-banner .wakoa-ld-img {
  width: 100%;
  animation: float 2s ease-in-out infinite alternate;
}

.main-banner .wakoa-ld-img img {
  width: 100%;
}

@keyframes rotate {
  0% {
    transform: translateY(-50%) scale(2.3) rotate(0deg);
  }

  100% {
    transform: translateY(-50%) scale(2.3) rotate(360deg);
  }
}

@keyframes float {
  0% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(10px);
  }
}

.banner-content {
  height: calc(100vh - 75px);
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 5;
}

.banner-content .main-btn {
  display: inline-block;
}

.banner-content h1 {
  margin-bottom: 0;
  font-family: "migoblack", sans-serif;
  font-size: 62px;
  color: white;
}

.banner-content p {
  margin-bottom: 0;
  color: white;
}

.abt-img {
  width: 100%;
}

.abt-img img {
  width: 100%;
}

.cat-img {
  width: 100%;
  display: flex;
  justify-content: center;
}

.cat-img img {
  border-radius: 20px;
  overflow: hidden;
  width: 65%;
}

.brands-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 3em;
}

.brands-grid .sprig-wrapper {
  grid-column: span 3;
  grid-row: span 2 !important;
}

.brands-grid .sprig-wrapper .l-part {
  height: 50% !important;
}

.brands-grid .sprig-wrapper .r-part {
  height: 150% !important;
}

.brands-grid .wakoa-wrapper {
  grid-column: span 3;
  grid-row: span 3;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 1.8em 2em !important;
}

.brands-grid .wakoa-wrapper .l-part {
  flex: 1 1 auto;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.brands-grid .wakoa-wrapper .l-part>img {
  width: 130px;
}

.brands-grid .wakao-products {
  width: 100%;
  width: 100%;
  height: 100%;

}

.brands-grid .wakao-products img {
  width: 100%;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom;
}

.bb-wrapper {
  position: relative;
  border-radius: 24px;
  border: 1px solid rgba(30, 30, 30, 0.25);
  padding: 15px;
  transition: 0.2s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  cursor: pointer;
  display: block;
}

.bb-wrapper:nth-child(5) {
  padding-top: 0;
}

/*
.bb-wrapper:nth-child(6) {
  grid-column: span 2;
}*/
.bb-wrapper:hover {
  background: #F9FDF7 !important;
  border: 1px solid #4C9134;
}

.bb-wrapper:hover span img {
  transform: translateX(10px) !important;
}

.bb-wrapper:not(.wakoa-wrapper) {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

.swiper-slide {
  height: auto;
}

.bb-wrapper.style-2 {
  padding-left: 20px;
  padding-right: 20px;
  height: 100%;
}

.bb-wrapper.style-2 .dt h3 {
  font-size: 20px;
}

.bb-wrapper.style-2 .dt {
  margin-top: 20px;
}

.bb-wrapper.style-2>img {
  height: 80px;
  width: 100%;
  -o-object-position: left center;
  object-position: left center;
  -o-object-fit: contain;
  object-fit: contain;
  margin-top: 10px;
}

.bb-wrapper:not(.style-2):not(:nth-child(5))>img {
  height: 80px;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: left;
  object-position: left;
}

.bb-wrapper:not(.style-2):nth-child(5)>img {
  height: 100px;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: top;
  object-position: top;
}

.bb-wrapper>img {
  width: 130px;
  margin-bottom: 10px;
}

.bb-wrapper .dt h3 {
  color: var(--dark);
  font-family: "migobold", sans-serif;
  font-size: 28px;
  width: max-content;
}

.bb-wrapper span {
  display: flex;
  align-items: center;
  max-width: -moz-max-content;
  max-width: max-content;
  gap: 5px;
}

.bb-wrapper span span {
  color: var(--main-green);
}

.bb-wrapper span img {
  transition: 0.4s ease-in-out;
}

.where-swiper {
  padding-bottom: 3px;
}

.partner-wrapper {
  position: relative;
  background: #ffffff !important;
  padding: 3.5em 3em;
}

.partner-swiper {
  margin-top: 3em;
}

.partner-swiper img,
.partner-swiper-2 img {
  height: 115px;
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
}

.main-ft {
  position: relative;
  width: 100%;
  background: url(../images/ft-bg.jpg) center/cover no-repeat;
  padding-top: 8em;
}

.main-ft .ft-inner {
  position: relative;
  background: white;
}

.main-ft .ft-inner .ft-fl {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.main-ft .ft-inner .ft-fl .l-part,
.main-ft .ft-inner .ft-fl .r-part {
  padding: 5em 3.5em;
}

.main-ft .ft-inner .ft-fl .l-part {
  border-right: 1px solid rgba(0, 0, 0, 0.2);
}

.ft-head {
  text-align: center;
  font-size: 42px;
  color: var(--dark);
  font-family: "migoextrabold", sans-serif;
  margin-bottom: 1.5em;
}

.ft-head span {
  color: var(--green);
  font-family: "migoextrabold", sans-serif;
}

.com-name {
  text-align: center;
  margin-bottom: 2em;
}

.com-name h3 {
  font-family: "migoextrabold", sans-serif;
  margin-bottom: 5px;
  color: var(--dark);
}

.com-name p {
  font-size: 16px;
  color: var(--dark);
}

.ft-con-list {
  position: relative;
  max-width: 350px;
  margin: 0 auto;
  margin-bottom: 2em !important;
}

.ft-con-list li a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 0px;
  gap: 13px;
}

.ft-con-list li a .icc {
  position: relative;
  width: 65px;
  height: 65px;
  min-width: 65px;
  min-height: 65px;
  display: flex;
  border-radius: 50%;
  background: var(--green);
  align-items: center;
  justify-content: center;
}

.ft-con-list li a .icc img {
  width: 25px;
}

.ft-con-list li a span {
  color: var(--dark);
}

.deco-text {
  text-align: center;
  color: var(--green);
  margin: 0 auto;
  max-width: 450px;
}

.form-group {
  width: 100%;
}

.form-group .inp-grp {
  width: 100%;
  margin-bottom: 25px;
}

.form-group .inp-grp input,
.form-group .inp-grp textarea,
.form-group .inp-grp select {
  width: 100%;
  background: #F5F5F5;
  padding: 15px 20px;
  border-radius: 32px;
  outline: none !important;
  border: none;
}

.form-group .inp-grp textarea {
  resize: vertical;
  min-height: 140px;
  max-height: 140px;
  overflow-y: scroll;
}

.form-group .inp-grp input::-moz-placeholder,
.form-group .inp-grp textarea::-moz-placeholder,
.form-group .inp-grp select::-moz-placeholder {
  color: rgba(0, 0, 0, 0.65);
  font-size: 16px;
}

.form-group .inp-grp input::placeholder,
.form-group .inp-grp textarea::placeholder,
.form-group .inp-grp select::placeholder {
  color: rgba(0, 0, 0, 0.65);
  font-size: 16px;
}

.form-group .inp-grp input.error,
.form-group .inp-grp textarea.error,
.form-group .inp-grp select.error {
  border: 1px solid rgb(167, 16, 16);
  background: rgb(248, 243, 243);
  color: rgb(167, 16, 16);
  animation: shake 0.7s cubic-bezier(0.455, 0.03, 0.515, 0.955) forwards;
}

@keyframes shake {
  0% {
    transform: translateX(0px) rotate(0deg);
  }

  30% {
    transform: translateX(-8px) rotate(0deg);
  }

  45% {
    transform: translateX(8px) rotate(0deg);
  }

  60% {
    transform: translateX(-8px) rotate(0deg);
  }

  75% {
    transform: translateX(8px) rotate(0deg);
  }

  100% {
    transform: translateX(0px) rotate(0deg);
  }
}

label.error {
  display: none !important;
  color: rgb(167, 16, 16);
  font-size: 14px;
  margin-top: 5px;
  margin-bottom: 0 !important;
}

.ft-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 2.5em;
}

.ft-bottom p {
  margin-bottom: 0;
}

.soc-li {
  display: flex;
  align-items: center;
  gap: 12px;
  overflow-x: hidden;
  position: relative;
}

.soc-li li a {
  display: inline-block;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(30, 30, 30, 0.45);
  transition: 0.2s ease-in-out;
}

.soc-li li a:hover {
  background: var(--dark);
}

.soc-li li a:hover img {
  filter: invert(100%) brightness(1000%);
}

.ft-map {
  width: 100%;
  padding-top: 30%;
  position: relative;
}

.ft-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.wk-list {
  position: relative;
}

.wk-list li {
  position: relative;
  padding: 15px 0px;
  padding-left: 45px;
  font-size: 18px;
}

.wk-list li:after {
  content: "";
  position: absolute;
  width: 35px;
  height: 35px;
  background: url(../images/tick.svg) center/contain no-repeat;
  left: 0;
  top: 14px;
}

.wk-list-cat li:after {
  background: url(../images/tick.png) center/contain no-repeat !important;
}

.wakao-abt {
  position: relative;
  background: url(../images/dot-bg.jpg) center/cover no-repeat;
}

.wakao-pr-swiper {
  margin-top: 2.5em;
}

.wakao-pr-swiper .swiper-slide {
  height: auto;
}

.wk-pr-card {
  position: relative;
  height: 100%;
}

.wk-pr-card:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 55%;
  border-radius: 32px;
  background-color: var(--green);
}

.wk-pr-card .det {
  position: relative;
  z-index: 5;
  padding: 0px 1.5em 1em 1.5em;
}

.wk-pr-card .det h2 {
  font-family: "migoextrabold", sans-serif;
  text-align: center;
  font-size: 24px;
  color: white;
}

.wk-pr-card .det p {
  text-align: center;
  color: white;
}

.wk-pr-card .pr {
  width: 100%;
  padding-top: 110%;
  position: relative;
  z-index: 5;
  margin-bottom: 1.3em;
}

.wk-pr-card .pr img {
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: bottom center;
  object-position: bottom center;
}

.icc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  margin-top: 3em;
}

.icc-grid .icc-wrap {
  background: #F4F4F2;
  border-radius: 32px;
  max-width: 300px;
  margin: 0 auto;
  padding: 3em 2em;
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: flex-start;
  transition: 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

.icc-grid .icc-wrap:hover {
  background: white;
  filter: drop-shadow(0px 4px 35px rgba(16, 35, 10, 0.18));
}

.icc-grid .icc-wrap:nth-child(2) {
  margin-top: 4em;
}

.icc-grid .icc-wrap img {
  width: 130px;
  margin-bottom: 30px;
}

.icc-grid .icc-wrap p {
  text-align: center;
  color: var(--text);
  font-size: 16px;
  margin-bottom: 0;
}

.why-sec {
  position: relative;
  background: url(../images/line.svg) center/contain no-repeat;
}

.how-to-cook-sec {
  position: relative;
  background: url(../images/ft-bg.jpg) center/cover no-repeat;
}

.cook-swiper {
  margin-top: 4em;
  padding-bottom: 30px;
}

.cook-vid-card {
  width: 100%;
  background: white;
  border-radius: 24px;
  overflow: hidden;
}

.cook-vid-card .dtt {
  padding: 1.5em 1em;
}

.cook-vid-card .dtt h3 {
  margin-bottom: 0;
  text-align: center;
  font-size: 20px;
  color: var(--dark);
}

.cook-vid-card .vid-cover {
  width: 100%;
  padding-top: 60.24%;
  position: relative;
  border-radius: 24px;
}

.cook-vid-card .vid-cover>img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.cook-vid-card .vid-cover video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.cook-vid-card button.play-btn {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  top: 50%;
  width: 65px;
  height: 65px;
  display: flex;
  background: var(--green);
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  outline: none;
  box-shadow: none;
  border: none;
  z-index: 5;
  transition: 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

.cook-vid-card button.play-btn:hover {
  transform: translate(-50%, -50%) scale(1.15);
  box-shadow: 0px 0px 0px 12px rgba(151, 182, 65, 0.35);
}

.cook-vid-card .vid-cover button img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.gallery-area {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  grid-auto-flow: dense;
  margin-top: 3.5em;
}

.gallery-area .gal-item {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  padding-top: 100%;
}

.gallery-area .gal-item:nth-child(3) {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-area .gal-item:nth-child(4) {
  grid-column: span 2;
  padding-top: 50%;
}

.gallery-area .gal-item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.where-swiper {
  margin-top: 3em;
}

.test-img {
  width: 100%;
}

.test-img img {
  width: 100%;
}

.test-card {
  padding: 1em 0px;
  opacity: 0.5;
  transition: 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

.test-card>img {
  margin-bottom: 15px;
}

.test-card p.para {
  font-size: 20px;
  font-family: "migobold", sans-serif;
  margin-bottom: 2em;
}

.test-card .dtt h3 {
  font-size: 20px;
  margin-bottom: 5px;
}

.test-card .dtt p {
  margin-bottom: 0;
  font-size: 16px;
  color: var(--text);
}

.swiper-slide.swiper-slide-active .test-card {
  opacity: 1 !important;
}

.swiper-pagination span {
  width: 12px;
  height: 12px;
  background: var(--green);
}

.test-swiper {
  padding-bottom: 25px;
}

.test-swiper .swiper-pagination {
  text-align: left;
  justify-content: flex-start;
  bottom: 0px;
}

.insta-swiper {
  margin-top: 3em;
}

.post {
  width: 100%;
  position: relative;
  aspect-ratio: 1 / 1;
}

.post>img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.wk-pr-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: 15px;
  flex-direction: row-reverse;
  margin-top: 1.5em;
}

.wk-pr-nav button {
  outline: none;
  border: none;
  background: transparent;
}

.wk-pr-nav button img {
  width: 55px;
}

.state-bar {
  display: block;
  width: 100%;
  padding: 10px 15px;
}

.state-bar.success-bar {
  background: rgb(250, 255, 250);
  border: 1px solid green;
  color: green;
}

.state-bar.error-bar {
  background: rgb(255, 250, 250);
  border: 1px solid red;
  color: red;
}

.youtube-video {
  position: relative;
  margin-top: 60px;
  width: 100%;
  aspect-ratio: 9/16;
  /*max-height: 400px;*/
  /*height: 250px;*/
  overflow: hidden;
  border-radius: 12px;
  z-index: 2;
  /*margin-bottom: 25px;*/
}

.youtube-video .poster {
  position: absolute;
  z-index: 1;
  width: 100%;
  left: 0;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.youtube-video img.play-btn {
  width: 100px;
  aspect-ratio: 1/1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  cursor: pointer;
}

.youtube-video iframe {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
  object-position: center;
}

.yt-thumb-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.youtube-video:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #101820;
  opacity: 0.55;
  z-index: 2;
}

.youtube-video.remove-after:after {
  display: none;
}

.insta-ovr {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: 0.3s ease-in-out;
  opacity: 0;
}

.post:hover .insta-ovr {
  opacity: 1;

}

.insta-ovr p {
  word-wrap: anywhere;
  line-height: 100%;
  width: 100%;
  text-align: center;
  line-height: 120%;
  padding: 0px 1em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-top: 10px;
  margin-bottom: 0px;
  color: white;
}

.insta-ovr img {
  width: 42px;
}

.float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse-animation 2s infinite;
}

.float:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #25d366;
  border-radius: 50%;
  transition: 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  box-shadow: 2px 2px 3px #999;
}

.float:hover:after {
  transform: scale(1.35);
}

.float:hover i {
  color: white;
  transform: scale(1.15);
}

.float i {
  position: relative;
  z-index: 5;
  transition: 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

.my-float {
  margin-top: 16px;
}

@keyframes pulse-animation {
  0% {
    box-shadow: 0 0 0 0px rgba(37, 211, 102, 0.5);
  }

  100% {
    box-shadow: 0 0 0 35px rgba(37, 211, 102, 0);
  }
}

.cus-modal .modal-dialog {
  max-width: 800px;
}

.cus-modal .modal-content {
  border: none !important;
  border-radius: 32px !important;
}

.cus-modal .modal-body {
  padding: 1em !important;
}

.cus-modal .modal-body .close {
  outline: none !important;
  border: none !important;
  background: transparent !important;
  position: absolute;
  top: 1em;
  right: 1em;
  z-index: 8;
}

.cus-modal .modal-body .close img {
  width: 35px;
}

.br-img {
  width: 100%;
  position: relative;
  padding-top: 110%;
  border-radius: 20px;
  overflow: hidden;
}

.br-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.br-con {
  padding: 2em 0px;
}

.br-con .para {
  margin-bottom: 0;
}

@media(min-width: 600px) {
  .br-con {
    padding: 4em 1.5em;
  }

  .br-con .para {
    overflow-x: hidden;
    overflow-y: auto;
    max-height: 300px;
  }
}

/*# sourceMappingURL=main.css.map */

.red-btn {
  background: white;
  padding: 22px 40px;
  color: black;
}

.red-btn img {
  height: 25px;
  filter: invert(0%);
  margin-left: 5px;
}

.red-btn span {
  font-size: 21px;
  line-height: 25px;
  position: relative;
  display: inline-block;
  transform: translateY(0x);
  color: black;
}

.ld-img {
  position: relative;
  width: 100%;
  /* max-width: 500px; */
}

.ld-img .circ {
  position: relative;
}

.ld-img .circ:after {
  content: '';
  position: absolute;
  top: 45px;
  left: 0;
  width: 100%;
  min-height: 100px;
  padding-top: 80%;
  background: url(../images/arc.svg) center/contain no-repeat;
}

.ld-img .circ>img {
  display: block;
  margin: 0 auto;
  width: 130px;
  position: relative;
  z-index: 5;
}

.ld-im {
  position: relative;
  background: #eaeaea;
  padding-top: 114%;
  border-radius: 42px;
  overflow: hidden;
}

.ld-im img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.ld-swiper {
  margin-top: 1.5em;
  padding-bottom: 30px;
}

.ld-swiper .swiper-pagination .swiper-pagination-bullet {
  background: white !important;
}

.ld-swiper .swiper-pagination {
  bottom: 0px !important;
}

.sub-head {
  font-size: 22px;
}

.thb-banner {
  background: #F1AA48 !important;
}

.wk-banner:nth-child(2) {
  border-bottom-left-radius: 10em;
}

.wk-banner:nth-child(1) {
  border-bottom-right-radius: 10em;
}

.wk-banner:nth-child(3) {

  border-top-right-radius: 10em;
}

.td-banner {
  background: #343030 !important;
}

.wh-bx {
  display: block;
}

.wh-bx img {
  display: block;
  margin: 0 auto;
  margin-bottom: 20px;
}

.wh-bx h4 {
  color: black;
}

.wk-banner {
  padding: 5em 0px;
}

.wk-banner .banner-content {
  height: auto;
}

@media(max-width: 600px) {
  .wk-banner:nth-child(2) {
    border-bottom-left-radius: 5em;
  }

  .wk-banner:nth-child(1) {
    border-bottom-right-radius: 5em;
  }

  .wk-banner:nth-child(3) {

    border-top-right-radius: 5em;
  }
}

.pr-card {
  position: relative;
  padding: 1em;
  border-radius: 32px;
  border: 1px solid white;
}

.pr-img {
  position: relative;
  padding-top: 100%;
  border-radius: 26px;
  overflow: hidden;
  margin-bottom: 10px;
}

.pr-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.pr-det h3 {
  color: white;
  font-size: 20px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.pr-det .price {
  font-size: 28px;
  color: white;
  font-weight: 800;
}

.pr-det .red-btn {
  width: 100%;
  text-align: center;
}

.pr-det .red-btn span {
  font-size: 16px;
}

.pr-det .red-btn img {
  height: 18px;
}

.row-gap-25 {
  row-gap: 25px;
}

.sprig {
  color: #254802 !important;
}

.sprig-bg {
  background-color: #254802 !important;
}

.white {
  color: white !important;
}


.accordion-button:not(.collapsed) {
  background: var(--green);
  color: var(--dark);
}

.accordion-button:not(.collapsed)::after {
  fill: #fff !important;
}

.accordion-button:not(.collapsed)::after {
  background-image: var(--bs-accordion-btn-icon);
}

.accordion-button:focus {
  z-index: 3;
  border-color: var(--main-green);
  outline: 0;
  box-shadow: var(--main-green);
}

.accordion {
  --bs-accordion-body-padding-x: 3rem;
  --bs-accordion-body-padding-y: 1.5rem;
}

.accordion-item:first-of-type .accordion-button {
  border-top-left-radius: 20px !important;
  border-top-right-radius: 20px !important;
}

.accordion-item p:last-child {
  margin-bottom: 0;
}

.accordion {
  --bs-accordion-border-radius: 22px;
  --bs-accordion-inner-border-radius: 22px;
  --bs-accordion-border-width: 1px;
  --bs-accordion-border-color: var(--green)
}

.accordion-button {
  color: var(--main-green);
  padding: 1.5rem 3rem;
}

/* mobile nav-dropdown */

.has-drop-icon>a {
  position: relative;
}

.has-drop-icon>a::before {
  position: absolute;
  content: '';
  width: 12px;
  height: 12px;
  top: 50%;
  right: 1em;
  transform: translateY(-60%);
  background: url(../images/plus.svg) center/contain no-repeat;
}

.has-drop-icon>a:not(.collapsed)::before {
  background: url(../images/minus.svg) center/contain no-repeat;
}

/* .acc .card-header button.collapsed::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 1.5em;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  background: url(../images/plus.svg) center/contain no-repeat;
  pointer-events: none;
} */

/* .accordion-button:not(.collapsed) {
  background: var(--green);
  color: #fff;
}

.accordion-button:not(.collapsed)::after {
  fill: #fff !important;
}

.accordion-button:not(.collapsed)::after {
  background-image: var(--bs-accordion-btn-icon);
} */

.mob-drop-items {
  background: var(--main-green);
}

.mobile-nav .nav-list .mob-dropdown>li>a {
  padding: 15px 1.5em 15px 3em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
}



/* blogs page */
.blogs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.blog-card {
  padding: 15px;
  border-radius: 12px;
  background-color: white;
  display: flex;
  flex-direction: column;
  gap: 30px;
  height: 100%;
  box-shadow: 0 3px 9px 3px rgba(0, 0, 0, 0.1);
}

.blog-card .img {
  border-radius: 12px;
  overflow: hidden;
  width: 100%;
  min-height: 190px;
  height: 190px;
}

.blog-card .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: 0.3s ease;
}

.blog-card:hover .img img {
  transform: scale(1.05);
}

.blog-card .card-con {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}

.blog-card .card-con h4 {
  font-family: "migoextrabold", sans-serif;
  font-size: 21px;
  color: var(--green);
  margin-bottom: 1rem;
}

.blog-card .card-con>p {
  font-size: 16px;
  color: var(--text);
  line-height: 160%;
}

.blog-card .main-btn {
  width: fit-content;
}



/* blogs page — search */
.blog-search-wrap {
  position: relative;
  max-width: 500px;
  margin: 0 auto 3rem;
}

.blog-search {
  position: relative;
  display: flex;
  align-items: center;
  background: white;
  border-radius: 100px;
  box-shadow: 0 3px 9px 3px rgba(0, 0, 0, 0.1);
  padding: 6px 6px 6px 22px;
}

.blog-search i.fa-magnifying-glass {
  color: var(--text);
  font-size: 15px;
  margin-right: 12px;
}

.blog-search input[type="text"] {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-size: 15px;
  color: var(--dark);
  font-family: "migobold", sans-serif;
}

.blog-search input[type="text"]::placeholder {
  color: var(--text);
  opacity: 0.7;
}

.blog-search button[type="submit"] {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  outline: none;
  background: var(--main-green);
  color: white;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.3s ease;
}

.blog-search button[type="submit"]:hover {
  background: var(--green);
}

.blog-search-results {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  z-index: 20;
  background: white;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  max-height: 320px;
  overflow-y: auto;
}

.blog-search-results.is-open {
  display: block;
}

.blog-search-item {
  display: block;
  padding: 12px 22px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: background 0.2s ease;
}

.blog-search-item:last-child {
  border-bottom: none;
}

.blog-search-item .title {
  font-size: 14px;
  color: var(--dark);
  font-family: "migobold", sans-serif;
}

.blog-search-item:hover,
.blog-search-item.is-active {
  background: rgba(151, 182, 65, 0.12);
}

.blog-search-empty {
  padding: 14px 22px;
  font-size: 14px;
  color: var(--text);
}

.no-posts {
  text-align: center;
  color: var(--text);
  font-size: 16px;
  grid-column: 1 / -1;
}

/* blogs page — pagination */
.pagination-wrap {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
}

.pagination {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.pagination-item {
  display: flex;
}

.pagination-item span,
.pagination-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 10px;
  border-radius: 50%;
  background: white;
  color: var(--dark);
  font-size: 15px;
  font-family: "migobold", sans-serif;
  box-shadow: 0 3px 9px 3px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.pagination-item a:hover {
  background: var(--green);
  color: white;
}

.pagination-item span.current {
  background: var(--main-green);
  color: white;
}

.pagination-item span.dots {
  box-shadow: none;
  background: transparent;
}

@media (max-width: 600px) {
  .blog-search-wrap {
    max-width: 100%;
    margin-bottom: 2rem;
  }

  .pagination-item span,
  .pagination-item a {
    min-width: 36px;
    height: 36px;
    font-size: 14px;
  }
}



/* blog inner page */
.blog-sec {
  padding-top: 5rem;
}

.blog-top {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.blog-title {
  margin-bottom: 0;
  font-family: "migoblack", sans-serif;
  font-size: 45px;
  color: var(--green);
}

.date {
  width: 100%;
  text-align: end;
  color: var(--text);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 0;
}

.blog-sec .img {
  border-radius: 20px;
  overflow: hidden;
  width: 100%;
  margin-bottom: 3rem;
  box-shadow: 0px 0px 23px 15px rgba(0, 0, 0, 0.1);
}

.blog-sec .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* .blog-con h4 {
  font-family: "migoblack", sans-serif;
  font-size: 25px;
  font-weight: 500;
  color: var(--green);
} */

.blog-sec ul li span {
  color: var(--green);
}

.blog-sec ul li {
  list-style: disc !important;
}

.blog-sec li::marker {
  color: var(--green) !important;
}

.blog-sec ul {
  padding-left: 1.5rem !important;
  font-size: 16px;
  color: var(--text);
  line-height: 160%;
  margin-bottom: 1rem !important;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.blog-sec h2, .blog-sec h3, .blog-sec h4, .blog-sec h5 {
  margin-top: 2rem;
  margin-bottom: 0.5rem;
  color: var(--green);
  font-weight: 600;
}

.blog-sec .para {
  margin-bottom: 1rem;
}

.blog-con p {
  font-size: 16px;
  color: var(--text);
  line-height: 160%;
  margin-bottom: 1rem;
}

.blog-sec b,
.blog-sec strong {
  color: var(--green);
}

.blog-sec strong {
  font-weight: 700;
}

.blog-sec .table,
.blog-sec .wp-block-table {
  border: 3px solid #4A4A4A;
  overflow: hidden;
  width: 100%;
  border-radius: 8px;
}

.wp-block-table thead {
  border-bottom: none;
}

.blog-sec table {
  background: #F9FDF7;
  font-size: 16px;
  color: var(--text);
  line-height: 160%;
  width: 100%;
  border-radius: 10px;
  /* overflow: hidden; */
}

.blog-sec thead {
  background-color: var(--green);
  color: #fff;
  text-align: center;
}

.blog-sec thead th {
  font-size: 26px;
  border: 2px solid #4A4A4A;
  padding: 17px 15px;
  border-top: none;
}


.blog-sec tbody th {
  background-color: var(--green);
  color: #fff;
  font-size: 17px;
  padding: 17px 17px;
  border: 2px solid #4A4A4A;
}

.blog-sec tbody td {
  text-align: center;
  padding: 10px 7px;
  border: 2px solid #4A4A4A;
}

.blog-sec tbody tr:last-child th,
.blog-sec tbody tr:last-child td {
  border-bottom: none;
}

.blog-sec tbody tr th:first-child,
.blog-sec tbody tr td:first-child,
.blog-sec thead th:first-child {
  border-left: none;
}

.blog-sec tbody tr th:last-child,
.blog-sec tbody tr td:last-child,
.blog-sec thead th:last-child {
  border-right: none;
}





/* home - about-us */

.abt-con h2 {
  font-family: "migoblack", sans-serif;
  font-size: 34px;
  color: var(--dark);
}

.abt-con h2>span {
  font-family: "migoextrabold", sans-serif;
  color: var(--green);
}


/* home cat and conctact blogs -sec */
.cat-card {
  background-color: var(--green);
  overflow: hidden;
  border-radius: 34px;
  text-align: center;
  height: 100% !important;
  transition: 0.3s ease;
}

.cat-card:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.cat-card img {
  width: 100%;
  height: auto;
}

.desc {
  position: relative;
  z-index: 5;
  padding: 1.5em;
}

.desc h2 {
  font-family: "migoextrabold", sans-serif;
  text-align: center;
  font-size: 24px;
  color: white;
}

.desc p {
  text-align: center;
  color: white;
}

.desc .red-btn {
  padding: 10px 40px;
}

.desc .red-btn span {
  color: var(--green);
}

.contact-sec {
  background-color: var(--green) !important;
  padding: 50px 0px;
  margin-bottom: 5em;
}

.contact-sec p {
  color: white !important;
  font-size: 19px !important;
}

.blogs-sec {
  background-color: var(--green) !important;
}

.blogs-sec .blog-card .card-con>h4 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.blogs-sec .blog-card .card-con>p {
  color: #4A4A4A !important;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ===== THANK YOU PAGE ===== */
.thankyou-sec {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--light);
}

.thankyou-sec .ty-wrap {
  max-width: 560px;
  padding: 0 1.5em;
  margin: 0 auto;
}

.thankyou-sec .ty-icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--main-green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5em;
}

.ty-icon svg {
  width: 42px;
  height: 42px;
  stroke: white;
  stroke-width: 3;
  fill: none;
}

.thankyou-sec h2 {
  font-family: "migoextrabold", sans-serif;
  font-size: 42px;
  color: var(--dark);
  margin-bottom: 0.5em;
}

.thankyou-sec h2 span {
  font-family: "migoextrabold", sans-serif;
  color: var(--green);
}

.thankyou-sec .para {
  margin-bottom: 2em;
}


/* ===== FORM SUBMIT LOADER ===== */
.form-loader-overlay {
  position: fixed;
  inset: 0;
  background: rgba(249, 249, 249, 0.92);
  /* var(--light) tinted, not near-black */
  backdrop-filter: blur(6px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.form-loader-overlay.active {
  opacity: 1;
  visibility: visible;
}

.form-loader-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.form-loader-spinner {
  width: 52px;
  height: 52px;
  border: 3px solid rgba(76, 145, 52, 0.15);
  /* faint main-green ring */
  border-top: 3px solid var(--main-green);
  border-radius: 50%;
  animation: form-loader-spin 0.8s linear infinite;
}

@keyframes form-loader-spin {
  to {
    transform: rotate(360deg);
  }
}

.form-loader-text {
  font-family: "migobold", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--dark);
  /* dark text now that background is light, not white-on-dark */
}

/* Disabled submit button state — matches your .main-btn pill shape */
.cn-form .main-btn[disabled] {
  opacity: 0.6;
  pointer-events: none;
  cursor: not-allowed;
}