/*------------------------------------------------------------------
[Master Stylesheet]
Theme Name:   Advisora - Business Consulting Html Template
Version:        1.0.0
-------------------------------------------------------------------*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------

1. General
   1.1 Theme Reset Style
   1.2 Global Elements

2. header
   2.1 navigation 

3. content
   3.1 Hero Static
   3.2 About Section
   3.3 Problem Solve Section
   3.4 Service Section
   3.5 Why choose Section
   3.6 Testimonial Section
   3.7 Case Section
   3.8 Contact Section

4. Footer

5. Home Style 2
   5.1 About Section S2
   5.2 Service Section S2
   5.3 Why Choose Section S2
   5.4 Team Section
   5.5 Cta Section
   5.6 Case Section S2
   5.7 Faq Section
   5.8 Blog Section

6. About Page

7. Service Single Section

8. Case Single Page

9. Blog Single Page

10. Blog Page Section

11. Contact Page Section

12. Error 404 Page


----------------------------------------------------------------*/
/*---------------------------------------------------------------
1. General
----------------------------------------------------------------*/
/*---------------------------
	Fonts
----------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Instrument+Sans:ital,wght@0,400..700;1,400..700&display=swap");
@font-face {
  font-family: "Libre Caslon Condensed";
  font-style: normal;
  font-weight: 400;
  src: local("Felidae Regular"), url("../fonts/LibreCaslonCondensed-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "Libre Caslon Condensed";
  font-style: normal;
  font-weight: 500;
  src: local("Felidae Regular"), url("../fonts/LibreCaslonCondensed-Medium.woff2") format("woff");
}
/* 1.1 Theme Reset Style */
html {
  font-size: 18px;
}

:root {
  scroll-behavior: unset;
}

body {
  font-family: "Instrument Sans";
  color: #202E05;
  background-color: #FAFFF3;
  font-size: 18px;
  font-size: 1rem;
  overflow-x: hidden;
}
@media (max-width: 767px) {
  body {
    font-size: 16px;
  }
}

p {
  font-size: 18px;
  color: #202E05;
  line-height: 1.8em;
  font-weight: 400;
}
@media (max-width: 767px) {
  p {
    font-size: 16px;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #202E05;
  font-family: "Libre Caslon Condensed";
  font-weight: 500;
}

ul {
  padding-left: 0;
  margin: 0;
  list-style: none;
}

a {
  text-decoration: none;
  transition: all 0.2s;
}

a:hover {
  text-decoration: none;
}

img {
  max-width: 100%;
}

.sr-only {
  display: none;
  opacity: 0;
  visibility: hidden;
}

.box-style {
  max-width: 1810px;
  margin: 0 auto;
}
@media (max-width: 1810px) {
  .box-style {
    margin-left: 15px;
    margin-right: 15px;
  }
}
@media (max-width: 767px) {
  .box-style {
    margin-left: 0;
    margin-right: 0;
  }
}

@media (min-width: 1400px) {
  .container {
    max-width: 1470px;
  }
}

/* 1.2 Global Elements */
.page-wrapper {
  position: relative;
  overflow: hidden;
}

@media (max-width: 1800px) {
  .page-wrap {
    overflow: hidden;
  }
}

.wow {
  visibility: hidden;
}

.fi:before {
  margin: 0;
}

.section-padding {
  padding: 110px 0;
}
@media (max-width: 991px) {
  .section-padding {
    padding: 90px 0;
  }
}
@media (max-width: 767px) {
  .section-padding {
    padding: 60px 0;
  }
}

/*** contact form error handling ***/
.contact-validation-active .error-handling-messages {
  width: 100%;
  margin-top: 15px;
}
.contact-validation-active label.error,
.contact-validation-active label.error2 {
  color: red;
  font-size: 0.7777777778rem;
  font-weight: normal;
  margin: 5px 0 0 0;
  text-align: left;
  display: block;
}
.contact-validation-active #c-loader,
.contact-validation-active #loader,
.contact-validation-active #loader2 {
  display: none;
  margin-top: 10px;
}
.contact-validation-active #c-loader i,
.contact-validation-active #loader i,
.contact-validation-active #loader2 i {
  font-size: 30px;
  font-size: 1.6666666667rem;
  color: #B5E717;
  display: inline-block;
  animation: rotating linear 2s infinite;
}
.contact-validation-active #success,
.contact-validation-active #success2,
.contact-validation-active #c-success,
.contact-validation-active #c-error,
.contact-validation-active #error,
.contact-validation-active #error2 {
  width: 100%;
  color: #fff;
  padding: 5px 10px;
  font-size: 16px;
  text-align: center;
  display: none;
}
@media (max-width: 767px) {
  .contact-validation-active #success,
  .contact-validation-active #success2,
  .contact-validation-active #c-success,
  .contact-validation-active #c-error,
  .contact-validation-active #error,
  .contact-validation-active #error2 {
    font-size: 15px;
  }
}
.contact-validation-active #c-success,
.contact-validation-active #success,
.contact-validation-active #success2 {
  background-color: rgb(0, 153.5, 0);
  border-left: 5px solid green;
  margin-bottom: 5px;
}
.contact-validation-active #c-error,
.contact-validation-active #error,
.contact-validation-active #error2 {
  background-color: rgb(255, 25.5, 25.5);
  border-left: 5px solid red;
}
@keyframes rotating {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.rotating {
  animation: rotating 5s alternate infinite;
}
@keyframes margin {
  0% {
    transform: translateY(-60px);
  }
  50% {
    transform: translateY(-50px);
  }
  100% {
    transform: translateY(-60px);
  }
}
@keyframes marginOdd {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-60px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes shine {
  100% {
    left: 125%;
  }
}
/*** back to top **/
.back-to-top {
  background-color: rgba(181, 231, 23, 0.8);
  width: 45px;
  height: 45px;
  line-height: 45px;
  border: 2px solid #B5E717;
  border-radius: 45px;
  text-align: center;
  display: none;
  position: fixed;
  z-index: 999;
  right: 15px;
  bottom: 15px;
  transition: all 0.2s;
}
@media (max-width: 991px) {
  .back-to-top {
    width: 35px;
    height: 35px;
    line-height: 35px;
  }
}
.back-to-top:hover {
  background-color: #B5E717;
}

.back-to-top i {
  font-size: 18px;
  font-size: 1rem;
  color: #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

/** for popup image ***/
.mfp-wrap {
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 99999;
}

.mfp-with-zoom .mfp-container,
.mfp-with-zoom.mfp-bg {
  opacity: 0;
  -webkit-backface-visibility: hidden;
  transition: all 0.3s ease-out;
}

.mfp-with-zoom.mfp-ready .mfp-container {
  opacity: 1;
}

.mfp-with-zoom.mfp-ready.mfp-bg {
  opacity: 0.8;
}

.mfp-with-zoom.mfp-removing .mfp-container,
.mfp-with-zoom.mfp-removing.mfp-bg {
  opacity: 0;
}

/*** for fancybox video ***/
.fancybox-overlay {
  background: rgba(0, 0, 0, 0.9);
  z-index: 9999;
}

.fancybox-wrap {
  z-index: 99999;
}

/*** for fancybox video ***/
.fancybox-overlay {
  background: rgba(0, 0, 0, 0.9);
  z-index: 999999;
}

.fancybox-wrap {
  z-index: 9999999;
}

.new_img-animet {
  visibility: hidden;
  overflow: hidden;
}

/* cursor css */
@media (min-width: 992px) {
  .cursor {
    width: 45px;
    height: 45px;
    border-radius: 100%;
    border: 1px solid #6b890d;
    transition: all 300ms linear;
    position: fixed;
    pointer-events: none;
    left: 0;
    top: 0;
    transform: translate(calc(-50% + 15px), -50%);
    z-index: 99999;
  }
  .cursor2 {
    width: 13px;
    height: 13px;
    border-radius: 100%;
    background-color: #6b890d;
    opacity: 0.3;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    transition: width 0.3s, height 0.3s, opacity 0.3s;
    z-index: 99999;
  }
  .hover {
    background-color: #6b890d;
    opacity: 0.2;
    border: 1px solid transparent;
  }
  .cursorinnerhover {
    width: 45px;
    height: 45px;
    opacity: 0.5;
  }
}
.wpo-section-title,
.wpo-section-title-s2,
.wpo-section-title-s3 {
  text-align: center;
  margin-top: -10px;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .wpo-section-title,
  .wpo-section-title-s2,
  .wpo-section-title-s3 {
    margin-top: 0;
    margin-bottom: 30px;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
}
.wpo-section-title .title-top span,
.wpo-section-title-s2 .title-top span,
.wpo-section-title-s3 .title-top span {
  color: #202E05;
  font-size: 14px;
  font-weight: 500;
  line-height: 134%;
  padding-left: 14px;
  text-transform: uppercase;
  letter-spacing: 0.64px;
  position: relative;
}
.wpo-section-title .title-top span::before,
.wpo-section-title-s2 .title-top span::before,
.wpo-section-title-s3 .title-top span::before {
  position: absolute;
  content: "";
  top: 5px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #BFE734;
}
.wpo-section-title h2,
.wpo-section-title-s2 h2,
.wpo-section-title-s3 h2 {
  margin: 0;
  color: #202E05;
  font-size: 48px;
  font-weight: 400;
  line-height: 105%;
  padding-top: 15px;
  letter-spacing: -0.32px;
  max-width: 690px;
}
@media (max-width: 1199px) {
  .wpo-section-title h2,
  .wpo-section-title-s2 h2,
  .wpo-section-title-s3 h2 {
    font-size: 40px;
  }
}
@media (max-width: 991px) {
  .wpo-section-title h2,
  .wpo-section-title-s2 h2,
  .wpo-section-title-s3 h2 {
    font-size: 35px;
    margin: 0 auto;
  }
}
@media (max-width: 575px) {
  .wpo-section-title h2,
  .wpo-section-title-s2 h2,
  .wpo-section-title-s3 h2 {
    font-size: 30px;
    padding-top: 8px;
  }
}
@media (max-width: 425px) {
  .wpo-section-title h2,
  .wpo-section-title-s2 h2,
  .wpo-section-title-s3 h2 {
    font-size: 25px;
  }
}
.wpo-section-title h3,
.wpo-section-title-s2 h3,
.wpo-section-title-s3 h3 {
  margin: 0;
  font-size: 36px;
  font-weight: 400;
  line-height: 130%;
  padding-top: 16px;
}
@media (max-width: 1199px) {
  .wpo-section-title h3,
  .wpo-section-title-s2 h3,
  .wpo-section-title-s3 h3 {
    font-size: 30px;
    line-height: 120%;
  }
}
@media (max-width: 767px) {
  .wpo-section-title h3,
  .wpo-section-title-s2 h3,
  .wpo-section-title-s3 h3 {
    font-size: 25px;
    padding-top: 8px;
  }
}
@media (max-width: 575px) {
  .wpo-section-title h3,
  .wpo-section-title-s2 h3,
  .wpo-section-title-s3 h3 {
    font-size: 22px;
  }
}
.wpo-section-title p,
.wpo-section-title-s2 p,
.wpo-section-title-s3 p {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  padding-top: 15px;
}
@media (max-width: 575px) {
  .wpo-section-title p,
  .wpo-section-title-s2 p,
  .wpo-section-title-s3 p {
    font-size: 14px;
    line-height: 140%;
    padding-top: 10px;
  }
}

.wpo-section-title-s2,
.wpo-section-title-s3 {
  text-align: start;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
@media (max-width: 991px) {
  .wpo-section-title-s2,
  .wpo-section-title-s3 {
    text-align: center;
    justify-content: center;
    align-items: center;
  }
}
.wpo-section-title-s2 h2,
.wpo-section-title-s3 h2 {
  max-width: 690px;
}
@media (max-width: 991px) {
  .wpo-section-title-s2 .wpo-title-btn,
  .wpo-section-title-s3 .wpo-title-btn {
    margin-top: 15px;
  }
}

.wpo-section-title-s3 .title-top span {
  color: #102D06;
}
.wpo-section-title-s3 .title-top span::before {
  background-color: #102D06;
}
.wpo-section-title-s3 h2 {
  color: #102D06;
}

.theme-btn,
.theme-btn-s2,
.theme-btn-s3,
.theme-btn-s4,
.theme-btn-s5 {
  border: 0;
  z-index: 1;
  position: relative;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  font-family: "Instrument Sans";
  display: flex;
  align-items: center;
  background-color: transparent;
}
.theme-btn span,
.theme-btn-s2 span,
.theme-btn-s3 span,
.theme-btn-s4 span,
.theme-btn-s5 span {
  padding: 16px 30px;
  text-transform: uppercase;
  color: #202E05;
  font-size: 14px;
  font-weight: 600;
  border-radius: 63px;
  line-height: 125%;
  background-color: #B5E717;
  letter-spacing: 0.8px;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 767px) {
  .theme-btn span,
  .theme-btn-s2 span,
  .theme-btn-s3 span,
  .theme-btn-s4 span,
  .theme-btn-s5 span {
    padding: 12px 24px;
  }
}
@media (max-width: 575px) {
  .theme-btn span,
  .theme-btn-s2 span,
  .theme-btn-s3 span,
  .theme-btn-s4 span,
  .theme-btn-s5 span {
    padding: 12px 16px;
  }
}
.theme-btn i,
.theme-btn-s2 i,
.theme-btn-s3 i,
.theme-btn-s4 i,
.theme-btn-s5 i {
  width: 49px;
  height: 49px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 49px;
  background: #B5E717;
  color: #202E05;
  transition: all 600ms ease;
  -webkit-transition: all 600ms ease;
  -ms-transition: all 600ms ease;
  -o-transition: all 600ms ease;
  -moz-transition: all 600ms ease;
}
@media (max-width: 767px) {
  .theme-btn i,
  .theme-btn-s2 i,
  .theme-btn-s3 i,
  .theme-btn-s4 i,
  .theme-btn-s5 i {
    width: 40px;
    height: 40px;
  }
}
.theme-btn:hover span, .theme-btn:focus span, .theme-btn:active span,
.theme-btn-s2:hover span,
.theme-btn-s2:focus span,
.theme-btn-s2:active span,
.theme-btn-s3:hover span,
.theme-btn-s3:focus span,
.theme-btn-s3:active span,
.theme-btn-s4:hover span,
.theme-btn-s4:focus span,
.theme-btn-s4:active span,
.theme-btn-s5:hover span,
.theme-btn-s5:focus span,
.theme-btn-s5:active span {
  background-color: #E8FA9C;
}
.theme-btn:hover i, .theme-btn:focus i, .theme-btn:active i,
.theme-btn-s2:hover i,
.theme-btn-s2:focus i,
.theme-btn-s2:active i,
.theme-btn-s3:hover i,
.theme-btn-s3:focus i,
.theme-btn-s3:active i,
.theme-btn-s4:hover i,
.theme-btn-s4:focus i,
.theme-btn-s4:active i,
.theme-btn-s5:hover i,
.theme-btn-s5:focus i,
.theme-btn-s5:active i {
  background-color: #E8FA9C;
  transform: scale(-1) rotate(180deg);
}

.theme-btn-s2 span {
  background: #FBFEE7;
}
.theme-btn-s2 i {
  background: #FBFEE7;
}
.theme-btn-s2:hover span, .theme-btn-s2:focus span, .theme-btn-s2:active span {
  background-color: #BFE734;
}
.theme-btn-s2:hover i, .theme-btn-s2:focus i, .theme-btn-s2:active i {
  background-color: #BFE734;
}

.theme-btn-s3 span {
  background: #202E05;
  color: #BFE734;
}
.theme-btn-s3 i {
  background: #202E05;
}
.theme-btn-s3 .buttom-hover {
  display: none;
}
.theme-btn-s3:hover span, .theme-btn-s3:focus span, .theme-btn-s3:active span {
  background-color: #405413;
  color: #FBFEE7;
}
.theme-btn-s3:hover i, .theme-btn-s3:focus i, .theme-btn-s3:active i {
  background-color: #405413;
}
.theme-btn-s3:hover .buttom-icon, .theme-btn-s3:focus .buttom-icon, .theme-btn-s3:active .buttom-icon {
  display: none;
}
.theme-btn-s3:hover .buttom-hover, .theme-btn-s3:focus .buttom-hover, .theme-btn-s3:active .buttom-hover {
  display: block;
}

.theme-btn-s5 {
  background: transparent;
}
.theme-btn-s5 span {
  background: transparent;
  color: #102D06;
  border: 1px solid #102D06;
}
.theme-btn-s5 i {
  background: transparent;
  border: 1px solid #102D06;
}
.theme-btn-s5 .buttom-hover {
  display: none;
}
.theme-btn-s5:hover span, .theme-btn-s5:focus span, .theme-btn-s5:active span {
  background-color: #102D06;
  color: #C8F8A9;
}
.theme-btn-s5:hover i, .theme-btn-s5:focus i, .theme-btn-s5:active i {
  background-color: #102D06;
}
.theme-btn-s5:hover .buttom-icon, .theme-btn-s5:focus .buttom-icon, .theme-btn-s5:active .buttom-icon {
  display: none;
}
.theme-btn-s5:hover .buttom-hover, .theme-btn-s5:focus .buttom-hover, .theme-btn-s5:active .buttom-hover {
  display: block;
}

.theme-btn-s4 span {
  background: #C8F8A9;
  color: #2B6014;
}
.theme-btn-s4 i {
  background: #C8F8A9;
}
.theme-btn-s4 .buttom-hover {
  display: none;
}
.theme-btn-s4:hover span, .theme-btn-s4:focus span, .theme-btn-s4:active span {
  background-color: #9AEF67;
  color: #102D06;
}
.theme-btn-s4:hover i, .theme-btn-s4:focus i, .theme-btn-s4:active i {
  background-color: #9AEF67;
}
.theme-btn-s4:hover .buttom-icon, .theme-btn-s4:focus .buttom-icon, .theme-btn-s4:active .buttom-icon {
  display: none;
}
.theme-btn-s4:hover .buttom-hover, .theme-btn-s4:focus .buttom-hover, .theme-btn-s4:active .buttom-hover {
  display: block;
}

.form input,
.form textarea,
.form select {
  border-color: rgb(191.25, 191.25, 191.25);
  border-radius: 0;
  outline: 0;
  box-shadow: none;
  color: rgb(89.25, 89.25, 89.25);
  font-style: normal;
}
.form input:focus,
.form textarea:focus,
.form select:focus {
  border-color: #B5E717;
  -o-box-shadow: 0 0 5px 0 rgb(196.0826771654, 236.437007874, 68.562992126);
  -ms-box-shadow: 0 0 5px 0 rgb(196.0826771654, 236.437007874, 68.562992126);
  box-shadow: 0 0 5px 0 rgb(196.0826771654, 236.437007874, 68.562992126);
}
.form ::-webkit-input-placeholder {
  font-style: 14px;
  font-style: italic;
  color: rgb(89.25, 89.25, 89.25);
}
.form :-moz-placeholder {
  font-style: 14px;
  font-style: italic;
  color: rgb(89.25, 89.25, 89.25);
}
.form ::-moz-placeholder {
  font-style: 14px;
  font-style: italic;
  color: rgb(89.25, 89.25, 89.25);
}
.form :-ms-input-placeholder {
  font-style: 14px;
  font-style: italic;
  color: rgb(89.25, 89.25, 89.25);
}
.form select {
  font-style: normal;
  background: url(../images/select-icon.png) no-repeat right center;
  display: inline-block;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}
.form select::-ms-expand {
  /* for IE 11 */
  display: none;
}
.form ::-moz-placeholder {
  font-style: normal;
}
.form ::placeholder {
  font-style: normal;
}

.social-links {
  overflow: hidden;
}
.social-links li {
  float: left;
  width: 35px;
  height: 35px;
  margin-right: 1px;
}
.social-links li a {
  background-color: rgb(196.0826771654, 236.437007874, 68.562992126);
  width: 35px;
  height: 35px;
  line-height: 35px;
  display: block;
  color: #fff;
  text-align: center;
}
.social-links li a:hover {
  background-color: #B5E717;
}

.wpo-page-title,
.wpo-page-title-s2 {
  min-height: 445px;
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  z-index: 1;
  border-bottom: 1px solid #E4EADB;
}
@media (max-width: 991px) {
  .wpo-page-title,
  .wpo-page-title-s2 {
    min-height: 380px;
  }
}
@media (max-width: 767px) {
  .wpo-page-title,
  .wpo-page-title-s2 {
    min-height: 300px;
  }
}
.wpo-page-title .wpo-breadcumb-wrap,
.wpo-page-title-s2 .wpo-breadcumb-wrap {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.wpo-page-title .wpo-breadcumb-wrap .top-title span,
.wpo-page-title-s2 .wpo-breadcumb-wrap .top-title span {
  color: #202E05;
  font-size: 14px;
  font-weight: 500;
  line-height: 134%;
  padding-left: 14px;
  text-transform: uppercase;
  letter-spacing: 0.64px;
  position: relative;
}
.wpo-page-title .wpo-breadcumb-wrap .top-title span::before,
.wpo-page-title-s2 .wpo-breadcumb-wrap .top-title span::before {
  position: absolute;
  content: "";
  top: 5px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #BFE734;
}
.wpo-page-title .wpo-breadcumb-wrap h2,
.wpo-page-title-s2 .wpo-breadcumb-wrap h2 {
  margin: 0;
  font-weight: 400;
  font-size: 64px;
  line-height: 105%;
  letter-spacing: -0.48px;
  color: #102D06;
  padding-top: 10px;
}
@media (max-width: 1399px) {
  .wpo-page-title .wpo-breadcumb-wrap h2,
  .wpo-page-title-s2 .wpo-breadcumb-wrap h2 {
    font-size: 58px;
  }
}
@media (max-width: 1199px) {
  .wpo-page-title .wpo-breadcumb-wrap h2,
  .wpo-page-title-s2 .wpo-breadcumb-wrap h2 {
    font-size: 48px;
  }
}
@media (max-width: 767px) {
  .wpo-page-title .wpo-breadcumb-wrap h2,
  .wpo-page-title-s2 .wpo-breadcumb-wrap h2 {
    font-size: 44px;
  }
}
@media (max-width: 575px) {
  .wpo-page-title .wpo-breadcumb-wrap h2,
  .wpo-page-title-s2 .wpo-breadcumb-wrap h2 {
    font-size: 40px;
  }
}
@media (max-width: 425px) {
  .wpo-page-title .wpo-breadcumb-wrap h2,
  .wpo-page-title-s2 .wpo-breadcumb-wrap h2 {
    font-size: 35px;
  }
}
.wpo-page-title .wpo-breadcumb-wrap p,
.wpo-page-title-s2 .wpo-breadcumb-wrap p {
  margin: 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 145%;
  color: #102D06;
  padding-top: 15px;
  max-width: 500px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .wpo-page-title .wpo-breadcumb-wrap p,
  .wpo-page-title-s2 .wpo-breadcumb-wrap p {
    padding-top: 8px;
    font-size: 14px;
    line-height: 130%;
  }
}
.wpo-page-title .wpo-breadcumb-wrap .page-title-btn,
.wpo-page-title-s2 .wpo-breadcumb-wrap .page-title-btn {
  display: inline-block;
  padding-top: 30px;
}
@media (max-width: 767px) {
  .wpo-page-title .wpo-breadcumb-wrap .page-title-btn,
  .wpo-page-title-s2 .wpo-breadcumb-wrap .page-title-btn {
    padding-top: 20px;
  }
}

.preloader {
  background-color: #202E05;
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 1111111111111111200;
  overflow: hidden;
}
.preloader .vertical-centered-box {
  position: absolute;
  width: 100%;
  height: 100%;
  text-align: center;
}
.preloader .vertical-centered-box:after {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -0.25em;
}
.preloader .vertical-centered-box .content {
  box-sizing: border-box;
  display: inline-block;
  vertical-align: middle;
  text-align: left;
  font-size: 0;
}
.preloader * {
  transition: all 0.3s;
}
.preloader .loader-circle {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  margin-left: -60px;
  margin-top: -60px;
}
.preloader .loader-line-mask {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 60px;
  height: 120px;
  margin-left: -60px;
  margin-top: -60px;
  overflow: hidden;
  transform-origin: 60px 60px;
  -webkit-mask-image: -webkit-linear-gradient(top, #000000, rgba(0, 0, 0, 0));
  animation: rotate 1.2s infinite linear;
}
.preloader .loader-line-mask .loader-line {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5);
}
.preloader #particles-background,
.preloader #particles-foreground {
  left: -51%;
  top: -51%;
  width: 202%;
  height: 202%;
  transform: scale3d(0.5, 0.5, 1);
}
.preloader #particles-background {
  background: #2c2d44;
  background-image: linear-gradient(45deg, #3f3251 2%, #002025 100%);
}
.preloader lesshat-selector {
  -lh-property: 0;
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.preloader [not-existing] {
  zoom: 1;
}
.preloader lesshat-selector {
  -lh-property: 0;
}
@keyframes fade {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.25;
  }
}
.preloader [not-existing] {
  zoom: 1;
}
.preloader lesshat-selector {
  -lh-property: 0;
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.preloader [not-existing] {
  zoom: 1;
}

/**** pagination ****/
.pagination-wrapper {
  text-align: center;
  margin-top: 20px;
}
@media (max-width: 991px) {
  .pagination-wrapper {
    text-align: left;
    margin-top: 0;
  }
}
.pagination-wrapper .pg-pagination {
  display: inline-block;
  overflow: hidden;
  list-style-type: none;
  text-align: center;
}
.pagination-wrapper .pg-pagination li {
  float: left;
  margin-right: 10px;
}
.pagination-wrapper .pg-pagination li:last-child {
  margin-right: 0;
}
.pagination-wrapper .pg-pagination li:last-child a {
  display: flex;
  align-items: center;
  gap: 5px;
  width: unset;
  height: unset;
  background-color: transparent;
}
.pagination-wrapper .pg-pagination li:last-child a:hover {
  background-color: transparent;
  color: #202E05;
}
.pagination-wrapper .pg-pagination li a {
  width: 45px;
  height: 45px;
  line-height: 45px;
  font-size: 14px;
  font-size: 0.7777777778rem;
  font-weight: 600;
  background: #F1F4E3;
  text-transform: uppercase;
  color: #202E05;
  letter-spacing: 0.32px;
  border-radius: 6px;
  display: block;
}
@media (max-width: 991px) {
  .pagination-wrapper .pg-pagination li a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 14px;
    font-size: 0.6666666667rem;
  }
}
.pagination-wrapper .pg-pagination .active a,
.pagination-wrapper .pg-pagination li a:hover {
  background: #7DA40C;
  color: #fff;
}
.pagination-wrapper .pg-pagination .fi:before {
  font-size: 14px;
}

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

.pagination-wrapper-right {
  text-align: right;
}
@media screen and (min-width: 1200px) {
  .pagination-wrapper-right {
    padding-right: 50px;
  }
}
@media (max-width: 991px) {
  .pagination-wrapper-right {
    margin-top: 45px;
    text-align: left;
  }
}

/*--------------------------------------------------------------
2. header
--------------------------------------------------------------*/
/* 2.1 navigation */
.wpo-site-header {
  /* navigation open and close btn hide for width screen */
  /* style for navigation less than 992px */
  /*navbar collaps less then 992px*/
  /*** cart-search-contact ***/
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}

.wpo-site-header .navigation {
  margin-bottom: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
}

.sticky-header {
  width: 100%;
  position: fixed;
  left: 0;
  top: -400px;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 1s;
  box-shadow: 0 -5px 15px rgba(8, 106, 216, 0.2901960784);
}

.sticky-on {
  opacity: 1;
  top: 0;
  visibility: visible;
}

.wpo-site-header .navigation > .container {
  position: relative;
}

@media (max-width: 991px) {
  .wpo-site-header .navigation {
    padding: 10px 0;
  }
}
.wpo-site-header #navbar {
  transition: all 0.5s;
}

.wpo-site-header #navbar > ul li a:hover,
.wpo-site-header #navbar > ul li a.active,
.wpo-site-header #navbar > ul li a:focus {
  text-decoration: none;
  color: #318102;
}

@media screen and (min-width: 992px) {
  .wpo-site-header #navbar {
    /*** hover effect ***/
    justify-content: center;
  }
  .wpo-site-header #navbar li {
    position: relative;
    z-index: 1;
  }
  .wpo-site-header #navbar > ul > li > a:before {
    position: absolute;
    left: 0;
    top: 6px;
    width: 100%;
    height: 46px;
    border-radius: 48px;
    background: #FBFEE7;
    content: "";
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: -1;
  }
  .wpo-site-header #navbar > ul > li > a:hover:before,
  .wpo-site-header #navbar > ul > li > a.active:before {
    opacity: 1;
    visibility: visible;
  }
  .wpo-site-header #navbar > ul > li > .sub-menu > .menu-item-has-children > a {
    position: relative;
  }
  .wpo-site-header #navbar > ul > li > .sub-menu > .menu-item-has-children > a:before {
    font-family: "themify";
    content: "\e649";
    font-size: 11px;
    font-size: 0.73333rem;
    position: absolute;
    right: 15px;
    top: 58%;
    transform: translateY(-50%);
  }
  .wpo-site-header #navbar > ul > li:hover > .sub-menu {
    top: 100%;
    visibility: visible;
    opacity: 1;
  }
  .wpo-site-header #navbar .sub-menu > li:hover > .sub-menu {
    left: 100%;
    visibility: visible;
    opacity: 1;
  }
}
.wpo-site-header .container-fluid {
  display: block;
}
@media (max-width: 991px) {
  .wpo-site-header .container-fluid {
    padding-right: 0;
  }
}

@media (max-width: 1399px) {
  .wpo-site-header #navbar > ul > li > a:before {
    top: 6px;
    height: 42px;
  }
}
@media (max-width: 991px) {
  .wpo-site-header {
    /* class for show hide navigation */
  }
  .wpo-site-header .row {
    flex-wrap: nowrap;
  }
  .wpo-site-header .container {
    width: 100%;
    max-width: 100%;
  }
  .wpo-site-header .header-right {
    right: 15px;
  }
}
@media (max-width: 991px) and (max-width: 425px) {
  .wpo-site-header .header-right {
    right: 10px;
  }
}
@media (max-width: 991px) {
  .wpo-site-header .navbar-header button span {
    background-color: #fff;
    width: 20px;
    display: block;
    height: 2px;
    margin-bottom: 5px;
  }
  .wpo-site-header .navbar-header button span:last-child {
    margin: 0;
  }
}
.wpo-site-header #navbar {
  background: rgba(251, 254, 231, 0.13);
  backdrop-filter: blur(20px);
  border-radius: 50px;
  max-width: 678px;
  margin: 0 auto;
}
@media (max-width: 1399px) {
  .wpo-site-header #navbar {
    max-width: 486px;
  }
}
@media (max-width: 1199px) {
  .wpo-site-header #navbar {
    max-width: 434px;
  }
}
@media (max-width: 991px) {
  .wpo-site-header #navbar {
    border-radius: 0;
    max-width: unset;
  }
}
.wpo-site-header #navbar ul {
  list-style: none;
}

