/**
* Template Name: Gp
* Updated: Sep 18 2023 with Bootstrap v5.3.2
* Template URL: https://bootstrapmade.com/gp-free-multipurpose-html-bootstrap-template/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: 'Inria Serif', sans-serif;
  color: #444444; 
}

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

a:hover {
  color: #377f49;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Inria Serif', sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #377f49;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #151515;
}

.back-to-top:hover i {
  color: #377f49;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #151515;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 0px);
  left: calc(50% - 30px);
  border: 6px solid #377f49;
  border-top-color: #151515;
  border-bottom-color: #151515;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 0;
}

#header.header-scrolled,
#header.header-inner-pages {
  background: rgba(0, 0, 0, 0.8);
}

#header .logo {
  font-size: 32px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

#header .logo a {
  color: #fff;
}

#header .logo a span {
  color: #377f49;
}

#header .logo img {
  max-height: 50px;
}

/*--------------------------------------------------------------
#  Get Startet Button
--------------------------------------------------------------*/
.get-started-btn {
  color: #fff;
  border-radius: 4px;
  padding: 7px 25px 8px 25px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
  display: inline-block;
  border: 2px solid #377f49;
}

.get-started-btn:hover {
  background: #ffbb38;
  color: #343a40;
}

@media (max-width: 992px) {
  .get-started-btn {
    padding: 7px 20px 8px 20px;
    margin-right: 15px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 55px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  transition: 0.3s;
  letter-spacing: 2.2px;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #377f49;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  color: #151515;
  font-weight: 400;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  background-color: #377f49;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 40px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #151515;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #151515;
  background-color: #377f49;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;  
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
  color: #151515;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  background-color: #377f49;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  /* background: url("../img/hero-bg.jpg") top center; */
  background-size: cover;
  position: relative;
}

#hero:before {
  content: "";
  /* background: rgba(0, 0, 0, 0.6); */
  /* background: linear-gradient(180deg,#000,#000 2.5%,hsla(0,0%,100%,0) 50%,rgba(0,0,0,.790835084)); */
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero .container {
  position: relative;
  padding-top: 74px;
  text-align: center;
}

#hero h1 {
  margin: 0;
  font-size: 56px;
  font-weight: 700;
  line-height: 64px;
  color: #fff;
  font-family: 'Inria Serif', sans-serif;
}

#hero h1 span {
  color: #377f49;
}

/* #hero h2 {
  color: rgba(255, 255, 255, 0.9);
  margin: 10px 0 0 0;
  font-size: 24px;
} */

#hero .icon-box {
  padding: 30px 20px;
  transition: ease-in-out 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.3);
  height: 100%;
  text-align: center;
}

#hero .icon-box i {
  font-size: 32px;
  line-height: 1;
  color: #377f49;
}

#hero .icon-box h3 {
  font-weight: 700;
  margin: 10px 0 0 0;
  padding: 0;
  line-height: 1;
  font-size: 20px;
  line-height: 26px;
}

#hero .icon-box h3 a {
  color: #fff;
  transition: ease-in-out 0.3s;
}

#hero .icon-box h3 a:hover {
  color: #377f49;
}

#hero .icon-box:hover {
  border-color: #377f49;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 768px) {
  #hero {
    height: auto;
  }

  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 20px;
    line-height: 24px;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 50px 0;
  overflow: hidden;
}

.section-title {
  padding-bottom: 40px;
}

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0 0 5px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #aaaaaa;
  font-family: 'Inria Serif', sans-serif;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: #ffde9e;
  margin: 4px 10px;
}

.section-title p {
  margin: 0;
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: 'Inria Serif', sans-serif;
  color: #151515;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 700;
  font-size: 28px;
  font-family: 'Inria Serif', sans-serif;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding: 0 0 8px 26px;
  position: relative;
}

.about .content ul i {
  position: absolute;
  font-size: 20px;
  left: 0;
  top: -3px;
  color: #377f49;
}

.about .content p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
  padding-top: 20px;
}

.clients .swiper-slide img {
  opacity: 0.5;
  transition: 0.3s;
  filter: grayscale(100);
}

.clients .swiper-slide img:hover {
  filter: none;
  opacity: 1;
}

.clients .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.clients .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  background-color: #ddd;
}

.clients .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #377f49;
}

/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features {
  padding-top: 20px;
}

.features .icon-box {
  padding-left: 15px;
}

.features .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 5px 0 10px 60px;
}

.features .icon-box i {
  font-size: 48px;
  float: left;
  color: #377f49;
}

.features .icon-box p {
  font-size: 15px;
  color: #848484;
  margin-left: 60px;
}

.features .image {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 400px;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  text-align: center;
  border: 1px solid #ebebeb;
  padding: 80px 20px;
  transition: all ease-in-out 0.3s;
  background: #fff;
}

.services .icon-box .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  background: #377f49;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: 0.3s;
}

.services .icon-box .icon i {
  color: #151515;
  font-size: 28px;
  transition: ease-in-out 0.3s;
}

.services .icon-box h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 24px;
}

.services .icon-box h4 a {
  color: #151515;
  transition: ease-in-out 0.3s;
}

.services .icon-box h4 a:hover {
  color: #377f49;
}

.services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .icon-box:hover {
  border-color: #fff;
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
  transform: translateY(-10px);
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  background: linear-gradient(rgba(2, 2, 2, 0.5), rgba(0, 0, 0, 0.5)), url("../img/cta-bg.jpg") fixed center center;
  background-size: cover;
  padding: 60px 0;
}

.cta h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.cta p {
  color: #fff;
}

.cta .cta-btn {
  font-family: 'Inria Serif', sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid #fff;
  color: #fff;
}

.cta .cta-btn:hover {
  background: #377f49;
  border-color: #377f49;
  color: #151515;
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 19.5px 142px 19.5px 31px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #444444;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
  border-radius: 20px 0 20px 20px;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  color: #fff;
  background: #377f49;
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: rgba(21, 21, 21, 0.6);
}

.portfolio .portfolio-wrap::before {
  content: "";
  background: rgba(21, 21, 21, 0.6);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}

