@media (min-width: 992px) {
  .utility-nav .container {
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
  }
  .utility-nav .container ul.social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
  }
}
ul.navbar-nav li.nav-item:last-of-type a, ul.navbar-nav li.nav-item:last-of-type a:visited {
  background-color: transparent;
  color: #000;
}
ul.navbar-nav li.nav-item:last-of-type > a.nav-link {
  background-color: #fdb714;
  color: #fff !important;
}
ul.navbar-nav li.nav-item:last-of-type > a.nav-link:hover {
  background-color: #08194f;
  color: #fff !important;
}
ul.navbar-nav li.nav-item:last-of-type .dropdown-menu a {
  letter-spacing: 1px !important;
  -webkit-box-pack: start !important;
      -ms-flex-pack: start !important;
          justify-content: flex-start !important;
  -webkit-transition: none;
  transition: none;
  border-radius: 0% !important;
}
@media (min-width: 992px) {
  ul.navbar-nav li.nav-item.show:last-of-type .dropdown-menu, ul.navbar-nav li.nav-item:last-of-type .dropdown-menu {
    left: -70%;
    -webkit-transition: none;
    transition: none;
    -webkit-transform: none;
            transform: none;
  }
}
@media screen and (min-width: 992px) and (max-width: 1099px) {
  ul.navbar-nav li.nav-item {
    margin-left: 1rem !important;
  }
  ul.navbar-nav li.nav-item a.nav-link, ul.navbar-nav li.nav-item a.nav-link:visited {
    font-size: 15px;
  }
}

/* Main container */
#custom-gallery-container {
  margin: auto;
  padding: 10px;
  max-width: 1200px;
  font-family: Montserrat, sans-serif;
}

.main-image {
  position: relative;
  min-height: 300px;
  margin-bottom: 15px;
}

.main-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

.nav-arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #215d0c;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  font-size: 24px;
  z-index: 10;
  border-radius: 10px;
  color: #fff;
}

.nav-arrow.left {
  left: -20px;
}

.nav-arrow.right {
  right: -20px;
}

.nav-arrow.disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}

.image-caption {
  text-align: left;
  margin-top: 8px;
  margin-bottom: 8px;
  color: #fff;
  font-weight: normal;
  min-height: 1.5em;
  font-family: Montserrat, sans-serif;
  font-size: 12px;
  letter-spacing: 1px;
}

/* Thumbnails horizontal scroll */
.thumbnail-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  gap: 20px;
  padding: 15px 10px;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}

.thumbnail-container {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 160px;
  position: relative;
}

.thumbnail-container img {
  width: 100%;
  height: 160px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  -webkit-transition: border 0.2s, -webkit-transform 0.2s;
  transition: border 0.2s, -webkit-transform 0.2s;
  transition: transform 0.2s, border 0.2s;
  transition: transform 0.2s, border 0.2s, -webkit-transform 0.2s;
}

.thumbnail-container img:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  border: 3px solid #8CFF7B;
}

.thumbnail-container.selected img {
  border: 3px solid #8CFF7B;
}

.thumbnail-container.selected .thumbnail-caption {
  margin: 0 3px 3px;
}

.thumbnail-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 12px;
  text-align: center;
  padding: 2px 4px;
  border-radius: 3px;
}

.viewAllBtnContainer {
  width: 100%;
  margin: 15px 0 15px;
  text-align: center;
}

#viewAllBtn {
  background-color: #F37321;
  color: #ffffff;
  font-size: 16px;
  font-weight: bold;
  padding: 10px 20px;
  border: none;
  border-radius: 7px;
  cursor: pointer;
}

/* Lightbox */
#lightboxOverlay {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  height: 90%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 9999;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.lightbox-content {
  background: #222;
  padding: 20px;
  border-radius: 8px;
  max-width: 90%;
  max-height: 90%;
  overflow-y: auto;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 40px;
  font-size: 28px;
  color: white;
  cursor: pointer;
}

.lightbox-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 15px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.lightbox-grid img {
  width: 160px;
  height: 160px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}

.lightbox-grid img:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

@media (max-width: 767px) {
  .nav-arrow {
    font-size: 18px;
    padding: 6px 10px;
    top: 50%; /* vertical center */
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%); /* shift up by half height */
  }
  #custom-gallery-container .thumbnail-container {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    width: auto;
    position: relative;
  }
}
@media (min-width: 768px) {
  #lightboxOverlay #lightboxGrid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 10px 1fr 10px 1fr 10px 1fr 10px 1fr 10px 1fr;
    grid-template-columns: repeat(6, 1fr); /* 6 equal columns */
    gap: 10px; /* Optional: space between columns */
  }
  #lightboxOverlay .lightbox-content {
    padding: 30px 50px;
  }
}
#custom-gallery-container {
  /* Positioning */
  /* Disabled state */
  /* Disabled state */
}
#custom-gallery-container .nav-arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #215d0c; /* Earthy green */
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  font-size: 24px;
  z-index: 10;
  border-radius: 10px;
  color: #fff;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