@media (max-width: 991px) and (max-width: 991px) {
  .wpo-site-header #navbar {
    top: 0;
    visibility: visible;
    opacity: 1;
  }
}
@media (max-width: 991px) {
  .wpo-site-header #navbar > ul {
    z-index: 101;
  }
  .wpo-site-header #navbar ul a {
    color: #000;
  }
  .wpo-site-header #navbar ul a:hover,
  .wpo-site-header #navbar ul li.current a {
    color: #B5E717;
  }
  .wpo-site-header #navbar .close-navbar .ti-close {
    position: relative;
    top: 1px;
  }
  .wpo-site-header .navbar-toggler .first-angle,
  .wpo-site-header .navbar-toggler .last-angle {
    transition: all 0.3s;
  }
  .wpo-site-header .x-close .middle-angle {
    opacity: 0;
  }
  .wpo-site-header .x-close .first-angle {
    position: absolute;
    -webkit-transform: rotate(-44deg);
    top: 16px;
    left: 10px;
  }
  .wpo-site-header .x-close .last-angle {
    -webkit-transform: rotate(44deg);
    position: absolute;
    top: 16px;
    right: 10px;
  }
}
@media (max-width: 767px) {
  .wpo-site-header .navbar-header .navbar-brand {
    font-size: 24px;
  }
  .wpo-site-header #navbar .navbar-nav {
    margin: 0;
  }
}
@media (max-width: 991px) {
  .wpo-site-header .navbar-collapse.collapse {
    display: none;
  }
  .wpo-site-header .navbar-collapse.collapse.in {
    display: block;
  }
  .wpo-site-header .navbar-header .collapse,
  .wpo-site-header .navbar-toggle {
    display: block;
  }
  .wpo-site-header .navbar-header {
    float: none;
    position: relative;
    z-index: 99;
    text-align: center;
  }
  .wpo-site-header .navbar-right {
    float: none;
  }
  .wpo-site-header .navbar-nav {
    float: none;
  }
  .wpo-site-header .navbar-nav > li {
    float: none;
  }
}
.wpo-site-header .header-right {
  display: flex;
  justify-content: flex-end;
  z-index: 991;
  position: relative;
  align-items: center;
}
@media (max-width: 991px) {
  .wpo-site-header .header-right .close-form .theme-btn span {
    display: none;
  }
}

.wpo-site-header .header-right button {
  padding: 0;
  border: 0;
  outline: 0;
}

.wpo-site-header .header-right > div {
  float: left;
  position: relative;
  margin-right: 8px;
}

.wpo-site-header .header-right > div:last-child {
  margin: 0 0 0 15px;
  position: relative;
}
@media (max-width: 1199px) {
  .wpo-site-header .header-right > div:last-child {
    margin: 0 0 0 10px;
  }
}
@media (max-width: 991px) {
  .wpo-site-header .header-right > div:last-child {
    margin: 0;
  }
}

@media (max-width: 991px) {
  .page-wrapper {
    transition: all 0.3s;
  }
  .body-overlay:before {
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    position: absolute;
    left: 0;
    top: 0;
    z-index: 10;
    transition: all 0.3s;
  }
}
.wpo-site-header .navigation > .container {
  position: relative;
}
.wpo-site-header #navbar {
  transition: all 0.5s;
}
.wpo-site-header #navbar > ul li a:active,
.wpo-site-header #navbar > ul li a:hover {
  text-decoration: none;
  color: #318102;
}
@media screen and (min-width: 992px) {
  .wpo-site-header #navbar li {
    position: relative;
  }
  .wpo-site-header #navbar > ul > li > a {
    padding: 20px 22px;
    display: block;
    position: relative;
    text-transform: uppercase;
    color: #FBFEE7;
    font-size: 14px;
    font-weight: 500;
    line-height: 134%;
    letter-spacing: 1.28px;
    font-family: "Instrument Sans";
    z-index: 11;
  }
  .wpo-site-header #navbar > ul .sub-menu {
    background-color: #fff;
    box-shadow: 0px 2px 20px 0px rgba(62, 65, 159, 0.09);
    width: 230px;
    position: absolute;
    padding: 20px 0;
    left: 0;
    top: 110%;
    z-index: 10;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s;
    transform: scaleY(0);
    transform-origin: center top 0;
    transition: all 0.3s ease-in-out 0s;
    -webkit-transition: all 0.3s ease-in-out 0s;
  }
  .wpo-site-header #navbar > ul > li .sub-menu a {
    font-size: 16px;
    display: block;
    padding: 10px 15px;
    color: #202E05;
    position: relative;
    overflow: hidden;
    font-weight: 600;
    text-transform: capitalize;
  }
  .wpo-site-header #navbar > ul > li .sub-menu a:after {
    position: absolute;
    left: 15px;
    bottom: 0;
    width: 0;
    height: 3px;
    background: #318102;
    content: "";
    transition: all 0.3s;
    border-radius: 5px;
  }
  .wpo-site-header #navbar > ul > li .sub-menu a:hover, .wpo-site-header #navbar > ul > li .sub-menu a.active {
    color: #318102;
  }
  .wpo-site-header #navbar > ul > li .sub-menu a:hover:after, .wpo-site-header #navbar > ul > li .sub-menu a.active:after {
    width: 40px;
    opacity: 1;
    visibility: visible;
  }
  .wpo-site-header #navbar > ul > li > .sub-menu .sub-menu {
    left: 110%;
    top: 0;
    transition: all 0.3s;
    transform: none;
    transform-origin: none;
    transition: all 0.3s ease-in-out 0s;
  }
  .wpo-site-header #navbar > ul > li > .sub-menu > .menu-item-has-children > a {
    position: relative;
  }
  .wpo-site-header #navbar > ul > li > .sub-menu > .menu-item-has-children > a:before {
    font-family: "themify";
    content: "\e649";
    font-size: 11px;
    font-size: 0.6111111111rem;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
  }
  .wpo-site-header #navbar {
    /*** hover effect ***/
  }
  .wpo-site-header #navbar > ul > li:hover > .sub-menu {
    top: 100%;
    visibility: visible;
    opacity: 1;
    transform: scaleY(100%);
    -webkit-transform: scaleY(100%);
  }
  .wpo-site-header #navbar .sub-menu > li:hover > .sub-menu {
    left: 100%;
    visibility: visible;
    opacity: 1;
  }
}
@media (max-width: 991px) {
  .wpo-site-header #navbar > ul > li a {
    display: block;
    font-size: 15px;
    font-size: 0.8333333333rem;
    color: #fff;
    font-weight: 600;
  }
  .wpo-site-header #navbar > ul > li a:hover, .wpo-site-header #navbar > ul > li a.active {
    color: #fff;
  }
  .wpo-site-header #navbar > ul .sub-menu > li:last-child {
    border-bottom: 0;
    color: #fff;
  }
  .wpo-site-header #navbar > ul > li > .sub-menu a {
    padding: 8px 15px 8px 45px;
  }
  .wpo-site-header #navbar > ul > li > .sub-menu .sub-menu a {
    padding: 8px 15px 8px 65px;
  }
  .wpo-site-header #navbar > ul .menu-item-has-children > a {
    position: relative;
    color: #fff;
  }
  .wpo-site-header #navbar > ul .menu-item-has-children > a:hover, .wpo-site-header #navbar > ul .menu-item-has-children > a.active {
    color: #fff;
  }
  .wpo-site-header #navbar > ul .menu-item-has-children > a:before {
    font-family: "themify";
    content: "\e649";
    font-size: 11px;
    font-size: 0.6111111111rem;
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s;
  }
  .wpo-site-header #navbar > ul .menu-item-has-children > a.rotate:before {
    transform: rotate(90deg);
    top: 29%;
  }
  .wpo-site-header #navbar > ul .menu-item-has-children > a.rotate {
    color: #fff;
  }
}
.wpo-site-header {
  /* navigation open and close btn hide for width screen */
}
@media screen and (min-width: 992px) {
  .wpo-site-header .navbar-header .open-btn {
    display: none;
  }
  .wpo-site-header #navbar .close-navbar {
    display: none;
  }
}
.wpo-site-header .menu-close {
  display: none;
}
.wpo-site-header {
  /* style for navigation less than 992px */
}
@media (max-width: 991px) {
  .wpo-site-header .container {
    width: 100%;
  }
  .wpo-site-header .mobail-menu button {
    background-color: #B5E717;
    width: 40px;
    height: 35px;
    border: 0;
    padding: 5px 10px;
    outline: 0;
    position: relative;
    z-index: 20;
  }
  .wpo-site-header .mobail-menu button:focus {
    outline: none;
    box-shadow: none;
  }
  .wpo-site-header .mobail-menu button span {
    background-color: #202E05;
    width: 20px;
    display: block;
    height: 2px;
    margin-bottom: 4px;
  }
  .wpo-site-header .mobail-menu button span.first-angle {
    margin-top: 2px;
  }
  .wpo-site-header .mobail-menu button span:last-child {
    margin: 0;
  }
  .wpo-site-header .mobail-menu button .sr-only {
    display: none;
    opacity: 0;
    visibility: hidden;
  }
  .wpo-site-header #navbar {
    background: #202E05;
    display: block;
    width: 300px;
    height: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    position: fixed;
    left: -320px;
    top: 0px;
    z-index: 999999;
    opacity: 0;
    visibility: hidden;
  }
  .wpo-site-header #navbar .navbar-nav {
    display: block;
  }
  .wpo-site-header #navbar > ul {
    position: relative;
    z-index: 101;
  }
  .wpo-site-header #navbar ul a {
    color: #000;
  }
  .wpo-site-header #navbar ul a:hover,
  .wpo-site-header #navbar ul li.current a {
    color: #B5E717;
  }
  .wpo-site-header #navbar .navbar-nav {
    height: 100%;
    overflow: auto;
    padding-bottom: 60px;
  }
  .wpo-site-header #navbar .close-navbar {
    background-color: #fff;
    width: 40px;
    height: 40px;
    color: #000;
    border: 0;
    outline: none;
    position: absolute;
    left: -41px;
    top: 90px;
    z-index: 20;
  }
  .wpo-site-header #navbar .close-navbar .ti-close {
    position: relative;
    top: 1px;
  }
  .wpo-site-header .menu-close {
    display: block;
    z-index: 99;
    background: none;
    text-align: center;
    color: #fff;
    border: 0;
    text-align: center;
    margin-left: auto;
    margin-top: 30px;
    margin-right: 30px;
    margin-bottom: 30px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border: 1px solid #fff;
  }
  .wpo-site-header {
    /* class for show hide navigation */
  }
  .wpo-site-header #navbar.slideInn {
    left: 0;
    opacity: 1;
    visibility: visible;
  }
  .wpo-site-header .navbar-toggler .first-angle,
  .wpo-site-header .navbar-toggler .last-angle {
    transition: all 0.3s;
  }
  .wpo-site-header .x-close .middle-angle {
    opacity: 0;
  }
  .wpo-site-header .x-close .first-angle {
    position: absolute;
    -webkit-transform: rotate(-44deg);
    top: 16px;
    left: 10px;
  }
  .wpo-site-header .x-close .last-angle {
    -webkit-transform: rotate(44deg);
    position: absolute;
    top: 16px;
    right: 10px;
  }
}
@media (max-width: 767px) {
  .wpo-site-header .navbar-header .navbar-brand {
    font-size: 24px;
  }
  .wpo-site-header #navbar .navbar-nav {
    margin: 0;
  }
}
.wpo-site-header .navbar-header .navbar-brand {
  display: block;
  padding-left: 0;
  margin: 0;
}
.wpo-site-header {
  /*navbar collaps less then 992px*/
}
@media (max-width: 991px) {
  .wpo-site-header .navbar-collapse.collapse {
    display: none;
  }
  .wpo-site-header .navbar-collapse.collapse.in {
    display: block;
  }
  .wpo-site-header .navbar-header .collapse,
  .wpo-site-header .navbar-toggle {
    display: block;
  }
  .wpo-site-header .navbar-header {
    float: none;
  }
  .wpo-site-header .navbar-right {
    float: none;
  }
  .wpo-site-header .navbar-nav {
    float: none;
  }
  .wpo-site-header .navbar-nav > li {
    float: none;
  }
}

.wpo-site-header {
  padding: 10px 50px;
}
@media (max-width: 1700px) {
  .wpo-site-header {
    padding: 10px 35px;
  }
}
@media (max-width: 1500px) {
  .wpo-site-header {
    padding: 10px 20px;
  }
}
@media (max-width: 1199px) {
  .wpo-site-header {
    padding: 10px 0;
  }
}

@media (max-width: 1499px) {
  .wpo-site-header #navbar > ul > li > a {
    font-size: 13px;
  }
}
@media (max-width: 1399px) {
  .wpo-site-header #navbar > ul > li > a {
    font-size: 12px;
    padding: 20px 10px;
  }
}
@media (max-width: 1199px) {
  .wpo-site-header #navbar > ul > li > a {
    padding: 20px 8px;
    font-size: 11px;
  }
}
@media (max-width: 991px) {
  .wpo-site-header {
    padding: 0;
  }
}
@media (max-width: 991px) {
  .wpo-site-header #navbar > ul > li > a {
    padding: 15px 30px;
    font-size: 15px;
  }
}
@media (max-width: 991px) {
  .wpo-site-header,
  .wpo-header-style-2 {
    z-index: 99999;
  }
}
.wpo-site-header .navigation.sticky-header {
  padding: 20px 80px;
  background-color: #102D06;
}
@media (max-width: 1700px) {
  .wpo-site-header .navigation.sticky-header {
    padding: 20px 35px;
  }
}
@media (max-width: 1500px) {
  .wpo-site-header .navigation.sticky-header {
    padding: 20px;
  }
}
@media (max-width: 1199px) {
  .wpo-site-header .navigation.sticky-header {
    padding: 20px 0;
  }
}

/* header-style-s2 */
.header-style-s2 {
  position: relative;
  padding-top: 0;
  padding-bottom: 0;
}
@media (max-width: 1399px) {
  .header-style-s2 {
    padding: 0;
  }
}
@media (max-width: 991px) {
  .header-style-s2 .theme-btn-s4 span {
    display: none;
  }
}
.header-style-s2 #navbar > ul > li > a {
  color: #102D06;
  padding: 30px 22px;
}
@media (max-width: 1399px) {
  .header-style-s2 #navbar > ul > li > a {
    padding: 30px 9px;
  }
}
@media (max-width: 991px) {
  .header-style-s2 #navbar > ul > li > a {
    padding: 15px 30px;
  }
}
.header-style-s2 #navbar > ul > li > a::before {
  display: none;
}
@media (max-width: 991px) {
  .header-style-s2 #navbar > ul > li > a {
    color: #fff;
  }
}
.header-style-s2 #navbar {
  background-color: transparent;
  max-width: unset;
}
@media (max-width: 991px) {
  .header-style-s2 #navbar {
    background-color: #202E05;
  }
}
.header-style-s2 .navigation.sticky-header {
  padding-top: 0;
  padding-bottom: 0;
  background-color: #FBFEE7;
}
@media (max-width: 991px) {
  .header-style-s2 .navigation.sticky-header {
    padding: 20px 0;
  }
}
.header-style-s2 .navigation.sticky-header #navbar > ul > li > a {
  padding: 40px 22px;
}
@media (max-width: 1399px) {
  .header-style-s2 .navigation.sticky-header #navbar > ul > li > a {
    padding: 40px 9px;
  }
}

/* header-style-s3 */
.header-style-s3 {
  position: relative;
}
.header-style-s3 #navbar {
  background-color: #202E05;
}
.header-style-s3 .navigation.sticky-header {
  background-color: #FBFEE7;
}

/*--------------------------------------------------------------
3. content
--------------------------------------------------------------*/
/* 3.1 Hero Static */
.wpo-hero-static {
  position: relative;
  height: 1036px;
  background-image: url(../images/hero/shape.png);
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
@media (max-width: 1399px) {
  .wpo-hero-static {
    height: 1000px;
  }
}
@media (max-width: 1199px) {
  .wpo-hero-static {
    height: 850px;
  }
}
@media (max-width: 991px) {
  .wpo-hero-static {
    height: auto;
  }
}
.wpo-hero-static .hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding-bottom: 110px;
}
@media (max-width: 991px) {
  .wpo-hero-static .hero-content {
    padding-bottom: 90px;
    padding-top: 480px;
  }
}
@media (max-width: 767px) {
  .wpo-hero-static .hero-content {
    padding-bottom: 60px;
    padding-top: 300px;
  }
}
@media (max-width: 575px) {
  .wpo-hero-static .hero-content {
    padding-top: 250px;
  }
}
.wpo-hero-static .hero-content p {
  margin: 0;
  color: #FBFEE7;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.64px;
  padding-right: 15px;
  padding: 10px 12px 10px 6px;
  margin-bottom: 25px;
  line-height: 109%;
  border-radius: 65px;
  background: rgba(244, 252, 203, 0.09);
  text-transform: uppercase;
  display: inline-block;
  backdrop-filter: blur(20px);
}
@media (max-width: 991px) {
  .wpo-hero-static .hero-content p {
    margin-bottom: 15px;
  }
}
@media (max-width: 575px) {
  .wpo-hero-static .hero-content p {
    font-size: 10px;
    padding: 10px 8px 8px 4px;
    padding-right: 8px;
  }
}
.wpo-hero-static .hero-content p span {
  padding: 4px 12px;
  text-transform: uppercase;
  background: rgba(251, 254, 231, 0.13);
  border-radius: 58px;
  margin-right: 10px;
}
@media (max-width: 575px) {
  .wpo-hero-static .hero-content p span {
    margin-right: 5px;
    padding: 3px 6px;
  }
}
.wpo-hero-static .hero-content h2 {
  margin: 0;
  color: #FBFEE7;
  font-size: 70px;
  line-height: 105%;
  font-weight: 400;
  letter-spacing: -0.48px;
}
@media (max-width: 1399px) {
  .wpo-hero-static .hero-content h2 {
    font-size: 55px;
  }
}
@media (max-width: 1199px) {
  .wpo-hero-static .hero-content h2 {
    font-size: 45px;
  }
}
@media (max-width: 767px) {
  .wpo-hero-static .hero-content h2 {
    font-size: 38px;
  }
}
@media (max-width: 425px) {
  .wpo-hero-static .hero-content h2 {
    font-size: 30px;
  }
}
.wpo-hero-static .hero-content .hero-btn {
  display: inline-block;
  margin-top: 45px;
}
@media (max-width: 991px) {
  .wpo-hero-static .hero-content .hero-btn {
    margin-top: 30px;
  }
}
@media (max-width: 425px) {
  .wpo-hero-static .hero-content .hero-btn {
    margin-top: 20px;
  }
}
.wpo-hero-static .image {
  text-align: center;
  position: absolute;
  bottom: 0;
  left: 54%;
  transform: translateX(-50%);
  z-index: -1;
}
@media (max-width: 767px) {
  .wpo-hero-static .image {
    display: none;
  }
}
.wpo-hero-static .hero-bottom-shape {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -11;
}

/* wpo-hero-static-s2 */
.wpo-hero-static-s2 {
  height: 100%;
}
.wpo-hero-static-s2 .hero-wrap {
  padding-top: 50px;
}
@media (max-width: 425px) {
  .wpo-hero-static-s2 .hero-wrap {
    padding-top: 30px;
  }
}
.wpo-hero-static-s2 .hero-left {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  height: 100%;
  padding-bottom: 70px;
  max-width: 600px;
  position: relative;
}
@media (max-width: 991px) {
  .wpo-hero-static-s2 .hero-left {
    text-align: center;
    margin: 0 auto;
  }
}
.wpo-hero-static-s2 .hero-left .hero-content p {
  margin: 0;
  color: #102D06;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  max-width: 400px;
  padding-top: 18px;
}
@media (max-width: 991px) {
  .wpo-hero-static-s2 .hero-left .hero-content p {
    margin: 0 auto;
  }
}
@media (max-width: 425px) {
  .wpo-hero-static-s2 .hero-left .hero-content p {
    font-size: 14px;
    line-height: 130%;
    padding-top: 10px;
  }
}
.wpo-hero-static-s2 .hero-left .hero-content h2 {
  margin: 0;
  color: #102D06;
  font-size: 64px;
  line-height: 105%;
  font-weight: 400;
  letter-spacing: -0.48px;
}
@media (max-width: 1399px) {
  .wpo-hero-static-s2 .hero-left .hero-content h2 {
    font-size: 55px;
  }
}
@media (max-width: 1199px) {
  .wpo-hero-static-s2 .hero-left .hero-content h2 {
    font-size: 45px;
  }
}
@media (max-width: 767px) {
  .wpo-hero-static-s2 .hero-left .hero-content h2 {
    font-size: 38px;
  }
}
@media (max-width: 425px) {
  .wpo-hero-static-s2 .hero-left .hero-content h2 {
    font-size: 30px;
  }
}
.wpo-hero-static-s2 .hero-left .hero-content .hero-btn {
  display: inline-block;
  margin-top: 32px;
}
@media (max-width: 991px) {
  .wpo-hero-static-s2 .hero-left .hero-content .hero-btn {
    margin-top: 20px;
  }
}
.wpo-hero-static-s2 .hero-left .partner-item span {
  color: #202E05;
  font-size: 14px;
  line-height: 134%;
  font-weight: 600;
  letter-spacing: 0.64px;
  text-transform: uppercase;
  display: block;
  padding-bottom: 35px;
}
.wpo-hero-static-s2 .hero-left .line {
  width: 100%;
  height: 100px;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
}
.wpo-hero-static-s2 .hero-left .line:before {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 1px;
  background: #eef3e8;
  content: "";
}
.wpo-hero-static-s2 .hero-left .line .flower {
  left: 0;
  top: 0;
  max-width: 50px;
  z-index: 11;
  position: relative;
}
@media (max-width: 575px) {
  .wpo-hero-static-s2 .hero-left .line .flower {
    max-width: 30px;
  }
}
.wpo-hero-static-s2 .hero-left .line .flower img {
  animation: zoom-in-zoom-out 2s ease infinite;
}
.wpo-hero-static-s2 .hero-right-image {
  position: relative;
  z-index: 1;
  max-width: 892px;
  margin-left: auto;
}
@media (max-width: 991px) {
  .wpo-hero-static-s2 .hero-right-image {
    margin: 0 auto;
  }
}
.wpo-hero-static-s2 .hero-right-image .image .right-image {
  position: relative;
  z-index: 1;
  -webkit-mask-size: 100%;
  mask-size: 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  border-radius: 16px;
}
.wpo-hero-static-s2 .hero-right-image .image .right-image img {
  border-radius: 16px;
}
.wpo-hero-static-s2 .hero-right-image .image-2 {
  position: absolute;
  bottom: 30px;
  right: 30px;
  z-index: 11;
}
@media (max-width: 500px) {
  .wpo-hero-static-s2 .hero-right-image .image-2 {
    bottom: 10px;
    right: 10px;
  }
}
.wpo-hero-static-s2 .hero-right-image .image-2 img {
  border-radius: 12px;
}
@media (max-width: 767px) {
  .wpo-hero-static-s2 .hero-right-image .image-2 img {
    max-width: 250px;
  }
}
@media (max-width: 575px) {
  .wpo-hero-static-s2 .hero-right-image .image-2 img {
    max-width: 200px;
  }
}
@media (max-width: 425px) {
  .wpo-hero-static-s2 .hero-right-image .image-2 img {
    max-width: 150px;
  }
}
.wpo-hero-static-s2 .hero-right-image .client-team {
  margin-top: -94px;
  position: relative;
  z-index: 111;
  text-align: center;
  margin-left: 0px;
}
@media (max-width: 1500px) {
  .wpo-hero-static-s2 .hero-right-image .client-team {
    margin-left: 0;
  }
}
@media (max-width: 1399px) {
  .wpo-hero-static-s2 .hero-right-image .client-team {
    display: none;
  }
}
.wpo-hero-static-s2 .hero-right-image .client-team ul {
  margin-left: 0;
  justify-content: center;
}
.wpo-hero-static-s2 .hero-right-image .client-team ul li:last-child {
  background-color: #C8F8A9;
}
.wpo-hero-static-s2 .col {
  min-height: 100%;
}

.client-team {
  max-width: 240px;
  text-align: start;
}
@media (max-width: 991px) {
  .client-team {
    margin: 0 auto;
    margin-top: 20px;
    text-align: center;
  }
}
.client-team ul {
  display: flex;
  align-items: center;
  margin-left: 10px;
}
@media (max-width: 991px) {
  .client-team ul {
    justify-content: center;
    margin-left: 0;
  }
}
.client-team ul li {
  width: 60px;
  height: 48px;
  border-radius: 34px;
  margin: 0 -7px;
  text-align: center;
  border: 2px solid #FFF;
  background: #D9D9D9;
}
.client-team ul li:last-child {
  background-color: #B5E717;
  display: flex;
  align-items: center;
  justify-content: center;
}
.client-team ul li:last-child img {
  max-width: 24px;
}
.client-team ul li i {
  font-size: 20px;
  color: #202E05;
}
.client-team ul li img {
  width: 100%;
  height: 100%;
  border-radius: 34px;
}
.client-team span {
  font-size: 14px;
  font-weight: 500;
  line-height: 134%;
  display: block;
  margin-top: 15px;
  letter-spacing: 0.64px;
  text-transform: uppercase;
}

.partner-item {
  margin-top: 65px;
}
@media (max-width: 991px) {
  .partner-item {
    margin-top: 40px;
  }
}
.partner-item ul {
  margin-left: 0;
}
@media (max-width: 767px) {
  .partner-item ul {
    margin-left: 50px;
  }
}
@media (max-width: 425px) {
  .partner-item ul {
    margin-left: 30px;
  }
}

