@charset "UTF-8";
@import 'https://cdnjs.cloudflare.com/ajax/libs/slick-carousel/1.8.1/slick.min.css';
@import 'https://cdnjs.cloudflare.com/ajax/libs/slick-carousel/1.8.1/slick-theme.min.css';
@import 'https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.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';
@import '../css/fontawesome.min.css';
@import 'https://cdnjs.cloudflare.com/ajax/libs/mmenu-js/9.3.0/mmenu.min.css';
@import 'https://cdnjs.cloudflare.com/ajax/libs/Swiper/4.4.1/css/swiper.min.css';
@import url("https://fonts.googleapis.com/css2?family=Barlow:wght@100;200;300;400;500;600;700;800;900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap"); /*Dhirtisree custom scss*/
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
:root {
  --card-height: 280px;
  --card-width: calc(var(--card-height) / 1);
}

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

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

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

@media screen and (min-width: 769px) {
  .container {
    max-width: 95%;
  }
}

.text-blue {
  color: #1A5319;
}

.bg-theme {
  background-color: #12803d;
}

.bg-theme2 {
  background-color: #1c8a3b;
}

/*.top {padding: 5px 0; background-color: #fff;
    ul {margin: 0;
        li {
            a {color: $color2; text-transform:uppercase; font-weight: 600; font-size: 14px;}
        }
    }
}*/
.main-nav {
  padding: 10px 0;
}
.main-nav .nav-link:hover {
  color: #17af24 !important;
}
.main-nav .custom-megamenu {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 100%;
  width: 100vw;
  background: #fff;
  display: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  z-index: 999;
  animation: fadeSlideDown 0.5s ease forwards;
}
.main-nav .custom-megamenu ul li {
  position: relative;
  transition: all linear 0.3s;
}
.main-nav .custom-megamenu ul li a {
  text-decoration: none;
  color: #333;
  padding: 6px 0;
  display: flex;
  font-size: 14px;
  transition: all linear 0.3s;
  align-items: baseline;
}
.main-nav .custom-megamenu ul li:hover > a {
  font-weight: bold;
  color: #1c8a3b;
}
.main-nav .custom-megamenu ul li:hover .inner-submenu {
  display: block;
}
.main-nav .custom-megamenu ul li .inner-submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  padding: 10px;
  min-width: 220px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  flex-direction: column;
}
.main-nav .custom-megamenu ul li .inner-submenu li {
  display: block;
}
.main-nav .custom-megamenu ul li .inner-submenu li a {
  font-size: 13px;
  padding: 5px 10px;
  white-space: nowrap;
}
.main-nav .custom-megamenu h5 {
  font-weight: bold;
  color: #12803d;
  font-size: 18px;
}
.main-nav .custom-megamenu p {
  font-size: 14px;
}
.main-nav .custom-megamenu.tab-style-megamenu .product-tab-links {
  background: #f9f9f9;
  border-right: 1px solid #ddd;
  padding: 15px;
  height: 100%;
}
.main-nav .custom-megamenu.tab-style-megamenu .product-tab-links li {
  padding: 10px 12px;
  margin-bottom: 5px;
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.3s;
}
.main-nav .custom-megamenu.tab-style-megamenu .product-tab-links li a {
  color: #333;
  font-size: 14px;
  text-decoration: none;
  display: block;
}
.main-nav .custom-megamenu.tab-style-megamenu .product-tab-links li.active, .main-nav .custom-megamenu.tab-style-megamenu .product-tab-links li:hover {
  background: #e9ecef;
}
.main-nav .custom-megamenu.tab-style-megamenu .product-tab-links li.active a, .main-nav .custom-megamenu.tab-style-megamenu .product-tab-links li:hover a {
  font-weight: bold;
  color: #1c8a3b;
}
.main-nav .custom-megamenu.tab-style-megamenu .product-tab-contents .tab-pane-content {
  display: none;
}
.main-nav .custom-megamenu.tab-style-megamenu .product-tab-contents .tab-pane-content h5 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #12803d;
}
.main-nav .custom-megamenu.tab-style-megamenu .product-tab-contents .tab-pane-content ul li a {
  display: block;
  padding: 6px 0;
  font-size: 14px;
  color: #333;
}
.main-nav .custom-megamenu.tab-style-megamenu .product-tab-contents .tab-pane-content ul li a:hover {
  font-weight: bold;
  color: #1c8a3b;
}
.main-nav .custom-megamenu.tab-style-megamenu .product-tab-contents .tab-pane-content.active {
  display: block;
}

@keyframes fadeSlideDown {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.text-grad {
  background: #1c8a3b;
  background: linear-gradient(to right, #0fb300 0%, #04462b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo2 {
  max-width: 72px;
  width: 100%;
  overflow: hidden;
  margin-right: auto;
  display: block;
}
@media screen and (max-width: 768px) {
  .logo2 {
    margin-left: 0;
  }
}
.logo2 img {
  max-width: 100%;
  width: 100%;
}

.logo {
  max-width: 235px;
  overflow: hidden;
}
.logo img {
  max-width: 100%;
  width: 100%;
  height: 58px;
  -o-object-fit: contain;
     object-fit: contain;
}

#sticky-wrapper {
  height: auto !important;
}

header {
  z-index: 55555 !important;
  width: 100%;
  position: relative;
}
header .navbar {
  position: static !important;
}
header .navbar .nav-link {
  opacity: 1;
  text-transform: uppercase;
  color: #000;
}

.is-sticky .top {
  display: none;
}
.is-sticky .main-nav {
  background-color: #fff;
  z-index: 55555;
  box-shadow: 0 0 9px 0px rgba(0, 0, 0, 0.2509803922);
}
.is-sticky .main-nav .navbar-dark .navbar-nav .nav-link {
  color: #000;
}

.main-slider-sec {
  position: relative;
}
.main-slider-sec .slider-container {
  position: relative;
  /*&:before {content: "";position: absolute;top: 0;left: 0;right: 0;bottom: 0;background: $linear-gradient-02;    z-index: 2;
      @media screen and (max-width:768px) {
          background: linear-gradient(180deg, #000 13.62%, rgba(0, 0, 0, 0));
      }
  }*/
}
.main-slider-sec .slider-container .main-slide {
  height: 90vh;
  max-width: 100%;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .main-slider-sec .slider-container .main-slide {
    height: 60vh;
  }
}
.main-slider-sec .slider-container .main-slide .img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transition: 3s all; /*background-blend-mode: overlay;
background-color: #464646;*/
}
.main-slider-sec .slider-container:after {
  content: "";
  background-image: url("../img/white-fade-1.webp") !important;
  height: 264px !important;
  bottom: -1px !important;
  position: absolute !important;
  z-index: 2;
  left: 0;
  width: 100%;
}
.main-slider-sec .main-slide-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 90%;
  height: 100vh;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  z-index: 3;
  margin: 0 auto;
  padding-bottom: 50px;
}
.main-slider-sec .main-slide-content > div {
  color: #fff;
  max-width: 80%;
}
.main-slider-sec .main-slide-content > div h1 {
  font-family: "Montserrat", sans-serif;
  font-size: 7.625rem;
  letter-spacing: 0.97px;
  text-transform: uppercase;
}
@media screen and (max-width: 768px) {
  .main-slider-sec .main-slide-content > div h1 {
    font-size: 3.125rem;
  }
}
.main-slider-sec .main-slide-content > div p {
  font-weight: 300;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
}
@media screen and (min-width: 768px) {
  .main-slider-sec .main-slide-content > div p {
    max-width: 60%;
  }
}

