@import url("https://fonts.googleapis.com/css?family=Open+Sans:400,600,700|Poppins:300,400,500,600,700|Work+Sans:400,500,600");
body {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  font-size: 13px;
}

p, .paragraph {
  font-weight: 400;
  color: #434040;
  font-size: 13px;
  line-height: 25px;
  font-family: "Poppins", sans-serif;
  text-align: justify;
}

h1, h2, h3, h4, h5, h6 {
  color: #222;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
}

h1, .h1 {
  font-size: 50px;
}
@media (max-width: 400px) {
  h1, .h1 {
    font-size: 30px;
  }
}

h2, .h2 {
  font-size: 32px;
}

h3, .h3 {
  font-size: 30px;
}

h4, .h4 {
  font-size: 20px;
}

h5, .h5 {
  font-size: 15px;
}

h6, .h6 {
  font-size: 14px;
}

/* 1.3 Button style */
.btn {
  font-size: 13px;
  font-family: "Open Sans", sans-serif;
  text-transform: capitalize;
  padding: 12px 34px;
  border-radius: 35px;
  font-weight: 600;
  white-space: nowrap;
  border: 0;
  position: relative;
  z-index: 1;
  transition: 0.2s ease;
}
.btn:focus {
  outline: 0;
  box-shadow: none !important;
}
.btn:active {
  box-shadow: none;
}

.btn-primary {
  background: #307c30;
  color: #fff;
}
.btn-primary:active {
  background: #307c30 !important;
}
.btn-primary:hover {
  background: rgb(232.5585714286, 72.5414285714, 72.5414285714);
}

.btn-secondary {
  background: #307c30;
  color: #fff;
}
.btn-secondary:active {
  background: #307c30 !important;
}
.btn-secondary:hover {
  background: #307c30 !important;
  background: rgb(232.5585714286, 72.5414285714, 72.5414285714);
}

.btn-light {
  background: #fff;
  color: #222;
  border: 2px solid #fff;
}
.btn-light:hover {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: #222;
  border: 2px solid #303032;
}
.btn-outline:hover {
  background: #303032;
  color: #fff;
}

.btn-sm {
  padding: 13px 40px !important;
}

/* 1.2 common style */
body {
  background-color: #fff;
  overflow-x: hidden;
}

::-moz-selection {
  background: rgb(232.5585714286, 72.5414285714, 72.5414285714);
  color: #fff;
}

::selection {
  background: rgb(232.5585714286, 72.5414285714, 72.5414285714);
  color: #fff;
}

/* preloader */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

ol,
ul {
  list-style-type: none;
  margin: 0px;
}

img {
  vertical-align: middle;
  border: 0;
}

a,
a:hover,
a:focus {
  text-decoration: none;
}

a {
  transition: 0.2s ease;
}
a:hover {
  color: #307c30;
}

a.text-dark:hover,
a.text-white:hover {
  color: #307c30 !important;
}

a,
button {
  cursor: pointer;
}

.outline-0 {
  outline: 0;
}

.d-unset {
  display: unset !important;
}

.slick-slide {
  outline: 0;
}

.centralized {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.hilighted {
  background: #303032;
  color: #919e4d;
  border-radius: 3px;
  padding: 2px 5px;
}

.section {
  padding: 100px 0;
}
@media (max-width: 575px) {
  .section {
    padding: 80px 0;
  }
}
.section-sm {
  padding: 80px 0;
}
.section-title {
  margin-bottom: 55px;
}

.section-title-sm {
  margin-bottom: 10px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: #666;
}

.overlay-zIndex-none::before {
  z-index: 0 !important;
}

.overlay {
  position: relative;
  isolation: isolate;
}
.overlay::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: #000;
  opacity: 0.6;
  z-index: -10;
}
.overlay-dark {
  position: relative;
  isolation: isolate;
}
.overlay-dark::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: #000;
  opacity: 0.8;
  z-index: -10;
}
.overlay-primary {
  position: relative;
  isolation: isolate;
}
.overlay-primary::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: #092c09;
  opacity: 0.6;
  z-index: -10;
}
.overlay-white {
  position: relative;
  isolation: isolate;
}
.overlay-white::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: #fff;
  opacity: 0.7;
  z-index: -10;
}
.overlay-rounded::before {
  border-radius: 5px;
}

.section-title-border {
  position: relative;
}
.section-title-border::before {
  position: absolute;
  content: "";
  height: 2px;
  width: 120px;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: #307c30;
}
.section-title-border::after {
  position: absolute;
  content: "";
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #307c30;
  box-shadow: 0 0 0 5px #fff;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
}

.section-title-border-gray {
  position: relative;
}
.section-title-border-gray::before {
  position: absolute;
  content: "";
  height: 2px;
  width: 120px;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: #307c30;
}
.section-title-border-gray::after {
  position: absolute;
  content: "";
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background: #f5f5f5;
  border: 2px solid #307c30;
  box-shadow: 0 0 0 5px #f5f5f5;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
}

.section-title-border-half {
  position: relative;
}
.section-title-border-half::before {
  position: absolute;
  content: "";
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background: transparent;
  border: 2px solid #307c30;
  bottom: -14px;
  left: 0;
}
.section-title-border-half::after {
  position: absolute;
  content: "";
  height: 2px;
  width: 50px;
  left: 15px;
  bottom: -10px;
  background: #307c30;
}
.section-title-border-half-white {
  position: relative;
}
.section-title-border-half-white::before {
  position: absolute;
  content: "";
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background: transparent;
  border: 2px solid #fff;
  bottom: -14px;
  left: 0;
}
.section-title-border-half-white::after {
  background: #fff;
  position: absolute;
  content: "";
  height: 2px;
  width: 50px;
  left: 15px;
  bottom: -10px;
}

/* 1.2.1 page title */
.page-title {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 160px 0 100px;
}

/* breadcrumb */
.breadcrumb {
  background-color: transparent !important;
  justify-content: center;
}
.breadcrumb li,
.breadcrumb a {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 12px;
  margin: 0 10px;
}
.breadcrumb a {
  position: relative;
}
.breadcrumb a::before {
  position: absolute;
  content: "/";
  right: -17px;
  top: 2px;
  height: 12px;
}