/*--------------------------------------------------------------
4. Footer
--------------------------------------------------------------*/
/* wpo-site-footer */
.wpo-site-footer,
.wpo-site-footer-s2 {
  background: #202E05;
  padding: 0 50px;
  padding-bottom: 30px;
}
@media (max-width: 1399px) {
  .wpo-site-footer,
  .wpo-site-footer-s2 {
    padding: 0 20px;
    padding-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .wpo-site-footer,
  .wpo-site-footer-s2 {
    padding: 0;
    padding-bottom: 20px;
  }
}
.wpo-site-footer ul,
.wpo-site-footer-s2 ul {
  list-style: none;
}
.wpo-site-footer p,
.wpo-site-footer-s2 p {
  color: #fff;
}
.wpo-site-footer li,
.wpo-site-footer-s2 li {
  color: #fff;
}
.wpo-site-footer .wpo-topbar-footer,
.wpo-site-footer-s2 .wpo-topbar-footer {
  padding: 100px 0;
  border-bottom: 1px solid #405413;
}
@media (max-width: 991px) {
  .wpo-site-footer .wpo-topbar-footer,
  .wpo-site-footer-s2 .wpo-topbar-footer {
    padding: 80px 0;
  }
}
@media (max-width: 767px) {
  .wpo-site-footer .wpo-topbar-footer,
  .wpo-site-footer-s2 .wpo-topbar-footer {
    padding: 50px 0;
  }
}
.wpo-site-footer .wpo-upper-footer,
.wpo-site-footer-s2 .wpo-upper-footer {
  padding: 100px 0;
  position: relative;
}
@media (max-width: 991px) {
  .wpo-site-footer .wpo-upper-footer,
  .wpo-site-footer-s2 .wpo-upper-footer {
    padding: 80px 0;
  }
}
@media (max-width: 767px) {
  .wpo-site-footer .wpo-upper-footer,
  .wpo-site-footer-s2 .wpo-upper-footer {
    padding: 50px 0;
  }
}
.wpo-site-footer .wpo-upper-footer .middle-img,
.wpo-site-footer-s2 .wpo-upper-footer .middle-img {
  position: absolute;
  right: 35%;
  bottom: 0;
  max-width: 350px;
}
@media (max-width: 1400px) {
  .wpo-site-footer .wpo-upper-footer .middle-img,
  .wpo-site-footer-s2 .wpo-upper-footer .middle-img {
    max-width: 300px;
  }
}
@media (max-width: 1199px) {
  .wpo-site-footer .wpo-upper-footer .middle-img,
  .wpo-site-footer-s2 .wpo-upper-footer .middle-img {
    display: none;
  }
}
.wpo-site-footer .wrapper,
.wpo-site-footer-s2 .wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .wpo-site-footer .wrapper,
  .wpo-site-footer-s2 .wrapper {
    display: block;
  }
}
.wpo-site-footer .wrapper .top-left,
.wpo-site-footer-s2 .wrapper .top-left {
  max-width: 600px;
  text-align: start;
}
@media (max-width: 1199px) {
  .wpo-site-footer .wrapper .top-left,
  .wpo-site-footer-s2 .wrapper .top-left {
    max-width: 465px;
  }
}
@media (max-width: 767px) {
  .wpo-site-footer .wrapper .top-left,
  .wpo-site-footer-s2 .wrapper .top-left {
    margin-bottom: 40px;
    max-width: 370px;
  }
}
@media (max-width: 767px) {
  .wpo-site-footer .wrapper .top-left .footer-btn .theme-btn i,
  .wpo-site-footer-s2 .wrapper .top-left .footer-btn .theme-btn i {
    line-height: 37px;
  }
}
.wpo-site-footer .wrapper .top-left h2,
.wpo-site-footer-s2 .wrapper .top-left h2 {
  font-size: 64px;
  line-height: 104%;
  font-weight: 400;
  letter-spacing: -0.48px;
  color: #FBFEE7;
}
@media (max-width: 1199px) {
  .wpo-site-footer .wrapper .top-left h2,
  .wpo-site-footer-s2 .wrapper .top-left h2 {
    font-size: 50px;
  }
}
@media (max-width: 767px) {
  .wpo-site-footer .wrapper .top-left h2,
  .wpo-site-footer-s2 .wrapper .top-left h2 {
    font-size: 40px;
  }
}
@media (max-width: 425px) {
  .wpo-site-footer .wrapper .top-left h2,
  .wpo-site-footer-s2 .wrapper .top-left h2 {
    font-size: 35px;
  }
}
.wpo-site-footer .wrapper .top-left .footer-btn,
.wpo-site-footer-s2 .wrapper .top-left .footer-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .wpo-site-footer .wrapper .top-left .footer-btn,
  .wpo-site-footer-s2 .wrapper .top-left .footer-btn {
    margin-top: 20px;
  }
}
.wpo-site-footer .footer-address,
.wpo-site-footer-s2 .footer-address {
  display: flex;
  align-items: center;
  gap: 80px;
}
@media (max-width: 1199px) {
  .wpo-site-footer .footer-address,
  .wpo-site-footer-s2 .footer-address {
    gap: 30px;
  }
}
@media (max-width: 991px) {
  .wpo-site-footer .footer-address,
  .wpo-site-footer-s2 .footer-address {
    display: block;
    align-items: start;
  }
}
@media (max-width: 767px) {
  .wpo-site-footer .footer-address .item,
  .wpo-site-footer-s2 .footer-address .item {
    margin-bottom: 40px;
  }
  .wpo-site-footer .footer-address .item:last-child,
  .wpo-site-footer-s2 .footer-address .item:last-child {
    margin-bottom: 0;
  }
}
.wpo-site-footer .footer-address .item ul li,
.wpo-site-footer-s2 .footer-address .item ul li {
  font-size: 20px;
  line-height: 134%;
  font-weight: 300;
  color: #FBFEE7;
}
@media (max-width: 1199px) {
  .wpo-site-footer .footer-address .item ul li,
  .wpo-site-footer-s2 .footer-address .item ul li {
    font-size: 18px;
    line-height: 125%;
  }
}
.wpo-site-footer .footer-address .item ul li span,
.wpo-site-footer-s2 .footer-address .item ul li span {
  color: #BFE734;
}
.wpo-site-footer .widget-title,
.wpo-site-footer-s2 .widget-title {
  margin-bottom: 20px;
}
.wpo-site-footer .widget-title h3,
.wpo-site-footer-s2 .widget-title h3 {
  margin: 0;
  color: #fff;
  line-height: 134%;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.64px;
  font-family: "Instrument Sans";
}
.wpo-site-footer .footer-item,
.wpo-site-footer-s2 .footer-item {
  display: flex;
}
@media (max-width: 991px) {
  .wpo-site-footer .footer-item,
  .wpo-site-footer-s2 .footer-item {
    display: block;
  }
}
.wpo-site-footer .link-widget,
.wpo-site-footer-s2 .link-widget {
  overflow: hidden;
  padding-right: 70px;
}
@media (max-width: 1399px) {
  .wpo-site-footer .link-widget,
  .wpo-site-footer-s2 .link-widget {
    padding-right: 40px;
  }
}
@media (max-width: 1199px) {
  .wpo-site-footer .link-widget,
  .wpo-site-footer-s2 .link-widget {
    padding-right: 10px;
  }
}
@media (max-width: 991px) {
  .wpo-site-footer .link-widget,
  .wpo-site-footer-s2 .link-widget {
    padding-right: 0;
    margin-bottom: 50px;
  }
}
.wpo-site-footer .link-widget ul li,
.wpo-site-footer-s2 .link-widget ul li {
  position: relative;
  font-size: 14px;
  font-weight: 400;
  line-height: 134%;
  letter-spacing: 1.28px;
  text-transform: uppercase;
  color: #FBFEE7;
}
.wpo-site-footer .link-widget ul li a,
.wpo-site-footer-s2 .link-widget ul li a {
  color: #FBFEE7;
  transition: all ease-in-out 0.3s;
}
.wpo-site-footer .link-widget ul li a:hover,
.wpo-site-footer-s2 .link-widget ul li a:hover {
  color: #9AEF67;
  text-decoration: underline;
}
.wpo-site-footer .link-widget ul li + li,
.wpo-site-footer-s2 .link-widget ul li + li {
  padding-top: 10px;
}
.wpo-site-footer .newsletter-s2,
.wpo-site-footer-s2 .newsletter-s2 {
  max-width: 350px;
  width: 100%;
  margin-left: auto;
}
@media (max-width: 767px) {
  .wpo-site-footer .newsletter-s2,
  .wpo-site-footer-s2 .newsletter-s2 {
    margin-left: 0;
  }
}
.wpo-site-footer .newsletter-s2 .form-fild,
.wpo-site-footer-s2 .newsletter-s2 .form-fild {
  position: relative;
}
.wpo-site-footer .newsletter-s2 .form-fild .fild,
.wpo-site-footer-s2 .newsletter-s2 .form-fild .fild {
  color: #FBFEE7;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
  position: relative;
  border: 0;
  padding: 18px 105px;
  padding-left: 20px;
  width: 100%;
  background: rgba(251, 254, 231, 0.13);
  backdrop-filter: blur(20px);
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease-in-out;
}
@media (max-width: 575px) {
  .wpo-site-footer .newsletter-s2 .form-fild .fild,
  .wpo-site-footer-s2 .newsletter-s2 .form-fild .fild {
    padding: 14px 105px;
    padding-left: 20px;
  }
}
.wpo-site-footer .newsletter-s2 .form-fild .fild:focus-visible,
.wpo-site-footer-s2 .newsletter-s2 .form-fild .fild:focus-visible {
  outline: -webkit-focus-ring-color auto transparent;
  outline: 0;
}
.wpo-site-footer .newsletter-s2 .form-fild .fild::-webkit-input-placeholder,
.wpo-site-footer-s2 .newsletter-s2 .form-fild .fild::-webkit-input-placeholder {
  color: #FBFEE7;
}
.wpo-site-footer .newsletter-s2 .form-fild .fild::-moz-placeholder,
.wpo-site-footer-s2 .newsletter-s2 .form-fild .fild::-moz-placeholder {
  color: #FBFEE7;
}
.wpo-site-footer .newsletter-s2 .form-fild .fild:-ms-input-placeholder,
.wpo-site-footer-s2 .newsletter-s2 .form-fild .fild:-ms-input-placeholder {
  color: #FBFEE7;
}
.wpo-site-footer .newsletter-s2 .form-fild .fild:-moz-placeholder,
.wpo-site-footer-s2 .newsletter-s2 .form-fild .fild:-moz-placeholder {
  color: #FBFEE7;
}
.wpo-site-footer .newsletter-s2 .form-fild button,
.wpo-site-footer-s2 .newsletter-s2 .form-fild button {
  position: absolute;
  right: 5px;
  top: 5px;
  text-align: center;
  color: #202E05;
  display: block;
  background: #B5E717;
  border-radius: 72px;
  padding: 16px 22px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  transition: all 0.3s ease-in-out;
  font-weight: 700;
  font-size: 14px;
  line-height: 125%;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}
@media (max-width: 575px) {
  .wpo-site-footer .newsletter-s2 .form-fild button,
  .wpo-site-footer-s2 .newsletter-s2 .form-fild button {
    padding: 12px 18px;
  }
}
.wpo-site-footer .newsletter-s2 .form-fild button:hover,
.wpo-site-footer-s2 .newsletter-s2 .form-fild button:hover {
  background: #9AEF67;
}
.wpo-site-footer .newsletter-s2 .form-fild .terms,
.wpo-site-footer-s2 .newsletter-s2 .form-fild .terms {
  margin-left: 9px;
  padding-top: 20px;
}
.wpo-site-footer .newsletter-s2 .form-fild .terms .checkbox,
.wpo-site-footer-s2 .newsletter-s2 .form-fild .terms .checkbox {
  width: 20px;
  height: 0;
  padding: 0;
  margin: 0;
}
.wpo-site-footer .newsletter-s2 .form-fild .terms input[type=checkbox],
.wpo-site-footer-s2 .newsletter-s2 .form-fild .terms input[type=checkbox] {
  position: relative;
  cursor: pointer;
}
.wpo-site-footer .newsletter-s2 .form-fild .terms input[type=checkbox]:checked:before,
.wpo-site-footer-s2 .newsletter-s2 .form-fild .terms input[type=checkbox]:checked:before {
  content: "";
  display: block;
  position: absolute;
  left: -3px;
  top: -14px;
  width: 18px;
  height: 18px;
  transition: all 0.2s linear;
  border: 1px solid #FBFEE7;
}
.wpo-site-footer .newsletter-s2 .form-fild .terms input[type=checkbox]:before,
.wpo-site-footer-s2 .newsletter-s2 .form-fild .terms input[type=checkbox]:before {
  content: "";
  display: block;
  position: absolute;
  left: -3px;
  top: -14px;
  width: 18px;
  height: 18px;
  transition: all 0.2s linear;
  border-radius: 4px;
  border: 1px solid #FBFEE7;
}
.wpo-site-footer .newsletter-s2 .form-fild .terms input[type=checkbox]:after,
.wpo-site-footer-s2 .newsletter-s2 .form-fild .terms input[type=checkbox]:after {
  content: "";
  display: block;
  width: 0px;
  height: 0px;
  border: solid #FBFEE7;
  border-width: 0 0px 0px 0;
  transform: rotate(180deg);
  position: absolute;
  top: -11px;
  left: 3px;
  transition: all 0.2s linear;
}
.wpo-site-footer .newsletter-s2 .form-fild .terms input[type=checkbox]:checked:after,
.wpo-site-footer-s2 .newsletter-s2 .form-fild .terms input[type=checkbox]:checked:after {
  content: "";
  display: block;
  width: 6px;
  height: 10px;
  border: solid #FBFEE7;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  position: absolute;
  top: -11px;
  left: 3px;
}
.wpo-site-footer .newsletter-s2 .form-fild .terms label,
.wpo-site-footer-s2 .newsletter-s2 .form-fild .terms label {
  margin-bottom: 0;
  cursor: pointer;
  color: #FBFEE7;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
}
@media (max-width: 767px) {
  .wpo-site-footer .newsletter-s2 .form-fild .terms label,
  .wpo-site-footer-s2 .newsletter-s2 .form-fild .terms label {
    font-size: 14px;
    line-height: 140%;
  }
}
@media (max-width: 991px) {
  .wpo-site-footer .footer-logo,
  .wpo-site-footer-s2 .footer-logo {
    margin-bottom: 10px;
  }
}
.wpo-site-footer .wpo-lower-footer,
.wpo-site-footer-s2 .wpo-lower-footer {
  text-align: center;
  position: relative;
  border-top: 1px solid #405413;
  border-bottom: 1px solid #405413;
}
.wpo-site-footer .wpo-lower-footer .row,
.wpo-site-footer-s2 .wpo-lower-footer .row {
  padding: 24px 0;
  position: relative;
}
@media (max-width: 991px) {
  .wpo-site-footer .wpo-lower-footer .row,
  .wpo-site-footer-s2 .wpo-lower-footer .row {
    padding: 15px 0;
  }
}
.wpo-site-footer .wpo-lower-footer .copyright,
.wpo-site-footer-s2 .wpo-lower-footer .copyright {
  font-size: 14px;
  margin: 0;
  color: rgba(249, 255, 240, 0.7);
  font-weight: 300;
  line-height: 30px;
  text-align: left;
}
@media (max-width: 991px) {
  .wpo-site-footer .wpo-lower-footer .copyright,
  .wpo-site-footer-s2 .wpo-lower-footer .copyright {
    float: none;
    display: block;
    text-align: center;
    margin-bottom: 10px;
  }
}
.wpo-site-footer .wpo-lower-footer .copyright a,
.wpo-site-footer-s2 .wpo-lower-footer .copyright a {
  color: rgb(249, 255, 240);
  transition: all ease-in-out 0.3s;
  font-weight: 600;
}
.wpo-site-footer .wpo-lower-footer .copyright a:hover,
.wpo-site-footer-s2 .wpo-lower-footer .copyright a:hover {
  color: #9AEF67;
  text-decoration: underline;
}
.wpo-site-footer .wpo-lower-footer .right,
.wpo-site-footer-s2 .wpo-lower-footer .right {
  text-align: end;
}
@media (max-width: 991px) {
  .wpo-site-footer .wpo-lower-footer .right,
  .wpo-site-footer-s2 .wpo-lower-footer .right {
    text-align: center;
    margin: 0;
  }
}
.wpo-site-footer .wpo-lower-footer .right li,
.wpo-site-footer-s2 .wpo-lower-footer .right li {
  display: inline-block;
}
.wpo-site-footer .wpo-lower-footer .right li a,
.wpo-site-footer-s2 .wpo-lower-footer .right li a {
  color: rgba(251, 254, 231, 0.5);
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  padding: 0 10px;
  transition: all ease-in-out 0.3s;
}
@media (max-width: 575px) {
  .wpo-site-footer .wpo-lower-footer .right li a,
  .wpo-site-footer-s2 .wpo-lower-footer .right li a {
    font-size: 18px;
    padding: 0 6px;
  }
}
.wpo-site-footer .wpo-lower-footer .right li a:hover,
.wpo-site-footer-s2 .wpo-lower-footer .right li a:hover {
  color: #9AEF67;
}

/* wpo-site-footer-s2 */
.wpo-site-footer-s2 {
  background-color: #102D06;
}
.wpo-site-footer-s2 .wpo-topbar-footer {
  border-color: #265215;
}
.wpo-site-footer-s2 .wpo-lower-footer {
  border-color: #265215;
}
.wpo-site-footer-s2 .wrapper .top-left h2 {
  color: #F1FEE7;
}
.wpo-site-footer-s2 .footer-address .item ul li {
  color: #F1FEE7;
}
.wpo-site-footer-s2 .footer-address .item ul li span {
  color: #C8F8A9;
}
.wpo-site-footer-s2 .link-widget ul li a {
  color: #F1FEE7;
}
.wpo-site-footer-s2 .newsletter-s2 .form-fild button {
  color: #102D06;
  background-color: #F1FEE7;
}
.wpo-site-footer-s2 .newsletter-s2 .form-fild .terms label {
  color: #F1FEE7;
}
.wpo-site-footer-s2 .wpo-lower-footer .copyright {
  color: rgba(241, 254, 231, 0.7);
}
.wpo-site-footer-s2 .wpo-lower-footer .copyright a {
  color: #F1FEE7;
}
.wpo-site-footer-s2 .wpo-lower-footer .right li a {
  color: rgba(241, 254, 231, 0.7);
}

.sticky-header {
  width: 100%;
  position: fixed;
  left: 0;
  top: -200px;
  z-index: 1111;
  opacity: 0;
  transition: all 0.7s;
}

.sticky-on {
  opacity: 1;
  top: 0;
}