.about-sec {
  padding: 50px 0 50px 0;
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: local;
  background-blend-mode: hue;
  background-color: #ffe8e8;
}
@media screen and (max-width: 768px) {
  .about-sec {
    padding: 70px 0 30px 0;
    position: relative;
  }
}
.about-sec .ab-img {
  max-width: 100%;
  width: 100%;
  height: 80vh;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: all linear 0.5s;
}
.about-sec .ab-img:hover {
  transform: scale(1.1);
}
@media screen and (max-width: 768px) {
  .about-sec .ab-img {
    height: auto !important;
  }
}
.about-sec .ab-slide {
  border-radius: 15px;
  overflow: hidden;
}
.about-sec .ab-slide .slick-dots {
  bottom: 20px;
}
.about-sec .ab-slide .slick-dots li {
  width: 30px;
  height: 3px;
}
.about-sec .ab-slide .slick-dots li button {
  border-radius: 15px;
  width: 100%;
  height: 100%;
  background: #ccc;
  border: none;
}
.about-sec .ab-slide .slick-dots li button:before {
  font-family: slick;
  font-size: 6px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  content: "•";
  text-align: center;
  opacity: 0;
  color: #000;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.about-sec .ab-slide .slick-dots li.slick-active button {
  background: #17af24;
}
.about-sec p {
  font-size: 20px;
  line-height: 1.6;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
}

.btn-style-1 {
  width: 200px;
  height: 50px;
  display: inline-block;
  position: relative;
  margin: 8px 0;
}
.btn-style-1 .btn-style-1text {
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 1;
  text-align: center;
  line-height: 50px;
  font-size: 12px;
  text-transform: uppercase;
}
.btn-style-1 .btn-style-1text:nth-of-type(1) {
  color: #3d3b40;
  bottom: 100%;
  transform-origin: center bottom 0px;
  transform: matrix3d(1, 0, 0, 0, 0, 0, -1, -0.003, 0, 1, 0, 0, 0, 0, 0, 1);
  transition: all 500ms cubic-bezier(0.97, 0, 0.395, 0.995);
}
.btn-style-1 .btn-style-1text:nth-of-type(2) {
  color: #fff;
  top: 100%;
  transform-origin: center top 0px;
  transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, -0.003, 0, -50, 0, 1);
  transition: all 500ms cubic-bezier(0.97, 0, 0.395, 0.995);
}
.btn-style-1 .twist {
  display: flex;
  height: 100%;
  width: 25%;
  position: relative;
  float: left;
  margin-left: -4px;
}
.btn-style-1 .twist:before {
  content: "";
  width: 100%;
  height: 100%;
  background: #21a04c;
  bottom: 100%;
  position: absolute;
  transform-origin: center bottom 0px;
  transform: matrix3d(1, 0, 0, 0, 0, 0, -1, -0.003, 0, 1, 0, 0, 0, 0, 0, 1);
  transition: all 500ms cubic-bezier(0.97, 0, 0.395, 0.995);
}
.btn-style-1 .twist:after {
  content: "";
  position: absolute;
  width: 100%;
  top: 100%;
  height: 100%;
  background: #042070;
  transform-origin: center top 0px;
  transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, -0.003, 0, -50, 0, 1);
  transition: all 500ms cubic-bezier(0.97, 0, 0.395, 0.995);
}
.btn-style-1 .twist:nth-of-type(1) {
  margin-left: 0;
}
.btn-style-1 .twist:nth-of-type(1):before, .btn-style-1 .twist:nth-of-type(1):after {
  transition-delay: 0s;
}
.btn-style-1 .twist:nth-of-type(2):before, .btn-style-1 .twist:nth-of-type(2):after {
  transition-delay: 0.1s;
}
.btn-style-1 .twist:nth-of-type(3):before, .btn-style-1 .twist:nth-of-type(3):after {
  transition-delay: 0.2s;
}
.btn-style-1 .twist:nth-of-type(4):before, .btn-style-1 .twist:nth-of-type(4):after {
  transition-delay: 0.3s;
}
.btn-style-1:hover .twist:before {
  transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0.003, 0, 50, 0, 1);
}
.btn-style-1:hover .twist:after {
  background: #9c081b;
  transform: matrix3d(1, 0, 0, 0, 0, 0, -1, 0.003, 0, 1, 0, 0, 0, 0, 0, 1);
}
.btn-style-1:hover .btn-style-1text {
  color: #fff;
}
.btn-style-1:hover .btn-style-1text:nth-of-type(1) {
  transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0.003, 0, 50, 0, 1);
}
.btn-style-1:hover .btn-style-1text:nth-of-type(2) {
  transform: matrix3d(1, 0, 0, 0, 0, 0, -1, 0.003, 0, 1, 0, 0, 0, 0, 0, 1);
}

.headline {
  font-family: "Montserrat", sans-serif;
  font-size: 32px;
  text-transform: capitalize;
  font-weight: bolder;
  margin-bottom: 30px;
}
.headline span {
  color: #12803d;
}
@media screen and (max-width: 768px) {
  .headline {
    font-size: 30px !important;
  }
}

.service-sec {
  padding: 50px 0 80px 0;
  position: relative;
}
.service-sec .service-item {
  position: relative;
  padding: 15px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
  margin: 30px 0;
}
.service-sec .service-item:hover {
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.55);
  transform: scale(1.1, 1.1);
}
.service-sec .service-item .info {
  padding: 8px 0 0;
}
.service-sec .service-item .info h4 {
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  text-transform: uppercase;
  font-weight: bold;
  margin: 0;
}
.service-sec .service-item .pic {
  overflow: hidden;
}
.service-sec .service-item .pic img {
  max-width: 100%;
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: all linear 0.3s;
}
.service-sec .service-item:hover .pic img {
  transform: scale(1.1);
}
.service-sec .service-item:hover .btn-icon {
  border-color: #17af24;
}
.service-sec .service-item:hover .btn-icon i {
  transform: scale(1.5);
}

.headline-part {
  margin-bottom: 50px;
  text-align: center;
}
.headline-part h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 52px;
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .headline-part h3 {
    font-size: 34px;
  }
}
.headline-part h3 span {
  color: #12803d;
}
.headline-part p {
  font-size: 18px;
  line-height: 1.6;
}

.btn-icon {
  position: relative;
  padding: 10px 20px;
  color: #17af24;
  font-size: 16px;
  font-weight: bold;
  border-radius: 5px;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  border: 2px solid #fff;
}
.btn-icon:hover {
  border-color: #17af24;
}
.btn-icon i {
  transition: all linear 0.3s;
}

.sm-headline {
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
}

.text-dark {
  color: #000;
}