/* 1.2.2 404 page start */
.page-404 {
  padding: 600px 0 60px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media (max-width: 767px) {
  .page-404 {
    padding: 450px 0 50px;
  }
}
@media (max-width: 575px) {
  .page-404 {
    padding-top: 250px;
  }
}
@media (max-width: 400px) {
  .page-404 {
    padding-top: 150px;
  }
}
.page-404 h1 {
  font-size: 40px;
}

/* 404 page end */
/* play-icon */
.play-icon {
  width: 85px;
  height: 85px;
  border: 3px solid #fff;
  border-radius: 50%;
  display: block;
  text-align: center;
}
.play-icon:focus {
  outline: 0;
}
.play-icon i {
  line-height: 79px;
  display: block;
  font-size: 30px;
  color: #fff;
}

/* round icon */
.round-icon {
  height: 70px;
  min-width: 70px;
  max-width: 70px;
  border-radius: 50%;
  border: 1px solid #e5e5e5;
  background: #fff;
  text-align: center;
  line-height: 70px;
  font-size: 30px;
  color: #307c30;
  display: inline-block;
}

/* 18. squre icon */
.square-icon {
  height: 65px;
  width: 65px;
  background: #307c30;
  color: #fff;
  font-size: 35px;
  line-height: 65px;
  border-radius: 5px;
  text-align: center;
  display: inline-block;
}

/* team social icon */
.social-icon-lg {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  line-height: 50px;
  text-align: center;
  color: #fff;
  font-size: 25px;
  display: inline-block;
}
.social-icon-lg i {
  margin: 0;
  color: #fff;
}

.box-shadow {
  box-shadow: 0px 10px 35px 0px rgba(0, 0, 0, 0.1);
}

.golden {
  color: #efaf27 !important;
}

.bg-gray {
  background-color: #f5f5f5;
}

.bg-primary {
  background-color: #307c30 !important;
}

.bg-secondary {
  background-color: #303032 !important;
}

.text-primary {
  color: #307c30 !important;
}

.bg-facebook {
  background-color: #4267b2;
}

.bg-twitter {
  background-color: #449de8;
}

.bg-linkedin {
  background-color: #2f6ea3;
}

.bg-google {
  background-color: #e62211;
}

.text-color {
  color: #666;
}

.text-dark {
  color: #222;
}

.text-underline {
  text-decoration: underline;
}
.text-underline:hover {
  text-decoration: underline;
}

.font-primary {
  font-family: "Poppins", sans-serif;
}

.font-secondary {
  font-family: "Poppins", sans-serif
}

.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;
}

@media (max-width: 991px) {
  .mb-md-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;
}

.py-10 {
  padding: 10px 0;
}

.py-50 {
  padding: 50px 0;
}

.py-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.py-160 {
  padding: 160px 0;
}

.ms-65 {
  margin-left: 65px;
}

.pb-xl-200-lg-100 {
  padding-bottom: 200px;
}
@media (max-width: 1199px) {
  .pb-xl-200-lg-100 {
    padding-bottom: 100px;
  }
}

.mb-xl-150-lg-100 {
  margin-bottom: 150px;
}
@media (max-width: 1199px) {
  .mb-xl-150-lg-100 {
    margin-bottom: 100px;
  }
}

.translateY-25 {
  transform: translateY(25px);
}

.translateY-10 {
  transform: translateY(-10px);
}

.translateY-33 {
  transform: translateY(-33px);
}

/* 2. Navigation */
.top-header {
  background: #303032;
}
@media (max-width: 575px) {
  .top-header ul {
    text-align: center;
  }
}
.top-header ul li {
  margin: 15px 0;
}
@media (max-width: 575px) {
  .top-header ul li {
    margin: 10px 0;
  }
}
.top-header ul li a {
  display: inline-block;
  padding: 0 20px;
  border-right: 1px solid #e5e5e5;
  color: #bcbcbd;
}
@media (max-width: 575px) {
  .top-header ul li a {
    border: 0;
  }
}
.top-header ul li a span {
  color: #71d771;
}
.bg-secondary span {
  color: #71d771;	
}
.embed-map-frame {
  width:1024px!important;
  height:400px!important;
}
.top-header ul li:last-child a {
  padding-right: 0;
  border-right: 0;
}

