/* @font-face {
  font-family: 'Satoshi-Regular';
  src: url('../fonts/Satoshi-Regular.woff2'),
    url('../fonts/Satoshi-Regular.woff');
    font-display: swap;
} */
:root {
  --selection-color: #467e1560;
  --black-color: #000000;
  --white-color: #ffffff;
  --text-color: #1b1a1a;
  --green-color: #467E15;
  --ease: all 350ms ease-in-out;
  --scrollbar: #F5F5F5;
  --border-color: #d4d6db59;
  --paragraph-font: "DM Sans", sans-serif;;
  --heading-font: "DM Sans", sans-serif;;
}
html,
body {
  height: 100%;
}
html {
  scroll-behavior: smooth;
}
::selection {
  background: var(--selection-color);
  color: var(--white-color);
  text-shadow: none;
}
::-webkit-scrollbar {
  width: 5px;
  background-color: var(--scrollbar);
}
.showcase .nav-tabs::-webkit-scrollbar
{
  height: 5px;
  background-color: var(--scrollbar);
}
::-webkit-scrollbar-button:start:decrement,
::-webkit-scrollbar-button:end:increment {
  display: none;
}
::-webkit-scrollbar-thumb:vertical,::-webkit-scrollbar-thumb:horizontal{
  border-radius: 5px;
  background-color: var(--green-color);
}
body {
  font-size: 16px;
}
ul {
    list-style: none;
}
a {
  text-decoration: none;
  transition: var(--ease);
  color: var(--text-color);
}
i {
  transition: var(--ease);
}
.p-60{
    padding: 60px 0;
}
@-webkit-keyframes updown {
  0% {
    -webkit-transform: translateY(0px);
  }
  50% {
    -webkit-transform: translateY(15px);
  }
  100% {
    -webkit-transform: translateY(0px);
  }
}
@-webkit-keyframes easterani {
  0% {
    transform: rotateY(0deg);
  }
  50% {
    transform: rotateY(90deg);
  }
  100% {
    transform: rotateY(0deg);
  }
}
@-webkit-keyframes opacity {
  0% {
    opacity: 1;
  }

  50% {
    opacity: .2;
  }

  100% {
    opacity: 1;
  }
}
@keyframes bounce {
  from,
  20%,
  53%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0) scaleY(1.1);
    transform: translate3d(0, -30px, 0) scaleY(1.1);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0) scaleY(1.05);
    transform: translate3d(0, -15px, 0) scaleY(1.05);
  }
  80% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0) scaleY(0.95);
    transform: translate3d(0, 0, 0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0) scaleY(1.02);
    transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}
@keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes circle{
  0%{
    transform: translate(-50%, -50%) rotate(0deg);             
  }
  100%{
    transform: translate(-50%, -50%) rotate(360deg);              
  }
}
/* HEADER */
.main-banner{
  background-image: url(../images/main-banner-bg.png);
  background-size: cover;
  background-position: center;
  min-height: 100vh;
  overflow: hidden;
  padding: 140px 0 0 0;
  display: flex;
  align-items: center;
  position: relative;
  color: var(--white-color);
}
.navbar .btn-green:hover {
    color: var(--white-color);
    border-color: var(--white-color);
}
.navbar-collapse {
    justify-content: end;
}
.btn-green {
    background-color: var(--green-color);
    color: var(--white-color);
}
.btn-style {
    font-weight: 600;
    padding: 10px 28px;
}
.btn-white:hover {
    border-color: #fff;
}
.btn-green:hover {
    border-color: var(--green-color);
}
.navbar-collapse .btn-area {
    margin-left: 14%;
}
.navbar-collapse .navbar-nav {
    gap: 30px;
}
header nav {
    background: none; 
}
.nav-item .nav-link {
    color: var(--white-color);
        padding-left: 6px !important;
    padding-right: 6px !important;
}
.nav-item .nav-link.active {
    color: var(--white-color);
    font-weight: 500;
    border-bottom: 2px solid;
}
.f-img {
    position: absolute;
}
.banner-tree {
    bottom: -10px;
    left: -10px;
    animation: headShake 4s infinite linear;
}
.main-banner .container {
    position: relative;
}
.green-bg-txt {
    background-color: var(--green-color);
    display: inline-block;
    padding: 5px 15px;
    border-radius: 5px;
}
.banner-heading {
    display: block;
    font-size: 36px;
    line-height: 44px;
    margin: 14px 0 15px;
    font-weight: normal;
    text-transform: uppercase;
}
.banner-heading span {
    font-weight: 700;
    color: #83B756;
}
.btn-white {
    background-color: var(--white-color);
    color: var(--green-color);
}
.dual-btn {
    display: flex;
    gap: 8px;
    -webkit-animation: opacity 1s infinite linear;
}
.main-banner .form-side {
    max-width: 460px;
    background-color: var(--green-color);
    padding: 25px 40px 0;
    border-radius: 6px;
        float: right;
}
.main-banner .form-side strong {
    font-size: 26px;
    font-weight: 500;
    display: block;
    line-height: 29px;
    margin: 0 0 20px;
    /* text-align: center; */
    text-transform: uppercase;
}
.iti {
    width: 100%;
}
.main-banner .form-side form {
    margin: -20px 0 0;
    display: block;
    transform: translateY(23px);
}
.main-banner .form-side form .btn {
    margin: 0 auto;
    display: block;
}
.scrolled {
    background-color: #000000b3;
    backdrop-filter: blur(5px);
}
.scrolled .navbar-brand img {
    max-width: 130px;
}
.navbar-brand img {
  transition: var(--ease);
}
/* END HEADER */
/* GREENBAR */
.green-bar p {
    margin: 0;
}
.green-bar {
    background-color: var(--green-color);
    color: var(--white-color);
    padding: 10px 0;
}
/* END GREENBAR */
/* PALM GUIDE */
.sec-head h2 {
    font-size: 40px;
    font-weight: 700;
    line-height: 42px;
    text-transform: capitalize;
}
.line-heading {
    max-width: 560px;
    position: relative;
    margin: 0 0 70px 280px;
}
.green-txt {
    color: #467E15;
}
.line-heading:before {
    content: "";
    width: 260px;
    height: 4px;
    background-color: var(--green-color);
    position: absolute;
    left: -280px;
    top: 20px;
}
.palm-guide {
    padding: 60px 0;
}
.pg-fw {
    width: 100%;
    max-width: 410px;
}
.pg-box .img-holder {
    position: relative;
}
.pg-f-img {
    left: -117px;
    bottom: -2px;
}
.pg-more-col {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.video-area {
    background-color: var(--green-color);
    padding: 10px 10px 0 0;
    border-radius: 10px;
}
.video-area img {
    margin: 0 0 0 -10px;
}
.cir-btn {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    position: relative;
    transform: rotate(-30deg);
        margin: 0 0 0 27px;
}
.cir-btn:after {
    content: '';
    background-image: url(../images/cir-txt.png);
    background-size: 100%;
    background-repeat: no-repeat;
    position: absolute;
    width: 120px;
    height: 120px;    
    top: 50%;
    left: 50%;
    animation: circle 6s infinite linear;
}
/* END PALM GUIDE */
/* SHOWCASE */
.showcase {
    position: relative;
    background-color: #467e1538;
    padding: 60px 0;
}
.cen-head {
    text-align: center;
}
.cen-head p {
    max-width: 630px;
    margin: 0 auto;
}
.showcase .parrot-tree {
    right: 50px;
    top: -80px;
    animation: updown 4s infinite linear;
}
.showcase .nav-tabs {
    justify-content: center;
    gap: 35px;
    border-bottom: 1px solid #000;
    padding: 0 0 25px;
    margin: 0 0 25px;
}
.showcase .nav-tabs .nav-link {
    background: none;
    border: 1px solid #000;
    border-radius: 5px;
    color: var(--black-color);
    padding: 6px 30px !important;
}
.showcase .nav-tabs .active {
    background-color: var(--green-color);
    color: var(--white-color);
    border-color: var(--green-color);
}
.showcase .sec-head {
    margin: 0 0 30px;
}
.showcase .tab-content img {
    width: 100%;
}
/* END SHOWCASE */
/* COUNTER */
.count-plus::after {
  content: '+';
}
.count-m::after {
  content: 'M+';
}
.sp-green {
    background-image: linear-gradient(90deg,rgba(70, 126, 21, 1) 0%, rgba(18, 28, 1, 1) 100%);
    color: var(--white-color);
    text-align: center;
    padding: 24px 80px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 0 8px #000000b3;
}
.counter-p p {
    margin: 0;
    font-weight: 600;
}
.counter-number {
    font-size: 40px;
    font-weight: 700;
    line-height: 42px;
}
.self-pub {
    padding: 0 0;
}
.sp-green .container {
    position: relative;
}
.self-pub .sec-head {
    margin: 0 0 30px;
}
.openbook {
    left: 10px;
    top: -26px;
    width: 160px;
    animation: headShake 4s infinite linear;
}
.treedesign {
    right: 0;
    top: 0;
    animation: headShake 4s infinite linear;
}
.sp-green .row > div:not(:last-child) {
    border-right: 3px solid;
}
/* END COUNTER */
/* PROCESS */
.process-sec .sec-head {
    margin: 0 0 30px;
    border-bottom: 1px solid #000;
    padding: 0 0 15px;
}
.process-sec {
    padding: 50px 0 200px;
    position: relative;
    overflow: hidden;
    background-image: url(../images/process-bg.png);
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: 490px;
}
.ps-box {
    text-align: center;
    display: flex;
    flex-direction: column;
}
.ps-txt span {
    font-size: 18px;
    font-weight: 500;
    color: var(--green-color);
}
.ps-txt p {
    font-size: 14px;
    line-height: 16px;
    margin: 0;
}
.ps-circle {
    width: 140px;
    height: 140px;
    text-align: center;
    border: 22px solid var(--green-color);
    margin: 0 auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.top-content {
    margin: 0 0 54px;
}
.top-content:after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -43px;
    background-image: url(../images/dots.png);
    background-repeat: no-repeat;
    height: 31px;
    width: 8px;
    background-size: 100%;
}
.ps-txt {
    position: relative;
}
.process-area {
    position: relative;
}
.process-area .waves-img {
    bottom: -43px;
    width: 1340px;
    left: 50%;
    transform: translateX(-50%);
}
.bottom-content {
    margin: 50px 0 0;
}
.bottom-content:after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%) rotate(180deg);
    top: -40px;
    background-image: url(../images/dots.png);
    background-repeat: no-repeat;
    height: 31px;
    width: 8px;
    background-size: 100%;
}
.process-area .row > div:nth-child(2n) .ps-box {
    flex-direction: column-reverse;
    transform: translateY(130px);
}
.process-tree {
    right: 0;
    top: 10px;
    width: 200px;
    animation: updown 4s infinite linear;
}
/* END PROCESS */
/* CTA */
.green-cta {
    background-image: linear-gradient(90deg,rgba(70, 126, 21, 1) 0%, rgba(18, 28, 1, 1) 100%);
    color: var(--white-color);
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}
.green-cta .container {
    position: relative;
}
.cta-tree-2 {
    right: 0;
    top: 12px;
    width: 230px;
}
.cta-tree-1 {
    transform: rotateY(180deg);
    top: 12px;
    width: 230px;
}
.green-cta .dual-btn {
    justify-content: center;
    margin: 30px 0 0;
}
.green-cta .dual-btn a {
    min-width: 240px;
}
/* END CTA */
/* WHY CHOOSE */
.check-list li:before {
    content: '\f058';
    font-family: fontawesome;
    position: absolute;
    left: -30px;
    top: 3px;
    color: var(--green-color);
    font-size: 14px;
}
.check-list li {
    position: relative;
    margin: 0 0 13px;
}
.why-choose {
    padding: 60px 0;
}
.why-choose .img-holder img {
    width: 100%;
    max-width: 520px;
    margin: 0 0 0 auto;
    display: block;
}
/* END WHY CHOOSE */
/* LATEST */
.latest-pub {
    padding: 60px 0;
    background-color: #EEEEEE;
}
.latest-pub .nav-link {
    background-color: #E4E4E4;
    color: var(--black-color);
    border-radius: 7px;
    padding: 10px 30px !important;
}
.latest-pub .nav-link.active {
    background-color: var(--green-color);
}
.latest-pub .nav-tabs {
    gap: 15px;
    justify-content: center;
    margin: 20px 0 30px;
    border: none;
}
.latest-pub .owl-item div {
    padding: 40px 5px 10px 40px;
    background-color: var(--white-color);
}
.latest-pub .owl-nav button {
    width: 50px;
    height: 50px;
    border-radius: 50% !important;
    background-color: var(--green-color) !important;
    color: #fff !important;
}
.latest-pub .owl-nav button span {
    font-size: 55px;
    line-height: 28px;
}
.range-slide .owl-nav .owl-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -35px;
}
.range-slide .owl-nav .owl-next {
    position: absolute;
    right: -35px;
    top: 50%;
    transform: translateY(-50%);
}
.range-slider .owl-stage-outer {
    padding: 0;
}
/* END LATEST */
/* SERVICES */
.services-sec {
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}
.service-tree-right {
    right: 0;
    top: 20px;
}
.services-sec .container {
    position: relative;
}
.service-tree-left {
    left: 0;
    top: 0;
}
.services-sec .cen-head p {
    max-width: 80%;
}
.services-sec .sec-head {
    margin: 0 0 60px;
}
.ss-area {
    text-align: center;
}
.ss-box {
    background: linear-gradient(0deg,rgba(70, 126, 21, 1) 0%, rgba(70, 126, 21, 1) 55%, rgba(70, 126, 21, 0) 98%, rgba(70, 126, 21, 0) 100%);
    padding: 5px;
    border-radius: 10px;
    overflow: hidden;
    margin: 0 0 30px;
}
.ss-box > div {
    background-color: var(--white-color);
    border-radius: 10px;
    padding: 45px 10px 20px;
    min-height: 275px;
    transition: var(--ease);
}
.ss-box > div:hover {
    background-color: var(--green-color);
    color: var(--white-color);
}
.ss-box p {
    margin: 0;
}
.ss-icon {
    width: 85px;
    height: 85px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 5px solid var(--green-color);
    border-radius: 50%;
    transition: var(--ease);
}
.ss-box > div:hover .ss-icon{
    border-color: var(--white-color)
}
.ss-box > div:hover .ss-icon img {
    filter: grayscale(1) brightness(3);
}
.ss-box strong {
    text-transform: uppercase;
    font-size: 20px;
}
/* END SERVICES */
/* BOOK CTA */
.book-cta {
    background-image: linear-gradient(90deg,rgba(70, 126, 21, 1) 0%, rgba(18, 28, 1, 1) 100%);
    color: var(--white-color);
    position: relative;
    padding: 25px 0 37px;
    margin: 50px 0 50px;
}
.bookconcerns {
    width: 100%;
    animation: headShake 4s infinite linear;
}
.book-cta .sec-head {
    max-width: 550px;
    margin: 0 0 25px;
}
.book-cta .img-holder {
    margin: -130px 0 -130px;
}
.bookcta-tree {
    top: -75px;
    max-width: 300px;
    animation: updown 4s infinite linear;
}
.book-cta .container {
    position: relative;
}
/* END BOOK CTA */
/* TESTI */
.testi-sec {
    padding: 100px 0 60px;
    position: relative;
}
.testi-slider {
    text-align: center;
}
.bookcta-tree-t1 {
    top: 50px;
}
.testi-sec .container {
    position: relative;
}
.bookcta-tree-t2 {
    top: 50px;
    right: 0;
    transform: rotateY(180deg);
}
.testi-sec .sec-head {
    margin: 0 0 40px;
}
.testi-sec .slick-slide {
    background-color: #eee;
    border: 1px solid var(--green-color);
    border-radius: 10px;
    padding: 50px;
    margin: 0 70px;
    position: relative;
}
.testi-sec .slick-slide p {
    margin: 0 auto;
    max-width: 800px;
}
.testi-sec .testi-slider strong {
    font-size: 25px;
    color: #467E15;
    font-weight: 600;
    margin: 0 0 15px;
    display: block;
}
.testi-sec .slick-slide strong:before {
   content: '';
    left: 40px;
    top: 30px;
    width: 35px;
    height: 33px;
    background-image: url(../images/qleft.png);
    background-size: 100%;
    position: absolute;
}
.testi-sec .slick-slide strong:after {
    content: '';
    right: 40px;
    bottom: 30px;
    width: 35px;
    height: 33px;
    background-image: url(../images/qright.png);
    background-size: 100%;
    position: absolute;
}
.vid-sec {
    text-align: center;
    padding: 0 0 60px;
}
/* END TESTI */
/* FAQ */
.faq-sec .sec-head {
    margin: 0 0 50px;
}
.faq-sec .accordion {
    max-width: 900px;
    margin: 0 auto;
}
.faq-sec .accordion-button {
    background-color: #467E15;
    color: var(--white-color);
    font-weight: 500;
    border-width: 1px 1px 0 1px !important;
    border-color: #000;
    border-style: solid;
    border-radius: 10px 10px 0 0 !important;
}
.faq-sec .accordion-button.collapsed {
    background-color: #eeeeee;
    color: var(--black-color);
    border: none;
}
.faq-sec .accordion-collapse.show {
    background-color: #467e15;
    color: var(--white-color);
    border-width: 0 1px 1px 1px !important;
    border-color: #000;
    border-style: solid;
    border-radius: 0 0 10px 10px;
    background-image: url(../images/Group4361.png);
    background-repeat: no-repeat;
    background-position: right center;
}
.faq-sec {
    padding: 40px 0 60px;
}
.faq-sec .accordion-item {
    margin: 0 0 15px;
}
.faq-sec .accordion-collapse {
    padding: 10px 120px 10px 0px;
}
/* END FAQ */
/* FOOTER INFO */
.ftr-form {
    background-color: #467e1538;
    padding: 60px 0;
}
.ftr-form .container {
    position: relative;
}
.big-tree {
    max-width: 570px;
    right: 60px;
    bottom: -60px;
}
.ftr-form .content-side > span {
    display: block;
    font-size: 25px;
    font-weight: 700;
    margin: 0 0 10px;
}
.ftr-form .content-side > p {
    margin: 0 0 40px;
}
.ftr-form .content-side ul {
    padding: 0;
}
.ftr-form .content-side li {
    margin: 0 0 20px;
}
.ftr-form .content-side i {
    margin: 0 10px 0 0;
}
.ftr-form .row {
    position: relative;
}
.ftr-form .form-side {
    background-color: #ffffffb8;
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 40px 50px;
    max-width: 565px;
    float: right;
}
.ftr-form .form-side strong {
    font-size: 25px;
    display: block;
}
.ftr-form .form-side p {
    margin: 0 0 20px;
}
.ftr-form .form-control {
    background: none;
    border-width: 0 0 1px 0;
    border-color: #cccccc;
    border-radius: 0;
}
.ftr-form .btn-style {
    display: block;
    width: 100%;
    border-radius: 20px;
    margin: 7px 0 0;
}
/* END FOOTER INFO */
/* FOOTER */
footer {
    background-color: #467E15;
    color: var(--white-color);
    padding: 50px 0 10px;
    overflow: hidden;
}
footer a {
    color: var(--white-color);
}
footer ul {
    padding: 0;
}
.ftr-info img {
    max-width: 170px;
    margin: 0 0 20px;
}
.q-links strong,.ftr-con > strong {
    font-weight: 500;
    display: block;
    margin: 30px 0 20px;
}
.ftr-info {
    padding: 0 70px 0 0;
}
.ftr-links {
    padding: 0 0 0 0px;
}
.q-links li,.ftr-con-links li {
    margin: 0 0 15px;
}
.ftr-con-links span {
    margin: 0 0 0 0;
}
.ftr-soc-links a {
    display: flex;
    width: 40px;
    background-color: var(--white-color);
    border-radius: 50%;
    height: 40px;
    color: var(--green-color);
    font-size: 20px;
    align-items: center;
    justify-content: center;
}
.ftr-soc-links {
    display: flex;
    gap: 5px;
}
/* END FOOTER */
/* ABOUT */
.about-us {
    padding: 80px 0;
}
.about-us .sec-head {
    margin: 0 0 20px;
}
.about-us .content-side {
    padding-right: 75px;
    position: relative;
}
.about-us .dual-btn {
    margin: 40px 0 0;
}
.abt-box-img {
    width: 90%;
}
.about-us .img-tree {
    right: -20px;
    bottom: -2px;
    width: 350px;
    animation: headShake 4s infinite linear;
}
.about-us .img-holder {
    position: relative;
}
.about-us .pg-more-col {
    position: absolute;
    right: 30px;
    bottom: 0;
    transform: scale(.9);
}
/* END ABOUT */
/* ABOUT PAGE */
.abt-page-banner .img-holder img {
    width: 100%;
}
.abt-page-banner .img-holder img {
    padding-left: 14%;
}
.year-of {
    position: absolute;
    bottom: -35px;
    left: 50px;
    width: 150px;
    background-color: var(--green-color);
    color: var(--white-color);
    text-align: center;
    border: 4px solid var(--white-color);
    border-radius: 10px;
    padding: 20px 0;
}
.why-choose .img-holder {
    position: relative;
}
.year-of span:first-child {
    display: block;
    font-size: 40px;
    text-transform: capitalize;
    text-align: center;
    line-height: 40px;
}
.year-of span {
    display: block;
}
.abt-right-txt .img-holder {
    position: relative;
}
.abt-right-txt .img-holder img {
    width: 100%;
    max-width: 520px;
    margin: 0 auto 0 0;
    display: block;
}
.abt-right-txt {
    background-image: url(../images/abttree.png);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 480px;
}
.abt-cta .img-holder {
    margin: -35px 0 -30px;
}
.abt-cta .sec-head {
    max-width: 100%;
}
/* END ABOUT PAGE */
/* SERVICES SECTION */
.ser-pro-process {
    margin: 100px 0 0;
}
.spp-box {
    position: relative;
    text-align: center;
    background-color: var(--white-color);
    margin: 0 0 0;
    border: 2px solid var(--green-color);
    border-radius: 35px;
    padding: 0 20px 20px;
    height: 100%;
}
.spp-icon {
    position: relative;
    display: flex;
    width: 115px;
    height: 115px;
    align-items: center;
    justify-content: center;
    margin: 0 auto -26px;
    background-color: var(--white-color);
    border-radius: 50%;
    transform: translateY(-50px);
}
.spp-icon img {
    max-width: 55px;
}
.shadow-box{
    content: '';
    background-image: url(../images/shadow.png);
    width: 160px;
    height: 160px;
    position: absolute;
    background-size: 100%;
    background-repeat: no-repeat;
    top: -49px;
    left: 93px;
}
.spp-box:after {
    content: '';
    position: absolute;
    top: -70px;
    width: 158px;
    height: 158px;
    background-color: var(--green-color);
    border-radius: 50%;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
}
.spp-content {
    position: relative;
    z-index: 2;
}
.spp-content p {
    margin: 0;
    font-size: 14px;
}
.you-box {
    position: absolute;
    right: -28px;
    height: 70px;
    width: 28px;
    top: 50%;
    transform: translateY(-50%);
    background-image: url(../images/you.png);
    background-repeat: no-repeat;
    background-size: 100%;
    background-color: var(--white-color);
    z-index: 2;
    background-position: 0px -1px;
}
.yb-flip{
    transform: translateY(-50%) rotate(180deg);
}
.you-box:after {
    content: '';
    right: 0;
    top: 0;
    width: 2px;
    height: 15px;
    background-color: #ffffff;
    z-index: 3;
    position: absolute;
}
.green-bg-tsec {
    background-image: linear-gradient(90deg,rgba(70, 126, 21, 1) 0%, rgba(18, 28, 1, 1) 100%);
    color: var(--white-color);
    position: relative;
    margin: 120px 0 0;
}
.green-bg-tsec .container {
    position: relative;
}
.treeleafsright {
    right: 0;
    top: 0;
}
.treeleafsleft {
    left: 0;
    top: 0;
}
.green-bg-tsec .img-holder {
    margin: -150px 0 0;
    text-align: right;
}
.fimg-holder {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.green-bg-tsec .row {
    align-items: center;
}
.green-bg-tsec .check-list li:before {
    color: var(--white-color);
}
.banner-port-imgs img {
    width: 100%;
}
/* END SERVICES SECTION */
/* PORTFOLIO */
.psec-1 .sec-head {
    margin: 0 0 50px;
}
.book-side strong {
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
}
.txt-side {
    background-color: #eee;
    padding: 25px 30px;
}
.txt-side-box {
    display: flex;
    align-items: center;
    gap: 15px;
}
.psec-2-txt .layer-1 strong {
    font-size: 20px;
}
.psec-2-txt .layer-1 p {
    margin: 0 0 25px;   
}
.psec-2-txt .l2-bottom {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    line-height: 14px;
}
.psec-2-txt .l2-wrap {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding: 0 0 20px;
}
.psec-2-txt .l2-wrap strong{
    font-size: 20px;
}
.pdes-box {
    padding: 45px;
    background-color: #eee;
    border-radius: 5px;
}
.pdes-box-top strong {
    font-size: 20px;
    color: var(--green-color);
    display: block;
    margin: 0 0 5px;
}
.p-des-book {
    display: flex;
    align-items: center;
    gap: 10px;
}
.p-des-book p {
    margin: 0 0 -5px;
    font-weight: 500;
}
.p-des-book span {
    font-size: 12px;
}
.pdes-box-top p {
    margin: 0 0 30px;
}
.powerful .sec-head {
    margin: 0 0 60px;
}
.power-row > div:nth-child(2n) {
    flex-direction: row-reverse;
}
.power-row .img-holder img {
    border-radius: 6px;
}
.power-row .dual-btn {
    justify-content: end;
}
/* END PORTFOLIO */
/* MODAL */
.quotepop .modal-body {
    background-image: url(../images/modalbg.png);
    background-size: cover;
    background-repeat: no-repeat;
    color: var(--white-color);
    position: relative;
    border: 5px solid var(--green-color);
    border-radius: 15px;  
    padding: 20px 40px 15px;
}
.quotepop .modal-content {
    background: none;
}
.tree-right {
    position: absolute;
    right: -90px;
    top: -80px;
}
.quotepop .fw-n {
    font-size: 30px;
    font-weight: 600;
}
.quotepop p {
    margin: 0 0 20px;
}
.quotepop .btn-style {
    margin: 20px auto -40px;
    display: block;
}
.quotepop .btn-close {
    position: absolute;
    right: -10px;
    top: -10px;
    filter: invert(1);
    opacity: 1;
}
.quotepop {
    background-color: #000000ba;
    backdrop-filter: blur(3px);
}
/* END MODAL */
/* CONTACT PAGE */
.contact-banner {
    min-height: auto;
    padding: 140px 0 300px 0;
    text-align: center;
}
.contact-ftr-form {
    background-color: var(--white-color);
    padding: 60px 60px;
    position: relative;
    margin-top: -270px;
    border-radius: 35px;
    overflow: hidden;
    box-shadow: 0 0 10px #00000038;
}
.map-sec {
    margin: -325px 0 -6px;
}
.contact-ftr-form .form-side {
    box-shadow: 0 0 10px #00000038;
    max-width: 520px;
}
/* END CONTACT PAGE */
.psec-2 .sec-head {
    margin: 0 0 40px;
}
.latest-pub .sec-head {
    margin: 0 0 35px;
}
.disclaimer {
  background-color: #193005;
  color: var(--white-color);
  padding: 6px 0;
}
.disclaimer p {
  font-size: 14px;
  text-align: center;
}
.phone-area{
    display: none;
}
.phone-links {
    display: none;
}
.btn-area {
    -webkit-animation: opacity 1s infinite linear;
}
.book-cta .dual-btn {
    -webkit-animation: opacity 1s infinite linear;
}
.green-bg-tsec .sec-head {
    margin-top: 30px;
}
.green-bg-tsec .dual-btn {
    margin-bottom: 30px;
}

.be-gbt .img-holder img {
    width: 100%;
    margin: 0 0 -25px;
}
.bh-sub {
    margin: 0 0 -10px;
    display: block;
}
/* RESPONSIVE */
@media only screen and (max-width : 1399px) {
.navbar-collapse .btn-area {
    margin-left: 7%;
}
.navbar-brand img {
    max-width: 150px;
}
.about-us .img-tree {
    width: 300px;
}
.showcase .parrot-tree {
    right: 40px;
    top: -60px;
    width: 164px;
} 
.process-area .waves-img {
    width: 100%; 
}
.ps-circle {
    width: 120px;
    height: 120px;
    border: 12px solid var(--green-color);
}
.process-area {
    padding: 0 20px;
}
.ps-txt p {
    min-height: 87px;
}
.ps-txt span {
    display: block;
    line-height: 18px;
    margin: 0 0 8px;
}
.process-area .waves-img {
    bottom: -33px;
}
.process-area .row > div:nth-child(2n) .ps-box {
    transform: translateY(168px);
}
.ss-box p {
    min-height: 75px;
}
.shadow-box {
    top: -48px;
    left: 71px;
}
.green-bg-tsec .row {
    align-items: end;
}
.green-bg-tsec .sec-head
 {
    margin-top: 30px;
}
.green-bg-tsec .dual-btn {
    margin: 0 0 40px;
}
.be-gbt .img-holder img {
    margin: 0 0 0;
}
.bf-gbt .row{
    align-items: center;
}
}
@media only screen and (max-width : 1199px) {
    .green-bg-tsec .img-holder img {
    width: 100%;
}
 header .btn-style {
    padding: 10px 5px;
    width: 110px;
}
.navbar-collapse .navbar-nav {
    gap: 20px;
}
.navbar-collapse .btn-area {
        margin-left: 30px;
    }
        .about-us .img-tree {
        width: 270px;
    }
        .showcase .parrot-tree {
        width: 144px;
    }
    .showcase .sec-head {
    padding: 0 190px;
}
  .showcase .nav-tabs{
    flex-wrap: nowrap;
    overflow-y: hidden;
    overflow-x: scroll;
    justify-content: start;
  }
  .openbook {
    width: 140px; 
}
.treedesign {
    width: 210px;
}
.process-tree {
    top: 10px;
    width: 160px;
}
    .ps-circle {
        width: 90px;
        height: 90px;
        border: 8px solid var(--green-color);
    }
    .ps-txt span {
        line-height: 16px;
        font-size: 16px;
    }
    .ps-txt p {
        min-height: 87px;
        width: 190px;
        position: relative;
        left: 50%;
        transform: translateX(-50%);
    }
    .process-area .waves-img {
        bottom: -34px;
    }
    .ps-txt {
    height: 115px;
}
    .process-area .row > div:nth-child(2n) .ps-box {
        transform: translateY(159px);
    }
    .ss-box > div {
    padding: 45px 10px 0;
    min-height: 305px;
}
.shadow-box {
        top: -48px;
        left: 51px;
    }
    .ser-pro-process .row > div {
    margin: 0 0 80px;
}
}
@media only screen and (max-width : 991px) {
 .showcase .nav-tabs {
    gap: 20px;
}
.va-box iframe {
    width: 100%;
}
.big-tree
 {
    max-width: 420px;
}
.main-banner {
    min-height: auto;
    padding: 140px 0 50px 0;
}
.about-us .content-side {
    padding-right: 0; 
}
.about-us {
    padding: 40px 0 80px;
}
.about-us .img-holder {
    margin: 60px 0 0;
    text-align: center;
}
    .showcase .sec-head {
        padding: 0 80px;
    }
        .openbook {
        width: 149px;
        mix-blend-mode: multiply;
    }
    .process-area .row > div:nth-child(2n) .ps-box {
        transform: translateY(0);
        flex-direction: column;
    }
.process-area .waves-img {
    display: none;
}
.bottom-content {
    margin: 0 0 50px;
}
.ps-box {
    margin: 20px 0 30px;
}
.bottom-content:after {
    transform: translateX(-50%) rotate(0deg);
    top: auto;
    bottom: -43px;
}
.process-sec {
    padding: 40px 0 70px;
}
.ss-box > div {
    padding: 35px 10px 0;
    min-height: 275px;
}
    .process-tree {
        top: 0;
        width: 130px;
    }
    .green-cta .sec-head br {
    display: none;
}
.pub-slides img {
    width: 100%;
}
.why-choose .img-holder img {
    margin: 40px auto 0 auto;
}
.bookconcerns {
    max-width: 400px;
    margin: 0 auto;
    display: block;
}
.process-area .row {
  counter-reset: step-counter;
}
.ps-box {
  counter-increment: step-counter;
  position: relative;
}
.ps-box::before {
content: counter(step-counter);
        position: absolute;
        top: -30px;
        left: 50%;
        background: var(--green-color);
        color: #fff;
        font-weight: bold;
        font-size: 16px;
        width: 24px;
        height: 24px;
        border-radius: 50%;
        text-align: center;
        line-height: 24px;
        transform: translate(-50%);
}
.bookcta-tree-t1,.bookcta-tree-t2 {
    max-width: 190px;
}
.testi-sec .sec-head {
    padding: 0 120px;
}
.book-cta .img-holder {
    margin: 50px 0 -130px;
}
.ftr-info {
    padding: 0 0 0 0;
    text-align: center;
}
.navbar-toggler {
    background-color: var(--green-color);
}
.abt-page-banner .banner-heading br
 {
    display: none;
}
.green-bg-tsec .img-holder img {
    width: 100%;
}
.treeleafsright {
    max-width: 500px;
}
.green-bg-tsec .sec-head {
    margin-top: 30px;
}
.green-bg-tsec .dual-btn {
    margin: 0 0 40px;
}
    .shadow-box {
        top: -48px;
        left: 111px;
    }
      .abt-right-txt .row {
    flex-direction: column-reverse;
}
.abt-right-txt .dual-btn {
    margin: 0 0 40px;
}
.abt-right-txt .img-holder img {
    max-width: 520px;
    margin: 0 auto 0;
}

.contact-ftr-form {
    margin-top: 60px;
}
header nav {
    background-color: #000000b3;
    backdrop-filter: blur(5px);
}
.navbar-collapse {
    margin: 20px 0 20px;
}
    .navbar-collapse .btn-area {
        display: none;
    }
    .phone-links {
    display: inline-block;
}
.phone-links a {
    color: #a7a4a1;
    border: 1px solid var(--green-color);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    -webkit-animation: opacity 1s infinite linear;
}

.phone-links ul {
    display: flex;
    gap: 5px;
    margin-right: 4px;
    margin-bottom: 0;
    padding: 0;
}
.bf-gbt .row{
    align-items: end;
}
}
@media only screen and (max-width : 767px) {
     .phone-area {
        display: block;
        margin: 40px 0 0;
        text-align: center;
    }
.dektop-area{
    display: none;
}
.main-banner .form-side {
    float: none;
    margin: 0 auto;
}
.main-banner .content-side {
    text-align: center;
}
.main-banner .dual-btn {
    justify-content: center;
}
.green-bar p {
    text-align: center;
}
    .showcase .parrot-tree {
        width: 124px;
        right: 8px;
    }
    .sp-green .row > div:nth-child(2) {
    border: none;
}
.sp-green .row > div:first-child, .sp-green .row > div:nth-child(2) {
    border-bottom: 2px solid #fff;
}
.openbook {
    top: 10px;
}
.treedesign {
    top: 0;
    height: 100%;
}
.counter-number {
    font-size: 35px;
    line-height: 33px;
}
.book-cta .container {
    text-align: center;
}
.book-cta .dual-btn {
    justify-content: center;
}
.abt-page-banner .content-side {
    margin: 0 0 30px;
}
.abt-page-banner .img-holder img {
    padding-left: 0;
}
.banner-tree {
    max-width: 210px;
}
.main-banner .content-side {
    margin: 0 0 30px;
}
        .shadow-box {
        top: -48px;
        left: 65px;
    }
    .treeleafsleft {
    width: 220px;
}
    .treeleafsright {
        max-width: 280px;
    }
   .green-bg-tsec {
    margin: 0 0 0;
}
.ser-pro-process .row > div
 {
        margin: 50px 0 30px;
    }
    .ser-pro-process {
    margin: 50px 0 0;
}
.green-bg-tsec .img-holder {
    margin: 0 0 0; 
}
header .navbar {
    background-color: #000000b3;
    backdrop-filter: blur(5px);
}
   .p-des-book {
    justify-content: center;
    text-align: center;
    margin: 0 0 15px;
}
.power-row .dual-btn {
    justify-content: center;
}

.map-sec {
    margin: 60px 0 -6px;
}
}
@media only screen and (max-width : 578px) {
.banner-heading {
    font-size: 30px;
    line-height: 35px;
}
.navbar-brand img {
        max-width: 120px;
    }
.scrolled .navbar-brand img {
    max-width: 100px;
}
.main-banner .form-side strong {
        font-size: 26px;
}
.main-banner .form-side {
        text-align: center;
        padding: 25px 25px 0;
}
.sec-head h2 {
    font-size: 30px;
    line-height: 30px;
}
.about-us .img-tree {
        width: 150px;
}
.about-us .pg-more-col {
    display: none;
}
.showcase .parrot-tree {
        width: 100px;
        right: 0;
}
.showcase .sec-head {
        padding: 0 0px;
}
    .counter-number {
        font-size: 26px;
        line-height: 27px;
    }
.sp-green {
    padding: 18px 15px;
}
.sp-green .row > div {
    padding-top: 7px;
    padding-bottom: 7px;
}
.counter-p p {
    font-size: 14px;
}
    .process-tree {
        width: 90px;
    }
        .ps-txt p {
        width: 100%;
            font-size: 13px;
    }
        .ps-txt {
        height: 162px;
    }
    .cta-tree-2,.cta-tree-1 {
    width: 120px;
}
.green-cta {
    padding: 50px 0;
}
.green-cta .dual-btn a {
    min-width: 140px;
}
.check-list li {
    margin: 0 0 6px;
}
.latest-pub,.services-sec {
    padding: 50px 0; 
}
.latest-pub .owl-item div {
    padding: 14px; 
}
.services-sec .cen-head p {
    max-width: 100%;
}
.ss-box strong {
    font-size: 14px;
    display: block;
    line-height: 16px;
    margin: 0 0 3px;
}
    .ss-box p {
        min-height: 105px;
        font-size: 13px;
        line-height: 17px;
    }
    .ss-box > div {
        padding: 35px 5px 0;
        min-height: 265px;     
    }
    .ss-icon {
    width: 65px;
    height: 65px;
    margin: 0 auto 10px;
}
.bookcta-tree {
    top: -35px;
    max-width: 180px;
}
.ss-icon img {
    max-width: 30px;
}
.book-cta {
    padding: 45px 0 37px; 
}
    .bookconcerns {
        max-width: 220px;
    }
        .book-cta .img-holder {
        margin: 50px 0 -70px;
    }
       .bookcta-tree-t1, .bookcta-tree-t2 {
        max-width: 80px;     
        top: 0;
    }
    .testi-sec .sec-head {
        padding: 0 0px;
    }
    .testi-sec {
    padding: 40px 0 30px;
    position: relative;
    overflow: hidden;
}
.testi-sec .slick-slide {
    padding: 18px 20px; 
        margin: 0 0;
}
.testi-sec .slick-slide strong:before {
    left: 16px;
    top: 20px;
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
}
.testi-sec .slick-slide strong:after {
    right: 20px;
    bottom: 15px;
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
}
.testi-sec .testi-slider strong {
    font-size: 20px;
    margin: 0 0 3px;
}
.vid-sec {
    padding: 0 0 20px;
}
.faq-sec .accordion-collapse {
    padding: 10px 40px 10px 0px;
}
.faq-sec .accordion-collapse.show {
    background-size: 60px;
}
.ftr-form .form-side {
    border-radius: 15px;
    padding: 20px 30px;
}
.ftr-info img {
    max-width: 130px;
}
.q-links strong, .ftr-con > strong {
    margin: 10px 0 12px;
}
.quotepop .modal-body {
    padding: 30px 21px 15px;
}
.latest-pub {
    overflow: hidden;
}
.about-us .img-tree {
        width: 130px;
        right: 0;
    }
    .range-slide .owl-nav .owl-prev {
    left: -10px;
}
   .range-slide .owl-nav .owl-next {
    right: -10px;
}
.year-of span:first-child {
    font-size: 30px;
    line-height: 30px;
}
.year-of {
    bottom: -40px;
    left: 50%;
    width: 150px;
    border: 3px solid var(--white-color);  
    padding: 10px 0;
    transform: translateX(-50%);
}
.abt-right-txt .row {
    flex-direction: column-reverse;
    gap: 30px;
}
.p-60 {
    padding: 30px 0;
}
.why-choose {
    padding: 40px 0;
}
    .shadow-box {
        display: none;
    }
    .spp-icon {
    box-shadow: 10px 10px 20px #00000052;
}
.you-box {
    display: none;
}
.faq-sec .accordion-item {
    margin: 0 0 10px;
}
.btn-style {
    padding: 10px 22px;
}
.contact-ftr-form {
    padding: 30px 30px;
    width: 95%;
}

}
@media only screen and (max-width : 480px) {}