.portfolio .portfolio-wrap img {
  transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-wrap .portfolio-info {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 20px;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
}

.portfolio .portfolio-wrap .portfolio-info p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
  font-style: italic;
}

.portfolio .portfolio-wrap .portfolio-links {
  text-align: center;
  z-index: 4;
}

.portfolio .portfolio-wrap .portfolio-links a {
  color: #fff;
  margin: 0 5px 0 0;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}

.portfolio .portfolio-wrap .portfolio-links a:hover {
  color: #377f49;
}

.portfolio .portfolio-wrap:hover::before {
  opacity: 1;
}

.portfolio .portfolio-wrap:hover img {
  transform: scale(1.2);
}

.portfolio .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #377f49;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #377f49;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(21, 21, 21, 0.08);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts .content {
  padding: 30px 0;
}

.counts .content h3 {
  font-weight: 700;
  font-size: 34px;
  color: #151515;
}

.counts .content p {
  margin-bottom: 0;
}

.counts .content .count-box {
  padding: 20px 0;
  width: 100%;
}

.counts .content .count-box i {
  display: block;
  font-size: 36px;
  color: #377f49;
  float: left;
}

.counts .content .count-box span {
  font-size: 36px;
  line-height: 30px;
  display: block;
  font-weight: 700;
  color: #151515;
  margin-left: 50px;
}

.counts .content .count-box p {
  padding: 15px 0 0 0;
  margin: 0 0 0 50px;
  font-family: 'Inria Serif', sans-serif;
  font-size: 14px;
  color: #3b3b3b;
}

.counts .content .count-box a {
  font-weight: 600;
  display: block;
  margin-top: 20px;
  color: #3b3b3b;
  font-size: 15px;
  font-family: 'Inria Serif', sans-serif;
  transition: ease-in-out 0.3s;
}

.counts .content .count-box a:hover {
  color: #626262;
}

.counts .image {
  background: url("../img/counts-img.jpg") center center no-repeat;
  background-size: cover;
  min-height: 400px;
}

@media (max-width: 991px) {
  .counts .image {
    text-align: center;
  }

  .counts .image img {
    max-width: 80%;
  }
}

@media (max-width: 667px) {
  .counts .image img {
    max-width: 100%;
  }
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials {
  padding: 80px 0;
  background: url("../img/testimonials-bg.jpg") no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
}

.testimonials::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
}

.testimonials .section-header {
  margin-bottom: 40px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  text-align: center;
  color: #fff;
}

.testimonials .testimonial-item .testimonial-img {
  width: 100px;
  border-radius: 50%;
  border: 6px solid rgba(255, 255, 255, 0.15);
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #fff;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #ddd;
  margin: 0 0 15px 0;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: rgba(255, 255, 255, 0.6);
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
  color: #eee;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.4);
  opacity: 0.5;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #377f49;
  opacity: 1;
}

@media (min-width: 1024px) {
  .testimonials {
    background-attachment: fixed;
  }
}

@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team {
  background: #fff;
  padding: 60px 0;
}

.team .member {
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.team .member .member-img {
  position: relative;
  overflow: hidden;
}

.team .member .social {
  position: absolute;
  left: 0;
  bottom: 30px;
  right: 0;
  opacity: 0;
  transition: ease-in-out 0.3s;
  text-align: center;
}

.team .member .social a {
  transition: color 0.3s;
  color: #151515;
  margin: 0 3px;
  border-radius: 4px;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.8);
  transition: ease-in-out 0.3s;
  color: #484848;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.team .member .social a:hover {
  color: #151515;
  background: #377f49;
}

.team .member .social i {
  font-size: 18px;
  line-height: 0;
}

.team .member .member-info {
  padding: 25px 15px;
}

.team .member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
  color: #151515;
}

.team .member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #aaaaaa;
}

.team .member .member-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: #777777;
}

.team .member:hover .social {
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  width: 100%;
  background: #fff;
}

.contact .info i {
  font-size: 20px;
  background: #377f49;
  color: #151515;
  float: left;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #151515;
}

.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #484848;
}

.contact .info .email,
.contact .info .phone {
  margin-top: 40px;
}

.contact .php-email-form {
  width: 100%;
  background: #fff;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #377f49;
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type=submit] {
  background: #377f49;
  border: 0;
  padding: 10px 24px;
  color: #151515;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
  background: #ffcd6b;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: whitesmoke;
  min-height: 40px;
  margin-top: 74px;
}

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 400;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #2f2f2f;
  content: "/";
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 68px;
  }

  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: black;
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 14px;
}

#footer .footer-top {
  background: #151515;
  border-bottom: 1px solid #222222;
  padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
  font-size: 28px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
}

#footer .footer-top .footer-info h3 span {
  color: #377f49;
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
 font-family: 'Inria Serif', sans-serif;
  color: #fff;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #292929;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #377f49;
  color: #151515;
  text-decoration: none;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #377f49;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  color: #377f49;
}

#footer .footer-top .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
}

#footer .footer-top .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px;
  width: calc(100% - 110px);
}

#footer .footer-top .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: -2px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #377f49;
  color: #151515;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

#footer .footer-top .footer-newsletter form input[type=submit]:hover {
  background: #ffcd6b;
}

#footer .copyright {
  text-align: center;
  padding-top: 30px;
}

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}
.blink-arrow {
  display: inline-block;
  animation: fade-animation 1s infinite;
  font-size: 20px; /* Adjust size as needed */

}

@keyframes fade-animation {
  0% {
      opacity: 1;
  }
  50% {
      opacity: 0;
  }
  100% {
      opacity: 1;
  }
}
.custom-km {
position: relative;
color: #fff;
top: 5px;
left: 38%;
font-weight: bold;
  color: #fbff00;
  animation: fade-animation 1s infinite;
}

@keyframes blink-animation {
  to {
    visibility: hidden;
  }
}
.ps-timeline-sec {
position: relative;
background: #fff;
}

.ps-timeline-sec .container {
position: relative;
}

.ps-timeline-sec .container ol:before {
background: #fff;
content: "";
width: 10px;
height: 10px;
border-radius: 100%;
position: absolute;
left: 8px;
top: -200%;
}