/* 3.2 About Section */
.wpo-about-section,
.wpo-about-section-s2,
.wpo-about-section-s3 {
  border-bottom: 1px solid #E4EADB;
}
.wpo-about-section p,
.wpo-about-section-s2 p,
.wpo-about-section-s3 p {
  margin: 0;
  font-size: 24px;
  line-height: 125%;
  font-weight: 500;
}
@media (max-width: 1199px) {
  .wpo-about-section p,
  .wpo-about-section-s2 p,
  .wpo-about-section-s3 p {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .wpo-about-section p,
  .wpo-about-section-s2 p,
  .wpo-about-section-s3 p {
    font-size: 18px;
  }
}
@media (max-width: 991px) {
  .wpo-about-section .about-left,
  .wpo-about-section-s2 .about-left,
  .wpo-about-section-s3 .about-left {
    text-align: center;
  }
}
.wpo-about-section .about-left .client-team,
.wpo-about-section-s2 .about-left .client-team,
.wpo-about-section-s3 .about-left .client-team {
  margin-top: 40px;
}
@media (max-width: 991px) {
  .wpo-about-section .about-left .partner-item ul .slick-slide,
  .wpo-about-section-s2 .about-left .partner-item ul .slick-slide,
  .wpo-about-section-s3 .about-left .partner-item ul .slick-slide {
    justify-content: center;
  }
}
.wpo-about-section .partner-item ul,
.wpo-about-section-s2 .partner-item ul,
.wpo-about-section-s3 .partner-item ul {
  max-width: 340px;
  margin-left: 0;
}
@media (max-width: 991px) {
  .wpo-about-section .partner-item ul,
  .wpo-about-section-s2 .partner-item ul,
  .wpo-about-section-s3 .partner-item ul {
    margin: 0 auto;
    max-width: 420px;
  }
}
.wpo-about-section .wpo-about-item,
.wpo-about-section-s2 .wpo-about-item,
.wpo-about-section-s3 .wpo-about-item {
  display: flex;
  justify-content: end;
  gap: 25px;
}
@media (max-width: 991px) {
  .wpo-about-section .wpo-about-item,
  .wpo-about-section-s2 .wpo-about-item,
  .wpo-about-section-s3 .wpo-about-item {
    padding-top: 40px;
  }
}
@media (max-width: 767px) {
  .wpo-about-section .wpo-about-item,
  .wpo-about-section-s2 .wpo-about-item,
  .wpo-about-section-s3 .wpo-about-item {
    flex-direction: column;
  }
}
.wpo-about-section .about-middle,
.wpo-about-section-s2 .about-middle,
.wpo-about-section-s3 .about-middle {
  max-width: 505px;
  border-radius: 12px;
  position: relative;
  min-height: 100%;
}
@media (max-width: 991px) {
  .wpo-about-section .about-middle,
  .wpo-about-section-s2 .about-middle,
  .wpo-about-section-s3 .about-middle {
    max-width: unset;
  }
}
.wpo-about-section .about-middle .image-bg,
.wpo-about-section-s2 .about-middle .image-bg,
.wpo-about-section-s3 .about-middle .image-bg {
  height: 100%;
  overflow: hidden;
  border-radius: 12px;
}
.wpo-about-section .about-middle .image-bg img,
.wpo-about-section-s2 .about-middle .image-bg img,
.wpo-about-section-s3 .about-middle .image-bg img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
  transform: scale(1);
  transition: all 0.3s ease-in-out;
}
.wpo-about-section .about-middle .wpo-fun-fact-grids,
.wpo-about-section-s2 .about-middle .wpo-fun-fact-grids,
.wpo-about-section-s3 .about-middle .wpo-fun-fact-grids {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 0 8px;
}
.wpo-about-section .about-middle .wpo-fun-fact-grids .info,
.wpo-about-section-s2 .about-middle .wpo-fun-fact-grids .info,
.wpo-about-section-s3 .about-middle .wpo-fun-fact-grids .info {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media (max-width: 1199px) {
  .wpo-about-section .about-middle .wpo-fun-fact-grids .info,
  .wpo-about-section-s2 .about-middle .wpo-fun-fact-grids .info,
  .wpo-about-section-s3 .about-middle .wpo-fun-fact-grids .info {
    gap: 10px;
  }
}
@media (max-width: 991px) {
  .wpo-about-section .about-middle .wpo-fun-fact-grids .info,
  .wpo-about-section-s2 .about-middle .wpo-fun-fact-grids .info,
  .wpo-about-section-s3 .about-middle .wpo-fun-fact-grids .info {
    display: block;
  }
}
.wpo-about-section .about-middle .wpo-fun-fact-grids .grid,
.wpo-about-section-s2 .about-middle .wpo-fun-fact-grids .grid,
.wpo-about-section-s3 .about-middle .wpo-fun-fact-grids .grid {
  background-color: rgba(251, 254, 231, 0.85);
  border-radius: 8px;
  max-width: 490px;
  margin: 0 auto;
  margin-bottom: 10px;
  padding-left: 20px;
  padding: 15px 20px 10px;
}
@media (max-width: 1199px) {
  .wpo-about-section .about-middle .wpo-fun-fact-grids .grid,
  .wpo-about-section-s2 .about-middle .wpo-fun-fact-grids .grid,
  .wpo-about-section-s3 .about-middle .wpo-fun-fact-grids .grid {
    padding: 10px;
    padding: 15px 10px 8px;
  }
}
@media (max-width: 991px) {
  .wpo-about-section .about-middle .wpo-fun-fact-grids .grid,
  .wpo-about-section-s2 .about-middle .wpo-fun-fact-grids .grid,
  .wpo-about-section-s3 .about-middle .wpo-fun-fact-grids .grid {
    padding: 10px;
    max-width: unset;
  }
}
.wpo-about-section .about-middle .wpo-fun-fact-grids .grid h3,
.wpo-about-section-s2 .about-middle .wpo-fun-fact-grids .grid h3,
.wpo-about-section-s3 .about-middle .wpo-fun-fact-grids .grid h3 {
  margin: 0;
  font-family: "Libre Caslon Condensed";
  display: flex;
  align-items: center;
  justify-content: center;
  color: #202E05;
  font-size: 64px;
  font-weight: 400;
  letter-spacing: -0.48px;
  line-height: 105%;
}
@media (max-width: 1399px) {
  .wpo-about-section .about-middle .wpo-fun-fact-grids .grid h3,
  .wpo-about-section-s2 .about-middle .wpo-fun-fact-grids .grid h3,
  .wpo-about-section-s3 .about-middle .wpo-fun-fact-grids .grid h3 {
    font-size: 50px;
  }
}
@media (max-width: 1199px) {
  .wpo-about-section .about-middle .wpo-fun-fact-grids .grid h3,
  .wpo-about-section-s2 .about-middle .wpo-fun-fact-grids .grid h3,
  .wpo-about-section-s3 .about-middle .wpo-fun-fact-grids .grid h3 {
    font-size: 35px;
    line-height: 95%;
  }
}
.wpo-about-section .about-middle .wpo-fun-fact-grids .grid h3 span,
.wpo-about-section-s2 .about-middle .wpo-fun-fact-grids .grid h3 span,
.wpo-about-section-s3 .about-middle .wpo-fun-fact-grids .grid h3 span {
  font-family: "Libre Caslon Condensed";
}
@media (max-width: 1199px) {
  .wpo-about-section .about-middle .wpo-fun-fact-grids .grid h3 span,
  .wpo-about-section-s2 .about-middle .wpo-fun-fact-grids .grid h3 span,
  .wpo-about-section-s3 .about-middle .wpo-fun-fact-grids .grid h3 span {
    line-height: 95%;
  }
}
.wpo-about-section .about-middle .wpo-fun-fact-grids .grid h3 + p,
.wpo-about-section-s2 .about-middle .wpo-fun-fact-grids .grid h3 + p,
.wpo-about-section-s3 .about-middle .wpo-fun-fact-grids .grid h3 + p {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 134%;
  letter-spacing: 1.28px;
  text-transform: uppercase;
  max-width: 160px;
}
@media (max-width: 991px) {
  .wpo-about-section .about-middle .wpo-fun-fact-grids .grid h3 + p,
  .wpo-about-section-s2 .about-middle .wpo-fun-fact-grids .grid h3 + p,
  .wpo-about-section-s3 .about-middle .wpo-fun-fact-grids .grid h3 + p {
    max-width: unset;
    text-align: center;
  }
}
.wpo-about-section .about-middle:hover .image-bg img,
.wpo-about-section-s2 .about-middle:hover .image-bg img,
.wpo-about-section-s3 .about-middle:hover .image-bg img {
  transform: scale(1.1);
}
.wpo-about-section .about-right,
.wpo-about-section-s2 .about-right,
.wpo-about-section-s3 .about-right {
  background-color: #4C6311;
  max-width: 385px;
  width: 100%;
  position: relative;
  padding: 8px;
  border-radius: 12px;
}
@media (max-width: 1399px) {
  .wpo-about-section .about-right,
  .wpo-about-section-s2 .about-right,
  .wpo-about-section-s3 .about-right {
    max-width: 330px;
  }
}
@media (max-width: 767px) {
  .wpo-about-section .about-right,
  .wpo-about-section-s2 .about-right,
  .wpo-about-section-s3 .about-right {
    max-width: unset;
  }
}
.wpo-about-section .about-right .about-right-bg,
.wpo-about-section-s2 .about-right .about-right-bg,
.wpo-about-section-s3 .about-right .about-right-bg {
  background-color: #BFE734;
  padding: 30px;
  border-radius: 12px;
  min-height: 490px;
}
@media (max-width: 1199px) {
  .wpo-about-section .about-right .about-right-bg,
  .wpo-about-section-s2 .about-right .about-right-bg,
  .wpo-about-section-s3 .about-right .about-right-bg {
    min-height: 370px;
    padding: 30px 20px;
  }
}
@media (max-width: 767px) {
  .wpo-about-section .about-right .about-right-bg,
  .wpo-about-section-s2 .about-right .about-right-bg,
  .wpo-about-section-s3 .about-right .about-right-bg {
    min-height: 230px;
    padding: 20px;
  }
}
.wpo-about-section .about-right .about-right-content,
.wpo-about-section-s2 .about-right .about-right-content,
.wpo-about-section-s3 .about-right .about-right-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.wpo-about-section .about-right .content,
.wpo-about-section-s2 .about-right .content,
.wpo-about-section-s3 .about-right .content {
  margin-top: 260px;
}
@media (max-width: 1199px) {
  .wpo-about-section .about-right .content,
  .wpo-about-section-s2 .about-right .content,
  .wpo-about-section-s3 .about-right .content {
    margin-top: 150px;
  }
}
@media (max-width: 767px) {
  .wpo-about-section .about-right .content,
  .wpo-about-section-s2 .about-right .content,
  .wpo-about-section-s3 .about-right .content {
    margin-top: 90px;
  }
}
.wpo-about-section .about-right .content h3,
.wpo-about-section-s2 .about-right .content h3,
.wpo-about-section-s3 .about-right .content h3 {
  margin: 0;
  font-size: 28px;
  font-weight: 400;
  line-height: 123%;
}
@media (max-width: 1399px) {
  .wpo-about-section .about-right .content h3,
  .wpo-about-section-s2 .about-right .content h3,
  .wpo-about-section-s3 .about-right .content h3 {
    font-size: 25px;
  }
}
@media (max-width: 425px) {
  .wpo-about-section .about-right .content h3,
  .wpo-about-section-s2 .about-right .content h3,
  .wpo-about-section-s3 .about-right .content h3 {
    font-size: 22px;
  }
}
.wpo-about-section .about-right .about-bottom p,
.wpo-about-section-s2 .about-right .about-bottom p,
.wpo-about-section-s3 .about-right .about-bottom p {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 124%;
  letter-spacing: 0.64px;
  text-transform: uppercase;
  color: #FBFEE7;
  padding: 10px 0;
  padding-left: 12px;
  padding-bottom: 0;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.wpo-about-section .about-right .about-bottom p a,
.wpo-about-section-s2 .about-right .about-bottom p a,
.wpo-about-section-s3 .about-right .about-bottom p a {
  color: #FBFEE7;
}
.wpo-about-section .about-right .about-bottom p a:hover,
.wpo-about-section-s2 .about-right .about-bottom p a:hover,
.wpo-about-section-s3 .about-right .about-bottom p a:hover {
  color: #E8FA9C;
}
.wpo-about-section .about-right .about-bottom p::before,
.wpo-about-section-s2 .about-right .about-bottom p::before,
.wpo-about-section-s3 .about-right .about-bottom p::before {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  top: 15px;
  left: 0;
  border-radius: 50%;
  background-color: #B5E717;
}
.wpo-about-section .about-right .shape,
.wpo-about-section-s2 .about-right .shape,
.wpo-about-section-s3 .about-right .shape {
  position: absolute;
  top: 0;
  right: 0;
}

/* 3.3 Problem Solve Section */
.wpo-problem-solve-section .problem-solve-left {
  height: 100%;
}
.wpo-problem-solve-section .problem-solve-left .bg-left-image {
  position: relative;
  height: 100%;
}
.wpo-problem-solve-section .problem-solve-left .bg-left-image .image {
  height: 100%;
  overflow: hidden;
  border-radius: 12px;
}
.wpo-problem-solve-section .problem-solve-left .bg-left-image .image img {
  border-radius: 12px;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1);
  transition: all 0.3s ease-in-out;
}
.wpo-problem-solve-section .problem-solve-left .bg-left-image .problem-solve-btn {
  position: absolute;
  top: 10px;
  right: 10px;
}
.wpo-problem-solve-section .problem-solve-left .bg-left-image .problem-solve-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 10px;
  padding-top: 0;
}
.wpo-problem-solve-section .problem-solve-left .bg-left-image .problem-solve-bottom .problem-solve-content {
  background: rgba(251, 254, 231, 0.9);
  padding: 20px 30px;
  border-radius: 8px;
}
@media (max-width: 991px) {
  .wpo-problem-solve-section .problem-solve-left .bg-left-image .problem-solve-bottom .problem-solve-content {
    text-align: center;
    padding: 20px;
  }
}
.wpo-problem-solve-section .problem-solve-left .bg-left-image .problem-solve-bottom .problem-solve-content h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 500;
  line-height: 125%;
  font-family: "Instrument Sans";
  padding-bottom: 5px;
}
@media (max-width: 991px) {
  .wpo-problem-solve-section .problem-solve-left .bg-left-image .problem-solve-bottom .problem-solve-content h3 {
    font-size: 20px;
    line-height: 115%;
  }
}
.wpo-problem-solve-section .problem-solve-left .bg-left-image .problem-solve-bottom .problem-solve-content p {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 125%;
  letter-spacing: 0.64px;
  text-transform: uppercase;
  color: #202E05;
}
.wpo-problem-solve-section .problem-solve-left .bg-left-image:hover .image img {
  transform: scale(1.1);
}
.wpo-problem-solve-section .col {
  min-height: 100%;
}
.wpo-problem-solve-section .problem-solve-right {
  position: relative;
  background-color: #405413;
  padding: 8px;
  border-radius: 12px;
}
@media (max-width: 991px) {
  .wpo-problem-solve-section .problem-solve-right {
    margin-top: 30px;
  }
}
.wpo-problem-solve-section .problem-solve-right .image {
  border-radius: 12px;
  height: 100%;
  position: relative;
}
@media (max-width: 575px) {
  .wpo-problem-solve-section .problem-solve-right .image {
    min-height: 450px;
  }
}
.wpo-problem-solve-section .problem-solve-right .image .bg-right-image {
  border-radius: 8px;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 575px) {
  .wpo-problem-solve-section .problem-solve-right .image .bg-right-image {
    min-height: 450px;
  }
}
.wpo-problem-solve-section .problem-solve-right .image::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  background-color: rgba(29, 33, 17, 0.67);
}
.wpo-problem-solve-section .problem-solve-right .logo {
  position: absolute;
  top: 20px;
  left: 20px;
}
.wpo-problem-solve-section .problem-solve-right .problem-solve-item {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 22px;
  padding-top: 0;
}
@media (max-width: 575px) {
  .wpo-problem-solve-section .problem-solve-right .problem-solve-item {
    padding: 10px;
  }
}
.wpo-problem-solve-section .problem-solve-right .problem-solve-item .problem-solve-right-content {
  padding: 25px 0;
  border-bottom: 1px solid rgba(250, 255, 243, 0.09);
}
.wpo-problem-solve-section .problem-solve-right .problem-solve-item .problem-solve-right-content:last-child {
  border-bottom: 0;
}
@media (max-width: 1199px) {
  .wpo-problem-solve-section .problem-solve-right .problem-solve-item .problem-solve-right-content {
    padding: 12px 0;
  }
}
.wpo-problem-solve-section .problem-solve-right .problem-solve-item .problem-solve-right-content .problem-solve-list {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 425px) {
  .wpo-problem-solve-section .problem-solve-right .problem-solve-item .problem-solve-right-content .problem-solve-list {
    flex-direction: column;
    justify-content: center;
    gap: 10px;
  }
}
.wpo-problem-solve-section .problem-solve-right .problem-solve-item .problem-solve-right-content .problem-solve-list .icon {
  width: 44px;
  height: 44px;
  line-height: 41px;
  border-radius: 6px;
  text-align: center;
  background-color: #F4FCCB;
}
@media (max-width: 425px) {
  .wpo-problem-solve-section .problem-solve-right .problem-solve-item .problem-solve-right-content .problem-solve-list .icon {
    width: 35px;
    height: 35px;
    line-height: 32px;
  }
}
.wpo-problem-solve-section .problem-solve-right .problem-solve-item .problem-solve-right-content .problem-solve-list .icon img {
  max-width: 24px;
  height: auto;
}
@media (max-width: 425px) {
  .wpo-problem-solve-section .problem-solve-right .problem-solve-item .problem-solve-right-content .problem-solve-list .icon img {
    max-width: 18px;
  }
}
@media (max-width: 425px) {
  .wpo-problem-solve-section .problem-solve-right .problem-solve-item .problem-solve-right-content .problem-solve-list .text {
    text-align: center;
  }
}
.wpo-problem-solve-section .problem-solve-right .problem-solve-item .problem-solve-right-content .problem-solve-list .text h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 400;
  line-height: 120%;
  color: #FBFEE7;
  font-family: "Instrument Sans";
  padding-bottom: 5px;
}
@media (max-width: 425px) {
  .wpo-problem-solve-section .problem-solve-right .problem-solve-item .problem-solve-right-content .problem-solve-list .text h3 {
    font-size: 18px;
    line-height: 110%;
  }
}
.wpo-problem-solve-section .problem-solve-right .problem-solve-item .problem-solve-right-content .problem-solve-list .text p {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 134%;
  letter-spacing: 0.64px;
  text-transform: uppercase;
  color: #FAFFF3;
}
@media (max-width: 425px) {
  .wpo-problem-solve-section .problem-solve-right .problem-solve-item .problem-solve-right-content .problem-solve-list .text p {
    font-size: 10px;
    line-height: 120%;
  }
}
.wpo-problem-solve-section .problem-solve-right .problem-solve-bottom p {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 124%;
  letter-spacing: 0.64px;
  text-transform: uppercase;
  color: #FBFEE7;
  padding: 10px 0;
  padding-left: 12px;
  padding-bottom: 0;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.wpo-problem-solve-section .problem-solve-right .problem-solve-bottom p a {
  color: #FBFEE7;
}
.wpo-problem-solve-section .problem-solve-right .problem-solve-bottom p a:hover {
  color: #E8FA9C;
}
.wpo-problem-solve-section .problem-solve-right .problem-solve-bottom p::before {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  top: 15px;
  left: 0;
  border-radius: 50%;
  background-color: #B5E717;
}

/* 3.4 Service Section */
.wpo-service-section,
.wpo-service-section-s3 {
  background-color: #202E05;
  padding-bottom: 90px;
}
@media (max-width: 991px) {
  .wpo-service-section,
  .wpo-service-section-s3 {
    padding-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .wpo-service-section,
  .wpo-service-section-s3 {
    padding-bottom: 30px;
  }
}
.wpo-service-section .wpo-section-title-s2 .title-top span,
.wpo-service-section-s3 .wpo-section-title-s2 .title-top span {
  color: #FBFEE7;
}
.wpo-service-section .wpo-section-title-s2 h2,
.wpo-service-section-s3 .wpo-section-title-s2 h2 {
  color: #FBFEE7;
  max-width: 570px;
}
@media (max-width: 991px) {
  .wpo-service-section .wpo-section-title-s2 h2,
  .wpo-service-section-s3 .wpo-section-title-s2 h2 {
    margin: 0 auto;
  }
}
.wpo-service-section .wpo-service-card,
.wpo-service-section-s3 .wpo-service-card {
  margin-bottom: 30px;
}
.wpo-service-section .wpo-service-card .service-item,
.wpo-service-section-s3 .wpo-service-card .service-item {
  overflow: hidden;
  background-color: #4C6311;
  padding: 8px;
  border-radius: 12px;
  transition: all 0.3s ease-in-out;
  height: 100%;
}
.wpo-service-section .wpo-service-card .service-item .service-bg,
.wpo-service-section-s3 .wpo-service-card .service-item .service-bg {
  position: relative;
  background-color: #BFE734;
  border-radius: 8px;
  padding: 26px;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 1399px) {
  .wpo-service-section .wpo-service-card .service-item .service-bg,
  .wpo-service-section-s3 .wpo-service-card .service-item .service-bg {
    padding: 20px 12px;
  }
}
.wpo-service-section .wpo-service-card .service-item .service-bg .arrow-icon a,
.wpo-service-section-s3 .wpo-service-card .service-item .service-bg .arrow-icon a {
  background-color: #FBFEE7;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
}
.wpo-service-section .wpo-service-card .service-item .service-bg .arrow-icon .icon-hover,
.wpo-service-section-s3 .wpo-service-card .service-item .service-bg .arrow-icon .icon-hover {
  display: none;
}
.wpo-service-section .wpo-service-card .service-item .service-bg .service-content,
.wpo-service-section-s3 .wpo-service-card .service-item .service-bg .service-content {
  padding-top: 140px;
}
@media (max-width: 991px) {
  .wpo-service-section .wpo-service-card .service-item .service-bg .service-content,
  .wpo-service-section-s3 .wpo-service-card .service-item .service-bg .service-content {
    padding-top: 70px;
  }
}
@media (max-width: 575px) {
  .wpo-service-section .wpo-service-card .service-item .service-bg .service-content,
  .wpo-service-section-s3 .wpo-service-card .service-item .service-bg .service-content {
    padding-top: 50px;
  }
}
.wpo-service-section .wpo-service-card .service-item .service-bg .service-content h3,
.wpo-service-section-s3 .wpo-service-card .service-item .service-bg .service-content h3 {
  margin: 0;
  font-family: "Instrument Sans";
  font-size: 24px;
  font-weight: 500;
  line-height: 125%;
  padding-bottom: 15px;
}
@media (max-width: 1399px) {
  .wpo-service-section .wpo-service-card .service-item .service-bg .service-content h3,
  .wpo-service-section-s3 .wpo-service-card .service-item .service-bg .service-content h3 {
    font-size: 20px;
    line-height: 115%;
  }
}
@media (max-width: 991px) {
  .wpo-service-section .wpo-service-card .service-item .service-bg .service-content h3,
  .wpo-service-section-s3 .wpo-service-card .service-item .service-bg .service-content h3 {
    font-size: 18px;
    line-height: 110%;
    padding-bottom: 5px;
  }
}
.wpo-service-section .wpo-service-card .service-item .service-bg .service-content h3 a,
.wpo-service-section-s3 .wpo-service-card .service-item .service-bg .service-content h3 a {
  color: #202E05;
}
.wpo-service-section .wpo-service-card .service-item .service-bg .service-content h3 a:hover,
.wpo-service-section-s3 .wpo-service-card .service-item .service-bg .service-content h3 a:hover {
  color: #2B6014;
}
.wpo-service-section .wpo-service-card .service-item .service-bg .service-content p,
.wpo-service-section-s3 .wpo-service-card .service-item .service-bg .service-content p {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 145%;
}
@media (max-width: 1399px) {
  .wpo-service-section .wpo-service-card .service-item .service-bg .service-content p,
  .wpo-service-section-s3 .wpo-service-card .service-item .service-bg .service-content p {
    font-size: 14px;
    line-height: 130%;
  }
}
.wpo-service-section .wpo-service-card .service-item .service-bg .flower,
.wpo-service-section-s3 .wpo-service-card .service-item .service-bg .flower {
  position: absolute;
  top: -45px;
  right: -45px;
  transition: all 0.3s ease-in-out;
}
.wpo-service-section .wpo-service-card .service-bottom p,
.wpo-service-section-s3 .wpo-service-card .service-bottom p {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 134%;
  letter-spacing: 0.64px;
  text-transform: uppercase;
  color: #FBFEE7;
  padding: 12px 0;
  padding-left: 13px;
  padding-bottom: 5px;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.wpo-service-section .wpo-service-card .service-bottom p a,
.wpo-service-section-s3 .wpo-service-card .service-bottom p a {
  color: #FBFEE7;
}
.wpo-service-section .wpo-service-card .service-bottom p a:hover,
.wpo-service-section-s3 .wpo-service-card .service-bottom p a:hover {
  color: #E8FA9C;
}
.wpo-service-section .wpo-service-card .service-bottom p::before,
.wpo-service-section-s3 .wpo-service-card .service-bottom p::before {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  top: 18px;
  left: 0;
  border-radius: 50%;
  background-color: #B5E717;
}
.wpo-service-section .wpo-service-card:hover .service-item .service-bg .arrow-icon a,
.wpo-service-section-s3 .wpo-service-card:hover .service-item .service-bg .arrow-icon a {
  background-color: #405413;
}
.wpo-service-section .wpo-service-card:hover .service-item .service-bg .arrow-icon .icon-hover,
.wpo-service-section-s3 .wpo-service-card:hover .service-item .service-bg .arrow-icon .icon-hover {
  display: block;
}
.wpo-service-section .wpo-service-card:hover .service-item .service-bg .arrow-icon .icon,
.wpo-service-section-s3 .wpo-service-card:hover .service-item .service-bg .arrow-icon .icon {
  display: none;
}
.wpo-service-section .wpo-service-card:hover .service-item .service-bg .flower,
.wpo-service-section-s3 .wpo-service-card:hover .service-item .service-bg .flower {
  transition: all 0.3s ease-in-out;
  top: 10px;
  right: 10px;
}
.wpo-service-section .col,
.wpo-service-section-s3 .col {
  min-height: 100%;
}

/* 3.5 Why choose Section */
.wpo-why-choose-section,
.wpo-why-choose-section-s2,
.wpo-why-choose-section-s3 {
  border-bottom: 1px solid #E4EADB;
}
.wpo-why-choose-section .why-choose-left,
.wpo-why-choose-section-s2 .why-choose-left,
.wpo-why-choose-section-s3 .why-choose-left {
  height: 100%;
}
.wpo-why-choose-section .why-choose-left .image-bg,
.wpo-why-choose-section-s2 .why-choose-left .image-bg,
.wpo-why-choose-section-s3 .why-choose-left .image-bg {
  position: relative;
  height: 100%;
}
.wpo-why-choose-section .why-choose-left .image-bg .image,
.wpo-why-choose-section-s2 .why-choose-left .image-bg .image,
.wpo-why-choose-section-s3 .why-choose-left .image-bg .image {
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
}
.wpo-why-choose-section .why-choose-left .image-bg .image img,
.wpo-why-choose-section-s2 .why-choose-left .image-bg .image img,
.wpo-why-choose-section-s3 .why-choose-left .image-bg .image img {
  border-radius: 12px;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1);
  transition: all 0.3s ease-in-out;
}
.wpo-why-choose-section .why-choose-left .image-bg .why-choose-btn,
.wpo-why-choose-section-s2 .why-choose-left .image-bg .why-choose-btn,
.wpo-why-choose-section-s3 .why-choose-left .image-bg .why-choose-btn {
  display: inline-block;
  padding-top: 25px;
}
@media (max-width: 575px) {
  .wpo-why-choose-section .why-choose-left .image-bg .why-choose-btn,
  .wpo-why-choose-section-s2 .why-choose-left .image-bg .why-choose-btn,
  .wpo-why-choose-section-s3 .why-choose-left .image-bg .why-choose-btn {
    padding-top: 15px;
  }
}
.wpo-why-choose-section .why-choose-left .image-bg .why-choose-bottom,
.wpo-why-choose-section-s2 .why-choose-left .image-bg .why-choose-bottom,
.wpo-why-choose-section-s3 .why-choose-left .image-bg .why-choose-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 10px;
  padding-top: 0;
}
.wpo-why-choose-section .why-choose-left .image-bg .why-choose-bottom .why-choose-content,
.wpo-why-choose-section-s2 .why-choose-left .image-bg .why-choose-bottom .why-choose-content,
.wpo-why-choose-section-s3 .why-choose-left .image-bg .why-choose-bottom .why-choose-content {
  background: rgba(251, 254, 231, 0.9);
  background: rgba(249, 255, 240, 0.85);
  backdrop-filter: blur(30px);
  padding: 25px;
  border-radius: 8px;
}
@media (max-width: 991px) {
  .wpo-why-choose-section .why-choose-left .image-bg .why-choose-bottom .why-choose-content,
  .wpo-why-choose-section-s2 .why-choose-left .image-bg .why-choose-bottom .why-choose-content,
  .wpo-why-choose-section-s3 .why-choose-left .image-bg .why-choose-bottom .why-choose-content {
    padding: 15px;
    text-align: center;
  }
}
.wpo-why-choose-section .why-choose-left .image-bg .why-choose-bottom .why-choose-content .why-choose-text h3,
.wpo-why-choose-section-s2 .why-choose-left .image-bg .why-choose-bottom .why-choose-content .why-choose-text h3,
.wpo-why-choose-section-s3 .why-choose-left .image-bg .why-choose-bottom .why-choose-content .why-choose-text h3 {
  font-family: "Instrument Sans";
  margin: 0;
  font-size: 24px;
  font-weight: 500;
  line-height: 125%;
  color: #202E05;
}
@media (max-width: 1199px) {
  .wpo-why-choose-section .why-choose-left .image-bg .why-choose-bottom .why-choose-content .why-choose-text h3,
  .wpo-why-choose-section-s2 .why-choose-left .image-bg .why-choose-bottom .why-choose-content .why-choose-text h3,
  .wpo-why-choose-section-s3 .why-choose-left .image-bg .why-choose-bottom .why-choose-content .why-choose-text h3 {
    font-size: 20px;
  }
}
@media (max-width: 575px) {
  .wpo-why-choose-section .why-choose-left .image-bg .why-choose-bottom .why-choose-content .why-choose-text h3,
  .wpo-why-choose-section-s2 .why-choose-left .image-bg .why-choose-bottom .why-choose-content .why-choose-text h3,
  .wpo-why-choose-section-s3 .why-choose-left .image-bg .why-choose-bottom .why-choose-content .why-choose-text h3 {
    font-size: 16px;
  }
}
.wpo-why-choose-section .why-choose-left .image-bg:hover .image img,
.wpo-why-choose-section-s2 .why-choose-left .image-bg:hover .image img,
.wpo-why-choose-section-s3 .why-choose-left .image-bg:hover .image img {
  transform: scale(1.1);
}
.wpo-why-choose-section .why-choose-right,
.wpo-why-choose-section-s2 .why-choose-right,
.wpo-why-choose-section-s3 .why-choose-right {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
  padding-left: 20px;
}
@media (max-width: 1199px) {
  .wpo-why-choose-section .why-choose-right,
  .wpo-why-choose-section-s2 .why-choose-right,
  .wpo-why-choose-section-s3 .why-choose-right {
    padding-left: 0;
  }
}
@media (max-width: 991px) {
  .wpo-why-choose-section .why-choose-right,
  .wpo-why-choose-section-s2 .why-choose-right,
  .wpo-why-choose-section-s3 .why-choose-right {
    margin-top: 30px;
    height: auto;
  }
}
.wpo-why-choose-section .why-choose-right .wpo-section-title-s2,
.wpo-why-choose-section-s2 .why-choose-right .wpo-section-title-s2,
.wpo-why-choose-section-s3 .why-choose-right .wpo-section-title-s2 {
  max-width: 440px;
  margin-top: 0;
  display: block;
}
@media (max-width: 991px) {
  .wpo-why-choose-section .why-choose-right .wpo-section-title-s2,
  .wpo-why-choose-section-s2 .why-choose-right .wpo-section-title-s2,
  .wpo-why-choose-section-s3 .why-choose-right .wpo-section-title-s2 {
    margin: 0 auto;
    margin-bottom: 30px;
  }
}
.wpo-why-choose-section .why-choose-right .why-choose-item .why-choose-list,
.wpo-why-choose-section-s2 .why-choose-right .why-choose-item .why-choose-list,
.wpo-why-choose-section-s3 .why-choose-right .why-choose-item .why-choose-list {
  display: flex;
  gap: 30px;
  margin-bottom: 25px;
}
@media (max-width: 1199px) {
  .wpo-why-choose-section .why-choose-right .why-choose-item .why-choose-list,
  .wpo-why-choose-section-s2 .why-choose-right .why-choose-item .why-choose-list,
  .wpo-why-choose-section-s3 .why-choose-right .why-choose-item .why-choose-list {
    gap: 15px;
  }
}
@media (max-width: 991px) {
  .wpo-why-choose-section .why-choose-right .why-choose-item .why-choose-list,
  .wpo-why-choose-section-s2 .why-choose-right .why-choose-item .why-choose-list,
  .wpo-why-choose-section-s3 .why-choose-right .why-choose-item .why-choose-list {
    display: block;
    text-align: center;
  }
}
.wpo-why-choose-section .why-choose-right .why-choose-item .why-choose-list:last-child,
.wpo-why-choose-section-s2 .why-choose-right .why-choose-item .why-choose-list:last-child,
.wpo-why-choose-section-s3 .why-choose-right .why-choose-item .why-choose-list:last-child {
  margin-bottom: 0;
}
.wpo-why-choose-section .why-choose-right .why-choose-item .why-choose-list .icon,
.wpo-why-choose-section-s2 .why-choose-right .why-choose-item .why-choose-list .icon,
.wpo-why-choose-section-s3 .why-choose-right .why-choose-item .why-choose-list .icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background-color: #4C6311;
}
@media (max-width: 991px) {
  .wpo-why-choose-section .why-choose-right .why-choose-item .why-choose-list .icon,
  .wpo-why-choose-section-s2 .why-choose-right .why-choose-item .why-choose-list .icon,
  .wpo-why-choose-section-s3 .why-choose-right .why-choose-item .why-choose-list .icon {
    margin: 0 auto;
    margin-bottom: 10px;
  }
}
.wpo-why-choose-section .why-choose-right .why-choose-item .why-choose-list .why-choose-list-text h3,
.wpo-why-choose-section-s2 .why-choose-right .why-choose-item .why-choose-list .why-choose-list-text h3,
.wpo-why-choose-section-s3 .why-choose-right .why-choose-item .why-choose-list .why-choose-list-text h3 {
  margin: 0;
  font-size: 17px;
  font-weight: 600;
  line-height: 110%;
  color: #202E05;
  font-family: "Instrument Sans";
  margin-bottom: 3px;
}
.wpo-why-choose-section .why-choose-right .why-choose-item .why-choose-list .why-choose-list-text p,
.wpo-why-choose-section-s2 .why-choose-right .why-choose-item .why-choose-list .why-choose-list-text p,
.wpo-why-choose-section-s3 .why-choose-right .why-choose-item .why-choose-list .why-choose-list-text p {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 145%;
  color: #202E05;
}
@media (max-width: 575px) {
  .wpo-why-choose-section .why-choose-right .why-choose-item .why-choose-list .why-choose-list-text p,
  .wpo-why-choose-section-s2 .why-choose-right .why-choose-item .why-choose-list .why-choose-list-text p,
  .wpo-why-choose-section-s3 .why-choose-right .why-choose-item .why-choose-list .why-choose-list-text p {
    font-size: 14px;
    line-height: 130%;
  }
}

/* 3.6 Testimonial Section */
.wpo-testimonial-section,
.wpo-testimonial-section-s2 {
  padding-bottom: 170px;
}
@media (max-width: 991px) {
  .wpo-testimonial-section,
  .wpo-testimonial-section-s2 {
    padding-bottom: 90px;
  }
}
@media (max-width: 767px) {
  .wpo-testimonial-section,
  .wpo-testimonial-section-s2 {
    padding-bottom: 60px;
  }
}
.wpo-testimonial-section .testimonial-left,
.wpo-testimonial-section-s2 .testimonial-left {
  max-width: 275px;
}
@media (max-width: 991px) {
  .wpo-testimonial-section .testimonial-left,
  .wpo-testimonial-section-s2 .testimonial-left {
    margin: 0 auto;
  }
}
.wpo-testimonial-section .testimonial-left .wpo-section-title-s2 p,
.wpo-testimonial-section-s2 .testimonial-left .wpo-section-title-s2 p {
  padding-top: 25px;
}
@media (max-width: 991px) {
  .wpo-testimonial-section .testimonial-left .wpo-section-title-s2 p,
  .wpo-testimonial-section-s2 .testimonial-left .wpo-section-title-s2 p {
    padding-top: 5px;
  }
}
.wpo-testimonial-section .testimonial-slide .owl-nav,
.wpo-testimonial-section-s2 .testimonial-slide .owl-nav {
  display: none;
}
.wpo-testimonial-section .testimonial-slide .owl-dots,
.wpo-testimonial-section-s2 .testimonial-slide .owl-dots {
  text-align: center;
  margin-top: 20px;
}
@media (min-width: 992px) {
  .wpo-testimonial-section .testimonial-slide .owl-dots,
  .wpo-testimonial-section-s2 .testimonial-slide .owl-dots {
    display: none;
  }
}
.wpo-testimonial-section .testimonial-slide .owl-dots button,
.wpo-testimonial-section-s2 .testimonial-slide .owl-dots button {
  border: 0;
  width: 10px;
  height: 12px;
  margin: 5px;
  border-radius: 50%;
  background-color: #202E05;
}
.wpo-testimonial-section .testimonial-slide .owl-dots button.active,
.wpo-testimonial-section-s2 .testimonial-slide .owl-dots button.active {
  background: #B5E717;
}
.wpo-testimonial-section .testimonial-slide .testimonial-card,
.wpo-testimonial-section-s2 .testimonial-slide .testimonial-card {
  background-color: #405413;
  padding: 8px;
  border-radius: 12px;
}
.wpo-testimonial-section .testimonial-slide .testimonial-card .testimonial-item,
.wpo-testimonial-section-s2 .testimonial-slide .testimonial-card .testimonial-item {
  background-color: #FBFEE7;
  border-radius: 8px;
  padding: 30px 19px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  min-height: 385px;
}
@media (max-width: 1399px) {
  .wpo-testimonial-section .testimonial-slide .testimonial-card .testimonial-item,
  .wpo-testimonial-section-s2 .testimonial-slide .testimonial-card .testimonial-item {
    padding: 25px 15px;
    min-height: 340px;
  }
}
@media (max-width: 991px) {
  .wpo-testimonial-section .testimonial-slide .testimonial-card .testimonial-item,
  .wpo-testimonial-section-s2 .testimonial-slide .testimonial-card .testimonial-item {
    min-height: 300px;
  }
}
.wpo-testimonial-section .testimonial-slide .testimonial-card .content h3,
.wpo-testimonial-section-s2 .testimonial-slide .testimonial-card .content h3 {
  margin: 0;
  color: #202E05;
  font-size: 20px;
  font-weight: 500;
  line-height: 120%;
  font-family: "Instrument Sans";
  padding-bottom: 20px;
}
@media (max-width: 1399px) {
  .wpo-testimonial-section .testimonial-slide .testimonial-card .content h3,
  .wpo-testimonial-section-s2 .testimonial-slide .testimonial-card .content h3 {
    font-size: 18px;
    line-height: 110%;
  }
}
.wpo-testimonial-section .testimonial-slide .testimonial-card .content p,
.wpo-testimonial-section-s2 .testimonial-slide .testimonial-card .content p {
  margin: 0;
  color: #202E05;
  font-size: 18px;
  font-weight: 400;
  line-height: 130%;
}
@media (max-width: 1399px) {
  .wpo-testimonial-section .testimonial-slide .testimonial-card .content p,
  .wpo-testimonial-section-s2 .testimonial-slide .testimonial-card .content p {
    font-size: 18px;
    line-height: 120%;
  }
}
.wpo-testimonial-section .testimonial-slide .testimonial-card .client,
.wpo-testimonial-section-s2 .testimonial-slide .testimonial-card .client {
  display: flex;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid rgba(32, 46, 5, 0.1);
  width: 100%;
}
.wpo-testimonial-section .testimonial-slide .testimonial-card .client .client-img,
.wpo-testimonial-section-s2 .testimonial-slide .testimonial-card .client .client-img {
  border-radius: 50%;
}
.wpo-testimonial-section .testimonial-slide .testimonial-card .client .client-img img,
.wpo-testimonial-section-s2 .testimonial-slide .testimonial-card .client .client-img img {
  border-radius: 50%;
}
.wpo-testimonial-section .testimonial-slide .testimonial-card .client .client-text,
.wpo-testimonial-section-s2 .testimonial-slide .testimonial-card .client .client-text {
  margin-left: 15px;
  position: relative;
}
.wpo-testimonial-section .testimonial-slide .testimonial-card .client .client-text h4,
.wpo-testimonial-section-s2 .testimonial-slide .testimonial-card .client .client-text h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 120%;
  font-family: "Instrument Sans";
}
.wpo-testimonial-section .testimonial-slide .testimonial-card .client .client-text span,
.wpo-testimonial-section-s2 .testimonial-slide .testimonial-card .client .client-text span {
  font-size: 14px;
  font-weight: 500;
  line-height: 160%;
  letter-spacing: 0.32px;
  text-transform: uppercase;
}
.wpo-testimonial-section .testimonial-slide .testimonial-card .testimonial-bottom,
.wpo-testimonial-section-s2 .testimonial-slide .testimonial-card .testimonial-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 10px 5px;
}
.wpo-testimonial-section .testimonial-slide .testimonial-card .testimonial-bottom p,
.wpo-testimonial-section-s2 .testimonial-slide .testimonial-card .testimonial-bottom p {
  margin: 0;
  color: #FBFEE7;
  font-size: 14px;
  font-weight: 500;
  line-height: 130%;
  letter-spacing: 0.64px;
}

/* 3.7 Case Section */
.wpo-case-section {
  padding-bottom: 85px;
}
@media (max-width: 991px) {
  .wpo-case-section {
    padding-bottom: 65px;
  }
}
@media (max-width: 767px) {
  .wpo-case-section {
    padding-bottom: 40px;
  }
}
.wpo-case-section .title-btn-right {
  text-align: right;
}
@media (max-width: 991px) {
  .wpo-case-section .title-btn-right {
    text-align: center;
    margin-bottom: 30px;
  }
}
.wpo-case-section .case-slider {
  position: relative;
}
.wpo-case-section .case-slider .owl-stage {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 150px;
}
@media (max-width: 991px) {
  .wpo-case-section .case-slider .owl-stage {
    margin-left: 0;
  }
}
.wpo-case-section .case-slider .owl-item {
  max-width: 525px;
}
@media (max-width: 991px) {
  .wpo-case-section .case-slider .owl-item {
    max-width: 400px;
  }
}
@media (max-width: 575px) {
  .wpo-case-section .case-slider .owl-item {
    max-width: unset;
  }
}
.wpo-case-section .case-slider .owl-nav {
  display: none;
}
.wpo-case-section .case-slider .owl-dots {
  text-align: center;
}
@media (min-width: 992px) {
  .wpo-case-section .case-slider .owl-dots {
    display: none;
  }
}
.wpo-case-section .case-slider .owl-dots button {
  border: 0;
  width: 10px;
  height: 12px;
  margin: 5px;
  border-radius: 50%;
  background-color: #202E05;
}
.wpo-case-section .case-slider .owl-dots button.active {
  background: #B5E717;
}
.wpo-case-section .case-item {
  position: relative;
  margin-bottom: 25px;
}
.wpo-case-section .case-item .image {
  border-radius: 8px;
  overflow: hidden;
  height: 100%;
}
.wpo-case-section .case-item .image img {
  border-radius: 8px;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1);
  transition: all 0.3s ease-in-out;
}
.wpo-case-section .case-item .case-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 10px;
  padding-top: 0;
}
@media (max-width: 575px) {
  .wpo-case-section .case-item .case-bottom {
    padding: 5px;
  }
}
.wpo-case-section .case-item .case-bottom .case-content {
  background: rgba(251, 254, 231, 0.85);
  backdrop-filter: blur(20px);
  padding: 15px 25px;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 1399px) {
  .wpo-case-section .case-item .case-bottom .case-content {
    padding: 15px;
  }
}
@media (max-width: 767px) {
  .wpo-case-section .case-item .case-bottom .case-content {
    flex-direction: column;
    text-align: center;
  }
}
.wpo-case-section .case-item .case-bottom .case-content .case-text h3 {
  margin-bottom: 0;
  font-family: "Instrument Sans";
  font-size: 20px;
  font-weight: 600;
  line-height: 120%;
  text-transform: capitalize;
  margin-bottom: 5px;
}
@media (max-width: 1399px) {
  .wpo-case-section .case-item .case-bottom .case-content .case-text h3 {
    font-size: 17px;
  }
}
@media (max-width: 767px) {
  .wpo-case-section .case-item .case-bottom .case-content .case-text h3 {
    font-size: 15px;
    line-height: 115%;
  }
}
.wpo-case-section .case-item .case-bottom .case-content .case-text h3 a {
  color: #102D06;
}
.wpo-case-section .case-item .case-bottom .case-content .case-text h3 a:hover {
  color: #2B6014;
}
.wpo-case-section .case-item .case-bottom .case-content .case-text span {
  font-family: "Instrument Sans";
  color: #202E05;
  font-size: 14px;
  font-weight: 500;
  line-height: 134%;
  letter-spacing: 0.64px;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .wpo-case-section .case-item .case-bottom .case-content .case-text span {
    font-size: 11px;
    line-height: 120%;
  }
}
.wpo-case-section .case-item .case-bottom .arrow-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #BFE734;
  border-radius: 100px;
  text-align: center;
  transition: all ease-in-out 0.4s;
}
@media (max-width: 1399px) {
  .wpo-case-section .case-item .case-bottom .arrow-icon {
    width: 40px;
    height: 40px;
  }
}
@media (max-width: 767px) {
  .wpo-case-section .case-item .case-bottom .arrow-icon {
    margin-top: 5px;
  }
}
.wpo-case-section .case-item .case-bottom .arrow-icon img {
  max-width: 25px;
  width: 100%;
}
@media (max-width: 1399px) {
  .wpo-case-section .case-item .case-bottom .arrow-icon img {
    max-width: 20px;
  }
}
.wpo-case-section .case-item .case-bottom .icon-hover {
  display: none;
}
.wpo-case-section .case-item:hover .case-content {
  background-color: #FBFEE7;
}
.wpo-case-section .case-item:hover .image img {
  transform: scale(1.1);
}
.wpo-case-section .case-item:hover .arrow-icon {
  background-color: #405413;
}
.wpo-case-section .case-item:hover .arrow-icon .icon-hover {
  display: block;
}
.wpo-case-section .case-item:hover .arrow-icon .icon {
  display: none;
}