.value-sec {
  padding: 40px 0 40px 0;
  position: relative;
}
.value-sec:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: transparent;
  height: 100%;
  z-index: 2;
  width: 100%;
}
.value-sec .container {
  z-index: 3;
  position: relative;
}
.value-sec .mt-n-5 {
  margin-top: -100px;
  z-index: 55;
  position: relative;
}
.value-sec .service-icon-box {
  text-align: center;
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  transition: all linear 0.3s;
}
@media screen and (max-width: 768px) {
  .value-sec .service-icon-box {
    padding: 10px;
  }
}
.value-sec .service-icon-box .icon {
  margin-bottom: 15px;
  transition: all linear 0.3s;
}
.value-sec .service-icon-box .icon img {
  max-width: 100%;
  width: 100%;
  height: 140px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  transition: all linear 0.3s;
}
.value-sec .service-icon-box:hover {
  cursor: pointer;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.55);
  transform: scale(1.1, 1.1);
}
.value-sec .service-icon-box:hover .icon img {
  transform: scale(0.8, 0.8);
}
.value-sec .service-icon-box:hover h4 {
  font-size: 19px;
  background-color: #12803d;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .value-sec .service-icon-box:hover h4 {
    font-size: 18px;
  }
}
.value-sec .service-icon-box h4 {
  text-transform: uppercase;
  font-size: 18px;
  font-weight: bold;
  margin: 0;
  transition: all linear 0.3s;
  font-family: "Montserrat", sans-serif;
}
.value-sec p {
  font-size: 18px;
  line-height: 1.6;
}

.about-sec-style-2 {
  padding: 30px 0 80px 0;
  position: relative;
}
.about-sec-style-2 .ab-img {
  max-width: 100%;
  width: 100%;
  height: 80vh;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: all linear 0.3s;
}
.about-sec-style-2 .ab-img:hover {
  transform: scale(1.1);
}
@media screen and (max-width: 768px) {
  .about-sec-style-2 .ab-img {
    height: auto !important;
  }
}
.about-sec-style-2 p {
  font-size: 20px;
  line-height: 1.6;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}

.video-thumbnail {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  width: 100%;
}
.video-thumbnail img {
  display: block;
  width: 100%;
  height: 100vh;
  max-width: 100%;
}
.video-thumbnail .play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  background: rgba(0, 0, 0, 0.5);
  width: 80px;
  height: 80px;
  display: flex;
  border-radius: 50%;
  font-size: 52px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  align-items: center;
  justify-content: center;
}
.video-thumbnail .play-icon:hover {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.7);
}

.service-icon-box {
  text-align: center;
}
.service-icon-box .icon {
  height: 130px;
  margin-bottom: 15px !important;
  justify-content: center;
  align-items: center;
  margin: 15px auto;
  display: flex;
}
.service-icon-box .icon img {
  max-width: 100%;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.service-icon-box h4 {
  color: #12803d;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 17px;
  letter-spacing: 1px;
  border: 1px solid #12803d;
  padding: 6px 15px;
  border-radius: 30px;
}

footer {
  color: #fff;
  background: #163322;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  footer {
    padding: 50px 0 0 0;
    position: relative;
  }
  footer .bgft {
    background-color: transparent;
  }
}
footer h4 {
  margin-bottom: 15px;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 20px;
}
footer .copyright {
  background: #122e1e;
  padding: 15px 0;
  text-align: center;
}
footer .copyright p {
  font-family: "Montserrat", sans-serif;
  margin-bottom: 0;
  text-transform: uppercase;
  font-size: 16px;
}
footer .footer-logo {
  max-width: 150px;
  width: 100%;
  margin-bottom: 20px;
}
footer .footer-logo img {
  max-width: 100%;
  width: 100%;
}
footer .social-ul {
  list-style: none;
  overflow: hidden;
  padding: 0;
}
footer .social-ul li {
  display: inline-block;
  margin: 0 5px;
}
footer .social-ul li a {
  border-radius: 50%;
  text-align: center;
  color: #fff;
  font-size: 18px;
  width: 40px;
  height: 40px;
  border: 2px solid #353535;
  background-color: #353535;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
footer .social-ul li a:hover {
  transform: scale(1.1);
  transition: all 0.3s ease;
}
footer .social-ul li:first-child a {
  background: #4267b2;
  border-color: #4267b2;
}
footer .social-ul li:nth-child(2) a {
  background: #1da1f2;
  border-color: #1da1f2;
}
footer .social-ul li:nth-child(3) a {
  background: #0072b1;
  border-color: #0072b1;
}
footer .social-ul li:nth-child(4) a {
  background: #ff0000;
  border-color: #ff0000;
}
footer .footer-list {
  margin: 0;
  list-style: none;
  padding: 0;
}
footer .footer-list li {
  display: flex;
  align-items: flex-start;
  font-size: 16px;
  margin-bottom: 10px;
}
footer .footer-list li > i {
  margin-top: 4px;
}
footer .footer-list li a {
  padding: 5px 20px 4px 0;
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  align-items: baseline;
  text-decoration: none;
  display: flex;
}
footer .footer-list.list-inline {
  display: flex;
  flex-wrap: wrap;
}
footer .footer-list.list-inline li {
  width: 50%;
  flex: 0 0 50%;
}

.news-sec {
  padding: 60px 0 120px 0;
  position: relative;
}
.news-sec .news-item {
  border: 1px solid #ccc;
  text-align: left;
  transition: all linear 0.3s;
  border-radius: 15px;
  overflow: hidden;
  height: 100%;
}
.news-sec .news-item .pic {
  max-width: 100%;
  width: 100%;
  height: 300px;
  overflow: hidden;
  position: relative;
  transition: all linear 0.3s;
}
.news-sec .news-item .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;
}
.news-sec .news-item:hover {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}
.news-sec .news-item:hover .pic img {
  transform: scale(1.3, 1.3) rotate(5deg);
}
.news-sec .news-item .info {
  padding: 15px 25px;
  background-color: #12803d;
  height: 100%;
}
.news-sec .news-item .info p {
  font-size: 16px;
  color: #fff;
  min-height: 96px;
  display: -webkit-box;
  line-clamp: 4;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  width: 100%;
}
.news-sec .news-item .info h4 {
  font-weight: bold;
  font-size: 26px;
  font-family: "Montserrat", sans-serif;
  color: #fff;
  text-transform: uppercase;
  min-height: 62px;
}
.news-sec .swiper-container-horizontal > .swiper-pagination-bullets, .news-sec .swiper-pagination-custom, .news-sec .swiper-pagination-fraction {
  bottom: 45px;
}

.contact-form-sec {
  padding: 120px 0 120px 0;
  position: relative;
  background-color: #17af24;
  background-blend-mode: luminosity;
  background-image: url(../img/map2.png);
  background-position: top;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: local;
}
.contact-form-sec::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(270deg, #17af24, #1c8a3b, #17af24);
  background-size: 600% 600%;
  animation: moveGradient 10s ease infinite;
  z-index: 1;
  pointer-events: none;
  opacity: 0.7;
}
@keyframes moveGradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.contact-form-sec .container {
  position: relative;
  z-index: 2;
}
.contact-form-sec .btn-style-1 {
  filter: sepia(100%) invert(1);
}
.contact-form-sec .form-control {
  transition: all ease-in-out 0.3s;
  height: auto;
  padding: 10px;
}
.contact-form-sec .form-control:focus {
  transform: scale(1.05, 1.05);
  border-radius: 8px !important;
}

.investors-sec {
  padding: 50px 0 50px 0;
  position: relative;
}
.investors-sec .col-md-3 a {
  display: block;
  perspective: 1000px;
}
.investors-sec .investors-box {
  padding: 20px;
  text-align: center;
  overflow: hidden;
  background-color: #17af24;
  color: #fff;
  transition: transform 0.5s ease;
  transform-style: preserve-3d;
  will-change: transform;
  perspective: 1000px;
}
.investors-sec .investors-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;
  transition: transform 0.5s ease;
  transform: translateZ(70px);
}
.investors-sec .investors-box h4 {
  font-weight: bold;
  font-size: 22px;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  transform: translateZ(40px);
  transition: transform 0.5s ease;
}
.investors-sec .investors-box:hover {
  cursor: pointer;
  transform: rotateY(18deg) rotateX(15deg);
}

