:root {
    --blue: #1459DF;
    --blue-hover: #1c65f7;

    --orange: #FF6B00;
    --orange-hover: #FF7D1E;

    --green: #00B140;
    --green-hover: #00c046;

    --header: #1a1a1a;
    --text: #525252;
    --strong: #2d2d2d;
    --body: #fff;
}





@font-face {
    font-family: 'DIN Next LT Pro';
    src: url('../webfonts/DINNextLTPro-Medium.eot');
    src: url('../webfonts/DINNextLTPro-Medium.eot?#iefix') format('embedded-opentype'),
        url('../webfonts/DINNextLTPro-Medium.woff2') format('woff2'),
        url('../webfonts/DINNextLTPro-Medium.woff') format('woff'),
        url('../webfonts/DINNextLTPro-Medium.ttf') format('truetype'),
        url('../webfonts/DINNextLTPro-Medium.svg#DINNextLTPro-Medium') format('svg');
    font-weight: 500;
    font-style: normal;
}


@font-face {
    font-family: 'DIN Next LT Pro';
    src: url('../webfonts/DINNextLTPro-Bold.eot');
    src: url('../webfonts/DINNextLTPro-Bold.eot?#iefix') format('embedded-opentype'),
        url('../webfonts/DINNextLTPro-Bold.woff2') format('woff2'),
        url('../webfonts/DINNextLTPro-Bold.woff') format('woff'),
        url('../webfonts/DINNextLTPro-Bold.ttf') format('truetype'),
        url('../webfonts/DINNextLTPro-Bold.svg#DINNextLTPro-Bold') format('svg');
    font-weight: 600;
    font-style: normal;
}


@font-face {
    font-family: 'DIN Next LT Pro';
    src: url('../webfonts/DINNextLTPro-Bold.eot');
    src: url('../webfonts/DINNextLTPro-Bold.eot?#iefix') format('embedded-opentype'),
        url('../webfonts/DINNextLTPro-Bold.woff2') format('woff2'),
        url('../webfonts/DINNextLTPro-Bold.woff') format('woff'),
        url('../webfonts/DINNextLTPro-Bold.ttf') format('truetype'),
        url('../webfonts/DINNextLTPro-Bold.svg#DINNextLTPro-Bold') format('svg');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'DIN Next LT Pro';
    src: url('../webfonts/DINNextLTPro-Heavy.eot');
    src: url('../webfonts/DINNextLTPro-Heavy.eot?#iefix') format('embedded-opentype'),
        url('../webfonts/DINNextLTPro-Heavy.woff2') format('woff2'),
        url('../webfonts/DINNextLTPro-Heavy.woff') format('woff'),
        url('../webfonts/DINNextLTPro-Heavy.ttf') format('truetype'),
        url('../webfonts/DINNextLTPro-Heavy.svg#DINNextLTPro-Heavy') format('svg');
    font-weight: 900;
    font-style: normal;
}



/* Eric Meyer's CSS Reset */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* End of Eric Meyer's CSS Reset */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
    display: block;
}


body {
    font-family: 'Hind', 'Inter', Verdana, Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 24px;
    color: var(--text);
    font-weight: 400;
    background: var(--body-bg);
}

.wrapper {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
}

p {
    padding-bottom: 20px;
}


h1,
h2,
h3,
h4,
h5 {
    color: var(--header);
    font-weight: bold;
    font-family: "Din Next LT Pro", sans-serif;
    letter-spacing: -0.025rem;
}

img {
    line-height: 1;
    vertical-align: bottom;
}

h1 {
    font-size: 50px;
    line-height: 56px;
}

h2 {
    font-size: 40px;
    line-height: 46px;
    padding-bottom: 6px;
}

h3 {
    font-size: 22px;
    line-height: 30px;
}

h4 {
    font-size: 20px;
    line-height: 26px;
}

h5 {
    font-size: 18px;
    line-height: 24px;
}

a {
    color: var(--green);
    font-weight: 600;
    text-decoration: none;
}

a:hover,
a:active,
a:focus {
    color: var(--green-hover);
    text-decoration: none;
}

section {
    padding: 100px 0px;
}


.semibold {
    font-weight: 500;
}

.bold {
    font-weight: 600;
}

.extrabold {
    font-weight: 700;
}

.black {
    font-weight: 900;
}


* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.clearfix:after,
.container:after {
    visibility: hidden;
    display: block;
    font-size: 0;
    content: " ";
    clear: both;
    height: 0
}

.container {
    max-width: 1240px;
    width: 100%;
    margin: 0 auto;
}

strong {
    color: var(--strong);
    font-weight: 600;
}

*:hover {
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

p {
    padding-bottom: 20px;
}



.title {
    padding-bottom: 40px;
    text-align: center;
    margin-top: -6px;
}


.title p {
    font-size: 22px;
    line-height: 32px;
    max-width: 760px;
    margin: 0 auto;
    padding-bottom: 0px;
    padding-top: 6px;
}

.button {
    padding: 0px 32px;
    display: inline-block;
    height: 48px;
    line-height: 50px;
    color: #fff !important;
    background: var(--green);
    font-size: 16px;
    font-weight: 600;
    border-radius: 48px;
}

.button:hover {
    color: #fff !important;
    text-decoration: none;
    background: var(--green-hover);
}

.button.orange {
    background: var(--orange);
    color: #fff !important;
}

.button.orange:hover {
    background: var(--orange-hover);
    color: #fff !important;
}

.button:focus {
    transform: scale(0.97);
    outline: none;
}

.button.outline {
    background: transparent;
    box-shadow: none;
    border: 2px solid #fff;
    color: #fff;
}

.button.outline:hover {
    background: #fff;
    color: var(--green) !important;
    box-shadow: none;
}

.button.lg {
    height: 58px;
    line-height: 58px;
    padding: 0px 36px;
    font-size: 18px;
}

.button.lg img {
    padding-bottom: 2px;
}


.button.secondary {
    background: var(--red);
}

.button.secondary:hover {
    background: var(--red-hover);
}

.button.disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

.button.disabled:hover {
    opacity: 0.7;
}


.relative {
    position: relative;
}



.text-center {
    text-align: center;
}

.text-lg {
    font-size: 1.25rem;
    line-height: 1.75rem;
}

.text-md {
    font-size: 1.125rem;
    line-height: 1.5rem;
}

.w-40 {
    width: 40%;
}

.w-43 {
    width: 43%;
}

.width-50 {
    width: 50%;
}

.width-66 {
    width: 66.6667%;
}

.width-75 {
    width: 75%;
}

.width-75 {
    width: 100%;
}

.pull-left-img {
    float: left;
    margin-right: 2rem;
}

.text-left {
    text-align: left;
}

.inline-block {
    display: inline-block;
}

.block {
    display: block;
}

.mt-8 {
    margin-top: 8rem;
}

.mt-7 {
    margin-top: 7rem;
}

.mt-6 {
    margin-top: 6.25rem;
}

.text-sm {
    font-size: 0.75rem;
}

.mute {
    opacity: 0.75;
}

.opacity-25 {
    opacity: 0.25;
}

.opacity-50 {
    opacity: 0.5;
}

.opacity-75 {
    opacity: 0.75;
}

.va-sub {
    vertical-align: sub;
}

.va-mid {
    vertical-align: middle;
}

.va-top {
    vertical-align: top;
}

.va-base {
    vertical-align: baseline;
}

.va-bot {
    vertical-align: bottom;
}


.pull-right {
    float: right;
}

.pull-left {
    float: left;
}

.header {
    padding: 28px 0px;
}

.font-10 {
    font-size: 10px;
    line-height: 20px;
}

.font-11 {
    font-size: 11px;
    line-height: 20px;
}

.font-12 {
    font-size: 12px;
    line-height: 20px;
}

.font-13 {
    font-size: 13px;
    line-height: 22px;
}

.font-14 {
    font-size: 14px;
    line-height: 22px;
}

.font-15 {
    font-size: 15px;
    line-height: 24px;
}

.font-16 {
    font-size: 16px;
    line-height: 24px;
}

.font-18 {
    font-size: 18px;
    line-height: 26px;
}

.font-20 {
    font-size: 20px;
    line-height: 30px;
}

.font-22 {
    font-size: 22px;
    line-height: 32px;
}

.font-24 {
    font-size: 24px;
    line-height: 34px;
}

.font-26 {
    font-size: 26px;
    line-height: 36px;
}

.font-30 {
    font-size: 30px;
    line-height: 40px;
}

.font-32 {
    font-size: 32px;
    line-height: 40px;
}

.font-36 {
    font-size: 36px;
    line-height: 44px;
}

.font-52 {
    font-size: 52px;
    line-height: 62px;
}

.top-button {
    background: rgba(0, 0, 0, 0.3);
    height: 20px;
    line-height: 20px;
    padding: 1px 12px 0px 12px;
    border-radius: 20px;
    margin-top: 1px;
}

.top-button:hover {

    background: rgba(0, 0, 0, 0.4);
}

#main-nav {
    float: right;
}