/* 3.8 Contact Section */
.wpo-contact-section,
.wpo-contact-section-s2 {
  border-top: 1px solid #E4EADB;
}
.wpo-contact-section .contact-top,
.wpo-contact-section-s2 .contact-top {
  margin-bottom: 70px;
}
@media (max-width: 991px) {
  .wpo-contact-section .contact-top,
  .wpo-contact-section-s2 .contact-top {
    margin-bottom: 40px;
  }
}
.wpo-contact-section .contact-top .partner-item,
.wpo-contact-section-s2 .contact-top .partner-item {
  max-width: 900px;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .wpo-contact-section .contact-top .partner-item,
  .wpo-contact-section-s2 .contact-top .partner-item {
    max-width: 550px;
  }
}
@media (max-width: 767px) {
  .wpo-contact-section .contact-top .partner-item,
  .wpo-contact-section-s2 .contact-top .partner-item {
    max-width: 440px;
  }
}
@media (max-width: 425px) {
  .wpo-contact-section .contact-top .partner-item,
  .wpo-contact-section-s2 .contact-top .partner-item {
    max-width: 250px;
  }
}
.wpo-contact-section .contact-right,
.wpo-contact-section-s2 .contact-right {
  height: 100%;
}
@media (max-width: 991px) {
  .wpo-contact-section .contact-right,
  .wpo-contact-section-s2 .contact-right {
    margin-top: 30px;
    height: auto;
  }
}
.wpo-contact-section .contact-right .contact-bg-image,
.wpo-contact-section-s2 .contact-right .contact-bg-image {
  height: 100%;
  position: relative;
}
.wpo-contact-section .contact-right .contact-bg-image .image,
.wpo-contact-section-s2 .contact-right .contact-bg-image .image {
  height: 100%;
  overflow: hidden;
  border-radius: 12px;
}
.wpo-contact-section .contact-right .contact-bg-image img,
.wpo-contact-section-s2 .contact-right .contact-bg-image img {
  height: 100%;
  border-radius: 12px;
  width: 100%;
  transform: scale(1);
  transition: all 0.3s ease-in-out;
}
.wpo-contact-section .contact-right .contact-bg-image .contact-item,
.wpo-contact-section-s2 .contact-right .contact-bg-image .contact-item {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 10px;
  width: 100%;
}
.wpo-contact-section .contact-right .contact-bg-image .contact-item .content,
.wpo-contact-section-s2 .contact-right .contact-bg-image .contact-item .content {
  border-radius: 8px;
  background: rgba(251, 254, 231, 0.8);
  backdrop-filter: blur(20px);
  padding: 20px 25px;
}
@media (max-width: 1199px) {
  .wpo-contact-section .contact-right .contact-bg-image .contact-item .content,
  .wpo-contact-section-s2 .contact-right .contact-bg-image .contact-item .content {
    padding: 20px 10px;
  }
}
@media (max-width: 991px) {
  .wpo-contact-section .contact-right .contact-bg-image .contact-item .content,
  .wpo-contact-section-s2 .contact-right .contact-bg-image .contact-item .content {
    text-align: center;
  }
}
.wpo-contact-section .contact-right .contact-bg-image .contact-item .content h3,
.wpo-contact-section-s2 .contact-right .contact-bg-image .contact-item .content h3 {
  margin: 0;
  font-size: 24px;
  color: #202E05;
  font-family: "Instrument Sans";
  font-weight: 500;
  line-height: 124%;
  margin-bottom: 3px;
}
.wpo-contact-section .contact-right .contact-bg-image .contact-item .content span,
.wpo-contact-section-s2 .contact-right .contact-bg-image .contact-item .content span {
  font-size: 14px;
  color: #202E05;
  font-weight: 500;
  line-height: 134%;
  letter-spacing: 0.64px;
  text-transform: uppercase;
  margin-bottom: 10px;
  position: relative;
  padding-left: 15px;
}
@media (max-width: 1199px) {
  .wpo-contact-section .contact-right .contact-bg-image .contact-item .content span,
  .wpo-contact-section-s2 .contact-right .contact-bg-image .contact-item .content span {
    padding-left: 10px;
  }
}
.wpo-contact-section .contact-right .contact-bg-image .contact-item .content span::before,
.wpo-contact-section-s2 .contact-right .contact-bg-image .contact-item .content span::before {
  position: absolute;
  content: "";
  top: 5px;
  left: 0;
  width: 6px;
  height: 6px;
  background-color: #202E05;
  border-radius: 50%;
}
.wpo-contact-section .contact-right .contact-bg-image:hover .image img,
.wpo-contact-section-s2 .contact-right .contact-bg-image:hover .image img {
  transform: scale(1.1);
}
.wpo-contact-section .col,
.wpo-contact-section-s2 .col {
  min-height: 100%;
}

.contact-left {
  background-color: #405413;
  padding: 10px;
  padding-top: 0;
  border-radius: 12px;
}
.contact-left .wpo-section-title-s2 {
  margin: 0;
  padding: 5px 0;
}
.contact-left .wpo-section-title-s2 .title-top span {
  color: #FBFEE7;
}
.contact-left .wpo-contact-form-area {
  padding: 50px 45px 35px;
  max-width: 1196px;
  margin: 0 auto;
  background: #FBFEE7;
  border-radius: 6px;
}
@media (max-width: 1199px) {
  .contact-left .wpo-contact-form-area {
    padding: 35px 30px 20px;
  }
}
@media (max-width: 575px) {
  .contact-left .wpo-contact-form-area {
    padding: 25px 20px 20px;
  }
}
.contact-left .wpo-contact-form-area .col {
  padding: 0 7px;
}
.contact-left .wpo-contact-form-area .input-item label {
  font-size: 14px;
  color: #202E05;
  font-weight: 400;
  line-height: 134%;
  letter-spacing: 0.64px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.contact-left .wpo-contact-form-area .form-control {
  width: 100%;
  height: 48px;
  margin-bottom: 18px;
  border: 0;
  border: none;
  border-radius: 8px;
  border: 1px solid #E4EADB;
  background-color: #F3F5E3;
  color: #899174;
  font-size: 16px;
  font-weight: 400;
  line-height: 145%;
}
.contact-left .wpo-contact-form-area .form-control:focus {
  outline: none;
  box-shadow: none;
}
.contact-left .wpo-contact-form-area .form-control::-moz-placeholder {
  color: #899174;
}
.contact-left .wpo-contact-form-area .form-control::placeholder {
  color: #899174;
}
.contact-left .wpo-contact-form-area textarea.form-control {
  height: 166px;
}
@media (max-width: 575px) {
  .contact-left .wpo-contact-form-area textarea.form-control {
    height: 100px;
  }
}
.contact-left .wpo-contact-form-area select.form-control {
  color: #265215;
  -webkit-appearance: none;
  -o-appearance: none;
  appearance: none;
  -moz-appearance: none;
  background: rgba(131, 136, 173, 0.06) url(../images/select-icon.png) no-repeat calc(100% - 15px) center;
  position: relative;
}
.contact-left .wpo-contact-form-area .submit-area {
  margin-top: 20px;
}
@media (max-width: 991px) {
  .contact-left .wpo-contact-form-area .submit-area {
    margin-top: 10px;
  }
}
.contact-left .wpo-contact-form-area .contact-validation-active label.error {
  margin-top: -8px;
  margin-bottom: 20px;
}
.contact-left .wpo-contact-form-area label.error,
.contact-left .wpo-contact-form-area label.error2 {
  color: red;
  font-size: 14px;
}

/*======================================
5. Home Style 2
 =======================================*/
/* 5.1 About Section S2 */
.wpo-about-section-s2,
.wpo-about-section-s3 {
  padding: 200px 0;
  padding-top: 210px;
  border-bottom: 0;
}
@media (max-width: 1199px) {
  .wpo-about-section-s2,
  .wpo-about-section-s3 {
    padding: 120px 0;
  }
}
@media (max-width: 991px) {
  .wpo-about-section-s2,
  .wpo-about-section-s3 {
    padding: 90px 0;
  }
}
@media (max-width: 767px) {
  .wpo-about-section-s2,
  .wpo-about-section-s3 {
    padding: 60px 0;
  }
}
.wpo-about-section-s2 .wpo-section-title-s3 p,
.wpo-about-section-s3 .wpo-section-title-s3 p {
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
}
.wpo-about-section-s2 .wpo-about-item,
.wpo-about-section-s3 .wpo-about-item {
  justify-content: space-between;
  max-width: 822px;
  gap: 25px;
  height: 100%;
}
@media (max-width: 991px) {
  .wpo-about-section-s2 .wpo-about-item,
  .wpo-about-section-s3 .wpo-about-item {
    margin: 0 auto;
    height: auto;
    padding-top: 0;
  }
}
@media (max-width: 767px) {
  .wpo-about-section-s2 .wpo-about-item,
  .wpo-about-section-s3 .wpo-about-item {
    flex-direction: row;
    gap: 15px;
  }
}
@media (max-width: 500px) {
  .wpo-about-section-s2 .wpo-about-item,
  .wpo-about-section-s3 .wpo-about-item {
    flex-direction: column;
  }
}
.wpo-about-section-s2 .about-middle .wpo-fun-fact-grids .grid h3,
.wpo-about-section-s3 .about-middle .wpo-fun-fact-grids .grid h3 {
  justify-content: start;
  font-size: 64px;
  font-weight: 400;
  line-height: 105%;
}
@media (max-width: 1399px) {
  .wpo-about-section-s2 .about-middle .wpo-fun-fact-grids .grid h3,
  .wpo-about-section-s3 .about-middle .wpo-fun-fact-grids .grid h3 {
    font-size: 50px;
  }
}
@media (max-width: 1199px) {
  .wpo-about-section-s2 .about-middle .wpo-fun-fact-grids .grid h3,
  .wpo-about-section-s3 .about-middle .wpo-fun-fact-grids .grid h3 {
    font-size: 40px;
    justify-content: center;
  }
}
.wpo-about-section-s2 .about-middle .wpo-fun-fact-grids .grid h3 + p,
.wpo-about-section-s3 .about-middle .wpo-fun-fact-grids .grid h3 + p {
  letter-spacing: 0.64px;
  max-width: unset;
}
@media (max-width: 1399px) {
  .wpo-about-section-s2 .about-middle .wpo-fun-fact-grids .grid h3 + p,
  .wpo-about-section-s3 .about-middle .wpo-fun-fact-grids .grid h3 + p {
    font-size: 11px;
  }
}
.wpo-about-section-s2 .about-middle .wpo-fun-fact-grids .info,
.wpo-about-section-s3 .about-middle .wpo-fun-fact-grids .info {
  display: block;
}
.wpo-about-section-s2 .about-middle .wpo-fun-fact-grids .grid,
.wpo-about-section-s3 .about-middle .wpo-fun-fact-grids .grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 18px 25px 20px;
  background: rgba(241, 254, 231, 0.8);
  backdrop-filter: blur(30px);
}
@media (max-width: 1399px) {
  .wpo-about-section-s2 .about-middle .wpo-fun-fact-grids .grid,
  .wpo-about-section-s3 .about-middle .wpo-fun-fact-grids .grid {
    padding: 30px 15px 20px;
  }
}
@media (max-width: 1199px) {
  .wpo-about-section-s2 .about-middle .wpo-fun-fact-grids .grid,
  .wpo-about-section-s3 .about-middle .wpo-fun-fact-grids .grid {
    display: block;
    text-align: center;
  }
}
.wpo-about-section-s2 .about-middle .wpo-fun-fact-grids .grid .tag,
.wpo-about-section-s3 .about-middle .wpo-fun-fact-grids .grid .tag {
  padding: 2px 6px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  line-height: 134%;
  letter-spacing: 1.28px;
  text-transform: uppercase;
  border-radius: 6px;
  background-color: #C8F8A9;
  color: #2B6014;
}
@media (max-width: 1399px) {
  .wpo-about-section-s2 .about-middle .wpo-fun-fact-grids .grid .tag,
  .wpo-about-section-s3 .about-middle .wpo-fun-fact-grids .grid .tag {
    font-size: 11px;
  }
}
.wpo-about-section-s2 .about-left,
.wpo-about-section-s3 .about-left {
  display: flex;
  flex-direction: column;
  height: 100%;
  margin-left: 10px;
}
@media (max-width: 991px) {
  .wpo-about-section-s2 .about-left,
  .wpo-about-section-s3 .about-left {
    margin: 0 auto;
    text-align: center;
    margin-top: 40px;
  }
}
.wpo-about-section-s2 .about-left .wpo-section-title-s3,
.wpo-about-section-s3 .about-left .wpo-section-title-s3 {
  display: block;
  height: 100%;
}
@media (max-width: 991px) {
  .wpo-about-section-s2 .about-left .wpo-section-title-s3,
  .wpo-about-section-s3 .about-left .wpo-section-title-s3 {
    text-align: center;
    height: auto;
  }
}
.wpo-about-section-s2 .about-left .about-left-bottom .about-bottom-content,
.wpo-about-section-s3 .about-left .about-left-bottom .about-bottom-content {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-bottom: 22px;
}
@media (max-width: 991px) {
  .wpo-about-section-s2 .about-left .about-left-bottom .about-bottom-content,
  .wpo-about-section-s3 .about-left .about-left-bottom .about-bottom-content {
    display: block;
  }
}
.wpo-about-section-s2 .about-left .about-left-bottom .about-bottom-content:last-child,
.wpo-about-section-s3 .about-left .about-left-bottom .about-bottom-content:last-child {
  margin-bottom: 0;
}
.wpo-about-section-s2 .about-left .about-left-bottom .about-bottom-content .icon,
.wpo-about-section-s3 .about-left .about-left-bottom .about-bottom-content .icon {
  background-color: #102D06;
  text-align: center;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
}
@media (max-width: 991px) {
  .wpo-about-section-s2 .about-left .about-left-bottom .about-bottom-content .icon,
  .wpo-about-section-s3 .about-left .about-left-bottom .about-bottom-content .icon {
    margin: 0 auto;
    margin-bottom: 10px;
  }
}
.wpo-about-section-s2 .about-left .about-left-bottom .about-bottom-content .text h3,
.wpo-about-section-s3 .about-left .about-left-bottom .about-bottom-content .text h3 {
  margin: 0;
  font-family: "Instrument Sans";
  font-size: 16px;
  font-weight: 600;
  line-height: 116%;
  padding-bottom: 5px;
}
.wpo-about-section-s2 .about-left .about-left-bottom .about-bottom-content .text p,
.wpo-about-section-s3 .about-left .about-left-bottom .about-bottom-content .text p {
  margin: 0;
  font-family: "Instrument Sans";
  font-size: 16px;
  font-weight: 400;
  line-height: 146%;
}

/* 5.2 Service Section S2 */
.wpo-service-section-s2 {
  background-color: #EFF6EA;
  padding: 120px 0;
}
@media (max-width: 991px) {
  .wpo-service-section-s2 {
    padding: 90px 0;
    padding-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .wpo-service-section-s2 {
    padding: 60px 0;
    padding-bottom: 30px;
  }
}
.wpo-service-section-s2 .wpo-section-title-s3 h2 {
  max-width: 570px;
}
.wpo-service-section-s2 .service-item {
  position: relative;
  margin-bottom: 30px;
}
.wpo-service-section-s2 .service-item .image {
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
}
.wpo-service-section-s2 .service-item .image img {
  border-radius: 12px;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1);
  transition: all 0.3s ease-in-out;
}
.wpo-service-section-s2 .service-item .service-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 10px;
  padding-top: 0;
}
.wpo-service-section-s2 .service-item .service-bottom .service-content {
  background: rgba(241, 254, 231, 0.8);
  backdrop-filter: blur(30px);
  padding: 25px;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 1399px) {
  .wpo-service-section-s2 .service-item .service-bottom .service-content {
    padding: 20px 15px;
  }
}
.wpo-service-section-s2 .service-item .service-bottom .service-content .service-text h3 {
  font-family: "Instrument Sans";
  margin: 0;
  font-size: 24px;
  font-weight: 500;
  line-height: 125%;
  color: #102D06;
  max-width: 260px;
}
@media (max-width: 1399px) {
  .wpo-service-section-s2 .service-item .service-bottom .service-content .service-text h3 {
    font-size: 20px;
  }
}
@media (max-width: 1199px) {
  .wpo-service-section-s2 .service-item .service-bottom .service-content .service-text h3 {
    font-size: 18px;
    max-width: 190px;
  }
}
.wpo-service-section-s2 .service-item .service-bottom .service-content .service-text h3 a {
  color: #102D06;
}
.wpo-service-section-s2 .service-item .service-bottom .service-content .service-text h3 a:hover {
  color: #2B6014;
}
.wpo-service-section-s2 .service-item .service-bottom .arrow-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FBFEE7;
  border-radius: 100px;
  text-align: center;
  transition: all ease-in-out 0.4s;
}
@media (max-width: 1199px) {
  .wpo-service-section-s2 .service-item .service-bottom .arrow-icon {
    width: 40px;
    height: 40px;
  }
}
.wpo-service-section-s2 .service-item .service-bottom .arrow-icon img {
  max-width: 25px;
  width: 100%;
}
@media (max-width: 1199px) {
  .wpo-service-section-s2 .service-item .service-bottom .arrow-icon img {
    max-width: 20px;
  }
}
.wpo-service-section-s2 .service-item .service-bottom .icon-hover {
  display: none;
}
.wpo-service-section-s2 .service-item:hover .service-content {
  background: rgb(251, 254, 231);
}
.wpo-service-section-s2 .service-item:hover .image img {
  transform: scale(1.1);
}
.wpo-service-section-s2 .service-item:hover .arrow-icon {
  background-color: #102D06;
}
.wpo-service-section-s2 .service-item:hover .arrow-icon .icon-hover {
  display: block;
}
.wpo-service-section-s2 .service-item:hover .arrow-icon .icon {
  display: none;
}

/* 5.3 Why Choose Section S2 */
.wpo-why-choose-section-s2,
.wpo-why-choose-section-s3 {
  padding: 150px 0;
  border-bottom: 0;
  position: relative;
}
@media (max-width: 1199px) {
  .wpo-why-choose-section-s2,
  .wpo-why-choose-section-s3 {
    padding-bottom: 120px;
  }
}
@media (max-width: 991px) {
  .wpo-why-choose-section-s2,
  .wpo-why-choose-section-s3 {
    padding: 90px 0;
  }
}
@media (max-width: 767px) {
  .wpo-why-choose-section-s2,
  .wpo-why-choose-section-s3 {
    padding: 60px 0;
  }
}
.wpo-why-choose-section-s2 .why-choose-image,
.wpo-why-choose-section-s3 .why-choose-image {
  max-width: 766px;
  position: relative;
  z-index: 1;
}
@media (max-width: 991px) {
  .wpo-why-choose-section-s2 .why-choose-image,
  .wpo-why-choose-section-s3 .why-choose-image {
    margin: 0 auto;
  }
}
.wpo-why-choose-section-s2 .why-choose-image .image .right-image,
.wpo-why-choose-section-s3 .why-choose-image .image .right-image {
  position: relative;
  z-index: 1;
  -webkit-mask-size: 100%;
  mask-size: 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}