@media screen and (min-width: 769px) {
  #menu {
    display: none;
  }
}

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

@media screen and (max-width: 768px) {
  .mobile-hide {
    display: none !important;
  }
}

.chairmans-desk-sec .ab-img {
  max-width: 100%;
  width: 100%;
  height: 80vh;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

.swiper-button-next, .swiper-button-prev {
  background-color: white;
  background-size: 25px 25px;
}

.swiper-button-next {
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}

.swiper-button-prev {
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}

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

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  transition: opacity 0.5s ease;
}
#preloader .preloader-logo {
  width: 150px;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.7;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.card-effect {
  width: var(--card-width);
  height: var(--card-height);
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding: 0 36px;
  perspective: 2500px;
}
.card-effect .cover-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.card-effect .wrapper {
  transition: all 0.5s;
  position: absolute;
  width: 100%;
  z-index: -1;
  height: 200px;
}
.card-effect .wrapper::before {
  content: "";
  opacity: 0;
  width: 100%;
  height: 80px;
  transition: all 0.5s;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background-image: linear-gradient(to top, transparent 46%, rgba(12, 13, 19, 0.5) 68%, rgb(12, 13, 19) 97%);
}
.card-effect .wrapper::after {
  content: "";
  opacity: 0;
  width: 100%;
  height: 100%;
  transition: all 0.5s;
  position: absolute;
  left: 0;
  bottom: 0;
  opacity: 1;
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.62) 49%, rgb(0, 0, 0) 100%);
}
.card-effect:hover .wrapper {
  transform: perspective(900px) translateY(-5%) rotateX(25deg) translateZ(0);
  box-shadow: 2px 35px 32px -8px rgba(0, 0, 0, 0.75);
}
.card-effect:hover .wrapper::after, .card-effect:hover .wrapper::before {
  opacity: 1;
}
.card-effect:hover .wrapper::after {
  height: 120px;
}
.card-effect:hover .title {
  transform: translate3d(0%, -50px, 100px);
}
.card-effect:hover .character {
  opacity: 1;
  transform: translate3d(0%, -50%, 100px);
}
.card-effect .title {
  width: 100%;
  transition: transform 0.5s;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  margin-bottom: 15px;
  color: #fff;
  text-align: center;
}
.card-effect .character {
  width: 75%;
  opacity: 0;
  transition: all 0.5s;
  position: absolute;
  z-index: -1;
}

#speech {
  border: none;
  padding: 0;
  border-radius: 100%;
  width: 110px;
  height: 110px;
  font-size: 1.5em;
  color: #fff;
  padding: 0;
  margin: 0;
  background: #17af24;
  position: relative;
  display: inline-block;
  line-height: 50px;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  touch-action: manipulation;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  background-image: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
#speech .pulse-ring {
  content: "";
  width: 110px;
  height: 110px;
  border: 5px solid #17af24;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  animation: pulsate infinite 2s;
}
#speech img {
  filter: brightness(1);
}