#main-nav li {
    float: left;
}

#main-nav li a {
    color: #fff;
    display: block;
    line-height: 48px;
    padding: 0px 3px;
}

#main-nav li a.button {
    padding: 0px 28px;
    line-height: 46px;
}

#main-nav li {
    padding: 0px 15px;
}

#main-nav li:nth-last-child(1) {
    padding-right: 0px;
}

#main-nav li a:hover,
#main-nav li a.outline:hover {
    color: var(--green-hover) !important;
}

.header {
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
}

#hero-home {
    background: url('../../marketing-site/images/bg-home.png') center center no-repeat;
    background-size: cover;
}

#hero-pricing {
    background: url('../../marketing-site/images/bg-pricing.png') center center no-repeat;
    background-size: cover;
    padding-bottom: 120px;
}

#hero-projects {
    background: url('../../marketing-site/images/bg-projects.png') center center no-repeat;
    background-size: cover;
    padding-bottom: 120px;
}

#hero-contact {
    padding-bottom: 120px;
}

#hero-about {
    padding-bottom: 200px;
}

#hero-affiliates {
    background: url('../images/affiliate-icon.svg') bottom right 30% no-repeat #f3f3f3;
    padding-bottom: 120px;
}


.top-bar {
    background: var(--green);
    height: 40px;
    font-size: 14px;
    color: #fff;
    line-height: 40px;
}

.top-bar strong {
    color: #fff;
}

.top-bar a {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

.top-bar a:hover {
    color: rgba(255, 255, 255, 1);
}

#top-nav {
    float: right;
}

#top-nav li {
    float: left;
}

#top-nav li a {
    color: rgba(255, 255, 255, 0.85);
    padding: 0px 12px;
    line-height: 40px;
    display: block;
}

#top-nav li a:hover {
    color: rgba(255, 255, 255, 1);
    background: rgba(0, 0, 0, 0.1);
}

.signup-button {
    background: rgba(0, 0, 0, 0.15);
}

.signup-button:hover {
    background: rgba(0, 0, 0, 0.2) !important;
}

::selection {
    background: rgba(0, 177, 65, 1);
    color: #fff;
}

.top-bar ::selection {
    background: #00e052 !important;
}

.hero {
    padding-top: 130px;
    color: #fff;
    background: #f3f3f3;
    font-weight: 300;
}

#hero-home {
    padding-bottom: 45px;
}

.hero h1,
.hero h2,
.hero h3,
.hero h4,
.hero h5 {
    color: #fff;
}

.hero-trees-planted {
    padding-top: 85px;
}

.hero-trees-planted h2 {
    font-size: 44px;
    line-height: 44px;
}

.home-forest-preview {
    position: relative;
}


.light-bg {
    background: #f3f3f3;
}

.project-box {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0px 0px 12px 1px rgba(0, 0, 0, 0.1);
}

.project-box:hover {
    box-shadow: 0px 2px 18px 2px rgba(0, 0, 0, 0.15);
}

.project-trees-planted {
    position: relative;
    height: 220px;
    width: 100%;
    border-radius: 12px 12px 0px 0px;
    overflow: hidden;
}

.project-trees-planted-text {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    content: " ";
    display: block;
    z-index: 1001;
    background: linear-gradient(-150deg, rgba(0, 0, 0, 0.00) 43.53%, rgba(0, 0, 0, 0.60) 86.5%);
    border-radius: 12px 12px 0px 0px;
}

.project-trees-planted-text h3 {
    color: #fff;
    float: left;
    padding-top: 10px;
    line-height: 24px;
}

.project-trees-planted-text h3 small {
    font-family: "Hind", sans-serif;
    font-weight: 400;
}

.project-trees-planted .project-img-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    display: block;
    height: 220px;
    border-radius: 12px 12px 0px 0px;
}

.project-trees-planted-text .abs-bottom {
    position: absolute;
    bottom: 24px;
    left: 28px;

}

.project-text {
    padding: 28px 28px;
}

.pull-left {
    float: left;
}

.pull-right {
    float: right;
}



.circle-arrow-link {
    height: 23px;
    display: inline-block;
}

.circle-arrow-link:hover img {
    padding-left: 3px;
    -webkit-transition: all ease-in-out 0.25s;
    -moz-transition: all ease-in-out 0.25s;
    transition: all ease-in-out 0.25s;
}


.circle-arrow-link img {
    padding-bottom: 1px;
}

.project-box:hover .project-img-bg {
    transform: scale(1.025);
    -webkit-transition: all ease-in-out 0.25s;
    -moz-transition: all ease-in-out 0.25s;
    transition: all ease-in-out 0.25s;
}

.center-vertically {
    position: absolute;
    top: 50%;
    left: calc(var(--bs-gutter-x) * .575);
    right: calc(var(--bs-gutter-x) * .575);
    transform: translateY(-50%);
}

.label {
    border-radius: 24px;
    height: 24px;
    border: 1px solid rgba(0, 177, 64, 0.25);
    background: rgba(0, 177, 64, 0.06);
    color: var(--green);
    font-size: 14px;
    font-weight: 600;
    padding: 1px 12px 0px 12px;
}