.navigation .navbar {
  padding: 0;
  background: #fff !important;
  position: relative;
}
.navigation .navbar-brand {
    position: absolute;
    left: 0;
    top: -18px;
    height: 140px;
    width: 220px;
    background: #fff;
    text-align: center;
    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.1);
    z-index: 9;
}
li.list-inline-item.mx-lg-3.my-lg-0.mx-2.my-2 {
    font-size: 13px;
}
.hero-content {
    margin-left: 3em;
}
@media (max-width: 991px) {
  .navigation .navbar-brand {
    position: relative;
    height: unset;
    width: unset;
    box-shadow: none;
    top: 24px;
    background: none;
  }
  .navigation .navbar-brand img {
    height: 50px;
    width: auto;
  }
}
.navigation .navbar-brand img {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
.navigation .navbar .nav-item {
  padding: 18px 0;
}
@media (max-width: 991px) {
  .navigation .navbar .nav-item {
    padding: 0;
  }
}
.navigation .navbar .nav-item .nav-link {
  padding: 15px 20px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: #222;
  text-transform: uppercase;
  transition: 0.2s ease;
  font-size: 14px;
}
@media (max-width: 1199px) {
  .navigation .navbar .nav-item .nav-link {
    font-size: 12px;
    padding: 15px 6px;
  }
}
@media (max-width: 991px) {
  .navigation .navbar .nav-item .nav-link {
    padding: 15px 0;
    font-size: 14px;
    text-align: center;
  }
}
.navigation .navbar .nav-item .nav-link:hover {
  color: #307c30;
}
.navigation .navbar .nav-item.nav-button {
  padding: 28px 0 28px 30px;
}
@media (max-width: 991px) {
  .navigation .navbar .nav-item.nav-button {
    padding: 0;
    margin-bottom: 20px;
  }
}
.navigation .navbar .nav-item.nav-button .nav-link {
  color: #fff;
}
.navigation .navbar .nav-item.nav-button .nav-link.pgactive {
  color: #307c30;
}
.navigation .navbar .nav-item.active .nav-link {
  color: #307c30;
}
.navigation .navbar .dropdown:hover .dropdown-menu {
  visibility: visible;
  opacity: 1;
  transform: scaleY(1);
}
.navigation .navbar .dropdown-menu {
    box-shadow: 0px 3px 9px 0px rgba(0, 0, 0, 0.12);
    padding: 20px 15px;
    border: 0;
    border-radius: 0;
    top: 72%;
    left: 6px;
    display: block;
    visibility: hidden;
    transition: 0.3s ease;
    opacity: 0;
    transform: scaleY(0);
    transform-origin: top;
}
@media (max-width: 991px) {
  .navigation .navbar .dropdown-menu {
    display: none;
    opacity: 1;
    visibility: visible;
    transform: scaleY(1);
    transform-origin: unset;
  }
}
.navigation .navbar .dropdown-menu.show {
  visibility: visible;
  opacity: 1;
  transform: scaleY(1);
}
@media (max-width: 991px) {
  .navigation .navbar .dropdown-menu.show {
    display: block;
  }
}
.navigation .navbar .dropdown-item {
    position: relative;
    color: #222;
    transition: 0.2s ease;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
}
.navigation .navbar .dropdown-item:not(:last-child) {
  margin-bottom: 20px;
}
.navigation .navbar .dropdown-item:hover {
  color: #307c30;
  background: transparent;
}
.navigation .navbar .dropdown-item::before {
  position: absolute;
  content: "";
  left: 5px;
  top: 12px;
  height: 4px;
  width: 4px;
  border-radius: 50%;
  background: #848484;
  border: 1px solid #fff;
  display: inline-block;
  box-shadow: 0 0 0 2px #848484;
}
.mb-8 {
    margin-bottom: 5rem !important;
}
@media (max-width: 991px) {
  .navigation .navbar .dropdown-item {
    text-align: center;
  }
  .navigation .navbar .dropdown-item::before {
    display: none;
  }
}

/* 2.3. Search Form */
.search-form {
  padding: 230px 0;
  background: #303032;
  position: absolute;
  width: 100%;
  top: -800px;
  z-index: 10;
  transition: 0.3s ease-in;
}
.search-form .close {
  position: absolute;
  top: 30px;
  right: 30px;
  color: #fff;
}
.search-form .close i {
  transition: 0.3s ease;
  display: inline-block;
}
.search-form .close:hover i {
  transform: rotate(90deg);
}
.search-form.open {
  top: 0;
}
.search-form .form-control {
  background: transparent;
  border: 1px solid #e5e5e5;
  border-radius: 0;
  font-size: 20px;
  transition: 0.3s ease;
  position: relative;
  color: #fff;
  height: 130px;
  padding: 30px 40px;
}
.search-form h3 {
  font-size: 35px;
  color: #fff;
  margin-bottom: 35px;
}
.search-form .input-wrapper {
  position: relative;
}
.search-form .input-wrapper button {
  background: none;
  border: 0;
  position: absolute;
  font-size: 20px;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  cursor: pointer;
  padding: 20px;
}
.search-form .input-wrapper button i {
  color: #fff;
}

/* 3. hero area */
.hero-slider.slick-slider {
  margin-bottom: 80px;
}
.hero-slider [data-animation-in] {
  opacity: 0;
  color: #fff !important;
}
.hero-slider-item {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  outline: 0;
}
.hero-slider .prevArrow,
.hero-slider .nextArrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9;
  height: 70px;
  width: 70px;
  border-radius: 50%;
  background: rgba(48, 48, 50, 0.5);
  color: #fff;
  border: 0;
  font-size: 25px;
  line-height: 70px;
  opacity: 0;
  transition: all linear 0.2s;
}
@media (max-width: 575px) {
  .hero-slider .prevArrow,
  .hero-slider .nextArrow {
    display: none;
  }
}
.hero-slider .prevArrow:focus,
.hero-slider .nextArrow:focus {
  outline: 0;
}
.hero-slider .prevArrow:hover,
.hero-slider .nextArrow:hover {
  background: rgba(232, 68, 68, 0.5);
}
.hero-slider .prevArrow {
  left: 20px;
}
.hero-slider .nextArrow {
  right: 20px;
}
.hero-slider:hover .prevArrow,
.hero-slider:hover .nextArrow {
  opacity: 1;
}
.hero-slider .slick-dots {
  bottom: -80px;
  padding-left: 0;
  text-align: center;
  border-bottom: 1px solid #e5e5e5;
}
.hero-slider .slick-dots li {
  width: 295px;
  height: 80px;
  background: #fff;
  margin: 0;
  display: inline-block;
  position: relative;
}
@media (max-width: 1199px) {
  .hero-slider .slick-dots li {
    width: 230px;
  }
}
@media (max-width: 991px) {
  .hero-slider .slick-dots li {
    width: 180px;
  }
}
@media (max-width: 767px) {
  .hero-slider .slick-dots li {
    width: 120px;
  }
  .desktop-only {
    display: none; /* Hide desktop content on mobile */
  }
}
@media (max-width: 575px) {
  .hero-slider .slick-dots li {
    width: 25%;
  }
}
.hero-slider .slick-dots li {
  /* @include mobile-xs {
                  width: 50px;
              } */
}
.hero-slider .slick-dots li::before {
  position: absolute;
  content: "";
  left: 50%;
  top: -12px;
  height: 25px;
  width: 25px;
  background: #303032;
  transform: translateX(-50%) rotate(-45deg);
  opacity: 0;
}
.hero-slider .slick-dots li a {
  display: block;
  position: relative;
  text-align: center;
  transition: 0.3s ease;
  color: #303032;
}
.hero-slider .slick-dots li a i {
  display: inline-block;
  font-size: 30px;
  line-height: 80px;
  margin-right: 15px;
  vertical-align: middle;
}
@media (max-width: 991px) {
  .hero-slider .slick-dots li a i {
    font-size: 20px;
    margin-right: 5px;
  }
}
@media (max-width: 767px) {
  .hero-slider .slick-dots li a i {
    margin: 0;
  }
}
.hero-slider .slick-dots li a span {
  font-size: 18px;
  font-weight: 500;
  line-height: 80px;
}
@media (max-width: 991px) {
  .hero-slider .slick-dots li a span {
    font-size: 15px;
  }
}
@media (max-width: 767px) {
  .hero-slider .slick-dots li a span {
    display: none;
  }
}
.hero-slider .slick-dots li.slick-active {
  background: #303032;
}
.hero-slider .slick-dots li.slick-active a {
  color: #fff;
}
.hero-slider .slick-dots li.slick-active::before {
  opacity: 1;
}
.hero-content h4 {
  letter-spacing: 2px;
  color: white;
}
.hero-content h4 {
  color: white;
}
.fw-bold {
    font-weight: 600 !important;
}