.wpo-why-choose-section-s2 .why-choose-image .image .right-image img,
.wpo-why-choose-section-s3 .why-choose-image .image .right-image img {
  border-radius: 16px;
}
.wpo-why-choose-section-s2 .why-choose-image .image-2,
.wpo-why-choose-section-s3 .why-choose-image .image-2 {
  position: absolute;
  bottom: 30px;
  right: 30px;
  z-index: 11;
}
@media (max-width: 500px) {
  .wpo-why-choose-section-s2 .why-choose-image .image-2,
  .wpo-why-choose-section-s3 .why-choose-image .image-2 {
    bottom: 10px;
    right: 10px;
  }
}
.wpo-why-choose-section-s2 .why-choose-image .image-2 img,
.wpo-why-choose-section-s3 .why-choose-image .image-2 img {
  border-radius: 12px;
}
@media (max-width: 1399px) {
  .wpo-why-choose-section-s2 .why-choose-image .image-2 img,
  .wpo-why-choose-section-s3 .why-choose-image .image-2 img {
    max-width: 280px;
  }
}
@media (max-width: 1199px) {
  .wpo-why-choose-section-s2 .why-choose-image .image-2 img,
  .wpo-why-choose-section-s3 .why-choose-image .image-2 img {
    max-width: 200px;
  }
}
@media (max-width: 425px) {
  .wpo-why-choose-section-s2 .why-choose-image .image-2 img,
  .wpo-why-choose-section-s3 .why-choose-image .image-2 img {
    max-width: 150px;
  }
}
.wpo-why-choose-section-s2 .why-choose-right,
.wpo-why-choose-section-s3 .why-choose-right {
  padding-left: 0;
}
@media (max-width: 991px) {
  .wpo-why-choose-section-s2 .why-choose-right,
  .wpo-why-choose-section-s3 .why-choose-right {
    margin-top: 40px;
  }
}
.wpo-why-choose-section-s2 .why-choose-right .wpo-section-title-s3,
.wpo-why-choose-section-s3 .why-choose-right .wpo-section-title-s3 {
  max-width: 440px;
  display: block;
}
@media (max-width: 991px) {
  .wpo-why-choose-section-s2 .why-choose-right .wpo-section-title-s3,
  .wpo-why-choose-section-s3 .why-choose-right .wpo-section-title-s3 {
    text-align: center;
    margin: 0 auto;
    margin-bottom: 40px;
  }
}
.wpo-why-choose-section-s2 .why-choose-right .wpo-section-title-s3 p,
.wpo-why-choose-section-s3 .why-choose-right .wpo-section-title-s3 p {
  padding-top: 20px;
}
.wpo-why-choose-section-s2 .why-choose-right .wpo-section-title-s3 .wpo-title-btn,
.wpo-why-choose-section-s3 .why-choose-right .wpo-section-title-s3 .wpo-title-btn {
  margin-top: 35px;
  display: inline-block;
}
@media (max-width: 991px) {
  .wpo-why-choose-section-s2 .why-choose-right .wpo-section-title-s3 .wpo-title-btn,
  .wpo-why-choose-section-s3 .why-choose-right .wpo-section-title-s3 .wpo-title-btn {
    margin-top: 20px;
  }
}
@media (max-width: 991px) {
  .wpo-why-choose-section-s2 .why-choose-right .wpo-section-title-s3 .wpo-title-btn .theme-btn-s5,
  .wpo-why-choose-section-s3 .why-choose-right .wpo-section-title-s3 .wpo-title-btn .theme-btn-s5 {
    justify-content: center;
  }
}
.wpo-why-choose-section-s2 .why-choose-right .why-choose-item,
.wpo-why-choose-section-s3 .why-choose-right .why-choose-item {
  display: flex;
}
@media (max-width: 767px) {
  .wpo-why-choose-section-s2 .why-choose-right .why-choose-item,
  .wpo-why-choose-section-s3 .why-choose-right .why-choose-item {
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media (max-width: 530px) {
  .wpo-why-choose-section-s2 .why-choose-right .why-choose-item,
  .wpo-why-choose-section-s3 .why-choose-right .why-choose-item {
    display: block;
  }
}
.wpo-why-choose-section-s2 .why-choose-right .why-choose-item .why-choose-list,
.wpo-why-choose-section-s3 .why-choose-right .why-choose-item .why-choose-list {
  display: block;
  background-color: #E0FBCC;
  margin-right: 20px;
  padding: 30px 20px 30px;
  margin-bottom: 0;
  border-radius: 12px;
  width: 33.33%;
}
@media (max-width: 1500px) {
  .wpo-why-choose-section-s2 .why-choose-right .why-choose-item .why-choose-list,
  .wpo-why-choose-section-s3 .why-choose-right .why-choose-item .why-choose-list {
    margin-right: 10px;
  }
}
@media (max-width: 1399px) {
  .wpo-why-choose-section-s2 .why-choose-right .why-choose-item .why-choose-list,
  .wpo-why-choose-section-s3 .why-choose-right .why-choose-item .why-choose-list {
    padding: 30px 15px 30px;
  }
}
@media (max-width: 767px) {
  .wpo-why-choose-section-s2 .why-choose-right .why-choose-item .why-choose-list,
  .wpo-why-choose-section-s3 .why-choose-right .why-choose-item .why-choose-list {
    width: 48%;
    margin-bottom: 10px;
  }
}
@media (max-width: 530px) {
  .wpo-why-choose-section-s2 .why-choose-right .why-choose-item .why-choose-list,
  .wpo-why-choose-section-s3 .why-choose-right .why-choose-item .why-choose-list {
    width: 100%;
  }
}
.wpo-why-choose-section-s2 .why-choose-right .why-choose-item .why-choose-list:last-child,
.wpo-why-choose-section-s3 .why-choose-right .why-choose-item .why-choose-list:last-child {
  margin-right: 0;
}
@media (max-width: 767px) {
  .wpo-why-choose-section-s2 .why-choose-right .why-choose-item .why-choose-list:last-child,
  .wpo-why-choose-section-s3 .why-choose-right .why-choose-item .why-choose-list:last-child {
    margin-bottom: 0;
  }
}
.wpo-why-choose-section-s2 .why-choose-right .why-choose-item .why-choose-list .icon,
.wpo-why-choose-section-s3 .why-choose-right .why-choose-item .why-choose-list .icon {
  background-color: #102D06;
}
@media (max-width: 991px) {
  .wpo-why-choose-section-s2 .why-choose-right .why-choose-item .why-choose-list .icon,
  .wpo-why-choose-section-s3 .why-choose-right .why-choose-item .why-choose-list .icon {
    margin-bottom: 0;
  }
}
.wpo-why-choose-section-s2 .why-choose-right .why-choose-item .why-choose-list .why-choose-list-text,
.wpo-why-choose-section-s3 .why-choose-right .why-choose-item .why-choose-list .why-choose-list-text {
  padding-top: 35px;
}
@media (max-width: 991px) {
  .wpo-why-choose-section-s2 .why-choose-right .why-choose-item .why-choose-list .why-choose-list-text,
  .wpo-why-choose-section-s3 .why-choose-right .why-choose-item .why-choose-list .why-choose-list-text {
    padding-top: 20px;
  }
}
.wpo-why-choose-section-s2 .why-choose-right .why-choose-item .why-choose-list .why-choose-list-text h3,
.wpo-why-choose-section-s3 .why-choose-right .why-choose-item .why-choose-list .why-choose-list-text h3 {
  color: #102D06;
  padding-bottom: 8px;
}
.wpo-why-choose-section-s2 .why-choose-right .why-choose-item .why-choose-list .why-choose-list-text p,
.wpo-why-choose-section-s3 .why-choose-right .why-choose-item .why-choose-list .why-choose-list-text p {
  color: #102D06;
  max-width: 240px;
}
@media (max-width: 1399px) {
  .wpo-why-choose-section-s2 .why-choose-right .why-choose-item .why-choose-list .why-choose-list-text p,
  .wpo-why-choose-section-s3 .why-choose-right .why-choose-item .why-choose-list .why-choose-list-text p {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .wpo-why-choose-section-s2 .why-choose-right .why-choose-item .why-choose-list .why-choose-list-text p,
  .wpo-why-choose-section-s3 .why-choose-right .why-choose-item .why-choose-list .why-choose-list-text p {
    margin: 0 auto;
  }
}
.wpo-why-choose-section-s2 .flower,
.wpo-why-choose-section-s3 .flower {
  position: absolute;
  right: 120px;
  top: 200px;
}
@media (max-width: 1399px) {
  .wpo-why-choose-section-s2 .flower,
  .wpo-why-choose-section-s3 .flower {
    right: 80px;
    top: 150px;
  }
}
@media (max-width: 1199px) {
  .wpo-why-choose-section-s2 .flower,
  .wpo-why-choose-section-s3 .flower {
    right: 30px;
    top: 80px;
  }
}
@media (max-width: 991px) {
  .wpo-why-choose-section-s2 .flower,
  .wpo-why-choose-section-s3 .flower {
    display: none;
  }
}
.wpo-why-choose-section-s2 .flower img,
.wpo-why-choose-section-s3 .flower img {
  animation: circle2 20s linear infinite;
}

/* 5.4 Team Section */
.wpo-team-section {
  position: relative;
  overflow: hidden;
  padding: 0;
  padding-bottom: 120px;
}
@media (max-width: 991px) {
  .wpo-team-section {
    padding-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .wpo-team-section {
    padding-bottom: 30px;
  }
}
.wpo-team-section .wpo-section-title-s3 {
  justify-content: center;
  text-align: center;
  max-width: 410px;
  margin: 0 auto;
  margin-bottom: 40px;
}
.wpo-team-section .team-container {
  height: 100%;
  width: -moz-max-content;
  width: max-content;
  display: flex;
  align-items: center;
}
@media (max-width: 991px) {
  .wpo-team-section .team-container {
    width: 100%;
    justify-content: center;
  }
}
.wpo-team-section .team-container .team-content {
  display: flex;
}
@media (max-width: 991px) {
  .wpo-team-section .team-container .team-content {
    display: block;
  }
}
@media (max-width: 991px) {
  .wpo-team-section .team-container .team-content .team-right {
    padding-left: 0;
  }
}
.wpo-team-section .team-container .team-content .team-right .team-item {
  display: flex;
  gap: 25px;
}
@media (max-width: 991px) {
  .wpo-team-section .team-container .team-content .team-right .team-item {
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
  }
}
@media (max-width: 575px) {
  .wpo-team-section .team-container .team-content .team-right .team-item {
    gap: 0;
  }
}
@media (max-width: 991px) {
  .wpo-team-section .team-container .team-content .team-right .team-item .team-card {
    width: 48%;
  }
}
@media (max-width: 575px) {
  .wpo-team-section .team-container .team-content .team-right .team-item .team-card {
    width: 100%;
  }
}

.team-card {
  margin-bottom: 30px;
  position: relative;
}
.team-card .image {
  overflow: hidden;
  border-radius: 12px;
}
.team-card .image img {
  width: 100%;
  border-radius: 12px;
  height: 100%;
  transform: scale(1);
  transition: all 0.3s ease-in-out;
}
.team-card .team-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 10px;
  padding-top: 0;
  text-align: center;
}
.team-card .team-bottom .team-list {
  background: rgba(241, 254, 231, 0.8);
  backdrop-filter: blur(30px);
  padding: 15px;
  border-radius: 8px;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 991px) {
  .team-card .team-bottom .team-list {
    padding: 10px;
  }
}
.team-card .team-bottom .team-list .team-text h3 {
  font-family: "Instrument Sans";
  margin: 0;
  font-size: 20px;
  font-weight: 500;
  line-height: 120%;
  color: #102D06;
}
.team-card .team-bottom .team-list .team-text h3 a {
  color: #102D06;
}
.team-card .team-bottom .team-list .team-text h3 a:hover {
  color: #4C6311;
}
.team-card .team-bottom .team-list .team-text span {
  font-size: 14px;
  font-weight: 600;
  line-height: 134%;
  letter-spacing: 0.64px;
  text-transform: uppercase;
  color: #102D06;
  color: #265215;
}
.team-card:hover .image img {
  transform: scale(1.1);
}

/* 5.5 Cta Section */
.wpo-cta-section {
  background: url(../images/img-bg.jpg) no-repeat center;
  background-size: cover;
  background-color: transparent;
  position: relative;
  z-index: 1;
  min-height: 1050px;
}
@media (max-width: 1199px) {
  .wpo-cta-section {
    min-height: 880px;
  }
}
@media (max-width: 991px) {
  .wpo-cta-section {
    min-height: 100%;
  }
}
.wpo-cta-section .owl-nav {
  display: none;
}
.wpo-cta-section .owl-dots {
  text-align: center;
  margin-top: 20px;
}
@media (min-width: 992px) {
  .wpo-cta-section .owl-dots {
    display: none;
  }
}
.wpo-cta-section .owl-dots button {
  border: 0;
  width: 10px;
  height: 12px;
  margin: 5px;
  border-radius: 50%;
  background-color: #202E05;
}
.wpo-cta-section .owl-dots button.active {
  background: #B5E717;
}
.wpo-cta-section .cta-left {
  max-width: 400px;
}
@media (max-width: 991px) {
  .wpo-cta-section .cta-left {
    margin: 0 auto;
  }
}
.wpo-cta-section .cta-left .wpo-section-title-s2 {
  display: block;
}
@media (max-width: 991px) {
  .wpo-cta-section .cta-left .wpo-section-title-s2 {
    margin-bottom: 40px;
  }
}
.wpo-cta-section .cta-left .wpo-section-title-s2 h2 {
  color: #F1FEE7;
  padding-top: 0;
}
.wpo-cta-section .cta-left .wpo-section-title-s2 p {
  margin: 0;
  font-size: 20px;
  font-weight: 400;
  line-height: 130%;
  padding-top: 30px;
  color: #F1FEE7;
}
@media (max-width: 991px) {
  .wpo-cta-section .cta-left .wpo-section-title-s2 p {
    font-size: 17px;
    padding-top: 15px;
  }
}
@media (max-width: 575px) {
  .wpo-cta-section .cta-left .wpo-section-title-s2 p {
    font-size: 15px;
  }
}
.wpo-cta-section .cta-left .wpo-section-title-s2 .wpo-title-btn {
  margin-top: 35px;
  display: inline-block;
}
@media (max-width: 991px) {
  .wpo-cta-section .cta-left .wpo-section-title-s2 .wpo-title-btn {
    margin-top: 20px;
  }
}
@media (max-width: 991px) {
  .wpo-cta-section .cta-left .wpo-section-title-s2 .wpo-title-btn .theme-btn-s4 {
    justify-content: center;
  }
}
.wpo-cta-section .cta-slide {
  max-width: 350px;
  position: absolute;
  bottom: 120px;
  right: 50px;
}
@media (max-width: 991px) {
  .wpo-cta-section .cta-slide {
    position: unset;
    margin: 0 auto;
  }
}
.wpo-cta-section .shape-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.cta-card {
  background: rgba(200, 248, 169, 0.36);
  backdrop-filter: blur(30px);
  padding: 8px;
  border-radius: 12px;
  max-width: 350px;
}
.cta-card .cta-item {
  background: rgba(241, 254, 231, 0.66);
  backdrop-filter: blur(30px);
  border-radius: 8px;
  padding: 30px 19px;
}
.cta-card .content {
  margin-bottom: 60px;
}
.cta-card .content .cta-top {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  gap: 10px;
}
.cta-card .content .cta-top i {
  font-size: 18px;
}
.cta-card .content h3 {
  margin: 0;
  color: #202E05;
  font-size: 24px;
  font-weight: 500;
  line-height: 105%;
}
.cta-card .content p {
  margin: 0;
  color: #102D06;
  font-size: 20px;
  font-weight: 400;
  line-height: 130%;
}
.cta-card .client {
  display: flex;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  width: 100%;
}
.cta-card .client .client-img {
  border-radius: 50%;
}
.cta-card .client .client-img img {
  border-radius: 50%;
}
.cta-card .client .client-text {
  margin-left: 15px;
  position: relative;
}
.cta-card .client .client-text h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 120%;
  font-family: "Instrument Sans";
  color: #102D06;
}
.cta-card .client .client-text span {
  font-size: 14px;
  font-weight: 500;
  line-height: 160%;
  letter-spacing: 0.32px;
  text-transform: uppercase;
  color: #102D06;
}
.cta-card .cta-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 10px 0;
}
.cta-card .cta-bottom p {
  margin: 0;
  color: #0E0E0E;
  font-size: 14px;
  font-weight: 500;
  line-height: 130%;
  letter-spacing: 0.64px;
}

/* 5.6 wpo-case-section-s2 */
.wpo-case-section-s2 {
  padding: 150px 0;
}
@media (max-width: 991px) {
  .wpo-case-section-s2 {
    padding: 90px 0;
  }
}
@media (max-width: 767px) {
  .wpo-case-section-s2 {
    padding: 60px 0;
  }
}
.wpo-case-section-s2 .case-left .wpo-section-title-s3 {
  margin-bottom: 70px;
}
@media (max-width: 991px) {
  .wpo-case-section-s2 .case-left .wpo-section-title-s3 {
    margin-bottom: 30px;
  }
}
.wpo-case-section-s2 .case-left .case-item {
  max-width: 450px;
}
@media (max-width: 991px) {
  .wpo-case-section-s2 .case-left .case-item {
    margin: 0 auto;
  }
}
.wpo-case-section-s2 .case-left .case-item .case-content {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #E4EADB;
  padding: 15px 0;
  gap: 20px;
}
@media (max-width: 575px) {
  .wpo-case-section-s2 .case-left .case-item .case-content {
    flex-direction: column;
    text-align: center;
  }
}
.wpo-case-section-s2 .case-left .case-item .case-content img {
  border-radius: 8px;
}
.wpo-case-section-s2 .case-left .case-item .case-content .text h3 {
  margin: 0;
  font-family: "Instrument Sans";
  font-size: 20px;
  font-weight: 500;
  line-height: 120%;
}
@media (max-width: 575px) {
  .wpo-case-section-s2 .case-left .case-item .case-content .text h3 {
    font-size: 17px;
    line-height: 110%;
  }
}
.wpo-case-section-s2 .case-left .case-item .case-content .text h3 a {
  color: #102D06;
}
.wpo-case-section-s2 .case-left .case-item .case-content .text span {
  color: #265215;
  font-size: 14px;
  font-weight: 500;
  line-height: 134%;
  letter-spacing: 0.64px;
  text-transform: uppercase;
}
@media (max-width: 575px) {
  .wpo-case-section-s2 .case-left .case-item .case-content .text span {
    font-size: 11px;
    line-height: 120%;
  }
}
.wpo-case-section-s2 .case-left .case-item .case-btn {
  margin-top: 45px;
}
@media (max-width: 991px) {
  .wpo-case-section-s2 .case-left .case-item .case-btn {
    margin-top: 30px;
  }
}
@media (max-width: 991px) {
  .wpo-case-section-s2 .case-left .case-item .case-btn .theme-btn-s5 {
    justify-content: center;
  }
}
.wpo-case-section-s2 .case-image {
  max-width: 766px;
  margin-left: auto;
  position: relative;
  z-index: 1;
}
@media (max-width: 991px) {
  .wpo-case-section-s2 .case-image {
    margin: 0 auto;
    margin-top: 40px;
  }
}
.wpo-case-section-s2 .case-image .image .right-image {
  position: relative;
  z-index: 1;
  -webkit-mask-size: 100%;
  mask-size: 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}
.wpo-case-section-s2 .case-image .image .right-image img {
  border-radius: 16px;
}
.wpo-case-section-s2 .case-image .image-2 {
  position: absolute;
  bottom: 30px;
  right: 30px;
  z-index: 11;
}
@media (max-width: 500px) {
  .wpo-case-section-s2 .case-image .image-2 {
    bottom: 10px;
    right: 10px;
  }
}
.wpo-case-section-s2 .case-image .image-2 img {
  border-radius: 12px;
}
@media (max-width: 1399px) {
  .wpo-case-section-s2 .case-image .image-2 img {
    max-width: 280px;
  }
}
@media (max-width: 1199px) {
  .wpo-case-section-s2 .case-image .image-2 img {
    max-width: 220px;
  }
}
@media (max-width: 425px) {
  .wpo-case-section-s2 .case-image .image-2 img {
    max-width: 150px;
  }
}

/* 5.7 Faq Section */
.wpo-faq-section,
.wpo-faq-section-s2 {
  background: #5C6B52;
  position: relative;
  z-index: 1;
  padding: 150px 0;
}
@media (max-width: 991px) {
  .wpo-faq-section,
  .wpo-faq-section-s2 {
    padding: 90px 0;
  }
}
@media (max-width: 767px) {
  .wpo-faq-section,
  .wpo-faq-section-s2 {
    padding: 60px 0;
  }
}
.wpo-faq-section .wpo-section-title-s3,
.wpo-faq-section-s2 .wpo-section-title-s3 {
  justify-content: center;
  text-align: center;
  max-width: 480px;
  margin: 0 auto;
  margin-bottom: 50px;
  margin-top: -8px;
}
@media (max-width: 991px) {
  .wpo-faq-section .wpo-section-title-s3,
  .wpo-faq-section-s2 .wpo-section-title-s3 {
    margin-bottom: 35px;
    margin-top: 0;
  }
}
.wpo-faq-section .wpo-section-title-s3 span,
.wpo-faq-section-s2 .wpo-section-title-s3 span {
  color: #F1FEE7;
}
.wpo-faq-section .wpo-section-title-s3 span::before,
.wpo-faq-section-s2 .wpo-section-title-s3 span::before {
  background-color: #C8F8A9;
}
.wpo-faq-section .wpo-section-title-s3 h2,
.wpo-faq-section .wpo-section-title-s3 p,
.wpo-faq-section-s2 .wpo-section-title-s3 h2,
.wpo-faq-section-s2 .wpo-section-title-s3 p {
  color: #F1FEE7;
}
.wpo-faq-section .wpo-faq-items,
.wpo-faq-section-s2 .wpo-faq-items {
  max-width: 800px;
  margin: 0 auto;
  background-color: #E4EADB;
  border-radius: 12px;
  padding: 8px;
}
.wpo-faq-section .accordion-item,
.wpo-faq-section-s2 .accordion-item {
  border: 0;
  border-radius: 8px;
  border-top: 1px solid rgba(243, 243, 243, 0.1);
  padding: 5px 20px;
  background-color: #FAFFF3;
  padding-left: 0;
  margin-bottom: 10px;
}
@media (max-width: 575px) {
  .wpo-faq-section .accordion-item,
  .wpo-faq-section-s2 .accordion-item {
    padding: 0 10px;
  }
}
.wpo-faq-section .accordion-item:last-child,
.wpo-faq-section-s2 .accordion-item:last-child {
  margin-bottom: 0;
}
.wpo-faq-section .accordion-item .accordion-body,
.wpo-faq-section-s2 .accordion-item .accordion-body {
  padding: 0px 70px 20px 25px;
}
@media (max-width: 991px) {
  .wpo-faq-section .accordion-item .accordion-body,
  .wpo-faq-section-s2 .accordion-item .accordion-body {
    padding: 0px 0 20px 25px;
  }
}
@media (max-width: 575px) {
  .wpo-faq-section .accordion-item .accordion-body,
  .wpo-faq-section-s2 .accordion-item .accordion-body {
    padding: 0px 0 20px 10px;
  }
}
.wpo-faq-section .accordion-item .accordion-body p,
.wpo-faq-section-s2 .accordion-item .accordion-body p {
  margin-bottom: 0;
  color: #102D06;
  font-size: 16px;
  font-weight: 400;
  line-height: 145%;
}
@media (max-width: 425px) {
  .wpo-faq-section .accordion-item .accordion-body p,
  .wpo-faq-section-s2 .accordion-item .accordion-body p {
    font-size: 14px;
    line-height: 135%;
  }
}
.wpo-faq-section .accordion-item .accordion-button:not(.collapsed),
.wpo-faq-section-s2 .accordion-item .accordion-button:not(.collapsed) {
  box-shadow: none;
}
.wpo-faq-section .accordion-item button,
.wpo-faq-section-s2 .accordion-item button {
  padding: 18px 25px;
  border: 0;
  border-radius: 0;
  padding-right: 0;
  font-family: "Instrument Sans";
  color: #102D06;
  font-size: 20px;
  font-weight: 500;
  line-height: 120%;
}
@media (max-width: 575px) {
  .wpo-faq-section .accordion-item button,
  .wpo-faq-section-s2 .accordion-item button {
    font-size: 18px;
    line-height: 115%;
    padding: 15px 10px;
    padding-right: 0;
  }
}
.wpo-faq-section .accordion-item button::after,
.wpo-faq-section-s2 .accordion-item button::after {
  background: none;
  font-family: "themify";
  content: "\e648";
  font-size: 14px;
  transform: rotate(0deg);
  font-weight: 700;
  background-color: #102D06;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all ease-in-out 0.3s;
}
@media (max-width: 575px) {
  .wpo-faq-section .accordion-item button::after,
  .wpo-faq-section-s2 .accordion-item button::after {
    font-size: 10px;
    width: 25px;
    height: 25px;
  }
}
.wpo-faq-section .accordion-item button.collapsed,
.wpo-faq-section-s2 .accordion-item button.collapsed {
  color: #102D06;
}
.wpo-faq-section .accordion-item button.collapsed::after,
.wpo-faq-section-s2 .accordion-item button.collapsed::after {
  content: "\e64b";
  color: #102D06;
  background-color: transparent;
}
.wpo-faq-section .accordion-item button:focus,
.wpo-faq-section-s2 .accordion-item button:focus {
  box-shadow: none;
  outline: none;
  border-color: #F5F3F3;
}
.wpo-faq-section .accordion-item .accordion-collapse,
.wpo-faq-section-s2 .accordion-item .accordion-collapse {
  border: 0;
}
.wpo-faq-section .accordion-button,
.wpo-faq-section-s2 .accordion-button {
  background: transparent;
}

/* 5.8 Blog Section */
.wpo-blog-section {
  padding: 150px 0;
  padding-bottom: 120px;
}
@media (max-width: 991px) {
  .wpo-blog-section {
    padding: 90px 0;
    padding-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .wpo-blog-section {
    padding: 60px 0;
    padding-bottom: 30px;
  }
}
.wpo-blog-section .wpo-section-title-s3 h2 {
  max-width: 520px;
}
.wpo-blog-section .blog-item {
  position: relative;
  margin-bottom: 30px;
}
.wpo-blog-section .blog-item .image {
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
}
.wpo-blog-section .blog-item .image img {
  border-radius: 12px;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1);
  transition: all 0.3s ease-in-out;
}
.wpo-blog-section .blog-item .blog-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 10px;
  padding-top: 0;
}
@media (max-width: 575px) {
  .wpo-blog-section .blog-item .blog-bottom {
    padding: 5px;
  }
}
.wpo-blog-section .blog-item .blog-bottom .blog-content {
  background: rgba(241, 254, 231, 0.8);
  backdrop-filter: blur(30px);
  padding: 15px 25px;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 575px) {
  .wpo-blog-section .blog-item .blog-bottom .blog-content {
    padding: 15px 10px;
  }
}
.wpo-blog-section .blog-item .blog-bottom .blog-content .blog-text h3 {
  font-family: "Instrument Sans";
  margin: 0;
  font-size: 24px;
  font-weight: 500;
  line-height: 125%;
  color: #102D06;
}
@media (max-width: 1199px) {
  .wpo-blog-section .blog-item .blog-bottom .blog-content .blog-text h3 {
    font-size: 20px;
  }
}
@media (max-width: 575px) {
  .wpo-blog-section .blog-item .blog-bottom .blog-content .blog-text h3 {
    font-size: 15px;
    line-height: 105%;
  }
}
.wpo-blog-section .blog-item .blog-bottom .blog-content .blog-text h3 a {
  color: #102D06;
}
.wpo-blog-section .blog-item .blog-bottom .blog-content .blog-text h3 a:hover {
  color: #2B6014;
}
.wpo-blog-section .blog-item .blog-bottom .blog-content .blog-text span {
  font-size: 14px;
  font-weight: 600;
  line-height: 134%;
  letter-spacing: 0.64px;
  text-transform: uppercase;
  color: #265215;
}
@media (max-width: 575px) {
  .wpo-blog-section .blog-item .blog-bottom .blog-content .blog-text span {
    font-size: 11px;
    line-height: 120%;
  }
}
.wpo-blog-section .blog-item .blog-bottom .arrow-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FBFEE7;
  border-radius: 100px;
  text-align: center;
  transition: all ease-in-out 0.4s;
}
@media (max-width: 1199px) {
  .wpo-blog-section .blog-item .blog-bottom .arrow-icon {
    width: 40px;
    height: 40px;
  }
}
@media (max-width: 575px) {
  .wpo-blog-section .blog-item .blog-bottom .arrow-icon {
    width: 30px;
    height: 30px;
  }
}
.wpo-blog-section .blog-item .blog-bottom .arrow-icon img {
  max-width: 25px;
  width: 100%;
}
@media (max-width: 1199px) {
  .wpo-blog-section .blog-item .blog-bottom .arrow-icon img {
    max-width: 20px;
  }
}
@media (max-width: 575px) {
  .wpo-blog-section .blog-item .blog-bottom .arrow-icon img {
    max-width: 16px;
  }
}
.wpo-blog-section .blog-item .blog-bottom .icon-hover {
  display: none;
}
.wpo-blog-section .blog-item .blog-tag {
  position: absolute;
  top: 5px;
  left: 8px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}
@media (max-width: 575px) {
  .wpo-blog-section .blog-item .blog-tag {
    top: 5px;
    left: 5px;
  }
}
.wpo-blog-section .blog-item .blog-tag li {
  border-radius: 6px;
  background: rgba(241, 254, 231, 0.7);
  backdrop-filter: blur(30px);
  font-size: 14px;
  font-weight: 600;
  line-height: 134%;
  letter-spacing: 0.64px;
  text-transform: uppercase;
  color: #102D06;
  padding: 2px 7px;
  margin-top: 5px;
  transition: all ease-in-out 0.4s;
}
@media (max-width: 575px) {
  .wpo-blog-section .blog-item .blog-tag li {
    font-size: 11px;
  }
}
.wpo-blog-section .blog-item:hover .blog-content {
  background: rgb(251, 254, 231);
}
.wpo-blog-section .blog-item:hover .image img {
  transform: scale(1.1);
}
.wpo-blog-section .blog-item:hover .arrow-icon {
  background-color: #102D06;
}
.wpo-blog-section .blog-item:hover .arrow-icon .icon-hover {
  display: block;
}
.wpo-blog-section .blog-item:hover .arrow-icon .icon {
  display: none;
}

/*======================================
6. About Page
 =======================================*/
/* 6.1 wpo-about-section-s3 */
.wpo-about-section-s3 {
  padding: 110px 0;
}
@media (max-width: 991px) {
  .wpo-about-section-s3 {
    padding: 90px 0;
  }
}
@media (max-width: 767px) {
  .wpo-about-section-s3 {
    padding: 60px 0;
  }
}
.wpo-about-section-s3 .about-top {
  margin-bottom: 95px;
}
@media (max-width: 991px) {
  .wpo-about-section-s3 .about-top {
    margin-bottom: 60px;
  }
}
@media (max-width: 575px) {
  .wpo-about-section-s3 .about-top {
    margin-bottom: 30px;
  }
}
.wpo-about-section-s3 .about-top .partner-item .partners-slider-s2 {
  max-width: 900px;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .wpo-about-section-s3 .about-top .partner-item .partners-slider-s2 {
    margin-left: 30px;
  }
}
.wpo-about-section-s3 .wpo-about-item {
  display: block;
  background-color: #E4EADB;
  padding: 8px;
  border-radius: 12px;
  margin-right: -15px;
}
@media (max-width: 991px) {
  .wpo-about-section-s3 .wpo-about-item {
    margin-right: 0;
    margin-bottom: 35px;
  }
}
.wpo-about-section-s3 .wpo-about-item .about-middle {
  max-width: unset;
}
.wpo-about-section-s3 .wpo-about-item .about-middle .wpo-fun-fact-grids {
  position: unset;
  padding: 0;
  display: flex;
  padding-top: 8px;
}
.wpo-about-section-s3 .wpo-about-item .about-middle .wpo-fun-fact-grids .grid {
  max-width: unset;
  margin: 0;
  display: block;
  width: 100%;
  padding: 18px 25px 10px;
  background-color: #FBFEE7;
  margin-right: 8px;
}
@media (max-width: 1399px) {
  .wpo-about-section-s3 .wpo-about-item .about-middle .wpo-fun-fact-grids .grid {
    padding: 18px 15px 10px;
  }
}
@media (max-width: 575px) {
  .wpo-about-section-s3 .wpo-about-item .about-middle .wpo-fun-fact-grids .grid {
    padding: 10px;
  }
}
@media (max-width: 1500px) {
  .wpo-about-section-s3 .wpo-about-item .about-middle .wpo-fun-fact-grids .grid h3 {
    font-size: 60px;
  }
}
@media (max-width: 1399px) {
  .wpo-about-section-s3 .wpo-about-item .about-middle .wpo-fun-fact-grids .grid h3 {
    font-size: 42px;
  }
}
@media (max-width: 575px) {
  .wpo-about-section-s3 .wpo-about-item .about-middle .wpo-fun-fact-grids .grid h3 {
    font-size: 35px;
  }
}
.wpo-about-section-s3 .wpo-about-item .about-middle .wpo-fun-fact-grids .grid:last-child {
  margin-right: 0;
}
.wpo-about-section-s3 .wpo-about-item .about-middle .wpo-fun-fact-grids .grid .info {
  display: flex;
  gap: 20px;
}
@media (max-width: 1199px) {
  .wpo-about-section-s3 .wpo-about-item .about-middle .wpo-fun-fact-grids .grid .info {
    display: block;
  }
}
.wpo-about-section-s3 .about-right {
  max-width: unset;
  background-color: #E4EADB;
  height: 100%;
}
.wpo-about-section-s3 .about-right .about-right-image {
  position: relative;
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
}
.wpo-about-section-s3 .about-right .about-right-image img {
  border-radius: 8px;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1);
  transition: all 0.3s ease-in-out;
}
.wpo-about-section-s3 .about-right .about-right-image .about-tag {
  position: absolute;
  bottom: 25px;
  left: 25px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}
@media (max-width: 575px) {
  .wpo-about-section-s3 .about-right .about-right-image .about-tag {
    bottom: 15px;
    left: 15px;
  }
}
.wpo-about-section-s3 .about-right .about-right-image .about-tag li {
  border-radius: 6px;
  background: rgba(251, 254, 231, 0.2);
  backdrop-filter: blur(30px);
  font-size: 14px;
  font-weight: 400;
  line-height: 134%;
  letter-spacing: 0.64px;
  text-transform: uppercase;
  color: #FBFEE7;
  padding: 4px 10px;
  margin-top: 5px;
  transition: all ease-in-out 0.4s;
}
@media (max-width: 575px) {
  .wpo-about-section-s3 .about-right .about-right-image .about-tag li {
    font-size: 11px;
  }
}
.wpo-about-section-s3 .about-right:hover .about-right-image img {
  transform: scale(1.1);
}
.wpo-about-section-s3 .about-bottom-item {
  max-width: 710px;
  margin: 0 auto;
  text-align: center;
  padding-top: 100px;
}
@media (max-width: 991px) {
  .wpo-about-section-s3 .about-bottom-item {
    padding-top: 50px;
  }
}
@media (max-width: 575px) {
  .wpo-about-section-s3 .about-bottom-item {
    padding-top: 30px;
  }
}
.wpo-about-section-s3 .about-bottom-item .client-team {
  margin: 0 auto;
  margin-top: 40px;
}
.wpo-about-section-s3 .about-middle .wpo-fun-fact-grids .grid h3 + p {
  max-width: 120px;
  padding-top: 15px;
}
@media (max-width: 1399px) {
  .wpo-about-section-s3 .about-middle .wpo-fun-fact-grids .grid h3 + p {
    padding-top: 0;
  }
}
@media (max-width: 1199px) {
  .wpo-about-section-s3 .about-middle .wpo-fun-fact-grids .grid h3 + p {
    margin: 0 auto;
  }
}
.wpo-about-section-s3 .col {
  min-height: 100%;
}

/* wpo-mission-vision-section */
.wpo-mission-vision-section {
  background-color: #202E05;
}
.wpo-mission-vision-section .mission-vision-left {
  background-color: #405413;
  padding: 8px;
  border-radius: 12px;
  height: 100%;
}
.wpo-mission-vision-section .mission-vision-left .image {
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
}
.wpo-mission-vision-section .mission-vision-left .image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
  transform: scale(1);
  transition: all 0.3s ease-in-out;
}
.wpo-mission-vision-section .mission-vision-left:hover .image img {
  transform: scale(1.1);
}
.wpo-mission-vision-section .mission-vision-right {
  margin-left: 70px;
}
@media (max-width: 1399px) {
  .wpo-mission-vision-section .mission-vision-right {
    margin-left: 0;
  }
}
@media (max-width: 991px) {
  .wpo-mission-vision-section .mission-vision-right {
    margin-top: 40px;
  }
}
.wpo-mission-vision-section .mission-vision-right .wpo-section-title-s2 .title-top span {
  color: #FBFEE7;
}
.wpo-mission-vision-section .mission-vision-right .wpo-section-title-s2 .title-top span::before {
  background-color: #B5E717;
}
.wpo-mission-vision-section .mission-vision-right .wpo-section-title-s2 h2 {
  color: #FBFEE7;
  padding-bottom: 15px;
}
.wpo-mission-vision-section .mission-vision-right .wpo-section-title-s2 p {
  color: #FBFEE7;
  padding-bottom: 10px;
}
.wpo-mission-vision-section .mission-vision-right .mission-vision-item .wpo-fun-fact-grids {
  display: flex;
  gap: 40px;
}
@media (max-width: 1199px) {
  .wpo-mission-vision-section .mission-vision-right .mission-vision-item .wpo-fun-fact-grids {
    gap: 30px;
  }
}
@media (max-width: 991px) {
  .wpo-mission-vision-section .mission-vision-right .mission-vision-item .wpo-fun-fact-grids {
    justify-content: center;
  }
}
@media (max-width: 575px) {
  .wpo-mission-vision-section .mission-vision-right .mission-vision-item .wpo-fun-fact-grids {
    gap: 10px;
  }
}
@media (max-width: 425px) {
  .wpo-mission-vision-section .mission-vision-right .mission-vision-item .wpo-fun-fact-grids {
    display: block;
  }
}
.wpo-mission-vision-section .mission-vision-right .mission-vision-item .wpo-fun-fact-grids .grid {
  width: 33.33%;
}
@media (max-width: 425px) {
  .wpo-mission-vision-section .mission-vision-right .mission-vision-item .wpo-fun-fact-grids .grid {
    width: 100%;
    margin-bottom: 40px;
  }
  .wpo-mission-vision-section .mission-vision-right .mission-vision-item .wpo-fun-fact-grids .grid:last-child {
    margin-bottom: 0;
  }
}
.wpo-mission-vision-section .mission-vision-right .mission-vision-item .wpo-fun-fact-grids .grid h3 {
  margin: 0;
  font-family: "Libre Caslon Condensed";
  display: flex;
  align-items: center;
  justify-content: start;
  color: #FBFEE7;
  font-size: 64px;
  font-weight: 400;
  letter-spacing: -0.48px;
  line-height: 105%;
}
@media (max-width: 1199px) {
  .wpo-mission-vision-section .mission-vision-right .mission-vision-item .wpo-fun-fact-grids .grid h3 {
    font-size: 50px;
  }
}
@media (max-width: 991px) {
  .wpo-mission-vision-section .mission-vision-right .mission-vision-item .wpo-fun-fact-grids .grid h3 {
    justify-content: center;
  }
}
.wpo-mission-vision-section .mission-vision-right .mission-vision-item .wpo-fun-fact-grids .grid h3 span {
  font-family: "Libre Caslon Condensed";
}
.wpo-mission-vision-section .mission-vision-right .mission-vision-item .wpo-fun-fact-grids .grid h3 + p {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 134%;
  letter-spacing: 0.64px;
  text-transform: uppercase;
  max-width: 150px;
  color: #FBFEE7;
}
@media (max-width: 1199px) {
  .wpo-mission-vision-section .mission-vision-right .mission-vision-item .wpo-fun-fact-grids .grid h3 + p {
    font-size: 10px;
  }
}
@media (max-width: 991px) {
  .wpo-mission-vision-section .mission-vision-right .mission-vision-item .wpo-fun-fact-grids .grid h3 + p {
    max-width: unset;
    text-align: center;
  }
}
.wpo-mission-vision-section .mission-vision-right .mission-vision-item .shape-bottom {
  padding-top: 80px;
}
@media (max-width: 991px) {
  .wpo-mission-vision-section .mission-vision-right .mission-vision-item .shape-bottom {
    text-align: center;
    padding-top: 60px;
  }
}
.wpo-mission-vision-section .col {
  min-height: 100%;
}