.ps-timeline-sec .container ol:after {
background: #fff;
content: "";
width: 10px;
height: 10px;
border-radius: 100%;
position: absolute;
right: 8px;
top: -200%;
}

.ps-timeline-sec .container ol.ps-timeline {
margin: 200px 0;
padding: 0;
border-top: 2px solid #fff;
list-style: none;
}

.ps-timeline-sec .container ol.ps-timeline li {
float: left;
width: 20%;
padding-top: 30px;
position: relative;
color: #fff;
}

.ps-timeline-sec .container ol.ps-timeline li span {
width: 50px;
height: 50px;
margin-left: -25px;
background: #3a6d37;
border: 4px solid #fff;
border-radius: 50%;
box-shadow: 0 0 0 0px #fff;
text-align: center;
line-height: 40px;
color: #df8625;
font-size: 2em;
font-style: normal;
position: absolute;
top: -26px;
left: 50%;
}

.ps-timeline-sec .container ol.ps-timeline li span.ps-sp-top:before {
content: '';
color: #fff;
width: 2px;
height: 46px;
background: #fff;
position: absolute;
top: -50px;
left: 50%;
}

.ps-timeline-sec .container ol.ps-timeline li span.ps-sp-top:after {
content: '';
color: #fff;
width: 8px;
height: 8px;
background: #fff;
position: absolute;
bottom: 90px;
left: 44%;
border-radius: 100%;
}

.ps-timeline-sec .container ol.ps-timeline li span.ps-sp-bot:before {
content: '';
color: #fff;
width: 2px;
height: 50px;
background: #fff;
position: absolute;
bottom: -50px;
left: 50%;
}

.ps-timeline-sec .container ol.ps-timeline li span.ps-sp-bot:after {
content: '';
color: #fff;
width: 8px;
height: 8px;
background: #fff;
position: absolute;
top: 90px;
left: 44%;
border-radius: 100%;
}

.ps-timeline-sec .container ol.ps-timeline li .img-handler-top {
position: absolute;
bottom: 0;
margin-bottom: 130px;
width: 100%;
text-align: center;
}

.ps-timeline-sec .container ol.ps-timeline li .img-handler-top img {
display: table;
margin: 0 auto;
}

.ps-timeline-sec .container ol.ps-timeline li .img-handler-bot {
position: absolute;
margin-top: 60px;
width: 100%;
text-align: center;
}

.ps-timeline-sec .container ol.ps-timeline li .img-handler-bot img {
display: table;
margin: 0 auto;
}

.ps-timeline-sec .container ol.ps-timeline li p {
text-align: center;
width: 80%;
margin: 0 auto;
}

.ps-timeline-sec .container ol.ps-timeline li .ps-top {
position: absolute;
bottom: 0;
margin-bottom: 100px;
}

.ps-timeline-sec .container ol.ps-timeline li .ps-bot {
position: absolute;
margin-top: 35px;
}

@media screen and (max-width: 767px) {
  .gap {
    display: none;
  }
}
.nav-number{
  background-color: #377f49;
  color: #fff;
  padding: 5px 20px 5px 20px;
  border-radius: 20px 0 15px 20px;
}
/* //scroll down button starts  */
.scroll-indicator {
position: absolute;
bottom: 45px;
transform: translateY(50%);
/* display: flex; */
align-items: center;
color: #fff;
}

.scroll-indicator span {
margin-left: -15px; 
padding-top: 5px;
}

.arrows-container {
display: flex;
flex-direction: column; /* Stack arrows vertically */
}

.arrow {
width: 0.6em;
height: 0.6em;
background-color: transparent;
z-index: 80;
border-width: 0.15em 0 0 0.15em;
border-style: solid;
border-color: #fff;
animation: scrolldown 1.2s ease-in-out infinite 0.15s;
}
.hero-content {
position: absolute;
top: 50%;
left: 204px; /* Adjust as needed */
transform: translateY(-50%);
color: #fff;
z-index: 2;
}

.hero-content .content-inner {
text-align: left;
margin-left: auto;
margin-right: auto;
max-width: 600px; /* Adjust as needed */
}

.hero-content h3 {
font-family: AlethiaPro;
font-size: 25px;
font-weight: normal;
font-stretch: normal;
font-style: normal;
line-height: 1;
letter-spacing: 2.5px;
text-align: left;
color: #fff;
}

.hero-content h2 {
font-family: AlethiaPro;
font-size: 45px;
font-weight: normal;
font-stretch: normal;
font-style: normal;
line-height: 1;
letter-spacing: 5px;
text-align: left;
color: #fff;

}

.hero-content hr {
width: 730px;
height: 0;
/* margin: 10.5px 82px 0 81.6px; */
opacity: 0.3;
border: solid 1px #fff;

}
.social-icons {
position: absolute;
bottom: 20px;
left: 50px;
}

.social-icon {
display: inline-block;
margin-right: 10px;
font-size: 16px;
color: #8b8585;
}

.social-icon:hover {
color: #ffd700; /* Change color on hover */
}

@keyframes scrolldown {
0% {
    transform: translateY(20%) rotate(-135deg); /* Rotate to point down */
    opacity: 0.7;
}
50% {
    transform: translateY(0%) rotate(-135deg);
    opacity: 0.2;
}
100% {
    transform: translateY(20%) rotate(-135deg);
    opacity: 0.7;
}
}

/* Media Queries for Mobile Devices */
@media (max-width: 768px) {
.hero-content {
    top: 45%;
    bottom: 15%;
    left: 35%;
    transform: translateX(-50%);
    text-align: center;
}

.hero-content .content-inner {
    max-width: 100%;
}

.hero-content h3 {
    font-size: 18px;
    letter-spacing: 1.5px;
}

.hero-content h2 {
    font-size: 30px;
    letter-spacing: 2px;
}

.hero-content hr {
    width: 80%;
}

.social-icons {
    bottom: 10px;
    left: 14%;
    transform: translateX(-50%);
}

.scroll-indicator {
    bottom: 5px;
}

.scroll-indicator span {
    font-size: 12px;
}
}

/* Media Queries for very small devices */
@media (max-width: 576px) {
.hero-content {
    bottom: 15%;
}

.hero-content h3 {
    font-size: 16px;
}

.hero-content h2 {
    font-size: 24px;
}

.social-icons {
    bottom: 5px;
}
}