.label-orange {
    border: 1px solid rgba(255, 134, 47, 0.25);
    background: rgba(255, 134, 47, 0.06);
    color: var(--orange, #FF6B00);
}

.orange-link {
    color: var(--orange);
}

.orange-link:hover {
    color: var(--orange-hover);
}

.three-feat-padding .container {
    padding: 0px 80px;
}

#collective-impact {
    background: url('../images/bg-collective-impact.png') center center no-repeat;
    background-size: cover;
    text-align: center;
    padding: 80px 0px;
}

.green-bg {
    background: var(--green);
    color: #fff;
}

.green-bg h1,
.green-bg h2,
.green-bg h3,
.green-bg h4,
.green-bg h5 {
    color: #fff;
}

.hind {
    font-family: "Hind", sans-serif;
}

.normal {
    font-weight: 400;
}

.collective-trees-planted {
    margin: 0px auto;
    text-align: left;
    display: inline-block;
    margin-bottom: -12px;
}

.collective-trees-planted h2 {
    font-weight: 400;
    padding-top: 8px;
}

.cta-before-bg {
    position: relative;
}

.cta-before-bg::before {
    position: absolute;
    top: -48px;
    left: -48px;
    content: " ";
    display: block;
    background: url(../images/bg-cta.svg);
    width: 218px;
    height: 222px;
    z-index: -1;
}

.light-bg-box {
    border-radius: 12px;
    background: #f3f3f3;
    padding: 40px 32px;
}

.icon-bg {
    background: #E6E6E6;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    text-align: center;
    line-height: 80px;
}

.icon-bg img {
    vertical-align: middle;
}

.light-bg-box:hover {
    background: #ededed;
}

#cta-box-companies:hover .icon-bg {
    background: var(--green);
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

#cta-box-individuals:hover .icon-bg {
    background: var(--orange);
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.footer {
    background: var(--green);
    color: #fff;
}


.green-bg a {
    color: rgba(255, 255, 255, 0.75);
    font-weight: 400;
}

.green-bg a:hover {
    color: rgba(255, 255, 255, 1);
}

.green-bg .button {
    font-weight: 600;
}

#social-nav {
    float: right;
}

#social-nav li {
    float: left;
    line-height: 48px;
    padding: 0px 20px;
}

#social-nav li a {
    display: block;
    padding: 0px 4px;
}

#social-nav li img {
    vertical-align: middle;
}

#social-nav li a.button {
    padding: 0px 32px;
    line-height: 46px;
}

#social-nav li:nth-last-child(1) {
    padding-right: 0px;
}

.footer-top {
    padding: 48px 0px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.footer-mid {
    padding: 48px 0px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.footer h4 {
    font-weight: 500;
}

.footer-mid a {
    padding: 1px 0px;
    display: inline-block;
}

.footer-sub {
    padding: 48px 0px;
}

.footer-copyright {
    background: rgba(0, 0, 0, 0.12);
    padding: 15px 0px;
}

.sub-wrap {
    width: calc(100% - 60px);
    float: left;
}

.sub-input {
    background: transparent;
    border: 0px;
    font-size: 16px;
    border: 1.5px solid #fff;
    border-radius: 6px;
    height: 48px;
    width: 28%;
    margin: 0% 1%;
    float: left;
    padding: 0px 14px;
    color: #fff;
}

.sub-input::placeholder {
    color: rgba(255, 255, 255, 0.75);
}


.input-email {
    width: 38%;
}

.sub-input:focus {
    outline: 1.5px solid rgba(255, 255, 255, 0.2);
    outline-offset: 2px;
    background: rgba(255, 255, 255, 0.03);

}


.sub-submit {
    width: 48px;
    height: 48px;
    background: url('../images/newsletter-send.svg') center center no-repeat #fff;
    border-radius: 50%;
    border: 0px;
    float: right;
    cursor: pointer;
}

.sub-submit:hover {
    background: url('../images/newsletter-send.svg') center center no-repeat rgba(255, 255, 255, 0.8);
}

.footer-logo {
    height: 48px;
    display: block;
}

.green {
    color: var(--green) !important;
}

.orange {
    color: var(--orange) !important;
}

.hero .green {
    color: #00CA49 !important;
}

#pricing-tabs ul,
#project-tabs ul {
    display: table;
    background: #fff;
    margin: 0px auto;
    margin-top: -56px;
    border-radius: 8px;
}


#pricing-tabs .container,
#project-tabs .container {
    padding: 0px;
}

#pricing-tabs li,
#project-tabs li {
    float: left;
    padding: 4px;
}

#pricing-tabs li a,
#project-tabs li a {
    padding: 18px 0px;
    display: block;
    min-width: 186px;
    text-align: center;
    font-weight: 600;
    color: #000;
    border-radius: 6px;
}

#pricing-tabs li:nth-child(1) a:hover {
    background: var(--green);
    color: #fff;
}

#pricing-tabs li:nth-child(2) a:hover {
    background: var(--orange);
    color: #fff;
}

#pricing-tabs li a img,
#project-tabs li a img {
    margin-bottom: 10px;
}

.height-32 {
    height: 32px;
}


#project-tabs li a {
    min-width: 120px !important;
    padding: 10px 0px !important;
    background: #fff !important;
}

#project-tabs {
    background: #f3f3f3;
    text-align: center;
}


#project-tabs ul {
    background: #f3f3f3 !important;
    margin-top: -27px !important;
    display: inline-block !important;
}

#pricing-tabs li:nth-child(1) .active,
#project-tabs li:nth-child(1) .active {
    background: var(--green) !important;
    color: #fff;
}

#pricing-tabs li:nth-child(2) .active,
#project-tabs li:nth-child(2) .active {
    background: var(--orange) !important;
    color: #fff;
}

.pricing-box {
    border-radius: 16px;
    border: 1px solid #E7E7E7;
    padding: 4px;
    background: #FFF;
    box-shadow: 0px 4px 7px -1px rgba(0, 0, 0, 0.10);
}

.pricing-top {
    border-radius: 14px 14px 0px 0px;
    background: #f3f3f3;
    padding: 30px 32px 36px 32px;
}