#custom-gallery-container .nav-arrow.left {
  left: -20px;
}
#custom-gallery-container .nav-arrow.right {
  right: -20px;
}
#custom-gallery-container .nav-arrow.disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}
#custom-gallery-container .nav-arrow:active:not(.disabled) {
  color: #8CFF7B; /* Bright green text */
  -webkit-box-shadow: 0 0 12px #8CFF7B;
          box-shadow: 0 0 12px #8CFF7B; /* Glow using #8CFF7B */
  -webkit-transform: translateY(-50%) scale(0.95);
          transform: translateY(-50%) scale(0.95); /* Slight press effect */
  -webkit-box-shadow: 0 2px 10px #8CFF7B, 0 0 16px #8CFF7B;
          box-shadow: 0 2px 10px #8CFF7B, 0 0 16px #8CFF7B;
}
#custom-gallery-container .nav-arrow:hover:not(.disabled) {
  color: #8CFF7B;
  -webkit-box-shadow: 0 2px 10px #8CFF7B;
          box-shadow: 0 2px 10px #8CFF7B;
}
#custom-gallery-container .thumbnail-nav-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  position: relative;
}
#custom-gallery-container .thumbnail-scroll-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow-x: auto;
  overflow: hidden;
  scroll-behavior: smooth;
  max-width: 100%;
  gap: 20px;
}
#custom-gallery-container .thumb-prev-button,
#custom-gallery-container .thumb-next-button {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: #215d0c;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  font-size: 24px;
  z-index: 10;
  border-radius: 10px;
  color: #fff;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
#custom-gallery-container .thumb-prev-button {
  left: -20px;
}
#custom-gallery-container .thumb-next-button {
  right: -20px;
}
#custom-gallery-container .thumb-arrow.disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}
#custom-gallery-container .thumb-arrow:active:not(.disabled) {
  color: #8CFF7B; /* Bright green text */
  -webkit-box-shadow: 0 0 12px #8CFF7B;
          box-shadow: 0 0 12px #8CFF7B; /* Glow using #8CFF7B */
  -webkit-transform: translateY(-50%) scale(0.95);
          transform: translateY(-50%) scale(0.95); /* Slight press effect */
  -webkit-box-shadow: 0 2px 10px #8CFF7B, 0 0 16px #8CFF7B;
          box-shadow: 0 2px 10px #8CFF7B, 0 0 16px #8CFF7B;
}
#custom-gallery-container .thumb-arrow:hover:not(.disabled) {
  color: #8CFF7B;
  -webkit-box-shadow: 0 2px 10px #8CFF7B;
          box-shadow: 0 2px 10px #8CFF7B;
}

#thumbnailGrid .thumbnail-container {
  margin: 6px;
}

table td a {
  color: #007bff;
}
#news-loop-carousel{
  //background-color: #fff !important;
}
#news-loop-carousel >.elementor-container{
margin:0;
}

#news-loop-carousel-container  .swiper-slide.e-loop-item{
	  background-color: #fff !important;
	border-radius:8px !important;
}

/*tagbox*/
div.taggbox {
  width: 100%;
  height: 650px;
  overflow-y: auto;
}
@media screen and (max-width: 768px) {
  div.taggbox {
    height: 1000px !important;
  }
}

/*tagbox*/