@keyframes pulsate {
  0% {
    -webkit-transform: scale(1, 1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.3, 1.3);
    opacity: 0;
  }
}
.stat-counter {
  padding: 20px 0 0 0;
  position: relative;
}
.stat-counter .counter-box {
  padding: 15px;
  text-align: center;
}
.stat-counter .counter-box img {
  max-width: 100%;
  width: 100%;
  height: 150px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.stat-counter .counter-box h3 {
  text-transform: uppercase;
  font-weight: bolder;
  font-family: "Montserrat", sans-serif;
  color: #12803d;
}
.stat-counter .counter-box .counter {
  font-size: 62px;
}
@media screen and (max-width: 768px) {
  .stat-counter .counter-box .counter {
    font-size: 32px;
  }
}
.stat-counter .counter-box .stats-text {
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
}

.acquisitions-sec {
  padding: 50px 0 50px 0;
  position: relative;
}
.acquisitions-sec .company-box {
  text-align: center;
  padding: 15px;
  position: relative;
  transition: all linear 0.3s;
}
.acquisitions-sec .company-box img {
  max-width: 100%;
  width: 100%;
  height: 150px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  padding: 15px;
}
.acquisitions-sec .company-box h4 {
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  margin: 15px 0;
  font-size: 20px;
}

.SMN_effect-63 a {
  position: relative;
}
.SMN_effect-63 a:before, .SMN_effect-63 a:after {
  content: "";
  position: absolute;
  height: 1px;
  left: 0;
  right: 0;
  transform: translate(0, 30px);
  transition: 0.3s all;
  opacity: 0;
}
.SMN_effect-63 a:before {
  bottom: -6px;
  animation: road 0.9s infinite linear;
  filter: invert(1);
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAUoAAAACCAYAAAA+VZWwAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTM4IDc5LjE1OTgyNCwgMjAxNi8wOS8xNC0wMTowOTowMSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTcgKFdpbmRvd3MpIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOkM3NUE3MDMwNjI0QTExRThBMkIxQzhBRjBBMUU5RDhBIiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOkM3NUE3MDMxNjI0QTExRThBMkIxQzhBRjBBMUU5RDhBIj4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6Qzc1QTcwMkU2MjRBMTFFOEEyQjFDOEFGMEExRTlEOEEiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6Qzc1QTcwMkY2MjRBMTFFOEEyQjFDOEFGMEExRTlEOEEiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz5Qi5RGAAAAMUlEQVR42mL8////GYbBC9KB+CwF+kf9Nuq3Ub+N+o1ivzExjIJRMApGwSjACwACDABd8g8BErC8GwAAAABJRU5ErkJggg==");
}
.SMN_effect-63 a:after {
  bottom: 0;
  background-color: #000;
}
.SMN_effect-63 a:hover:before, .SMN_effect-63 a:hover:after {
  transform: translate(0, 0px);
  opacity: 1;
}
@keyframes road {
  from {
    background-position: 0;
  }
  to {
    background-position: -330px;
  }
}
.banner-sec {
  padding: 50px 0 50px 0;
  position: relative;
  background-position: right;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: local;
  height: 300px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  background-color: #b1b1b1;
  background-blend-mode: multiply;
  /*&: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 screen and (max-width:768px) {
          bottom: -2px !important;
      }
  } */
}
@media screen and (max-width: 768px) {
  .banner-sec {
    height: 240px !important;
    padding: 50px 0 50px 0;
    position: relative;
    background-color: #616161;
  }
}
.banner-sec .container {
  position: relative;
  z-index: 2;
}
.banner-sec h1 {
  font-family: "Montserrat", sans-serif;
  color: #fff;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-size: 38px;
  text-align: left;
  font-weight: bold;
  max-width: 28%;
}
@media screen and (max-width: 768px) {
  .banner-sec h1 {
    font-size: 40px !important;
    max-width: 100%;
  }
}
.banner-sec nav {
  color: #fff;
}
.banner-sec nav ol {
  justify-content: flex-start;
  margin: 0;
}
.banner-sec nav ol li {
  color: #fff !important;
}
.banner-sec nav ol li:before {
  color: #fff !important;
  filter: brightness(0) invert(1);
  opacity: 1;
}
.banner-sec nav ol li a {
  color: #fff;
}

.map-sec {
  padding: 80px 0 50px 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .map-sec {
    padding: 50px 0 50px 0;
    position: relative;
  }
}
.map-sec .headline {
  font-size: 34px;
}
.map-sec .map-outer {
  position: relative;
  width: 100%;
  height: 80vh;
  overflow: hidden;
  z-index: 1;
}
.map-sec .map-outer .map-responsive {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.map-sec .map-outer .map-responsive iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.map-sec .contact-ul {
  list-style: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
.map-sec .contact-ul li {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  margin-bottom: 30px;
  gap: 15px;
}
.map-sec .contact-ul li .icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #17af24;
  border-radius: 50%;
  color: #fff;
  font-size: 20px;
  flex: 0 0 50px;
}
.map-sec .contact-ul li .icon i {
  font-size: 20px;
}
.map-sec .contact-ul li .info {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  color: #1A5319;
}
.map-sec .contact-ul li .info h4 {
  font-weight: 900;
  margin-bottom: 5px;
  font-size: 22px;
  text-transform: uppercase;
}
.map-sec .contact-ul li .info p {
  margin: 0;
  color: #121212;
  font-size: 20px;
}
.map-sec .contact-ul li .info ul li {
  margin-bottom: 4px;
  display: block;
}

.map-sec2 {
  padding: 30px 0 30px 0;
  position: relative;
  background-color: #e7ffe5;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom right;
}
.map-sec2 .headline {
  font-size: 40px;
}

.contact-ul2 {
  list-style: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
.contact-ul2 li {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  margin-bottom: 10px;
  gap: 15px;
}
.contact-ul2 li .icon {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #bb4500;
  border-radius: 50%;
  color: #fff;
  font-size: 15px;
  flex: 0 0 30px;
}
.contact-ul2 li .icon i {
  font-size: 15px;
}
.contact-ul2 li .info {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  color: #12803d;
}
.contact-ul2 li .info h4 {
  font-weight: 800;
  margin-bottom: 5px;
  font-size: 18px;
  text-transform: uppercase;
}
.contact-ul2 li .info p {
  margin: 0;
  color: #121212;
  font-size: 15px;
}
.contact-ul2 li .info ul li {
  margin-bottom: 4px;
  display: block;
}

.contact-box { /*background-color: #e0f0ff;*/
  background-color: #fff;
  border-radius: 12px;
  height: 100%;
  padding: 20px;
  position: relative;
  transition: all 0.3s ease;
}
.contact-box .contact-title {
  font-family: "Montserrat", sans-serif;
  color: #000;
  margin-bottom: 15px;
  text-transform: uppercase;
  position: relative;
}
.contact-box .contact-title:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  background-color: #1c8a3b;
  z-index: -1;
  transition: all 0.3s ease;
  margin: auto 0;
  width: 100%;
  height: 3px;
}
.contact-box .contact-title span {
  background-color: #fff;
  padding: 10px 10px 10px 0;
  display: inline-block;
}
.contact-box:hover {
  box-shadow: 0px 11px 8px rgba(0, 113, 227, 0.39);
  border: 0;
}
.contact-box > * {
  position: relative;
  z-index: 3;
}
.contact-box .svg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 200ms linear;
}
.contact-box .svg path {
  stroke-dasharray: 8px, 12px;
  stroke-width: 4px;
  stroke: #12803d;
}

.map-sec3 {
  padding: 50px 0 50px 0;
  position: relative;
}

.map-sec4 {
  padding: 50px 0 50px 0;
  position: relative;
  background-color: #5e8fd5;
}
.map-sec4 .headline {
  font-family: "Montserrat", sans-serif;
  font-size: 42px;
  text-transform: capitalize;
  font-weight: bold;
  margin-bottom: 30px;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .map-sec4 .headline {
    font-size: 40px !important;
  }
}

.gallery-sec {
  padding: 80px 0 80px 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .gallery-sec {
    padding: 30px 0 !important;
  }
}
.gallery-sec .grid figure {
  position: relative;
  float: left;
  overflow: hidden;
  min-width: 100%;
  max-width: 100%;
  margin: 0;
  max-height: 255px;
  width: 100%;
  text-align: center;
  cursor: pointer;
  background: #1c8a3b;
}
@media screen and (max-width: 768px) {
  .gallery-sec .grid figure {
    max-height: 200px;
  }
}
.gallery-sec .grid figure img {
  position: relative;
  display: block;
  min-height: 100%;
  opacity: 1;
  width: 100%;
  transform: translate3d(0, -30px, 0);
  transition: opacity 0.35s, transform 0.35s;
  max-width: 100%;
  width: 100%;
  height: 285px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.gallery-sec .grid figure figcaption {
  padding: 2em;
  color: #fff;
  text-transform: uppercase;
  font-size: 1.25em;
  backface-visibility: hidden;
  padding: 2em;
}
.gallery-sec .grid figure figcaption::before, .gallery-sec .grid figure figcaption::after {
  pointer-events: none;
  position: absolute;
  content: "";
  opacity: 0;
  transition: opacity 0.35s, transform 0.35s;
}
.gallery-sec .grid figure figcaption, .gallery-sec .grid figure figcaption > a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.gallery-sec .grid figure figcaption > a {
  z-index: 1000;
  text-indent: 200%;
  white-space: nowrap;
  font-size: 0;
  opacity: 0;
}
.gallery-sec .grid figure figcaption::before {
  top: 40px;
  right: 30px;
  bottom: 40px;
  left: 30px;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  transform: scale(0, 1);
  transform-origin: 0 0;
}
.gallery-sec .grid figure figcaption::after {
  top: 30px;
  right: 40px;
  bottom: 30px;
  left: 40px;
  border-right: 1px solid #fff;
  border-left: 1px solid #fff;
  transform: scale(1, 0);
  transform-origin: 100% 0;
}
.gallery-sec .grid figure h2 {
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  word-spacing: -0.15em;
  font-weight: 300;
  padding-top: 18%;
  font-size: 28px;
  -webkit-transform: translate3d(0, -30px, 0);
  transition: all 0.35s;
  transform: translate3d(0, -30px, 0);
  opacity: 0;
  display: -webkit-box;
  line-clamp: 1;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .gallery-sec .grid figure h2 {
    font-size: 14px;
  }
}
.gallery-sec .grid figure h2 span {
  font-weight: 800;
}
.gallery-sec .grid figure h2, .gallery-sec .grid figure h2 p {
  margin: 0;
}
.gallery-sec .grid figure p {
  letter-spacing: 1px;
  font-size: 68.5%;
  padding: 0.5em 2em;
  text-transform: none;
  opacity: 0;
  transform: translate3d(0, -10px, 0);
  transition: opacity 0.35s, transform 0.35s;
}
.gallery-sec .grid figure:hover img {
  transition-delay: 0.15s;
  opacity: 0.3;
  transform: translate3d(0, 0, 0);
}
.gallery-sec .grid figure:hover figcaption::before, .gallery-sec .grid figure:hover figcaption::after {
  opacity: 1;
  transform: scale(1);
}
.gallery-sec .grid figure:hover figcaption:after {
  transition-delay: 0.15s;
}
.gallery-sec .grid figure:hover h2 {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: 0.15s;
}
.gallery-sec .grid figure:hover p {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: 0.15s;
}

.career-sec {
  padding: 50px 0 50px 0;
  position: relative;
}
.career-sec .widget {
  background-color: #f5f5f5;
  border: 0;
  border-radius: 25px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
}
.career-sec .widget:hover {
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.55);
  transform: scale(1.05, 1.05);
}
.career-sec .widget .card {
  border: 0;
  background-color: transparent;
}
.career-sec .widget .card .card-header {
  border: 0;
}
.career-sec .widget .card .card-header .card-title {
  font-family: "Montserrat", sans-serif;
  font-size: 26px;
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 0;
  padding: 15px;
  color: #12803d;
}
.career-sec .widget .card .card-body {
  padding: 15px 25px;
  text-align: left;
}
.career-sec .widget .card .card-body h4 {
  font-family: "Montserrat", sans-serif;
  font-size: 22px;
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 0;
  padding: 15px 25px;
  color: #12803d;
}
.career-sec .widget .card .card-body p {
  font-size: 15px;
  line-height: 1.6;
}
.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: #12803d;
}
.career-sec h4 {
  font-weight: 800;
  font-size: 36px;
  margin-bottom: 20px;
  color: #1A5319;
}
.career-sec .career-card {
  padding: 15px;
  text-align: left;
}
.career-sec .career-card h4 {
  font-family: "Montserrat", sans-serif;
  font-size: 22px;
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 0;
  color: #12803d;
}
.career-sec .career-card p {
  font-size: 15px;
  line-height: 1.6;
}
.career-sec .career-card ul {
  list-style: none;
  overflow: hidden;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
  margin: 10px 0 0;
}
.career-sec .career-card ul li {
  position: relative;
  font-size: 14px;
}
.career-sec .career-card ul li:before {
  content: "|";
  position: absolute;
  top: 50%;
  left: -26px;
  transform: translateY(-50%);
  color: #12803d;
  line-height: 1;
  padding: 0 15px;
}