.pricing-select {
    background: url('../images/select.svg') center right 20px no-repeat #E6E6E6;
    height: 48px;
    color: var(--Strong, #292825);
    font-family: Hind;
    font-size: 16px;
    border: 0px;
    border-radius: 6px;
    padding: 0px 12px;
    width: 100%;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.pricing-select:focus {
    outline-offset: 2px;
    outline: 2px solid #e6e6e6;
    transition: all ease-in-out 0s;
}

.pricing-top .button {
    border-radius: 6px;
    width: 100%;
    text-align: center;
    margin-top: 12px;
}

.pricing-features {
    padding: 32px;
}

#pricing-boxes {
    padding-top: 80px;
}

.step-icon {
    background: var(--green);
    width: 32px;
    height: 32px;
    line-height: 34px;
    color: #fff;
    font-size: 18px;
    text-align: center;
    outline: 2px solid var(--green);
    outline-offset: 2px;
    border-radius: 50%;
    font-weight: 700;
}

.height-80 {
    height: 80px;
}

.responsive-img {
    max-width: 100%;
}

.ifix {
    padding-bottom: 2px;
}

.faq-item {
    border-top: 1px solid #CDCDCD;
    border-bottom: 1px solid #CDCDCD;
    margin-top: 15px;
    padding: 0px 20px;
}

.faq-item h4 {
    font-size: 18px;
    line-height: 24px !important;
    height: 56px;
    padding: 18px 0px;
    font-weight: 500;
}

.faq-question {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faq-question img {
    float: right;
    height: 20px;
    margin-top: 1px;
}

.faq-answer {
    display: none;
    padding: 0px 0px 0px 0px;
}

.faq-question.open img {
    content: url('../images/faq-negative.svg');
}

.avatar img {
    border-radius: 50%;
    width: 54px;
    height: 54px;
}

.avatar {
    border: 1.5px solid #000;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    padding: 1.5px;
}

.author {
    padding-top: 10px;
}

.blog-img {
    float: left;
    width: 200px;
}

.blog-img img {
    border-radius: 10px;
}

.blog-text {
    float: right;
    width: calc(100% - 230px);
    padding-top: 15px;
}


#projects-search {
    text-align: center;
    padding-top: 30px !important;
    padding-bottom: 40px !important;
}

.search-input {
    background: url('../images/search-placeholder.svg') center left no-repeat;
    border: 0px;
    height: 40px;
    width: 100%;
    max-width: 860px;
    margin: 0px auto;
    font-size: 22px;
    padding-left: 50px;
}



.search-input:focus,
.search-input.active-search {
    outline: none;
    background: url('../images/search.svg') center left no-repeat;
}

#project-boxes .col {
    margin-bottom: 30px;
}

#project-boxes .row {
    margin-bottom: -30px;
}

#projects-browse-by-map {
    background: url('../images/browse-by-map-temp.png') center center no-repeat #f3f3f3;
    padding-top: 60px;
    min-height: 520px;
}

.subhero-light h1,
.subhero-light h2,
.subhero-light h3,
.subhero-light h4,
.subhero-light h5 {
    color: #000;
}


.subhero-light h1 small,
.subhero-light h2 small,
.subhero-light h3 small,
.subhero-light h4 small,
.subhero-light h5 small {
    color: var(--text);
    font-weight: 400;
    font-family: "Hind", sans-serif;
}

.subhero-light {
    color: var(--strong);
}

.has-no-hero-bg #main-nav li a {
    color: #000;
}

.has-no-hero-bg #main-nav li a.outline {
    color: #000 !important;
    border-color: #000 !important;
}

.has-no-hero-bg #main-nav li a.outline:hover {
    background: #000 !important;
    color: #fff !Important;
}

#contact-headquarters {
    background: url('../images/bg-headquarters.png') center center no-repeat #f3f3f3;
    padding: 60px 0px;
}

.contact-box {
    max-width: 860px;
    padding: 48px;
    border-radius: 16px;
    background: #FFF;
    box-shadow: 0px 5px 24px 2px rgba(0, 0, 0, 0.18);
    margin: 0px auto;
    margin-top: -88px;
}

.contact-box:hover {
    margin-top: -89px;
    margin-bottom: 1px;
    box-shadow: 0px 5px 36px 2px rgba(0, 0, 0, 0.18);
}

.input {
    border-radius: 6px;
    border: 1px solid #D4D7DC;
    background: #FFF;
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.07);
    height: 52px;
    font-size: 16px;
    font-family: "Hind", sans-serif;
    display: block;
    width: 100%;
    padding: 0px 15px;
    margin-top: 5px;
}

.input:focus {

    outline: 1.5px solid var(--green);
}

.contact-box .input {
    margin-bottom: 30px;
}

.contact-box label {
    font-weight: 600;
    color: var(--strong);
}

.textarea {
    height: 160px;
    padding: 12px 15px;
}

.send-button {
    border: 0px;
    height: 52px;
    padding: 0px 36px 0px 64px;
    background-image: url('../images/send-message.svg');
    background-position: center left 36px;
    background-repeat: no-repeat;
    background-color: var(--green);
}

.hq-box {
    background: var(--orange);
    width: 23.3%;
    border-radius: 10px;
    padding: 40px 40px;
    color: #fff;
    line-height: 22px;
    float: right;
    position: relative;
}

.hq-box::before {
    width: 24px;
    height: 24px;
    display: block;
    position: absolute;
    content: " ";
    top: 66.6667%;
    left: 0;
    margin-top: -16px;
    margin-left: -8px;
    transform: rotate(45deg);
    background: var(--orange);
    border-radius: 2px;
}

.hq-box h3 {
    color: #fff;
}

#about-photos {
    padding: 0px;
    margin-top: -140px;
}

#about-vision .container {
    padding: 0px 120px;
}

.behind-about-img {
    position: relative;
}

.behind-about-img::before {

    position: absolute;
    bottom: -40px;
    left: -40px;
    content: " ";
    display: block;
    background: url(../images/behind-about-img.svg);
    width: 218px;
    height: 222px;
    z-index: -1;
}

#about-mission {
    padding: 68px 0px;
}

.mission-statement {
    text-align: center;
    max-width: 980px;
    margin: 0px auto;
    font-size: 30px;
    line-height: 40px;
    font-weight: 300;
}

.row-features .col {
    padding-bottom: 50px;
}

.row-features {
    margin-bottom: -50px;
}

.review-box {
    padding: 36px 32px 30px 32px;
}

.about-cta-before-bg:before {
    display: none;
}

.step-icon-big {
    height: 68px;
    width: 68px;
    line-height: 72px;
    font-size: 36px;
    font-weight: 500;
}

.hiw-line {
    width: 24%;
    height: 1.5px;
    background: #000;
    position: absolute;
    top: 34px;
    left: 21%;
    opacity: 0.15;
}

.hiw-line-2 {
    left: unset;
    right: 21%;
}

.dark-bg {
    background: #1A1A1A;
    color: #D0D0D0;
}

.dark-bg h1,
.dark-bg h2,
.dark-bg h3,
.dark-bg h4,
.dark-bg h5 {
    color: #fff;
}

#affilates-reasons {
    padding-bottom: 140px;
}

#affiliates-payout {
    padding: 0px;
}

#affiliates-payout .container {
    padding-top: 66px;
    padding-bottom: 66px;
}

.payout-mid {
    background: url('../../marketing-site/images/affiliate-icon-two.svg');
    width: 696px;
    height: 448px;
    position: absolute;
    left: 50%;
    top: -110px;
    transform: translatex(-50%);
    padding-top: 80px;
    z-index: 1002;
}

.payout-mid h4 {
    font-size: 20px;
    text-transform: uppercase;
    font-family: "Hind", sans-serif;
}

.payout-mid h2 {
    font-size: 112px;
    line-height: 100px;
    padding-top: 20px;
}

.payout-mid h3 {
    margin-top: -10px;
    font-size: 30px;
    line-height: 36px;
    padding-bottom: 20px;
}

.button.dark {
    background: #1a1a1a;
}

.button.dark:hover {
    background: #272727;
}

