* {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  word-wrap: break-word;
}
html {
  scroll-behavior: smooth;
}
.hide {
  display: none !important;
}

body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: normal;
}


.navbar {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  /* Higher than the slider */
}

.nav-link {
  color: #101014;
  font-size: 18px;
  margin: 0 20px;
  transition: color .3s ease-in-out;
}

.nav-link:hover {
  color: #78A30E !important;
  font-weight: 700;
}

.nav-link.active {
  color: #78A30E !important;
  font-weight: 700;
}

.navbar.scrolled {
  background-color: #000;
  /* Optional: Change background on scroll */
  color: #fff;
}

.navbar.scrolled a {
  color: #fff;
}

/*loader thx:https://codepen.io/aurer*/
.loader {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  background: #101014;
  background: linear-gradient(to left, #19191f, #101014);
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader svg path,
.loader svg rect {
  fill: #7AA512;
}

/*gallery*/
.gallery-wrapper {
  position: relative;
  z-index: 1;
}

.gallery-wrapper .content {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 3vh 0;
  background: rgb(8, 88, 53);
  background: linear-gradient(90deg, #7AA512 25%, rgba(122, 165, 18,.85) 100%);
}

.gallery-wrapper .content .gallery.full {
  position: relative;
  display: flex;
  align-items: center;
}

.gallery-wrapper .content .gallery.full .swiper-container .swiper-wrapper {
  display: flex;
  height: 80vh;
  align-items: center;
}

.gallery-wrapper .content .gallery.full .swiper-container .swiper-wrapper .swiper-slide {
  position: relative;
  height: 50vh;
  transition: all 0.4s ease-out;
  box-sizing: border-box;
  width: auto;
  opacity: 0.25;
}

.gallery-wrapper .content .gallery.full .swiper-container .swiper-wrapper .swiper-slide.swiper-slide-prev,
.gallery-wrapper .content .gallery.full .swiper-container .swiper-wrapper .swiper-slide.swiper-slide-next {
  width: 20% !important;
}

.gallery-wrapper .content .gallery.full .swiper-container .swiper-wrapper .swiper-slide.swiper-slide-active {
  height: 80vh;
  width: 60% !important;
  opacity: 1;
}

.gallery-wrapper .content .gallery.full .swiper-container .swiper-wrapper .swiper-slide.swiper-slide-active:hover .zoom {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.gallery-wrapper .content .gallery.full .swiper-container .swiper-wrapper .swiper-slide .image {
  width: 100%;
  height: 100%;
}

.gallery-wrapper .content .gallery.full .swiper-container .swiper-wrapper .swiper-slide .image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.gallery-wrapper .content .gallery.full .swiper-container .swiper-wrapper .swiper-slide .overlay {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  width: 100%;
  height: auto;
  padding: 50px 50px 30px 50px;
  background: black;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0) 100%);
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-out;
}

.gallery-wrapper .content .gallery.full .swiper-container .swiper-wrapper .swiper-slide .overlay.show {
  opacity: 1;
  visibility: visible;
}

.gallery-wrapper .content .gallery.full .swiper-container .swiper-wrapper .swiper-slide .overlay.show .text-wrap {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.gallery-wrapper .content .gallery.full .swiper-container .swiper-wrapper .swiper-slide .overlay .text-wrap {
  display: flex;
  flex-direction: column;
  max-width: 600px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(50px);
  transition: all 0.4s linear;
}

.gallery-wrapper .content .gallery.full .swiper-container .swiper-wrapper .swiper-slide .overlay .text-wrap .name span {
  font-size: 2.2em;
  font-weight: 700;
}

.gallery-wrapper .content .gallery.full .swiper-container .swiper-wrapper .swiper-slide .overlay .text-wrap .caption p {
  font-size: 1.16em;
  color: #fff;
  line-height: 1.7;
}

.gallery-wrapper .content .gallery.full .swiper-next-button,
.gallery-wrapper .content .gallery.full .swiper-prev-button {
  position: absolute;
  z-index: 99;
  outline: none;
  transition: all 0.2s linear;
  width: 20%;
  height: 50vh;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  cursor: pointer;
}

.gallery-wrapper .content .gallery.full .swiper-next-button.swiper-button-disabled,
.gallery-wrapper .content .gallery.full .swiper-prev-button.swiper-button-disabled {
  opacity: 0.2;
}

.gallery-wrapper .content .gallery.full .swiper-next-button em,
.gallery-wrapper .content .gallery.full .swiper-prev-button em {
  font-size: 68px;
}

.gallery-wrapper .content .gallery.full .swiper-next-button {
  right: 0;
  padding-left: 5vw;
  justify-content: flex-start;
}

.gallery-wrapper .content .gallery.full .swiper-prev-button {
  left: 0;
  padding-right: 5vw;
}

.gallery-wrapper .content .gallery.thumb {
  position: relative;
  width: 100%;
  max-width: 1020px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding-left: 12px;
}

.gallery-wrapper .content .gallery.thumb .swiper-container {
  width: 100%;
}

.gallery-wrapper .content .gallery.thumb .swiper-container .swiper-wrapper .swiper-slide {
  position: relative;
  height: 10vh;
  box-sizing: border-box;
  cursor: pointer;
}

.gallery-wrapper .content .gallery.thumb .swiper-container .swiper-wrapper .swiper-slide.swiper-slide-thumb-active .image {
  box-shadow: inset 0px 0px 0px 2px #ed1b28;
  padding: 2px;
}

.gallery-wrapper .content .gallery.thumb .swiper-container .swiper-wrapper .swiper-slide.swiper-slide-thumb-active .image .overlay {
  opacity: 1;
}

.gallery-wrapper .content .gallery.thumb .swiper-container .swiper-wrapper .swiper-slide .image {
  width: 100%;
  height: 100%;
  position: relative;
}

.gallery-wrapper .content .gallery.thumb .swiper-container .swiper-wrapper .swiper-slide .image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.gallery-wrapper .content .gallery.thumb .swiper-container .swiper-wrapper .swiper-slide .image .overlay {
  position: absolute;
  left: 2px;
  top: 2px;
  background-color: rgba(43, 44, 54, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  opacity: 0;
  transition: all 0.2s linear;
}

.gallery-wrapper .content .gallery.thumb .swiper-next-button {
  right: -15px;
}

.gallery-wrapper .content .gallery.thumb .swiper-prev-button {
  left: -5px;
}

.gallery-wrapper .content .gallery.thumb .swiper-prev-button em {
  transform: rotate(180deg);
}

.gallery-wrapper .content .gallery.thumb .swiper-next-button,
.gallery-wrapper .content .gallery.thumb .swiper-prev-button {
  position: absolute;
  z-index: 99;
  outline: none;
  transition: all 0.2s linear;
  width: 32px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ed1b28;
  cursor: pointer;
}

.gallery-wrapper .content .gallery.thumb .swiper-next-button:hover,
.gallery-wrapper .content .gallery.thumb .swiper-prev-button:hover {
  background-color: #c5101b;
}

.gallery-wrapper .content .gallery.thumb .swiper-next-button.swiper-button-disabled,
.gallery-wrapper .content .gallery.thumb .swiper-prev-button.swiper-button-disabled {
  opacity: 0.2;
}

/*signature*/
.signature {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  padding: 20px;
}

.signature h3 {
  font-weight: 600;
  font-size: 0.926em;
  color: #ed1b28;
  display: flex;
  margin-bottom: 5px;
}

.signature a,
.signature em {
  text-decoration: none;
  color: #777;
  margin-right: 5px;
  font-size: 0.88em;
  transition: all 0.2s linear;
}

.signature a:hover,
.signature em:hover {
  color: #aaa;
}

/*Mobile*/
@media only screen and (max-width: 1024px) {
  .gallery-wrapper .content {
    padding: 5vh 0;
  }

  .gallery-wrapper .content .gallery.full .swiper-container .swiper-wrapper {
    height: 70vh;
  }

  .gallery-wrapper .content .gallery.full .swiper-container .swiper-wrapper .swiper-slide {
    height: 50vh;
  }

  .gallery-wrapper .content .gallery.full .swiper-container .swiper-wrapper .swiper-slide.swiper-slide-prev,
  .gallery-wrapper .content .gallery.full .swiper-container .swiper-wrapper .swiper-slide.swiper-slide-next {
    width: 10% !important;
  }

  .gallery-wrapper .content .gallery.full .swiper-container .swiper-wrapper .swiper-slide.swiper-slide-active {
    height: 70vh;
    width: 80% !important;
  }

  .gallery-wrapper .content .gallery.full .swiper-container .swiper-wrapper .swiper-slide .overlay {
    padding: 20px;
  }

  .gallery-wrapper .content .gallery.full .swiper-container .swiper-wrapper .swiper-slide .overlay .text-wrap {
    transform: translateY(0);
  }

  .gallery-wrapper .content .gallery.full .swiper-container .swiper-wrapper .swiper-slide .overlay .text-wrap .name span {
    font-size: 1.6em;
  }

  .gallery-wrapper .content .gallery.full .swiper-container .swiper-wrapper .swiper-slide .overlay .text-wrap .caption p {
    font-size: 1.06em;
  }

  .gallery-wrapper .content .gallery.full .swiper-next-button,
  .gallery-wrapper .content .gallery.full .swiper-prev-button {
    width: 10%;
    height: 50vh;
    align-items: center;
    justify-content: center;
  }

  .gallery-wrapper .content .gallery.full .swiper-next-button em,
  .gallery-wrapper .content .gallery.full .swiper-prev-button em {
    font-size: 45px;
  }

  .gallery-wrapper .content .gallery.full .swiper-next-button {
    padding-left: 0;
  }

  .gallery-wrapper .content .gallery.full .swiper-prev-button {
    padding-right: 0;
  }

  .gallery-wrapper .content .gallery.thumb {
    padding: 0 30px;
    max-width: 100%;
  }

  .gallery-wrapper .content .gallery.thumb .swiper-container .swiper-wrapper .swiper-slide {
    height: 80px;
  }

  .gallery-wrapper .content .gallery.thumb .swiper-next-button {
    right: 10px;
  }

  .gallery-wrapper .content .gallery.thumb .swiper-prev-button {
    left: 10px;
  }

  .signature {
    display: none;
  }
}

/* .gallery-wrapper .content .gallery.full .swiper-container .swiper-wrapper{
  transform: translate3d(-10%, 0px, 0px) !important ;
} */

/* .about img {
  border-style: solid;
  border-width: 5px 5px 5px 5px;
  border-color: var(--e-global-color-e514e90);
  border-radius: 100px 10px 10px 10px;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
} */
.spacer-single {
  width: 100%;
  height: 30px;
  display: block;
  clear: both;
}

.btn-main {
  background: #7AA512;
  background-color: #7AA512;
  display: inline-block;
  text-align: center;
  color: #fff;
  outline: 0;
  font-weight: 600;
  text-decoration: none;
  padding: 6px 25px 5px 25px;
  font-size: 14px;
  border: none;
  border-radius: 30px;
  -moz-border-radius: 30px;
  -webkit-border-radius: 30px;
  text-transform: uppercase;
}

a.btn-main:hover,
.btn-main:hover {
  color: #fff;
  -webkit-box-shadow: 2px 2px 20px 0px rgba(29, 29, 31, 0.5);
  -moz-box-shadow: 2px 2px 20px 0px rgba(29, 29, 31, 0.5);
  box-shadow: 2px 2px 20px 0px rgba(29, 29, 31, 0.5);
}



.about .icon-box {
  background-color: var(--surface-color);
  padding: 35px 20px;
  box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  transition: all 0.3s ease-out 0s;
}

.about .icon-box i {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 32px;
  line-height: 0;
  transition: all 0.4s ease-out 0s;
  background-color: color-mix(in srgb, #7AA512, transparent 95%);
  color: #7AA512;
}

.about .icon-box h3 {
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 700;
}

.about .icon-box p {
  margin-bottom: 0;
}

.about .icon-box:hover i {
  background-color: #7AA512;
  color: #fff;
}

.about .icon-boxes .col-md-6:nth-child(2) .icon-box,
.about .icon-boxes .col-md-6:nth-child(4) .icon-box {
  margin-top: -40px;
}

@media (max-width: 768px) {

  .about .icon-boxes .col-md-6:nth-child(2) .icon-box,
  .about .icon-boxes .col-md-6:nth-child(4) .icon-box {
    margin-top: 0;
  }
}


.products .product-box {
  position: relative;
  width: 100%; /* Ensures responsiveness */
  height: 300px; /* Adjust height as needed */
  background: #000;
  margin: 15px auto;
  box-sizing: border-box;
  overflow: hidden;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.8);
  transition: 0.5s;
}

.products .product-box:before,
.products .product-box:after {
  content: '';
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  box-sizing: border-box;
  opacity: 0;
  transition: 0.5s;
}

.products .product-box:before {
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  transform: scaleX(0);
}

.products .product-box:hover:before {
  transform: scaleX(1);
  opacity: 1;
}

.products .product-box:after {
  border-left: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: scaleY(0);
}

.products .product-box:hover:after {
  transform: scaleY(1);
  opacity: 1;
}

.products .product-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

.products .product-box:hover img {
  opacity: 0.2;
  transform: scale(1.2);
}

.products .product-content {
  position: absolute;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  color: #fff;
  text-align: center;
  padding: 20px;
  box-sizing: border-box;
}
.products .product-content h2 {
  margin: 0 0 10px;
  padding: 0;
  color: #fff;
  transition: 0.5s;
  transform: translateY(-50px);
  opacity: 0;
  visibility: hidden;
}

.products .product-content span {
  margin: 0;
  padding: 0;
  color: #fff;
  transition: 0.5s;
  transform: translateY(50px);
  opacity: 0;
  visibility: hidden;
}

.products .product-box:hover .product-content h2,
.products .product-box:hover .product-content span {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.intro-section {
  background-color: rgba(0, 0, 0, 0.616);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  background-image: url('../assets/imgs/copy-space-green-background-leaves.jpg');
  background-size: cover;
  background-attachment: fixed;
  background-blend-mode: darken;
}

.intro-section h2 span {
  color:#7AA512;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
}

.intro-section .btn:hover {
  background-color: #7AA512;
  color: #fff;
  transform: scale(1.05);
  transition: 0.3s;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item+.info-item {
  margin-top: 40px;
}

.contact .info-item i {
  color:#7AA512;
  background: color-mix(in srgb,#7AA512, transparent 92%);
  font-size: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .info-item:hover i {
  background:#7AA512;
  color: #fff;
}

.contact .php-email-form {
  height: 100%;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: #444444;
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  border-color: color-mix(in srgb, #444444, transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color:#7AA512;
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, #444444, transparent 70%);
}

.contact .php-email-form button[type=submit] {
  color: #fff;
  background:#7AA512;
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb,#7AA512, transparent 25%);
}
.imag-slider{
  height: calc(100vh - 72px);
}
.imag-slider .carousel{
  height: 100% !important;
}
.imag-slider .carousel .carousel-inner,.carousel-item{
  height: 100%;
}
.imag-slider img{
  height: 100%;
}

.carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 22%;
  left: 15%;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  color: #fff;
  text-align: center;
  transform: translateY(50%);
  text-shadow: 4px 4px 2px rgba(0,0,0,0.6);
  background-color: rgba(0, 0, 0,.6);
}

.blog .card{
  border: 0;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
}

.highlight {
  font-style: italic;
  color: #e74c3c;
}
.divider {
  margin: 20px 0;
  border-top: 1px solid #ccc;
}
.cta {
  text-align: center;
  margin-top: 20px;
}
.cta a {
  text-decoration: none;
  background: #3498db;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.3s ease;
}
.cta a:hover {
  background: #2980b9;
}