/* ===================================== Default CSS ===================================== */
:root {
    --theme-color-primary: #23A14E;
    --theme-color-secondary: #4AC255;
    --theme-color-thired: #81fb4e;
    --primary-font: "Encode Sans Condensed", sans-serif;
    --secondary-font: "Manrope", sans-serif;
}

html {
    box-sizing: border-box;
    scroll-behavior: smooth;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}

::-webkit-scrollbar-corner {
    display: none;
}

::-webkit-scrollbar-thumb {
    background: #22a638;
    background-clip: content-box;
}

::-webkit-scrollbar-track {
    background-color: #0f141c;
}

.tab-bar::-webkit-scrollbar {
    display: none;
}



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;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1;
    background-color: #fff;
    font-family: "Manrope", sans-serif;
    font-style: normal;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: "";
    content: none;
}

a {
    text-decoration: none;
    transition: all 0.5s ease-in-out;
}

a:hover,
button,
button:hover,
img:hover,
svg:hover {
    transition: all 0.5s ease-in-out;
}

img,
svg,
path {
    vertical-align: middle;
    transition: all 0.5s ease-in-out;
}

img {
    max-width: 100%;
    object-fit: cover;
    height: auto;
}



.Manrope_fontfamily {
    font-family: "Manrope", sans-serif;
}

.EncodeSans_fontfamily {
    font-family: "Encode Sans Condensed", sans-serif;
}
/* .Dreamwood_fontfamily {
    font-family: 'Dreamwood DEMO';
} */




.letter_space_3 {
    letter-spacing: 3px;
}

.sec_padding {
    padding: 100px 0px;
}



.sec_padding_top {
    padding-top: 100px;
}

.sec_padding_bottom {
    padding-bottom: 100px;
}

/* ===================================== Font-size Reset CSS ===================================== */
.heading_text_1 {
    font-size: 64px;
    font-weight: 700;
    line-height: normal;
}

.heading_text_2 {
    font-size: 48px;
    font-weight: 700;
    color: #000;
}

.heading_text_3 {
    font-size: 36px;
    line-height: 48px;
    font-weight: 600;
}

.heading_text_4 {
    font-size: 24px;
    line-height: 32px;
    font-weight: 600;
}

.heading_text_5 {
    font-size: 18px;
    line-height: 30px;
    font-weight: 500;
}

.heading_text_6 {
    font-size: 14px;
    line-height: 25px;
}

p {
    font-size: 18px;
    line-height: 30px;
}

/*========== Color class ==========*/
.color_white {
    color: #fff;
}

.bg_white {
    background-color: #fff;
}

.color_black {
    color: #000;
}

.bg_black {
    background-color: #000;
}

.bg_lightblack {
    background-color: #121212;
}

.color_lightblack {
    color: #121212;
}

.color_darkgreen {
    color: #23A14E;
}

.bg_darkgreen {
    background-color: #23A14E;
}

.color_lightgreen {
    color: #4AC255;
}

.bg_lightgreen {
    background-color: #4AC255;
}

.color_extralightgreen {
    color: #81fb4e;
}

.bg_extralightgreen {
    background-color: #81fb4e;
}

.color_lightgray {
    color: #d6d6d6;
}

.bg_lightgray {
    background-color: #d6d6d6;
}

.color_lightwhite {
    color: #f5f6f7;
}

.bg_lightwhite {
    background-color: #f5f6f7;
}

.bg_transparent {
    background-color: transparent;
}

.overflow_x_hidden {
    overflow-x: hidden;
}

/* ===================================== Custome Animations CSS ===================================== */
[data-animation-in] {
    opacity: 0;
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
    transition: opacity 0.5s ease 0.3s;
    transition: 1s;
}