/* canopy tree project */
.canopy-tree-project {
  background-color: #fff !important;
  /*
  .upadate-post-grid{
    .ue_post_grid{
      .ue-item {
        transition: transform 0.3s ease;
      }

      .ue-item:hover {
        transform: scale(1.05);
        z-index: 10;
      }

    }
  }
  */
}
.canopy-tree-project .canopy-hero-banner {
  border-radius: 70px;
}
@media (max-width: 767px) {
  .canopy-tree-project .canopy-hero-banner {
    border-radius: 60px;
  }
}
.canopy-tree-project .canopy-hero-banner > .elementor-background-video-container {
  border-radius: 70px;
}
@media (max-width: 767px) {
  .canopy-tree-project .canopy-hero-banner > .elementor-background-video-container {
    border-radius: 60px;
  }
}
.canopy-tree-project .canopy-hero-banner .elementor-widget-text-editor,
.canopy-tree-project .canopy-hero-banner p {
  color: #fff !important;
}
.canopy-tree-project .canopy-carousel > .elementor-container {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.canopy-tree-project .canopy-carousel .uc_post_title {
  text-align: left;
}
.canopy-tree-project #canopy-slider .ha-slick-item .ha-slick-content {
  bottom: 30%;
  color: #fff !important;
  background: none;
}
.canopy-tree-project #canopy-slider .ha-slick-item h2.ha-slick-title {
  padding: 0px;
}
@media (max-width: 767px) {
  .canopy-tree-project #canopy-slider .ha-slick-item .ha-slick-content {
    bottom: 20%;
  }
  .canopy-tree-project #canopy-slider .ha-slick-item img {
    min-height: 130px;
  }
}
.canopy-tree-project .canopy-carousel.canopy-project > .elementor-container > .elementor-column {
  -webkit-transition: -webkit-transform 0.01s ease;
  transition: -webkit-transform 0.01s ease;
  transition: transform 0.01s ease;
  transition: transform 0.01s ease, -webkit-transform 0.01s ease;
}
.canopy-tree-project .canopy-carousel.canopy-project > .elementor-container > .elementor-column:hover {
  -webkit-transform: scale(1.04);
          transform: scale(1.04);
}
.canopy-tree-project .canopy-latest-articles .uc_post_grid_style_one_image .uc_post_image {
  position: relative;
}
.canopy-tree-project .canopy-latest-articles .uc_post_grid_style_one_image .uc_post_image img {
  display: block;
  width: 100%;
}
.canopy-tree-project .canopy-latest-articles .uc_post_grid_style_one_image .uc_post_image_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Only dark at the bottom 30% */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(45%, rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.975)));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 45%, rgba(0, 0, 0, 0.975) 100%);
  pointer-events: none;
  /* keep image links clickable */
}
@-webkit-keyframes softPulse {
  0% {
    text-shadow: 0 0 0px rgba(0, 255, 0, 0);
    color: #38FF00;
  }
  50% {
    text-shadow: 0 0 8px rgba(0, 255, 0, 0.7);
    color: green;
  }
  100% {
    text-shadow: 0 0 0px rgba(0, 255, 0, 0);
    color: #38FF00;
  }
}
@keyframes softPulse {
  0% {
    text-shadow: 0 0 0px rgba(0, 255, 0, 0);
    color: #38FF00;
  }
  50% {
    text-shadow: 0 0 8px rgba(0, 255, 0, 0.7);
    color: green;
  }
  100% {
    text-shadow: 0 0 0px rgba(0, 255, 0, 0);
    color: #38FF00;
  }
}
.canopy-tree-project .tile-active span.elementor-button-content-wrapper {
  display: inline-block;
  -webkit-animation: softPulse 1s infinite ease-in-out;
          animation: softPulse 1s infinite ease-in-out;
}
.canopy-tree-project #fixedDonationBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 9999;
}
.canopy-tree-project .signup-block #canopy-subscription-form {
  margin: 0;
  width: 100%;
}
.canopy-tree-project .signup-block #canopy-subscription-form input.canopy-subscription-form-email,
.canopy-tree-project .signup-block #canopy-subscription-form input.canopy-subscription-form-zipcode {
  background-color: #D5D6D0;
  border-width: 0px 0px 0px 0px;
  border-radius: 20px 20px 20px 20px;
  padding: 5px 14px;
  font-size: 16px;
}
.canopy-tree-project .signup-block #canopy-subscription-form input.canopy-subscription-form-zipcode {
  width: 120px;
}
@media (max-width: 767px) {
  .canopy-tree-project .signup-block #canopy-subscription-form input.canopy-subscription-form-zipcode {
    width: 70%;
  }
}
.canopy-tree-project .signup-block #canopy-subscription-form #form-inputs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 991px) {
  .canopy-tree-project .signup-block #canopy-subscription-form #form-inputs {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.canopy-tree-project .signup-block #canopy-subscription-form #form-inputs .form-group {
  margin: 0;
}
.canopy-tree-project .signup-block #canopy-subscription-form #form-inputs .form-group-zipcode.form-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media (max-width: 767px) {
  .canopy-tree-project .signup-block #canopy-subscription-form #form-inputs .form-group-zipcode.form-group {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.canopy-tree-project .signup-block #canopy-subscription-form #form-inputs .input-field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.canopy-tree-project .signup-block #canopy-subscription-form #form-inputs .input-btn {
  width: 250px;
}
@media (max-width: 767px) {
  .canopy-tree-project .signup-block #canopy-subscription-form #form-inputs .input-btn {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }
}
.canopy-tree-project .signup-block #canopy-subscription-form #form-inputs .input-btn button {
  width: 100%;
  margin-top: 30px;
  margin-left: 0;
  background-color: #153B09;
  color: #ffffff;
  -webkit-transition-duration: 200ms;
          transition-duration: 200ms;
  font-family: "Inter", Sans-serif;
  font-size: 18px !important;
  font-weight: 700;
  border-radius: 12px 12px 12px 12px !important;
  padding: 10px 14px 10px 14px !important;
  text-transform: capitalize !important;
  min-height: 48px !important;
  -webkit-transition: -webkit-transform 0.1s ease;
  transition: -webkit-transform 0.1s ease;
  transition: transform 0.1s ease;
  transition: transform 0.1s ease, -webkit-transform 0.1s ease;
}
.canopy-tree-project .signup-block #canopy-subscription-form #form-inputs .input-btn button:hover {
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}
.canopy-tree-project .signup-block #canopy-subscription-form #form-inputs .input-btn button span {
  margin-right: 10px;
}
@media (max-width: 767px) {
  .canopy-tree-project .signup-block #canopy-subscription-form #form-inputs .input-btn button {
    margin-top: 10px;
	  font-size: 14px !important;
  }
}