.index-fix {
    position: relative;
    z-index: 1001;
}

.project-why li {
    position: relative;
    padding-left: 28px;
}

.project-why li img {
    position: absolute;
    top: 9px;
    width: 16px;
    left: 0px;
}

.slider-nav li {
    width: 23%;
    float: left;
    margin-top: 20px;
    margin-right: 2.6667%;
    opacity: 0.6667;
}

.slider-nav li:hover {
    opacity: 1;
    cursor: pointer;
}

.slider-nav li:nth-last-of-type(1) {
    margin-right: 0%;
}

.slider-nav li.active {
    border: 4px solid #000;
    opacity: 1;
}

.project-details-box {
    border-radius: 12px;
    background: #FFF;
    box-shadow: 0px 0px 12px 1px rgba(0, 0, 0, 0.15);
    padding: 36px;
    margin-bottom: 40px;
}

.sticky-box {
    position: sticky;
    top: 30px;
}

.project-details-box ul {
    margin-top: 30px;
}

.project-details-box ul li {
    border-top: 1px solid rgba(0, 0, 0, 0.15);
    padding-top: 10px;
    padding-bottom: 4px;
}

.detail-label {
    line-height: 16px;
    font-weight: 600;
    font-size: 10px;
    opacity: 0.5;
    display: block;
    margin-bottom: 3px;
}

.project-details-box strong {
    font-weight: 400;
}

.project-details-box strong.green {
    font-weight: 600;
}

.logo {
    width: 181px;
    height: 48px;
    background: url('../images/logo.svg');
    display: block;
}

.has-no-hero-bg .logo {
    background: url('../images/logo-dark.svg');
}

#contact-departments .light-bg-box:hover {
    margin-top: -1px;
    margin-bottom: 1px;
}

#about-cta .project-box {
    padding: 40px 32px;
}

#about-photos .responsive-img:hover,
.behind-about-img img.responsive-img:hover {
    margin-top: -1px;
    transform: scale(1.025);
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.proof-active,
#project-tabs.proof-active ul {
    background: #fff !important;
}

.half-list li {
    width: 50%;
    float: left;
}

.pricing-box-row .button {
    border-radius: 8px;
}

.pricing-box-row .center-vertically {
    left: 0px;
    right: 0px;
    padding: 0px 32px;
}

.pricing-box-row .light-bg {
    border-radius: 12px 0px 0px 12px;
}

.proof-table {
    width: 100%;
    display: table;
    border-collapse: separate;
    border-spacing: 0 10px;
}

.proof-table th {
    font-size: 12px;
    opacity: 0.6;
    text-align: left;
    padding: 0px 20px;
}

.proof-table tr td {
    background: #F4F4F4;
    padding: 20px 20px;
    text-align: left;
}

.proof-table tr td .button {
    width: 100%;
    text-align: center;
    padding: 0px;
    text-decoration: none !important;
}


.proof-table tr td:nth-last-child(1) {
    width: 140px;
}

.button.small {
    height: 40px;
    line-height: 40px;
}

.button.default {
    background: transparent;
    border: 1px solid #B0B0B0;
    color: var(--strong) !important;
}

.button.default:hover {
    background: var(--strong) !important;
    border: 1px solid var(--strong) !important;
    color: #fff !important;
}

.button.default:hover img {
    filter: brightness(100);
}

.proof-table tr td:nth-child(1) {
    border-radius: 8px 0 0 8px;
}

.proof-table tr td:nth-last-child(1) {
    border-radius: 0 8px 8px 0;
}

.proof-table a {
    color: var(--text);
    text-decoration: underline;
    font-weight: 400;
}

.proof-table a:hover {
    color: var(--green-hover);
}

.proof-control {
    display: inline-block;
    padding: 20px 12px;
}

.proof-control label {
    display: block;
    text-align: left;
    font-size: 12px;
    opacity: 0.6;
    margin-bottom: 4px;
    display: none;
}

.proof-control select,
.proof-control input[type="date"] {
    border-radius: 5px;
    border: 1px solid #CBCBCB;
    background: url('../images/select-down.svg') center right 20px no-repeat #FFF;
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.18);
    padding: 0px 50px 0px 20px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
    height: 40px;
    font-size: 16px;
    font-family: "Hind", sans-serif;
    line-height: 40px;
    color: var(--strong);
    font-weight: 600;
}

.proof-control input[type="date"] {
    background: #fff;
    padding: 0px 20px;
}


.pagination {
    margin-top: 20px;
    margin-left: -4px;
}

.pagination .page-btn {
    margin: 0px 4px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #fff;
    color: var(--text);
    cursor: pointer;
    border: 0px;
    font-weight: 600;
}

.page-btn:hover {
    background: #f1f1f1;
    color: var(--strong);
}

.pagination .page-btn.active {
    background-color: var(--strong);
    color: white;
}

.reset-btn {
    border-radius: 5px;
    border: 1px solid #000;
    background: url('../images/reset.svg') center left 20px no-repeat #FFF;
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.18);
    padding: 0px 20px 0px 38px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
    height: 40px;
    font-size: 16px;
    font-family: "Hind", sans-serif;
    line-height: 40px;
    color: var(--strong) !important;
    font-weight: 600;

}

.reset-btn:hover {
    color: var(--strong) !important;
    background: url('../images/reset.svg') center left 20px no-repeat #f3f3f3;
}

.project-share li {
    display: inline-block;
    padding-right: 12px;
}

.project-share li img:nth-child(2) {
    display: none;
}

.project-share li a:hover img:nth-child(2) {
    display: inline-block;
}

.project-share li a:hover img:nth-child(1) {
    display: none;
}

.carousel {
    position: relative;

    /* Hides carousel by default */
}

.carousel {
    position: relative;
}

.carousel.pointer-event {
    touch-action: pan-y;
}

.carousel-inner {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.carousel-inner::after {
    display: block;
    clear: both;
    content: "";
}

.carousel-item {
    position: relative;
    display: none;
    float: left;
    width: 100%;
    margin-right: -100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transition: transform 0.6s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
    .carousel-item {
        transition: none;
    }
}

.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
    display: block;
}

.carousel-item-next:not(.carousel-item-start),
.active.carousel-item-end {
    transform: translateX(100%);
}

.carousel-item-prev:not(.carousel-item-end),
.active.carousel-item-start {
    transform: translateX(-100%);
}

.carousel-fade .carousel-item {
    opacity: 0;
    transition-property: opacity;
    transform: none;
}

.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-start,
.carousel-fade .carousel-item-prev.carousel-item-end {
    z-index: 1;
    opacity: 1;
}

.carousel-fade .active.carousel-item-start,
.carousel-fade .active.carousel-item-end {
    z-index: 0;
    opacity: 0;
    transition: opacity 0s 0.6s;
}

@media (prefers-reduced-motion: reduce) {

    .carousel-fade .active.carousel-item-start,
    .carousel-fade .active.carousel-item-end {
        transition: none;
    }
}

.carousel-control-prev,
.carousel-control-next {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 15%;
    padding: 0;
    color: #fff;
    text-align: center;
    background: none;
    border: 0;
    opacity: 0.5;
    transition: opacity 0.15s ease;
}