.career-form {
  box-shadow: 0px 14px 20px 0px rgba(0, 0, 0, 0.1);
}
.career-form .form-control {
  border-radius: 0;
  border: 1px solid #999999;
  padding: 10px;
  font-size: 16px;
  height: auto;
  transition: all ease-in-out 0.3s;
}
.career-form .form-control:focus {
  border-color: #12803d;
  transform: scale(1.05, 1.05);
}
.career-form .form-select {
  border-radius: 0;
  border: 1px solid #999999;
  padding: 10px;
  font-size: 16px;
  height: auto;
  transition: all ease-in-out 0.3s;
}
.career-form .form-select:focus {
  border-color: #12803d;
  transform: scale(1.05, 1.05);
}

.details-sec {
  padding: 50px 0 50px 0;
  position: relative;
}
.details-sec .headline {
  color: #17af24;
}
.details-sec .details-slide-img {
  overflow: hidden;
  border-radius: 15px;
  height: 400px;
}
.details-sec .details-slide-img a {
  display: block;
}
.details-sec .details-slide-img a 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;
}
.details-sec .details-slide-img a img:hover {
  transform: scale(1.1);
}
.details-sec .vendor-btn {
  max-width: 100%;
  width: 100%;
  height: 70px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  border: 1px solid #eee;
}
.details-sec .swiper {
  position: relative;
  overflow: hidden;
}
.details-sec .swiper .swiper-slide__content {
  position: absolute;
  top: 0;
}
.details-sec .swiper .swiper-slide {
  transition: all 200ms linear;
  transform: scale(0.8);
}
.details-sec .swiper .swiper-slide.swiper-slide-active {
  transform: scale(1);
}
.details-sec h4 {
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  font-weight: bold;
  color: #12803d;
  margin: 40px 0 15px;
}
.details-sec p {
  font-size: 18px;
  line-height: 1.6;
  color: #000;
  text-align: justify;
}

.event-page-sec {
  padding: 50px 0 50px 0;
  position: relative;
}
.event-page-sec .card-event {
  overflow: hidden;
  transition: all linear 0.3s;
}
.event-page-sec .card-event img {
  max-width: 100%;
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: all ease-in-out 0.3s;
  -o-object-position: top;
     object-position: top;
}
.event-page-sec .card-event h4 {
  font-size: 20px;
  color: #000;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  width: 100%;
}
.event-page-sec .card-event p {
  line-height: 1.4;
  font-size: 16px;
  text-align: center;
  display: -webkit-box;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  width: 100%;
}
.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-weight: 800;
  font-size: 2.4rem;
  color: #1A5319;
  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 #12803d;
  color: var(--clr-light);
  background: #12803d;
  transition: var(--transition);
}
.share__box .content .field__wrp #copyBtn:hover {
  background: var(--clr-light);
  color: #12803d;
}

.parallax-sec {
  padding: 50px 0 50px 0;
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  background-repeat: repeat;
  min-height: 400px;
  color: #fff;
  text-align: center;
  position: relative;
  z-index: 1;
}
.parallax-sec:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #000;
  z-index: 2;
  opacity: 0.4;
}
.parallax-sec .container {
  position: relative;
  z-index: 3;
}
.parallax-sec .headline {
  font-size: 50px;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  font-weight: bold;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .parallax-sec .headline {
    font-size: 30px !important;
  }
}
.parallax-sec p {
  font-size: 20px;
  line-height: 1.6;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .parallax-sec p {
    font-size: 16px !important;
  }
}
.parallax-sec .btn-style-1 {
  filter: sepia(100%) invert(1);
}

.team-box {
  position: relative;
  transition: all linear 0.3s;
  border-radius: 15px;
  overflow: hidden;
}
.team-box .team-img {
  height: 350px;
  width: 100%;
  overflow: hidden;
  transition: all linear 0.3s;
  border: 1px solid #ccc;
  overflow: hidden;
}
.team-box .team-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 linear 0.3s;
}
.team-box .team-text {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 10px;
  top: 0;
  height: 80px;
  border-radius: 10px;
  display: flex;
  transition: all linear 0.3s;
  background: #12803c;
  width: 90%;
  margin: auto auto 15px;
  text-align: center;
  align-items: center;
  justify-content: center;
}
.team-box .team-text h4 {
  font-family: "Montserrat", sans-serif;
  text-transform: capitalize;
  font-weight: bold;
  color: #12803d;
  margin: 0 0 6px;
  color: #fff;
}
.team-box .team-text p {
  font-size: 16px;
  line-height: 1.6;
  color: #fff;
  margin: 0;
}
.team-box .team-text .btn {
  margin: 0;
  transition: all linear 0.5s;
  display: none;
  margin-top: 10px;
}
.team-box .team-text a {
  display: flex;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-box:hover {
  transition: all linear 0.3s;
}
.team-box:hover .team-img img {
  transform: scale(1.2);
}
.team-box:hover .team-text {
  height: 90%;
  display: flex;
  align-items: center;
  transition: all linear 0.3s;
  justify-content: center;
  text-align: center;
  padding: 15px;
  background: rgba(18, 128, 60, 0.6980392157);
}
.team-box:hover .team-text .btn {
  opacity: 1;
  display: inline-flex;
  justify-content: center;
}

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

.btn-img img {
  max-width: 50px;
  width: 100%;
  max-width: 100%;
  width: 100%;
  height: 50px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  filter: brightness(0) invert(1);
}

.modal {
  --bs-modal-zindex: 55555 !important;
}
.modal p {
  font-size: 20px;
  text-align: justify;
  margin: 0;
}

.slider-bg {
  padding: 50px 0 50px 0;
  position: relative;
  height: 88vh;
  background-size: cover;
  position: relative;
  align-items: center;
  justify-content: flex-start;
  background-color: #303436;
  background-blend-mode: soft-light;
}
.slider-bg h1 {
  color: #fff;
  font-size: 72px;
  font-family: "Montserrat", sans-serif;
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .slider-bg h1 {
    font-size: 30px !important;
  }
}
.slider-bg p {
  font-family: "Inter", sans-serif;
  font-size: 24px;
  color: #fff;
  line-height: 1.8;
}
.slider-bg .container {
  position: relative;
  z-index: 2;
}

.card-investors {
  overflow: hidden;
  border: 0;
  border-radius: 10px;
}
.card-investors .pic {
  height: 200px;
  overflow: hidden;
  width: 100%;
}
.card-investors .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;
}
.card-investors .card-body {
  background-color: #ededed;
}
.card-investors .card-body h4 {
  color: #000;
  margin-bottom: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}