/* Media query for mobile view */
@media (max-width: 767px) {

}
.header .icon {
  position: relative;
  top: 0px;
  left: 0px;
  /* width: 50px; */
  height: auto;
}
.header h1 {
    font-size: 2.5em;
    margin: 0;
}
.content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.text {
    flex: 1;
    min-width: 300px;
    /* padding: 20px; */
}
.text p {
    font-size: 16px;
    line-height: 1.4;
}


.download-button {
    display: flex;
    justify-content: left;
    padding: 20px 0;
    margin-bottom: 50px;
}
.download-button button {
    background-color: #3a6d37;
    color: white;
    border: none;
    padding: 10px 20px 10px 20px;
    font-size: 1em;
    cursor: pointer;
    border-radius: 20px 0 20px 20px;
}
.download-button button:hover {
          background-color: #000000; /* Black color on hover */
          box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.3); /* Enhanced shadow on hover */
         
      }
.footer {
    text-align: center;
    /* padding: 50px 0; */
}
.footer img {
    width: 100%;
    display: block;
}
.extra-image {
          position: absolute;
          bottom: -67%;
          left: 0;
          /* width: 150px;  */
          transform: translate(0%, 100%);
      }

  /* Media query for smaller screens */
  @media (max-width: 768px) {
    #hero {
      height: 40vh; /* Adjust height as needed */
    }
    
    .container-xxxl {
      max-width: 100%;
      
    }
    
    video {
      width: 157%;
      height: auto;
    }
    .dotted-circle {
        bottom: -10px;
    }
    /*.image-text-circle::after {*/
    /*    display: none;*/
    /*}*/
  }
  @media (max-width: 767px) {
a#scroll-btn {
  display: none; /* Hide the button on smaller screens */
}
}
.image-container {
  position: center;
}

.center-image {
  max-width: 70%;
  max-height: 70%;
}
.bg-video {
position: relative;
height: 100vh;
width: 100%;
overflow: hidden;
}

.video-fluid {
position: absolute;
top: 50%;
left: 50%;
width: 100%;
height: 100%;
object-fit: cover; /* Ensures the video covers the container without distortion */
transform: translate(-50%, -50%);
z-index: -1;
}
.custom-section {
display: flex;
justify-content: center;
align-items: center;
min-height: 20vh; /* You can adjust the height as needed */
}

.image-container {
margin: auto;
}
@media only screen and (min-width: 390px)  and (max-width: 767px) {
.bg-video {
height: 45vh;
}
}
.bg-video {
position: relative;
}

.image-text {
position: relative;
color: white;
text-align: center;
}

.image-text::after {
content: '';
position: absolute;
left: 50%;
bottom: -240%;
width: 1px;
height: 200%; /* Adjust this value as needed */
background-color: white;
transform: translateX(-50%);
}

.image-text img {
display: block;
margin: 0 auto;
}

.image-text h2,
.image-text p {
margin: 14px 0;
}
.image-text1 {
position: relative;
color: white;
text-align: center;
top: -38%;
}

.image-text1 img {
display: block;
margin: 0 auto;
}

.image-text1 h2,
.image-text1 p {
margin: 14px 0;
}
.vertical-line {
position: absolute;
left: 50%;
bottom: 0;
width: 1px;
height: 50%;
background-color: white;
transform: translateX(-50%);
}
.dotted-circle {
  width: 100px; /* Adjust as needed */
  height: 100px; /* Adjust as needed */
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 0; /* Remove border to avoid double border effect */
  bottom: -12px;
  right: -135px;
}

.dotted-circle::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px dashed white; /* White dashed border */
  border-radius: 50%; /* Make it a circle */
  mask-image: conic-gradient(from 0deg, black 0deg, black 10deg, transparent 10deg, transparent 20deg);
  -webkit-mask-image: conic-gradient(from -360deg, black 360deg, black 10deg, transparent 385deg, transparent 31deg);
}


.circle-number {
  color: white; /* White text */
  font-size: 24px; /* Adjust font size as needed */
  font-weight: bold; /* Bold text */
  position: relative; /* Use relative positioning to place it within the circle */
}
.image-text-circle {
position: relative;
color: white;
text-align: center;
}

.image-text-circle::after {
content: '';
position: absolute;
left: 50%;
bottom: -205%;
width: 1px;
height: 200%; /* Adjust this value as needed */
background-color: white;
transform: translateX(-50%);
}

.image-text-circle img {
display: block;
margin: 0 auto;
}

.image-text-circle h2,
.image-text-circle p {
margin: 10px 0;

}
.side-overlay-image {
position: absolute;
top: -15%;
left: -129%;
z-index: 1;
width: 200px;
height: auto;

}
.side-left-overlay-image {
position: absolute;
top: -120%;
left: -153%;
z-index: 1;
width: 200px;
height: auto;

}
.right-side-overlay-image {
position: absolute;
bottom: -245%;
right: -125%;
z-index: 1;
width: 200px;
height: auto;

}
.right1-side-overlay-image {
position: absolute;
bottom: -245%;
right: -138%;
z-index: 1;
width: 200px;
height: auto;

}
.info-section {
   
  padding-top: 20px;
  
  
}

.info-box {
  position: relative;
}

.info-icon {
  width: 40px;
  height: 40px;
  margin-right: 10px;
}

.info-text h3 {
  margin: 0;
  font-size: 18px;
  color: #4b4b4b;
  font-weight: bold;
}

.info-text p {
  margin: 0;
  font-size: 14px;
  color: #8d8d8d;
}

.divider {
  position: absolute;
  right: 35px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 50px;
  background-color: #c5bfa8;

}


