#funnel-list #viewmore {display:none;}

@media (max-width: 767px) {
    #funnel-list #viewmore {display:block;}
    #funnel-list {
        height: 28px;
        overflow: hidden;
        padding: 0 !important;
        margin-bottom: 25px;
    }
}


#home-nature-banner {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.fog-left, .fog-right {
  position: absolute;
  width: 1500%; /* Double the width for smoother animation */
  top: 0;
  height: 100%;
}

.fog-left {
  opacity: 0.3;
  mix-blend-mode: overlay;
  left: 0;
  background: url('https://www.greenmarketing.ca/wp-content/uploads/2024/08/High-contast-fog_4a5a8e_b27c79.webp') repeat-x;
  animation: moveFogLeft 500s linear infinite; /* Left to right */
  background-size: contain; /* Adjust background size */
}


.fog-right {
    opacity: .5;
    mix-blend-mode: soft-light;
    right: 0;
    animation: moveFogRight 1000s linear infinite;
    background-size: 1000px !important;
    background: url(https://www.greenmarketing.ca/wp-content/uploads/2024/08/High-contast-fog-2_5e1ed9_50b493-e1724553893174.webp) repeat;
}

@keyframes moveFogLeft {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

@keyframes moveFogRight {
  from { transform: translateX(50%); }
  to { transform: translateX(0%); }
}

.light-bug {
  position: absolute;
  width: 2px;
  height: 2px;
  background-color: rgba(188, 232, 186, 0.9); /* #bce8ba */
  border-radius: 50%;
  box-shadow: 0 0 10px 3px rgba(188, 232, 186, 0.8); /* soft green glow */
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.5; }
}





/*Action Animation*/
@keyframes softZoomBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: scale(1);
    }
    40% {
        transform: scale(1.05);
    }
    60% {
        transform: scale(1.02);
    }
}

/*Home Plant Animation*/
@keyframes rotateBackForth {
  0% {
    transform: rotate(0deg); /* Start with no rotation */
  }
  50% {
    transform: rotate(2deg); /* Rotate 10 degrees clockwise */
  }
  100% {
    transform: rotate(0deg); /* Rotate back to original position */
  }
}

#plant-ani-right img {
  animation: rotateBackForth 5s infinite ease-in-out;
  transform-origin: bottom right; /* Rotate from the bottom right */
}
#plant-ani-left img {
  animation: rotateBackForth 5s infinite ease-in-out;
  transform-origin: bottom left; /* Rotate from the bottom right */
}

.plant-ani-right img {
  animation: rotateBackForth 5s infinite ease-in-out;
  transform-origin: bottom right; /* Rotate from the bottom right */
}
.plant-ani-left img {
  animation: rotateBackForth 5s infinite ease-in-out;
  transform-origin: bottom left; /* Rotate from the bottom right */
}


.action-btn-animation {
    display: inline-block;
    animation: softZoomBounce 2.5s ease infinite;
}

@media only screen and (max-width: 768px) {
  .action-btn-animation-m {
    display: inline-block;
    animation: softZoomBounce 2.5s ease infinite;
  }
}

/*READ MORE ON MOBILE*/
.read-more-mobile {
    display: block;
    overflow: hidden;
    position: relative;
    line-height: 1.3em; /* Adjust this based on your content's line height */
    max-height: none; /* No max-height by default */
    transition: max-height 0.5s ease; /* Smooth transition for height change */
}

.read-more-mobile.expanded {
    max-height: none; /* Ensure full expansion on mobile when expanded */
    overflow: visible; /* Show full text */
}

.read-more-button {display:none;}