.reveal {
    position: relative;
    opacity: 0;
    transition: all 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transition: all 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.active.custom_fade_top {
    animation: custom_fade_top 1.5s ease;
}

.active.custom_fade_buttom {
    animation: custom_fade_buttom 1.5s ease;
}

.active.custom_fade_left {
    animation: custom_fade_left 1.5s ease;
}

.active.custom_fade_right {
    animation: custom_fade_right 1.5s ease;
}

.active.custom_zoom_in {
    animation: custom_zoom_in 1.5s ease;
}

.active.custom_zoom {
    animation: custom_zoom 1.5s ease;
}

.active.custom_zoom_in_bottom {
    animation: custom_zoom_in_bottom 1s cubic-bezier(0.6, -0.28, 0.735, 0.045);
}

@keyframes custom_fade_top {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes custom_fade_buttom {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes custom_fade_left {
    from {
        transform: translateX(-100px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes custom_fade_right {
    from {
        transform: translateX(100px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes custom_zoom_in {
    from {
        transform: scale(0.6);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes custom_zoom {
    from {
        transform: scale(0);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes custom_zoom_in_bottom {
    from {
        transform: translateZ(1);
        opacity: 0;
    }

    to {
        transform: translateZ(0);
        opacity: 1;
    }
}

.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    background: var(--theme-color-primary) !important;
}


.fade_up,
.fade_down,
.zoom_in,
.zoom_out {
    opacity: 0;
    transition: all 2s;
}

.fade_up {
    transform: translateY(-100%);
}

.fade_down {
    transform: translateY(100%);
}

.zoom_in {
    transform: scale(0.5);
}

.zoom_out {
    transform: scale(1.5);
}

.fade_right {
    opacity: 0;
    transform: translateX(-100%);
    transition: all 2s;
}

.fade_left {
    opacity: 0;
    transform: translateX(100%);
    transition: all 2s;
}

.flip_left {
    opacity: 0;
    transform: perspective(400px) rotateY(-90deg);
    transition: all 2s;
}

.flip_right {
    opacity: 0;
    transform: perspective(400px) rotateY(90deg);
    transition: all 2s;
}

.flip_up {
    opacity: 0;
    transform: perspective(400px) rotateX(-90deg);
    transition: all 2s;
}

.flip_down {
    opacity: 0;
    transform: perspective(400px) rotateX(90deg);
    transition: all 2s;
}

.show {
    opacity: 1;
    transform: translateY(0) scale(1);
}



.hero_slider_sec,
.rotate_text_box,
.home_about,
.home_cta,
.footer_sec,
.footer_social_area {
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
    width: 100%;
    position: relative;
    z-index: 0;
}

/* ===================== Preloader ===================== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    -webkit-transition: 0.1s ease;
    transition: 0.1s ease;
    overflow: hidden;
    z-index: 99999;
}

.preloader::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    background-color: #4baf47;
    opacity: 0.08;
}

.preloader_area {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.preimg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.preloader_area img.preloader_img {
    animation: preloade_zoom 0.7s linear alternate infinite;
}

@keyframes preloade_zoom {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    100% {
        -webkit-transform: scale(1.15);
        transform: scale(1.15);
    }
}

img.preloader_shap {
    position: absolute;
    bottom: 0;
}

img.preloader_shap:nth-child(3) {
    right: 0;
}

/* ===================== Header ===================== */
.header_main.sticky {
    position: fixed !important;
    z-index: 9999;
    width: 100%;
    top: 0%;
    left: 0;
    animation: fixedheader 600ms ease 0ms alternate;
}

@keyframes fixedheader {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}


.destop_logo span {
    font-size: 24px;
    color: var(--theme-color-primary);
    font-weight: 900;
    letter-spacing: 5px;
}

.destop_logo {
    display: flex;
    align-items: center;
}

.desktop_header ul.navlist {
    display: flex;
    justify-content: flex-end;
}

.desktop_header ul.navlist li.nav-items {
    padding: 25px 0;
}

.desktop_header>ul.navlist li.nav-items a.nav-links {
    padding: 0 15px;
    color: #121212;
    font-size: 16px;
    line-height: 24px;
    font-weight: 900;
    letter-spacing: 3px;
}

.desktop_header>ul.navlist li.nav-items a.nav-links:hover {
    color: var(--theme-color-primary);
}

.header_section {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 999;
}


.businesses-wrap .dropdown-item {
    padding: 15px;
    border-bottom: 1px solid #cfcfcf;
    font-weight: 700;
    color: #121212;
    font-size: 16px;
    line-height: 24px;

}

.businesses-wrap .dropdown-item:hover {
    background: var(--theme-color-primary);
    color: #fff;
}


.businesses-wrap .dropdown-menu {
    border-radius: 0;
    border: none;
    top: 50px !important;
    filter: drop-shadow(0 0 0.10rem);
    background: #fff;
    transform-origin: top center;
    animation: rotateX 400ms ease-in-out forwards;


}

@keyframes rotateX {
    0% {
        transform: rotateX(-90deg)
    }

    70% {
        transform: rotateX(20deg)
    }

    100% {
        transform: rotateX(0deg)
    }
}

.businesses-wrap .dropdown-menu[data-bs-popper] {
    top: 50px;
    left: -25px;
    margin-top: var(--bs-dropdown-spacer);
}


.header_area_destop_content {
    /* background: url(../images/Home/about-bg.jpg); */
    background: #fff;
    background-size: cover;
    background-position: center;
    background-repeat: repeat-x;
    border-radius: 35px;
    margin-top: 20px;
    position: relative;
    z-index: 0;
    padding: 5px 30px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

/* Responsive-menu */

.header_area_destop_content div.mobile_menu_sec {
    display: none;
}

.mobile_navegation_menubar>.navbar {
    justify-content: end;
}

.mobile_navegation_menubar span.navbar-toggler-icon.sidebar_open_icon {
    background-image: none;
    width: 30px;
    height: 40px;
}

.mobile_navegation_menubar>.navbar button.navbar-toggler {
    border: 2px solid #29a54f;
    border-radius: 10px 20px;
    transform: scale(0.7);
}

button:focus:not(:focus-visible) {
    box-shadow: none;
}

.mobile_navegation_menubar>.navbar .offcanvas-header {
    width: 100%;
    padding: 15px 30px;
}

.mobile_navegation_menubar>.navbar .offcanvas-header a {
    background: #fff;
    border-radius: 50%;
    padding: 5px;
    width: 60px;
    height: 60px;
    display: block;
}

.mobile_navegation_menubar span.navbar-toggler-icon.sidebar_open_icon svg {
    width: 40px;
    height: 40px;
    transform: translateX(-5px);
}

.mobile_navegation_menubar>.navbar .offcanvas-header button.btn-close.text-reset.sidebar_close_btn {
    width: 30px;
    height: 30px;
    opacity: 1;
    border: 2px solid #22a638;
    padding: 8px;
    border-radius: 10px 15px;
    transform: scale(0.8);
}

.mobile_navegation_menubar>.navbar .offcanvas-header button.btn-close.text-reset.sidebar_close_btn svg path {
    stroke: #23A14E;
}

.mobile_navegation_menubar .offcanvas {
    overflow: auto;
    background-clip: border-box;
    background-image: url(../images/Home/footer-bg.jpg);
    background-size: cover;
}

.mobile_menu {
    display: flex;
}

.mobile_menu ul.mobile_navlist {
    width: 100%;
    display: flex;
    flex-direction: column;
    border-bottom: 2px solid #939393;
}

.mobile_menu ul.mobile_navlist>li.nav-items {
    padding: 15px 30px;
    border-top: 2px solid #939393;
}

.mobile_menu ul.mobile_navlist>li.nav-items a.nav-links {
    font-size: 18px;
    color: #fff;
    font-weight: 700;
    line-height: 24px;
    display: block;
    text-align: left;
}

.mobile_menu ul.mobile_navlist>li.nav-items a.nav-links:hover {
    color: var(--theme-color-primary);
}

/* ===================== Home-Banner ===================== */
.video_banner {
    width: 100vw;
    height: 100vh;
    position: relative;
    z-index: 0;
}

.video_banner .info {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgb(0 0 0 / 20%);
    padding: 0 10px;

}

.video_banner .info h3 {
    color: #fff;
    font-size: 40px;
    font-weight: 700;
    font-style: italic;
}


.video_banner video {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
}

.hero_slider_sec ul.slick-dots {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 60px;
    z-index: 1;
    margin-top: 30px;
}

.hero_slider_sec ul.slick-dots li button {
    width: 15px;
    height: 15px;
    font-size: 0;
    color: transparent;
    background: #fff;
    padding: 0;
    border: 0;
    cursor: pointer;
    border-radius: 23px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.hero_slider_sec ul.slick-dots li.slick-active button {
    width: 40px;
    background: #000;
}

a.theme_btn_green,
button.theme_btn_green,
a.theme_btn_black {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 10px 30px;
    color: #fff;
    background: var(--theme-color-secondary);
    gap: 10px;
    box-shadow: 6px 6px 0px 0px var(--theme-color-primary);
    margin-bottom: 6px;
    font-size: 18px;
    line-height: 24px;
    font-weight: 600;
}

a.theme_btn_black {
    background: #121212;
    box-shadow: 6px 6px 0px 0px #383838;
}

a.theme_btn_green:hover,
button.theme_btn_green:hover {
    box-shadow: -6px -6px 0px 0px var(--theme-color-primary);
}

a.theme_btn_black:hover {
    box-shadow: -6px -6px 0px 0px #383838;

}

a.theme_btn_green i,
button.theme_btn_green i,
a.theme_btn_black i {
    height: 10px;
    width: 10px;
    display: flex;
    overflow: hidden;
    position: relative;
    font-style: italic;
}

a.theme_btn_green i svg,
button.theme_btn_green i svg,
a.theme_btn_black i svg {
    position: absolute;
    left: 0;
    top: 0;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

a.theme_btn_green i svg:last-child,
button.theme_btn_green i svg:last-child,
a.theme_btn_black i svg:last-child {
    left: -15px;
    top: 15px;
    opacity: 0;
}

.theme_btn_green:hover i svg:first-child,
button.theme_btn_green:hover i svg:first-child,
.theme_btn_black:hover i svg:first-child {
    left: 15px;
    top: -15px;
    opacity: 0;
}

.theme_btn_green:hover i svg:last-child,
button.theme_btn_green:hover i svg:last-child,
.theme_btn_black:hover i svg:last-child {
    left: 0px;
    top: 0px;
    opacity: 1;
}

/* ===================== Home-About ===================== */
.home_about {
    background: url(../images/Home/about-bg-2.jpg);
    background-attachment: fixed;
}

.home_about_area>.row {
    gap: 40px 0;
}

.home_about::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(75 175 71 / 50%);
    background-color: rgb(255 255 255 / 54%);
    background-color: rgb(0 0 0 / 47%);
    z-index: -1;
}

.home_about .homeabout_img_area .homeabout_img .home_video_player {
    border: 2px solid #fff;
    border-radius: 10px;
}

.sec_title span.heading_text_4 {
    font-weight: 900;
    letter-spacing: 3px;
    color: var(--theme-color-primary);
    /* font-family: 'Dreamwood DEMO'; */
}

.about_title.sec_title span.heading_text_4 {
    color: var(--theme-color-thired);
}

.homeabout_img_area>.homeabout_img>img {
    border-radius: 15px;
}

.homeabout_img_area .homeabout_img_2 {
    position: absolute;
    bottom: 155px;
    right: -65px;
    border-radius: 15px;
    border: 5px solid #000;
    overflow: hidden;
    animation: jumpAni 7s linear infinite;
}



@keyframes jumpAni {
    0% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-30px);
    }

    100% {
        transform: translateY(0);
    }
}

hr.custome_hr {
    margin: 30px 0;
    border: 0;
    width: 100%;
    height: 2px;
    background: #fff;
}

.homeabout_box {
    display: grid;
    grid-template-columns: max-content 1fr;
    gap: 30px;
    background: rgb(248 247 240 / 100%);
    border-radius: 30px 15px;
    padding: 20px 20px 20px 0;
    margin-left: 30px;
    position: relative;
    z-index: 0;
}

.homeabout_box .homeabout_icon {
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    border-radius: 5px;
    background: #23a14e;
    margin-left: -30px;
    margin-top: 15px;
    transition: 0.4s;
}

.homeabout_box:hover .homeabout_icon {
    transform: rotate(360deg);
    border-radius: 30px;
}

.parallax_img_area {
    background-image: url(../images/beautiful-green-park.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    width: 100%;
    height: 400px;
    position: relative;
}

.parallax_img_area.parallax_img_area_1 {
    background-image: url(../images/green-holic.jpg);
    background-position: center;
}

.home_about .home_about_points .homeabout_box .homeabout_detail .heading_text_4 {
    font-size: 24px;
    text-transform: capitalize;
    margin-bottom: 5px;
}

.home_about .home_about_points .homeabout_box .homeabout_detail p {
    font-size: 14px;
    line-height: 22px;
}

/* ===================== Home-Service ===================== */
.home_service_slider_box {
    padding: 30px;
    text-align: center;
    position: relative;
    z-index: 0;
    overflow: hidden;
}

.home_service_icon img {
    margin: 0 auto;
}

.home_service_slider_box>.overlay_img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.home_service_slider_box>.overlay_img>img {
    width: 100%;
    height: 100%;
    opacity: 0.30;
}

.home_service_slider_box>.overlay_img::after {
    content: '';
    position: absolute;
    background: linear-gradient(90deg, #4baf47 3.68%, rgba(75, 175, 71, 0.7) 42.03%, rgba(75, 175, 71, 0.41) 80.38%, rgba(75, 175, 71, 0) 101.86%);
    top: -70px;
    left: -50%;
    right: 0;
    bottom: 0;
    z-index: 0;
    width: 190%;
    height: 200%;
    border-radius: 50%;
}

.home_service_slider {
    padding-bottom: 100px;
}

.home_service_slider .slick-custom-arrow {
    position: absolute;
    bottom: 0;
    left: 10%;
    right: 65px;
    margin: 0 auto;
    width: max-content;
    display: inline-flex;
    justify-content: center;
    cursor: pointer;
}

.home_service_slider>.slick-custom-arrow.slick-custom-arrow-left.slick-arrow {
    z-index: 1;
    left: 0;
}

.home_service_slider .slick-custom-arrow circle {
    fill: #121212;
}

.home_service_slider .slick-custom-arrow g path {
    stroke: #23a14e;
}

.home_services {
    background: url(../images/13.png);
    background-size: 49%;
    background-repeat: repeat-x;
    background-position: bottom center;
    position: relative;
    z-index: 0;
    padding: 50px 0 100px;
}

.home_service_slider_area {
    margin-top: 150px;
}

.home_service_slider_area .row div {
    margin: auto;
    max-width: max-content;
}

.home_service_box {
    position: relative;
    width: 280px;
    height: 280px;
    padding: 40px;
    text-align: center;
    margin: 0 auto;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
}

.home_service_content>h3 {
    justify-self: center;
    font-size: 20px;
}

.home_service_box::before {
    content: '';
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-color: #6ac610;
    border-radius: 50% 0 50% 50%;
    background: -moz-linear-gradient(right top, #51980b, #6ac610);
    background: -o-linear-gradient(right top, #51980b, #6ac610);
    background: -ms-linear-gradient(right top, #51980b, #6ac610);
    background: -webkit-linear-gradient(right top, #51980b, #6ac610);
    transition: all 500ms ease;
    transform: rotate(-45deg);
}

#services .item .home_service_box {
    margin-top: 100px;
}

.home_banner_sec .owl-theme .owl-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
}

.home-service-wrap .home_service_details {
    margin-bottom: 25px;
}

.home-service-wrap .home_service_details .info p {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}



.home-service-wrap .owl-carousel .owl-nav button.owl-next, .home-service-wrap .owl-carousel .owl-nav button.owl-prev {
    position: absolute;
    right: -50px;
    top: 40%;
    transform: translateY(-50%);
    background: var(--theme-color-primary);
    color: #fff;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-service-wrap .owl-carousel .owl-nav button.owl-next span, .home-service-wrap .owl-carousel .owl-nav button.owl-prev span {
    font-size: 35px;
    margin-top: -4px;
}


.home-service-wrap .owl-carousel .owl-nav button.owl-prev {
    left: -50px;
}

.home-service-wrap .owl-dots {
    display: none;
}


/* ===================== Home-CTA ===================== */
.home_cta {
    /* background: url(../images/Home/cta_bg.jpg); */
    padding: 80px 0;
    z-index: 1;
    background-attachment: fixed;
}

.home_ctavideo {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: max-content;
    z-index: -1;
    filter: brightness(0.6);
}

.home_cta_area {
    z-index: 3;
}

/* ===================== Home-Blogs ===================== */
.blog_content {
    padding: 30px 20px;
    background: #f5f6f7;
}

.blog_content>p {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.home_blog_content_area>.row {
    gap: 40px 0;
}

.blog_img {
    position: relative;
    overflow: hidden;
}

.blog_img img {
    position: relative;
    -webkit-transition: all 0.9s ease;
    transition: all 0.9s ease;
    background-size: cover;
}

.blog_img img:nth-child(1) {
    -webkit-transform: translatex(50%) scalex(2);
    transform: translatex(50%) scalex(2);
    opacity: 0;
    -webkit-filter: blur(10px);
    filter: blur(10px);
    position: absolute;
    top: 0;
    left: 0;
}

.blog_box:hover .blog_img img:nth-child(1),
.blog_box_vertical:hover .blog_img img:nth-child(1) {
    -webkit-transform: translatex(0) scalex(1);
    transform: translatex(0) scalex(1);
    opacity: 1;
    -webkit-filter: blur(0);
    filter: blur(0);
}

.blog_box:hover .blog_img img:nth-child(2),
.blog_box_vertical:hover .blog_img img:nth-child(2) {
    -webkit-transform: translatex(-50%) scalex(2);
    transform: translatex(-50%) scalex(2);
    opacity: 0;
    -webkit-filter: blur(10px);
    filter: blur(10px);
}

a.blog_content_heading {
    font-size: 30px;
    color: #121212;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(to right, #23a14e, #23a14e 50%, #121212 50%);
    background-size: 200% 100%;
    background-position: 100%;
}

a.blog_content_heading:hover {
    transition: all 0.5s cubic-bezier(0, 0, 0.23, 1);
    background-position: 0%;
}

.blog_date_area {
    display: flex;
    gap: 15px;
    align-items: center;
    padding: 5px 0 20px;
}

p.blogline {
    width: 40px;
    height: 7px;
    background: #4ac255;
    border-radius: 15px;
}

p.blog_date {
    color: #666;
}

.blog_box_vertical_area {
    display: flex;
    gap: 25px;
    flex-direction: column;
}

.blog_box_vertical {
    display: grid;
    grid-template-columns: max-content 1fr;
}

.blog_box_vertical a.blog_content_heading {
    font-size: 18px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    width: 250px;
}

.blog_box_vertical .blog_content {
    padding: 5px 20px;
    background: #3333;
}

/* ===================== Home-Contact ===================== */
form.row.contact_form_area {
    margin-top: 30px;
    gap: 20px;
}

form.row.contact_form_area input,
form.row.contact_form_area textarea {
    font-size: 18px;
    line-height: 24px;
    padding: 14px 18px;
    font-weight: 500;
    color: #2ca950;
}

form.row.contact_form_area textarea {
    height: 115px;
}

form.row.contact_form_area input:focus,
form.row.contact_form_area textarea:focus {
    border-color: #4ac255;
    border-style: dashed;
}

form.row.contact_form_area input:focus-visible,
form.row.contact_form_area textarea:focus-visible {
    outline: none;
}

.contact_area>.row {
    gap: 40px 0;
}

/* ===================== About-Page ===================== */
.common_banner_bg {
    background: url(../images/common_banner_video.gif);
    background-size: cover;
    background-position: center;
    padding: 250px 0 150px;
    width: 100%;
    position: relative;
    z-index: 0;
    color: #fff;
}

.contact_banner_bg {
    background: url(../images/contact_banner.jpg);
    background-size: cover;
    background-position: center;
}

.about_banner_bg {
    background: url(../images/about_banner.png);
    background-size: cover;
    background-position: center;
}

.sustainability_banner_bg {
    background: url(../images/sustainability_banner.jpg);
    background-size: cover;
    background-position: center;
}

.investors_banner_bg {
    background: url(../images/investors_banner.jpg);
    background-size: cover;
    background-position: center;
}

.blog_banner_bg {
    background: url(../images/blog_banner.webp);
    background-size: cover;
    background-position: center;
}

.carbon_banner_bg {
    background: url(../images/carbon_banner.webp);
    background-size: cover;
    background-position: center;
}

.cbg_banner_bg {
    background: url(../images/cbg_banner.jpg);
    background-size: cover;
    background-position: center;
}

.saf_banner_bg {
    background: url(../images/saf_banner.png);
    background-size: cover;
    background-position: top center;
}

.green_credit_banner_bg {
    background: url(../images/green_credit_banner.jpg);
    background-size: cover;
    background-position: center;
}

.nature_based_banner_bg {
    background: url(../images/nature_based_banner.jpg);
    background-size: cover;
    background-position: center;
}

.esg_banner_bg {
    background: url(../images/esg_banner.webp);
    background-size: cover;
    background-position: center;
}

.carbon_footprint_banner_bg {
    background: url(../images/carbon_footprint_banner.webp);
    background-size: cover;
    background-position: center;
}

.mangrove_banner_bg {
    background: url(../images/mangrove_banner.jpeg);
    background-size: cover;
    background-position: center;
}

.purchase_carbon_banner_bg {
    background: url(../images/purchase_carbon_banner.jpg);
    background-size: cover;
    background-position: center;
}

.carbon_reduction_banner_bg {
    background: url(../images/carbon_reduction_banner.jpg);
    background-size: cover;
    background-position: center;
}

.flowchart_banner_bg {
    background: url(../images/flowchart_banner.png);
    background-size: cover;
    background-position: center;
}

.carbon_solutions_banner_bg {
    background: url(../images/carbon_solutions_banner.jpeg);
    background-size: cover;
    background-position: center;
}

.common_banner_bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(0 0 0 / 35%);
    z-index: -1;
}

.common_banner_content span a {
    color: var(--theme-color-thired);
}

.common_banner_content .heading_text_1 {
    font-size: 50px;
}

.aboutus_sec {
    background: url(../images/About/about_us_bg.svg);
    background-size: cover;
    background-position: 60% center;
    background-color: #F8F7F0;
    padding: 100px 0 50px;
    width: 100%;
    position: relative;
    z-index: 0;
}

.pagesec_title span.heading_text_4 {
    font-size: 20px;
    display: block;
    ;
}

.pagesec_title h2.heading_text_3 {
    font-size: 30px;
    line-height: 40px;
}

.about_whatdo {
    padding: 30px 60px 30px 20px;
    background: linear-gradient(45deg, #d1ebbc, #a5db8f);
    border-radius: 0px 150px 150px 0px;
    border-left: 10px solid #42b109;
    overflow: hidden;
}

.about_whatdo span {
    position: absolute;
    top: 10%;
    right: 15%;
    filter: brightness(0.5);
    animation: preloade_zoom 0.7s linear alternate infinite;
}

.whychoose_box_02 {
    border-radius: 150px 0 0 150px;
    border: 0;
    padding: 30px 20px 30px 60px;
    border-right: 10px solid #42b109;
}

.whychoose_box p {
    letter-spacing: -1px;
}

.whychoose_box_02 span {
    left: 15%;
    right: unset;
}

.about_whychoose_shap img {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.about_whychoose_shap img:nth-child(2) {
    top: unset;
    left: unset;
    right: 0;
    bottom: 0;
}

.whychoose_about_area>.row {
    gap: 40px 0;
}

/* ===================== Services-Page ===================== */
.whychoose_services {
    background: #F8F7F0;
}

.our_services_upper_shap {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.services_whatdo {
    padding: 15px 30px 15px 15px;
}

.our_service_points {
    display: flex;
    gap: 30px 0;
    margin-top: 40px;
    flex-wrap: wrap;
    justify-content: space-between;
}

.our_service_points .services_whatdo {
    width: 48%;
    border-radius: 0;
    padding: 30px;
    text-align: center;
    transform: skew(-21deg);
}

.our_service_points .services_whatdo>* {
    transform: skew(21deg);
}

.our_service_points .services_whatdo:nth-child(3) {
    width: 60%;
    margin: 0 auto;
}

.whychoose_services_box_area {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.whychoose_services_box {
    padding: 25px 15px;
    background: linear-gradient(45deg, #d1ebbc, #a5db8f);
    border: 0;
    border-left: 10px solid #29a555;
    border-right: 10px solid #29a555;
    border-radius: 20px;
    height: 100%;
}

.whychoose_services_img {
    animation: preloade_zoom 2s ease-in-out alternate infinite;
}

/* ===================== Team-Page ===================== */
.our_team_box {
    padding: 20px;
    border-radius: 10px;
    transition: all .45s;
    display: grid;
    grid-template-columns: 235px 1fr;
    gap: 20px;
    background: url(../images/Team/pixelcut-export.jpeg), linear-gradient(45deg, #49ae44, #8cd787);
    background-size: cover;
    filter: drop-shadow(2px 4px 6px black);
}

.team_details_img img {
    border-radius: 30px;
}

.our_team_details_info .custome_hr {
    background-color: #0f141c;
}

.team_details_area>.row {
    gap: 60px;
}

/* ===================== footer ===================== */
.footer_sec {
    background: url(../images/Home/footer-bg.jpg);
    background-position: top center !important;
}

.footer_social_area {
    background: url(../images/Home/footer-social-bg.jpg);
    padding: 30px 0;
    border-radius: 15px 30px;
}

.footer_social_part {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

.footer_social_part ul {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer_social_part ul li a {
    width: 40px;
    height: 40px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border: 3px dotted #fff;
    color: #fff;
}

.footer_social_part ul li a i {
    font-size: 20px;
    line-height: 30px;
}

a.footer_logo {
    display: inline-flex;
    width: 80px;
    height: 80px;
    justify-content: center;
    align-items: center;
    background: #fff;
    border-radius: 50%;
}

.links_area {
    display: flex;
}

.footer_common_content ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: -webkit-fill-available;
}

.footer_common_content ul li a {
    font-size: 20px;
    line-height: 24px;
    font-weight: 600;
    color: #fff;
}

.footer_common_content.footer_gettouch ul li a {
    display: flex;
    gap: 15px;
    align-items: center;
}

.footer_common_content.footer_gettouch ul li a span i {
    width: 40px;
    height: 40px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    border-radius: 50%;
}

.footer_common_content.footer_gettouch ul li a span:nth-child(1) i {
    color: #4ac255;
}

p.gettouch_info {
    width: fit-content;
    word-break: break-all;
}

.footer_bottom {
    padding: 30px 0;
    margin-top: 60px;
    border-top: 1px solid;
}

.footer_bottom p {
    word-spacing: 3px;
}

.footer_bottom p a {
    color: #fff;
}

.footer_common_content ul li a:hover,
.footer_bottom p a:hover {
    color: var(--theme-color-secondary);
}

.footer_upper_content>.row {
    gap: 40px 0;
}

/* ===================== Scorll-Top ===================== */
.scroll_top {
    width: 45px;
    height: 45px;
    background-color: #4ac255;
    color: #fff;
    border-radius: 50%;
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.4s ease;
    z-index: 500;
    box-shadow: 0px 1px 5px 1px rgba(22, 22, 22, 0.2);
    cursor: pointer;
    transform: scale(0);
}

.scroll_top.showBtn {
    transform: scale(1);
}

.scroll_top svg {
    position: relative;
    z-index: 600;
    color: #23a14e;
}

.scroll_top::after {
    content: "";
    width: 100%;
    height: 100%;
    background-color: #fff;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 0;
    -webkit-transform: scale(0.6);
    transform: scale(0.6);
    -webkit-animation: scale_full 3s cubic-bezier(0.28, 1.84, 0.55, -0.11) infinite;
    animation: scale_full 3s cubic-bezier(0.28, 1.84, 0.55, -0.11) infinite;
}

@keyframes scale_full {
    50% {
        -webkit-transform: scale(0.95);
        transform: scale(0.95);
    }
}


/* ivestor-title Start */

.ivestor-title-wrapper, .Investment-opportunities-wrapper, .our-mission-wrapper, .social-initiatives-wrapper, .compliance-wrapper, .contact-wrap, .pureana-sustainable-wrapper, .who-we-are-wrap, .what-we-do-wrap, .our-commitment-wrap, .major-announcements-wrap, .future-wrap, .our-team-wrap, .environmental-wrap, .cbg-production-wrap, .article-wrap, .benefits-wrap, .benefit-carbon-solution-wrap, .main_blog_wrap, .main_blog_details_wrap, .green-credit-wrap, .flowchart-wrapper {
    padding: 50px 0;
    position: relative;
}

.ivestor-title-wrapper::after, .Investment-opportunities-wrapper::after, .our-mission-wrapper::after, .social-initiatives-wrapper::after, .compliance-wrapper::after, .contact-wrap::after, .pureana-sustainable-wrapper::after, .who-we-are-wrap::after, .our-commitment-wrap::after, .major-announcements-wrap::after, .participation-wrap::after, .key-takeaways-wrap::after, .future-wrap::after, .our-team-wrap::after, .environmental-wrap::after, .cbg-production-wrap::after, .article-wrap::after, .focus-sustainable-wrap::after, .benefits-wrap::after, .benefit-carbon-solution-wrap::after, .main_blog_wrap::after, .main_blog_details_wrap::after, .green-credit-wrap::after, .flowchart-wrapper::after {
    content: "";
    background-image: url(../images/about-bg.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
    z-index: -1;
}

.ivestor-title-wrapper .ivestor-title-thumb img {
    border-radius: 10px;
    border: 3px solid #fff;
}

.ivestor-title .ivestor-title-text p {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    line-height: 40px;
}

/* ivestor-title End */

/* our-strategic start  */
.our-strategic-wrapper {
    background-image: url(../images/our-strategic-img.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 100px;
    background-attachment: fixed;
    position: relative;
    padding: 50px 0;
}

.our-strategic-wrapper::after {
    content: "";
    background: #000;
    opacity: 0.6;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
    z-index: 1;
}

.our-strategic-wrapper .title {
    position: relative;
    z-index: 2;
}

.our-strategic-wrapper .title h3 {
    font-size: 26px;
    font-weight: 900;
    letter-spacing: 3px;
    color: #fff;
    text-align: center;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.our-strategic-wrapper .info {
    position: relative;
    z-index: 2;
    background: #fff;
    padding: 10px;
    border-radius: 10px;
    width: 100%;
}

.our-strategic-wrapper .info .info-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    place-items: center;
}

.our-strategic-wrapper .info .info-wrap>img {
    height: 500px;
}

.our-strategic-wrapper .info .info-wrap .details {
    padding: 0 20px;
}

.our-strategic-wrapper .info .info-wrap .details h4 {
    color: var(--theme-color-primary);
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.our-strategic-wrapper .info .info-wrap .details ul li {
    display: flex;
    margin-bottom: 15px;
}

.our-strategic-wrapper .info .info-wrap .details ul li h6 {
    color: var(--theme-color-primary);
    font-size: 17px;
    font-weight: 800;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.our-strategic-wrapper .info .info-wrap .details ul li p {
    color: #909090;
}

.our-strategic-wrap {
    display: flex;
    align-items: center;
    column-gap: 50px;
    position: relative;
    z-index: 3;
}

.our-strategic-wrap .img-wrap li a img {
    width: 180px;
    height: 100px;
    border: 2px solid #fff;
    margin-bottom: 20px;
    border-radius: 5px;
}

.our-strategic-wrap .img-wrap li a:hover img {
    border-color: var(--theme-color-primary);
    transform: scale(1.4);
}



.our-strategic-wrapper .info .info-wrap .details ul li .our-strategic-thumb {
    width: 50px;
    margin-right: 15px;
}

/* our-strategic End  */

/* Investment-opportunities start */


.Investment-opportunities-wrapper .title h3 {
    text-align: center;
}

.Investment-opportunities-wrapper .title p {
    text-align: center;
    font-size: 18px;
    font-weight: 600;
}

.Investment-opportunities-wrapper ul {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.Investment-opportunities-wrapper ul li {
    background: #fff;
    padding: 30px;
}

.Investment-opportunities-wrapper ul li p {
    color: #909090;
    font-size: 18px;
}

.Investment-opportunities-wrapper ul li i {
    color: var(--theme-color-primary);
    font-size: 50px;
    margin-bottom: 20px;
}

/* Investment-opportunities End */

/* greener_future start */

.greener_future_wrapper {
    background: var(--theme-color-primary);
    padding: 50px 0;
    background-image: url(../images/greener_future-img.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
}

.greener_future_wrapper::after {
    content: "";
    background: #000;
    opacity: 0.6;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
    z-index: 1;
}

.greener_future_wrapper .title {
    position: relative;
    z-index: 2;
}

.greener_future_wrapper h3 {
    color: #ffffff;
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
}

.greener_future_wrapper p {
    color: #ffffff;
    font-size: 20px;
    letter-spacing: 2px;
    text-align: center;
}

/* greener_future End */

/* our-mission start */

.our-mission-wrapper .info h3, .ivestor-title-wrapper .title h3, .social-initiatives-wrapper .title h3, .social-initiatives-wrapper .title h5, .environmental-Initiatives-wrapper .title h3, .environmental-Initiatives-wrapper .title h5, .technology-driven-projects-wrapper .left h3, .compliance-wrapper .title h3, .compliance-wrapper .title h5, .contact-wrap .title h3, .environmental-wrap .title h3, .cbg-production-wrap .title h3, .cbg-production-wrap .title span, .benefits-wrap .title h3, .carbon-wrap .title h3, .reduction-wrap .title h3, .reduction-wrap .title h5, .benefit-carbon-solution-wrap .title h3, .Investment-opportunities-wrapper .title h3, .Investment-opportunities-wrapper .title h3, .pureana-sustainable-wrapper .title-wrap h3, .green-credit-wrap .title h3, .flowchart-wrapper .title h3,.invester_relation_wrap .title-wrap h3,.invester_relation_wrap .title-wrap h5 {
    font-size: 26px;
    font-weight: 900;
    letter-spacing: 3px;
    color: var(--theme-color-primary);
    margin-bottom: 10px;
    text-transform: uppercase;
    /* font-family: 'Dreamwood DEMO'; */
   
}

.our-mission-wrapper .info p {
    font-size: 18px;
    font-weight: 600;
}

.our-mission-wrapper .info ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 20px;
    margin-top: 25px;
}

.our-mission-wrapper .info {

    margin-top: 50px;
}

.our-mission-wrapper .info ul li {
    background: #fff;
    padding: 10px;
    display: flex;
}

.our-mission-wrapper .info ul li i {
    background: var(--theme-color-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 15px;
    margin-right: 15px;
    border-radius: 50%;
}

.our-mission-wrapper .info ul li h5 {
    font-size: 18px;
    font-weight: 600;
}

.our-mission-wrapper .thumb img {
    border-radius: 10px;
    border: 3px solid #fff;
}


/* our-mission End */

.ivestor-title-wrapper .title h3 {
    text-align: center;
    margin-bottom: 40px;
}

.social-initiatives-wrapper .title h3, .social-initiatives-wrapper .title h5 {
    text-align: center;
}

.social-initiatives-wrapper .title h5 {
    font-size: 18px;
}

.social-initiatives-wrapper .title p {
    text-align: center;
    font-size: 18px;
    line-height: 32px;
    font-weight: 600;
}

.social-initiatives-wrapper ul {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 20px;
    padding: 30px 0;
    border-bottom: 1px solid var(--theme-color-primary);
}

.social-initiatives-wrapper ul li img {
    height: 200px;
    width: 100%;

}

.social-initiatives-wrapper ul li h3 {
    color: var(--theme-color-primary);
    font-size: 17px;
    font-weight: 800;
    margin-bottom: 5px;
    margin-top: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.social-initiatives-wrapper ul li p {
    color: #909090;
    font-size: 18px;
    line-height: 26px;
}

.social-initiatives-wrapper .social-equity {
    display: inline-flex;
    padding-top: 30px;
    width: 100%;
}

.social-initiatives-wrapper .social-equity .social-equity-img {
    width: 100px;
    height: auto;
    margin-right: 25px;
}

.social-initiatives-wrapper .social-equity h3 {
    color: var(--theme-color-primary);
    font-size: 17px;
    font-weight: 800;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.social-initiatives-wrapper .social-equity p {
    color: #909090;
    font-size: 18px;
    line-height: 26px;
}


.environmental-Initiatives-wrapper {
    position: relative;
}

.environmental-Initiatives-wrapper .title {
    background-image: url(../images/environmental-img.jpg);
    height: 500px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 100px;
    background-attachment: fixed;
}

.environmental-Initiatives-wrapper .title::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100%;
    height: 500px;
    background: rgb(0 0 0 / 35%);
}


.environmental-Initiatives-wrapper .title h3, .environmental-Initiatives-wrapper .title h5,.environmental-Initiatives-wrapper .title .title-icon {
    color: #fff;
    text-align: center;
    position: relative;
    z-index: 1;
}

.environmental-Initiatives-wrapper .title h5,.invester_relation_wrap .title-wrap h5{
    font-size: 18px;
}

.environmental-Initiatives-wrapper .title p {
    color: #fff;
    font-size: 18px;
    line-height: 26px;
    font-weight: 600;
    text-align: center;
    position: relative;
    z-index: 1;
}

.environmental-Initiatives-wrapper .nature-based-solution {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 20px;
    margin-top: -200px;
    border-bottom: 1px solid var(--theme-color-primary);
    padding-bottom: 30px;
    position: relative;
    z-index: 1;
}

.environmental-Initiatives-wrapper .nature-based-solution li img {
    height: 250px;
    width: 100%;
}

.environmental-Initiatives-wrapper .nature-based-solution li h3 {
    color: var(--theme-color-primary);
    font-size: 17px;
    font-weight: 800;
    margin-bottom: 5px;
    margin-top: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.environmental-Initiatives-wrapper .nature-based-solution li p {
    color: #909090;
    font-size: 18px;
    line-height: 26px;
}

.environmental-Initiatives-wrapper .technology-driven-projects-wrapper {
    padding: 30px 0;
}

.technology-driven-projects-wrapper ul li {
    display: flex;
    margin-bottom: 25px;
}

.technology-driven-projects-wrapper ul li h6 {
    color: var(--theme-color-primary);
    font-size: 17px;
    font-weight: 800;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.technology-driven-projects-wrapper ul li p {
    color: #909090;
}

.technology-driven-projects-wrapper ul li .technology-driven-thumb {
    width: 50px;
    margin-right: 25px;
}

.technology-driven-projects-wrapper .left p {
    color: #909090;
    font-size: 18px;
    line-height: 26px;
}

.technology-driven-projects-wrapper .left .line {
    border: 1px solid #5dc269;
    width: 80px;
    display: block;
    margin-top: 20px;
}

.compliance-wrapper .title h5 {
    font-size: 18px;
}

.compliance-wrapper .title p {
    font-size: 18px;
    font-weight: 600;
    line-height: 26px;
    text-align: center;
}

.compliance-wrapper ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 30px 0;
    border-bottom: 1px solid var(--theme-color-primary);
}

.compliance-wrapper ul li {
    background: #fff;
    padding: 30px;
}

.compliance-wrapper ul li i {
    color: var(--theme-color-primary);
    font-size: 50px;
    margin-bottom: 20px;
}

.compliance-wrapper ul li h5 {
    color: var(--theme-color-primary);
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.compliance-wrapper ul li {
    color: #909090;
    font-size: 18px;
}

.compliance-wrapper .accountability-wrapper {
    display: inline-flex;
    padding-top: 30px;
    width: 100%;
}

.compliance-wrapper .accountability-wrapper .accountability-img {
    width: 100px;
    height: auto;
    margin-right: 25px;
}

.compliance-wrapper .accountability-wrapper h3 {
    color: var(--theme-color-primary);
    font-size: 17px;
    font-weight: 800;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.compliance-wrapper .accountability-wrapper p {
    color: #909090;
    font-size: 18px;
    line-height: 26px;
}

.contact-wrap .contact_iframe {
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.contact-wrap .contact_iframe img {
    filter: invert(15%) sepia(100%) saturate(360%) hue-rotate(88deg) brightness(85%) contrast(100%);
}

.contact-wrap .title p {
    text-align: center;
    font-size: 20px;
    line-height: 32px;
    font-weight: 600;
}

.contact-wrap .title p {
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 50px;
    text-align: center;
}

.contact-wrap .contact-get-in-tourch ul li a {
    display: inline-flex;
    align-items: center;
}

.contact-wrap .contact-get-in-tourch ul li {
    margin-bottom: 30px;
}

.contact-wrap .contact-get-in-tourch h3 {
    font-weight: 900;
    letter-spacing: 3px;
    color: var(--theme-color-primary);
    font-size: 25px;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.contact-wrap .contact-get-in-tourch ul li a span i {
    width: 50px;
    height: 50px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: var(--theme-color-primary);
    border-radius: 50%;
    color: rgb(255, 255, 255);
    font-size: 25px;
    margin-right: 15px;
}

.contact-wrap .contact-get-in-tourch ul li a p {
    font-size: 22px;
    color: #000;
    font-weight: 600;
    word-break: break-word;
}

.contact-wrap .contact-get-in-tourch ul li a p>span {
    color: var(--theme-color-primary);
}

.contact-wrap .contact_content_area, .contact-get-in-tourch {
    padding: 20px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.contact-wrap .contact-get-in-tourch {
    height: 100%;
}

.contact-wrap .contact-get-in-tourch img {
    height: 250px;
    width: 100%;
    margin-bottom: 25px;
    object-fit: cover;
    /* object-position: top; */
}


.pureana-sustainable-wrapper .title-wrap {
    display: inline-flex;
    align-items: center;
    column-gap: 20px;
    justify-content: space-between;
}

.pureana-sustainable-wrapper .title-wrap p {
    font-size: 18px;
    line-height: 32px;
    font-weight: 600;
}

.pureana-sustainable-wrapper .title-wrap .about_btn {
    min-width: 180px;
}

.pureana-sustainable-wrapper ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 50px;
}

.pureana-sustainable-wrapper ul li {
    background: #ffff;
    padding: 30px;
    border-radius: 60px 15px;
    position: relative;
}

.pureana-sustainable-wrapper ul li .thumb {
    position: absolute;
    right: 10px;
    top: 12px;
}

.pureana-sustainable-wrapper ul li h3 {
    font-size: 22px;
    font-weight: 600;
    margin: 20px 0 22px;
    position: relative;
}

.pureana-sustainable-wrapper ul li p {
    line-height: 26px;
    color: #868681;
    font-weight: 400;
    font-size: 15px;
}

.pureana-sustainable-wrapper ul li h3:before {
    position: absolute;
    content: "";
    width: 34px;
    height: 2px;
    left: 0;
    bottom: -13px;
    background: var(--theme-color-primary);
}

.who-we-are-wrap .title span, .what-we-do-wrap .title span, .our-commitment-wrap .title span {
    font-weight: 900;
    letter-spacing: 3px;
    color: var(--theme-color-primary);
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.who-we-are-wrap .title h3, .what-we-do-wrap .title h3, .our-commitment-wrap .title h3 {
    font-size: 22px;
    line-height: 32px;
    font-weight: 600;
    margin: 10px 0;
}

.who-we-are-wrap ul {
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 10px;
}

.who-we-are-wrap ul li {
    display: flex;
}

.who-we-are-wrap ul li h3 {
    font-size: 20px;
    line-height: 32px;
    font-weight: 600;
    margin: 5px 0;
}

.who-we-are-wrap ul li P {
    line-height: 26px;
    color: #868681;
    font-weight: 400;
    font-size: 16px;
}

.who-we-are-wrap ul li i {
    width: 50px;
    height: 50px;
    padding: 15px;
    background: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--theme-color-primary);
    font-size: 22px;
    margin-right: 10px;
}

.who-we-are-wrap .thumb {
    position: relative;
    left: 43px;
    z-index: 1;
}

.who-we-are-wrap .thumb .shape-1 {
    position: absolute;
    top: 28px;
    left: 22px;
    animation: dance 4s linear infinite;
}

.who-we-are-wrap .thumb .shape-2 {
    position: absolute;
    right: 0;
    bottom: 20px;
    z-index: -1;
    animation: dance 4s linear infinite;
}


@keyframes dance {
    0% {
        -webkit-transform: translateY(-50px);
        transform: translateY(-50px);
    }

    50% {
        -webkit-transform: translateY(-15px);
        transform: translateY(-15px);
    }

    100% {
        -webkit-transform: translateY(-50px);
        transform: translateY(-50px);
    }
}

@keyframes dance1 {
    0% {
        transform: translateX(-50px);
    }

    50% {
        -webkit-transform: translateY(-15px);
        transform: translateX(-15px);
    }

    100% {
        -webkit-transform: translateY(-50px);
        transform: translateX(-50px);
    }
}

.accordion-item {
    margin-bottom: 20px;
}

.accordion-button {
    border: 1px solid #cccccc9e;
    font-weight: 800;
    padding-left: 70px;
}

.accordion-button span {
    position: absolute;
    left: 20px;
}

.accordion-button:not(.collapsed) {
    color: #fff;
    background-color: var(--theme-color-primary);
    box-shadow: none;
}

.accordion-button:focus {
    border-color: var(--theme-color-primary);
}

.accordion-button:not(.collapsed) span img {
    filter: brightness(0) invert(1);
}

.accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

.accordion-body {
    line-height: 26px;
    color: #868681;
    font-weight: 400;
    font-size: 16px;
}

.accordion-button::after {
    transform: rotate(269deg);
}

.what-we-do-wrap .title {
    position: relative;
}

.what-we-do-wrap .title .shape-2 {
    position: absolute;
    top: -103px;
    right: 13px;
    animation: dance1 4s linear infinite;
}

.what-we-do-wrap .title .shape-1 {
    position: absolute;
    left: 240px;
    bottom: -43px;
    animation: dance1 4s linear infinite;
}

.what-we-do-wrap .accordion-item {
    border: var(--bs-accordion-border-width) solid var(--bs-accordion-border-color);
}


.our-commitment-wrap {
    padding-bottom: 100px;
}

.our-commitment-wrap .thumb img {
    width: 100%;
    border: 3px solid #fff;
    border-radius: 10px;
}


.our-commitment-wrap ul {
    margin-top: 25px;
}

.our-commitment-wrap ul li, .article-wrap .info ul li {
    display: inline-flex;
    align-items: baseline;
    margin-bottom: 20px;
}

.our-commitment-wrap ul li i, .article-wrap .info ul li i {
    font-size: 19px;
    padding: 5px;
    text-align: center;
    border-radius: 50%;
    color: #fff;
    background: var(--theme-color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.our-commitment-wrap ul li h3, .article-wrap .info ul li h3 {
    font-size: 20px;
    line-height: 32px;
    font-weight: 600;
    margin: 5px 0;
}

.our-commitment-wrap ul li p, .article-wrap .info ul li p {
    line-height: 26px;
    color: #868681;
    font-weight: 400;
    font-size: 16px;
}

.major-announcements-wrap .title h3 {
    font-weight: 900;
    letter-spacing: 3px;
    color: var(--theme-color-primary);
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.major-announcements-wrap .title p {
    font-size: 20px;
    line-height: 32px;
    font-weight: 600;
}

.major-announcements-wrap ul, .sustainable-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 25px;
    margin-top: 20px;
}

.sustainable-wrap {
    row-gap: 50px;
}

.sustainable-wrap li {
    width: calc(33.33% - 50px);

}

.major-announcements-wrap ul li img, .sustainable-wrap li img, #services .item .home_service_details img {
    width: 100%;
    height: 250px;
    border-radius: 10px;
    border: 1px solid var(--theme-color-primary);
}

.major-announcements-wrap .info, .sustainable-wrap .info, #services .item .home_service_details .info {
    background: #fff;
    margin: 0 15px;
    margin-top: -70px;
    position: relative;
    z-index: 1;
    border-radius: 5px;
    padding: 40px 20px 20px 20px;
    border: 1px solid #E3E3E3;
    height: 200px;
}

.sustainable-wrap .info {
    height: 300px !important;
}

.major-announcements-wrap .info h2, .sustainable-wrap .info h2, #services .item .home_service_details .info h2 {
    font-size: 20px;
    line-height: 32px;
    font-weight: 600;
}

.major-announcements-wrap .info p, .sustainable-wrap .info p, #services .item .home_service_details .info p {
    line-height: 21px;
    color: #868681;
    font-weight: 400;
    font-size: 16px;
    margin-top: 4px;
}

.major-announcements-wrap .info .about_btn, .sustainable-wrap .info .about_btn, #services .item .home_service_details .info .about_btn {
    position: absolute;
    left: 50%;
    bottom: -25px;
    transform: translateX(-50%);
    min-width: 180px;
}

.major-announcements-wrap .info>i, .sustainable-wrap .info>i, #services .item .home_service_details .info>i {
    background: var(--theme-color-primary);
    color: #fff;
    padding: 15px;
    font-size: 30px;
    position: absolute;
    top: -30px;
    border: 2px solid #fff;
}

.climate-Pledge-wrap {
    background-image: url(../images/greener_future-img.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    width: 100%;
    position: relative;
    background-attachment: fixed;
    margin-top: 25px;
}

.climate-Pledge-wrap::after {
    content: "";
    background: #000;
    opacity: 0.6;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
    z-index: 1;
}

.climate-Pledge-wrap .title {
    padding: 100px 0 200px;
    position: relative;
    z-index: 2;
}

.climate-Pledge-wrap .title h3 {
    font-weight: 900;
    letter-spacing: 3px;
    color: #fff;
    font-size: 35px;
    line-height: 32px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.climate-Pledge-wrap .title p {
    color: #fff;
    font-size: 24px;
    line-height: 32px;
    font-weight: 600;
}


.participation-wrap {
    margin-top: -150px;
    position: relative;
    padding-bottom: 50px;
}

.participation-wrap ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #fff;
    border-radius: 10px;
    position: relative;
    z-index: 3;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);

}

.participation-wrap ul li .thumb img {
    width: 100%;
    border-radius: 10px 0 0 10px;
}

.participation-wrap ul li .info {
    padding: 20px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.participation-wrap ul li .info h3 {
    font-weight: 900;
    letter-spacing: 3px;
    color: var(--theme-color-primary);
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 10px;
}

.participation-wrap ul li .info p {
    line-height: 25px;
    color: #868681;
    font-weight: 400;
    font-size: 18px;
    margin-top: 4px;
    margin-bottom: 25px;
    text-align: center;
}


.goals_wrap {
    background-image: url(../images/key-takeaways-bg.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    width: 100%;
    position: relative;
    background-attachment: fixed;
}

.saf-projrct-wrap {
    background-image: url(../images/saf-projrct-bg.jpg);
}

.goals_wrap::after {
    content: "";
    background: #000;
    opacity: 0.6;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
    z-index: 1;
}

.goals_wrap .title {
    position: relative;
    z-index: 3;
    padding: 100px 0 200px;
}

.goals_wrap .title h3, .article-wrap .title h3 {
    font-weight: 900;
    letter-spacing: 3px;
    color: #fff;
    font-size: 26px;
    line-height: 32px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.goals_wrap .title p, .article-wrap .title p {
    color: #fff;
    font-size: 18px;
    line-height: 32px;
    font-weight: 600;
    margin-bottom: 40px;
}

.key-takeaways-wrap {
    margin-top: -150px;
    position: relative;
}

#key .item .info .thumb img {
    height: 250px;
    width: 100%;
    border-radius: 10px 10px 0 0;
}

#key .item .info .details {
    background: #fff;
    padding: 25px 5px;
    min-height: 260px;
    border-radius: 0px 0px 10px 10px;
    border: 1px solid #E3E3E3;
}

#key .item .info .details h3 {
    font-weight: 900;
    letter-spacing: 3px;
    color: var(--theme-color-primary);
    font-size: 20px;
    line-height: 32px;
    margin-bottom: 3px;
}

#key .item .info .details p {
    line-height: 25px;
    color: #868681;
    font-weight: 400;
    font-size: 16px;
    margin-top: 4px;
    margin-bottom: 25px;
}

.future-wrap .info h3 {
    font-weight: 900;
    letter-spacing: 3px;
    color: var(--theme-color-primary);
    font-size: 29px;
    line-height: 37px;
    margin-bottom: 11px;
    text-transform: uppercase;
}

.future-wrap img {
    border-radius: 10px;
    border: 3px solid #fff;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.future-wrap .info p {
    font-size: 20px;
    line-height: 32px;
    font-weight: 600;
}

.our-team-wrap .title-wrap {
    display: flex;
    align-items: center;
    text-align: center;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--theme-color-primary);
}

.our-team-wrap .title-wrap h3 {
    font-weight: 900;
    letter-spacing: 3px;
    color: var(--theme-color-primary);
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.our-team-wrap .title-wrap p {
    font-size: 30px;
    line-height: 32px;
    font-weight: 600;
}

.our-team-wrap .title-wrap .about_btn {
    min-width: 180px;
}

#team .item .info {
    background: #FFF;
    border-radius: 15px;
    border: 1px solid #E3E3E3;
    height: 100%;
    min-height: 450px;
}

#team .item .info img {
    height: 150px;
    width: 150px;
    border: 4px solid var(--theme-color-primary);
    border-radius: 50%;
    padding: 2px;
    object-fit: cover;
    margin: 10px;
}

#team .item .info .detail {
    padding: 10px;
    height: 100%;
}

#team .item .info .detail h3 {
    font-size: 18px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 10px;
    margin-right: 4px;
}

#team .item .info .detail h3>span {
    font-size: 16px;
    font-weight: 600;
    color: #757575;
    display: block;
    margin-top: 10px;
}

#team .item .info .detail span {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    display: block;
    margin-bottom: 5px;
    font-style: italic;
    margin-top: -5px;
}

#team .item .info .detail .read-more {
    font-size: 14px;
    line-height: 22px;
    margin: auto;
    display: block;
    max-width: max-content;
    background: transparent;
    border: 0;
    margin-top: 15px;
    color: var(--theme-color-primary);
    font-weight: 800;
}

.content {
    font-size: 14px;
    line-height: 22px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.content.expanded {
    -webkit-line-clamp: unset;
    overflow: visible;
}

#team .item .info .detail ul {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

#team .item .info .detail ul li a {
    width: 50px;
    height: 50px;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #000;
    margin: 0 5px;
}

#team .item .info .detail ul li a:hover {
    background: var(--theme-color-primary);
    color: #fff;
}

.environmental-wrap .title .btn {
    display: flex;
    align-items: center;
    justify-items: center;
    margin: auto;
    max-width: max-content;
    margin-top: 35px;
}

.environmental-wrap .title .btn li a {
    font-size: 20px;
    color: #000000;
    padding: 10px;
    border: 1px solid var(--theme-color-primary);
    font-weight: 600;
}

.environmental-wrap .title .btn li a:hover {
    color: #fff;
    background: var(--theme-color-primary);
}

.cbg-production-wrap .thumb img {
    width: 80%;
    margin: auto;
    display: block;
}

.cbg-production-wrap .title h3, .cbg-production-wrap .title span, .benefits-wrap .title h3 {
    text-align: center;
    font-weight: 900;
}

.cbg-production-wrap .title span {
    font-size: 18px;
}

.cbg-production-wrap ul {
    margin-top: 10px;
}

.focus-wrap {
    background-image: url(../images/focus-bg.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 100px;
    background-attachment: fixed;
    position: relative;
    padding: 50px 0 250px;
}

.focus-wrap::after {
    content: "";
    background: #000;
    opacity: 0.6;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
    z-index: 1;
}

.focus-wrap .title h3, .focus-wrap .info h3, .focus-sustainable-wrap .title h3 {
    font-size: 26px;
    font-weight: 900;
    letter-spacing: 3px;
    color: #fff;
    text-align: center;
    margin-bottom: 40px;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
}
.focus-wrap .title .title-icon,.focus-sustainable-wrap .title .title-icon{
    position: relative;
    z-index: 2;
}

.focus-wrap .info {
    position: relative;
    z-index: 2;
}

.focus-wrap .info h3 {
    font-size: 20px;
    text-align: left;
    margin-bottom: 30px;
}

.focus-wrap .info ul li {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 10px;
}

.focus-wrap .info ul li h4 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
}

.focus-wrap .info ul li h4:before, .focus-sustainable-wrap ul li h3::before {
    position: absolute;
    content: "";
    width: 34px;
    height: 2px;
    left: 0;
    bottom: -13px;
    background: var(--theme-color-primary);
}

.focus-wrap .thumb img {
    width: 80%;
    position: relative;
    z-index: 2;
    margin: auto;
    display: block;
    border-radius: 10px;
    border: 3px solid #fff;
}

.focus-sustainable-wrap ul li h3::before {
    left: 50%;
    transform: translateX(-50%);
}

.focus-wrap .info ul li p {
    line-height: 26px;
    color: #868681;
    font-weight: 400;
    font-size: 16px;
}

.focus-sustainable-wrap {
    position: relative;
    margin-top: -180px;
}

.focus-sustainable-wrap ul {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 50px;
    position: relative;
    z-index: 2;
}

.focus-sustainable-wrap ul li {
    background: #fff;
    height: 100%;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.focus-sustainable-wrap ul li h3 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
}

.focus-sustainable-wrap ul li p {
    line-height: 26px;
    color: #868681;
    font-weight: 400;
    font-size: 16px;
}

.focus-sustainable-wrap ul li img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 20px;
    border: 3px solid var(--theme-color-primary);
}

.carbon-wrap {
    background-image: url(../images/carbon-bg.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 100px;
    background-attachment: fixed;
    position: relative;
    padding: 50px 0;
}

.carbon-register-wrap {
    background-image: url(../images/carbon-register-bg.jpg);
}

.carbon-wrap::after {
    content: "";
    background: #000;
    opacity: 0.6;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
    z-index: 1;
}

.carbon-wrap .title, .carbon-wrap .info, .carbon-wrap .details {
    position: relative;
    z-index: 2;
}

.carbon-wrap .left-img img {
    width: 80%;
    margin: auto;
    display: block;
    position: relative;
    z-index: 2;
    border-radius: 10px;
    border: 3px solid #fff;
}

.carbon-wrap .title h3 {
    color: #fff;
    text-align: center;
}

.carbon-wrap .title p {
    color: #fff;
    font-size: 18px;
    line-height: 26px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 30px;
}

.carbon-wrap .info h4, .carbon-wrap .details h4 {
    font-weight: 900;
    letter-spacing: 3px;
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-size: 20px;
}

.carbon-wrap .info ul li h5, .carbon-wrap .details ul li h5 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #fff;
}

.carbon-wrap .info ul li p, .carbon-wrap .details ul li p {
    line-height: 26px;
    font-weight: 400;
    font-size: 16px;
    color: #fff;
}

.carbon-wrap .info ul li, .carbon-wrap .details ul li {
    margin-bottom: 20px;
}

.carbon-wrap .details ul li {
    background: #fff;
    padding: 20px 80px;
    border-radius: 10px;
    position: relative;
}

.carbon-wrap .details ul li .thumb {
    position: absolute;
    right: 0px;
    top: 0px;
}

.carbon-wrap .details ul li .thumb1 {
    position: absolute;
    top: 0px;
    left: 0;
    transform: scaleX(-1);
}

.carbon-wrap .details ul li p, .carbon-wrap .details ul li h5 {
    color: #000;
}

.benefits-wrap .info h3 {
    font-weight: 900;
    letter-spacing: 3px;
    color: var(--theme-color-primary);
    margin-bottom: 15px;
    text-transform: uppercase;
    font-size: 18px;
}

.benefits-wrap .info li h5 {
    font-size: 20px;
    line-height: 32px;
    font-weight: 600;
    margin: 5px 0;
}

.benefits-wrap .info li p {
    line-height: 26px;
    color: #868681;
    font-weight: 400;
    font-size: 16px;
}

.benefits-wrap .info li {
    margin-bottom: 10px;
}

.benefits-wrap .top-border {
    border-top: 1px solid var(--theme-color-primary);
    padding-top: 20px;
    margin-top: 25px;
}

.benefits-wrap .thumb img {
    width: 80%;
    margin: auto;
    display: block;
    border-radius: 10px;
    border: 3px solid #fff;
}

.industry-wrap .policy-info .social-equity {
    align-items: center;
}

.industry-wrap .policy-info .social-equity .social-equity-img {
    width: 250px;
    height: 100px;
}

.industry-wrap .policy-info .social-equity .social-equity-img img {
    width: 250px;
    height: 100px;
    border: 3px solid #fff;
    border-radius: 10px;
}

.saf-banefits-wrap {
    padding-bottom: 50px;
}

.saf-banefits-wrap #key .item .info .details p {
    margin-bottom: 0;
}

.saf-banefits-wrap #key .item .info .details {
    min-height: 220px;
}


.reduction-wrap .accordion-item {
    margin-bottom: 10px;
}

.reduction-wrap .accordion-item .accordion-body ul li h3 {
    color: var(--theme-color-primary);
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 5px;
}

.reduction-wrap .accordion-item .accordion-body ul li h3 img {
    width: 25px;
    margin-right: 5px;
    filter: invert(49%) sepia(17%) saturate(2335%) hue-rotate(89deg) brightness(98%) contrast(74%);
}

.reduction-wrap .accordion-item .accordion-body ul li p {
    line-height: 26px;
    color: #868681;
    font-weight: 400;
    font-size: 16px
}

.reduction-wrap .accordion-item .accordion-body ul li {
    margin-bottom: 10px;
}

.reduction-wrap .accordion-item .accordion-body ul li ul {
    padding-left: 25px;
}

.reduction-wrap .accordion-item .accordion-body ul li ul h3 i {
    font-size: 8px;
    margin-right: 5px;
}

.reduction-wrap .accordion-item .accordion-body ul li ul h3 {
    display: flex;
    align-items: center;
    font-size: 16px;
}

.reduction-wrap .title h3, .reduction-wrap .title h5, .benefit-carbon-solution-wrap .title h3 {
    text-align: center;
    margin-bottom: 20px;
}

.reduction-wrap .title h5 {
    font-size: 18px;
}

.reduction-wrap .title img {
    border-radius: 10px;
    border: 3px solid #fff;
}


.benefit-carbon-solution-wrap ul {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 30px;
    margin-top: 80px;
}

.benefit-carbon-solution-wrap ul li {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px 0px rgba(85, 85, 85, 0.2);
    text-align: center;
}

.benefit-carbon-solution-wrap ul li h5 {
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 3px;
    color: var(--theme-color-primary);
    text-align: center;
    margin-bottom: 15px;
    text-transform: uppercase;
    margin-top: 25px;
}

.benefit-carbon-solution-wrap ul li p {
    line-height: 26px;
    color: #868681;
    font-weight: 400;
    font-size: 16px
}

.benefit-carbon-solution-wrap ul li .thumb {
    height: 100px;
    width: 100px;
    border-radius: 50%;
    padding: 20px;
    margin-left: auto;
    margin-right: auto;
    margin-top: -50px;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    background: var(--theme-color-primary);
}

.article-wrap .title p {
    color: #000;
}

.article-wrap .title h3 {
    color: var(--theme-color-primary);
}

.article-wrap .info>h4 {
    font-weight: 900;
    letter-spacing: 3px;
    color: var(--theme-color-primary);
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 5px;
}

.article-wrap .info>p {
    color: #000;
    font-size: 20px;
    line-height: 32px;
    margin-bottom: 10px;
    font-weight: 600;
    margin-bottom: 20px;
}

.article-wrap .thumb img {
    border-radius: 10px;
    border: 3px solid #fff;
}

.main_blog_wrap .card {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.main_blog_wrap .card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, .12), 0 4px 8px rgba(0, 0, 0, .06);
}

.main_blog_wrap .card img {
    height: 220px;
}

.main_blog_wrap .card .card-body h5 {
    color: #000;
    font-size: 18px;
    font-weight: 600;
    line-height: 25px;
}

.main_blog_wrap .card .card-body p {
    line-height: 26px;
    color: #868681;
    font-weight: 400;
    font-size: 16px;
}

.main_blog_details_wrap .details {
    border: 1px solid #cccccc9e;
    padding: 20px;
    border-radius: 10px;
}

.main_blog_details_wrap .details>img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.main_blog_details_wrap .title, .main_blog_details_wrap h6 {
    font-size: 26px;
    font-weight: 900;
    letter-spacing: 3px;
    color: var(--theme-color-primary);
    margin-bottom: 10px;
    margin-top: 25px;
    text-transform: uppercase;
    
}

.main_blog_details_wrap h6 {
    font-size: 18px;
}

.main_blog_details_wrap .pan {
    width: 20px;
    margin-right: 10px;
    filter: invert(49%) sepia(17%) saturate(2335%) hue-rotate(89deg) brightness(98%) contrast(74%);
}

.main_blog_details_wrap i {
    color: var(--theme-color-primary);
    font-size: 10px;
    margin-right: 10px;
    position: relative;
    top: -3px;
}

.main_blog_details_wrap p {
    font-size: 16px;
    margin-bottom: 10px;
}

.green-credit-wrap .title h3 {
    font-weight: 900;
    margin-bottom: 10px;
    margin-top: 0;
}

.green-credit-wrap .title p {
    font-size: 18px;
    line-height: 32px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 30px;
}

.green-credit-wrap .title-text {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 3px;
    color: var(--theme-color-primary);
    margin-bottom: 5px;
    text-transform: uppercase;
    /* font-family: 'Vilgorda Demo'; */
}

.green-credit-wrap .only-text {
    font-size: 18px;
    line-height: 32px;
    font-weight: 600;
}

.green-credit-wrap .green-credit-info .title, .sub-title {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 3px;
    color: var(--theme-color-primary);
    margin-bottom: 15px;
    text-transform: uppercase; 
    text-align: center;
    /* font-family: 'Bite Chocolate'; */
}

.green-credit-wrap .green-credit-info .title img {
    width: 35px;
    margin-right: 10px;
    filter: invert(49%) sepia(17%) saturate(2335%) hue-rotate(89deg) brightness(98%) contrast(74%);
}

.green-credit-wrap .green-credit-info .title .pan1 {
    margin-left: 10px;
    margin-right: 0;
    transform: scaleX(-1);
}


.green-credit-wrap .green-credit-info li {
    display: flex;
    align-items: baseline;
}

.green-credit-wrap .green-credit-info li i {
    font-size: 15px;
    padding: 5px;
    text-align: center;
    border-radius: 50%;
    color: #fff;
    background: var(--theme-color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.green-credit-wrap .green-credit-info li h3 {
    font-size: 20px;
    line-height: 32px;
    font-weight: 600;
    margin: 5px 0;
    font-family: 'Encode Sans Condensed';
}

.green-credit-wrap .green-credit-info li p {
    line-height: 26px;
    color: #868681;
    font-weight: 400;
    font-size: 16px;
}

.green-credit-wrap .thumb img {
    width: 80%;
    margin: auto;
    display: block;
    border-radius: 10px;
    border: 3px solid var(--theme-color-primary);
}

.sub-title {
    margin: 30px 0;
    position: relative;
}

.sub-title::after {
    position: absolute;
    content: "";
    width: 100px;
    height: 2px;
    left: 50%;
    bottom: -13px;
    transform: translateX(-50%);
    background: var(--theme-color-primary);
}

.flowchart {
    display: grid;
    place-content: center;
    grid-template-columns: 40% 50px 10px 6px 10px 50px 40%;
    grid-template-rows: 10px 40px 10px 6px 10px auto 10px;
    grid-auto-flow: row;
    grid-template-areas:
        ". . . vt-cen-lin . . ."
        "ht-lef-dis . . vt . . ht-rit-dis"
        "ht-lef-dis . t-circle-line t-circle-line t-circle-line . ht-rit-dis"
        "ht-lef-dis ht-lef-pip t-circle-line t-circle-line t-circle-line ht-rit-pip ht-rit-dis"
        "ht-lef-dis . t-circle-line t-circle-line t-circle-line . ht-rit-dis"
        "ht-lef-dis . . vb-cen-lin . . ht-rit-dis"
        ". . . vb-cen-lin . . .";
}

.vt {
    grid-area: vt;
    background: var(--theme-color-primary);
}

.vt-cen-lin {
    grid-area: vt-cen-lin;
    background: var(--theme-color-primary);
}

.vb-cen-lin {
    grid-area: vb-cen-lin;
    background: var(--theme-color-primary);
}

#ht-lef-pip {
    grid-area: ht-lef-pip;
    background: var(--theme-color-primary);
}

.t-circle-line {
    grid-area: t-circle-line;
    background: #fff;
    border: 5px solid var(--theme-color-primary);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

#ht-rit-pip {
    grid-area: ht-rit-pip;
    background: var(--theme-color-primary);
}

.ht-lef-dis {
    grid-area: ht-lef-dis;
    background-color: #fff;
}

.ht-rit-dis {
    grid-area: ht-rit-dis;
    background-color: #fff;
}

.flowchart {
    position: relative;
    height: auto;
}

.flowchart .rit-img img, .flowchart .lef-img img {
    width: 150px;
    animation: pulse1 1.5s infinite;
}

.rit-img, .lef-img {
    display: flex;
    justify-content: space-between;
    padding: 50px 25px;
    border: 4px solid var(--theme-color-primary);
    border-radius: 4px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.rit-img .thumb-1, .rit-img .thumb-2, .lef-img .thumb-1, .lef-img .thumb-2 {
    width: 150px;
}

@keyframes pulse1 {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.rit-img .thumb-1 p, .rit-img .thumb-2 p, .lef-img .thumb-1 p, .lef-img .thumb-2 p {
    font-weight: 700;
    padding-bottom: 0;
}


.long-arrow-right,
.long-arrow-left {
    display: block;
    margin: 30px auto;
    width: 20px;
    height: 20px;
    border-top: 2px solid var(--theme-color-primary);
    border-left: 2px solid var(--theme-color-primary);
}

.long-arrow-right {
    transform: rotate(135deg);
    position: absolute;
    left: 55%;
    top: 5%;
    transform: rotate(135deg) translate(-50%, -50%);
}

.long-arrow-left {
    transform: rotate(-45deg);
    position: absolute;
    right: 55%;
    top: 25%;
    transform: rotate(-45deg) translate(-50%, -50%);
}

.long-arrow-right::after,
.long-arrow-left::after {
    content: "";
    display: block;
    width: 2px;
    height: 90px;
    background-color: var(--theme-color-primary);
    transform: rotate(-45deg) translate(31px, 13px);
    left: 0;
    top: 0;
}

.arrow {
    width: 150px;
    position: relative;
}

.arrow .text_1, .arrow .text_2 {
    width: 150px;
    width: 150px;
    padding: 0;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
}

.arrow .text_2 {
    position: absolute;
    left: 50%;
    bottom: 10%;
    transform: translate(-50%, -50%);
}

.arrow_3 .text_2 {
    bottom: 5%;
    line-height: normal;
}

.arrow_3 .long-arrow-left {
    top: 15%;
}

.mak-inv {
    display: none;
}

.rit-txt {
    text-align: right;
    margin: 35px 0 0 0;
}

.lef-txt {
    margin: 35px 0 0 0;
}

.ht-lef-dis h3, .ht-rit-dis h3 {
    padding: 10px;
    font-size: 22px;
    font-weight: 700;
    border-bottom: 1px solid var(--theme-color-primary);
}

.ht-lef-dis p, .ht-rit-dis p {
    padding: 10px;
    font-size: 16px;
    padding-top: 5px;
}

.ht-lef-dis, .ht-rit-dis {
    position: relative;

}

.ht-lef-dis .thumb, .ht-rit-dis .thumb {
    width: auto;
    border: none;
    height: auto;
    position: absolute;
}

.flowchart .shape-1, .flowchart .shape-3 {
    left: 0;
    bottom: 0;
    transform: scale(-1);
}

.flowchart .shape-2 {
    right: 0;
    bottom: 0;
    transform: scale(1, -1);
}

.carbon_solution_climate {
    background-image: url(../images/carbon_solution_bg.jpg);
}

.carbon_solution_about .title p {
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 50px;
    text-align: center;
    font-weight: 600;
}

.carbon_solution_climate .info p {
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 20px;

    font-weight: 600;
    color: #fff;
    margin-top: 5px;
}

.title-icon i {
    font-size: 20px;
    color: var(--theme-color-primary);
    margin-bottom: 10px;
    position: relative;
}

.title-icon .line {
    height: 2px;
    background-color: var(--theme-color-primary);
    width: 100px;
    margin-top: -10px;
    margin: -10px 10px 0 10px !important;
}
.title-icon i.bg_light {
   color: #fff !important;
}

.title-icon .line.bg_light {
    background-color: #fff !important;
}

.invester_relation_wrap .title-wrap p{
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 600;
}

.invester_relation_wrap_two ul li i{
  font-size: 10px;
}