@media (prefers-reduced-motion: reduce) {

    .carousel-control-prev,
    .carousel-control-next {
        transition: none;
    }
}

.carousel-control-prev:hover,
.carousel-control-prev:focus,
.carousel-control-next:hover,
.carousel-control-next:focus {
    color: #fff;
    text-decoration: none;
    outline: 0;
    opacity: 0.9;
}

.carousel-control-prev {
    left: 0;
}

.carousel-control-next {
    right: 0;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: 100% 100%;
}

/* rtl:options: {
    "autoRename": true,
    "stringMap":[ {
      "name"    : "prev-next",
      "search"  : "prev",
      "replace" : "next"
    } ]
  } */

.has-indic .carousel-indicators {
    position: absolute;
    right: 0;
    bottom: -40px;
    left: 0;
    z-index: 1012;
    display: flex;
    justify-content: center;
    padding: 0;
    margin-right: 15%;
    margin-bottom: 1rem;
    margin-left: 15%;
    list-style: none;
}

.has-indic .carousel-indicators [data-bs-target] {
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 12px;
    border-radius: 50%;
    height: 12px;
    padding: 0;
    margin-right: 3px;
    margin-left: 3px;
    text-indent: -999px;
    border: 1px solid #fff;
    background: #fff;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.6s ease;
}

@media (prefers-reduced-motion: reduce) {
    .has-indic .carousel-indicators [data-bs-target] {
        transition: none;
    }
}

.has-indic .carousel-indicators .active {
    opacity: 1;
    background: var(--header);
}

.visually-hidden {
    display: none;
}

.carousel-dark .carousel-control-prev-icon,
.carousel-dark .carousel-control-next-icon {
    filter: invert(1) grayscale(100);
}

.carousel-dark .carousel-indicators [data-bs-target] {
    background-color: #000;
}

.carousel-dark .carousel-caption {
    color: #000;
}

[data-bs-theme="dark"] .carousel .carousel-control-prev-icon,
[data-bs-theme="dark"] .carousel .carousel-control-next-icon {
    filter: invert(1) grayscale(100);
}

[data-bs-theme="dark"] .carousel .carousel-indicators [data-bs-target] {
    background-color: #000;
}

[data-bs-theme="dark"] .carousel .carousel-caption {
    color: #000;
}

.carousel-control-prev,
.carousel-control-next {
    color: var(--header);
    z-index: 1002;
    width: 5%;
}

.carousel-control-prev:hover,
.carousel-control-prev:focus,
.carousel-control-next:hover,
.carousel-control-next:focus {
    color: var(--header);
    cursor: pointer;
}

/* Previous and Next slide number */
.carousel-slide-number {}

/* Loading bar */
.carousel-progress {
    width: 140px;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.12);
    overflow: hidden;
    border-radius: 8px;
    margin-top: 7px;
}

.carousel-progress-bar {
    height: 100%;
    background-color: rgba(255, 255, 255, 1);
    width: 0;
    border-radius: 8px;
    transition: width 8s linear;
    /* Change 8s to your desired delay time */
}

/* Customize previous and next arrow buttons */
.carousel-control-prev,
.carousel-control-next {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #fff;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    color: #ccc;
}


.slider-nav button {
    background: transparent;
    border: 0px;
    padding: 0px;

}


.slider-nav button img {
    width: 100%;
    height: 100%;
}

.carousel-control-prev,
.carousel-control-next {
    opacity: 1;
    padding: 0px;
}

.carousel-control-prev,
.carousel-control-next {
    background: url('../images/carousel-next.svg') center center no-repeat #2A2A2A;
    width: 40px;
    height: 40px;
    color: #fff;
    top: 50%;
    margin-top: -20px;
    margin-right: -20px;
    background-size: 9px;
}

.carousel-control-prev {
    background: url('../images/carousel-prev.svg') center center no-repeat #2A2A2A !important;
    margin-left: -20px;
    margin-right: 0px;
    background-size: 9px;
}

#project-previews .project-box {
    box-shadow: unset;
}

.home-project-slider .home-slider-nav {
    cursor: pointer;
    opacity: 0.75;
    position: relative !important;
    left: unset !important;
    top: unset !important;
    bottom: unset !Important;
    right: unset !important;
    margin: 0px !important;
    background: transparent !important;
    display: inline-block !important;
    height: auto !important;
    width: auto !important;
}

.home-project-slider .carousel-control-prev {
    margin-right: 20px !important;
}

.home-project-slider .disabled,
.home-project-slider .disabled:hover {
    opacity: 0.3 !important;
    cursor: not-allowed !important;
}

.home-project-slider .home-slider-nav:hover {
    cursor: pointer;
    opacity: 1;
}


.globe-projects {
    width: 360px;
    height: 360px;
    display: block;
    margin: 0px auto;
    background: url('../images/globe-projects.svg');
    position: relative;
}

.pin {
    position: absolute;
    padding: 5px;
    display: block;
}

.the-pin {
    position: absolute;
    width: 12px;
    /* Adjust size as needed */
    height: 12px;
    background-color: var(--green);
    border: 1.5px solid #fff;
    border-radius: 50%;
    cursor: pointer;
    transform: translate(-50%, -50%);
    /* Center the pin */
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.20);
    z-index: 1;
}

.pin h5 {
    font-size: 16px;
    margin-top: 2px;
}

.pin .tooltip {
    position: absolute;
    bottom: 100%;
    /* Position the tooltip above the pin */
    left: 50%;
    min-width: 260px;
    transform: translate(-50%, -10px);
    /* Moves the tooltip slightly upwards and to the left */
    z-index: 1001;
    color: var(--text);
    padding: 15px 15px;
    border-radius: 4px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out;
    pointer-events: auto;
    background: #FFF;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.20);
    text-align: left;
    cursor: default;
}

.pin .tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    /* Position the arrow at the bottom of the tooltip */
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
    z-index: 1001;
    border-color: #fff transparent transparent transparent;
    /* Creates the downward arrow */
}

.pin .tooltip img {
    border-radius: 5px;
}

.pin:hover .tooltip {
    opacity: 1;
    visibility: visible;
    z-index: 1010;
    /* Ensures the tooltip stays on top of other pins */
}

.project-button {
    border-radius: 24px;
    border: 1px solid rgba(0, 177, 64, 0.27);
    color: var(--green) !important;
    line-height: 24px !important;
    display: inline-block;
    padding: 0px 12px;
    background: rgba(0, 177, 64, 0.07);
    height: 24px;
    font-size: 14px;
}

.button_container {
    color: #fff;
    display: none;
    position: absolute;
    right: 15px;
    text-align: right;
    top: 50%;
    transform: translateY(-50%);
    width: auto;
}

body,
html {
    overflow-x: hidden;
}

.overflow-fix {
    overflow-x: unset;
}

@media (min-width: 1200px) and (max-width: 1600px) {
    #hero-affiliates {
        background: url(../images/affiliate-icon.svg) bottom right 0% no-repeat #f3f3f3;
        padding-bottom: 120px;
    }
}