.card-investors .card-body .btn-icon {
  padding: 0;
  font-size: 34px;
  line-height: 0;
  border: 0;
}
.card-investors:hover {
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}
.card-investors:hover img {
  transform: scale(1.2);
}

.service-sec2 {
  padding: 50px 0 50px 0;
  position: relative;
  text-wrap: pretty;
}
.service-sec2 img {
  max-width: 100%;
  height: auto;
}
.service-sec2 .tabs {
  display: flex;
  overflow: hidden;
  padding: 30px 0;
}
@media screen and (max-width: 768px) {
  .service-sec2 .tabs {
    padding: 0;
    flex-wrap: wrap;
  }
}
.service-sec2 .tabs .tab-buttons {
  display: flex;
  flex-direction: column;
  width: 27%;
  position: sticky;
  top: 0;
  padding: 1rem;
}
.service-sec2 .tabs .tab-buttons .tab-button {
  padding: 1rem 1.5rem;
  cursor: pointer;
  border: none;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #64748b;
  text-transform: uppercase;
  background-color: transparent;
}
.service-sec2 .tabs .tab-buttons .tab-button.active {
  color: #17af24;
}
.service-sec2 .tabs .tab-buttons .tab-button.active .line {
  width: 4rem;
  background-color: #17af24;
}
.service-sec2 .tabs .tab-buttons .tab-button span:not(.line) {
  line-height: 1rem;
  font-size: 0.75rem;
  letter-spacing: 0.1rem;
}
.service-sec2 .tabs .tab-buttons .tab-button .line {
  height: 1px;
  width: 2rem;
  background-color: #64748b;
  display: block;
  transition: all 140ms cubic-bezier(0.4, 0, 0.2, 1);
}
.service-sec2 .tabs .tab-contents {
  padding: 2rem;
  width: 73%;
  color: #000;
}
.service-sec2 .tabs .tab-contents .tab-content {
  transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  max-height: 0;
  pointer-events: none;
}
.service-sec2 .tabs .tab-contents .tab-content.active {
  opacity: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-height: -moz-fit-content;
  max-height: fit-content;
}
.service-sec2 .tabs .tab-contents .tab-content.active h4, .service-sec2 .tabs .tab-contents .tab-content.active p, .service-sec2 .tabs .tab-contents .tab-content.active img {
  opacity: 1;
  transform: translateX(0px);
}
.service-sec2 .tabs .tab-contents .tab-content.active p {
  transition-delay: 300ms;
}
.service-sec2 .tabs .tab-contents .tab-content.active p:nth-child(2) {
  transition-delay: 100ms;
}
.service-sec2 .tabs .tab-contents .tab-content.active img {
  transition-delay: 200ms;
}
.service-sec2 .tabs .tab-contents .tab-content h4 {
  transform: translateX(24px);
  transition: transform 400ms cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
}
.service-sec2 .tabs .tab-contents .tab-content img {
  opacity: 0;
  transform: translateX(24px);
  transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1);
}
.service-sec2 .tabs .tab-contents .tab-content p {
  font-size: 18px;
  font-weight: 300;
  opacity: 0;
  transform: translateX(24px);
  transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1);
}
@media screen and (max-width: 768px) {
  .service-sec2 .tabs .tabs {
    flex-direction: column;
  }
  .service-sec2 .tabs .tab-buttons {
    width: 100%;
    height: auto;
  }
  .service-sec2 .tabs .tab-contents {
    width: 100%;
  }
}

.bgvideo {
  z-index: 1;
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
}

.bgvideo-sec {
  background-color: #000;
  position: relative;
  overflow: hidden;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: local;
}
.bgvideo-sec .container {
  position: relative;
  z-index: 2;
}
.bgvideo-sec .container .card {
  border-radius: 0;
  margin: 50px 0;
  background-color: rgba(201, 255, 75, 0.82);
  border: 0;
}
.bgvideo-sec .container h4 {
  font-family: "Montserrat", sans-serif;
  color: #000;
  margin-bottom: 30px;
  font-size: 32px;
  text-align: center;
  font-weight: bold;
  text-transform: uppercase;
}
@media screen and (max-width: 768px) {
  .bgvideo-sec .container h4 {
    font-size: 28px !important;
  }
}
.bgvideo-sec .container p {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  color: #000;
  line-height: 1.6;
  text-transform: uppercase;
}

