@import 'https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css';
@import 'https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap';
@import 'https://cdnjs.cloudflare.com/ajax/libs/slick-carousel/1.9.0/slick-theme.css';
@import 'https://cdnjs.cloudflare.com/ajax/libs/slick-carousel/1.9.0/slick.min.css';
@import 'https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.5.2/animate.min.css';
@import 'https://fonts.googleapis.com/css2?family=Merriweather:ital,opsz,wght@0,18..144,300..900;1,18..144,300..900&display=swap';
@import 'https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap';
@import 'https://cdnjs.cloudflare.com/ajax/libs/mmenu-js/9.3.0/mmenu.min.css';
@import 'https://unpkg.com/aos@2.3.1/dist/aos.css';
@import 'https://cdnjs.cloudflare.com/ajax/libs/fancybox/3.5.7/jquery.fancybox.min.css';
/*dhritisree core css -- do not change*/
::-moz-selection {
  color: #fff;
  background-color: #299f45;
}
::selection {
  color: #fff;
  background-color: #299f45;
}

@media screen and (min-width: 769px) {
  .mobile-only {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .desk-only {
    display: none;
  }
}

section {
  display: block;
  position: relative;
}

a {
  color: #000;
  text-decoration: none;
}

body {
  overflow-x: hidden;
  font-family: "Lato", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #000;
}

body, html {
  overflow-x: hidden;
  transform: none !important;
  perspective: none !important;
}

.logo {
  max-width: 215px;
  overflow: hidden;
  height: 45px;
  width: 100%;
}
.logo img {
  max-width: 100%;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

.btn-anim {
  position: relative;
  cursor: pointer;
  border: none;
  padding: 8px 20px;
  border-radius: 50px;
  outline: none;
  background-size: 400%;
  color: #fff;
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  background-image: linear-gradient(90deg, #31ab22, #2bd99f, #FFAA0D, #31ab22);
  font-weight: 600;
  justify-content: center;
  animation: animate 10s linear infinite;
}
.btn-anim::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  background: linear-gradient(90deg, #31ab22, #2bd99f, #FFAA0D, #31ab22);
  background-size: 400%;
  border-radius: 50px;
  opacity: 0;
  transition: 0.5s;
}
.btn-anim:hover::before {
  filter: blur(25px);
  opacity: 0.8;
  animation: animate 10s linear infinite;
}
.btn-anim img {
  filter: brightness(0) invert(1);
  max-width: 30px;
  margin-right: 10px;
}

@keyframes animate {
  0% {
    background-position: 0%;
  }
  100% {
    background-position: 400%;
  }
}
@keyframes anime {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.top-header {
  padding: 10px 0;
}

.main-header {
  border-top: 1px solid #e5e5e5;
  padding: 5px 0;
}
.main-header .navbar {
  padding: 0;
}
.main-header .navbar .nav-link {
  color: #000 !important;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 600;
}
.main-header .navbar .nav-link:hover, .main-header .navbar .nav-link:focus {
  color: #299f45 !important;
}

.main-header .dropdown-menu li a:hover {
    background-color: transparent !important;
}
@media screen and (min-width: 992px) {
  .main-header .navbar {
    line-height: 3rem;
  }
  .main-header .navbar .dropdown-menu {
    line-height: initial;
  }
  .main-header .navbar .dropdown .dropdown-menu {
    display: none;
  }
  .main-header .navbar .dropdown .dropdown-menu li {
    display: none;
  }
  .main-header .navbar .dropdown:hover .dropdown-menu li {
    display: block;
  }
  .main-header .navbar .dropdown:hover .menu4 {
    perspective: 1000px;
  }
  .main-header .navbar .dropdown:hover .menu4 li {
    opacity: 0;
  }
  .main-header .navbar .dropdown:hover > .dropdown-menu {
    display: block;
    margin-top: -0.5rem;
  }
}
.main-header .dropdown-menu {
  background-color: transparent;
  border: 0;
}
.main-header .dropdown-menu li {
  background-color: #299f45 !important;
  padding: 10px;
}
.main-header .dropdown-menu li a {
  color: #fff !important;
}
.main-header .dropdown-menu li:last-child {
  border-radius: 0px 0px 5px 5px;
}
.main-header .menu4 {
  perspective: 1000px;
}
.main-header li:hover ul.dropdown-menu.menu4 li:nth-child(1) {
  animation: m4 400ms ease-in;
  animation-fill-mode: forwards;
  animation-delay: 0;
}
.main-header li:hover ul.dropdown-menu.menu4 li:nth-child(2) {
  animation: m4 400ms ease-in-out;
  animation-fill-mode: forwards;
  animation-delay: 200ms;
}
.main-header li:hover ul.dropdown-menu.menu4 li:nth-child(3) {
  animation: m4 400ms ease-in-out;
  animation-fill-mode: forwards;
  animation-delay: 400ms;
}
.main-header li:hover ul.dropdown-menu.menu4 li:nth-child(4) {
  animation: m4 400ms ease-in-out;
  animation-fill-mode: forwards;
  animation-delay: 600ms;
}
.main-header li:hover ul.dropdown-menu.menu4 li:nth-child(5) {
  animation: m4 400ms ease-in-out;
  animation-fill-mode: forwards;
  animation-delay: 800ms;
}
.main-header li:hover ul.dropdown-menu.menu4 li:nth-child(6) {
  animation: m4 400ms ease-in-out;
  animation-fill-mode: forwards;
  animation-delay: 1000ms;
}
@keyframes m4 {
  0% {
    opacity: 0;
    transform: translateX(100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0px);
  }
}

.mm-menu--opened {
  z-index: 3;
}

.is-sticky .top-header {
  background-color: #fff;
  z-index: 5555 !important;
}

.hero-section .slick-dotted.slick-slider {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .hero-section .slider, .hero-section .slide {
    height: 60vh;
  }
}
.hero-section .slick-dots li button:before {
  display: none;
}
.hero-section .slide {
  position: relative;
}
.hero-section .slide .slide__img {
  width: 100%;
  height: auto;
  overflow: hidden;
}
@media (min-width: 992px) {
  .hero-section .slide .slide__img {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }
}
.hero-section .slide .slide__img img {
  max-width: 100%;
  height: auto;
  opacity: 1 !important;
  animation-duration: 3s;
  transition: all 1s ease;
}
.hero-section .slide .slide__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.hero-section .slide .slide__content--headings {
  text-align: center;
  color: #FFF;
}
.hero-section .slide .slide__content--headings h2 {
  font-size: 4.5rem;
  margin: 10px 0;
}
.hero-section .slide .slide__content--headings .animated {
  transition: all 0.5s ease;
}
.hero-section .slider [data-animation-in] {
  opacity: 0;
  animation-duration: 1.5s;
  transition: opacity 0.5s ease 0.3s;
}
.hero-section .slick-dotted .slick-slider {
  margin-bottom: 30px;
}
.hero-section .slick-dots {
  position: absolute;
  bottom: 25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .hero-section .slick-dots {
    display: none !important;
  }
}
.hero-section .slick-dots li {
  position: relative;
  display: inline-block;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.hero-section .slick-dots li button {
  border: 0;
  display: block;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.hero-section .slick-dots li button:hover, .hero-section .slick-dots li button:focus {
  outline: none;
}
.hero-section .simple-dots .slick-dots li {
  width: 20px;
  height: 20px;
}
.hero-section .simple-dots .slick-dots li button {
  border-radius: 50%;
  background-color: white;
  opacity: 0.25;
  width: 20px;
  height: 20px;
}
.hero-section .simple-dots .slick-dots li button:hover, .hero-section .simple-dots .slick-dots li button:focus {
  opacity: 1;
}
.hero-section .simple-dots .slick-dots li.slick-active button {
  color: white;
  opacity: 0.75;
}
.hero-section .stick-dots .slick-dots li {
  height: 3px;
  width: 50px;
}
.hero-section .stick-dots .slick-dots li button {
  position: relative;
  background-color: white;
  opacity: 0.25;
  width: 50px;
  height: 3px;
  padding: 0;
}
.hero-section .stick-dots .slick-dots li button:hover, .hero-section .stick-dots .slick-dots li button:focus {
  opacity: 1;
}
.hero-section .stick-dots .slick-dots li.slick-active button {
  color: white;
  opacity: 0.75;
}
.hero-section .stick-dots .slick-dots li.slick-active button:hover, .hero-section .stick-dots .slick-dots li.slick-active button:focus {
  opacity: 1;
}
@keyframes zoomInImage {
  from {
    transform: scale3d(1, 1, 1);
  }
  to {
    transform: scale3d(1.1, 1.1, 1.1);
  }
}
.hero-section .zoomInImage {
  animation-name: zoomInImage;
}
@keyframes zoomOutImage {
  from {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.hero-section .zoomOutImage {
  animation-name: zoomOutImage;
}

.btn-theme, .product-item .product-info .btn-view {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 0 20px 0 20px;
  background-color: #299f45;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease, border-radius 0.3s ease;
}
.btn-theme:hover, .product-item .product-info .btn-view:hover {
  background-color: #1f7633;
  color: #fff;
  border-radius: 0;
}

.btn-theme2 {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 0 20px 0 20px;
  background-color: #ff8d00;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease, border-radius 0.3s ease;
}
.btn-theme2:hover {
  background-color: #cc7100;
  color: #fff;
  border-radius: 0;
}

.btn-theme3 {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 0 20px 0 20px;
  background-color: #5e6b2d;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease, border-radius 0.3s ease;
}
.btn-theme3:hover {
  background-color: #3e471e;
  color: #fff;
  border-radius: 0;
}

.product-slick-sec {
  padding: 50px 0 20px 0;
  position: relative;
}
.product-slick-sec .product-slider .slick-slide {
  margin: 10px;
}
.product-slick-sec .slick-prev, .product-slick-sec .slick-next {
  background-size: 10px;
  margin-top: -20px;
  transition: all 0.3s ease-in-out;
  height: 40px;
  width: 40px;
  border-radius: 50%;
}
.product-slick-sec .slick-prev {
  left: -35px;
  z-index: 1;
  background: #299f45 url(../img/arrowLft.png) no-repeat center center;
}
.product-slick-sec .slick-prev:before {
  opacity: 0;
}
.product-slick-sec .slick-next {
  right: -35px;
  background: #299f45 url(../img/arrowRht.png) no-repeat center center;
}
.product-slick-sec .slick-next:before {
  opacity: 0;
}
.product-slick-sec .slick-dots li button {
  background: #299f45;
  border-radius: 50%;
  width: 10px;
  height: 10px;
}
.product-slick-sec .slick-dots li.slick-active button {
  background: #0a4c0d;
}
.product-slick-sec .slick-dots li button:before {
  opacity: 0;
}

.product-item {
  padding: 10px;
  border-radius: 10px;
  background-color: #fff;
  border: 1px solid #e5e5e5;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: all ease-in-out 0.5s;
}
.product-item:hover {
  box-shadow: 0 6.5px 15.5px 3px #dddddd;
}
.product-item:hover .product-img img {
  transform: scale(1.1, 1.1) rotate(5deg);
}
.product-item .product-img {
  border-radius: 10px;
  width: 100%;
  height: 250px;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 768px) {
  .product-item .product-img {
    height: 130px;
  }
}
.product-item .product-img img {
  max-width: 100%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: all ease-in-out 0.5s;
}
.product-item .product-info {
  text-align: center;
  padding: 15px;
}
@media screen and (max-width: 768px) {
  .product-item .product-info {
    padding: 10px 0;
  }
}
.product-item .product-info h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .product-item .product-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0;
  }
}
.product-item .product-info p {
  font-size: 1rem;
  color: #666;
}
.product-item .product-info .btn-view {
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .product-item .product-info .btn-view {
    padding: 5px;
    width: 100%;
  }
}

.module-title {
  position: relative;
  display: block;
  margin-top: 30px;
  margin-bottom: 30px;
  text-align: center;
}
.module-title .sub-title {
  font-size: 20px;
  color: #7e7e7e;
  text-transform: none;
  font-style: italic;
  margin-bottom: 3px;
}
.module-title h2 {
  position: relative;
  text-transform: uppercase;
  font-size: 46px;
  margin: 0;
  font-weight: 900;
  padding-bottom: 25px;
  color: #0a4c0d;
}
@media screen and (max-width: 768px) {
  .module-title h2 {
    font-size: 28px;
    margin: 15px 0;
  }
}
.module-title h2:after, .module-title h2:before {
  content: "";
  width: 40px;
  height: 1px;
  background: #ff8d00;
  position: absolute;
  bottom: 0;
  left: 50%;
  margin-left: -10px;
}
.module-title h2:before {
  bottom: 6px;
  margin-left: -30px;
}

.parallax-banner {
  padding: 30px 0 30px 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .parallax-banner {
    padding: 10px 0;
  }
}

.hp-product-left-slider-container {
  max-width: 450px;
  width: 100%;
  margin-left: auto;
  margin-top: 0;
  position: relative;
}
.hp-product-left-slider-container .slick-prev, .hp-product-left-slider-container .slick-next {
  top: calc(100% + 40px);
  background-size: 10px;
  margin-top: -20px;
  transition: all 0.3s ease-in-out;
  height: 40px;
  width: 40px;
  border-radius: 50%;
}
.hp-product-left-slider-container .slick-prev {
  left: calc(50% - 50px);
  background: #f99d00 url(../img/arrowLft.png) no-repeat center center;
}
.hp-product-left-slider-container .slick-prev:before {
  opacity: 0;
}
.hp-product-left-slider-container .slick-next {
  right: calc(50% - 50px);
  background: #f99d00 url(../img/arrowRht.png) no-repeat center center;
}
.hp-product-left-slider-container .slick-next:before {
  opacity: 0;
}

@keyframes rotate-clock {
  0% {
    -webkit-transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(45deg);
  }
}
.custom-style-1-sec {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 0 50px 0;
  position: relative;
  background-color: #FEF3E2;
  background-position: left;
  background-size: contain;
  background-repeat: no-repeat;
  background-attachment: local;
}
@media screen and (max-width: 768px) {
  .custom-style-1-sec {
    background-image: none !important;
    min-height: auto;
    padding: 20px 0;
  }
}
.custom-style-1-sec .logo {
  -o-object-fit: contain;
     object-fit: contain;
}
.custom-style-1-sec .gradient-text-green {
  font-family: "Poppins", sans-serif;
  background: url(../img/text-bg.jpg) center center repeat text;
  font-weight: 800;
  font-size: 4.8rem;
  -webkit-text-fill-color: transparent;
  text-align: left;
  margin: 30px 0;
  background-size: cover;
  text-transform: capitalize;
}
@media screen and (max-width: 768px) {
  .custom-style-1-sec .gradient-text-green {
    font-size: 2.8rem;
  }
}
.custom-style-1-sec .topSlider1 {
  padding: 40px 40px 0;
}
@media screen and (max-width: 768px) {
  .custom-style-1-sec .topSlider1 {
    padding: 15px;
  }
}
.custom-style-1-sec .img-bg-anim {
  -webkit-animation: rotate-clock 30s infinite linear;
  position: absolute;
  top: 0;
  width: 100%;
  left: 0;
  right: 0;
  margin: 0 auto;
  animation: rotate-clock 30s infinite linear;
  height: 440px;
  background-image: url(../img/circ.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .custom-style-1-sec .img-bg-anim {
    position: absolute;
    top: -15px;
    height: 100%;
  }
}
.custom-style-1-sec .topSliderDiv1 {
  height: 360px;
  overflow: hidden;
  position: relative;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .custom-style-1-sec .topSliderDiv1 {
    height: 260px;
  }
}
.custom-style-1-sec .topSliderDiv1 img {
  max-width: 100%;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.custom-style-1-sec .slick-prev, .custom-style-1-sec .slick-next {
  background-color: #299f45;
}
@media screen and (max-width: 768px) {
  .custom-style-1-sec .slick-prev, .custom-style-1-sec .slick-next {
    display: none !important;
  }
}

.custom-style-2-sec {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 0 50px 0;
  position: relative;
  background-color: #fffcd0;
  background-position: right;
  background-size: contain;
  background-repeat: no-repeat;
  background-attachment: local;
}
@media screen and (max-width: 768px) {
  .custom-style-2-sec {
    background-image: none !important;
    min-height: auto;
    padding: 20px 0;
  }
}
.custom-style-2-sec .logo {
  -o-object-fit: contain;
     object-fit: contain;
}
.custom-style-2-sec .gradient-text-green {
  font-family: "Poppins", sans-serif;
  background: url(../img/text-bg1.jpg) center center repeat text;
  font-weight: 800;
  font-size: 4.8rem;
  -webkit-text-fill-color: transparent;
  text-align: left;
  margin: 30px 0;
  background-size: cover;
  text-transform: capitalize;
}
@media screen and (max-width: 768px) {
  .custom-style-2-sec .gradient-text-green {
    font-size: 2.8rem;
  }
}
.custom-style-2-sec .hp-product-left-slider-container {
  max-width: 450px;
  width: 100%;
  margin-right: auto;
  margin-top: 0;
  position: relative;
  margin-left: 0;
}
.custom-style-2-sec .topSlider1 {
  padding: 50px 50px 0;
}
@media screen and (max-width: 768px) {
  .custom-style-2-sec .topSlider1 {
    padding: 15px;
  }
}
.custom-style-2-sec .topSliderDiv1 {
  height: 350px;
  overflow: hidden;
  position: relative;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .custom-style-2-sec .topSliderDiv1 {
    height: 260px;
  }
}
.custom-style-2-sec .topSliderDiv1 img {
  max-width: 100%;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.custom-style-2-sec .img-bg-anim {
  -webkit-animation: rotate-clock 30s infinite linear;
  position: absolute;
  top: 0;
  width: 100%;
  left: 0;
  right: 0;
  margin: 0 auto;
  animation: rotate-clock 30s infinite linear;
  height: 440px;
  background-image: url(../img/circ.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .custom-style-2-sec .img-bg-anim {
    position: absolute;
    top: -15px;
    height: 100%;
  }
}
@media screen and (max-width: 768px) {
  .custom-style-2-sec .slick-prev, .custom-style-2-sec .slick-next {
    display: none !important;
  }
}

.custom-style-3-sec {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 0 50px 0;
  position: relative;
  background-color: #f1ffbd;
  background-position: left;
  background-size: contain;
  background-repeat: no-repeat;
  background-attachment: local;
}
@media screen and (max-width: 768px) {
  .custom-style-3-sec {
    background-image: none !important;
    min-height: auto;
    padding: 20px 0;
  }
}
.custom-style-3-sec .logo {
  -o-object-fit: contain;
     object-fit: contain;
}
.custom-style-3-sec .gradient-text-green {
  font-family: "Poppins", sans-serif;
  background: url(../img/text-bg2.jpg) center center repeat text;
  font-weight: 800;
  font-size: 4.8rem;
  -webkit-text-fill-color: transparent;
  text-align: left;
  margin: 30px 0;
  background-size: cover;
  text-transform: capitalize;
}
@media screen and (max-width: 768px) {
  .custom-style-3-sec .gradient-text-green {
    font-size: 2.8rem;
  }
}
.custom-style-3-sec .topSlider1 {
  padding: 40px 40px 0;
}
@media screen and (max-width: 768px) {
  .custom-style-3-sec .topSlider1 {
    padding: 15px;
  }
}
.custom-style-3-sec .img-bg-anim {
  -webkit-animation: rotate-clock 30s infinite linear;
  position: absolute;
  top: 0;
  width: 100%;
  left: 0;
  right: 0;
  margin: 0 auto;
  animation: rotate-clock 30s infinite linear;
  height: 440px;
  background-image: url(../img/circ.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .custom-style-3-sec .img-bg-anim {
    position: absolute;
    top: -15px;
    height: 100%;
  }
}
.custom-style-3-sec .topSliderDiv1 {
  height: 360px;
  overflow: hidden;
  position: relative;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .custom-style-3-sec .topSliderDiv1 {
    height: 260px;
  }
}
.custom-style-3-sec .topSliderDiv1 img {
  max-width: 100%;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.custom-style-3-sec .slick-prev, .custom-style-3-sec .slick-next {
  background-color: #5e6b2d;
}
@media screen and (max-width: 768px) {
  .custom-style-3-sec .slick-prev, .custom-style-3-sec .slick-next {
    display: none !important;
  }
}

.testimonials-sec {
  padding: 50px 0 50px 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .testimonials-sec {
    padding: 20px 0;
  }
}
.testimonials-sec .slick-slide {
  margin: 10px;
}
.testimonials-sec .item-inner {
  position: relative;
  border-radius: 35px;
  padding: 20px;
  border: 1px solid #e5e5e5;
  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  text-align: center;
  transition: all 300ms ease-in-out;
  box-shadow: 1px 1px 0 0 #e5e5e5;
}
.testimonials-sec .item-inner:hover {
  border-color: #e5e5e5 !important;
  box-shadow: 0 0 9px 1px rgba(0, 0, 0, 0.12) !important;
}
.testimonials-sec .item-inner .testimonial-images {
  display: inline-block;
  border-radius: 100%;
  overflow: hidden;
  margin: 10px 0;
}
.testimonials-sec .item-inner .testimonial-images img {
  max-width: 100%;
  width: 100%;
  height: 100px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.testimonials-sec .item-inner .testimonial-box a {
  font-weight: 400;
  line-height: 30px;
  text-transform: none;
  display: block;
  color: #767676;
}
.testimonials-sec .item-inner .testimonial-author {
  font-size: 16px;
  text-transform: capitalize;
  color: #000;
  margin: 5px 0 10px;
}
.testimonials-sec .item-inner .testimonial-content .title {
  margin-top: 20px;
  margin-bottom: 12px;
}
.testimonials-sec .item-inner .testimonial-content .title a {
  font-size: 18px;
  color: #454545;
}
.testimonials-sec .slick-prev, .testimonials-sec .slick-next {
  background-size: 10px;
  margin-top: -20px;
  transition: all 0.3s ease-in-out;
  height: 40px;
  width: 40px;
  border-radius: 50%;
}
.testimonials-sec .slick-prev {
  left: -35px;
  z-index: 1;
  background: #299f45 url(../img/arrowLft.png) no-repeat center center;
}
.testimonials-sec .slick-prev:before {
  opacity: 0;
}
.testimonials-sec .slick-next {
  right: -35px;
  background: #299f45 url(../img/arrowRht.png) no-repeat center center;
}
.testimonials-sec .slick-next:before {
  opacity: 0;
}
.testimonials-sec .slick-dots li button {
  background: #299f45;
  border-radius: 50%;
  width: 10px;
  height: 10px;
}
.testimonials-sec .slick-dots li.slick-active button {
  background: #0a4c0d;
}
.testimonials-sec .slick-dots li button:before {
  opacity: 0;
}

footer .footer-top {
  padding: 50px 0 50px 0;
  position: relative;
  background-color: #f4f4f4;
}
@media screen and (max-width: 768px) {
  footer .footer-top {
    padding: 30px 0 30px 0;
    position: relative;
  }
}
footer .footer-top h4 {
  color: #299f45;
  font-weight: 900;
}
footer .ft-img {
  max-width: 100%;
  width: 100%;
  margin-bottom: 30px;
}
footer .copyright {
  text-align: center;
  padding: 15px 0;
  background-color: #299f45;
}
footer .copyright p {
  margin: 0;
  opacity: 1;
  color: #fff;
}
footer .footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
footer .footer-list li {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
}
footer .footer-list li i {
  opacity: 0.8;
  color: #299f45;
}
footer .footer-list li a {
  padding: 6px 0;
}
footer .contact-information {
  list-style: none;
  padding: 0;
  margin: 0;
}
footer .contact-information li {
  padding: 10px 0;
  display: flex;
  gap: 10px;
  align-items: first baseline;
}
footer .contact-information li i {
  opacity: 0.8;
  color: #299f45;
}

.is-sticky .main-header {
  z-index: 5555 !important;
  background-color: #299f45;
}
.is-sticky .main-header .nav-link {
  color: #ffffff !important;
}
.is-sticky .main-header .nav-link:hover {
  color: #ffd900 !important;
}

@media screen and (min-width: 769px) {
  #menu {
    display: none;
  }
}
.event-sec {
  padding: 50px 0 50px 0;
  position: relative;
  background-color: #f4f4f4;
}
.event-sec .card-event {
  overflow: hidden;
}
.event-sec .card-event img {
  max-width: 100%;
  width: 100%;
  height: 220px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: all ease-in-out 0.3s;
}
.event-sec .card-event:hover img {
  transform: scale(1.1, 1.1);
}

.label-sec {
  padding: 50px 0 50px 0;
  position: relative;
}
.label-sec img {
  max-width: 100%;
  width: 100%;
  height: 105px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

.feature-sec {
  padding: 50px 0 50px 0;
  position: relative;
  background-color: #e6ffe3;
}
.feature-sec .ft-box {
  padding: 15px 10px;
  border-radius: 15px;
  text-align: center;
  background-color: #fff;
  box-shadow: 13px 12px 0px -4px #299f45;
  border: 1px solid #299f45;
  transition: all linear 0.3s;
}
.feature-sec .ft-box img {
  max-width: 100%;
  width: 100%;
  height: 120px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  margin-bottom: 15px;
}
.feature-sec .ft-box p {
  margin: 0;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .feature-sec .ft-box p {
    min-height: 52px;
  }
}
.feature-sec .ft-box:hover {
  transform: translateY(-20px);
}

.upper-banner-sec {
  padding: 50px 0 100px 0;
  position: relative;
  background-color: #e6ffe3;
  background-image: url(../img/bg-ab.png);
  background-position: top;
  background-size: 100% auto;
  background-repeat: no-repeat;
}
.upper-banner-sec .main-img {
  max-width: 50%;
  width: 100%;
  margin: 0 auto 30px;
  display: block;
}
.upper-banner-sec h1 {
  font-family: "Poppins", sans-serif;
  background: url(../img/text-bg.jpg) center center repeat text;
  font-weight: 800;
  font-size: 3.8rem;
  -webkit-text-fill-color: transparent;
  background-size: cover;
  margin-bottom: 30px;
  text-transform: capitalize;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .upper-banner-sec h1 {
    font-size: 2.8rem;
  }
}
.upper-banner-sec p {
  line-height: 1.8;
  font-size: 20px;
  text-align: center;
}
.upper-banner-sec:after {
  content: "";
  background-image: url("../img/white-fade-1.webp") !important;
  height: 264px !important;
  bottom: 0px !important;
  position: absolute !important;
  z-index: 2;
  left: 0;
  width: 100%;
}

.upper-banner-sec2 {
  padding: 50px 0 100px 0;
  position: relative;
  background-color: #e6ffe3;
  background-position: top;
  background-size: 100% auto;
  background-image: url(../img/bg-ab2.png);
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .upper-banner-sec2 {
    padding: 50px 0 30px 0;
    position: relative;
  }
}
.upper-banner-sec2 .main-img {
  max-width: 50%;
  width: 100%;
  margin: 0 auto 30px;
  display: block;
}
.upper-banner-sec2 h1 {
  font-family: "Poppins", sans-serif;
  background: url(../img/text-bg.jpg) center center repeat text;
  font-weight: 800;
  font-size: 3.8rem;
  -webkit-text-fill-color: transparent;
  background-size: cover;
  margin-bottom: 30px;
  text-transform: capitalize;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .upper-banner-sec2 h1 {
    font-size: 2rem;
  }
}
.upper-banner-sec2 p {
  line-height: 1.8;
  font-size: 20px;
  text-align: center;
  max-width: 80%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .upper-banner-sec2 p {
    max-width: 100%;
  }
}
.upper-banner-sec2 .container {
  position: relative;
  z-index: 3;
}
.upper-banner-sec2:after {
  content: "";
  background-image: url("../img/white-fade-1.webp") !important;
  height: 264px !important;
  bottom: 0px !important;
  position: absolute !important;
  z-index: 2;
  left: 0;
  width: 100%;
}

.about-extend-sec {
  padding: 10px 0 0 0;
  position: relative;
}
.about-extend-sec .shape1 {
  position: absolute;
  top: 40%;
  left: 0;
  z-index: -1;
  width: 170px;
  height: 105px;
  background-image: url(../img/leaf1.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.about-extend-sec .shape2 {
  position: absolute;
  top: 80%;
  right: -30px;
  z-index: -1;
  width: 170px;
  height: 105px;
  background-image: url(../img/leaf2.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.about-extend-sec h3 {
  font-family: "Poppins", sans-serif;
  background: url(../img/text-bg.jpg) center center repeat text;
  font-weight: 800;
  font-size: 3.1rem;
  -webkit-text-fill-color: transparent;
  background-size: cover;
  margin-bottom: 20px;
  text-transform: capitalize;
}
@media screen and (max-width: 768px) {
  .about-extend-sec h3 {
    font-size: 2.8rem;
  }
}
.about-extend-sec p {
  line-height: 1.8;
  font-size: 20px;
}

.news-ticker {
  background-color: #299f45;
  border: 1px solid #dee2e6;
  padding: 0.5rem 1rem;
  overflow: hidden;
  background: linear-gradient(45deg, #32ac48, #08723a);
}
.news-ticker .label {
  font-weight: bold;
  margin-right: 1rem;
  color: #fff;
  white-space: nowrap;
}
.news-ticker .news-marquee {
  width: 100%;
  color: #fff;
}

.upper-banner-sec3 {
  padding: 50px 0 100px 0;
  position: relative;
  background-color: #e6ffe3;
  background-position: top;
  background-size: 100% auto;
  background-image: url(../img/bg-ab2.png);
  background-repeat: no-repeat;
}
.upper-banner-sec3 .main-img {
  max-width: 100%;
  width: 100%;
}
.upper-banner-sec3 .topSlider2 {
  z-index: 5 !important;
}
.upper-banner-sec3 .topSlider2 .main-img {
  max-width: 100%;
  width: 100%;
  height: 500px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.upper-banner-sec3 h1 {
  font-family: "Poppins", sans-serif;
  background: url(../img/text-bg.jpg) center center repeat text;
  font-weight: 800;
  font-size: 4.2rem;
  -webkit-text-fill-color: transparent;
  background-size: cover;
  margin-bottom: 30px;
  text-transform: capitalize;
}
@media screen and (max-width: 768px) {
  .upper-banner-sec3 h1 {
    font-size: 2.8rem;
  }
}
.upper-banner-sec3 p {
  line-height: 1.8;
  font-size: 20px;
}
.upper-banner-sec3:after {
  content: "";
  background-image: url("../img/white-fade-1.webp") !important;
  height: 264px !important;
  bottom: 0px !important;
  position: absolute !important;
  z-index: 2;
  left: 0;
  width: 100%;
}
.upper-banner-sec3 .slick-prev, .upper-banner-sec3 .slick-next {
  background-color: #299f45;
}
@media screen and (max-width: 768px) {
  .upper-banner-sec3 .slick-prev, .upper-banner-sec3 .slick-next {
    display: none !important;
  }
}
.upper-banner-sec3 .slick-dots li button {
  background: #299f45;
  border-radius: 50%;
  width: 10px;
  height: 10px;
}
.upper-banner-sec3 .slick-dots li.slick-active button {
  background: #0a4c0d;
}
.upper-banner-sec3 .slick-dots li button:before {
  opacity: 0;
}
.upper-banner-sec3 .slick-prev, .upper-banner-sec3 .slick-next {
  top: calc(100% + 40px);
  background-size: 10px;
  transition: all 0.3s ease-in-out;
  height: 30px;
  width: 30px;
  border-radius: 50%;
}
.upper-banner-sec3 .slick-prev {
  left: calc(50% - 40px);
  background-size: 10px auto !important;
  background: #299f45 url(../img/arrowLft.png) no-repeat center center;
}
.upper-banner-sec3 .slick-prev:before {
  opacity: 0;
}
.upper-banner-sec3 .slick-next {
  right: calc(50% - 40px);
  background-size: 10px auto !important;
  background: #299f45 url(../img/arrowRht.png) no-repeat center center;
}
.upper-banner-sec3 .slick-next:before {
  opacity: 0;
}
@media screen and (max-width: 768px) {
  .upper-banner-sec3 .slick-dots {
    margin-bottom: 15px;
  }
}

.benefits-sec {
  padding: 10px 0 50px 0;
  position: relative;
}
.benefits-sec h3 {
  font-family: "Poppins", sans-serif;
  background: url(../img/text-bg.jpg) center center repeat text;
  font-weight: 800;
  font-size: 3.2rem;
  -webkit-text-fill-color: transparent;
  background-size: cover;
  margin-bottom: 30px;
  text-transform: capitalize;
}
@media screen and (max-width: 768px) {
  .benefits-sec h3 {
    font-size: 2.8rem;
  }
}
.benefits-sec .bs-box {
  padding: 25px;
  border-radius: 15px;
  height: 100%;
  color: #fff;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 15px;
}
.benefits-sec .bs-box p {
  margin: 0;
  color: #fff;
  font-size: 18px;
  line-height: 1.8;
}
.benefits-sec .bs-box h4 {
  color: #fff;
  font-size: 74px;
  font-weight: 900;
  margin: 0;
}
.benefits-sec .points-row .col:nth-child(4n+1) .bs-box {
  background-color: #ea9a21;
}
.benefits-sec .points-row .col:nth-child(4n+2) .bs-box {
  background-color: #ed5c3b;
}
.benefits-sec .points-row .col:nth-child(4n+3) .bs-box {
  background-color: #2192f3;
}
.benefits-sec .points-row .col:nth-child(4n+4) .bs-box {
  background-color: #279e4a;
}

.diff-size-sec {
  padding: 50px 0 50px 0;
  position: relative;
  background-color: #e6ffe3;
}
.diff-size-sec h3 {
  font-family: "Poppins", sans-serif;
  text-align: center;
  background: url(../img/text-bg.jpg) center center repeat text;
  font-weight: 800;
  font-size: 3.2rem;
  -webkit-text-fill-color: transparent;
  background-size: cover;
  margin-bottom: 30px;
  text-transform: capitalize;
}
@media screen and (max-width: 768px) {
  .diff-size-sec h3 {
    font-size: 2.8rem;
  }
}
.diff-size-sec .mini-box {
  padding: 15px;
  text-align: center;
  background-color: #fff;
}
.diff-size-sec .mini-box img {
  max-width: 100%;
  width: 100%;
  height: 200px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  margin-bottom: 10px;
}
.diff-size-sec .mini-box h4 {
  font-size: 22px;
  font-weight: bold;
  color: #299f45;
}
.diff-size-sec .mini-box p {
  margin: 0;
  opacity: 0.7;
}

.upper-banner-sec4 {
  padding: 100px 0 100px 0;
  position: relative;
  background-color: #e6ffe3;
  background-position: top;
  background-size: 100% auto;
  background-image: url(../img/bg-ab2.png);
  background-repeat: no-repeat;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .upper-banner-sec4 {
    padding: 50px 0 30px 0;
    position: relative;
  }
}
.upper-banner-sec4 .container {
  position: relative;
  z-index: 3;
}
.upper-banner-sec4:after {
  content: "";
  background-image: url("../img/white-fade-1.webp") !important;
  height: 264px !important;
  bottom: 0px !important;
  position: absolute !important;
  z-index: 1;
  left: 0;
  width: 100%;
}
.upper-banner-sec4 h1 {
  font-family: "Poppins", sans-serif;
  background: url(../img/text-bg.jpg) center center repeat text;
  font-weight: 800;
  font-size: 4.2rem;
  -webkit-text-fill-color: transparent;
  background-size: cover;
  margin-bottom: 30px;
  text-transform: capitalize;
}
@media screen and (max-width: 768px) {
  .upper-banner-sec4 h1 {
    font-size: 2.4rem;
  }
}
.upper-banner-sec4 .contact-box {
  text-align: center;
  padding: 15px;
}
@media screen and (max-width: 768px) {
  .upper-banner-sec4 .contact-box {
    padding: 5px;
  }
}
.upper-banner-sec4 .contact-box .icon {
  height: 120px;
  overflow: hidden;
  max-width: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 0 auto 15px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.upper-banner-sec4 .contact-box .icon img {
  max-width: 100%;
  width: 100%;
  height: 80%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  padding: 20px;
}
.upper-banner-sec4 .contact-box h4 {
  margin: 0 0 10px;
  font-weight: bold;
  font-size: 20px;
}
.upper-banner-sec4 .contact-box p {
  line-height: 1.8;
  font-size: 16px;
  margin-bottom: 0;
}
.upper-banner-sec4 .contact-row .col-md-3:nth-child(4n+1) .contact-box .icon {
  background-image: url("../img/shape1.png");
}
.upper-banner-sec4 .contact-row .col-md-3:nth-child(4n+2) .contact-box .icon {
  background-image: url("../img/shape2.png");
}
.upper-banner-sec4 .contact-row .col-md-3:nth-child(4n+3) .contact-box .icon {
  background-image: url("../img/shape3.png");
}
.upper-banner-sec4 .contact-row .col-md-3:nth-child(4n+4) .contact-box .icon {
  background-image: url("../img/shape4.png");
}

.map-form-sec {
  padding: 50px 0 50px 0;
  position: relative;
}
.map-form-sec h3 {
  color: #000;
}
.map-form-sec .form-control {
  border-radius: 5px;
  height: auto;
  border-color: #797979;
}
.map-form-sec .card {
  box-shadow: 9px 9px 0px 0px #0a4c0d;
  border-color: #0a4c0d;
}
@media screen and (max-width: 768px) {
  .map-form-sec iframe {
    height: 400px;
  }
}

.upper-banner-sec5 {
  padding: 50px 0 100px 0;
  position: relative;
  background-color: #e6ffe3;
  background-position: top;
  background-size: 100% auto;
  background-image: url(../img/bg-ab2.png);
  background-repeat: no-repeat;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .upper-banner-sec5 {
    padding: 50px 0 30px 0;
    position: relative;
  }
}
.upper-banner-sec5 .container {
  position: relative;
  z-index: 3;
}
.upper-banner-sec5 h1 {
  font-family: "Poppins", sans-serif;
  background: url(../img/text-bg.jpg) center center repeat text;
  font-weight: 800;
  font-size: 4.2rem;
  -webkit-text-fill-color: transparent;
  background-size: cover;
  margin-bottom: 30px;
  text-transform: capitalize;
}
@media screen and (max-width: 768px) {
  .upper-banner-sec5 h1 {
    font-size: 2.4rem;
  }
}
.upper-banner-sec5 p {
  line-height: 1.8;
  font-size: 20px;
}
.upper-banner-sec5:after {
  content: "";
  background-image: url("../img/white-fade-1.webp") !important;
  height: 264px !important;
  bottom: 0px !important;
  position: absolute !important;
  z-index: 2;
  left: 0;
  width: 100%;
}

.media-sec {
  padding: 50px 0 50px 0;
  position: relative;
}
.media-sec .media-box {
  position: relative;
  text-align: center;
  overflow: hidden;
  transition: all linear 0.3s;
  background-color: #299f45;
  border-radius: 15px;
  border: 1px solid #ccc;
}
.media-sec .media-box .pic {
  max-width: 100%;
  width: 100%;
  height: 250px;
  overflow: hidden;
  transition: all linear 0.3s;
}
@media screen and (max-width: 768px) {
  .media-sec .media-box .pic {
    height: 145px;
  }
}
.media-sec .media-box .pic img {
  max-width: 100%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: all linear 0.3s;
}
.media-sec .media-box:hover .pic img {
  transform: scale(1.1, 1.1);
}
.media-sec .media-box p {
  padding: 10px;
  color: #fff;
  text-align: center;
  display: -webkit-box;
  line-clamp: 1;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
}

.products-sec {
  padding: 50px 0 50px 0;
  position: relative;
}

.mm-menu {
  --mm-color-background: #299f45;
  --mm-color-text: #fff;
}

.career-sec {
  padding: 10px 0 50px 0;
  position: relative;
}
.career-sec .ul-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.career-sec .ul-list li {
  margin-bottom: 10px;
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  gap: 10px;
}
.career-sec .ul-list li i {
  color: #299f45;
}
.career-sec h4 {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 36px;
  margin-bottom: 20px;
  color: rgb(13, 102, 34);
}

.content-extend-sec {
  padding: 10px 0 50px 0;
  position: relative;
}
.content-extend-sec .shape1 {
  position: absolute;
  top: 40%;
  left: 0;
  z-index: -1;
  width: 170px;
  height: 105px;
  background-image: url(../img/leaf1.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.content-extend-sec .shape2 {
  position: absolute;
  top: 80%;
  right: -30px;
  z-index: -1;
  width: 170px;
  height: 105px;
  background-image: url(../img/leaf2.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.content-extend-sec h4 {
  font-family: "Poppins", sans-serif;
  background: url(../img/text-bg.jpg) center center repeat text;
  font-weight: 800;
  font-size: 1.8rem;
  -webkit-text-fill-color: transparent;
  background-size: cover;
  margin-bottom: 20px;
  text-transform: capitalize;
}
@media screen and (max-width: 768px) {
  .content-extend-sec h4 {
    font-size: 1.5rem;
  }
}
.content-extend-sec p {
  line-height: 1.8;
  font-size: 20px;
  text-align: justify;
}
.content-extend-sec video {
  max-width: 500px;
  width: 100%;
}

.event-page-sec {
  padding: 50px 0 50px 0;
  position: relative;
}
.event-page-sec p {
  line-height: 1.8;
  font-size: 20px;
  text-align: justify;
}
.event-page-sec .card-event {
  overflow: hidden;
  transition: all linear 0.3s;
}
.event-page-sec .card-event img {
  max-width: 100%;
  width: 100%;
  height: 220px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: all ease-in-out 0.3s;
}
.event-page-sec .card-event:hover {
  box-shadow: 0px 8px 18px -5px #a7a7a7;
}
.event-page-sec .card-event:hover img {
  transform: scale(1.1, 1.1);
}
.event-page-sec h4 {
  color: #000;
  font-weight: bold;
}

.event-details-sec {
  padding: 50px 0 50px 0;
  position: relative;
}
.event-details-sec h3 {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 2.4rem;
  color: rgb(13, 102, 34);
  margin-bottom: 20px;
  text-transform: capitalize;
}
@media screen and (max-width: 768px) {
  .event-details-sec h3 {
    font-size: 1.5rem;
  }
}
.event-details-sec p {
  line-height: 1.8;
  font-size: 20px;
  text-align: justify;
}
.event-details-sec img {
  margin-bottom: 30px;
}
.event-details-sec .card-event-mini {
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  padding: 8px;
  border: 1px solid #e9e9e9;
  box-shadow: 0 0 18px 5px #f1f1f1;
}
.event-details-sec .card-event-mini img {
  max-width: 100%;
  width: 100%;
  height: 50px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 5px;
  max-width: 50px;
  margin: 0;
}
.event-details-sec .card-event-mini p {
  margin: 0;
  font-size: 13px;
  opacity: 0.7;
  line-height: 1.4;
  text-align: left;
}
.event-details-sec .card-event-mini h4 {
  margin-bottom: 5px;
  margin-top: 0;
  text-align: left;
  font-size: 18px;
  font-weight: bold;
  display: -webkit-box;
  line-clamp: 1;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  width: 100%;
}
.event-details-sec .widget h4 {
  font-weight: bolder;
  margin-bottom: 5px;
  color: #000;
}
.event-details-sec .widget li {
  margin-bottom: 10px;
}

.share__box {
  --clr-primary: #03a9f4;
  --clr-accent: #060606;
  --clr-icon: #878787;
  --clr-border: #ebedf9;
  --clr-light: #ffffff;
  --clr-dark: #111111;
  --transition: all 0.2s ease;
  --clr-facebook: #1877f2;
  --clr-twitter: #46c1f6;
  --clr-instagram: #e1306c;
  --clr-whatsapp: #25d366;
  --clr-linkedin: #0072b1;
  display: flex;
  flex-direction: column;
  width: 100%;
  border-radius: 15px;
  text-align: center;
}
.share__box .share-header {
  display: flex;
  align-items: center;
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid var(--clr-border);
}
.share__box .share-header h2 {
  font-size: 1.4rem;
  color: var(--clr-accent);
}
.share__box .content {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 15px;
}
.share__box .content p {
  font-size: 1rem;
  color: var(--clr-accent);
}
.share__box .content .social__links {
  display: flex;
  flex: 1;
  width: 100%;
  gap: 10px;
}
.share__box .content .social__links .social__link {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  height: 50px;
  width: 50px;
  border-radius: 4px;
  text-decoration: none;
  border: 1px solid var(--clr-border);
  transition: var(--transition);
}
.share__box .content .social__links [data-attr=facebook] {
  color: var(--clr-facebook);
}
.share__box .content .social__links [data-attr=facebook].active, .share__box .content .social__links [data-attr=facebook]:hover {
  border-color: var(--clr-facebook);
}
.share__box .content .social__links [data-attr=twitter] {
  color: var(--clr-twitter);
}
.share__box .content .social__links [data-attr=twitter].active, .share__box .content .social__links [data-attr=twitter]:hover {
  border-color: var(--clr-twitter);
}
.share__box .content .social__links [data-attr=instagram] {
  color: var(--clr-instagram);
}
.share__box .content .social__links [data-attr=instagram].active, .share__box .content .social__links [data-attr=instagram]:hover {
  border-color: var(--clr-instagram);
}
.share__box .content .social__links [data-attr=whatsapp] {
  color: var(--clr-whatsapp);
}
.share__box .content .social__links [data-attr=whatsapp].active, .share__box .content .social__links [data-attr=whatsapp]:hover {
  border-color: var(--clr-whatsapp);
}
.share__box .content .social__links [data-attr=linkedin] {
  color: var(--clr-linkedin);
}
.share__box .content .social__links [data-attr=linkedin].active, .share__box .content .social__links [data-attr=linkedin]:hover {
  border-color: var(--clr-linkedin);
}
.share__box .content .field__wrp {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0 6px;
  border-radius: 4px;
  border: 2px solid var(--clr-border);
  transition: var(--transition);
  max-width: 400px;
}
.share__box .content .field__wrp.active {
  border-color: var(--clr-primary);
}
.share__box .content .field__wrp.active #inputField {
  color: var(--clr-primary);
}
.share__box .content .field__wrp i {
  width: 20px;
  color: var(--clr-icon);
  transition: var(--transition);
}
.share__box .content .field__wrp.active i {
  color: var(--clr-primary);
}
.share__box .content .field__wrp #inputField {
  flex: 1;
  padding: 0 10px;
  height: 50px;
  border: none;
  outline: none;
  font-size: 1rem;
  color: var(--clr-accent);
  transition: var(--transition);
}
.share__box .content .field__wrp #copyBtn {
  border-radius: 4px;
  padding: 8px 15px;
  font-size: 1rem;
  cursor: pointer;
  width: 90px;
  font-weight: 700;
  border: 2px solid #299f45;
  color: var(--clr-light);
  background: #299f45;
  transition: var(--transition);
}
.share__box .content .field__wrp #copyBtn:hover {
  background: var(--clr-light);
  color: #299f45;
}

.testimonial-page-sec {
  padding: 10px 0 80px 0;
  position: relative;
}
.testimonial-page-sec .review-card {
  position: relative;
  border-radius: 35px;
  padding: 20px;
  border: 1px solid #e5e5e5;
  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  text-align: center;
  transition: all 300ms ease-in-out;
  box-shadow: 1px 1px 0 0 #e5e5e5;
}
.testimonial-page-sec .review-card:hover {
  border-color: #e5e5e5 !important;
  box-shadow: 0 0 9px 1px rgba(0, 0, 0, 0.12) !important;
}
.testimonial-page-sec .review-card .testimonial-images {
  display: inline-block;
  border-radius: 100%;
  overflow: hidden;
  margin: 10px 0;
  transition: all ease-in-out 0.3s;
}
.testimonial-page-sec .review-card .testimonial-images img {
  max-width: 100%;
  width: 100%;
  height: 100px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.testimonial-page-sec .review-card .testimonial-box a {
  font-weight: 400;
  line-height: 30px;
  text-transform: none;
  display: block;
  color: #767676;
}
.testimonial-page-sec .review-card .testimonial-author {
  font-size: 16px;
  text-transform: capitalize;
  color: #000;
  margin: 5px 0 10px;
}
.testimonial-page-sec .review-card .title {
  margin-top: 20px;
  margin-bottom: 12px;
}
.testimonial-page-sec .review-card .title a {
  font-size: 24px;
  color: #000;
}
.testimonial-page-sec .review-card:hover {
  border: 1px solid #ff8d00;
  background-color: #ff8d00;
  color: #fff;
  cursor: pointer;
}
.testimonial-page-sec .review-card:hover .testimonial-author {
  color: #fff;
}
.testimonial-page-sec .review-card:hover .title {
  color: #fff;
}
.testimonial-page-sec .review-card:hover .title a {
  color: #fff;
}
.testimonial-page-sec .review-card:hover .testimonial-box a {
  color: #fff;
}
.testimonial-page-sec .review-card:hover .testimonial-images {
  transform: scale(1.1, 1.1);
}


#hp-ctn-howItWorks {
    padding:0px 0px 0px 0px;
    text-align: center;
    margin:0px;
    width: 160px;
    height:40px;
    background:#FF931E;
    z-index:15;
    border-radius: 5px 5px 0px 0px;
    -moz-transform:rotate(-90deg);
    -ms-transform:rotate(-90deg);
    -o-transform:rotate(-90deg);
    -webkit-transform:rotate(-90deg);
    transform-origin: bottom right;
    position: fixed;
    right: 0px;
}
#hp-ctn-howItWorks b {
    color:#fff;
    display:inline-block;
    line-height:40px;
}
#hp-ctn-howItWorks i {
    color:#fff;
    display:inline-block;
    line-height:40px;
}
li .active a {
    color: #299f45 !important;
}

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