/* wpo-why-choose-section-s3 */
.wpo-why-choose-section-s3 {
  background-color: #202E05;
}
.wpo-why-choose-section-s3 .why-choose-left {
  background-color: #405413;
  padding: 8px;
  border-radius: 12px;
}
.wpo-why-choose-section-s3 .why-choose-left .why-choose-image {
  height: 100%;
  overflow: hidden;
  border-radius: 8px;
}
.wpo-why-choose-section-s3 .why-choose-left .why-choose-image img {
  border-radius: 8px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1);
  transition: all 0.3s ease-in-out;
}
.wpo-why-choose-section-s3 .why-choose-left:hover .why-choose-image img {
  transform: scale(1.1);
}
.wpo-why-choose-section-s3 .why-choose-right .title-top span {
  color: #FBFEE7;
}
.wpo-why-choose-section-s3 .why-choose-right .title-top span::before {
  background-color: #C8F8A9;
}
.wpo-why-choose-section-s3 .why-choose-right .wpo-section-title-s3 h2,
.wpo-why-choose-section-s3 .why-choose-right p {
  color: #FBFEE7;
}
.wpo-why-choose-section-s3 .why-choose-right {
  padding-right: 60px;
}
@media (max-width: 1399px) {
  .wpo-why-choose-section-s3 .why-choose-right {
    padding-right: 0;
  }
}
.wpo-why-choose-section-s3 .why-choose-right .why-choose-item .why-choose-list {
  background-color: #405413;
}
.wpo-why-choose-section-s3 .why-choose-right .why-choose-item .why-choose-list .icon {
  background-color: #BFE734;
}
.wpo-why-choose-section-s3 .why-choose-right .why-choose-item .why-choose-list .why-choose-list-text h3 {
  color: #FBFEE7;
  padding-bottom: 10px;
}
.wpo-why-choose-section-s3 .why-choose-right .why-choose-item .why-choose-list .why-choose-list-text p {
  color: #F4FCCB;
}

/* wpo-faq-section-s2 */
.wpo-faq-section-s2 {
  background-color: transparent;
  border-top: 1px solid #E4EADB;
  padding: 110px 0;
}
@media (max-width: 991px) {
  .wpo-faq-section-s2 {
    padding: 90px 0;
  }
}
@media (max-width: 767px) {
  .wpo-faq-section-s2 {
    padding: 60px 0;
  }
}
.wpo-faq-section-s2 .wpo-section-title-s3 span {
  color: #202E05;
}
.wpo-faq-section-s2 .wpo-section-title-s3 span::before {
  background-color: #BFE734;
}
.wpo-faq-section-s2 .wpo-section-title-s3 h2 {
  color: #202E05;
}

/* wpo-testimonial-section-s2 */
.wpo-testimonial-section-s2 {
  padding-bottom: 110px;
}
@media (max-width: 991px) {
  .wpo-testimonial-section-s2 {
    padding-bottom: 90px;
  }
}
@media (max-width: 767px) {
  .wpo-testimonial-section-s2 {
    padding-bottom: 60px;
  }
}

/* wpo-contact-section-s2 */
.wpo-contact-section-s2 {
  border-top: 0;
}
@media (max-width: 991px) {
  .wpo-contact-section-s2 {
    padding-bottom: 90px;
  }
}
@media (max-width: 767px) {
  .wpo-contact-section-s2 {
    padding-bottom: 60px;
  }
}

/* wpo-problem-solve-section-s2 */
.wpo-problem-solve-section-s2 {
  border-top: 0;
}
.wpo-problem-solve-section-s2 .problem-solve-left .wpo-section-title-s2 h2 {
  padding-bottom: 25px;
}
@media (max-width: 991px) {
  .wpo-problem-solve-section-s2 .problem-solve-left .wpo-section-title-s2 h2 {
    padding-bottom: 0;
  }
}
.wpo-problem-solve-section-s2 .problem-solve-left .wpo-section-title-s2 p {
  padding-top: 20px;
}
@media (max-width: 991px) {
  .wpo-problem-solve-section-s2 .problem-solve-left .wpo-section-title-s2 p {
    padding-top: 10px;
  }
}
.wpo-problem-solve-section-s2 .problem-solve-right {
  max-width: 715px;
  margin-left: auto;
  background-color: #E4EADB;
  padding: 8px;
  border-radius: 12px;
  position: relative;
}
.wpo-problem-solve-section-s2 .problem-solve-right .image {
  overflow: hidden;
  border-radius: 8px;
}
.wpo-problem-solve-section-s2 .problem-solve-right img {
  border-radius: 8px;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1);
  transition: all 0.3s ease-in-out;
}
.wpo-problem-solve-section-s2 .problem-solve-right .problem-solve-tag {
  position: absolute;
  bottom: 25px;
  left: 25px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}
@media (max-width: 575px) {
  .wpo-problem-solve-section-s2 .problem-solve-right .problem-solve-tag {
    bottom: 15px;
    left: 15px;
  }
}
.wpo-problem-solve-section-s2 .problem-solve-right .problem-solve-tag li {
  border-radius: 6px;
  background: rgba(32, 46, 5, 0.4);
  font-size: 14px;
  font-weight: 400;
  line-height: 134%;
  letter-spacing: 0.64px;
  text-transform: uppercase;
  color: #FBFEE7;
  padding: 4px 10px;
  margin-top: 5px;
  transition: all ease-in-out 0.4s;
}
@media (max-width: 575px) {
  .wpo-problem-solve-section-s2 .problem-solve-right .problem-solve-tag li {
    font-size: 11px;
  }
}
.wpo-problem-solve-section-s2 .problem-solve-right:hover .image img {
  transform: scale(1.1);
}

/* wpo-portfolio-section */
.wpo-portfolio-section .hidden {
  display: none;
}
.wpo-portfolio-section .owl-nav {
  display: none;
}
.wpo-portfolio-section .owl-dots {
  text-align: center;
  margin-top: 20px;
}
@media (min-width: 992px) {
  .wpo-portfolio-section .owl-dots {
    display: none;
  }
}
.wpo-portfolio-section .owl-dots button {
  border: 0;
  width: 10px;
  height: 12px;
  margin: 5px;
  border-radius: 50%;
  background-color: #202E05;
}
.wpo-portfolio-section .owl-dots button.active {
  background: #B5E717;
}
.wpo-portfolio-section .owl-stage {
  position: relative;
  margin-left: 140px;
}
@media (max-width: 991px) {
  .wpo-portfolio-section .owl-stage {
    margin-left: 0;
  }
}
.wpo-portfolio-section .owl-item {
  max-width: 540px;
}
@media (max-width: 991px) {
  .wpo-portfolio-section .owl-item {
    max-width: 400px;
  }
}
@media (max-width: 575px) {
  .wpo-portfolio-section .owl-item {
    max-width: unset;
  }
}
.wpo-portfolio-section .portfolio-all-items .portfolio-wrap .portfolio-items {
  background: #E4EADB;
  position: relative;
  border-radius: 12px;
  padding: 8px;
}
.wpo-portfolio-section .portfolio-all-items .portfolio-wrap .portfolio-items .image {
  position: relative;
}
.wpo-portfolio-section .portfolio-all-items .portfolio-wrap .portfolio-items .image img {
  border-radius: 8px;
}
.wpo-portfolio-section .portfolio-all-items .portfolio-wrap .portfolio-items .image .hover-content {
  transition: all 0.3s;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  text-align: center;
  z-index: 11;
}
.wpo-portfolio-section .portfolio-all-items .portfolio-wrap .portfolio-items .image .hover-content i {
  font-size: 30px;
  color: #202E05;
}
.wpo-portfolio-section .portfolio-all-items .portfolio-wrap .portfolio-items .image:before {
  position: absolute;
  left: 5%;
  top: 5%;
  width: 90%;
  height: 90%;
  content: "";
  background: rgba(241, 254, 231, 0.7);
  opacity: 0;
  transition: all 0.3s;
  transform: scale(0);
  z-index: 1;
}
.wpo-portfolio-section .portfolio-all-items .portfolio-wrap .portfolio-items:hover .image .hover-content {
  opacity: 1;
}
.wpo-portfolio-section .portfolio-all-items .portfolio-wrap .portfolio-items:hover .image:before {
  opacity: 1;
  transform: scale(1);
}

/* wpo-service-section style-2 */
.wpo-service-section-s3 {
  background-color: transparent;
}
.wpo-service-section-s3 .wpo-section-title-s2 .title-top span {
  color: #202E05;
}
.wpo-service-section-s3 .wpo-section-title-s2 h2 {
  color: #202E05;
}

/* wpo-why-choose-section-s4 */
.wpo-why-choose-section-s4 {
  border-top: 1px solid #E4EADB;
}
.wpo-why-choose-section-s4 .wpo-section-title p {
  max-width: 400px;
  margin: 0 auto;
  padding-top: 20px;
}
@media (max-width: 991px) {
  .wpo-why-choose-section-s4 .wpo-section-title p {
    padding-top: 10px;
  }
}
.wpo-why-choose-section-s4 .why-choose-left {
  background-color: #4C6311;
  max-width: 460px;
  width: 100%;
  position: relative;
  padding: 8px;
  border-radius: 12px;
}
@media (max-width: 991px) {
  .wpo-why-choose-section-s4 .why-choose-left {
    max-width: unset;
    margin-bottom: 30px;
  }
}
.wpo-why-choose-section-s4 .why-choose-left .why-choose-left-bg {
  background-color: #B5E717;
  padding: 30px;
  border-radius: 12px;
}
@media (max-width: 1199px) {
  .wpo-why-choose-section-s4 .why-choose-left .why-choose-left-bg {
    padding: 30px 20px;
  }
}
@media (max-width: 767px) {
  .wpo-why-choose-section-s4 .why-choose-left .why-choose-left-bg {
    padding: 20px;
  }
}
.wpo-why-choose-section-s4 .why-choose-left .why-choose-left-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 500px;
}
@media (max-width: 1399px) {
  .wpo-why-choose-section-s4 .why-choose-left .why-choose-left-content {
    min-height: 400px;
  }
}
@media (max-width: 991px) {
  .wpo-why-choose-section-s4 .why-choose-left .why-choose-left-content {
    min-height: 280px;
  }
}
.wpo-why-choose-section-s4 .why-choose-left .content h3 {
  margin: 0;
  font-size: 28px;
  font-weight: 400;
  line-height: 123%;
}
@media (max-width: 1399px) {
  .wpo-why-choose-section-s4 .why-choose-left .content h3 {
    font-size: 25px;
  }
}
@media (max-width: 425px) {
  .wpo-why-choose-section-s4 .why-choose-left .content h3 {
    font-size: 22px;
  }
}
.wpo-why-choose-section-s4 .why-choose-left .why-choose-bottom p {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 124%;
  letter-spacing: 0.64px;
  text-transform: uppercase;
  color: #FBFEE7;
  padding: 10px 0;
  padding-left: 12px;
  padding-bottom: 0;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.wpo-why-choose-section-s4 .why-choose-left .why-choose-bottom p a {
  color: #FBFEE7;
}
.wpo-why-choose-section-s4 .why-choose-left .why-choose-bottom p a:hover {
  color: #E8FA9C;
}
.wpo-why-choose-section-s4 .why-choose-left .why-choose-bottom p::before {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  top: 15px;
  left: 0;
  border-radius: 50%;
  background-color: #B5E717;
}
.wpo-why-choose-section-s4 .why-choose-left .shape {
  position: absolute;
  top: 0;
  right: 0;
}
.wpo-why-choose-section-s4 .why-choose-right {
  height: 100%;
}
.wpo-why-choose-section-s4 .why-choose-right .image-bg {
  position: relative;
  height: 100%;
}
.wpo-why-choose-section-s4 .why-choose-right .image-bg .image {
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
}
@media (max-width: 767px) {
  .wpo-why-choose-section-s4 .why-choose-right .image-bg .image {
    min-height: 280px;
  }
}
.wpo-why-choose-section-s4 .why-choose-right .image-bg .image img {
  border-radius: 12px;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1);
  transition: all 0.3s ease-in-out;
}
.wpo-why-choose-section-s4 .why-choose-right .image-bg .why-choose-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 8px;
  padding-top: 0;
}
.wpo-why-choose-section-s4 .why-choose-right .image-bg .why-choose-bottom .why-choose-content {
  background: rgba(251, 254, 231, 0.9);
  padding: 20px;
  border-radius: 8px;
}
@media (max-width: 991px) {
  .wpo-why-choose-section-s4 .why-choose-right .image-bg .why-choose-bottom .why-choose-content {
    padding: 15px;
  }
}
@media (max-width: 575px) {
  .wpo-why-choose-section-s4 .why-choose-right .image-bg .why-choose-bottom .why-choose-content {
    padding: 15px 10px;
  }
}
.wpo-why-choose-section-s4 .why-choose-right .image-bg .why-choose-bottom .why-choose-content ul li {
  margin: 0;
  font-size: 20px;
  font-weight: 400;
  line-height: 120%;
  color: #202E05;
  padding-bottom: 14px;
  display: flex;
  align-items: center;
}
.wpo-why-choose-section-s4 .why-choose-right .image-bg .why-choose-bottom .why-choose-content ul li:last-child {
  padding-bottom: 0;
}
@media (max-width: 1199px) {
  .wpo-why-choose-section-s4 .why-choose-right .image-bg .why-choose-bottom .why-choose-content ul li {
    font-size: 18px;
    line-height: 110%;
    padding-bottom: 10px;
  }
}
@media (max-width: 575px) {
  .wpo-why-choose-section-s4 .why-choose-right .image-bg .why-choose-bottom .why-choose-content ul li {
    font-size: 16px;
    line-height: 100%;
    padding-bottom: 10px;
  }
}
.wpo-why-choose-section-s4 .why-choose-right .image-bg .why-choose-bottom .why-choose-content ul li i {
  margin-right: 12px;
}
@media (max-width: 575px) {
  .wpo-why-choose-section-s4 .why-choose-right .image-bg .why-choose-bottom .why-choose-content ul li i {
    margin-right: 5px;
  }
}
@media (max-width: 575px) {
  .wpo-why-choose-section-s4 .why-choose-right .image-bg .why-choose-bottom .why-choose-content ul li i img {
    max-width: 14px;
  }
}
.wpo-why-choose-section-s4 .why-choose-right .image-bg:hover .image img {
  transform: scale(1.1);
}

/* wpo-team-section-s2 */
.wpo-team-section-s2 {
  padding-bottom: 90px;
}
@media (max-width: 991px) {
  .wpo-team-section-s2 {
    padding-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .wpo-team-section-s2 {
    padding-bottom: 30px;
  }
}

/* wpo-pricing-section */
.wpo-pricing-section {
  padding-bottom: 90px;
  position: relative;
  z-index: 1;
}
@media (max-width: 991px) {
  .wpo-pricing-section {
    padding-bottom: 70px;
  }
}
@media (max-width: 767px) {
  .wpo-pricing-section {
    padding-bottom: 40px;
  }
}
.wpo-pricing-section .pricing-card {
  background-color: #E4EADB;
  padding: 8px;
  border-radius: 12px;
  margin-bottom: 20px;
  transition: all 0.3s ease-in-out;
}
.wpo-pricing-section .pricing-card .pricing-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 10px 10px;
  transition: all 0.3s ease-in-out;
}
.wpo-pricing-section .pricing-card .pricing-top h3 {
  font-family: "Instrument Sans";
  margin: 0;
  color: #202E05;
  font-size: 20px;
  font-weight: 500;
  line-height: 120%;
  transition: all 0.3s ease-in-out;
}
.wpo-pricing-section .pricing-card .pricing-top p {
  margin: 0;
  font-family: "Instrument Sans";
  color: #202E05;
  font-size: 14px;
  font-weight: 500;
  line-height: 134%;
  letter-spacing: 0.64px;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
}
.wpo-pricing-section .pricing-card .pricing-item {
  background-color: #FBFEE7;
  border-radius: 8px;
  padding: 30px 25px;
  position: relative;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 1399px) {
  .wpo-pricing-section .pricing-card .pricing-item {
    padding: 30px 15px;
  }
}
.wpo-pricing-section .pricing-card .pricing-item .pricing-money {
  border-bottom: 1px solid #E4EADB;
  padding-bottom: 30px;
  transition: all 0.3s ease-in-out;
}
.wpo-pricing-section .pricing-card .pricing-item .pricing-money h2 {
  margin: 0;
  color: #202E05;
  font-size: 48px;
  font-weight: 400;
  line-height: 134%;
  letter-spacing: -0.32px;
}
@media (max-width: 991px) {
  .wpo-pricing-section .pricing-card .pricing-item .pricing-money h2 {
    font-size: 40px;
    line-height: 124%;
  }
}
.wpo-pricing-section .pricing-card .pricing-item .pricing-money span {
  color: #899174;
  font-size: 14px;
  font-weight: 500;
  line-height: 134%;
  letter-spacing: 0.64px;
  text-transform: uppercase;
}
.wpo-pricing-section .pricing-card .pricing-item .pricing-content {
  padding-top: 33px;
}
.wpo-pricing-section .pricing-card .pricing-item .pricing-content ul li {
  position: relative;
  color: #202E05;
  font-size: 16px;
  font-weight: 400;
  line-height: 145%;
  margin-bottom: 8px;
}
@media (max-width: 1399px) {
  .wpo-pricing-section .pricing-card .pricing-item .pricing-content ul li {
    font-size: 14px;
    line-height: 130%;
  }
}
@media (max-width: 991px) {
  .wpo-pricing-section .pricing-card .pricing-item .pricing-content ul li {
    font-size: 13px;
    line-height: 125%;
  }
}
.wpo-pricing-section .pricing-card .pricing-item .pricing-content ul li:last-child {
  margin-bottom: 0;
}
.wpo-pricing-section .pricing-card .pricing-item .pricing-content ul li i {
  margin-right: 12px;
}
@media (max-width: 991px) {
  .wpo-pricing-section .pricing-card .pricing-item .pricing-content ul li i {
    margin-right: 5px;
  }
}
.wpo-pricing-section .pricing-card .pricing-item .pricing-content .pricing-btn {
  margin-top: 38px;
}
@media (max-width: 767px) {
  .wpo-pricing-section .pricing-card .pricing-item .pricing-content .pricing-btn {
    margin-top: 25px;
  }
}
.wpo-pricing-section .pricing-card .pricing-item .pricing-content .pricing-btn .theme-btn span {
  padding: 16px 110px;
}
@media (max-width: 1435px) {
  .wpo-pricing-section .pricing-card .pricing-item .pricing-content .pricing-btn .theme-btn span {
    padding: 16px 117px;
    font-size: 12px;
  }
}
@media (max-width: 1399px) {
  .wpo-pricing-section .pricing-card .pricing-item .pricing-content .pricing-btn .theme-btn span {
    padding: 16px 83px;
  }
}
@media (max-width: 991px) {
  .wpo-pricing-section .pricing-card .pricing-item .pricing-content .pricing-btn .theme-btn span {
    padding: 16px 73px;
  }
}
@media (max-width: 375px) {
  .wpo-pricing-section .pricing-card .pricing-item .pricing-content .pricing-btn .theme-btn span {
    padding: 14px 58px;
  }
}
.wpo-pricing-section .pricing-card .pricing-item .pricing-content .pricing-btn .theme-btn .buttom-hover {
  display: none;
}
.wpo-pricing-section .pricing-card .pricing-item .shape-bg {
  position: absolute;
  right: 0;
  top: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}
.wpo-pricing-section .pricing-card.active, .wpo-pricing-section .pricing-card:hover {
  background-color: #4C6311;
}
.wpo-pricing-section .pricing-card.active .pricing-top h3,
.wpo-pricing-section .pricing-card.active .pricing-top p, .wpo-pricing-section .pricing-card:hover .pricing-top h3,
.wpo-pricing-section .pricing-card:hover .pricing-top p {
  color: #FBFEE7;
}
.wpo-pricing-section .pricing-card.active .pricing-item, .wpo-pricing-section .pricing-card:hover .pricing-item {
  background-color: #B5E717;
}
.wpo-pricing-section .pricing-card.active .pricing-item .pricing-money, .wpo-pricing-section .pricing-card:hover .pricing-item .pricing-money {
  border-color: rgba(26, 26, 23, 0.05);
}
.wpo-pricing-section .pricing-card.active .pricing-item .pricing-content .pricing-btn span, .wpo-pricing-section .pricing-card:hover .pricing-item .pricing-content .pricing-btn span {
  background-color: #202E05;
  color: #BFE734;
}
.wpo-pricing-section .pricing-card.active .pricing-item .pricing-content .pricing-btn i, .wpo-pricing-section .pricing-card:hover .pricing-item .pricing-content .pricing-btn i {
  background-color: #202E05;
}
.wpo-pricing-section .pricing-card.active .pricing-item .pricing-content .pricing-btn .buttom-icon, .wpo-pricing-section .pricing-card:hover .pricing-item .pricing-content .pricing-btn .buttom-icon {
  display: none;
}
.wpo-pricing-section .pricing-card.active .pricing-item .pricing-content .pricing-btn .buttom-hover, .wpo-pricing-section .pricing-card:hover .pricing-item .pricing-content .pricing-btn .buttom-hover {
  display: block;
}
.wpo-pricing-section .pricing-card.active .pricing-item .shape-bg, .wpo-pricing-section .pricing-card:hover .pricing-item .shape-bg {
  opacity: 1;
  visibility: visible;
}

/*======================================
7. Service Single Section
=======================================*/
.wpo-service-single-section {
  padding-bottom: 90px;
}
@media (max-width: 991px) {
  .wpo-service-single-section {
    padding-bottom: 70px;
  }
}
@media (max-width: 767px) {
  .wpo-service-single-section {
    padding-bottom: 40px;
  }
}
.wpo-service-single-section .service-single-item .service-top-img {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 767px) {
  .wpo-service-single-section .service-single-item .service-top-img {
    flex-direction: column;
  }
}
.wpo-service-single-section .service-single-item .service-top-img .service-single-tag {
  position: absolute;
  bottom: 35px;
  left: 35px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}
@media (max-width: 575px) {
  .wpo-service-single-section .service-single-item .service-top-img .service-single-tag {
    bottom: 15px;
    left: 15px;
  }
}
.wpo-service-single-section .service-single-item .service-top-img .service-single-tag li {
  border-radius: 6px;
  background: rgba(32, 46, 5, 0.4);
  font-size: 14px;
  font-weight: 400;
  line-height: 134%;
  letter-spacing: 0.64px;
  text-transform: uppercase;
  color: #FBFEE7;
  padding: 4px 10px;
  margin-top: 5px;
  transition: all ease-in-out 0.4s;
}
@media (max-width: 575px) {
  .wpo-service-single-section .service-single-item .service-top-img .service-single-tag li {
    font-size: 11px;
  }
}
.wpo-service-single-section .service-single-item h2 {
  margin: 0;
  font-family: "Instrument Sans";
  font-size: 24px;
  font-weight: 500;
  line-height: 125%;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .wpo-service-single-section .service-single-item h2 {
    font-size: 20px;
    line-height: 115%;
    margin-bottom: 10px;
  }
}
.wpo-service-single-section .service-single-item h3 {
  margin: 0;
  font-family: "Instrument Sans";
  font-size: 16px;
  font-weight: 600;
  line-height: 110%;
  margin-bottom: 15px;
  padding-top: 30px;
}
@media (max-width: 575px) {
  .wpo-service-single-section .service-single-item h3 {
    font-size: 15px;
  }
}
.wpo-service-single-section .service-single-item p {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 145%;
}
.wpo-service-single-section .service-single-item .image {
  background-color: #E4EADB;
  border-radius: 12px;
  padding: 8px;
}
.wpo-service-single-section .service-single-item .image .image-inner {
  overflow: hidden;
  border-radius: 8px;
  position: relative;
}
.wpo-service-single-section .service-single-item .image .image-inner img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1);
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
}
.wpo-service-single-section .service-single-item .image .image-inner:hover img {
  transform: scale(1.1);
}
.wpo-service-single-section .service-single-item .service-single-content {
  max-width: 700px;
  margin: 0 auto;
  padding-top: 60px;
}
@media (max-width: 767px) {
  .wpo-service-single-section .service-single-item .service-single-content {
    padding-top: 40px;
  }
}
.wpo-service-single-section .service-single-item .service-single-content .service-content {
  margin-bottom: 50px;
}
.wpo-service-single-section .service-single-item .service-single-content ul li {
  font-size: 16px;
  font-weight: 400;
  line-height: 145%;
  padding-bottom: 5px;
  padding-left: 18px;
  position: relative;
}
.wpo-service-single-section .service-single-item .service-single-content ul li:last-child {
  padding-bottom: 0;
}
.wpo-service-single-section .service-single-item .service-single-content ul li::before {
  position: absolute;
  content: "";
  top: 8px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #202E05;
}
.wpo-service-single-section .service-single-item .service-single-content .service-content-bottom .service-bottom-item {
  display: flex;
  gap: 20px;
  padding-top: 40px;
}
@media (max-width: 767px) {
  .wpo-service-single-section .service-single-item .service-single-content .service-content-bottom .service-bottom-item {
    display: block;
  }
}
.wpo-service-single-section .service-single-item .service-single-content .service-content-bottom .service-card {
  background-color: #E4EADB;
  border-radius: 12px;
  padding: 4px;
  margin-bottom: 20px;
  max-width: 345px;
}
@media (max-width: 767px) {
  .wpo-service-single-section .service-single-item .service-single-content .service-content-bottom .service-card {
    margin: 0 auto;
    margin-bottom: 20px;
  }
}
.wpo-service-single-section .service-single-item .service-single-content .service-content-bottom .service-card .item-top {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 18px 15px;
}
.wpo-service-single-section .service-single-item .service-single-content .service-content-bottom .service-card .item-top h3 {
  margin: 0;
  padding: 0;
  font-family: "Instrument Sans";
  font-size: 20px;
  font-weight: 500;
  line-height: 120%;
}
.wpo-service-single-section .service-single-item .service-single-content .service-content-bottom .service-card .text {
  padding: 30px 20px;
  background-color: #FBFEE7;
  border-radius: 8px;
}
.wpo-service-single-section .service-single-item .service-single-content .service-content-bottom .service-card .text p {
  max-width: 287px;
}

/*======================================
8. Case Single Page
=======================================*/
.wpo-case-single-section .case-img {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 767px) {
  .wpo-case-single-section .case-img {
    flex-direction: column;
  }
}
.wpo-case-single-section .image {
  position: relative;
  background-color: #E4EADB;
  border-radius: 12px;
  padding: 8px;
}
.wpo-case-single-section .image .image-inner {
  overflow: hidden;
  border-radius: 8px;
  position: relative;
}
.wpo-case-single-section .image .image-inner img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1);
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
}
.wpo-case-single-section .image .image-inner:hover img {
  transform: scale(1.1);
}
.wpo-case-single-section .image .case-tag {
  position: absolute;
  bottom: 35px;
  left: 35px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}
@media (max-width: 575px) {
  .wpo-case-single-section .image .case-tag {
    bottom: 15px;
    left: 15px;
  }
}
.wpo-case-single-section .image .case-tag li {
  border-radius: 6px;
  background: rgba(32, 46, 5, 0.4);
  font-size: 14px;
  font-weight: 500;
  line-height: 134%;
  letter-spacing: 0.64px;
  text-transform: uppercase;
  color: #FBFEE7;
  padding: 4px 10px;
  margin-top: 5px;
  transition: all ease-in-out 0.4s;
}
@media (max-width: 575px) {
  .wpo-case-single-section .image .case-tag li {
    font-size: 11px;
  }
}
.wpo-case-single-section .case-top {
  display: flex;
  padding-bottom: 40px;
}
@media (max-width: 425px) {
  .wpo-case-single-section .case-top {
    display: block;
  }
}
.wpo-case-single-section .case-top .case-top-content {
  width: 50%;
}
@media (max-width: 425px) {
  .wpo-case-single-section .case-top .case-top-content {
    width: 100%;
  }
}
.wpo-case-single-section .case-top .item {
  margin-bottom: 25px;
}
@media (max-width: 425px) {
  .wpo-case-single-section .case-top .item {
    margin-bottom: 10px;
  }
}
.wpo-case-single-section .case-top .item span {
  font-size: 14px;
  font-weight: 500;
  line-height: 134%;
  letter-spacing: 0.64px;
  text-transform: uppercase;
  color: #405413;
}
.wpo-case-single-section .case-top .item p {
  font-weight: 700;
  line-height: 110%;
  padding-top: 5px;
}
.wpo-case-single-section .case-single-item h2 {
  margin: 0;
  font-family: "Instrument Sans";
  font-size: 24px;
  font-weight: 500;
  line-height: 125%;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .wpo-case-single-section .case-single-item h2 {
    font-size: 20px;
    line-height: 115%;
    margin-bottom: 10px;
  }
}
.wpo-case-single-section .case-single-item h3 {
  margin: 0;
  font-family: "Instrument Sans";
  font-size: 16px;
  font-weight: 600;
  line-height: 110%;
  margin-bottom: 15px;
  padding-top: 30px;
}
@media (max-width: 575px) {
  .wpo-case-single-section .case-single-item h3 {
    font-size: 15px;
  }
}
.wpo-case-single-section .case-single-item h4 {
  margin: 0;
  font-family: "Instrument Sans";
  font-size: 20px;
  font-weight: 500;
  line-height: 120%;
}
.wpo-case-single-section .case-single-item p {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 145%;
}
.wpo-case-single-section .case-single-item .case-single-content {
  max-width: 700px;
  margin: 0 auto;
  padding-top: 60px;
}
@media (max-width: 767px) {
  .wpo-case-single-section .case-single-item .case-single-content {
    padding-top: 40px;
  }
}
.wpo-case-single-section .case-single-item .case-single-content .case-content {
  margin-bottom: 50px;
}
.wpo-case-single-section .case-single-item .case-single-content ul li {
  font-size: 16px;
  font-weight: 400;
  line-height: 145%;
  padding-bottom: 5px;
  padding-left: 18px;
  position: relative;
}
.wpo-case-single-section .case-single-item .case-single-content ul li:last-child {
  padding-bottom: 0;
}
.wpo-case-single-section .case-single-item .case-single-content ul li::before {
  position: absolute;
  content: "";
  top: 8px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #202E05;
}
.wpo-case-single-section .case-single-item .case-single-content .case-single-bottom .case-card {
  background-color: #405413;
  padding: 10px;
  border-radius: 12px;
}
.wpo-case-single-section .case-single-item .case-single-content .case-single-bottom .case-card .case-item {
  background-color: #FBFEE7;
  border-radius: 8px;
  padding: 30px;
}
@media (max-width: 575px) {
  .wpo-case-single-section .case-single-item .case-single-content .case-single-bottom .case-card .case-item {
    padding: 25px 20px;
  }
}
.wpo-case-single-section .case-single-item .case-single-content .case-single-bottom .case-card .content {
  padding-bottom: 40px;
}
.wpo-case-single-section .case-single-item .case-single-content .case-single-bottom .case-card .content h3 {
  margin: 0;
  color: #202E05;
  font-size: 20px;
  font-weight: 500;
  line-height: 120%;
  font-family: "Instrument Sans";
  padding-bottom: 20px;
  padding-top: 0;
}
@media (max-width: 575px) {
  .wpo-case-single-section .case-single-item .case-single-content .case-single-bottom .case-card .content h3 {
    font-size: 18px;
    line-height: 110%;
  }
}
.wpo-case-single-section .case-single-item .case-single-content .case-single-bottom .case-card .content p {
  margin: 0;
  color: #202E05;
  font-size: 20px;
  font-weight: 400;
  line-height: 130%;
  max-width: 575px;
}
@media (max-width: 575px) {
  .wpo-case-single-section .case-single-item .case-single-content .case-single-bottom .case-card .content p {
    font-size: 18px;
    line-height: 120%;
  }
}
.wpo-case-single-section .case-single-item .case-single-content .case-single-bottom .case-card .client {
  display: flex;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid rgba(32, 46, 5, 0.1);
  width: 100%;
}
.wpo-case-single-section .case-single-item .case-single-content .case-single-bottom .case-card .client .client-img {
  border-radius: 50%;
}
.wpo-case-single-section .case-single-item .case-single-content .case-single-bottom .case-card .client .client-img img {
  border-radius: 50%;
}
.wpo-case-single-section .case-single-item .case-single-content .case-single-bottom .case-card .client .client-text {
  margin-left: 15px;
  position: relative;
}
.wpo-case-single-section .case-single-item .case-single-content .case-single-bottom .case-card .client .client-text h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 120%;
  font-family: "Instrument Sans";
}
.wpo-case-single-section .case-single-item .case-single-content .case-single-bottom .case-card .client .client-text span {
  font-size: 14px;
  font-weight: 500;
  line-height: 160%;
  letter-spacing: 0.32px;
  text-transform: uppercase;
}
.wpo-case-single-section .case-single-item .case-single-content .case-single-bottom .case-card .case-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 10px 0;
}
.wpo-case-single-section .case-single-item .case-single-content .case-single-bottom .case-card .case-bottom p {
  margin: 0;
  color: #FBFEE7;
  font-size: 14px;
  font-weight: 500;
  line-height: 130%;
  letter-spacing: 0.64px;
}