/*--------------------------------------------------------------
	swipwe slider
--------------------------------------------------------------*/
.swiper-slider {
  width: 100%;
  min-height: calc(100vh - 150px);
  display: flex;
  position: relative;
  z-index: 0;
}
.swiper-container {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.swiper-slide {
  overflow: hidden;
}
.swiper-slide .slide-inner {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.swiper {
  /* slider dots */
}
.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  text-align: center;
  line-height: 12px;
  font-size: 12px;
  color: #000;
  opacity: 1;
  background: rgba(232, 68, 68, 0.2);
}
.swiper-pagination-bullet-active {
  color: #fff;
  background: #307c30;
  width: 15px;
  height: 15px;
  text-align: center;
  line-height: 15px;
}
.swiper {
  /* slider arrows */
}
.swiper-button-prev, .swiper-button-next {
  background: transparent;
  width: auto;
  height: auto;
  opacity: 0.3;
  text-align: center;
  transition: all 0.3s;
}
@media (max-width: 767px) {
  .swiper-button-prev, .swiper-button-next {
    display: none;
  }
}
.swiper-button-prev:hover, .swiper-button-next:hover {
  opacity: 1;
}
.swiper-button-prev {
  left: 25px;
}
.swiper-button-prev::before {
  font-family: "themify";
  content: "\e64a";
  font-size: 40px;
  color: #307c30;
}
.swiper-button-next {
  right: 25px;
}
.swiper-button-next::before {
  font-family: "themify";
  content: "\e649";
  font-size: 40px;
  color: #307c30;
}

/* 5. progrgess bar start */
.progressbar-title {
  font-size: 15px;
  font-family: "Open Sans", sans-serif;
  margin-bottom: 7px;
  color: #222 !important;
}

.progress {
  border-radius: 35px;
  overflow: visible;
  margin-bottom: 35px;
  /* 5.2 progressbar value */
}
.progress-bar {
  background-color: #303032;
  border-radius: 35px;
  position: relative;
}
.progress-bar-value {
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  color: #fff;
  background: #303032;
  padding: 5px 9px;
  position: absolute;
  top: -35px;
  right: -15px;
  border-radius: 5px;
}
.progress-bar-value::before {
  position: absolute;
  content: "";
  bottom: -5px;
  left: 50%;
  background: #303032;
  height: 10px;
  width: 10px;
  transform: translateX(-50%) rotate(-45deg);
}

/* progrgess bar End */
/* 6. mission section start */
.card-header:first-child {
  border-radius: 35px;
}

/* 7. promo video section start */
.promo-video {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.promo-video p {
  font-family: "Work Sans", sans-serif;
}

/* promo video section end */
/* 8. testimonial section start */
.testimonial-slider {
  box-shadow: 0px 10px 35px 0px rgba(0, 0, 0, 0.1);
  position: relative;
}
.testimonial-slider .prevArrow,
.testimonial-slider .nextArrow {
  position: absolute;
  top: 85px;
  border: 0;
  font-size: 20px;
  background: transparent;
  color: #307c30;
  z-index: 9;
}
.testimonial-slider .prevArrow:focus,
.testimonial-slider .nextArrow:focus {
  outline: 0;
}
.testimonial-slider .prevArrow {
  right: 90px;
}
.testimonial-slider .nextArrow {
  right: 50px;
}
.testimonial-slider .slick-disabled {
  color: #e5e5e5;
}
.testimonial-icon {
  height: 80px;
  width: 80px;
  border-radius: 50%;
  background: #f5f5f5;
  color: #307c30;
  font-size: 25px;
  line-height: 80px;
  display: inline-block;
  text-align: center;
  margin-bottom: 25px;
}

/* testimonial section end */
/* 10. client logo slider start */
.client-logo-slider .slick-track {
  display: flex;
  align-items: center;
}

/* client logo slider end */
/* 11. fun-facts section start */
.fun-facts {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

/* fun-facts section end */
/* 12. consultation section start */
.consultation {
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* consultation section end */
/* 16. call to action start */
.cta {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* card */
.card-img-wrapper {
  position: relative;
}
.card-img-wrapper::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background: #000;
  opacity: 0;
  top: 0;
  left: 0;
  transition: 0.2s;
}
.card::before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    border: 1px #307c30;
    opacity: 0;
    top: 0;
    left: 0;
    transition: 0.2s;
}
.card-body-2 {
  position: relative;
  transition: 0.2s ease;
  border-radius: 0 0 5px 5px;
}
.card-body-2::before {
  position: absolute;
  content: "";
  height: 30px;
  width: 30px;
  background: #fff;
  top: -15px;
  left: 50%;
  transform: translateX(-50%) rotate(-45deg);
  transition: 0.2s ease;
}
.card:hover .card-img-wrapper::before {
  opacity: 0.4;
}
.card:hover .card-body-2 {
  background: #307c30;
}
.card:hover .card-body-2 h5,
.card:hover .card-body-2 h6,
.card:hover .card-body-2 a {
  color: #fff;
}
.card:hover .card-body-2::before {
  background: #307c30;
}

.overlay-rounded-top::before {
  border-radius: 5px 5px 0 0;
}

/* 13. about section */
.about {
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  /* 13.4 about video */
}
.about-video {
  min-height: 300px;
}
.about {
  /* 13.6 about slider */
}
.about-slider {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.about-slider .prevArrow,
.about-slider .nextArrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9;
  height: 55px;
  width: 55px;
  border-radius: 50%;
  border: 0;
  line-height: 55px;
  text-align: center;
  background: #fff;
  transition: 0.2s ease;
}
.about-slider .prevArrow:focus,
.about-slider .nextArrow:focus {
  outline: 0;
}
.about-slider .prevArrow:hover,
.about-slider .nextArrow:hover {
  background: #307c30;
  color: #fff;
}
.about-slider .prevArrow {
  left: 25px;
}
.about-slider .nextArrow {
  right: 25px;
}

/* 13.8 ceo section start */
.ceo-image {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 400px;
}

/* ceo section end */
/* 14.3 clients */
.clients {
  background-position: center right;
  background-size: 50%;
  background-repeat: no-repeat;
}
@media (max-width: 991px) {
  .clients {
    background-size: cover !important;
    background-position: center center;
    text-align: center;
  }
}
.clients ul li {
  height: 66px;
}
.clients ul li img {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  display: inline-block;
}

/* 14.4 process */
.process-item {
  width: 330px;
}
@media (max-width: 1199px) {
  .process-item {
    width: unset;
  }
}
.process-item-number {
  position: absolute;
  left: -35px;
  top: -35px;
  height: 70px;
  width: 70px;
  line-height: 70px;
  border-radius: 50%;
  text-align: center;
  background: #fff;
  box-shadow: -5px 0px 40px 0px rgba(0, 0, 0, 0.1);
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  font-size: 32px;
  color: #222;
}
@media (max-width: 1199px) {
  .process-item-number {
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
  }
}
.process-item h5 {
  margin-bottom: 5px;
  color: #307c30;
}

img.arrow-top {
  position: absolute;
  top: 220px;
  right: 250px;
}
@media (max-width: 1199px) {
  img.arrow-top {
    display: none;
  }
}

img.arrow-bottom {
  position: absolute;
  bottom: 100px;
  left: 250px;
}
@media (max-width: 1199px) {
  img.arrow-bottom {
    display: none;
  }
}

/* service single start */
.service-menu li.active {
  position: relative;
}
.service-menu li.active a {
  background: #303032;
  color: #fff !important;
}
.service-menu li.active::before {
  position: absolute;
  content: "";
  height: 15px;
  width: 15px;
  background: #303032;
  top: 50%;
  right: -7px;
  transform: translateY(-50%) rotate(-45deg);
}
@media (max-width: 991px) {
  .service-menu li.active::before {
    display: none;
  }
}
.service-menu li:hover a {
  color: #fff !important;
  background: #303032;
}

/* service single end */
/* 15. work section */
.work {
  /* 15.1 work slider */
}
.work-slider-image {
  position: relative;
}
.work-slider-image .image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.75);
  height: 100%;
  width: 100%;
  padding: 15px 25px;
  opacity: 0;
  transition: 0.2s;
}
.work-slider-image .image-overlay i {
  position: absolute;
  color: #fff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-block;
  font-size: 24px;
  transition: 0.2s ease;
  padding: 10px;
}
.work-slider-image .image-overlay i:hover {
  font-size: 30px;
}
.work-slider-image .image-overlay a.h4 {
  position: absolute;
  bottom: 90px;
  color: #fff;
  transition: 0.2s ease;
  transform: translateY(20px);
  opacity: 0;
}
.work-slider-image .image-overlay p, .paragraph {
    font-size: 12px;
}
.work-slider-image .image-overlay a.h4:hover {
  color: #307c30;
}
.work-slider-image .image-overlay p {
  position: absolute;
  bottom: 15px;
  color: #fff;
  transform: translateY(10px);
  opacity: 0;
  transition: 0.3s ease;
  transition-delay: 0.1s;
}
.work-slider-image:hover .image-overlay {
  opacity: 1;
}
.work-slider-image:hover a.h4,
.work-slider-image:hover p {
  transform: translateY(0);
  opacity: 1;
}
.work-slider {
  /* 15.2 slick dots */
}
.work-slider .slick-dots {
  padding-left: 0;
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
}
.work-slider .slick-dots li {
  margin: 0 14px;
}
@media (max-width: 400px) {
  .work-slider .slick-dots li {
    margin: 0 2px;
  }
}
.work-slider .slick-dots li:first-child {
  margin-left: 0;
}
.work-slider .slick-dots li button {
  height: 10px;
  width: 40px;
  border-radius: 25px;
  color: transparent;
  overflow: hidden;
  border: 0;
  border: 2px solid #e5e5e5;
  background: transparent;
  outline: 0;
  display: block;
}
.work-slider .slick-dots li button::before {
  display: none;
}
@media (max-width: 400px) {
  .work-slider .slick-dots li button {
    width: 10px;
  }
}
.work-slider .slick-dots li.slick-active button {
  border-color: #307c30;
}

/* 19. project section */
.project {
  /* 19.1 project menu */
}
.project-menu ul li {
  padding: 5px 20px;
  border-radius: 35px;
  color: #222;
  font-size: 16px;
  font-weight: 400;
  border: 1px solid #e5e5e5;
  cursor: pointer;
  background: #f5f5f5;
  margin: 0 10px 25px;
}
.project-menu ul li.active {
  background: #307c30;
  color: #fff;
}
.project {
  /* 19.2 project item */
}
.project-info {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  transition: 0.2s ease;
}
.project-info a {
  color: #fff;
  position: absolute;
  left: 30px;
  bottom: 40px;
  transform: translateY(20px);
  opacity: 0;
}
.project-info a:hover {
  color: #307c30;
}
.project-info p {
  position: absolute;
  left: 25px;
  bottom: 0;
  color: #fff;
  transition: 0.2s ease;
  transform: translateY(20px);
  opacity: 0;
  transition-delay: 0.1s;
}
.project-info p i {
  margin-right: 5px;
}
.project-info:hover {
  opacity: 1;
}
.project-info:hover a {
  transform: translateY(0);
  opacity: 1;
}
.project-info:hover p {
  transform: translateY(0);
  opacity: 0.7;
}

/* 19.3 project single page start */
/* 19.4 nav tabs */
.nav-tabs {
  border: 0;
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .nav-tabs {
    justify-content: center;
  }
}
.nav-tabs .nav-item:not(:last-child) {
  margin-right: 10px;
}
@media (max-width: 575px) {
  .nav-tabs .nav-item {
    margin-bottom: 10px;
  }
}
.nav-tabs .nav-item .nav-link {
  padding: 10px 30px;
  border: 1px solid #e5e5e5;
  background: #f5f5f5;
  border-radius: 45px;
  text-align: center;
  vertical-align: middle;
  color: #222;
  transition: 0.2s ease;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
}
.nav-tabs .nav-item .active {
  background: #fff;
  color: #307c30;
  border-color: #307c30;
}

/* 19.5 tab content */
.tab-content {
  padding: 40px;
  margin-bottom: 60px;
  border-radius: 5px;
  background: #fff;
  border: 1px solid #e5e5e5;
}
.tab-content-item {
  margin-left: 20px;
}
.tab-content-item:not(:last-child) {
  margin-bottom: 45px;
}
.tab-content-item h6 {
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #222;
  margin-bottom: 25px;
  position: relative;
}
.tab-content-item h6::before {
  position: absolute;
  content: "\e65d";
  font-family: "themify";
  top: 0;
  left: -20px;
  color: #307c30;
}
.tab-content-item p {
  margin-bottom: 0;
}

/* project single page end */
/* 21.4.3 pagination */
.pagination .page-item .page-link {
  background: transparent;
  border: none;
  color: #000;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  transition: 0.3s ease;
}
.pagination .page-item .page-link:hover {
  color: #307c30;
}
.pagination .page-item.active .page-link {
  color: #307c30;
}
.pagination .prev,
.pagination .next {
  border: 1px solid #e5e5e5;
  border-radius: 30px;
  padding: 5px 10px;
  transition: 0.3s ease;
}
.pagination .prev:hover,
.pagination .next:hover {
  border-color: #307c30;
}
.pagination .prev:hover .page-link,
.pagination .next:hover .page-link {
  color: #307c30;
}
.pagination .prev {
  margin-right: 30px;
}
.pagination .next {
  margin-left: 30px;
}

/* 21.4.1 post slider */
.post-slider {
  position: relative;
}
.post-slider .prevArrow,
.post-slider .nextArrow {
  position: absolute;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  line-height: 50px;
  top: 50%;
  border: 0;
  font-size: 20px;
  background: transparent;
  color: #307c30;
  z-index: 9;
  background: rgba(255, 255, 255, 0.8);
  transition: 0.3s ease;
}
.post-slider .prevArrow:focus,
.post-slider .nextArrow:focus {
  outline: 0;
}
.post-slider .prevArrow:hover,
.post-slider .nextArrow:hover {
  background: rgba(232, 68, 68, 0.25);
}
.post-slider .prevArrow {
  left: 40px;
}
.post-slider .nextArrow {
  right: 40px;
}
.post-slider .slick-disabled {
  color: #e5e5e5;
}

/* 21.4.4 sidebar */
.search-wrapper {
  position: relative;
}
.search-wrapper input {
  background: #f5f5f5;
  border-radius: 30px;
  font-weight: 400;
  height: 40px;
  line-height: 40px;
  padding: 0 25px;
  font-size: 13px;
}
.search-wrapper::before {
  content: "\e610";
  font-family: "themify";
  position: absolute;
  top: 50%;
  right: 20px;
  color: #666;
  transform: translateY(-50%);
}

ul.tag-list li {
  margin-bottom: 7px;
}
ul.tag-list li a {
  color: #666;
  padding: 10px 12px;
  display: block;
  border: 1px solid #e5e5e5;
  border-radius: 30px;
  font-size: 13px;
  transition: 0.3s ease;
}
ul.tag-list li a:hover {
  background: #307c30;
  border-color: #307c30;
  color: #fff;
}

.newsletter .form-control {
  font-weight: 400;
  padding: 0 20px;
  height: 40px;
  line-height: 40px;
  border-radius: 30px;
  font-size: 13px;
}

/* 21.5 blog single start */
/* share icon */
.share-icon {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  line-height: 40px;
  text-align: center;
  font-size: 16px;
  display: inline-block;
}
.share-icon i {
  color: #fff;
}

/* 21.5.7 blog sidebar */
.sidebar-box-shadow {
  box-shadow: -3px 0px 3px 0px rgba(0, 0, 0, 0.06);
}

/* blog single end */
/* 22. contact section */
.form-control {
  border-radius: 5px;
  padding: 0 15px 2px;
  height: 40px;
  margin-bottom: 15px;
  border: 1px solid #e5e5e5;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #666;
}
.form-control:focus {
  border-color: #307c30;
  box-shadow: none !important;
}
.form-control::-moz-placeholder {
  color: #666;
}
.form-control::placeholder {
  color: #666;
}

/* 22.3 google map */
.map {
  position: relative;
}
.map #map_canvas {
  height: 450px;
}