.featured-box {
    position: relative;
}


.featured-box .featured-project-box {
    width: 100%;
    max-width: 620px;
    z-index: 1001;
}

.featured-box .featured-project-box {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.featured-box-img {
    float: right;
    z-index: 999;
    width: 100%;
    max-width: 754px;
}

.featured-box-img img {
    border-radius: 0px;
    max-width: 100%;
}

#featured-project .project-box {
    padding: 44px;
}

#featured-project .trees-planted-featured-project img {
    height: 64px;
}

.blog-text a img {
    height: 18px;
}

.blog-text a:hover h3 {
    color: var(--green)
}

.blog-img img {
    width: 200px;
    height: 200px;
    object-fit: cover;
}


.carousel-controls li {
    margin: 0px 4px;
}

.carousel-controls li:nth-child(1) {
    margin-left: 0px;
}

.carousel-controls li:nth-last-child(1) {
    margin-right: 0px;
}

.carousel-controls li a {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1.5px solid #323232;
    background-color: transparent;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    margin-bottom: 1.5px;
    opacity: 0.66;
}

.carousel-controls li a :hover {
    opacity: 1;
}

.carousel-controls li a.active {
    background-color: var(--green);
    border-color: var(--green);
    opacity: 1;
}

.carousel-controls {
    display: flex;
    gap: 8px;
    justify-content: right;
    margin-top: 1.5rem;
    margin-bottom: -20px;
}

.carousel-controls .carousel-control-prev,
.carousel-controls .carousel-control-next {
    width: auto;
    height: auto;
    border-radius: unset;
    border: 0px;
    transition: unset;
    position: relative;
    top: unset;
    transform: unset;
    left: unset;
    right: unset;
    background: transparent !important;
    margin-bottom: 0px;
    margin-top: 0px;
    margin-left: 0px;
    margin-right: 0px;
}

.carousel-controls .carousel-control-prev img,
.carousel-controls .carousel-control-next img {
    vertical-align: middle;
    height: 13px;
}

.page-forest .header {
    z-index: 1000;
    top: 0;
}

.page-forest .logo {
    background: url('../images/logo-dark-forest.svg');
}



#hero-forest {
    background: url('../../marketing-site/images/bg-forest@2x.png') center bottom no-repeat;
    background-size: 1920px auto;
    position: relative;
    z-index: 999;
    padding-bottom: 20px;
    text-align: center;
    padding-top: 120px;
    color: var(--header);
}

.page-forest .header {
    padding-left: 48px;
    padding-right: 48px;
}

#hero-forest h1,
#hero-forest h2,
#hero-forest h3 {

    color: var(--header);
}

@media (min-width: 1921px) {
    #hero-forest {
        background: url('../../marketing-site/images/bg-forest-wide@2x.png') center bottom no-repeat;
        background-size: 2560px auto;
        padding-bottom: 33px;
    }
}

#hero-forest .payout-mid {
    bottom: unset;
    transform: unset;
    margin: 0px auto;
    left: unset;
    text-align: center;
    top: unset;
    position: relative;
}

#hero-forest strong {
    color: var(--header);
}

.ifix {
    padding-bottom: 3px;
}

.font-28 {
    font-size: 28px;
    line-height: 36px;
}

.forest-client-website {
    display: inline-block;
    height: 36px;
    border-radius: 36px;
    padding: 0px 20px;
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    line-height: 38px;
    font-weight: 500;
}

.forest-client-website:hover,
.forest-client-website:focus {
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
}

#hero-forest .payout-mid h2 {
    font-size: 74px;
    line-height: 88px;
}

#hero-forest .payout-mid h3 {
    font-size: 26px;
}

.page-forest #main-nav li a.outline {
    border-color: var(--header);
    color: var(--header) !important;
}

.page-forest #main-nav li a:hover,
.page-forest #main-nav li a.outline:hover {
    color: #20C0D0 !important;
    background: var(--header);
}

.col-lg-25 {
    flex: 0 0 auto;
    width: 20%;
}

#hero-forest .payout-mid,
#hero-forest .payout-mid h1,
#hero-forest .payout-mid h2,
#hero-forest .payout-mid h3 {
    color: #fff;
}


.forest-box {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0px 0px 12px 1px rgba(0, 0, 0, 0.1);
    padding: 32px 0px 14px 0px;
    position: relative;
    cursor: pointer;
}

.forest-box:hover {
    box-shadow: 0px 2px 18px 2px rgba(0, 0, 0, 0.15);
}

.height-128 {
    height: 128px;
}

.forest-box strong {
    color: var(--header);
}

.forest-tooltip {
    background: rgba(0, 177, 64, 0.16);
    border: 1px solid rgba(0, 177, 64, 0.41);
    position: absolute;
    top: 20px;
    right: 20px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    line-height: 32px;
    color: var(--green);
    font-family: "Din Next LT Pro", sans-serif;
    font-size: 20px;
}

.forest-tooltip:hover {
    background: rgba(0, 177, 64, 0.24);
    border: 1px solid rgba(0, 177, 64, 0.61);
    cursor: pointer;
}



.card-slider .carousel-inner {
    display: flex;
    flex-wrap: nowrap;
}

.card-slider .carousel-item {
    flex: 0 0 calc(100% / 4);
    /* Adjust this value based on the number of cards you want to show */
    margin-right: 15px;
}

.card-slider .carousel-control-prev,
.card-slider .carousel-control-next {
    width: auto;
}

.card-slider .carousel-control-prev-icon,
.card-slider .carousel-control-next-icon {
    background-image: none;
    font-size: 2rem;
}

@media (max-width: 767px) {

    #forest-plantings .carousel-inner .carousel-item>div,
    #colo-use-cases .carousel-inner .carousel-item>div {
        display: none;
    }

    #forest-plantings .carousel-inner .carousel-item>div:first-child,
    #colo-use-cases .carousel-inner .carousel-item>div:first-child {
        display: block;
    }
}

#forest-plantings .col,
#colo-use-cases .col {
    padding: 0px 10px;
}

#forest-plantings .row .carousel,
#colo-use-cases .row .carousel {
    padding: 0px !important;
}

#forest-plantings .box {
    border: 1px solid #222222;
    background-image: linear-gradient(136deg, #141414 0%, #1a1a1a 50%, #131313 100%);
}

#colo-use-cases .box {
    border: 1px solid #282828;
    background-image: linear-gradient(136deg, #1c1c1c 0%, #161616 50%, #1d1d1d 100%);
}

#forest-plantings .carousel-control-next,
#forest-plantings .carousel-control-prev {
    background: var(--green) !important;
    border: 1px solid #00792C;
    box-shadow: inset 0 -2px 2px 0 rgba(0, 0, 0, 0.06);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    text-align: center;
    line-height: 46px;
    opacity: 1;
    top: 50%;
    margin-top: -24px;
    right: -48px;
}

#forest-plantings .carousel-control-next img,
#forest-plantings .carousel-control-prev img {
    height: 16px;
}

#forest-plantings .carousel-control-prev {
    right: unset;
    left: -48px;
}