.bg-img2 {
  max-width: 100%;
  width: 100%;
  height: 110vh;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.details-sec2 {
  padding: 100px 0 100px 0;
  position: relative;
}
.details-sec2 .vertical-tab {
  display: flex;
  padding-left: 10px;
  width: 100%;
  align-items: flex-start;
  justify-content: space-between;
}
.details-sec2 .vertical-tab .nav-tabs {
  width: 30%;
  min-width: 30%;
  border: none;
  box-shadow: -6px 0 0 rgba(0, 0, 0, 0.1);
  vertical-align: top;
  display: table-cell;
}
.details-sec2 .vertical-tab .nav-tabs li {
  float: none;
}
.details-sec2 .vertical-tab .nav-tabs li a {
  color: rgba(0, 0, 0, 0.6901960784);
  background: #ddd;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.5px;
  text-transform: capitalize;
  text-align: center;
  padding: 10px 7px 9px;
  margin: 0 0 20px -10px;
  border-radius: 0 20px 20px 0;
  border: none;
  position: relative;
  z-index: 1;
  transition: all 0.4s ease 0s;
  width: 100%;
  display: block;
}
.details-sec2 .vertical-tab .nav-tabs li a:hover {
  color: #fff;
  background: #17af24;
  border: none;
  text-shadow: 3px 3px rgba(0, 0, 0, 0.4);
}
.details-sec2 .vertical-tab .nav-tabs li a::before {
  content: "";
  background: linear-gradient(to top right, transparent 50%, #333 50%);
  height: 10px;
  width: 10px;
  position: absolute;
  left: 0;
  top: 100%;
  z-index: -1;
}
.details-sec2 .vertical-tab .nav-tabs li.active a {
  color: #fff;
  background: #17af24;
  border: none;
  text-shadow: 3px 3px rgba(0, 0, 0, 0.4);
}
.details-sec2 .vertical-tab .nav-tabs li.active a:hover {
  color: #fff;
  background: #17af24;
  border: none;
  text-shadow: 3px 3px rgba(0, 0, 0, 0.4);
}
.details-sec2 .vertical-tab .tab-content {
  color: #000;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.5px;
  line-height: 21px;
  padding: 0;
  display: table-cell;
}
.details-sec2 .vertical-tab .tab-content h3 {
  color: #000;
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0 0 30px;
}
@media only screen and (max-width: 768px) {
  .details-sec2 .vertical-tab {
    flex-wrap: wrap;
  }
  .details-sec2 .vertical-tab .nav-tabs {
    width: 100%;
    display: block;
  }
  .details-sec2 .vertical-tab .nav-tabs li a {
    padding: 10px 10px 9px;
    margin: 0 0 12px -10px;
  }
  .details-sec2 .vertical-tab .tab-content {
    font-size: 14px;
    display: block;
  }
}
.details-sec2 .download-box {
  transition: all linear 0.3s;
}
.details-sec2 .download-box img {
  max-width: 100%;
  width: 100%;
}
.details-sec2 .download-box h5 {
  margin: 0;
  font-size: 16px;
  color: #000;
  font-weight: bold;
}
.details-sec2 .download-box .btn {
  transition: all linear 0.3s;
}
.details-sec2 .download-box .btn:hover {
  transform: scale(1.2, 1.2);
}
.details-sec2 .download-box:hover {
  transform: scale(1.05, 1.05);
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
}
.details-sec2 .widget {
  text-align: left;
}
.details-sec2 .widget h4 {
  color: #000;
  margin-bottom: 15px;
  font-weight: bold;
  font-size: 30px;
  text-align: center;
}
.details-sec2 .widget ul {
  overflow: hidden;
  border-radius: 15px;
  list-style: none;
  padding: 0;
}
.details-sec2 .widget ul li {
  background-color: #1c8a3b;
  margin-bottom: 2px;
  transition: all linear 0.3s;
}
.details-sec2 .widget ul li a {
  padding: 15px;
  font-size: 15px;
  color: #fff;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: right;
}
.details-sec2 .widget ul li:hover {
  background-color: #17af24;
}
.details-sec2 .widget ul li.active {
  background-color: #17af24;
}

.border-md-end {
  border-right: 1px solid #ccc;
}
@media screen and (max-width: 768px) {
  .border-md-end {
    border-right: 0;
  }
}

.download-box2 {
  transition: all linear 0.3s;
  overflow: hidden;
}
.download-box2 img {
  max-width: 100%;
  width: 100%;
  transition: all linear 0.3s;
}
.download-box2 .audio-player {
  height: 40px;
  width: 100%;
  margin-top: 5px;
}
.download-box2 .audio-player::-webkit-media-controls-panel {
  border-radius: 4px;
  background-color: #d371be;
}
.download-box2 .audio-player::-webkit-media-controls-overflow-button {
  display: none !important;
}
.download-box2 .audio-player::-webkit-media-controls-enclosure {
  filter: invert(1);
  overflow: hidden;
  border-radius: 2px;
}
.download-box2 h5 {
  margin: 0;
  font-size: 16px;
  color: #000;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.download-box2 h5 span {
  color: #17af24;
}
.download-box2 h5 small {
  color: rgba(0, 0, 0, 0.4784313725);
}
.download-box2:hover {
  transform: scale(1.05, 1.05);
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
}
.download-box2:hover img {
  filter: saturate(350%);
}

.gallery-box-2 {
  overflow: hidden;
  border: 1px solid #ccc;
  padding: 15px;
  border-radius: 15px;
  transition: all linear 0.3s;
}
.gallery-box-2 img {
  height: 250px;
  max-width: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 1px solid #ccc;
}
@media screen and (max-width: 768px) {
  .gallery-box-2 img {
    height: 150px;
  }
}
.gallery-box-2 h5 {
  padding: 10px 10px 0;
  text-align: center;
  font-size: 16px;
  margin: 0;
  min-height: 48px;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  width: 100%;
  text-transform: uppercase;
}
.gallery-box-2:hover {
  transform: scale(1.05, 1.05) rotate(0.5deg);
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
}

.about-sec {
  padding: 80px 0 80px 0;
  position: relative;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .about-sec .headline {
    font-size: 24px !important;
  }
}
.about-sec .about-content-list {
  padding: 30px 0;
}
.about-sec .about-content-list h5 {
  color: #12803d;
  font-size: 32px;
  font-weight: 800;
}
.about-sec .about-content-list img {
  float: left;
  margin-right: 25px;
  margin-bottom: 15px;
  max-width: 315px;
  width: 100%;
  border-radius: 20px;
}
@media screen and (max-width: 768px) {
  .about-sec .about-content-list img {
    margin-right: 0;
  }
}
.about-sec .about-content-list p {
  text-align: justify;
}

.cta {
  display: inline-flex;
  padding: 6px 15px;
  text-decoration: none;
  font-size: 18px;
  color: white;
  background: #1c8a3b;
  transition: 1s;
  box-shadow: 6px 6px 0 black;
  transform: skewX(-15deg);
}
.cta:focus {
  outline: none;
}
.cta:hover {
  transition: 0.5s;
  box-shadow: 10px 10px 0 #FBC638;
}
.cta:hover span:nth-child(2) {
  transition: 0.5s;
  margin-right: 15px;
}
.cta:hover path.three {
  animation: color_anim 1s infinite 0.2s;
}
.cta:hover path.one {
  transform: translateX(0%);
  animation: color_anim 1s infinite 0.6s;
}
.cta:hover path.two {
  transform: translateX(0%);
  animation: color_anim 1s infinite 0.4s;
}
.cta span {
  transform: skewX(15deg);
}
.cta span:nth-child(2) {
  transition: 0.5s;
  margin-right: 0px;
  width: 20px;
  margin-left: 15px;
  position: relative;
  top: 12%;
}
.cta path.one {
  transition: 0.4s;
  transform: translateX(-60%);
}
.cta path.two {
  transition: 0.5s;
  transform: translateX(-30%);
}

@keyframes color_anim {
  0% {
    fill: white;
  }
  50% {
    fill: #FBC638;
  }
  100% {
    fill: white;
  }
}
.btn-style-2 {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 15px;
  border-radius: 0;
  border: none;
  position: relative;
  z-index: 1;
  transition: all 0.35s;
}
.btn-style-2:hover, .btn-style-2:focus {
  color: #fff;
}
.btn-style-2:before, .btn-style-2:after {
  content: "";
  background: #1A5319;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  transform: translateX(0%) translateY(0%);
  position: absolute;
  bottom: 0;
  right: 0;
  transition: all 0.4s;
  z-index: -1;
}
.btn-style-2:after {
  background: rgba(255, 255, 255, 0.0823529412);
  width: 25px;
  height: 25px;
  border-radius: 50px;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  transform: translateX(10px) translateY(10px);
}
.btn-style-2:hover:before {
  width: 110%;
  height: 110%;
  transform: translateX(5%) translateY(20%);
}
.btn-style-2:hover:after {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  transform: translateX(0) translateY(0);
}

.card-grad {
  background-image: linear-gradient(89deg, #35af49 13.62% 13.62%, #077139);
  min-height: 64vh;
  border: 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  transition: all 0.3s ease-in-out;
}
.card-grad .card-body {
  padding: 50px;
  color: #fff;
}
.card-grad .card-title {
  font-family: "Montserrat", sans-serif;
  font-size: 26px;
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 15px;
  color: #fff;
}
.card-grad .card-text {
  font-size: 24px;
  line-height: 1.6;
  color: #fff;
  margin-bottom: 20px;
}
.card-grad .btn {
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 10px 20px;
  border-radius: 0;
  border: none;
  color: #1c8a3b;
  background-color: #fff;
  transition: all 0.3s ease-in-out;
}
.card-grad .btn:hover {
  background-color: #11821b;
  color: #fff;
}


#hp-ctn-howItWorks {
    padding:0px 0px 0px 0px;
    text-align: center;
    margin: 100px 0px 0px 0px;
    width: 200px;
    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;
}

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