/* canopy tree project */
/* STAY ROOTED WITH US FORM */
.canopy-subscription-form .elementor-form-fields-wrapper {
  width: 100%;
}
.canopy-subscription-form .elementor-form-fields-wrapper > div {
  padding: 0;
}
.canopy-subscription-form .elementor-form-fields-wrapper input {
  margin-bottom: 20px;
}
.canopy-subscription-form .elementor-field-type-submit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
.canopy-subscription-form .e-form__buttons {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.canopy-subscription-form .elementor-form-fields-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
@media (max-width: 767px) {
  .canopy-subscription-form .elementor-form-fields-wrapper {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 0;
  }
}
@media (min-width: 1025px) {
  .canopy-subscription-form .elementor-field-group-email {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .canopy-subscription-form .e-form__buttons {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    position: absolute;
    right: 0;
    top: 40%;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }
  .canopy-subscription-form .elementor-field-group-field_fd772f1 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}

/* STAY ROOTED WITH US FORM */
/* canopy tree project FAQs */
.canopy-project-faqs p {
  margin: 0;
}
.canopy-project-faqs .faq-tab .elementor-toggle-item {
  border-radius: 6px;
}
.canopy-project-faqs .faq-tab .elementor-tab-content p {
  margin: 0;
  font-size: 18px;
}
.canopy-project-faqs .faq-info-tab .elementor-widget-container {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.canopy-project-faqs .faq-info-tab .ha-infobox-title {
  padding: 0px 0 10px;
}
.canopy-project-faqs .faq-info-tab .ha-infobox-text,
.canopy-project-faqs .faq-info-tab p,
.canopy-project-faqs .faq-info-tab a {
  font-size: 14px;
  text-align: left;
}
.canopy-project-faqs .faq-info-tab a {
  color: #153b09;
}
.canopy-project-faqs .email-tab a {
  color: #153b09;
  word-break: break-all;
}
.canopy-project-faqs .email-tab p,
.canopy-project-faqs .email-tab a {
  margin: 0;
  font-size: 14px;
}

/* canopy tree project FAQs */
/* canopy sub project */
.canopy-sub-project-page .jumbotron.hero,
.canopy-sub-project-page .breadcrumb-wrapper {
  display: none !important;
}
.canopy-sub-project-page p {
  margin: 0;
}
.canopy-sub-project-page .canopy-sub-project p {
  margin: 0;
}
.canopy-sub-project-page .sub-project-img-gallery > .elementor-container {
  gap: 20px;
}
@media (min-width: 1025px) {
  .canopy-sub-project-page .sub-project-img-gallery > .elementor-container {
    margin-left: -16%;
    margin-right: -16%;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .canopy-sub-project-page .sub-project-img-gallery > .elementor-container {
    margin-left: -9%;
    margin-right: -16%;
  }
  .canopy-sub-project-page .sub-project-img-gallery > .elementor-container > .elementor-column {
    width: 31.333%;
  }
}
@media (max-width: 767px) {
  .canopy-sub-project-page #hero-banner-section.elementor-section.elementor-section-items-middle > .elementor-container {
    -webkit-box-align: bottom !important;
        -ms-flex-align: bottom !important;
            align-items: bottom !important;
  }
}

/* canopy sub project */