.description p {
  margin: 0;
  font-size: 16px;
  color: #4b4b4b;
}
    .image1{
      border-top-left-radius: 50px;
    }
    .image3{
      border-top-right-radius: 50px;
    }
    .image13{
      border-bottom-left-radius: 50px;
    }
    .image15{
      border-bottom-right-radius: 50px;
    }
    .gap{
      height: 20px;
    }
  

      .card-inner {
          position: relative;
          width: 100%;
          height: 100%;
          text-align: left;
          transition: transform 0.6s;
          transform-style: preserve-3d;
      }

      .card:hover .card-inner {
          transform: rotateY(180deg);
      }

      .card img {
          width: 100%;
          height: 100%;
          backface-visibility: hidden; /* Hides the back face when not flipped */
      }

      .flip-card-back {
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background-color: #f6f4ea;
          color: #303030;
          display: flex;
          align-items: flex-start;
          justify-content: flex-start;
          backface-visibility: hidden;
          transform: rotateY(180deg);
         
          padding: 30px;
      }
      .bottom-heading {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  color: white; /* Adjust the text color */
  padding: 10px; /* Adjust the padding */
  text-align: center;
  width: 100%; /* Make the heading take full width */
  font-family: AlethiaPro;
  font-size: 18px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 3.33;
  letter-spacing: normal;
  font-size: 18px;
}

.line1-container {
  display: flex;
  align-items: center;
  margin-top: 15px;
  margin-bottom: 15px;
}

.thick-line1 {
  width: 65px;
  height: 4px;
  background-color: #fff;
  border-radius: 2px;
}

.thin-line1 {
  flex-grow: 1;
  height: 1px;
  background-color: #fff;  /* Adjust the color */
  
}
.line2-container {
  display: flex;
  align-items: center;
  margin-top: 15px;
  margin-bottom: 15px;
  padding-left: 39%;
}

.thick-line2 {
  width: 65px;
  height: 4px;
  background-color: #fff;
  border-radius: 2px;
}

.thin-line2 {
  flex-grow: 1;
  height: 1px;
  background-color: #fff;  /* Adjust the color */
  max-width: 100px;
  
}

.line-container {
  display: flex;
  align-items: center;
  margin-top: 15px;
  margin-bottom: 15px;
}

.thick-line {
  width: 65px;
  height: 4px;
  background-color: #303030;
  border-radius: 2px;
}

.thin-line {
  flex-grow: 1;
  height: 1px;
  background-color: #c5bfa8;  /* Adjust the color */
  
}
.line-container-video {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 15px;
  margin-bottom: 15px;
}

.thick-line-vdo {
  width: 65px;
  height: 4px;
  background-color: #303030;
  border-radius: 2px;
}

.thin-line-vdo {
  width: 150px;
  height: 1px;
  background-color: #c5bfa8;  /* Adjust the color */
  
}
.card {
  border: none;
  background: none; /* Ensure no background color is set */
}
.flip-card-back img.logo-icon {
     height: 25px;
     width: 25px;
     margin-bottom: 6px;
  }

  .flip-card-back h5 {
    text-transform: uppercase;
    font-size: 25px;
  }
  .custom-line {
    width: 80px; /* Set the width to create a vertical line */
    height: 50%; /* Adjust the height to center the line vertically */
    background-color: #ccc0b8; /* Set the color of the line */
    display: inline-block;
    margin: 0 8px; /* Adjust the spacing as needed */
    border: 1px solid;
}


.custom-btn {
  border-radius: 20px 0 20px 20px;
  background-color: #3a6d37;
  color: #fff; /* Text color */
  padding: 6px 25px; /* Adjust padding as needed */
  transition: background-color 0.3s;
  border: none; /* Remove the border */
  outline: none; /* Remove the outline on focus */
  float: right;
}

.custom-btn:hover {
  background-color: #000;
  cursor: pointer;
}
.custom-btn1 {
  border-radius: 20px 0 20px 20px;
  background-color: #3a6d37;
  color: #fff; /* Text color */
  padding: 6px 25px; /* Adjust padding as needed */
  transition: background-color 0.3s;
  border: none; /* Remove the border */
  outline: none; /* Remove the outline on focus */
  float: center;
}

.custom-btn1:hover {
  background-color: #000;
  cursor: pointer;
}
.info-label {
  font-weight: bold;
}

.info-line {
  border: 1px solid #000;
  margin: 10px 0;
}

.info-value {
  margin-top: 10px;
}
.left-side {
  flex: 1;
  /* background-color: #e8e0d5; */
  display: flex;
  align-items: center;
  justify-content: center;
  
}
.left-side iframe {
width: 100%;
height: 550px;
border: none;
border-bottom-left-radius: 50px;
}
.left-side img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}
.right-side {
  flex: 1;
  padding: 20px;
}
.right-side h2 {
  color: #574541;
  margin-top: 0;
}
.tabs-container {
  display: flex;
  /* border-bottom: 2px solid #ccc0b8; */
  margin-bottom: 20px;
}
.tab {
  padding: 10px 20px;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}
.tab.active-tab {
  border-bottom: 2px solid#3a6d37;
  color:#3a6d37;
}
.tab:hover {
  background-color: #f2ebe3;
}
.content-container {
  display: none;
  flex-direction: column;
}
.content-container.active-content {
  display: flex;
}
.content-box {
  background-color: #f2ebe3;
  border: 1px solid #ccc0b8;
  border-radius: 10px;
  padding: 15px;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1;
}
.distance {
  font-weight: bold;
  color: #574541;
}
.bottom-image {
  margin-top: 20px;
  text-align: center;
  position: absolute;
  z-index: 0;
  right: 0;
}
.bottom-image img {
  width: 95%;
  height: auto;

}
@media (max-width: 768px) {
  .tab {
  padding: 5px 10px;
  
}
.line2-container {
  padding-left: 15%;
}
.image-text1 {
  top: 26%;
}
.vertical-line {
  height: 10%;
}
}
.residential-block1 h1{
  color: black;
font-size: 31px !important;
line-height: 37px !important;
letter-spacing: -0.25px !important;
margin-top: 8% !important;
}
/* .commercial-block, .residential-block1{
      padding: 6% 4% !important;

  } */
  .residential-block1 #swiper-21 .swiper-wrapper .swiper-slide figure img{
      margin-bottom: 10%;
      padding:3.8% 22%;
    }
    .residential-block1 #swiper-31 .swiper-wrapper .swiper-slide figure img{
      margin-bottom: 10% !important;
      padding:3.8% 22% !important; 
    }
    .residential-block1 #swiper-41 .swiper-wrapper .swiper-slide figure img{
      margin-bottom: 10% !important;
      padding:3.8% 22% !important;  
    }
    