/*======================================
9. Blog Single Page
 =======================================*/
/* wpo-blog-single-section*/
.wpo-blog-single-section .wpo-blog-wraper {
  max-width: 706px;
  margin: 0 auto;
}
.wpo-blog-single-section .blog-tag {
  list-style: none;
  overflow: hidden;
}
.wpo-blog-single-section .blog-tag ul {
  list-style: none;
  padding: 15px 0 10px 15px;
}
.wpo-blog-single-section .blog-tag ul li {
  color: #202E05;
  font-size: 14px;
  font-weight: 500;
  line-height: 134%;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.64px;
}
.wpo-blog-single-section .blog-tag ul li a {
  color: #202E05;
}
.wpo-blog-single-section .blog-tag ul li a:hover {
  color: #2B6014;
}
.wpo-blog-single-section .blog-tag ul li i {
  position: relative;
  margin-right: 3px;
}
.wpo-blog-single-section .blog-tag ul li i:before {
  font-size: 13px;
}
.wpo-blog-single-section .blog-tag ul li + li {
  margin-left: 18px;
  padding-left: 18px;
  position: relative;
}
.wpo-blog-single-section .blog-tag ul li + li:before {
  position: absolute;
  left: -5px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  content: "";
  background: #202E05;
  border-radius: 50%;
}
@media (max-width: 440px) {
  .wpo-blog-single-section .blog-tag ul li + li:before {
    display: none;
  }
}
@media (max-width: 440px) {
  .wpo-blog-single-section .blog-tag ul li + li {
    margin-left: 0;
    padding-left: 0;
  }
}
@media (max-width: 440px) {
  .wpo-blog-single-section .blog-tag ul li {
    float: none;
    display: block;
    margin-bottom: 5px;
  }
}
.wpo-blog-single-section .format-standard-image {
  margin-bottom: 30px;
}
.wpo-blog-single-section .format-standard-image .image-top {
  border-radius: 12px;
  padding: 8px;
  background-color: #E4EADB;
  margin-bottom: 25px;
}
.wpo-blog-single-section .format-standard-image .image-top img {
  border-radius: 8px;
}
.wpo-blog-single-section p {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 145%;
  margin-bottom: 30px;
}
.wpo-blog-single-section .post h2 {
  margin: 0;
  font-weight: 400;
  font-size: 48px;
  line-height: 105%;
  letter-spacing: -0.48px;
  margin-bottom: 20px;
  margin-top: 10px;
}
@media (max-width: 991px) {
  .wpo-blog-single-section .post h2 {
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  .wpo-blog-single-section .post h2 {
    font-size: 35px;
  }
}
@media (max-width: 575px) {
  .wpo-blog-single-section .post h2 {
    font-size: 30px;
  }
}
.wpo-blog-single-section .post h3 {
  font-size: 20px;
  font-weight: 500;
  line-height: 120%;
  font-family: "Instrument Sans";
  margin-bottom: 10px;
}
@media (max-width: 575px) {
  .wpo-blog-single-section .post h3 {
    font-size: 18px;
    font-size: 1rem;
  }
}
.wpo-blog-single-section .post .blog-list {
  padding-bottom: 30px;
}
.wpo-blog-single-section .post .blog-list li {
  color: #202E05;
  font-size: 16px;
  font-weight: 400;
  line-height: 145%;
  padding-left: 18px;
  margin-bottom: 5px;
  position: relative;
}
.wpo-blog-single-section .post .blog-list li:before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  content: "";
  background: #202E05;
  border-radius: 50%;
}
.wpo-blog-single-section {
  /*** blog-card ***/
}
.wpo-blog-single-section .blog-card-bottom {
  padding-top: 35px;
}
@media (max-width: 575px) {
  .wpo-blog-single-section .blog-card-bottom {
    padding-top: 20px;
  }
}
.wpo-blog-single-section .blog-card-bottom .blog-card {
  background-color: #405413;
  padding: 10px;
  border-radius: 12px;
}
.wpo-blog-single-section .blog-card-bottom .blog-card .blog-item {
  background-color: #FBFEE7;
  border-radius: 8px;
  padding: 30px;
}
@media (max-width: 575px) {
  .wpo-blog-single-section .blog-card-bottom .blog-card .blog-item {
    padding: 25px 20px;
  }
}
.wpo-blog-single-section .blog-card-bottom .blog-card .content {
  padding-bottom: 40px;
}
.wpo-blog-single-section .blog-card-bottom .blog-card .content h3 {
  margin: 0;
  color: #202E05;
  font-size: 20px;
  font-weight: 500;
  line-height: 120%;
  font-family: "Instrument Sans";
  padding-bottom: 20px;
  padding-top: 0;
}
@media (max-width: 575px) {
  .wpo-blog-single-section .blog-card-bottom .blog-card .content h3 {
    font-size: 18px;
    line-height: 110%;
  }
}
.wpo-blog-single-section .blog-card-bottom .blog-card .content p {
  margin: 0;
  color: #202E05;
  font-size: 20px;
  font-weight: 400;
  line-height: 130%;
  max-width: 575px;
}
@media (max-width: 575px) {
  .wpo-blog-single-section .blog-card-bottom .blog-card .content p {
    font-size: 18px;
    line-height: 120%;
  }
}
.wpo-blog-single-section .blog-card-bottom .blog-card .client {
  display: flex;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid rgba(32, 46, 5, 0.1);
  width: 100%;
}
.wpo-blog-single-section .blog-card-bottom .blog-card .client .client-img {
  border-radius: 50%;
}
.wpo-blog-single-section .blog-card-bottom .blog-card .client .client-img img {
  border-radius: 50%;
}
.wpo-blog-single-section .blog-card-bottom .blog-card .client .client-text {
  margin-left: 15px;
  position: relative;
}
.wpo-blog-single-section .blog-card-bottom .blog-card .client .client-text h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 120%;
  font-family: "Instrument Sans";
}
.wpo-blog-single-section .blog-card-bottom .blog-card .client .client-text span {
  font-size: 14px;
  font-weight: 500;
  line-height: 160%;
  letter-spacing: 0.32px;
  text-transform: uppercase;
}
.wpo-blog-single-section .blog-card-bottom .blog-card .blog-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 10px 0;
}
.wpo-blog-single-section .blog-card-bottom .blog-card .blog-bottom p {
  margin: 0;
  color: #FBFEE7;
  font-size: 14px;
  font-weight: 500;
  line-height: 130%;
  letter-spacing: 0.64px;
}
.wpo-blog-single-section {
  /*** author-widget ***/
}
.wpo-blog-single-section .author-widget {
  display: flex;
  background-color: #4C6311;
  border-radius: 12px;
  padding: 25px 30px;
  margin-top: 55px;
}
@media (max-width: 575px) {
  .wpo-blog-single-section .author-widget {
    display: block;
    padding: 20px;
    margin-top: 40px;
  }
}
.wpo-blog-single-section .author-widget .img-holder {
  width: 103px;
  height: 103px;
  background-color: #fff;
  border-radius: 50%;
}
.wpo-blog-single-section .author-widget .img-holder img {
  width: 100%;
}
.wpo-blog-single-section .author-widget .author-text {
  width: calc(100% - 103px);
  padding-left: 22px;
}
@media (max-width: 575px) {
  .wpo-blog-single-section .author-widget .author-text {
    padding-left: 0;
    width: 100%;
    margin-top: 10px;
  }
}
.wpo-blog-single-section .author-widget .author-text h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 110%;
  font-family: "Instrument Sans";
  color: #FBFEE7;
}
.wpo-blog-single-section .author-widget .author-text span {
  font-size: 14px;
  font-weight: 400;
  line-height: 134%;
  letter-spacing: 0.64px;
  text-transform: uppercase;
  color: #FBFEE7;
}
.wpo-blog-single-section .author-widget .author-text p {
  margin: 0;
  color: #FBFEE7;
  padding-top: 18px;
  font-weight: 300;
}
.wpo-blog-single-section {
  /*** more-posts ***/
}
.wpo-blog-single-section .more-posts {
  overflow: hidden;
  border-right: 0;
  border-left: 0;
  background-color: #4C6311;
  border-radius: 12px;
  padding: 8px;
  margin-top: 55px;
}
@media (max-width: 575px) {
  .wpo-blog-single-section .more-posts {
    margin-top: 40px;
  }
}
.wpo-blog-single-section .more-posts > div > a {
  display: inline-block;
}
.wpo-blog-single-section .more-posts .previous-post {
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(64, 84, 19, 0.15);
}
.wpo-blog-single-section .more-posts .next-post {
  padding-top: 26px;
}
.wpo-blog-single-section .more-posts .more-posts-item {
  background-color: #FBFEE7;
  border-radius: 8px;
  padding: 30px 25px;
}
@media (max-width: 575px) {
  .wpo-blog-single-section .more-posts .more-posts-item {
    padding: 25px 15px;
  }
}
.wpo-blog-single-section .more-posts .next-post .post-control-link {
  position: relative;
}
.wpo-blog-single-section .more-posts .previous-post .post-control-link {
  position: relative;
}
.wpo-blog-single-section .more-posts .previous-post > a > span,
.wpo-blog-single-section .more-posts .next-post > a > span {
  display: block;
}
.wpo-blog-single-section .more-posts .post-control-link {
  text-transform: uppercase;
  font-weight: 500;
  color: #202E05;
  font-size: 14px;
  line-height: 134%;
  margin-bottom: 5px;
  letter-spacing: 0.64px;
}
.wpo-blog-single-section .more-posts .post-name {
  color: #202E05;
  font-family: "Instrument Sans";
  font-size: 20px;
  font-weight: 500;
  line-height: 120%;
}
@media (max-width: 575px) {
  .wpo-blog-single-section .more-posts .post-name {
    font-size: 18px;
  }
}
.wpo-blog-single-section .more-posts a:hover .post-control-link {
  color: #2B6014;
}
.wpo-blog-single-section {
  /*** comments area ***/
}
.wpo-blog-single-section .comments-area .comments-area-top {
  background-color: #4C6311;
  border-radius: 12px;
  padding: 8px;
  margin-top: 55px;
}
@media (max-width: 575px) {
  .wpo-blog-single-section .comments-area .comments-area-top {
    margin-top: 40px;
  }
}
.wpo-blog-single-section .comments-area .comments-section {
  background-color: #FBFEE7;
  border-radius: 8px;
  padding: 5px 25px 5px;
}
@media (max-width: 575px) {
  .wpo-blog-single-section .comments-area .comments-section {
    padding: 5px 15px 5px;
  }
}
.wpo-blog-single-section .comments-area li > div {
  padding: 25px 0;
}
.wpo-blog-single-section .comments-area ol {
  list-style-type: none;
  padding-left: 0;
  margin: 0;
}
.wpo-blog-single-section .comments-area ol ul {
  padding-left: 100px;
  list-style-type: none;
}
@media (max-width: 575px) {
  .wpo-blog-single-section .comments-area ol ul {
    padding-left: 0;
  }
}
.wpo-blog-single-section .comments-area ol > li:last-child div {
  border-bottom: 0;
}
.wpo-blog-single-section .comments-area .comments-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 10px 12px;
}
.wpo-blog-single-section .comments-area .comments-title .title-left {
  text-transform: uppercase;
  font-weight: 400;
  color: #FBFEE7;
  font-size: 14px;
  line-height: 134%;
  letter-spacing: 0.64px;
}
.wpo-blog-single-section .comments-area li > div {
  position: relative;
}
.wpo-blog-single-section .comments-area .comment-theme {
  position: absolute;
  left: 0;
}
@media (max-width: 575px) {
  .wpo-blog-single-section .comments-area .comment-theme {
    position: static;
  }
}
.wpo-blog-single-section .comments-area .comment-theme img {
  border-radius: 50%;
}
.wpo-blog-single-section .comments-area .comment-main-area {
  padding-left: 100px;
}
@media (max-width: 575px) {
  .wpo-blog-single-section .comments-area .comment-main-area {
    padding-left: 0;
    margin-top: 15px;
  }
}
.wpo-blog-single-section .comments-area .comment-main-area p {
  margin-bottom: 0;
}
.wpo-blog-single-section .comments-area .comments-meta h4 {
  font-family: "Instrument Sans";
  font-size: 16px;
  font-weight: 500;
  line-height: 110%;
  margin-bottom: 0;
}
.wpo-blog-single-section .comments-area .comments-meta span {
  display: inline-block;
  font-family: "Instrument Sans";
  color: #202E05;
  font-size: 14px;
  font-weight: 500;
  line-height: 134%;
  margin-bottom: 15px;
  letter-spacing: 0.64px;
  text-transform: uppercase;
}
.wpo-blog-single-section .comments-area .comment-reply-link {
  color: #4C6311;
  font-size: 14px;
  font-weight: 600;
  line-height: 125%;
  text-transform: uppercase;
  padding-top: 10px;
  letter-spacing: 0.8px;
  text-decoration: underline;
  display: block;
}
.wpo-blog-single-section .comments-area .comment-reply-link:hover {
  color: #2B6014;
}
.wpo-blog-single-section .comments-area .children {
  position: relative;
}
.wpo-blog-single-section {
  /*** comment-respond ***/
}
.wpo-blog-single-section .comment-respond {
  background-color: #405413;
  padding: 10px;
  padding-top: 0;
  border-radius: 12px;
  margin-top: 55px;
}
.wpo-blog-single-section .comment-respond .wpo-section-title-s2 {
  margin: 0;
  padding: 10px 0;
  padding-left: 10px;
}
.wpo-blog-single-section .comment-respond .wpo-section-title-s2 .title-top span {
  color: #FBFEE7;
}
.wpo-blog-single-section .comment-respond .comment-all-item {
  padding: 35px 40px;
  background: #FBFEE7;
  border-radius: 8px;
}
.wpo-blog-single-section .comment-respond .comment-all-item .form-inputs label {
  font-size: 14px;
  color: #202E05;
  font-weight: 400;
  line-height: 134%;
  letter-spacing: 0.64px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.wpo-blog-single-section .comment-respond button {
  padding: 0;
}
.wpo-blog-single-section .comment-respond form input,
.wpo-blog-single-section .comment-respond form textarea {
  width: 100%;
  padding: 6px 15px;
  outline: 0;
  transition: all 0.3s;
  height: 48px;
  margin-bottom: 18px;
  border: 0;
  border: none;
  border-radius: 8px;
  border: 1px solid #E4EADB;
  background-color: #F3F5E3;
  color: #899174;
  font-size: 16px;
  font-weight: 400;
  line-height: 145%;
}
.wpo-blog-single-section .comment-respond form input:focus,
.wpo-blog-single-section .comment-respond form textarea:focus {
  box-shadow: none;
  color: #899174;
}
.wpo-blog-single-section .comment-respond form input::-moz-placeholder, .wpo-blog-single-section .comment-respond form textarea::-moz-placeholder {
  color: #899174;
}
.wpo-blog-single-section .comment-respond form input::placeholder,
.wpo-blog-single-section .comment-respond form textarea::placeholder {
  color: #899174;
}
.wpo-blog-single-section .comment-respond form textarea {
  padding: 15px;
  height: 165px;
}
@media (max-width: 767px) {
  .wpo-blog-single-section .comment-respond form textarea {
    height: 120px;
  }
}
.wpo-blog-single-section .comment-respond .form-inputs {
  overflow: hidden;
}
.wpo-blog-single-section .comment-respond .form-inputs > div {
  width: 100%;
  float: left;
  position: relative;
}
.wpo-blog-single-section .comment-respond .form-textarea {
  position: relative;
}
.wpo-blog-single-section .comment-respond .terms {
  margin-bottom: 30px;
  margin-left: 4px;
}
.wpo-blog-single-section .comment-respond .terms .checkbox {
  width: 20px;
  height: 0;
  padding: 0;
  margin: 0;
}
.wpo-blog-single-section .comment-respond .terms input[type=checkbox] {
  position: relative;
  cursor: pointer;
}
.wpo-blog-single-section .comment-respond .terms input[type=checkbox]:checked:before {
  content: "";
  display: block;
  position: absolute;
  left: -3px;
  top: -14px;
  width: 17px;
  height: 17px;
  transition: all 0.2s linear;
  border-radius: 4px;
  border: 1px solid #202E05;
}
.wpo-blog-single-section .comment-respond .terms input[type=checkbox]:before {
  content: "";
  display: block;
  position: absolute;
  left: -3px;
  top: -14px;
  width: 17px;
  height: 17px;
  transition: all 0.2s linear;
  border-radius: 4px;
  border: 1px solid #202E05;
}
.wpo-blog-single-section .comment-respond .terms input[type=checkbox]:after {
  content: "";
  display: block;
  width: 0px;
  height: 0px;
  border: solid #202E05;
  border-width: 0 0px 0px 0;
  transform: rotate(180deg);
  position: absolute;
  top: -11px;
  left: 3px;
  transition: all 0.2s linear;
}
.wpo-blog-single-section .comment-respond .terms input[type=checkbox]:checked:after {
  content: "";
  display: block;
  width: 6px;
  height: 9px;
  border: solid #202E05;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  position: absolute;
  top: -11px;
  left: 3px;
}
.wpo-blog-single-section .comment-respond .terms label {
  margin-bottom: 0;
  cursor: pointer;
  color: #202E05;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0;
}
@media (max-width: 1399px) {
  .wpo-blog-single-section .comment-respond .terms label {
    margin-left: 5px;
    font-size: 13px;
  }
}
@media (max-width: 767px) {
  .wpo-blog-single-section .comment-respond .terms label {
    margin-left: 25px;
    position: relative;
    margin-top: -25px;
  }
}
.wpo-blog-single-section .error-message {
  color: red;
  font-size: 14px;
}
.wpo-blog-single-section #loading {
  margin-top: 10px;
  color: blue;
  font-weight: bold;
}

/*======================================
10. Blog Page Section
 =======================================*/
.wpo-blog-pg-section {
  padding-bottom: 70px;
}
.wpo-blog-pg-section .wpo-blog-wrap .blog-item {
  background: rgb(241, 244, 227);
  backdrop-filter: blur(20px);
  padding: 8px;
  padding-bottom: 0;
  border-radius: 12px;
  margin-bottom: 40px;
}
.wpo-blog-pg-section .wpo-blog-wrap .blog-item .blog-image {
  border-radius: 8px;
  height: 100%;
  overflow: hidden;
}
.wpo-blog-pg-section .wpo-blog-wrap .blog-item .blog-image img {
  border-radius: 8px;
  height: 100%;
  width: 100%;
  transform: scale(1);
  transition: all 0.3s ease-in-out;
}
.wpo-blog-pg-section .wpo-blog-wrap .blog-item .blog-content {
  padding: 25px 15px;
}
@media (max-width: 1399px) {
  .wpo-blog-pg-section .wpo-blog-wrap .blog-item .blog-content {
    padding: 20px 5px;
  }
}
@media (max-width: 425px) {
  .wpo-blog-pg-section .wpo-blog-wrap .blog-item .blog-content {
    padding: 20px 0;
  }
}
.wpo-blog-pg-section .wpo-blog-wrap .blog-item .blog-content .blog-tag {
  display: flex;
  gap: 36px;
  align-items: center;
  padding-bottom: 10px;
}
@media (max-width: 425px) {
  .wpo-blog-pg-section .wpo-blog-wrap .blog-item .blog-content .blog-tag {
    gap: 15px;
  }
}
.wpo-blog-pg-section .wpo-blog-wrap .blog-item .blog-content .blog-tag li {
  font-size: 14px;
  font-weight: 500;
  line-height: 134%;
  letter-spacing: 0.64px;
  text-transform: uppercase;
  position: relative;
  color: #202E05;
}
@media (max-width: 1199px) {
  .wpo-blog-pg-section .wpo-blog-wrap .blog-item .blog-content .blog-tag li {
    font-size: 11px;
  }
}
.wpo-blog-pg-section .wpo-blog-wrap .blog-item .blog-content .blog-tag li a {
  color: #202E05;
  transition: all 0.3s ease-in-out;
}
.wpo-blog-pg-section .wpo-blog-wrap .blog-item .blog-content .blog-tag li a:hover {
  color: #2B6014;
}
.wpo-blog-pg-section .wpo-blog-wrap .blog-item .blog-content .blog-tag li::before {
  position: absolute;
  content: "";
  background-color: #202E05;
  top: 4px;
  left: -20px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
}
@media (max-width: 425px) {
  .wpo-blog-pg-section .wpo-blog-wrap .blog-item .blog-content .blog-tag li::before {
    left: -10px;
  }
}
.wpo-blog-pg-section .wpo-blog-wrap .blog-item .blog-content .blog-tag li:first-child::before {
  display: none;
}
.wpo-blog-pg-section .wpo-blog-wrap .blog-item .blog-content h3 {
  margin: 0;
  font-family: "Instrument Sans";
  font-size: 24px;
  font-weight: 500;
  line-height: 120%;
}
@media (max-width: 1399px) {
  .wpo-blog-pg-section .wpo-blog-wrap .blog-item .blog-content h3 {
    font-size: 18px;
    line-height: 110%;
  }
}
.wpo-blog-pg-section .wpo-blog-wrap .blog-item .blog-content h3 a {
  color: #202E05;
  transition: all 0.3s ease-in-out;
}
.wpo-blog-pg-section .wpo-blog-wrap .blog-item .blog-content h3 a:hover {
  color: #2B6014;
}
.wpo-blog-pg-section .wpo-blog-wrap .blog-item:hover .blog-image img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
11. Contact Page Section
--------------------------------------------------------------*/
.wpo-contact-pg-section .contact-wapper {
  max-width: 950px;
  margin: 0 auto;
}
.wpo-contact-pg-section .contact-top-item {
  padding-bottom: 110px;
}
@media (max-width: 991px) {
  .wpo-contact-pg-section .contact-top-item {
    padding-bottom: 80px;
  }
}
@media (max-width: 767px) {
  .wpo-contact-pg-section .contact-top-item {
    padding-bottom: 50px;
  }
}
.wpo-contact-pg-section .contact-top-item .office-info-item {
  background-color: #E4EADB;
  padding: 8px;
  border-radius: 12px;
  margin-bottom: 20px;
  transition: all 0.3s ease-in-out;
}
.wpo-contact-pg-section .contact-top-item .office-info-item h2 {
  font-family: "Instrument Sans";
  margin: 0;
  color: #202E05;
  font-size: 14px;
  font-weight: 600;
  line-height: 120%;
  text-transform: uppercase;
  padding: 5px 10px 10px;
  transition: all 0.3s ease-in-out;
}
.wpo-contact-pg-section .contact-top-item .office-info-item .office-info-content {
  background-color: #FBFEE7;
  border-radius: 8px;
  padding: 25px 22px;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.wpo-contact-pg-section .contact-top-item .office-info-item .office-info-content .office-info-text {
  padding-top: 37px;
}
.wpo-contact-pg-section .contact-top-item .office-info-item .office-info-content .office-info-text h3 {
  margin: 0;
  font-family: "Instrument Sans";
  color: #202E05;
  font-size: 20px;
  font-weight: 500;
  line-height: 120%;
  padding-bottom: 16px;
}
.wpo-contact-pg-section .contact-top-item .office-info-item .office-info-content .office-info-text p {
  margin: 0;
  font-family: "Instrument Sans";
  color: #202E05;
  font-size: 16px;
  font-weight: 400;
  line-height: 145%;
}
.wpo-contact-pg-section .contact-top-item .office-info-item.active, .wpo-contact-pg-section .contact-top-item .office-info-item:hover {
  background-color: #4C6311;
}
.wpo-contact-pg-section .contact-top-item .office-info-item.active h2, .wpo-contact-pg-section .contact-top-item .office-info-item:hover h2 {
  color: #FBFEE7;
}
.wpo-contact-pg-section .contact-top-item .office-info-item.active .office-info-content, .wpo-contact-pg-section .contact-top-item .office-info-item:hover .office-info-content {
  background-color: #BFE734;
}
.wpo-contact-pg-section .wpo-contact-wrap .contact-left .contact-title {
  color: #FBFEE7;
  font-size: 14px;
  font-weight: 400;
  line-height: 134%;
  letter-spacing: 0.64px;
  text-transform: uppercase;
  display: block;
  padding: 20px 10px 18px;
}
.wpo-contact-pg-section .wpo-contact-wrap .contact-left .wpo-contact-form-area .submit-area {
  margin-top: 38px;
}
@media (max-width: 575px) {
  .wpo-contact-pg-section .wpo-contact-wrap .contact-left .wpo-contact-form-area .submit-area {
    margin-top: 25px;
  }
}
.wpo-contact-pg-section .wpo-contact-wrap .wpo-section-title h2 {
  margin: 0 auto;
}
.wpo-contact-pg-section .wpo-contact-wrap .terms-s2 {
  margin-left: 0;
  padding-top: 5px;
}
.wpo-contact-pg-section .wpo-contact-wrap .terms-s2 .checkbox {
  width: 20px;
  height: 0;
  padding: 0;
  margin: 0;
}
.wpo-contact-pg-section .wpo-contact-wrap .terms-s2 input[type=checkbox] {
  position: relative;
  cursor: pointer;
}
.wpo-contact-pg-section .wpo-contact-wrap .terms-s2 input[type=checkbox]:checked:before {
  content: "";
  display: block;
  position: absolute;
  left: -3px;
  top: -14px;
  width: 18px;
  height: 18px;
  transition: all 0.2s linear;
  border: 1px solid #202E05;
}
.wpo-contact-pg-section .wpo-contact-wrap .terms-s2 input[type=checkbox]:before {
  content: "";
  display: block;
  position: absolute;
  left: -3px;
  top: -14px;
  width: 18px;
  height: 18px;
  transition: all 0.2s linear;
  border-radius: 4px;
  border: 1px solid #202E05;
}
.wpo-contact-pg-section .wpo-contact-wrap .terms-s2 input[type=checkbox]:after {
  content: "";
  display: block;
  width: 0px;
  height: 0px;
  border: solid #202E05;
  border-width: 0 0px 0px 0;
  transform: rotate(180deg);
  position: absolute;
  top: -11px;
  left: 3px;
  transition: all 0.2s linear;
}
.wpo-contact-pg-section .wpo-contact-wrap .terms-s2 input[type=checkbox]:checked:after {
  content: "";
  display: block;
  width: 6px;
  height: 10px;
  border: solid #202E05;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  position: absolute;
  top: -11px;
  left: 3px;
}
.wpo-contact-pg-section .wpo-contact-wrap .terms-s2 label {
  margin-bottom: 0;
  cursor: pointer;
  color: #202E05;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
}
@media (max-width: 767px) {
  .wpo-contact-pg-section .wpo-contact-wrap .terms-s2 label {
    font-size: 14px;
    line-height: 140%;
  }
}

.wpo-contact-map-section .wpo-contact-map {
  height: 800px;
  position: relative;
}
@media (max-width: 991px) {
  .wpo-contact-map-section .wpo-contact-map {
    height: 550px;
  }
}
@media (max-width: 767px) {
  .wpo-contact-map-section .wpo-contact-map {
    height: 350px;
  }
}
.wpo-contact-map-section .wpo-contact-map .cta-card {
  position: absolute;
  top: 55px;
  right: 40px;
  background: rgba(32, 46, 5, 0.66);
}
@media (max-width: 767px) {
  .wpo-contact-map-section .wpo-contact-map .cta-card {
    display: none;
  }
}
.wpo-contact-map-section .wpo-contact-map .cta-card .cta-item {
  background-color: #FBFEE7;
}
.wpo-contact-map-section .wpo-contact-map .cta-card .cta-bottom p {
  color: #FAFFF3;
}
.wpo-contact-map-section iframe {
  width: 100%;
  height: 100%;
  border: 0;
  outline: 0;
}
.wpo-contact-map-section h2.hidden {
  display: none;
}

/*--------------------------------------------------------------
12. Error 404 Page
--------------------------------------------------------------*/
.error-404-section {
  text-align: center;
}
.error-404-section .error-message {
  margin-top: 70px;
  padding: 0 200px;
}
@media (max-width: 1199px) {
  .error-404-section .error-message {
    padding: 0 100px;
  }
}
@media (max-width: 991px) {
  .error-404-section .error-message {
    padding: 0 15px;
    margin-top: 40px;
  }
}
@media (max-width: 767px) {
  .error-404-section .error-message {
    padding: 0;
  }
}
.error-404-section .error-message h3 {
  font-size: 50px;
  font-weight: 400;
  font-size: 2.7777777778rem;
  margin: 0 0 0.8em;
  color: #000;
  text-transform: capitalize;
  font-family: "Instrument Sans";
}
@media (max-width: 767px) {
  .error-404-section .error-message h3 {
    font-size: 35px;
    font-size: 1.9444444444rem;
  }
}
.error-404-section .error-message p {
  margin-bottom: 1.8em;
  color: #202E05;
}
.error-404-section .error-message .theme-btn-s3 {
  display: inline-flex;
}/*# sourceMappingURL=style.css.map */