@media only screen and (max-width: 400px) {
    .read-more-mobile {
        max-height: 6.7em;
        display: -webkit-box;
        -webkit-line-clamp: 5; /* Limit to 5 lines */
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis; /* Adds the ellipsis (...) */
    }

    .read-more-mobile.expanded {
        -webkit-line-clamp: unset; /* Remove line clamping when expanded */
        max-height: none; /* Ensure full expansion */
        overflow: visible; /* Show full text */
    }

    .read-more-button {
        display: block;
        cursor: pointer;
        padding: 0;
        color: #646464;
        background: none;
        border: none;
        font-weight: bold;
        margin: auto;
        margin-top: -20px;
    }
}

.arrow-ani {
    display: block;
    animation: upDown 1s ease-in-out infinite;
}

@keyframes upDown {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}







#custom_html-3 a {
    line-height: 1em;
    margin-bottom: -10px;
    margin-top: 5px;
    display: block;
}

li.highlight-menu-item a {
    font-size: 1.3em!important;
    color: #000000d4!important;
}
ul#mobile_menu {height: 120%;}



.orange-button {
    background: #f46219;
    padding: 10px!important;
    color: white!important;
    ext-transform: uppercase;
    font-weight: bold;
    font-size: 1.3em;
}
.orange-button:hover {background:#79cd9b;}
li.orange-button {   height: 36px;}
.orange-button a {color: white!important;}
li#menu-item-25.orange-button {
    position: fixed;
    margin-top: -14px;
    margin-right: 5%;
    right: 0;
    transform: scale(1.3);
}
div#et-sm-icons {
    display: none;
}

@media only screen and (min-width: 980px) and (max-width: 1360px) {
  li#menu-item-25.orange-button {
    display: none;
  }
  #top-menu a {
    font-size: 1.1em !important;
  }
  .et_fullwidth_nav #main-header .container {
        padding-right: 5px;
        padding-left: 5px;
  }
  #top-menu li {
    padding-right: 15px;
  }
}



@media only screen and (max-width: 980px) {
  
  li#menu-item-25.orange-button {
  display:block;
}

    li#menu-item-25.orange-button {
        position: relative;
        bottom: -19px;
        padding: 6px!important;
        height: auto;
        width: 100%;
        left: 0;
        margin-right: 0;
        right: 0;
        transform: scale(1);
        text-align: center;
    }
    li.highlight-mobile-menu-item > a {  
        font-size: 1.2em!important;
        color: #000000d4!important;
        font-weight: bold;
    }
    li.highlight-menu-item a {
        font-size: 1.2em!important;
        color: #000000d4!important;
        font-weight: bold;
    }
    ul.sub-menu li.menu-item a {
      color: #666 !important;
      font-size: 14px !important;
      font-weight: 500 !important;
    }
    .et_mobile_menu .menu-item-has-children>a {
      font-weight: 700;
      background-color: rgba(0, 0, 0, 0);
    }

}


.syntaxhighlighter table caption {
    color: #ff0000 !important;
    font-size: 15px!important;
    font-family: open sans !important;
    font-weight: 700!important;
}

blockquote {background-color:white; padding: 10px 10px 0px; border-color:#79cd9b; margin:5px 0px 20px;}

footer#main-footer {
    position: absolute;
    z-index: 1000;
}


/*------------------------------------------------------------- COLORS

#79cd9b   Light Green
#ff6e40   Orange

*/

/*------------------------
Improve menu: wider, small sub link text.
-------------------------*/
.nav li ul {width: auto!important;}
#top-menu li li a {width: 200px!important; padding: 0px 20px!important;}
#top-menu li li a {font-size: 14px!important; line-height: 1; margin: 7px;}
.et_mobile_menu li a { padding: 2px 5%; }
.et_mobile_menu li li {padding-left: 0;}
.et_mobile_menu li li a {padding: 2px 0%;}


#logo{max-height: 100%!important;}



/*SEO AUDIT*/

@media (max-width: 767px) {
    #gm_free_website_audit input.wpcf7-form-control {
        padding: 9px !important;
    }

    #gm_free_website_audit {
        gap: 10px!important;
    }
}

footer#main-footer {
position: relative!important;
z-index: 1000;
max-width: 1920px;
margin: auto!important;
}