.residential-block1 .row {
display: flex;
width: 100%;
flex-wrap: nowrap;
}
.residential-block1 .col-lg-6 {
width: 50%;
}
.residential-block1 .slider-sec-img {
width: 100%;
display: flex;
flex-wrap: nowrap;
min-height: 300px;
}
.residential-block1 .slider-sec-img .img {
width: 100%;
display: none;
transition: all 0.5s;
}

.residential-block1 .swiper-slide-prev::before{
position: absolute;
content: "";
height: 100%;
width: 100%;
top:0;
left: 0;
background: #030303a1;
z-index: 1;
}
.residential-block1 .swiper-slide-next:before{
position: absolute;
content: "";
height: 100%;
width: 100%;
top:0;
left: 0;
background: #030303a1;
z-index: 1;
}

.residential-block1 .swiper-slide-active::after{
background: #03030363 !important;
z-index: 0;
}
.residential-block1 .swiper-slide-active{
background: transparent !important;
}


.residential-block1 .slider-sec-img .img figure img {
width: 100%;
height: 100%;
object-fit: cover;
transition: all 0.5s;
}
.residential-block1 .data {
display: none;
}
.residential-block1 .maincontent {
display: flex;
flex-flow: column;
width: 100%;
/* height: 100%; */
justify-content: center;
align-items: center;
}

.residential-block1 ul {
display: block;
padding: 0;
margin: 0;
list-style-type: none;
margin-left: -7px;

}
.residential-block1 ul li {
padding: 1% 0% 0% 0% !important;
margin: 10px;
cursor: pointer;
user-select: none;
font-size: 60px;
letter-spacing: 1.2px;
margin-bottom: 10px;
}
.residential-block1 .slider-sec-img .img.active {
width: 100%;
transition: all 0.5s;
display: block;
background: #03030300 ;
z-index: 0;


}

.residential-block1 .data.active {
display: block;
}
.residential-block1 ul li.active {
/* border-bottom: 2px solid #000; */
/* border-bottom: 3px solid #a77b40; */
border-color: #dee2e60a #dee2e600 #a77b40 #fff0;
color: black;
font-weight: 600;
}
.residential-block1 .items:has(li:first-child.active) + .content + .arrow .left {
opacity: 0.5;
cursor: no-drop;
}
.residential-block1 .items:has(li:last-child.active) + .content + .arrow .right {
opacity: 0.5;
cursor: no-drop;
}
.residential-block1 .swiper-custom-nav svg:hover{
opacity: 0.6 !important;
/* background-color: #717171 !important; */
border-radius: 25px !important;
fill: white !important;
/* padding-left: 12px;
padding-right: 10px; */
}
.residential-block1 .swiper-custom-nav svg{
padding-left: 12px;
padding-right: 10px; 
opacity: 1 !important;
background-color: #00000012 !important;
border-radius: 25px !important;

}
.residential-block1 .swiper-wrapper{
transform: translate3d(23px, 0px, 0px);
}
.residential-block1 .swiper-wrapper .swiper-slide figure {
margin: 0 0 0rem !important;}

.residential-block1 #swiper-21 .swiper-wrapper .swiper-slide figure img{
border: 1px solid #00000040;
padding: 3.8% 22% ;
}

.residential-block1 #swiper-31 .swiper-wrapper .swiper-slide figure img{
border: 1px solid #00000040;
padding: 3.8% 25%;
}