#forest-plantings .carousel-control-next:hover,
#forest-plantings .carousel-control-prev:hover {
    opacity: 1;
    color: #fff;
    background: var(--green-hover) !important;
    border: 1px solid #00792C;
    transition: all ease-in-out 0.25s;
}


#forest-plantings .carousel-control-next.disabled,
#forest-plantings .carousel-control-prev.disabled {
    opacity: 0.4;
    cursor: not-allowed;
    display: none;
}

#forest-plantings .carousel-inner .carousel-item.active,
#forest-plantings .carousel-inner .carousel-item-next,
#forest-plantings .carousel-inner .carousel-item-prev {
    display: flex;
}

/* medium and up screens */
@media (min-width: 768px) {

    #forest-plantings .carousel-inner .carousel-item-end.active,
    #forest-plantings .carousel-inner .carousel-item-next {
        transform: translateX(50%);
    }

    #forest-plantings .carousel-inner .carousel-item-start.active,
    #forest-plantings .carousel-inner .carousel-item-prev {
        transform: translateX(-50%);
    }

    #useCasesCarousel .col-lg-25 {
        width: 50% !important;
        flex-basis: 50% !important;
    }

}

/* medium and up screens */
@media (min-width: 992px) {

    #forest-plantings .carousel-inner .carousel-item-end.active,
    #forest-plantings .carousel-inner .carousel-item-next {
        transform: translateX(25%);
    }

    #forest-plantings .carousel-inner .carousel-item-start.active,
    #forest-plantings .carousel-inner .carousel-item-prev {
        transform: translateX(-25%);
    }

    #useCasesCarousel .col-lg-25 {
        width: 25% !important;
        flex-basis: 25% !important;
    }

}


/* medium and up screens */
@media (min-width: 1200px) {

    #forest-plantings .carousel-inner .carousel-item-end.active,
    #forest-plantings .carousel-inner .carousel-item-next {
        transform: translateX(20%);
    }

    #forest-plantings .carousel-inner .carousel-item-start.active,
    #forest-plantings .carousel-inner .carousel-item-prev {
        transform: translateX(-20%);
    }

    #useCasesCarousel .col-lg-25 {
        width: 20% !important;
        flex-basis: 20% !important;
    }

}

/* medium and up screens */
@media (min-width: 1200px) and (max-width: 1400px) {

    #forest-plantings .carousel-control-next,
    #forest-plantings .carousel-control-prev {
        right: 47%;
        top: unset;
        bottom: -40px;
    }

    #forest-plantings .carousel-control-prev {
        left: 47%;
        top: unset;
        bottom: -40px;
    }

    #forest-goal {
        margin-top: 80px !important;
    }

}

#forest-plantings .carousel-inner .carousel-item-end,
#forest-plantings .carousel-inner .carousel-item-start {
    transform: translateX(0);
}

.carousel-item-next .forest-box {
    box-shadow: unset;
}

.carousel-item-prev .forest-box {
    box-shadow: unset;
}

.carousel-item-next .col-lg-25:nth-last-of-type(1) .forest-box {
    box-shadow: 0px 0px 12px 1px rgba(0, 0, 0, 0.1);
    padding: 32px 0px 14px 0px;
}

.carousel-item-prev .col-lg-25:nth-child(1) .forest-box {
    box-shadow: 0px 0px 12px 1px rgba(0, 0, 0, 0.1);
    padding: 32px 0px 14px 0px;
}

.carousel-inner {
    padding: 30px 0px;
}


.modal {
    display: none;
    padding-right: 0px !important;
}

.modal-open {
    padding-right: 0px !important;
}

/* Modal backdrop */
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1040;
    background-color: rgba(0, 0, 0, 0.5);
}

/* Modal /* Modal styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1050;
    outline: 0;
    display: flex;
    background-color: rgba(0, 0, 0, 0.5);
    /* Dark background overlay */
    display: none;

    align-items: center;
    /* Center vertically */
    justify-content: center;
    /* Center horizontally */
    overflow-y: auto;
    /* Allow scrolling if content is long */
}


.modal-dialog {
    width: 100% !important;
    max-width: 640px !important;
    margin: 50px auto auto auto;
}


/* Modal content */
.modal-content {
    background-color: #fff;
    border-radius: 24px;
    width: 100%;
    margin: 0;
    max-height: 90vh;
    overflow-y: auto;
}

/* Modal header */
.modal-header {
    padding: 36px 36px 30px 36px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.125);
    color: #fff;
    border-radius: 24px 24px 0px 0px;
    background: linear-gradient(97deg, #00B140 29.14%, #00EA55 91.5%);
    position: relative;
}

.modal-header strong,
.modal-header h2 {
    color: #fff;
}

.modal-forest .project-details-box {

    border-radius: unset;
    background: unset;
    box-shadow: unset;
    padding: unset;
    margin-bottom: unset;
}

.modal-forest .project-details-box ul {
    margin-top: 0px;
}

.modal-forest .project-details-box ul li {
    border-top: 0px solid rgba(0, 0, 0, 0.15);
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);

}

.modal-forest .project-details-box ul li:nth-child(1) {
    padding-top: 0px;
}

.modal-forest .project-details-box ul li:nth-last-child(1) {
    border-bottom: 0px;
}

.modal-header h2 {
    font-size: 36px;
    line-height: 36px;
    padding-bottom: 0px;
    padding-top: 15px;
}

.forest-popup-icon {
    position: absolute;
    top: 30px;
    right: 30px;
}

.planted-date {
    border-radius: 36px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.20);
    font-weight: 600;
    height: 36px;
    line-height: 36px;
    border-radius: 36px;
    padding: 0px 16px;
    display: inline-block;
}

/* Modal body */
.modal-body {
    position: relative;
    padding: 32px 36px;
}

/* Modal footer */
.modal-footer {
    display: flex;
    justify-content: flex-end;
    padding: 0.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.125);
}

/* Close button */
.btn-close {
    background: url('../images/forest-close.svg');
    width: 24px;
    height: 24px;
    position: absolute;
    top: 16px;
    right: 16px;
    border: 0px;
    padding: 0px;
    cursor: pointer;
    opacity: 0.75;
}

.btn-close:hover {
    opacity: 1;
}

.progress-container {
    width: 100%;
    background-color: #B4E4C6;
    border-radius: 12px;
    overflow: hidden;
    height: 14px;
}

.progress-bar {
    height: 100%;
    background-color: var(--green);
    color: white;
    text-align: center;
    line-height: 20px;
    transition: width 0.3s ease;
    font-size: 14px;
}


.normal {
    font-weight: 300 !important;
}

.trees-planted-actively h3 {
    font-size: 28px;
    padding-top: 6px;
}

.height-16 {
    height: 16px;
    padding-bottom: 2px;
}

.modal.show {
    backdrop-filter: blur(10px);
    background: rgba(0, 0, 0, 0.4);
}

#forest-cta {
    background: url('../images/bg-forest-cta.png') center right no-repeat #f3f3f3;
}

.payout-mid {
    z-index: 1002;
}

.award-hover:hover {
    transform: scale(1.05);
}

#featured-project .carousel-inner {
    padding: 0px !important;
}