/* 23.1 signup greetings */
.signup {
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0px 10px 35px 0px rgba(0, 0, 0, 0.1);
}
.signup-greeting {
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 70px 0 140px;
  text-align: center;
}
@media (max-width: 1199px) {
  .signup-greeting {
    padding-bottom: 80px;
  }
}
@media (max-width: 767px) {
  .signup-greeting {
    padding-top: 200px;
  }
}
@media (max-width: 575px) {
  .signup-greeting {
    padding-top: 400px;
  }
}
.signup-greeting img {
  margin-bottom: 50px;
  position: relative;
  z-index: 9;
}
.signup-greeting h4 {
  color: #fff;
  margin-bottom: 20px;
  position: relative;
  z-index: 9;
}
.signup-greeting p {
  color: #fff;
  position: relative;
  z-index: 9;
  margin: 0 40px;
}
.signup {
  /* 23.2 signup form */
}
.signup-form {
  padding: 50px 50px 50px 35px;
}
@media (max-width: 1199px) {
  .signup-form {
    padding: 50px 15px 50px 0;
  }
}
@media (max-width: 767px) {
  .signup-form {
    padding: 50px;
  }
}
@media (max-width: 575px) {
  .signup-form {
    text-align: center;
  }
}
.signup-form h4 {
  float: left;
  font-size: 26px;
  margin-bottom: 35px;
}
@media (max-width: 575px) {
  .signup-form h4 {
    float: unset;
  }
}
.signup-form a {
  color: #307c30;
}
.signup-form .btn {
  margin-top: 30px;
}
.signup-form p.signup-with {
  display: inline-block;
  margin-top: 42px;
}
.signup-form ul {
  margin-top: 37px;
  display: inline-block;
}
.signup-form ul li a {
  height: 30px;
  width: 30px;
  line-height: 30px;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 24. comming soon */
.comming-soon {
  height: 100vh;
  background-size: cover;
  display: flex;
  align-items: center;
}
.comming-soon h1 {
  font-size: 50px;
  font-weight: 600;
}
@media (max-width: 575px) {
  .comming-soon h1 {
    font-size: 30px;
  }
}
.comming-soon .form-control {
  height: 45px;
  border-radius: 45px;
  position: relative;
  background: transparent;
  border: 1px solid #e5e5e5;
  color: #fff;
  margin-bottom: 40px;
}
.comming-soon .form-control::-moz-placeholder {
  color: #666;
}
.comming-soon .form-control::placeholder {
  color: #666;
}
.comming-soon .btn-email {
  position: absolute;
  top: 0;
  right: 10px;
  background: #fff;
  border: 0;
  color: #307c30;
  border-radius: 45px;
  height: 45px;
  padding: 0 50px;
}
@media (max-width: 575px) {
  .comming-soon .btn-email {
    padding: 0 10px;
  }
}
.comming-soon i {
  color: #5c5c5c;
  margin: 0 15px;
  transition: 0.2s ease;
  font-size: 24px;
}
.comming-soon i:hover {
  color: #307c30;
}

/* 24.1 syotimer */
.syotimer {
  text-align: center;
  margin: 0 auto 40px;
}
.syotimer-cell:last-child .syotimer-cell__value::before {
  opacity: 0;
}
.syotimer-cell {
  display: inline-block;
  margin: 0 25px;
}
@media (max-width: 1199px) {
  .syotimer-cell {
    margin: 0 20px;
  }
}
@media (max-width: 575px) {
  .syotimer-cell {
    margin: 0 10px;
  }
}
@media (max-width: 400px) {
  .syotimer-cell {
    margin: 0 5px;
  }
}
.syotimer-cell__value {
  font-size: 60px;
  font-weight: 600;
  color: #fff;
  position: relative;
}
@media (max-width: 1199px) {
  .syotimer-cell__value {
    font-size: 50px;
  }
}
@media (max-width: 575px) {
  .syotimer-cell__value {
    font-size: 30px;
  }
}
@media (max-width: 400px) {
  .syotimer-cell__value {
    font-size: 24px;
  }
}
.syotimer-cell__value::before {
  position: absolute;
  content: ":";
  height: 30px;
  color: #fff;
  right: -30px;
  top: 0;
}
@media (max-width: 575px) {
  .syotimer-cell__value::before {
    right: -20px;
  }
}
@media (max-width: 400px) {
  .syotimer-cell__value::before {
    right: -12px;
  }
}
.syotimer-cell__unit {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 16px;
  color: #fff;
}

/* 25.1 social link */
.social-icon-outline {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid #fff;
  text-align: center;
  transition: 0.2s ease;
  display: inline-block;
}
.social-icon-outline i {
  line-height: 40px;
  color: #fff;
  font-size: 14px;
}
.social-icon-outline:hover {
  border-color: #307c30;
}

/* 25.2 footer link */
.footer-links {
  padding-left: 18px;
}
.footer-links li {
  margin-bottom: 20px;
  position: relative;
}
.footer-links li::before {
  position: absolute;
  font-family: "themify";
  content: "\e649";
  top: 0;
  left: -20px;
  height: 12px;
  width: auto;
  color: #fff;
}
.footer-links li a {
  color: #fff;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  transition: 0.2s ease;
  display: block;
}
.footer-links li a:hover {
  text-decoration: underline;
  color: #307c30;
}

/* 25.3 subcription */
.form-control.subscribe {
  width: 100%;
  border-radius: 35px;
  border: 0;
  padding: 0 20px !important;
  height: 50px;
}

/* subscribe button */
.btn-subscribe {
  position: absolute;
  right: 5px;
  top: 5px;
  border: 0;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  color: #fff;
  background: #307c30;
  transition: all linear 0.2s;
}
.btn-subscribe:hover {
  padding-left: 15px;
}
.btn-subscribe:focus {
  outline: 0;
}

/* back to top button */
.back-to-top {
  position: absolute;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  color: #fff;
  background: #303032;
  top: -25px;
  right: 10px;
  border: 1px solid #454547;
  text-align: center;
  display: block;
  transition: 0.2s ease;
}
.back-to-top i {
  line-height: 50px;
}
.back-to-top:hover {
  border-color: #307c30;
}
.back-to-top:focus {
  outline: 0;
}
/*# sourceMappingURL=style.css.map */

		.tblheader {
            background: linear-gradient(135deg, #0f4c3a 0%, #1a6b4a 50%, #2d8a5e 100%);
            color: white;
            padding: 80px 0 60px;
            position: relative;
            overflow: hidden;
        }

        .tblheader::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M0 0h1200v120H0z" fill="rgba(255,255,255,0.03)"/></svg>');
            opacity: 0.3;
        }

        .tblheader-content {
            position: relative;
            z-index: 2;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 40px;
        }

        .tblheader-text {
            flex: 1 1 500px;
        }

        .tblheader-badge {
            display: inline-block;
            background: rgba(255,255,255,0.2);
            backdrop-filter: blur(10px);
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 500;
            margin-bottom: 24px;
            border: 1px solid rgba(255,255,255,0.3);
        }

        .tblheader h1 {
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 20px;
			color: white;
        }

        .tblheader h1 span {
            #color: #ffd700;
			color: #faa614;
            border-bottom: 3px solid #faa614;
        }

        .tblheader p {
            font-size: 1.2rem;
            opacity: 0.95;
            margin-bottom: 30px;
            max-width: 600px;
			color: white;
        }

        .tblheader-stats {
            display: flex;
            gap: 40px;
            margin-top: 30px;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: #faa614;
			
        }

        .stat-label {
            font-size: 14px;
            opacity: 0.9;
        }

        .tblheader-image {
            flex: 0 0 400px;
            height: 365px;
            #background: linear-gradient(135deg, #2d8a5e, #1a6b4a);
			#background: linear-gradient(135deg, #fff, #dad5d5);
            #border-radius: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 30px 40px rgba(0,0,0,0.2);
            border: 2px solid rgba(255,255,255,0.2);
        }

        .tblheader-image i {
            font-size: 120px;
            color: rgba(255,255,255,0.9);
        }

        /* Navigation */
        .tblheader .nav-tabs {
            background: white;
            border-radius: 60px;
            padding: 8px;
            margin: -30px 0 40px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.08);
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 8px;
            position: relative;
            z-index: 10;
        }

        .tblheader .nav-tab {
            padding: 14px 28px;
            border-radius: 50px;
            font-weight: 600;
            color: #4a5568;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 15px;
            border: none;
            background: transparent;
        }

        .tblheader .nav-tab i {
            margin-right: 8px;
        }

        .tblheader .nav-tab:hover {
            background: #e8f5e9;
            color: #1a6b4a;
        }

        .tblheader .nav-tab.active {
            background: #1a6b4a;
            color: white;
            box-shadow: 0 8px 20px rgba(26,107,74,0.3);
        }

        /* Section Styles */
        .tblheader .section-title {
            font-size: 2.2rem;
            font-weight: 700;
            margin-bottom: 16px;
            color: #0f4c3a;
        }

        .tblheader .section-subtitle {
            font-size: 1.1rem;
            color: #5a6a7a;
            margin-bottom: 40px;
            max-width: 700px;
        }

        .tblheader .grid-3 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }

        .tblheader .card {
            background: white;
            border-radius: 24px;
            padding: 32px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            border: 1px solid rgba(0,0,0,0.05);
        }

        .tblheader .card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }

        .tblheader .card-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
        }

        .tblheader .card-icon i {
            font-size: 32px;
            color: #1a6b4a;
        }

        .tblheader .card h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 16px;
            color: #1a2a3a;
        }

        .tblheader .card p {
            color: #5a6a7a;
            margin-bottom: 20px;
        }

        .tblheader .card-link {
            color: #1a6b4a;
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .tblheader .card-link i {
            transition: transform 0.3s ease;
        }

        .tblheader .card-link:hover i {
            transform: translateX(5px);
        }

        /* Image Cards */
        .tblheader .image-card {
            position: relative;
            border-radius: 24px;
            overflow: hidden;
            height: 240px;
            margin-bottom: 20px;
        }

        .tblheader .image-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .tblheader .image-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
            padding: 30px 20px 20px;
            color: white;
        }

        .tblheader .image-overlay h4 {
            font-size: 1.3rem;
            font-weight: 700;
        }

        /* Ecosystem Flow */
        .ecosystem-flow {
            background: linear-gradient(135deg, #0f4c3a, #1a6b4a);
            border-radius: 40px;
            padding: 50px 40px;
            margin: 60px 0;
            color: white;
        }

        .flow-steps {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 40px;
        }

        .flow-step {
            text-align: center;
            flex: 1;
            min-width: 150px;
        }

        .flow-icon {
            width: 80px;
            height: 80px;
            background: rgba(255,255,255,0.15);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            border: 2px solid rgba(255,255,255,0.3);
        }

        .flow-icon i {
            font-size: 36px;
            color: #ffd700;
        }

        .flow-arrow {
            font-size: 30px;
            color: rgba(255,255,255,0.5);
        }

        /* Resource Table */
        .resource-section {
            background: white;
            border-radius: 30px;
            padding: 40px;
            margin: 60px 0;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        }

        .resource-table {
            width: 100%;
            border-collapse: collapse;
        }

        .resource-table th {
            text-align: left;
            padding: 16px;
            background: #f0f7f2;
            color: #0f4c3a;
            font-weight: 600;
            border-radius: 12px 12px 0 0;
        }

        .resource-table td {
            padding: 16px;
            border-bottom: 1px solid #e2e8f0;
        }

        .resource-table tr:last-child td {
            border-bottom: none;
        }

        .resource-link {
            color: #1a6b4a;
            text-decoration: none;
            font-weight: 500;
        }

        .resource-link i {
            font-size: 12px;
            margin-left: 5px;
        }

        .tblheader .badge {
            background: #e8f5e9;
            color: #1a6b4a;
            padding: 4px 12px;
            border-radius: 50px;
            font-size: 12px;
            font-weight: 600;
        }

        /* Footer */
        .tblheader .footer {
            background: #0a2a1f;
            color: white;
            padding: 50px 0 30px;
            margin-top: 60px;
        }

        .tblheader .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .tblheader .footer h4 {
            font-size: 1.2rem;
            margin-bottom: 20px;
            color: #ffd700;
        }

        .tblheader .footer ul {
            list-style: none;
        }

        .tblheader .footer li {
            margin-bottom: 12px;
            opacity: 0.8;
        }

        .tblheader .footer a {
            color: white;
            text-decoration: none;
            opacity: 0.8;
            transition: opacity 0.3s;
        }

        .tblheader .footer a:hover {
            opacity: 1;
        }

        .tblheader .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            opacity: 0.7;
            font-size: 14px;
        }

      
        @media (max-width: 768px) {
            .tblheader h1 {
                font-size: 2.5rem;
            }
            .tblheader-image {
                flex: 0 0 100%;
                height: 250px;
            }
            .tblheader .nav-tabs {
                border-radius: 30px;
            }
            .tblheader .nav-tab {
                padding: 10px 16px;
                font-size: 13px;
            }
            .tblheader .section-title {
                font-size: 1.8rem;
            }
            .tblheader .flow-arrow {
                display: none;
            }
        }
		
		
		.quick-nav {
            position: sticky;
            top: 0;
            z-index: 20;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(8px);
            border-bottom: 1px solid #e2e8f0;
            margin-bottom: 36px;
        }

        .quick-nav-inner {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            padding: 10px 0;
        }

        .quick-link {
            padding: 10px 14px;
            border-radius: 12px;
            font-weight: 600;
            font-size: 13px;
            color: #334155;
            background: #f1f5f9;
            border: 1px solid #e2e8f0;
            transition: all 0.25s ease;
        }

        .quick-link i {
            margin-right: 8px;
        }

        .quick-link:hover {
            background: #ecfdf5;
            color: #047857;
            border-color: #a7f3d0;
        }

        .groupactivities .section {
            padding: 26px 0;
            border-bottom: 1px solid #e2e8f0;
        }

        .groupactivities .section-header {
            margin-bottom: 28px;
        }

        .groupactivities .domain-badge {
            display: inline-block;
            background: #ecfdf5;
            color: #047857;
            padding: 6px 14px;
            border-radius: 999px;
            font-size: 12px;
            font-weight: 700;
            margin-bottom: 10px;
            border: 1px solid #d1fae5;
        }

        .groupactivities .section-title {
            font-size: clamp(1.8rem, 3.2vw, 2.4rem);
            font-weight: 800;
            color: #064e3b;
            margin-bottom: 10px;
        }

        .groupactivities .section-title i {
            color: #059669;
            margin-right: 12px;
        }

        .groupactivities .section-subtitle {
            font-size: clamp(1rem, 2.2vw, 1.1rem);
            color: #475569;
            max-width: 780px;
        }

       
        .groupactivities .grid-2 {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
            margin-bottom: 24px;
        }

        .groupactivities .grid-3 {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-bottom: 24px;
        }

        .groupactivities .card {
            background: #fff;
            border-radius: 20px;
            padding: 24px;
            border: 1px solid #e2e8f0;
            box-shadow: 0 2px 14px rgba(0, 0, 0, 0.04);
            transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
        }

        .groupactivities .card:hover {
            transform: translateY(-4px);
            box-shadow: 0 18px 36px rgba(0, 0, 0, 0.08);
            border-color: #059669;
        }

        .groupactivities .card-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #ecfdf5, #d1fae5);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 18px;
            border: 1px solid #bbf7d0;
        }

        .groupactivities .card-icon i {
            font-size: 28px;
            color: #047857;
        }

        .groupactivities .card h3 {
            font-size: 1.25rem;
            font-weight: 800;
            margin-bottom: 10px;
            color: #1e293b;
        }

        .groupactivities .card p {
            color: #64748b;
            margin-bottom: 14px;
            font-size: 0.95rem;
        }

        .groupactivities .image-card {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            height: 200px;
            margin-bottom: 16px;
            border: 1px solid #e2e8f0;
        }

        .groupactivities .image-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

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

        .groupactivities .image-overlay {
            position: absolute;
            inset: auto 0 0 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.65), transparent);
            padding: 26px 16px 12px;
            color: #fff;
        }

        .groupactivities .image-overlay h4 {
            font-size: 1.1rem;
            font-weight: 800;
			color: white;
        }

        .groupactivities .pillar-list {
            list-style: none;
            margin: 14px 0;
        }

        .groupactivities .pillar-list li {
            padding: 6px 0;
            color: #334155;
            font-size: 0.9rem;
            display: flex;
            align-items: flex-start;
        }

        .groupactivities .pillar-list li i {
            color: #059669;
            margin-right: 10px;
            margin-top: 3px;
            font-size: 14px;
        }

        .groupactivities .sample-quote {
            background: #f0fdf4;
            padding: 18px;
            border-radius: 14px;
            margin: 14px 0;
            border-left: 4px solid #059669;
            font-style: italic;
            color: #064e3b;
        }

        .groupactivities .synergy-box {
            background: linear-gradient(135deg, #fef3c7, #fde68a);
            padding: 14px 16px;
            border-radius: 14px;
            margin-top: 14px;
            border: 1px solid #fcd34d;
        }

        .groupactivities .synergy-box i {
            color: #b45309;
            margin-right: 8px;
        }

        .groupactivities .synergy-box strong {
            color: #92400e;
        }

        .groupactivities .ecosystem {
            background: linear-gradient(135deg, #064e3b, #047857);
            border-radius: 24px;
            padding: 40px 28px;
            margin: 36px 0;
            color: #fff;
        }

        .groupactivities .ecosystem h2 {
            font-size: clamp(1.6rem, 3vw, 2.1rem);
            margin-bottom: 10px;
			color: white;
        }

        .groupactivities .ecosystem p {
            opacity: 0.95;
            color: white;
            margin-bottom: 22px;
        }

        .groupactivities .ecosystem-flow {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 14px;
        }

        .groupactivities .flow-item {
			text-align: center;
			flex: 1 1 80px;
			min-width: 80px;
		}

        .groupactivities .flow-icon {
            width: 74px;
            height: 74px;
            background: rgba(255, 255, 255, 0.12);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 10px;
            border: 2px solid rgba(251, 191, 36, 0.35);
        }

        .groupactivities .flow-icon i {
            font-size: 32px;
            color: #fbbf24;
        }

        .groupactivities .flow-label {
            font-weight: 700;
        }

        .groupactivities .flow-arrow {
            font-size: 26px;
            color: rgba(255, 255, 255, 0.45);
        }
		
	  @media (max-width: 992px) {
            .groupactivities .grid-2, .grid-3 {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 640px) {
            .groupactivities .quick-nav-inner {
                overflow-x: auto;
                flex-wrap: nowrap;
                padding-bottom: 8px;
            }
            .groupactivities .quick-link {
                white-space: nowrap;
            }
            .groupactivities .flow-arrow {
                display: none;
            }
            .groupactivities .ecosystem-flow {
                justify-content: center;
                gap: 20px;
            }
        }
		
		


.benefit-card {
  transition: all 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
}

.benefit-card .icon-box {
  width: 70px;
  height: 70px;
  background-color: rgba(25, 135, 84, 0.1);
  color: #198754;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-size: 28px;
  transition: all 0.3s ease;
}

.benefit-card:hover .icon-box {
  background-color: #198754;
  color: #fff;
}

.model-card {
  border-top: 4px solid transparent;
  transition: all 0.3s ease;
}

.model-card:hover {
  border-top-color: #198754;
  transform: translateY(-5px);
}

.active-model {
  border-top-color: #198754;
  background-color: #f8fdf9;
}

.process-step {
  position: relative;
}

.process-step .step-number {
  width: 50px;
  height: 50px;
  background-color: #198754;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: bold;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

@media (min-width: 992px) {
  .process-step::after {
    content: '';
    position: absolute;
    top: 25px;
    left: 50%;
    width: 100%;
    height: 2px;
    background-color: #dee2e6;
    z-index: 1;
  }
  .col-lg-3:last-child .process-step::after {
    display: none;
  }
}

.franchise-form {
  border-radius: 12px;
}

.franchise-form .form-control, 
.franchise-form .form-select {
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px solid #ced4da;
  font-size: 13px;
}

.franchise-form .form-control:focus, 
.franchise-form .form-select:focus {
  border-color: #198754;
  box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
}

.text-muted {
    text-align: center;
}