.residential-block1 #swiper-41 .swiper-wrapper .swiper-slide figure img{
border: 1px solid #00000040;
padding: 3.8% 25%;
}
.residential-block1 .swiper-wrapper .swiper-slide figure .logoborder{
border: 1px solid #00000040;
padding: 4% 25% !important;
text-align: center;
}
.swiper-slide .caption {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  padding: 10px;
  border-radius: 5px;
}
.position-relative {
position: relative !important;
left: -30px;
bottom: -100px;
}
.gradient-background {
position: relative;
background: linear-gradient(180deg, #3a6d37 0%, #4f7d4e 50%, #eaf4f8 100%);
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: flex-start;
}
.full-width-image-container {
  width: 100%;
  overflow: hidden;
}

.full-width-image {
  width: 100%;
  display: block;
}
.paragraph-with-line {
border-left: 1px solid #fff; /* Vertical line color */
padding-left: 25px;
}
.image-text3{
padding-top: 75px;
}
.left-bottom-image {
position: absolute;
bottom: 10%; /* Adjust as needed */
left: 10%; /* Adjust as needed */
transform: translateX(-50%); /* Move it slightly left from its position */
z-index: 0; /* Ensure the image is beneath the content */
pointer-events: none; /* Prevent the image from capturing clicks */
}
.icon-image1 {
width: 65%; 
height: auto;
padding-top: 35px;
padding-bottom: 35px;
}

.center-image1 {
width: 70%; 
height: auto;
}
.custom-tree{
padding-top: 75px;
}
/* .left-bottom-image img {
width: 150px;
height: auto;
} */
@media (max-width: 768px) {
/* .header {
    text-align: center;
}

.col-md-4, .col-md-5, .col-md-3 {
    width: 100%;
    text-align: center;
}

.line-container {
    align-items: center;
} */

.slider-sec-img {
    justify-content: center;
    padding-top: 30px;
}

.residential-block1 .row {
    flex-wrap: wrap;
}

.residential-block1 .col-lg-2 {
    display: none;
}

.residential-block1 .col-lg-10 {
    width: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
}

.residential-block1 .slider-sec-img .img {
    width: 100%;
    display: flex;
    justify-content: center;
}

.swiper-slide figure img {
    width: 100%;
    height: auto;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.swiper-slide .caption {
    position: relative;
    bottom: 0;
    left: 0;
    transform: none;
    background-color: rgba(0, 0, 0, 0.7);
    margin-top: 10px;
}

.swiper-custom-nav svg {
    width: 40px;
    height: 40px;
    padding: 5px;
}
}

.form-container {
  background: linear-gradient(to bottom, #054001, #EEEEEE);
  /*border-radius: 0 0 50px 0;*/
  padding: 40px 20px 20px 20px;
  width: 350px;
  /* box-shadow: 0px 4px 8px rgba(0,0,0,0.2); */
}

.form-container h1 {
  font-size: 20px;
  color: #ffffff;
  margin-bottom: 20px;
  text-align: left;
}

.form-container input, 
.form-container textarea {
  width: calc(100% - 20px); /* Subtract padding to fit within the container */
  padding: 10px;
  margin-bottom: 20px;
  border: none;
  border-bottom: 1px solid #ffffff;
  background: transparent;
  color: #ffffff;
  font-size: 14px;
}

.form-container input::placeholder,
.form-container textarea::placeholder {
  color: #ffffff;
  opacity: 0.8;
}

.form-container input:focus,
.form-container textarea:focus {
  outline: none;
  border-bottom: 2px solid #A58E37;
}

.form-container .submit-btn {
  background-color: #a28956;
  color: white;
  padding: 5px 20px;
  border: none;
  border-radius: 20px 0 15px 20px;
  font-size: 16px;
  cursor: pointer;
  text-align: center;
  display: inline-block;
  width: auto; /* Auto width to fit content */
  height: auto; /* Auto height to fit content */
  box-shadow: 0px 4px 8px rgba(0,0,0,0.2);
}

.form-container .submit-btn:hover {
  background-color: #8e7a44;
}

@media only screen and (max-width: 480px) {
/* Remove this CSS block */
html, body {

overflow-x: hidden;
}
}
.toggle-icon {
position: absolute;
right: 10px; /* Adjust the position of the toggle icon */
}

.card-header {
position: relative;
padding-right: 30px; /* Adjust padding for icon space */
}

.card-header a {
display: block;
width: 100%;
}
.card-header a:hover {
color: #377f49 !important; /* Use !important to ensure the hover color takes precedence */
}

.toggle-icon {
width: 24px; /* Adjust the width as needed */
display: inline-block;
}

.collapse-list__collapse-text {
    /* margin-left: 20px; */
    padding-top: 10px;
  }
  .collapse-list__collapse {
    padding: 8px;
  }
  .collapse-list__collapse-head {
    font-stretch: normal;
    font-style: normal;
    font-size: 16px;
    text-transform: none;
    font-weight: normal;
    font-family: 'Inria Serif', sans-serif;
  }

  
  .collapse-list__title {
    font-size: 48px;
    line-height: 1.25;
    font-family: 'Inria Serif', sans-serif;
    margin-bottom: 34px;
  }
  
  .collapse-list__text {
    font-size: 16px;
    line-height: 1.75;
    color: #666;
    line-height: 1.75;
    margin-bottom: 33px;
  }
  
  .collapse-list__collapse:not(:last-of-type) {
    border-bottom: 2px solid #e7e7e7;
  }
  
  .collapse-list__collapse-head {
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 600;
    color: #377f49;
    padding: 20px 40px 18px 0;
    position: relative;
    display: block;
    text-decoration: none;
    transition: all 0.3s;
  }
  
  .collapse-list__collapse-head.collapsed:not(:hover) {
    color: currentColor;
  }
  
  .collapse-list__collapse-head-icon {
    position: absolute;
    right: 3px;
    top: 24px;
    font-size: 17px;
    transform: scale(1, 1);
    transition: all 0.3s;
  }
  
  .collapse-list__collapse-head.collapsed .collapse-list__collapse-head-icon {
    transform: scale(1, -1);
  }
  
  .collapse-list__collapse-text {
    font-size: 16px;
    line-height: 1.75;
    color: #666;
    line-height: 1.75;
  }
  
  .collapse-list__collapse-text-inner {
    padding-bottom: 32px;
  }
  label {
    display: initial !important;
}
.custom-button {
  background-color: #377f49;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 20px 0 20px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.sticky-form-wrapper {
  position: fixed;
  bottom: 0;
  right: 0;
  width: 100%;
  max-width: 400px;
  height: 100%;
  z-index: 9999;
}

.sticky-form {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: calc(100% - 40px);
  background-color: #fff;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transition: all 0.3s ease-in-out;
  z-index: 9999;
}

.sticky-form.active {
  opacity: 1;
}

.sticky-form label {
  /*display: block;*/
  margin-bottom: 10px;
}
.sticky-form input,
.sticky-form select {
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
  font-size: 16px;
  font-family: 'Inria Serif', sans-serif;
  color: #333;
}
.sticky-form .btn-group {
  margin-top: 20px;
  text-align: center;
}
.sticky-form .btn-group button {
  background-color: #0099ff;
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 10px 20px;
  cursor: pointer;
}
.sticky-form .btn-group button i {
  margin-left: 10px;
}
.sticky-form .btn-group button:hover {
  background-color: #0077cc;
}
.sticky-form .btn-group button:focus {
  outline: none;
}
.enquiry-btn.moved {
  right: calc(250px + 50px);
}
.enquiry-btn {
  position: fixed;
  z-index: 9999;
  top: 45%;
  right: 0%;
  border: none;
  cursor: pointer;
  transition: all .4s ease;
  width: 150px;
}
.nb-form p {
  font-size: 13px;
  margin: 0;
  padding: 15px;
  color: #666;
}

.nb-form p.message {
  margin-left: 7px;
}

/*-- Form Elements --*/

.nb-form form {
  padding: 0 15px 15px 15px;
}

.nb-form input,
.nb-form textarea {
  font-family: 'Inria Serif', sans-serif;
  font-size: 12px;
  width: 254px;
  max-width: 254px;
  margin-bottom: 10px;
  margin-left: 7px;
  padding: 6px;
  border: none;
  /*border-radius: 4px;*/
  color: #999;
border-bottom: 1px solid #f0f0f0;
  background-color: #f6f4ea;
}

.nb-form input:focus,
.nb-form textarea:focus {
  outline: none;
  box-shadow: none;
}

.nb-form input[type='submit'] {
  display: block;
  width: 120px;
  margin: 0 auto;
  padding: 0 20px;
  height: 40px;
  line-height: 40px;
  border-radius: 20px;
  cursor: pointer;
  transition: all .4s ease;
  color: #fff !important;
  border: none;
}
.nb-form textarea {
  min-height: 110px;
}
.nb-form ::-webkit-input-placeholder {
  color: #261f1f;
}
.nb-form ::-webkit-option-placeholder {
  color: #ccb0b0;
}
.nb-form ::-moz-placeholder{
  color: #ccb0b0;
}
.nb-form :-ms-input-placeholder {
  color: #ccb0b0;
}
.nb-form :-moz-placeholder {
  color: #ccb0b0;
}
.nb-form input[type='submit'] {
  background: #377f49;
}
#sticky-form {
  position: fixed;
  z-index: 9998;
  width: 300px;
  background: #1e1c1d;
  right: -300px;
  top: 54%;
  transform: translateY(-50%);
  border-radius: 10px;
  box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14),0 1px 5px 0 rgba(0,0,0,0.12),0 3px 1px -2px rgba(0,0,0,0.2);
  transition: all .4s ease;
  /* padding: 3% 1% 0% 0%; */
  padding: 1% 0%;
}
#sticky-form.show {
  right: 0;
}
#txtCountryCode{
  background: transparent;
  border: transparent;
  font-size: 14px;
  color: #ccb0b0;
}
@media screen and (max-width: 767px) {
  .nb-form:hover .user-icon {
      display: none;
  }
  .nb-form .message {
      display: none;
  }
  .nb-form form {
      padding-top: 15px;
  }
  .nb-form{
      right: 0%;
      bottom: -320px;
      left: 50%;
      transform: translateX(0%);
  }
  .enquiry-btn{
    right: -4%;
  }
  #sticky-form{width: 250px;
  right: -300px;
  height: 315px;}
  .enquiry-btn.moved {
            right: calc(210px + 40px);}
    .btn-group{
     
        /*right: 213px;*/
        top: -8px;
    
    }

}
.form-container-popup {
  background: linear-gradient(to bottom, #054001, #EEEEEE);
  border-radius: 0 0 50px 0;
  padding: 40px 20px 20px 20px;
  width: 350px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.4s ease-in-out, visibility 0.4s ease-in-out, opacity 0.4s ease-in-out;
  box-shadow: 0px 4px 8px rgba(0,0,0,0.2);
  visibility: hidden;
  opacity: 0;
  z-index: 1000; /* Ensure it’s above other elements */
}

.form-container-popup.show {
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.form-container-popup h1 {
  font-size: 20px;
  color: #ffffff;
  margin-bottom: 20px;
  text-align: left;
}

.form-container-popup input, 
.form-container-popup textarea {
  width: calc(100% - 20px); /* Subtract padding to fit within the container */
  padding: 10px;
  margin-bottom: 20px;
  border: none;
  border-bottom: 1px solid #ffffff;
  background: transparent;
  color: #ffffff;
  font-size: 14px;
}

.form-container-popup input::placeholder,
.form-container-popup textarea::placeholder {
  color: #ffffff;
  opacity: 0.8;
}

.form-container-popup input:focus,
.form-container-popup textarea:focus {
  outline: none;
  border-bottom: 2px solid #A58E37;
}

.form-container-popup .submit-btn {
  background-color: #a28956;
  color: white;
  padding: 5px 20px;
  border: none;
  border-radius: 20px 0 15px 20px;
  font-size: 16px;
  cursor: pointer;
  text-align: center;
  display: inline-block;
  width: auto; /* Auto width to fit content */
  height: auto; /* Auto height to fit content */
  box-shadow: 0px 4px 8px rgba(0,0,0,0.2);
}

.form-container-popup .submit-btn:hover {
  background-color: #8e7a44;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  color: white;
  font-size: 25px;
  cursor: pointer;
}
.background-overlay.show {
  visibility: visible;
  opacity: 1;
}
.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.4s ease-in-out, visibility 0.4s ease-in-out;
    z-index: 999; /* Just below the popup form */
}
.form-container-brochure {
  background: linear-gradient(to bottom, #054001, #EEEEEE);
  border-radius: 0 0 50px 0;
  padding: 40px 20px 20px 20px;
  width: 350px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.4s ease-in-out, visibility 0.4s ease-in-out, opacity 0.4s ease-in-out;
  box-shadow: 0px 4px 8px rgba(0,0,0,0.2);
  visibility: hidden;
  opacity: 0;
  z-index: 1000; /* Ensure it’s above other elements */
}

.form-container-brochure.show {
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.form-container-brochure h1 {
  font-size: 20px;
  color: #ffffff;
  margin-bottom: 20px;
  text-align: left;
}

.form-container-brochure input, 
.form-container-brochure textarea {
  width: calc(100% - 20px); /* Subtract padding to fit within the container */
  padding: 10px;
  margin-bottom: 20px;
  border: none;
  border-bottom: 1px solid #ffffff;
  background: transparent;
  color: #ffffff;
  font-size: 14px;
}

.form-container-brochure input::placeholder,
.form-container-brochure textarea::placeholder {
  color: #ffffff;
  opacity: 0.8;
}

.form-container-brochure input:focus,
.form-container-brochure textarea:focus {
  outline: none;
  border-bottom: 2px solid #A58E37;
}

.form-container-brochure .submit-btn-brochure {
  background-color: #a28956;
  color: white;
  padding: 5px 20px;
  border: none;
  border-radius: 20px 0 15px 20px;
  font-size: 16px;
  cursor: pointer;
  text-align: center;
  display: inline-block;
  width: auto; /* Auto width to fit content */
  height: auto; /* Auto height to fit content */
  box-shadow: 0px 4px 8px rgba(0,0,0,0.2);
}

.form-container-brochure .submit-btn-brochure:hover {
  background-color: #8e7a44;
}

.close-btn-brochure {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  color: white;
  font-size: 25px;
  cursor: pointer;
}
.background-overlay-brochure.show {
  visibility: visible;
  opacity: 1;
}
.background-overlay-brochure {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.4s ease-in-out, visibility 0.4s ease-in-out;
    z-index: 999; /* Just below the popup form */
}
@media screen and (max-width: 767px) {
    .info-box {
        padding-bottom: 15px;
    }
}