/*------------------------------------------------------------------
[Master Stylesheet]
Theme Name:   Framehaus - Architecture Construction HTML Template
Version:      1.0.0
Author:       wpoceans
-------------------------------------------------------------------*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------

1.0 General
   1.1 Theme Reset Style
   1.2 Global Elements

2.0 Header
   2.1 Navigation 

3.0 Home Page One
    3.1 Hero Static Section
    3.2 About Section
    3.3 Service Section
    3.4 Portfolio Section
    3.5 Testimonial Section
    3.6 Cta Section
    3.7 Team Section
    3.8 Blog Section

4.0 Footer

5.0 Home Page Two
    5.1 About Section Style 2
    5.2 Partner Section
    5.3 Service Section Style 2
    5.4 Portfolio Section Style 2
    5.5 Why Choose Section
    5.6 Performance Section
    5.7 Testimonial Section Style 2
    5.8 Team Section Style 2
    5.9 Blog Section Style 2
    5.10 Contact Section

6.0 About Page

7.0 Blog Page

8.0 Blog Single Page

9.0 Portfolio Single Page

10.0 Service Single Page

11.0 Team Single Page

12.0 Contact Page

13.0 404 Error Page



----------------------------------------------------------------*/
/*---------------------------------------------------------------
1.0 General
----------------------------------------------------------------*/
/*---------------------------
	Fonts
----------------------------*/
@font-face {
  font-family: "Inter Display";
  font-weight: 300;
  font-style: normal;
  src: url("../fonts/InterDisplay-Light.woff2") format("woff2"), url("../fonts/InterDisplay-Light.woff") format("woff");
}
@font-face {
  font-family: "Inter Display";
  font-weight: 400;
  font-style: normal;
  src: url("../fonts/InterDisplay-Regular.woff2") format("woff2"), url("../fonts/InterDisplay-Regular.woff") format("woff");
}
@font-face {
  font-family: "Inter Display";
  font-weight: 500;
  font-style: normal;
  src: url("../fonts/InterDisplay-Medium.woff2") format("woff2"), url("../fonts/InterDisplay-Medium.woff") format("woff");
}
@font-face {
  font-family: "Inter Display";
  font-weight: 600;
  font-style: normal;
  src: url("../fonts/InterDisplay-SemiBold.woff2") format("woff2"), url("../fonts/InterDisplay-SemiBold.woff") format("woff");
}
@font-face {
  font-family: "Inter Display";
  font-weight: 700;
  font-style: normal;
  src: url("../fonts/InterDisplay-Bold.woff2") format("woff2"), url("../fonts/InterDisplay-Bold.woff") format("woff");
}
/* 1.1 Theme Reset Style */
html {
  font-size: 18px;
}

:root {
  scroll-behavior: unset;
}

body {
  font-family: "Inter Display";
  color: #374324;
  background-color: #F5F8ED;
  font-size: 18px;
  font-size: 1rem;
  overflow-x: hidden;
}
@media (max-width: 767px) {
  body {
    font-size: 16px;
  }
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #1B240F;
  font-family: "Inter Display";
  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;
}

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

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

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

.wow {
  visibility: hidden;
}

.fi:before {
  margin: 0;
}

.section-padding {
  padding: 120px 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: #556B2F;
  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%;
  }
}
@keyframes circle {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(1turn);
  }
}
/*** back to top **/
.back-to-top {
  background-color: rgba(85, 107, 47, 0.8);
  width: 45px;
  height: 45px;
  line-height: 45px;
  border: 2px solid #556B2F;
  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: #556B2F;
}

.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 #556B2F;
    transition: all 300ms linear;
    position: fixed;
    pointer-events: none;
    left: 0;
    top: 0;
    transform: translate(calc(-50% + 15px), -50%);
    z-index: 1111;
  }
  .cursor2 {
    width: 13px;
    height: 13px;
    border-radius: 100%;
    background-color: #9A9F8F;
    opacity: 0.3;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    transition: width 0.3s, height 0.3s, opacity 0.3s;
    z-index: 1111;
  }
  .hover {
    background-color: #9A9F8F;
    opacity: 0.2;
    border: 1px solid transparent;
  }
  .cursorinnerhover {
    width: 45px;
    height: 45px;
    opacity: 0.5;
  }
}
.inner-image {
  position: relative;
  overflow: hidden;
}
.inner-image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.inner-image::after {
  content: "";
  position: absolute;
  width: 200%;
  height: 0%;
  left: 50%;
  top: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: 1;
}
.inner-image:hover::after {
  height: 250%;
  transition: all 600ms linear;
  background-color: transparent;
}

.wpo-section-title,
.wpo-section-title-s2,
.wpo-section-title-s3 {
  margin-bottom: 50px;
  text-align: center;
}
@media (max-width: 991px) {
  .wpo-section-title,
  .wpo-section-title-s2,
  .wpo-section-title-s3 {
    margin-bottom: 35px;
  }
}
.wpo-section-title h2,
.wpo-section-title-s2 h2,
.wpo-section-title-s3 h2 {
  margin: 0;
  font-weight: 700;
  font-size: 96px;
  line-height: 90%;
  letter-spacing: -0.8px;
  text-transform: unset;
}
@media (max-width: 1600px) {
  .wpo-section-title h2,
  .wpo-section-title-s2 h2,
  .wpo-section-title-s3 h2 {
    font-size: 85px;
  }
}
@media (max-width: 1399px) {
  .wpo-section-title h2,
  .wpo-section-title-s2 h2,
  .wpo-section-title-s3 h2 {
    font-size: 70px;
  }
}
@media (max-width: 1199px) {
  .wpo-section-title h2,
  .wpo-section-title-s2 h2,
  .wpo-section-title-s3 h2 {
    font-size: 60px;
  }
}
@media (max-width: 991px) {
  .wpo-section-title h2,
  .wpo-section-title-s2 h2,
  .wpo-section-title-s3 h2 {
    font-size: 60px;
  }
}
@media (max-width: 767px) {
  .wpo-section-title h2,
  .wpo-section-title-s2 h2,
  .wpo-section-title-s3 h2 {
    font-size: 50px;
  }
}
@media (max-width: 575px) {
  .wpo-section-title h2,
  .wpo-section-title-s2 h2,
  .wpo-section-title-s3 h2 {
    font-size: 40px;
  }
}
.wpo-section-title span,
.wpo-section-title-s2 span,
.wpo-section-title-s3 span {
  display: inline-block;
  font-weight: 600;
  font-size: 16px;
  line-height: 110%;
  letter-spacing: 0.64px;
  color: #556B2F;
  position: relative;
  padding-left: 15px;
}
@media (max-width: 575px) {
  .wpo-section-title span,
  .wpo-section-title-s2 span,
  .wpo-section-title-s3 span {
    font-size: 15px;
  }
}
.wpo-section-title span::before,
.wpo-section-title-s2 span::before,
.wpo-section-title-s3 span::before {
  position: absolute;
  content: "";
  top: 5px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #556B2F;
}
.wpo-section-title p,
.wpo-section-title-s2 p,
.wpo-section-title-s3 p {
  margin: 0;
  padding-top: 40px;
  color: #374324;
  font-weight: 400;
  font-size: 18px;
  line-height: 145%;
}
@media (max-width: 991px) {
  .wpo-section-title p,
  .wpo-section-title-s2 p,
  .wpo-section-title-s3 p {
    font-size: 16px;
    line-height: 140%;
    padding-top: 20px;
  }
}
.wpo-section-title .title-btn,
.wpo-section-title-s2 .title-btn,
.wpo-section-title-s3 .title-btn {
  padding-top: 45px;
}
@media (max-width: 991px) {
  .wpo-section-title .title-btn,
  .wpo-section-title-s2 .title-btn,
  .wpo-section-title-s3 .title-btn {
    padding-top: 25px;
  }
}

.wpo-section-title-s2 {
  text-align: start;
}
@media (max-width: 991px) {
  .wpo-section-title-s2 {
    text-align: center;
  }
}
.wpo-section-title-s2 h2 {
  text-transform: unset;
}

.wpo-section-title-s3 {
  text-align: start;
}
@media (max-width: 991px) {
  .wpo-section-title-s3 {
    text-align: center;
  }
}
.wpo-section-title-s3 span {
  display: flex;
  margin-top: 20px;
  color: #9EB962;
}
@media (max-width: 991px) {
  .wpo-section-title-s3 span {
    margin: 0;
    margin-bottom: 10px;
    display: inline-block;
  }
}
.wpo-section-title-s3 span::before {
  background-color: #9EB962;
}
.wpo-section-title-s3 h2 {
  font-weight: 700;
  font-size: 148px;
  line-height: 90%;
  letter-spacing: -0.8px;
  text-transform: unset;
}
@media (max-width: 1600px) {
  .wpo-section-title-s3 h2 {
    font-size: 140px;
  }
}
@media (max-width: 1399px) {
  .wpo-section-title-s3 h2 {
    font-size: 120px;
  }
}
@media (max-width: 1199px) {
  .wpo-section-title-s3 h2 {
    font-size: 100px;
  }
}
@media (max-width: 991px) {
  .wpo-section-title-s3 h2 {
    font-size: 90px;
  }
}
@media (max-width: 767px) {
  .wpo-section-title-s3 h2 {
    font-size: 70px;
  }
}
@media (max-width: 575px) {
  .wpo-section-title-s3 h2 {
    font-size: 55px;
  }
}
@media (max-width: 425px) {
  .wpo-section-title-s3 h2 {
    font-size: 40px;
  }
}

/*------------------------------------
	blog sidebar
------------------------------------*/
.blog-sidebar {
  margin-left: auto;
  max-width: 363px;
}
@media (max-width: 991px) {
  .blog-sidebar {
    margin-top: 80px;
    max-width: 400px;
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  .blog-sidebar {
    margin-top: 60px;
    max-width: 400px;
  }
}
.blog-sidebar .widget {
  border: 1px solid #E8E8E8;
}
.blog-sidebar .widget h3 {
  display: block;
  color: #1B240F;
  font-size: 40px;
  font-weight: 400;
  line-height: 50px;
  padding: 15px 30px;
  margin-bottom: 0;
  border-bottom: 1px solid #E8E8E8;
}
@media (max-width: 575px) {
  .blog-sidebar .widget h3 {
    padding: 15px 20px;
    font-size: 30px;
    line-height: 40px;
  }
}
.blog-sidebar > .widget + .widget {
  margin-top: 65px;
}
.blog-sidebar {
  /*** search-widget ***/
}
.blog-sidebar .search-widget {
  border: 0;
}
.blog-sidebar .search-widget h3 {
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
  border: 0;
}
.blog-sidebar .search-widget form div {
  position: relative;
}
.blog-sidebar .search-widget input {
  background-color: transparent;
  height: 70px;
  padding: 6px 50px 6px 20px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  transition: all 0.3s;
  border: 1px solid #E8E8E8;
  color: #787878;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
}
.blog-sidebar .search-widget input:focus {
  background-color: rgba(85, 107, 47, 0.1);
}
.blog-sidebar .search-widget form button {
  background: transparent;
  font-size: 20px;
  color: #fff;
  background-color: #556B2F;
  border: 0;
  outline: 0;
  position: absolute;
  right: 10px;
  top: 52%;
  height: 50px;
  line-height: 50px;
  width: 50px;
  transform: translateY(-50%);
}
.blog-sidebar {
  /*** category-widget ***/
}
.blog-sidebar .category-widget ul {
  list-style: none;
  padding: 30px;
}
@media (max-width: 575px) {
  .blog-sidebar .category-widget ul {
    padding: 30px 20px;
  }
}
.blog-sidebar .category-widget ul li {
  font-size: 19px;
  position: relative;
}
@media (max-width: 767px) {
  .blog-sidebar .category-widget ul li {
    font-size: 16px;
  }
}
.blog-sidebar .category-widget ul li span {
  position: absolute;
  right: 0;
}
.blog-sidebar .category-widget ul > li + li {
  margin-top: 12px;
  padding-top: 12px;
}
.blog-sidebar .category-widget ul a {
  display: block;
  color: #374324;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
}
@media (max-width: 767px) {
  .blog-sidebar .category-widget ul a {
    font-size: 18px;
    line-height: 27px;
  }
}
@media (max-width: 425px) {
  .blog-sidebar .category-widget ul a {
    font-size: 17px;
    line-height: 25px;
  }
}
.blog-sidebar .category-widget ul a span {
  display: inline-block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border-radius: 50%;
}
.blog-sidebar .category-widget ul a:hover,
.blog-sidebar .category-widget ul li:hover:before {
  color: #556B2F;
}
.blog-sidebar {
  /*** recent-post-widget ***/
}
.blog-sidebar .recent-post-widget .post {
  overflow: hidden;
}
.blog-sidebar .recent-post-widget .posts {
  padding: 30px;
}
@media (max-width: 575px) {
  .blog-sidebar .recent-post-widget .posts {
    padding: 30px 20px;
  }
}
.blog-sidebar .recent-post-widget .posts > .post + .post {
  margin-top: 15px;
  padding-top: 15px;
}
.blog-sidebar .recent-post-widget .post .img-holder {
  width: 90px;
  float: left;
}
.blog-sidebar .recent-post-widget .post .details {
  width: calc(100% - 90px);
  float: left;
  padding-left: 20px;
}
@media (max-width: 425px) {
  .blog-sidebar .recent-post-widget .post .details {
    padding-left: 10px;
  }
}
.blog-sidebar .recent-post-widget .post h4 {
  margin: 0 0 0.3em;
  color: #000;
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
}
@media (max-width: 1199px) {
  .blog-sidebar .recent-post-widget .post h4 {
    margin: 0;
  }
}
@media (max-width: 767px) {
  .blog-sidebar .recent-post-widget .post h4 {
    font-size: 18px;
    line-height: 27px;
  }
}
@media (max-width: 425px) {
  .blog-sidebar .recent-post-widget .post h4 {
    font-size: 16px;
    line-height: 23px;
  }
}
.blog-sidebar .recent-post-widget .post h4 a {
  display: inline-block;
  color: #000;
}
.blog-sidebar .recent-post-widget .post h4 a:hover {
  color: #556B2F;
}
.blog-sidebar .recent-post-widget .post .details .date {
  color: #374324;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
}
@media (max-width: 767px) {
  .blog-sidebar .recent-post-widget .post .details .date {
    font-size: 15px;
  }
}
@media (max-width: 425px) {
  .blog-sidebar .recent-post-widget .post .details .date {
    font-size: 14px;
  }
}
.blog-sidebar .recent-post-widget .post .details .date i {
  display: inline-block;
  padding-right: 7px;
}
.blog-sidebar {
  /*** tag-widget ***/
}
.blog-sidebar .tag-widget ul {
  overflow: hidden;
  list-style: none;
  padding: 30px;
}
@media (max-width: 575px) {
  .blog-sidebar .tag-widget ul {
    padding: 30px 20px;
  }
}
.blog-sidebar .tag-widget ul li {
  float: left;
  margin: 0 8px 8px 0;
}
@media (max-width: 575px) {
  .blog-sidebar .tag-widget ul li {
    margin: 0 5px 5px 0;
  }
}
.blog-sidebar .tag-widget ul li a {
  display: inline-block;
  padding: 5px 16px;
  color: #374324;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
  border: 1px solid #E8E8E8;
  text-transform: capitalize;
}
@media (max-width: 575px) {
  .blog-sidebar .tag-widget ul li a {
    padding: 5px 8px;
  }
}
.blog-sidebar .tag-widget ul li a:hover {
  background: #556B2F;
  color: #fff;
}

.theme-btn,
.theme-btn-s2,
.theme-btn-s3,
.theme-btn-s4 {
  display: inline-block;
  padding: 20px 25px;
  -webkit-backface-visibility: hidden;
  z-index: 1;
  position: relative;
  color: #fff;
  background: #556B2F;
  border-radius: 12px;
  transition: all 0.5s ease-in-out;
  overflow: hidden;
  padding-right: 65px;
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
}
.theme-btn::before,
.theme-btn-s2::before,
.theme-btn-s3::before,
.theme-btn-s4::before {
  position: absolute;
  content: "\e628";
  font-family: "themify";
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  color: #556B2F;
  top: 50%;
  right: 4px;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  font-size: 15px;
  transform: translateY(-50%);
  transition: all 0.4s ease-in-out;
}
@media (max-width: 991px) {
  .theme-btn::before,
  .theme-btn-s2::before,
  .theme-btn-s3::before,
  .theme-btn-s4::before {
    width: 40px;
    height: 40px;
  }
}
@media (max-width: 767px) {
  .theme-btn::before,
  .theme-btn-s2::before,
  .theme-btn-s3::before,
  .theme-btn-s4::before {
    width: 35px;
    height: 35px;
    font-size: 13px;
  }
}
.theme-btn::after,
.theme-btn-s2::after,
.theme-btn-s3::after,
.theme-btn-s4::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  right: 50%;
  width: 0;
  height: 100%;
  opacity: 0;
  background-color: rgb(68.1103896104, 85.738961039, 37.661038961);
  transition: all 0.4s ease-in-out;
  z-index: -1;
}
.theme-btn:hover, .theme-btn:focus, .theme-btn:active,
.theme-btn-s2:hover,
.theme-btn-s2:focus,
.theme-btn-s2:active,
.theme-btn-s3:hover,
.theme-btn-s3:focus,
.theme-btn-s3:active,
.theme-btn-s4:hover,
.theme-btn-s4:focus,
.theme-btn-s4:active {
  background-color: transparent;
  background-color: #556B2F;
  color: #fff;
}
.theme-btn:hover::after, .theme-btn:focus::after, .theme-btn:active::after,
.theme-btn-s2:hover::after,
.theme-btn-s2:focus::after,
.theme-btn-s2:active::after,
.theme-btn-s3:hover::after,
.theme-btn-s3:focus::after,
.theme-btn-s3:active::after,
.theme-btn-s4:hover::after,
.theme-btn-s4:focus::after,
.theme-btn-s4:active::after {
  width: 100%;
  left: 0;
  right: 0;
  opacity: 1;
}
@media (max-width: 991px) {
  .theme-btn,
  .theme-btn-s2,
  .theme-btn-s3,
  .theme-btn-s4 {
    padding: 15px 20px;
    padding-right: 60px;
  }
}
@media (max-width: 767px) {
  .theme-btn,
  .theme-btn-s2,
  .theme-btn-s3,
  .theme-btn-s4 {
    padding: 14px 20px;
    padding-right: 50px;
    font-size: 14px;
  }
}

.theme-btn-s2 {
  background-color: #1B240F;
  color: #556B2F;
}
.theme-btn-s2::before {
  color: #1B240F;
}

.theme-btn-s3 {
  border-radius: 75px;
  border: 0;
}
.theme-btn-s3::before {
  border-radius: 64px;
}

.view-cart-btn {
  display: block;
  margin-top: 15px;
  border-radius: 5px;
  padding: 10px 45px;
  background: #61BC61;
  color: #131907;
  text-transform: capitalize;
}
.view-cart-btn::before {
  display: none;
}
.view-cart-btn:hover {
  color: #131907;
  background-color: rgb(79.0933333333, 180.4066666667, 79.0933333333);
}
.view-cart-btn.s1 {
  background: #1B240F;
}

.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: #556B2F;
  -o-box-shadow: 0 0 5px 0 rgb(113.1493506494, 142.4350649351, 62.5649350649);
  -ms-box-shadow: 0 0 5px 0 rgb(113.1493506494, 142.4350649351, 62.5649350649);
  box-shadow: 0 0 5px 0 rgb(113.1493506494, 142.4350649351, 62.5649350649);
}
.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(113.1493506494, 142.4350649351, 62.5649350649);
  width: 35px;
  height: 35px;
  line-height: 35px;
  display: block;
  color: #fff;
  text-align: center;
}
.social-links li a:hover {
  background-color: #556B2F;
}

.wpo-page-title {
  background: url(../images/page-title.jpg) no-repeat center top/cover;
  min-height: 450px;
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  z-index: 1;
  margin-left: 80px;
}
@media (max-width: 1199px) {
  .wpo-page-title {
    margin-left: 40px;
  }
}
@media (max-width: 991px) {
  .wpo-page-title {
    min-height: 350px;
    margin: 0;
  }
}
@media (max-width: 575px) {
  .wpo-page-title {
    min-height: 280px;
  }
}
.wpo-page-title:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 550px;
  height: 100%;
  z-index: -1;
  background: linear-gradient(269.18deg, rgba(11, 17, 2, 0) 2.47%, rgba(11, 17, 2, 0.65) 31.07%);
}
.wpo-page-title .wpo-breadcumb-wrap {
  text-align: center;
}
.wpo-page-title .wpo-breadcumb-wrap h1 {
  font-size: 60px;
  color: #fff;
  line-height: 60px;
  margin-bottom: 20px;
  font-weight: 600;
}
@media (max-width: 1199px) {
  .wpo-page-title .wpo-breadcumb-wrap h1 {
    font-size: 50px;
    line-height: 55px;
  }
}
@media (max-width: 991px) {
  .wpo-page-title .wpo-breadcumb-wrap h1 {
    font-size: 45px;
    line-height: 50px;
    margin-bottom: 10px;
  }
}
@media (max-width: 767px) {
  .wpo-page-title .wpo-breadcumb-wrap h1 {
    font-size: 40px;
    line-height: 45px;
  }
}
@media (max-width: 575px) {
  .wpo-page-title .wpo-breadcumb-wrap h1 {
    font-size: 30px;
    line-height: 30px;
  }
}
.wpo-page-title .wpo-breadcumb-wrap ol {
  padding-left: 0;
  margin-bottom: 0;
}
.wpo-page-title .wpo-breadcumb-wrap ol li {
  display: inline-block;
  padding: 0px 5px;
  padding-right: 20px;
  color: #fff;
  position: relative;
  font-size: 20px;
  font-family: "Inter Display";
}
.wpo-page-title .wpo-breadcumb-wrap ol li:last-child {
  padding-right: 0;
}
@media (max-width: 767px) {
  .wpo-page-title .wpo-breadcumb-wrap ol li {
    font-size: 18px;
  }
}
@media (max-width: 575px) {
  .wpo-page-title .wpo-breadcumb-wrap ol li {
    font-size: 16px;
  }
}
.wpo-page-title .wpo-breadcumb-wrap ol li:after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
}
.wpo-page-title .wpo-breadcumb-wrap ol li:last-child span {
  color: #cbd4fd;
}
.wpo-page-title .wpo-breadcumb-wrap ol li:last-child:after {
  display: none;
}
.wpo-page-title .wpo-breadcumb-wrap ol li a {
  color: #fff;
  font-size: 20px;
  transition: all 0.3s;
}
.wpo-page-title .wpo-breadcumb-wrap ol li a:hover {
  color: #61BC61;
}

.preloader {
  background-color: #344b0d;
  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: 60px;
}
@media (max-width: 991px) {
  .pagination-wrapper {
    text-align: left;
    margin-top: 40px;
  }
}
.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;
}
@media (max-width: 767px) {
  .pagination-wrapper .pg-pagination li {
    margin-right: 5px;
  }
}
.pagination-wrapper .pg-pagination li:last-child {
  margin-right: 0;
}
.pagination-wrapper .pg-pagination li a {
  background-color: transparent;
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 16px;
  font-size: 0.8888888889rem;
  font-weight: 600;
  color: #131907;
  background: #fff;
  display: block;
}
@media (max-width: 991px) {
  .pagination-wrapper .pg-pagination li a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 15px;
    font-size: 0.8333333333rem;
  }
}
.pagination-wrapper .pg-pagination .active a,
.pagination-wrapper .pg-pagination li a:hover {
  background: #556B2F;
  border-color: #556B2F;
  color: #fff;
}
.pagination-wrapper .pg-pagination .fi:before {
  font-size: 17px;
}

.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.0 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 ***/
  background-color: #F5F8ED;
  z-index: 99;
}
.wpo-site-header .navbar-brand {
  position: relative;
}
@media (max-width: 991px) {
  .wpo-site-header .navbar-brand {
    margin-right: 0;
  }
}
@media (max-width: 500px) {
  .wpo-site-header .navbar-brand img {
    max-width: 220px;
  }
}
@media (max-width: 400px) {
  .wpo-site-header .navbar-brand img {
    max-width: 160px;
  }
}
.wpo-site-header .language-selector {
  position: relative;
}
.wpo-site-header .language-selector::before {
  position: absolute;
  content: "";
  left: 0;
  top: -31px;
  width: 1px;
  height: 90px;
  background-color: rgba(0, 0, 0, 0.07);
}
@media (max-width: 1600px) {
  .wpo-site-header .language-selector::before {
    top: -34px;
  }
}
@media (max-width: 991px) {
  .wpo-site-header .language-selector::before {
    display: none;
  }
}
@media (max-width: 991px) {
  .wpo-site-header .language-selector {
    display: none;
  }
}
.wpo-site-header .custom-select-wrapper {
  display: flex;
  justify-content: end;
}
.wpo-site-header .language-selector select {
  display: none;
}
.wpo-site-header .language-selector .custom-select {
  position: relative;
  display: inline;
  cursor: pointer;
  padding-right: 15px;
}
.wpo-site-header .custom-arrow {
  position: absolute;
  right: 0;
  top: 6px;
  color: #000;
  font-size: 12px;
}
@media (max-width: 575px) {
  .wpo-site-header .custom-arrow {
    font-size: 14px;
    padding-left: 2px;
  }
}
.wpo-site-header .language-selector .custom-select img {
  vertical-align: middle;
  margin-right: 5px;
  border-radius: 50%;
}
.wpo-site-header .language-selector .custom-options {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  border: 1px solid #ccc;
  background-color: white;
  border-radius: 4px;
  z-index: 9999;
}
.wpo-site-header .language-selector .custom-options div {
  padding: 6px 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.wpo-site-header .language-selector .custom-options div img {
  margin-right: 5px;
  border-radius: 50%;
}
.wpo-site-header .language-selector .custom-options div:hover {
  background-color: #f0f0f0;
}
.wpo-site-header .language-selector.active .custom-options {
  display: block;
}
.wpo-site-header .brand-logo {
  padding: 0 195px;
  border-right: 1px solid rgba(19, 25, 7, 0.1);
}
@media (max-width: 1870px) {
  .wpo-site-header .brand-logo {
    padding: 0 154px;
  }
}
@media (max-width: 1770px) {
  .wpo-site-header .brand-logo {
    padding: 0 80px;
  }
}
@media (max-width: 1600px) {
  .wpo-site-header .brand-logo {
    padding: 0 70px;
  }
}
@media (max-width: 1200px) {
  .wpo-site-header .brand-logo {
    padding: 0 50px;
  }
}
.wpo-site-header .brand-logo .navbar-brand {
  margin: 0;
  padding-bottom: 0;
  top: 0;
}
@media (max-width: 1600px) {
  .wpo-site-header .brand-logo .navbar-brand {
    margin-top: -4px;
  }
}
@media (max-width: 991px) {
  .wpo-site-header .brand-logo .navbar-brand {
    margin-top: 0px;
  }
}
.wpo-site-header .brand-logo .navbar-brand:before {
  display: none;
}

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

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

.wpo-site-header .row {
  width: 100%;
}
@media (max-width: 991px) {
  .wpo-site-header .row {
    justify-content: space-between;
  }
}

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

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

@media screen and (min-width: 992px) {
  .wpo-site-header #navbar {
    /*** hover effect ***/
    justify-content: center;
  }
  .wpo-site-header #navbar li {
    position: relative;
  }
  .wpo-site-header #navbar > ul > li > a:before {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 4px;
    background: #556B2F;
    content: "";
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    border-radius: 3px;
  }
  .wpo-site-header #navbar > ul > li > a:hover:before,
  .wpo-site-header #navbar > ul > li.current-menu-item a: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:hover > .sub-menu {
    top: 100%;
    visibility: visible;
    opacity: 1;
    transform: scaleY(100%);
    -webkit-transform: scaleY(100%);
    -moz-transform: scaleY(100%);
    -ms-transform: scaleY(100%);
    -o-transform: scaleY(100%);
  }
  .wpo-site-header #navbar .sub-menu > li:hover > .sub-menu {
    left: 100%;
    visibility: visible;
    opacity: 1;
  }
}
.wpo-site-header .container-fluid {
  padding-right: 0;
}

@media (max-width: 991px) {
  .wpo-site-header {
    /* class for show hide navigation */
  }
  .wpo-site-header .container {
    width: 100%;
    max-width: 100%;
  }
  .wpo-site-header .header-right {
    right: -10px;
  }
  .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 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: #556B2F;
  }
  .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: center;
  align-items: center;
  z-index: 991;
  position: relative;
}
@media (max-width: 991px) {
  .wpo-site-header .header-right {
    justify-content: end;
  }
}
.wpo-site-header .header-right::before {
  position: absolute;
  content: "";
  right: 0;
  top: -26px;
  width: 1px;
  height: 90px;
  background-color: rgba(0, 0, 0, 0.07);
}
@media (max-width: 1600px) {
  .wpo-site-header .header-right::before {
    top: -30px;
  }
}
@media (max-width: 991px) {
  .wpo-site-header .header-right::before {
    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;
}

@media (max-width: 450px) {
  .wpo-site-header .header-right > div {
    margin-right: 10px;
  }
  .wpo-site-header .header-right {
    right: -18px;
  }
}
.wpo-site-header .header-right .search-toggle-btn,
.wpo-site-header .header-right .cart-toggle-btn {
  color: #131907;
  background: none;
}
.wpo-site-header .header-right .search-toggle-btn .fi:before,
.wpo-site-header .header-right .cart-toggle-btn .fi:before {
  font-size: 25px;
}
.wpo-site-header .header-right .search-toggle-btn .ti-close,
.wpo-site-header .header-right .cart-toggle-btn .ti-close {
  display: block;
  line-height: 20px;
  position: relative;
  top: -2px;
}

/*** cart-search-contact ***/
.mini-cart-content {
  background: #E9F0D7;
  width: 500px;
  height: 100vh;
  z-index: 100;
  position: fixed;
  left: -550px;
  top: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
  box-shadow: -2px 18px 40px -9px rgb(153, 153, 153);
  padding: 60px 40px 25px;
}
@media (max-width: 991px) {
  .mini-cart-content {
    right: -550px;
    left: auto;
  }
}
@media (max-width: 575px) {
  .mini-cart-content {
    width: 300px;
    padding: 40px 20px 25px;
  }
}
.mini-cart-content .mini-cart-close {
  width: 45px;
  height: 45px;
  background-color: rgb(51, 51, 51);
  color: rgb(255, 255, 255);
}
.mini-cart-content .mini-cart-close i {
  font-size: 18px;
}
.mini-cart-content .mini-cart-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(19, 25, 7, 0.1);
  padding-bottom: 40px;
}
@media (max-width: 575px) {
  .mini-cart-content .mini-cart-top {
    padding-bottom: 20px;
  }
}
.mini-cart-content .mini-cart-items {
  padding-top: 40px;
}
@media (max-width: 575px) {
  .mini-cart-content .mini-cart-items {
    padding-top: 20px;
  }
}
@media (max-width: 575px) {
  .mini-cart-content .image {
    max-width: 80px;
  }
}
.mini-cart-content .mini-cart-title {
  margin-bottom: 35px;
}
@media (max-width: 575px) {
  .mini-cart-content .mini-cart-title {
    margin-bottom: 20px;
  }
}
.mini-cart-content .mini-cart-title span {
  font-weight: 600;
  font-size: 35px;
  line-height: 125%;
  letter-spacing: -0.64px;
  color: #1B240F;
}
@media (max-width: 991px) {
  .mini-cart-content .mini-cart-title span {
    font-size: 30px;
    line-height: 120%;
  }
}
@media (max-width: 575px) {
  .mini-cart-content .mini-cart-title span {
    font-size: 23px;
    line-height: 110%;
  }
}
.mini-cart-content .image-wrap {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 35px;
}
.mini-cart-content .mini-cart-action {
  text-align: start;
}
.mini-cart-content .mini-cart-action p {
  margin: 0;
  font-weight: 400;
  font-size: 20px;
  line-height: 160%;
  letter-spacing: -0.64px;
  text-transform: capitalize;
  max-width: 320px;
  margin-bottom: 30px;
  color: #131907;
}
@media (max-width: 575px) {
  .mini-cart-content .mini-cart-action p {
    font-size: 18px;
    line-height: 140%;
  }
}
.mini-cart-content .mini-cart-action .mini-info li a {
  font-weight: 400;
  font-size: 18px;
  line-height: 120%;
  padding-bottom: 10px;
  color: #131907;
}
.mini-cart-content .mini-cart-action .mini-info li:last-child a {
  padding-bottom: 0;
  color: #61BC61;
}
.mini-cart-content .mini-cart-action .social-media {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 35px;
}
.mini-cart-content .mini-cart-action .social-media li a {
  color: #131907;
}

.mini-cart-content-toggle,
.mini-wislist-content-toggle {
  opacity: 1;
  visibility: visible;
  left: 0;
}
@media (max-width: 991px) {
  .mini-cart-content-toggle,
  .mini-wislist-content-toggle {
    right: 0;
    left: auto;
  }
}

@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 {
  margin-bottom: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  border-bottom: 1px solid rgba(19, 25, 7, 0.1);
}
.wpo-site-header .navigation > .container {
  position: relative;
}
@media (max-width: 991px) {
  .wpo-site-header .navigation {
    padding: 20px 0;
    border-bottom: 0;
  }
}
.wpo-site-header #navbar {
  transition: all 0.5s;
}
.wpo-site-header #navbar > ul li a:hover,
.wpo-site-header #navbar > ul li a:focus {
  text-decoration: none;
  color: rgb(70.9253246753, 89.2824675325, 39.2175324675);
}
@media screen and (min-width: 992px) {
  .wpo-site-header #navbar li {
    position: relative;
  }
  .wpo-site-header #navbar > ul > li > a {
    font-weight: 500;
    font-size: 16px;
    line-height: 23px;
    padding: 32px 70px;
    display: block;
    color: #131907;
    position: relative;
    text-transform: capitalize;
    padding: 32px 50px;
    height: 100%;
  }
  .wpo-site-header #navbar {
    /*** hover effect ***/
  }
}
@media screen and (min-width: 992px) and (max-width: 991px) {
  .wpo-site-header #navbar > ul > li > a {
    border-right: 0;
  }
}
@media screen and (min-width: 992px) {
  .wpo-site-header #navbar > ul .sub-menu {
    background-color: #f1f5e6;
    box-shadow: 0px 2px 20px 0px rgba(62, 65, 159, 0.09);
    width: 230px;
    position: absolute;
    padding: 20px;
    left: 0;
    top: 110%;
    z-index: 10;
    visibility: hidden;
    opacity: 0;
    transform: scaleY(0);
    -webkit-transform: scaleY(0);
    -moz-transform: scaleY(0);
    -ms-transform: scaleY(0);
    -o-transform: scaleY(0);
    transform-origin: center top 0;
    -webkit-transform-origin: center top 0;
    -moz-transform-origin: center top 0;
    -ms-transform-origin: center top 0;
    -o-transform-origin: center top 0;
    transition: all 0.3s ease-in-out 0s;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    -ms-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
  }
  .wpo-site-header #navbar > ul > li .sub-menu a {
    font-size: 16px;
    font-size: 0.8888888889rem;
    display: inline-block;
    padding: 5px 0px;
    color: #131907;
    position: relative;
    overflow: hidden;
    font-weight: 500;
    transition: all 0.5s;
  }
  .wpo-site-header #navbar > ul > li .sub-menu a:after {
    position: absolute;
    left: 0px;
    bottom: 5px;
    width: 0px;
    height: 1px;
    content: "";
    background: #556B2F;
    transition: all 0.3s;
    opacity: 0;
    visibility: hidden;
  }
  .wpo-site-header #navbar > ul > li .sub-menu a.active {
    color: #556B2F;
    font-weight: 600;
  }
  .wpo-site-header #navbar > ul > li .sub-menu a:hover:after {
    width: 100%;
    opacity: 1;
    visibility: visible;
  }
  .wpo-site-header #navbar > ul > li > .sub-menu .sub-menu {
    left: 120%;
    top: 0;
    transform: unset;
  }
  .wpo-site-header #navbar > ul > li {
    border-right: 1px solid rgba(19, 25, 7, 0.1);
  }
  .wpo-site-header #navbar > ul > li:last-child {
    border: 0;
  }
  .wpo-site-header #navbar > ul > li > .sub-menu > .menu-item-has-children {
    position: relative;
  }
  .wpo-site-header #navbar > ul > li > .sub-menu > .menu-item-has-children: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 > ul > li:hover > .sub-menu {
    top: 100%;
    visibility: visible;
    opacity: 1;
  }
  .wpo-site-header #navbar .sub-menu > li:hover > .sub-menu {
    left: 110%;
    visibility: visible;
    opacity: 1;
  }
}
@media screen and (min-width: 992px) and (max-width: 1850px) {
  .wpo-site-header #navbar .sub-menu > li:last-child > .sub-menu {
    left: auto;
    right: 120%;
  }
}
@media screen and (min-width: 992px) and (max-width: 1850px) {
  .wpo-site-header #navbar .sub-menu > li:last-child:hover > .sub-menu {
    right: 110%;
    left: auto;
  }
}
@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;
  }
  .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 {
    position: relative;
    border-top: 0;
    border-bottom: 0;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  .wpo-site-header #navbar > ul .menu-item-has-children {
    border: 0;
  }
}
@media (max-width: 991px) {
  .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;
    font-weight: 600;
  }
  .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 {
    display: flex;
  }
  .wpo-site-header .mobail-menu button {
    background-color: #556B2F;
    width: 40px;
    height: 36px;
    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: #fff;
    width: 20px;
    display: block;
    height: 2px;
    margin-bottom: 4px;
  }
  .wpo-site-header .mobail-menu button span:last-child {
    margin: 0;
  }
  .wpo-site-header #navbar {
    background: #3d501b;
    display: block;
    width: 300px;
    height: 100vh;
    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: #556B2F;
  }
  .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 .slideInn {
    left: 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
  .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 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;
  }
}

@media (max-width: 1600px) {
  .wpo-site-header #navbar > ul > li > a {
    padding: 30px 40px;
  }
}
@media (max-width: 1400px) {
  .wpo-site-header #navbar > ul > li > a {
    padding: 30px 25px;
  }
}
@media (max-width: 1200px) {
  .wpo-site-header #navbar > ul > li > a {
    padding: 30px 20px;
    font-size: 15px;
  }
}
.wpo-site-header .navigation.sticky-header {
  background-color: #E9F0D7;
  border-bottom: 0;
}

@media (max-width: 991px) {
  .wpo-site-header #navbar > ul > li > a {
    padding: 15px 20px;
  }
}
@media (max-width: 991px) {
  .wpo-site-header .navigation.sticky-header {
    padding: 15px 0;
  }
}
.header-style-s3 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-color: transparent;
}
.header-style-s3 .wpo-site-header #navbar > ul li a:hover,
.header-style-s3 .wpo-site-header #navbar > ul li a:focus {
  text-decoration: none;
  color: #F5F8ED;
}
.header-style-s3 .navigation {
  background-color: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.header-style-s3 #navbar ul > li {
  border: 0;
}
.header-style-s3 #navbar > ul > li > a {
  color: #F5F8ED;
  padding: 25px 40px;
}
@media (max-width: 1399px) {
  .header-style-s3 #navbar > ul > li > a {
    padding: 25px 30px;
  }
}
@media (max-width: 1199px) {
  .header-style-s3 #navbar > ul > li > a {
    padding: 25px 20px;
  }
}
@media (max-width: 991px) {
  .header-style-s3 #navbar > ul > li > a {
    padding: 15px 20px;
  }
}
.header-style-s3 #navbar > ul > li > a:hover {
  color: #F5F8ED;
}
.header-style-s3 #navbar > ul > li > a::before {
  display: none;
}
.header-style-s3 #navbar {
  justify-content: start;
}
.header-style-s3 .header-right {
  justify-content: end;
}
.header-style-s3 .header-right .cart-toggle-btn {
  color: #F5F8ED;
}
.header-style-s3 .header-right .cart-toggle-btn .fi {
  font-size: 40px;
}
.header-style-s3 .header-right .cart-toggle-btn .fi::before {
  font-size: 35px;
}
.header-style-s3 .header-right .header-contact {
  margin-right: 50px;
}
@media (max-width: 767px) {
  .header-style-s3 .header-right .header-contact {
    margin-right: 20px;
  }
}
.header-style-s3 .header-right .header-contact span {
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: -0.32px;
  color: #F5F8ED;
}
@media (max-width: 767px) {
  .header-style-s3 .header-right .header-contact span {
    font-size: 18px;
  }
}
.header-style-s3 .header-right .mini-cart-content {
  left: auto;
  right: -550px;
}
.header-style-s3 .header-right .mini-cart-content-toggle,
.header-style-s3 .header-right .mini-wislist-content-toggle {
  left: auto;
}
.header-style-s3 .header-right .mini-cart-content-toggle {
  opacity: 1;
  visibility: visible;
  right: 0;
}
.header-style-s3 .navigation.sticky-header {
  background-color: #1B240F;
  border: 0;
}
@media (max-width: 425px) {
  .header-style-s3 .row {
    flex-wrap: nowrap;
  }
}

/*--------------------------------------------------------------
3.0 Home Page One
--------------------------------------------------------------*/
/* 3.1 Hero Static Section */
.wpo-hero-section,
.wpo-hero-section-s2 {
  position: relative;
  padding-left: 80px;
  overflow: hidden;
  background: #f7f5eb;
  height: 800px;
}
@media (max-width: 1199px) {
  .wpo-hero-section,
  .wpo-hero-section-s2 {
    padding-left: 60px;
  }
}
@media (max-width: 991px) {
  .wpo-hero-section,
  .wpo-hero-section-s2 {
    padding: 0;
    height: 700px;
  }
}
@media (max-width: 575px) {
  .wpo-hero-section,
  .wpo-hero-section-s2 {
    height: 550px;
  }
}
.wpo-hero-section .hero-slider,
.wpo-hero-section-s2 .hero-slider {
  position: relative;
  height: 100%;
}
.wpo-hero-section .hero-slider .swiper-slide,
.wpo-hero-section-s2 .hero-slider .swiper-slide {
  position: relative;
  overflow: hidden;
  z-index: 11;
  width: 100%;
}
.wpo-hero-section .hero-slider .swiper-slide:before,
.wpo-hero-section-s2 .hero-slider .swiper-slide:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 560px;
  height: 100%;
  background: linear-gradient(269.18deg, rgba(11, 17, 2, 0) 2.47%, rgba(11, 17, 2, 0.65) 31.07%);
  content: "";
  z-index: 1;
}
.wpo-hero-section .hero-slider .swiper-slide.swiper-slide-active .hero-bg,
.wpo-hero-section-s2 .hero-slider .swiper-slide.swiper-slide-active .hero-bg {
  transform: scale(1.08);
}
.wpo-hero-section .hero-slider .hero-bg,
.wpo-hero-section-s2 .hero-slider .hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 8s linear;
  width: 100%;
}
.wpo-hero-section .hero-slider .container-fluid,
.wpo-hero-section-s2 .hero-slider .container-fluid {
  height: 100%;
  position: relative;
  z-index: 5;
}
.wpo-hero-section .hero-slider .hero-content,
.wpo-hero-section-s2 .hero-slider .hero-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 70px 0 15px 140px;
}
@media (max-width: 1600px) {
  .wpo-hero-section .hero-slider .hero-content,
  .wpo-hero-section-s2 .hero-slider .hero-content {
    padding: 0 0 15px 50px;
  }
}
@media (max-width: 1199px) {
  .wpo-hero-section .hero-slider .hero-content,
  .wpo-hero-section-s2 .hero-slider .hero-content {
    padding: 0 0 15px 10px;
  }
}
@media (max-width: 991px) {
  .wpo-hero-section .hero-slider .hero-content,
  .wpo-hero-section-s2 .hero-slider .hero-content {
    align-items: center;
    justify-content: center;
    text-align: center;
  }
}
.wpo-hero-section .hero-slider .hero-content .hero-text,
.wpo-hero-section-s2 .hero-slider .hero-content .hero-text {
  padding-top: 70px;
}
@media (max-width: 991px) {
  .wpo-hero-section .hero-slider .hero-content .hero-text,
  .wpo-hero-section-s2 .hero-slider .hero-content .hero-text {
    padding-top: 30px;
  }
}
.wpo-hero-section .hero-slider .hero-content h1,
.wpo-hero-section-s2 .hero-slider .hero-content h1 {
  margin: 0;
  color: #F5F8ED;
  font-weight: 600;
  font-size: 284px;
  line-height: 117%;
}
@media (max-width: 1750px) {
  .wpo-hero-section .hero-slider .hero-content h1,
  .wpo-hero-section-s2 .hero-slider .hero-content h1 {
    font-size: 260px;
  }
}
@media (max-width: 1600px) {
  .wpo-hero-section .hero-slider .hero-content h1,
  .wpo-hero-section-s2 .hero-slider .hero-content h1 {
    font-size: 240px;
  }
}
@media (max-width: 1399px) {
  .wpo-hero-section .hero-slider .hero-content h1,
  .wpo-hero-section-s2 .hero-slider .hero-content h1 {
    font-size: 200px;
  }
}
@media (max-width: 1199px) {
  .wpo-hero-section .hero-slider .hero-content h1,
  .wpo-hero-section-s2 .hero-slider .hero-content h1 {
    font-size: 150px;
    line-height: 110%;
  }
}
@media (max-width: 991px) {
  .wpo-hero-section .hero-slider .hero-content h1,
  .wpo-hero-section-s2 .hero-slider .hero-content h1 {
    font-size: 120px;
    line-height: 100%;
  }
}
@media (max-width: 767px) {
  .wpo-hero-section .hero-slider .hero-content h1,
  .wpo-hero-section-s2 .hero-slider .hero-content h1 {
    font-size: 90px;
    line-height: 90%;
  }
}
@media (max-width: 575px) {
  .wpo-hero-section .hero-slider .hero-content h1,
  .wpo-hero-section-s2 .hero-slider .hero-content h1 {
    font-size: 65px;
    line-height: 80%;
  }
}
@media (max-width: 425px) {
  .wpo-hero-section .hero-slider .hero-content h1,
  .wpo-hero-section-s2 .hero-slider .hero-content h1 {
    font-size: 50px;
  }
}
.wpo-hero-section .hero-slider .hero-content .hero-top,
.wpo-hero-section-s2 .hero-slider .hero-content .hero-top {
  max-width: 520px;
  padding: 20px 0;
  position: relative;
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .wpo-hero-section .hero-slider .hero-content .hero-top,
  .wpo-hero-section-s2 .hero-slider .hero-content .hero-top {
    width: 100%;
    max-width: unset;
    padding: 0;
  }
}
.wpo-hero-section .hero-slider .hero-content .hero-top::before,
.wpo-hero-section-s2 .hero-slider .hero-content .hero-top::before {
  position: absolute;
  content: "";
  top: 0;
  left: -170px;
  width: 700px;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0) 100%);
  backdrop-filter: blur(2px);
  z-index: -1;
}
@media (max-width: 1750px) {
  .wpo-hero-section .hero-slider .hero-content .hero-top::before,
  .wpo-hero-section-s2 .hero-slider .hero-content .hero-top::before {
    right: -50px;
  }
}
@media (max-width: 991px) {
  .wpo-hero-section .hero-slider .hero-content .hero-top::before,
  .wpo-hero-section-s2 .hero-slider .hero-content .hero-top::before {
    display: none;
  }
}
.wpo-hero-section .hero-slider .hero-content .hero-top p,
.wpo-hero-section-s2 .hero-slider .hero-content .hero-top p {
  margin: 0;
  color: #fff;
  font-weight: 400;
  font-size: 24px;
  line-height: 126%;
  max-width: 330px;
}
@media (max-width: 991px) {
  .wpo-hero-section .hero-slider .hero-content .hero-top p,
  .wpo-hero-section-s2 .hero-slider .hero-content .hero-top p {
    font-size: 20px;
    margin: 0 auto;
    padding: 0;
  }
}
@media (max-width: 575px) {
  .wpo-hero-section .hero-slider .hero-content .hero-top p,
  .wpo-hero-section-s2 .hero-slider .hero-content .hero-top p {
    font-size: 18px;
  }
}
.wpo-hero-section .swiper-pagination,
.wpo-hero-section-s2 .swiper-pagination {
  position: absolute;
  left: -55px;
  top: 66%;
  transform: translateY(-50%);
  width: auto;
  z-index: 20;
}
@media (max-width: 1199px) {
  .wpo-hero-section .swiper-pagination,
  .wpo-hero-section-s2 .swiper-pagination {
    top: 50%;
    left: -45px;
  }
}
@media (max-width: 991px) {
  .wpo-hero-section .swiper-pagination,
  .wpo-hero-section-s2 .swiper-pagination {
    top: auto;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.wpo-hero-section .swiper-pagination .swiper-pagination-bullet,
.wpo-hero-section-s2 .swiper-pagination .swiper-pagination-bullet {
  display: block;
  margin-bottom: 15px;
  width: auto;
  height: auto;
  background: none;
  color: #1c1c1c;
  opacity: 1;
  font-weight: 500;
  position: relative;
  font-weight: 500;
  font-size: 16px;
  line-height: 110%;
}
@media (max-width: 991px) {
  .wpo-hero-section .swiper-pagination .swiper-pagination-bullet,
  .wpo-hero-section-s2 .swiper-pagination .swiper-pagination-bullet {
    color: #fff;
  }
}
.wpo-hero-section .swiper-pagination .swiper-pagination-bullet-active,
.wpo-hero-section-s2 .swiper-pagination .swiper-pagination-bullet-active {
  color: #556B2F;
}
.wpo-hero-section .swiper-pagination .swiper-pagination-bullet-active::after,
.wpo-hero-section-s2 .swiper-pagination .swiper-pagination-bullet-active::after {
  content: "";
  position: absolute;
  left: 35px;
  top: 50%;
  width: 45px;
  height: 2px;
  background: #556B2F;
}
@media (max-width: 991px) {
  .wpo-hero-section .swiper-pagination .swiper-pagination-bullet-active::after,
  .wpo-hero-section-s2 .swiper-pagination .swiper-pagination-bullet-active::after {
    display: none;
  }
}

/* Hero Static Section Style 2 */
.wpo-hero-section-s2 {
  padding: 0;
  height: 900px;
}
@media (max-width: 991px) {
  .wpo-hero-section-s2 {
    height: 750px;
    height: auto;
  }
}
.wpo-hero-section-s2 .hero-slider .swiper-slide:before {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.71) 0%, rgba(0, 0, 0, 0) 100%);
  width: 100%;
  height: 490px;
  top: 0;
}
@media (max-width: 991px) {
  .wpo-hero-section-s2 .hero-slider .swiper-slide:before {
    height: 100%;
  }
}
.wpo-hero-section-s2 .hero-slider .hero-content {
  flex-direction: column;
  justify-content: space-between;
  padding: 130px 20px 30px;
}
@media (max-width: 991px) {
  .wpo-hero-section-s2 .hero-slider .hero-content {
    justify-content: center;
    padding: 160px 0 120px;
  }
}
.wpo-hero-section-s2 .hero-slider .hero-content .hero-top {
  order: 2;
  max-width: unset;
  display: flex;
  justify-content: space-between;
  padding: 0;
}
@media (max-width: 991px) {
  .wpo-hero-section-s2 .hero-slider .hero-content .hero-top {
    flex-direction: column;
    gap: 30px;
    justify-content: center;
    text-align: center;
  }
}
.wpo-hero-section-s2 .hero-slider .hero-content .hero-top span {
  font-weight: 600;
  font-size: 48px;
  line-height: 105%;
  letter-spacing: -0.48px;
  color: #F5F8ED;
  max-width: 500px;
  display: block;
}
@media (max-width: 1199px) {
  .wpo-hero-section-s2 .hero-slider .hero-content .hero-top span {
    font-size: 40px;
  }
}
@media (max-width: 991px) {
  .wpo-hero-section-s2 .hero-slider .hero-content .hero-top span {
    font-size: 35px;
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  .wpo-hero-section-s2 .hero-slider .hero-content .hero-top span {
    font-size: 30px;
    line-height: 110%;
  }
}
@media (max-width: 575px) {
  .wpo-hero-section-s2 .hero-slider .hero-content .hero-top span {
    font-size: 25px;
  }
}
@media (max-width: 425px) {
  .wpo-hero-section-s2 .hero-slider .hero-content .hero-top span {
    font-size: 20px;
  }
}
.wpo-hero-section-s2 .hero-slider .hero-content .hero-top::before {
  display: none;
}
.wpo-hero-section-s2 .hero-slider .hero-content .hero-top .hero-right {
  display: flex;
  gap: 5px;
}
@media (max-width: 991px) {
  .wpo-hero-section-s2 .hero-slider .hero-content .hero-top .hero-right {
    justify-content: center;
  }
}
@media (max-width: 425px) {
  .wpo-hero-section-s2 .hero-slider .hero-content .hero-top .hero-right {
    max-width: 180px;
    flex-direction: column;
    margin: 0 auto;
  }
}
.wpo-hero-section-s2 .hero-slider .hero-content .hero-top .hero-right .image {
  background-color: #fff;
  border-radius: 8px;
  padding: 5px;
  display: flex;
}
.wpo-hero-section-s2 .hero-slider .hero-content .hero-top .hero-right .image img {
  border-radius: 4px;
}
@media (max-width: 425px) {
  .wpo-hero-section-s2 .hero-slider .hero-content .hero-top .hero-right .image img {
    width: 100%;
  }
}
.wpo-hero-section-s2 .hero-slider .hero-content .hero-top .hero-right .hero-card {
  background-color: #fff;
  border-radius: 8px;
  padding: 25px;
}
@media (max-width: 425px) {
  .wpo-hero-section-s2 .hero-slider .hero-content .hero-top .hero-right .hero-card {
    padding: 15px 10px;
  }
}
.wpo-hero-section-s2 .hero-slider .hero-content .hero-top .hero-right .hero-card p {
  margin: 0;
  font-weight: 500;
  font-size: 20px;
  line-height: 135%;
  letter-spacing: -0.48px;
  color: #1B240F;
  max-width: 190px;
  padding-bottom: 15px;
}
@media (max-width: 991px) {
  .wpo-hero-section-s2 .hero-slider .hero-content .hero-top .hero-right .hero-card p {
    font-size: 18px;
    line-height: 125%;
  }
}
@media (max-width: 575px) {
  .wpo-hero-section-s2 .hero-slider .hero-content .hero-top .hero-right .hero-card p {
    font-size: 16px;
    line-height: 120%;
  }
}
.wpo-hero-section-s2 .hero-slider .hero-content .hero-top .hero-right .hero-card .theme-btn-s3 {
  letter-spacing: -0.48px;
  padding: 6px 15px;
  padding-right: 40px;
}
@media (max-width: 991px) {
  .wpo-hero-section-s2 .hero-slider .hero-content .hero-top .hero-right .hero-card .theme-btn-s3 {
    padding: 6px 15px;
    padding-right: 30px;
  }
}
.wpo-hero-section-s2 .hero-slider .hero-content .hero-top .hero-right .hero-card .theme-btn-s3::before {
  width: 18px;
  height: 18px;
  right: 8px;
  position: absolute;
  content: "\f10b";
  content: "\e628";
  font-size: 10px;
  color: #556B2F;
}
@media (max-width: 991px) {
  .wpo-hero-section-s2 .hero-slider .hero-content .hero-top .hero-right .hero-card .theme-btn-s3::before {
    right: 5px;
  }
}
.wpo-hero-section-s2 .hero-slider .hero-content .hero-bottom {
  order: 1;
}
.wpo-hero-section-s2 .hero-slider .hero-content .hero-text {
  padding: 0;
}
.wpo-hero-section-s2 .hero-slider .hero-content .hero-text h1 {
  font-weight: 600;
  font-size: 284px;
  line-height: 80%;
  text-transform: uppercase;
  letter-spacing: 10.6px;
}
@media (max-width: 1850px) {
  .wpo-hero-section-s2 .hero-slider .hero-content .hero-text h1 {
    font-size: 265px;
  }
}
@media (max-width: 1750px) {
  .wpo-hero-section-s2 .hero-slider .hero-content .hero-text h1 {
    font-size: 240px;
    letter-spacing: 6.6px;
  }
}
@media (max-width: 1600px) {
  .wpo-hero-section-s2 .hero-slider .hero-content .hero-text h1 {
    font-size: 215px;
    letter-spacing: 1.8px;
  }
}
@media (max-width: 1399px) {
  .wpo-hero-section-s2 .hero-slider .hero-content .hero-text h1 {
    font-size: 185px;
  }
}
@media (max-width: 1199px) {
  .wpo-hero-section-s2 .hero-slider .hero-content .hero-text h1 {
    font-size: 150px;
  }
}
@media (max-width: 991px) {
  .wpo-hero-section-s2 .hero-slider .hero-content .hero-text h1 {
    font-size: 115px;
    padding-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .wpo-hero-section-s2 .hero-slider .hero-content .hero-text h1 {
    font-size: 85px;
  }
}
@media (max-width: 575px) {
  .wpo-hero-section-s2 .hero-slider .hero-content .hero-text h1 {
    font-size: 60px;
    padding-bottom: 20px;
  }
}
@media (max-width: 425px) {
  .wpo-hero-section-s2 .hero-slider .hero-content .hero-text h1 {
    font-size: 45px;
  }
}
.wpo-hero-section-s2 .swiper-pagination {
  display: none;
}
@media (max-width: 991px) {
  .wpo-hero-section-s2 .swiper-pagination {
    display: block;
    display: flex;
  }
}
.wpo-hero-section-s2 .swiper-pagination .swiper-pagination-bullet-active {
  color: #9EB962;
}

.client-team {
  display: flex;
  align-items: center;
}
@media (max-width: 991px) {
  .client-team {
    margin: 0 auto;
    margin-top: 20px;
    text-align: center;
  }
}
.client-team .client-image {
  display: flex;
  align-items: center;
  margin-left: 0;
  background-color: #fff;
  padding: 0 8px;
  border-radius: 40px;
}
@media (max-width: 991px) {
  .client-team .client-image {
    justify-content: center;
    margin-left: 0;
  }
}
.client-team .client-image li {
  width: 56px;
  height: 56px;
  border-radius: 56px;
  margin: 0 -7px;
  text-align: center;
  padding: 2px;
  background: #F4F9F7;
}
.client-team .client-image li img {
  width: 100%;
  height: 100%;
  border-radius: 56px;
}
.client-team .client-text {
  padding-left: 30px;
}
@media (max-width: 991px) {
  .client-team .client-text {
    padding-left: 20px;
  }
}
.client-team .client-text p {
  margin: 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: -0.48px;
  color: #131907;
}
@media (max-width: 575px) {
  .client-team .client-text p {
    font-size: 14px;
  }
}
.client-team .client-text ul {
  display: flex;
  gap: 5px;
}
.client-team .client-text ul li i {
  font-size: 14px;
  color: #9EB962;
}
.client-team .client-text ul li span {
  margin: 0;
  color: #131907;
  font-weight: 600;
  font-size: 16px;
  line-height: 126%;
  letter-spacing: -0.48px;
  color: #374324;
}
@media (max-width: 575px) {
  .client-team .client-text ul li span {
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
4.0 Footer
--------------------------------------------------------------*/
/* Site Footer */
.wpo-site-footer,
.wpo-site-footer-s2 {
  background-color: #1B240F;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
@media (max-width: 991px) {
  .wpo-site-footer,
  .wpo-site-footer-s2 {
    padding: 80px 0;
    padding-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .wpo-site-footer,
  .wpo-site-footer-s2 {
    padding: 60px 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: #9A9F8F;
}
.wpo-site-footer li,
.wpo-site-footer-s2 li {
  color: #9A9F8F;
}
.wpo-site-footer .wpo-upper-footer,
.wpo-site-footer-s2 .wpo-upper-footer {
  padding-left: 190px;
}
@media (max-width: 1600px) {
  .wpo-site-footer .wpo-upper-footer,
  .wpo-site-footer-s2 .wpo-upper-footer {
    padding-left: 60px;
  }
}
@media (max-width: 1399px) {
  .wpo-site-footer .wpo-upper-footer,
  .wpo-site-footer-s2 .wpo-upper-footer {
    padding-left: 0;
  }
}
.wpo-site-footer .widget-title,
.wpo-site-footer-s2 .widget-title {
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .wpo-site-footer .widget-title,
  .wpo-site-footer-s2 .widget-title {
    margin-bottom: 10px;
  }
}
.wpo-site-footer .widget-title h3,
.wpo-site-footer-s2 .widget-title h3 {
  margin: 0;
  color: #F5F8ED;
  font-weight: 500;
  font-size: 18px;
  line-height: 110%;
}
.wpo-site-footer .footer-left-content,
.wpo-site-footer-s2 .footer-left-content {
  position: relative;
}
.wpo-site-footer .footer-left-content::after,
.wpo-site-footer-s2 .footer-left-content::after {
  position: absolute;
  content: "";
  top: -118px;
  left: 440px;
  width: 1px;
  height: 903px;
  background-color: rgba(55, 67, 36, 0.5);
  z-index: -1;
}
@media (max-width: 1600px) {
  .wpo-site-footer .footer-left-content::after,
  .wpo-site-footer-s2 .footer-left-content::after {
    left: 350px;
  }
}
@media (max-width: 1199px) {
  .wpo-site-footer .footer-left-content::after,
  .wpo-site-footer-s2 .footer-left-content::after {
    left: 265px;
  }
}
@media (max-width: 991px) {
  .wpo-site-footer .footer-left-content::after,
  .wpo-site-footer-s2 .footer-left-content::after {
    display: none;
  }
}
.wpo-site-footer .footer-left-content .footer-top-item,
.wpo-site-footer-s2 .footer-left-content .footer-top-item {
  display: flex;
  width: 100%;
  margin-bottom: 70px;
}
@media (max-width: 991px) {
  .wpo-site-footer .footer-left-content .footer-top-item,
  .wpo-site-footer-s2 .footer-left-content .footer-top-item {
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  .wpo-site-footer .footer-left-content .footer-top-item,
  .wpo-site-footer-s2 .footer-left-content .footer-top-item {
    flex-direction: column;
  }
}
.wpo-site-footer .footer-left-content .footer-top-item .content,
.wpo-site-footer-s2 .footer-left-content .footer-top-item .content {
  max-width: 329px;
}
@media (max-width: 1199px) {
  .wpo-site-footer .footer-left-content .footer-top-item .content,
  .wpo-site-footer-s2 .footer-left-content .footer-top-item .content {
    max-width: 270px;
  }
}
@media (max-width: 991px) {
  .wpo-site-footer .footer-left-content .footer-top-item .content,
  .wpo-site-footer-s2 .footer-left-content .footer-top-item .content {
    margin-bottom: 50px;
  }
}
.wpo-site-footer .footer-left-content .footer-top-item .content h2,
.wpo-site-footer-s2 .footer-left-content .footer-top-item .content h2 {
  margin: 0;
  color: #F5F8ED;
  font-weight: 600;
  font-size: 64px;
  line-height: 94%;
  letter-spacing: -0.64px;
  padding-bottom: 40px;
}
@media (max-width: 1399px) {
  .wpo-site-footer .footer-left-content .footer-top-item .content h2,
  .wpo-site-footer-s2 .footer-left-content .footer-top-item .content h2 {
    font-size: 50px;
  }
}
@media (max-width: 1199px) {
  .wpo-site-footer .footer-left-content .footer-top-item .content h2,
  .wpo-site-footer-s2 .footer-left-content .footer-top-item .content h2 {
    font-size: 40px;
  }
}
@media (max-width: 991px) {
  .wpo-site-footer .footer-left-content .footer-top-item .content h2,
  .wpo-site-footer-s2 .footer-left-content .footer-top-item .content h2 {
    font-size: 35px;
    padding-bottom: 20px;
  }
}
@media (max-width: 575px) {
  .wpo-site-footer .footer-left-content .footer-top-item .content h2,
  .wpo-site-footer-s2 .footer-left-content .footer-top-item .content h2 {
    font-size: 30px;
  }
}
.wpo-site-footer .footer-left-content .footer-top-item .content p,
.wpo-site-footer-s2 .footer-left-content .footer-top-item .content p {
  margin: 0;
  font-weight: 400;
  font-size: 18px;
  line-height: 145%;
}
.wpo-site-footer .footer-left-content .footer-top-item .newsletter,
.wpo-site-footer-s2 .footer-left-content .footer-top-item .newsletter {
  max-width: 570px;
  width: 100%;
  margin: 0 auto;
  padding-left: 140px;
}
@media (max-width: 1800px) {
  .wpo-site-footer .footer-left-content .footer-top-item .newsletter,
  .wpo-site-footer-s2 .footer-left-content .footer-top-item .newsletter {
    padding-left: 50px;
    max-width: 460px;
  }
}
@media (max-width: 1199px) {
  .wpo-site-footer .footer-left-content .footer-top-item .newsletter,
  .wpo-site-footer-s2 .footer-left-content .footer-top-item .newsletter {
    padding-left: 20px;
  }
}
@media (max-width: 991px) {
  .wpo-site-footer .footer-left-content .footer-top-item .newsletter,
  .wpo-site-footer-s2 .footer-left-content .footer-top-item .newsletter {
    padding-left: 0;
    max-width: 370px;
    margin-right: 0;
  }
}
@media (max-width: 767px) {
  .wpo-site-footer .footer-left-content .footer-top-item .newsletter,
  .wpo-site-footer-s2 .footer-left-content .footer-top-item .newsletter {
    margin-left: 0;
    margin-bottom: 50px;
  }
}
.wpo-site-footer .footer-left-content .footer-top-item .newsletter .form-fild,
.wpo-site-footer-s2 .footer-left-content .footer-top-item .newsletter .form-fild {
  position: relative;
}
.wpo-site-footer .footer-left-content .footer-top-item .newsletter .form-fild .fild,
.wpo-site-footer-s2 .footer-left-content .footer-top-item .newsletter .form-fild .fild {
  position: relative;
  border-radius: 12px;
  background: transparent;
  padding: 25px 25px;
  width: 100%;
  color: #ACACAC;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.06);
  font-weight: 400;
  font-size: 15px;
  line-height: 136%;
  transition: all 0.3s ease-in-out;
}
.wpo-site-footer .footer-left-content .footer-top-item .newsletter .form-fild .fild:focus-visible,
.wpo-site-footer-s2 .footer-left-content .footer-top-item .newsletter .form-fild .fild:focus-visible {
  outline: -webkit-focus-ring-color auto transparent;
  outline: 0;
}
.wpo-site-footer .footer-left-content .footer-top-item .newsletter .form-fild .fild::-webkit-input-placeholder,
.wpo-site-footer-s2 .footer-left-content .footer-top-item .newsletter .form-fild .fild::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.8);
}
.wpo-site-footer .footer-left-content .footer-top-item .newsletter .form-fild .fild::-moz-placeholder,
.wpo-site-footer-s2 .footer-left-content .footer-top-item .newsletter .form-fild .fild::-moz-placeholder {
  color: rgba(255, 255, 255, 0.8);
}
.wpo-site-footer .footer-left-content .footer-top-item .newsletter .form-fild .fild:-ms-input-placeholder,
.wpo-site-footer-s2 .footer-left-content .footer-top-item .newsletter .form-fild .fild:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.8);
}
.wpo-site-footer .footer-left-content .footer-top-item .newsletter .form-fild .fild:-moz-placeholder,
.wpo-site-footer-s2 .footer-left-content .footer-top-item .newsletter .form-fild .fild:-moz-placeholder {
  color: #374324;
}
.wpo-site-footer .footer-left-content .footer-top-item .newsletter .form-fild button,
.wpo-site-footer-s2 .footer-left-content .footer-top-item .newsletter .form-fild button {
  position: absolute;
  right: 6px;
  top: 6px;
  text-align: center;
  color: #fff;
  display: block;
  border: 1px solid transparent;
  border-radius: 8px;
  transition: all 0.3s ease-in-out;
  width: 60px;
  height: 61px;
  background: #556B2F;
}
.wpo-site-footer .footer-left-content .footer-middle span,
.wpo-site-footer-s2 .footer-left-content .footer-middle span {
  font-weight: 700;
  font-size: 166px;
  line-height: 87%;
  letter-spacing: -0.64px;
  color: rgba(255, 255, 255, 0.06);
}
@media (max-width: 1600px) {
  .wpo-site-footer .footer-left-content .footer-middle span,
  .wpo-site-footer-s2 .footer-left-content .footer-middle span {
    font-size: 140px;
  }
}
@media (max-width: 1399px) {
  .wpo-site-footer .footer-left-content .footer-middle span,
  .wpo-site-footer-s2 .footer-left-content .footer-middle span {
    font-size: 120px;
  }
}
@media (max-width: 1199px) {
  .wpo-site-footer .footer-left-content .footer-middle span,
  .wpo-site-footer-s2 .footer-left-content .footer-middle span {
    font-size: 90px;
  }
}
@media (max-width: 991px) {
  .wpo-site-footer .footer-left-content .footer-middle span,
  .wpo-site-footer-s2 .footer-left-content .footer-middle span {
    font-size: 75px;
  }
}
@media (max-width: 767px) {
  .wpo-site-footer .footer-left-content .footer-middle span,
  .wpo-site-footer-s2 .footer-left-content .footer-middle span {
    font-size: 60px;
  }
}
@media (max-width: 575px) {
  .wpo-site-footer .footer-left-content .footer-middle span,
  .wpo-site-footer-s2 .footer-left-content .footer-middle span {
    font-size: 50px;
  }
}
@media (max-width: 425px) {
  .wpo-site-footer .footer-left-content .footer-middle span,
  .wpo-site-footer-s2 .footer-left-content .footer-middle span {
    font-size: 40px;
  }
}
.wpo-site-footer .col,
.wpo-site-footer-s2 .col {
  min-height: 100%;
}
.wpo-site-footer .footer-info,
.wpo-site-footer-s2 .footer-info {
  position: relative;
}
.wpo-site-footer .footer-info::after,
.wpo-site-footer-s2 .footer-info::after {
  position: absolute;
  content: "";
  top: -118px;
  left: 0;
  width: 1px;
  height: 903px;
  background-color: rgba(55, 67, 36, 0.5);
  z-index: -1;
}
@media (max-width: 991px) {
  .wpo-site-footer .footer-info::after,
  .wpo-site-footer-s2 .footer-info::after {
    display: none;
  }
}
.wpo-site-footer .footer-info .footer-item,
.wpo-site-footer-s2 .footer-info .footer-item {
  padding-left: 90px;
}
@media (max-width: 1600px) {
  .wpo-site-footer .footer-info .footer-item,
  .wpo-site-footer-s2 .footer-info .footer-item {
    padding-left: 30px;
  }
}
@media (max-width: 991px) {
  .wpo-site-footer .footer-info .footer-item,
  .wpo-site-footer-s2 .footer-info .footer-item {
    padding-left: 0;
    padding-top: 50px;
  }
}
.wpo-site-footer .footer-info .footer-item .footer-contact,
.wpo-site-footer-s2 .footer-info .footer-item .footer-contact {
  position: relative;
  z-index: 1;
  padding: 30px 0;
  margin-top: 30px;
  margin-bottom: 60px;
}
@media (max-width: 1399px) {
  .wpo-site-footer .footer-info .footer-item .footer-contact,
  .wpo-site-footer-s2 .footer-info .footer-item .footer-contact {
    padding: 20px 0;
  }
}
@media (max-width: 991px) {
  .wpo-site-footer .footer-info .footer-item .footer-contact,
  .wpo-site-footer-s2 .footer-info .footer-item .footer-contact {
    width: 100%;
    justify-content: center;
    padding: 0;
    margin-bottom: 50px;
  }
}
.wpo-site-footer .footer-info .footer-item .footer-contact::before,
.wpo-site-footer-s2 .footer-info .footer-item .footer-contact::before {
  position: absolute;
  content: "";
  top: 0;
  right: -100px;
  width: 600px;
  height: 100%;
  background: linear-gradient(290deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0) 100%);
  backdrop-filter: blur(6px);
  z-index: -1;
}
@media (max-width: 1800px) {
  .wpo-site-footer .footer-info .footer-item .footer-contact::before,
  .wpo-site-footer-s2 .footer-info .footer-item .footer-contact::before {
    max-width: 500px;
  }
}
@media (max-width: 991px) {
  .wpo-site-footer .footer-info .footer-item .footer-contact::before,
  .wpo-site-footer-s2 .footer-info .footer-item .footer-contact::before {
    display: none;
  }
}
.wpo-site-footer .footer-info .footer-item .footer-contact .contact-info li,
.wpo-site-footer-s2 .footer-info .footer-item .footer-contact .contact-info li {
  font-weight: 500;
  font-size: 24px;
  line-height: 135%;
  color: #F5F8ED;
  padding-bottom: 5px;
}
@media (max-width: 1399px) {
  .wpo-site-footer .footer-info .footer-item .footer-contact .contact-info li,
  .wpo-site-footer-s2 .footer-info .footer-item .footer-contact .contact-info li {
    font-size: 20px;
  }
}
.wpo-site-footer .footer-info .footer-item .footer-contact .contact-info li:last-child,
.wpo-site-footer-s2 .footer-info .footer-item .footer-contact .contact-info li:last-child {
  padding-bottom: 0;
}
.wpo-site-footer .text-link,
.wpo-site-footer-s2 .text-link {
  border-top: 1px solid rgba(55, 67, 36, 0.5);
  border-bottom: 1px solid rgba(55, 67, 36, 0.5);
}
@media (max-width: 991px) {
  .wpo-site-footer .text-link,
  .wpo-site-footer-s2 .text-link {
    border-bottom: 0;
  }
}
@media (max-width: 575px) {
  .wpo-site-footer .text-link,
  .wpo-site-footer-s2 .text-link {
    border-top: 0;
  }
}
.wpo-site-footer .text-link ul,
.wpo-site-footer-s2 .text-link ul {
  display: flex;
  align-items: center;
  gap: 25px;
  padding-left: 90px;
}
@media (max-width: 1600px) {
  .wpo-site-footer .text-link ul,
  .wpo-site-footer-s2 .text-link ul {
    padding-left: 30px;
  }
}
@media (max-width: 575px) {
  .wpo-site-footer .text-link ul,
  .wpo-site-footer-s2 .text-link ul {
    padding-left: 0;
    flex-direction: column;
    text-align: start;
    align-items: start;
    justify-content: start;
    gap: 15px;
    padding-bottom: 50px;
  }
}
.wpo-site-footer .text-link ul li,
.wpo-site-footer-s2 .text-link ul li {
  padding: 0;
  padding: 30px 0;
  color: #9A9F8F;
  font-weight: 500;
  font-size: 16px;
  line-height: 110%;
}
@media (max-width: 575px) {
  .wpo-site-footer .text-link ul li,
  .wpo-site-footer-s2 .text-link ul li {
    padding: 0;
  }
}
.wpo-site-footer .text-link ul li a,
.wpo-site-footer-s2 .text-link ul li a {
  color: #9A9F8F;
}
.wpo-site-footer .wpo-lower-footer,
.wpo-site-footer-s2 .wpo-lower-footer {
  margin-top: 40px;
  border-top: 1px solid rgba(55, 67, 36, 0.5);
  padding: 35px 0;
  margin-left: 75px;
}
@media (max-width: 1600px) {
  .wpo-site-footer .wpo-lower-footer,
  .wpo-site-footer-s2 .wpo-lower-footer {
    margin-left: 20px;
  }
}
@media (max-width: 1399px) {
  .wpo-site-footer .wpo-lower-footer,
  .wpo-site-footer-s2 .wpo-lower-footer {
    margin-left: 0;
  }
}
@media (max-width: 991px) {
  .wpo-site-footer .wpo-lower-footer,
  .wpo-site-footer-s2 .wpo-lower-footer {
    margin-top: 0;
  }
}
@media (max-width: 575px) {
  .wpo-site-footer .wpo-lower-footer,
  .wpo-site-footer-s2 .wpo-lower-footer {
    padding: 20px 0;
  }
}
.wpo-site-footer .wpo-lower-footer .footer-lower-item,
.wpo-site-footer-s2 .wpo-lower-footer .footer-lower-item {
  padding-left: 120px;
  padding-right: 70px;
}
@media (max-width: 1399px) {
  .wpo-site-footer .wpo-lower-footer .footer-lower-item,
  .wpo-site-footer-s2 .wpo-lower-footer .footer-lower-item {
    padding: 0;
  }
}
.wpo-site-footer .wpo-lower-footer .copyright,
.wpo-site-footer-s2 .wpo-lower-footer .copyright {
  text-align: left;
  display: block;
  margin: 0;
  color: #9A9F8F;
  font-size: 16px;
  font-weight: 500;
}
@media (max-width: 991px) {
  .wpo-site-footer .wpo-lower-footer .copyright,
  .wpo-site-footer-s2 .wpo-lower-footer .copyright {
    text-align: center;
  }
}
.wpo-site-footer .wpo-lower-footer .copyright a,
.wpo-site-footer-s2 .wpo-lower-footer .copyright a {
  color: #9A9F8F;
  transition: all ease-in-out 0.4s;
}
.wpo-site-footer .wpo-lower-footer .copyright a:hover,
.wpo-site-footer-s2 .wpo-lower-footer .copyright a:hover {
  color: #556B2F;
  text-decoration: underline;
}
.wpo-site-footer .social-media,
.wpo-site-footer-s2 .social-media {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 10px;
}
@media (max-width: 991px) {
  .wpo-site-footer .social-media,
  .wpo-site-footer-s2 .social-media {
    justify-content: center;
    margin-top: 20px;
  }
}
.wpo-site-footer .social-media li a,
.wpo-site-footer-s2 .social-media li a {
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  font-size: 15px;
  color: #F5F8ED;
  transition: all ease 0.4s;
}
.wpo-site-footer .social-media li a:hover,
.wpo-site-footer-s2 .social-media li a:hover {
  background: #556B2F;
  border-color: #556B2F;
}
.wpo-site-footer .shape,
.wpo-site-footer-s2 .shape {
  position: absolute;
  right: 620px;
  top: 380px;
}
@media (max-width: 991px) {
  .wpo-site-footer .shape,
  .wpo-site-footer-s2 .shape {
    display: none;
  }
}
.wpo-site-footer .shape img,
.wpo-site-footer-s2 .shape img {
  animation: circle 5s linear infinite;
}

.wpo-site-footer-s2 .footer-top-item {
  justify-content: space-between;
}
.wpo-site-footer-s2 .social-item {
  padding-right: 150px;
}
@media (max-width: 767px) {
  .wpo-site-footer-s2 .social-item {
    padding: 0;
    margin-bottom: 50px;
  }
}
.wpo-site-footer-s2 .social-item .social-media {
  gap: 20px;
}
@media (max-width: 767px) {
  .wpo-site-footer-s2 .social-item .social-media {
    justify-content: start;
  }
}
.wpo-site-footer-s2 .social-item .social-media li a {
  width: auto;
  height: auto;
  border: 0;
  color: #9A9F8F;
}
.wpo-site-footer-s2 .social-item .social-media li a:hover {
  background-color: transparent;
}
.wpo-site-footer-s2 .footer-lower-item .text-link {
  border: 0;
}
.wpo-site-footer-s2 .footer-lower-item .text-link ul {
  justify-content: end;
  padding: 0;
  padding-right: 60px;
}
@media (max-width: 1600px) {
  .wpo-site-footer-s2 .footer-lower-item .text-link ul {
    padding-right: 30px;
  }
}
@media (max-width: 991px) {
  .wpo-site-footer-s2 .footer-lower-item .text-link ul {
    padding-right: 0;
    justify-content: center;
    align-items: center;
    gap: 6px;
  }
}
.wpo-site-footer-s2 .footer-lower-item .text-link ul li {
  padding: 0;
}
.wpo-site-footer-s2 .footer-lower-item .text-link ul li:first-child {
  color: #9EB962;
}
.wpo-site-footer-s2 .shape {
  right: 1050px;
  top: 120px;
}

.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 .about-left-side .wpo-section-title-s2,
.wpo-about-section-s2 .about-left-side .wpo-section-title-s2,
.wpo-about-section-s3 .about-left-side .wpo-section-title-s2 {
  margin-bottom: 90px;
}
@media (max-width: 1199px) {
  .wpo-about-section .about-left-side .wpo-section-title-s2,
  .wpo-about-section-s2 .about-left-side .wpo-section-title-s2,
  .wpo-about-section-s3 .about-left-side .wpo-section-title-s2 {
    margin-bottom: 35px;
  }
}
.wpo-about-section .about-left-side .wpo-section-title-s2 p,
.wpo-about-section-s2 .about-left-side .wpo-section-title-s2 p,
.wpo-about-section-s3 .about-left-side .wpo-section-title-s2 p {
  max-width: 450px;
}
@media (max-width: 991px) {
  .wpo-about-section .about-left-side .wpo-section-title-s2 p,
  .wpo-about-section-s2 .about-left-side .wpo-section-title-s2 p,
  .wpo-about-section-s3 .about-left-side .wpo-section-title-s2 p {
    margin: 0 auto;
  }
}
.wpo-about-section .about-image,
.wpo-about-section-s2 .about-image,
.wpo-about-section-s3 .about-image {
  position: relative;
}
@media (max-width: 991px) {
  .wpo-about-section .about-image img,
  .wpo-about-section-s2 .about-image img,
  .wpo-about-section-s3 .about-image img {
    width: 100%;
  }
}
.wpo-about-section .about-image .hero-circle,
.wpo-about-section-s2 .about-image .hero-circle,
.wpo-about-section-s3 .about-image .hero-circle {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.wpo-about-section .about-image .hero-circle .circle-content,
.wpo-about-section-s2 .about-image .hero-circle .circle-content,
.wpo-about-section-s3 .about-image .hero-circle .circle-content {
  width: 135px;
  height: 135px;
  position: relative;
  border-radius: 100%;
  font-weight: 400;
  font-size: 7px;
  line-height: 100%;
  text-transform: uppercase;
  letter-spacing: 4.64px;
  color: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(20px);
}
@media (max-width: 575px) {
  .wpo-about-section .about-image .hero-circle .circle-content,
  .wpo-about-section-s2 .about-image .hero-circle .circle-content,
  .wpo-about-section-s3 .about-image .hero-circle .circle-content {
    width: 125px;
    height: 125px;
  }
}
.wpo-about-section .about-image .hero-circle .circle-content .rotate-anm,
.wpo-about-section-s2 .about-image .hero-circle .circle-content .rotate-anm,
.wpo-about-section-s3 .about-image .hero-circle .circle-content .rotate-anm {
  animation: roted 30s linear infinite;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.wpo-about-section .about-image .hero-circle .circle-content svg textPath,
.wpo-about-section-s2 .about-image .hero-circle .circle-content svg textPath,
.wpo-about-section-s3 .about-image .hero-circle .circle-content svg textPath {
  fill: rgba(255, 255, 255, 0.61);
}
.wpo-about-section .about-image .hero-circle .circle-content .arrows,
.wpo-about-section-s2 .about-image .hero-circle .circle-content .arrows,
.wpo-about-section-s3 .about-image .hero-circle .circle-content .arrows {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  stroke-width: 0.818px;
  width: 85px;
  height: 85px;
  line-height: 85px;
  border-radius: 50%;
  text-align: center;
  background: rgba(255, 255, 255, 0.83);
  backdrop-filter: blur(1px);
  color: #131907;
  font-size: 16px;
}
@media (max-width: 575px) {
  .wpo-about-section .about-image .hero-circle .circle-content .arrows,
  .wpo-about-section-s2 .about-image .hero-circle .circle-content .arrows,
  .wpo-about-section-s3 .about-image .hero-circle .circle-content .arrows {
    width: 70px;
    height: 70px;
    line-height: 70px;
  }
}
.wpo-about-section .about-image .hero-circle .circle-content .arrows a,
.wpo-about-section-s2 .about-image .hero-circle .circle-content .arrows a,
.wpo-about-section-s3 .about-image .hero-circle .circle-content .arrows a {
  color: #131907;
}
.wpo-about-section .wpo-fun-fact-grids,
.wpo-about-section-s2 .wpo-fun-fact-grids,
.wpo-about-section-s3 .wpo-fun-fact-grids {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 80px;
  position: relative;
  z-index: 1;
  padding: 35px 0;
  margin-right: -280px;
  background: linear-gradient(90deg, #F5F8ED 0%, rgba(255, 255, 255, 0.85) 100%);
  backdrop-filter: blur(6px);
}
@media (max-width: 1399px) {
  .wpo-about-section .wpo-fun-fact-grids,
  .wpo-about-section-s2 .wpo-fun-fact-grids,
  .wpo-about-section-s3 .wpo-fun-fact-grids {
    padding: 25px 0;
    gap: 60px;
  }
}
@media (max-width: 1199px) {
  .wpo-about-section .wpo-fun-fact-grids,
  .wpo-about-section-s2 .wpo-fun-fact-grids,
  .wpo-about-section-s3 .wpo-fun-fact-grids {
    gap: 40px;
  }
}
@media (max-width: 767px) {
  .wpo-about-section .wpo-fun-fact-grids,
  .wpo-about-section-s2 .wpo-fun-fact-grids,
  .wpo-about-section-s3 .wpo-fun-fact-grids {
    flex-wrap: wrap;
  }
}
@media (max-width: 575px) {
  .wpo-about-section .wpo-fun-fact-grids,
  .wpo-about-section-s2 .wpo-fun-fact-grids,
  .wpo-about-section-s3 .wpo-fun-fact-grids {
    gap: 0;
    padding-bottom: 0;
  }
}
@media (max-width: 991px) {
  .wpo-about-section .wpo-fun-fact-grids,
  .wpo-about-section-s2 .wpo-fun-fact-grids,
  .wpo-about-section-s3 .wpo-fun-fact-grids {
    width: 100%;
    justify-content: center;
    margin-right: 0;
    margin-bottom: 30px;
  }
}
@media (max-width: 575px) {
  .wpo-about-section .wpo-fun-fact-grids .grid,
  .wpo-about-section-s2 .wpo-fun-fact-grids .grid,
  .wpo-about-section-s3 .wpo-fun-fact-grids .grid {
    width: 46%;
  }
}
@media (max-width: 575px) {
  .wpo-about-section .wpo-fun-fact-grids .grid,
  .wpo-about-section-s2 .wpo-fun-fact-grids .grid,
  .wpo-about-section-s3 .wpo-fun-fact-grids .grid {
    width: 44%;
    padding-bottom: 25px;
  }
}
@media (max-width: 425px) {
  .wpo-about-section .wpo-fun-fact-grids .grid,
  .wpo-about-section-s2 .wpo-fun-fact-grids .grid,
  .wpo-about-section-s3 .wpo-fun-fact-grids .grid {
    width: 100%;
  }
}
.wpo-about-section .wpo-fun-fact-grids .grid h3,
.wpo-about-section-s2 .wpo-fun-fact-grids .grid h3,
.wpo-about-section-s3 .wpo-fun-fact-grids .grid h3 {
  margin: 0;
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: 72px;
  line-height: 87%;
  letter-spacing: -0.64px;
  text-transform: uppercase;
}
@media (max-width: 1399px) {
  .wpo-about-section .wpo-fun-fact-grids .grid h3,
  .wpo-about-section-s2 .wpo-fun-fact-grids .grid h3,
  .wpo-about-section-s3 .wpo-fun-fact-grids .grid h3 {
    font-size: 60px;
  }
}
@media (max-width: 1199px) {
  .wpo-about-section .wpo-fun-fact-grids .grid h3,
  .wpo-about-section-s2 .wpo-fun-fact-grids .grid h3,
  .wpo-about-section-s3 .wpo-fun-fact-grids .grid h3 {
    font-size: 50px;
  }
}
@media (max-width: 991px) {
  .wpo-about-section .wpo-fun-fact-grids .grid h3,
  .wpo-about-section-s2 .wpo-fun-fact-grids .grid h3,
  .wpo-about-section-s3 .wpo-fun-fact-grids .grid h3 {
    justify-content: center;
  }
}
@media (max-width: 575px) {
  .wpo-about-section .wpo-fun-fact-grids .grid h3,
  .wpo-about-section-s2 .wpo-fun-fact-grids .grid h3,
  .wpo-about-section-s3 .wpo-fun-fact-grids .grid h3 {
    font-size: 40px;
  }
}
.wpo-about-section .wpo-fun-fact-grids .grid h3 span,
.wpo-about-section-s2 .wpo-fun-fact-grids .grid h3 span,
.wpo-about-section-s3 .wpo-fun-fact-grids .grid h3 span {
  font-family: "Inter Display";
}
.wpo-about-section .wpo-fun-fact-grids .grid p,
.wpo-about-section-s2 .wpo-fun-fact-grids .grid p,
.wpo-about-section-s3 .wpo-fun-fact-grids .grid p {
  margin: 0;
  color: #374324;
  font-weight: 500;
  font-size: 18px;
  line-height: 145%;
}
@media (max-width: 991px) {
  .wpo-about-section .wpo-fun-fact-grids .grid p,
  .wpo-about-section-s2 .wpo-fun-fact-grids .grid p,
  .wpo-about-section-s3 .wpo-fun-fact-grids .grid p {
    font-size: 16px;
    text-align: center;
  }
}
@media (max-width: 575px) {
  .wpo-about-section .wpo-fun-fact-grids .grid p,
  .wpo-about-section-s2 .wpo-fun-fact-grids .grid p,
  .wpo-about-section-s3 .wpo-fun-fact-grids .grid p {
    font-size: 14px;
  }
}

/* 3.3 Service Section */
.wpo-service-section,
.wpo-service-section-s2 {
  background-color: #fff;
  position: relative;
}
.wpo-service-section .wpo-service-wrap,
.wpo-service-section-s2 .wpo-service-wrap {
  max-width: 1220px;
  margin: 0 auto;
}
.wpo-service-section .service-all-content,
.wpo-service-section-s2 .service-all-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .wpo-service-section .service-all-content,
  .wpo-service-section-s2 .service-all-content {
    flex-wrap: wrap;
  }
}
.wpo-service-section .service-all-content .service-item,
.wpo-service-section-s2 .service-all-content .service-item {
  padding-left: 40px;
  border-right: 1px dashed #D5E2B4;
  padding: 50px 0 50px 40px;
  padding: 50px 40px;
  transition: all ease-in-out 0.3s;
}
@media (max-width: 1354px) {
  .wpo-service-section .service-all-content .service-item,
  .wpo-service-section-s2 .service-all-content .service-item {
    padding: 35px 25px;
  }
}
@media (max-width: 991px) {
  .wpo-service-section .service-all-content .service-item,
  .wpo-service-section-s2 .service-all-content .service-item {
    width: 50%;
  }
}
@media (max-width: 575px) {
  .wpo-service-section .service-all-content .service-item,
  .wpo-service-section-s2 .service-all-content .service-item {
    padding: 20px 15px;
  }
}
@media (max-width: 425px) {
  .wpo-service-section .service-all-content .service-item,
  .wpo-service-section-s2 .service-all-content .service-item {
    width: 100%;
    border: 0;
  }
}
.wpo-service-section .service-all-content .service-item .icon img,
.wpo-service-section-s2 .service-all-content .service-item .icon img {
  transition: all 0.5s ease-in-out;
}
.wpo-service-section .service-all-content .service-item .service-content,
.wpo-service-section-s2 .service-all-content .service-item .service-content {
  padding-top: 65px;
}
@media (max-width: 575px) {
  .wpo-service-section .service-all-content .service-item .service-content,
  .wpo-service-section-s2 .service-all-content .service-item .service-content {
    padding-top: 40px;
  }
}
.wpo-service-section .service-all-content .service-item .service-content span,
.wpo-service-section-s2 .service-all-content .service-item .service-content span {
  margin: 0;
  font-weight: 600;
  font-size: 32px;
  line-height: 122%;
  letter-spacing: -0.64px;
  max-width: 175px;
  display: block;
}
@media (max-width: 1355px) {
  .wpo-service-section .service-all-content .service-item .service-content span,
  .wpo-service-section-s2 .service-all-content .service-item .service-content span {
    font-size: 28px;
  }
}
@media (max-width: 575px) {
  .wpo-service-section .service-all-content .service-item .service-content span,
  .wpo-service-section-s2 .service-all-content .service-item .service-content span {
    font-size: 23px;
    max-width: 140px;
  }
}
@media (max-width: 575px) {
  .wpo-service-section .service-all-content .service-item .service-content span,
  .wpo-service-section-s2 .service-all-content .service-item .service-content span {
    max-width: unset;
  }
}
.wpo-service-section .service-all-content .service-item .service-content span a,
.wpo-service-section-s2 .service-all-content .service-item .service-content span a {
  color: #1B240F;
  transition: all ease-in-out 0.3s;
}
.wpo-service-section .service-all-content .service-item .service-content span a:hover,
.wpo-service-section-s2 .service-all-content .service-item .service-content span a:hover {
  color: #556B2F;
}
.wpo-service-section .service-all-content .service-item .service-content p,
.wpo-service-section-s2 .service-all-content .service-item .service-content p {
  margin: 0;
  font-weight: 400;
  font-size: 18px;
  line-height: 145%;
  color: #374324;
  padding-top: 24px;
}
@media (max-width: 1355px) {
  .wpo-service-section .service-all-content .service-item .service-content p,
  .wpo-service-section-s2 .service-all-content .service-item .service-content p {
    font-size: 17px;
  }
}
@media (max-width: 575px) {
  .wpo-service-section .service-all-content .service-item .service-content p,
  .wpo-service-section-s2 .service-all-content .service-item .service-content p {
    font-size: 15px;
    padding-top: 15px;
  }
}
.wpo-service-section .service-all-content .service-item:hover, .wpo-service-section .service-all-content .service-item.active,
.wpo-service-section-s2 .service-all-content .service-item:hover,
.wpo-service-section-s2 .service-all-content .service-item.active {
  background-color: #E9F0D7;
}
.wpo-service-section .service-all-content .service-item:hover .icon img, .wpo-service-section .service-all-content .service-item.active .icon img,
.wpo-service-section-s2 .service-all-content .service-item:hover .icon img,
.wpo-service-section-s2 .service-all-content .service-item.active .icon img {
  transform: rotateY(360deg);
}
.wpo-service-section .service-btn,
.wpo-service-section-s2 .service-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}
@media (max-width: 425px) {
  .wpo-service-section .service-btn,
  .wpo-service-section-s2 .service-btn {
    flex-direction: column;
    gap: 10px;
  }
}
.wpo-service-section .service-btn .theme-btn:first-child,
.wpo-service-section-s2 .service-btn .theme-btn:first-child {
  background-color: transparent;
  color: #1B240F;
  padding-right: 50px;
}
.wpo-service-section .service-btn .theme-btn:first-child::before,
.wpo-service-section-s2 .service-btn .theme-btn:first-child::before {
  width: 0;
  height: 0;
  background-color: transparent;
  color: #1B240F;
  right: 30px;
}
.wpo-service-section .service-btn .theme-btn:first-child:hover,
.wpo-service-section-s2 .service-btn .theme-btn:first-child:hover {
  color: #fff;
}
.wpo-service-section .service-btn .theme-btn:first-child:hover::before,
.wpo-service-section-s2 .service-btn .theme-btn:first-child:hover::before {
  color: #fff;
}
.wpo-service-section .col:last-child .service-item,
.wpo-service-section-s2 .col:last-child .service-item {
  border-right: 0;
}
@media (max-width: 991px) {
  .wpo-service-section .col:last-child .service-item,
  .wpo-service-section-s2 .col:last-child .service-item {
    border-right: 1px dashed #D5E2B4;
  }
}
.wpo-service-section .shape,
.wpo-service-section-s2 .shape {
  position: absolute;
  right: 50px;
  top: 130px;
}
@media (max-width: 991px) {
  .wpo-service-section .shape,
  .wpo-service-section-s2 .shape {
    display: none;
  }
}
.wpo-service-section .shape img,
.wpo-service-section-s2 .shape img {
  animation: circle 5s linear infinite;
}

/* 3.4 Portfolio Section */
.wpo-portfolio-section {
  position: relative;
  margin-left: 75px;
}
@media (max-width: 1700px) {
  .wpo-portfolio-section {
    margin-left: 30px;
  }
}
@media (max-width: 1399px) {
  .wpo-portfolio-section {
    margin-left: 0;
  }
}
.wpo-portfolio-section .wpo-portfolio-inner {
  position: relative;
}
.wpo-portfolio-section .portfolio-img-group {
  min-height: 740px;
}
@media (max-width: 991px) {
  .wpo-portfolio-section .portfolio-img-group {
    display: none;
    min-height: 100%;
  }
}
.wpo-portfolio-section .portfolio-img-group .image-bg {
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: 1;
  transition: opacity 0.8s ease;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("../images/portfolio/img-1.jpg");
}
.wpo-portfolio-section .portfolio-img-group .image-bg:nth-child(2) {
  background-image: url("../images/portfolio/img-2.jpg");
}
.wpo-portfolio-section .portfolio-img-group .image-bg:nth-child(3) {
  background-image: url("../images/portfolio/img-3.jpg");
}
.wpo-portfolio-section .portfolio-img-group .image-bg:nth-child(4) {
  background-image: url("../images/portfolio/img-4.jpg");
}
.wpo-portfolio-section .portfolio-img-group .image-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 62.21%, #000 91.61%);
}
.wpo-portfolio-section .portfolio-img-group .image-bg.active {
  opacity: 1;
  z-index: 2;
}
.wpo-portfolio-section .wpo-portfolio-wrap {
  position: absolute;
  inset: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 991px) {
  .wpo-portfolio-section .wpo-portfolio-wrap {
    position: static;
    display: flex;
    flex-direction: column;
  }
}
.wpo-portfolio-section .wpo-portfolio-wrap .portfolio-item {
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 100px 40px 90px;
  transition: 0.5s ease;
}
@media (max-width: 1699px) {
  .wpo-portfolio-section .wpo-portfolio-wrap .portfolio-item {
    padding: 100px 20px 50px;
  }
}
@media (max-width: 1199px) {
  .wpo-portfolio-section .wpo-portfolio-wrap .portfolio-item {
    padding: 100px 10px 50px 20px;
  }
}
@media (max-width: 991px) {
  .wpo-portfolio-section .wpo-portfolio-wrap .portfolio-item {
    padding: 100px 10px 25px 20px;
  }
}
@media (max-width: 991px) {
  .wpo-portfolio-section .wpo-portfolio-wrap .portfolio-item {
    width: 100%;
    overflow: hidden;
  }
}
.wpo-portfolio-section .wpo-portfolio-wrap .portfolio-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background: rgba(255, 255, 255, 0.21);
}
@media (max-width: 991px) {
  .wpo-portfolio-section .wpo-portfolio-wrap .portfolio-item:not(:last-child)::after {
    display: none;
  }
}
.wpo-portfolio-section .wpo-portfolio-wrap .portfolio-item .responsive-bg-img {
  display: none;
}
@media (max-width: 991px) {
  .wpo-portfolio-section .wpo-portfolio-wrap .portfolio-item .responsive-bg-img {
    display: block;
    position: absolute;
    inset: 0;
    z-index: 1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  .wpo-portfolio-section .wpo-portfolio-wrap .portfolio-item .responsive-bg-img::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 30.21%, #000 100.61%);
  }
}
.wpo-portfolio-section .wpo-portfolio-wrap .portfolio-item .card-content {
  position: relative;
  z-index: 2;
}
.wpo-portfolio-section .wpo-portfolio-wrap .portfolio-item .card-content .catgory-and-title {
  transform: translateY(130px);
  transition: 0.5s;
}
@media (max-width: 1699px) {
  .wpo-portfolio-section .wpo-portfolio-wrap .portfolio-item .card-content .catgory-and-title {
    transform: translateY(80px);
  }
}
.wpo-portfolio-section .wpo-portfolio-wrap .portfolio-item .card-content .catgory-and-title small {
  display: inline-block;
  margin-bottom: 30px;
  padding: 6px 16px;
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(5px);
  color: #F5F8ED;
  font-size: 14px;
  font-weight: 500;
}
@media (max-width: 1199px) {
  .wpo-portfolio-section .wpo-portfolio-wrap .portfolio-item .card-content .catgory-and-title small {
    margin-bottom: 20px;
    padding: 4px 10px;
  }
}
.wpo-portfolio-section .wpo-portfolio-wrap .portfolio-item .card-content .catgory-and-title a {
  display: block;
  color: #F5F8ED;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.37;
  letter-spacing: -0.64px;
}
@media (max-width: 1699px) {
  .wpo-portfolio-section .wpo-portfolio-wrap .portfolio-item .card-content .catgory-and-title a {
    font-size: 26px;
  }
}
@media (max-width: 1399px) {
  .wpo-portfolio-section .wpo-portfolio-wrap .portfolio-item .card-content .catgory-and-title a {
    font-size: 22px;
  }
}
@media (max-width: 1199px) {
  .wpo-portfolio-section .wpo-portfolio-wrap .portfolio-item .card-content .catgory-and-title a {
    font-size: 19px;
  }
}
.wpo-portfolio-section .wpo-portfolio-wrap .portfolio-item .card-content .portfolio-text {
  opacity: 0;
  transform: translateY(25px);
  transition: 0.5s;
}
.wpo-portfolio-section .wpo-portfolio-wrap .portfolio-item .card-content .portfolio-text p {
  margin: 5px 0 0;
  color: rgba(245, 248, 237, 0.78);
  font-size: 16px;
  line-height: 26px;
}
@media (max-width: 1199px) {
  .wpo-portfolio-section .wpo-portfolio-wrap .portfolio-item .card-content .portfolio-text p {
    font-size: 15px;
  }
}
.wpo-portfolio-section .wpo-portfolio-wrap .portfolio-item .card-content .portfolio-text .more-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 35px;
  color: #9EB962;
  font-size: 16px;
  font-weight: 600;
  transition: 0.3s;
}
@media (max-width: 1199px) {
  .wpo-portfolio-section .wpo-portfolio-wrap .portfolio-item .card-content .portfolio-text .more-link {
    margin-top: 20px;
    font-size: 15px;
  }
}
.wpo-portfolio-section .wpo-portfolio-wrap .portfolio-item .card-content .portfolio-text .more-link i {
  font-size: 16px;
  font-weight: 700;
}
.wpo-portfolio-section .wpo-portfolio-wrap .portfolio-item:hover .catgory-and-title, .wpo-portfolio-section .wpo-portfolio-wrap .portfolio-item.active .catgory-and-title {
  transform: translateY(0);
}
.wpo-portfolio-section .wpo-portfolio-wrap .portfolio-item:hover .portfolio-text, .wpo-portfolio-section .wpo-portfolio-wrap .portfolio-item.active .portfolio-text {
  opacity: 1;
  transform: translateY(0);
}

/* 3.5 Testimonial Section */
.wpo-testimonial-section {
  position: relative;
}
.wpo-testimonial-section .hidden {
  display: none;
}
.wpo-testimonial-section .testimonial-silde {
  position: relative;
}
.wpo-testimonial-section .testimonial-silde .owl-nav {
  margin-top: 50px;
}
@media (max-width: 1399px) {
  .wpo-testimonial-section .testimonial-silde .owl-nav {
    bottom: -45px;
  }
}
@media (max-width: 991px) {
  .wpo-testimonial-section .testimonial-silde .owl-nav {
    display: none;
  }
}
.wpo-testimonial-section .testimonial-silde .owl-prev {
  background: transparent;
  border: 0;
}
.wpo-testimonial-section .testimonial-silde .owl-prev::before {
  content: url(../images/left-arrow.svg);
  transition: all 0.3s ease-in-out;
}
.wpo-testimonial-section .testimonial-silde .owl-prev span {
  display: none;
}
.wpo-testimonial-section .testimonial-silde .owl-next {
  background: transparent;
  border: 0;
}
.wpo-testimonial-section .testimonial-silde .owl-next::before {
  content: url(../images/right-arrow.svg);
  transition: all 0.3s ease-in-out;
}
.wpo-testimonial-section .testimonial-silde .owl-next span {
  display: none;
}
.wpo-testimonial-section .testimonial-silde .owl-dots {
  text-align: center;
  margin-top: 25px;
  z-index: 1;
  display: none;
}
@media (max-width: 991px) {
  .wpo-testimonial-section .testimonial-silde .owl-dots {
    display: block;
  }
}
.wpo-testimonial-section .testimonial-silde .owl-dot {
  border: 0;
  width: 10px;
  height: 12px;
  background: #E8E8E8;
  border-radius: 100px;
  margin: 0 5px;
}
.wpo-testimonial-section .testimonial-silde .owl-dot.active {
  background: #556B2F;
}
.wpo-testimonial-section .testimonial-left {
  display: flex;
  gap: 20px;
  position: relative;
}
@media (max-width: 991px) {
  .wpo-testimonial-section .testimonial-left {
    margin-bottom: 40px;
    justify-content: center;
    width: 100%;
  }
}
.wpo-testimonial-section .testimonial-left .testimonial-image:first-child img {
  height: auto;
}
@media (max-width: 991px) {
  .wpo-testimonial-section .testimonial-left .testimonial-image:first-child img {
    height: 100%;
  }
}
@media (max-width: 991px) {
  .wpo-testimonial-section .testimonial-left .testimonial-image {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .wpo-testimonial-section .testimonial-left .testimonial-image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.wpo-testimonial-section .testimonial-left .testimonial-shape {
  position: absolute;
  top: 60px;
  left: 43%;
  transform: translateX(-50%);
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  background-color: #fff;
  box-shadow: 0px 16px 15px 0px rgba(0, 0, 0, 0.25);
  border-radius: 50%;
}
@media (max-width: 991px) {
  .wpo-testimonial-section .testimonial-left .testimonial-shape {
    left: 50%;
  }
}
@media (max-width: 575px) {
  .wpo-testimonial-section .testimonial-left .testimonial-shape {
    width: 60px;
    height: 60px;
    line-height: 60px;
  }
}
.wpo-testimonial-section .testimonial-item .testimonial-content {
  background-color: #fff;
  padding: 60px;
}
@media (max-width: 1354px) {
  .wpo-testimonial-section .testimonial-item .testimonial-content {
    padding: 40px;
  }
}
@media (max-width: 575px) {
  .wpo-testimonial-section .testimonial-item .testimonial-content {
    padding: 25px;
  }
}
.wpo-testimonial-section .testimonial-item .testimonial-content p {
  margin: 0;
  color: #131907;
  font-weight: 500;
  font-size: 24px;
  line-height: 139%;
  letter-spacing: -0.48px;
  margin-bottom: 40px;
}
@media (max-width: 1199px) {
  .wpo-testimonial-section .testimonial-item .testimonial-content p {
    font-size: 21px;
    line-height: 130%;
  }
}
@media (max-width: 575px) {
  .wpo-testimonial-section .testimonial-item .testimonial-content p {
    font-size: 18px;
    margin-bottom: 25px;
  }
}
.wpo-testimonial-section .testimonial-item .testimonial-content span {
  margin: 0;
  color: #131907;
  font-weight: 600;
  font-size: 16px;
  line-height: 135%;
  letter-spacing: 0.32px;
  text-transform: uppercase;
}
@media (max-width: 575px) {
  .wpo-testimonial-section .testimonial-item .testimonial-content span {
    font-size: 14px;
  }
}
.wpo-testimonial-section .testimonial-item .testimonial-content small {
  color: #5F5F62;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: -0.48px;
  display: block;
}
@media (max-width: 575px) {
  .wpo-testimonial-section .testimonial-item .testimonial-content small {
    font-size: 14px;
  }
}
.wpo-testimonial-section .shape {
  position: absolute;
  left: 60px;
  top: 120px;
}
@media (max-width: 991px) {
  .wpo-testimonial-section .shape {
    display: none;
  }
}
.wpo-testimonial-section .shape img {
  animation: circle 5s linear infinite;
}

/* 3.6 Cta Section */
.wpo-cta-section {
  background-color: #fff;
}
.wpo-cta-section .wpo-section-title {
  margin-bottom: 70px;
}
@media (max-width: 991px) {
  .wpo-cta-section .wpo-section-title {
    margin-bottom: 40px;
  }
}
.wpo-cta-section .wpo-section-title p {
  max-width: 500px;
  margin: 0 auto;
  padding-top: 30px;
}
@media (max-width: 991px) {
  .wpo-cta-section .wpo-section-title p {
    padding-top: 15px;
  }
}
.wpo-cta-section .wpo-section-title h2 {
  text-transform: inherit;
}

/* 3.7 Team Section */
.wpo-team-section,
.wpo-team-section-s2,
.wpo-team-section-s3 {
  position: relative;
  overflow: hidden;
  background-color: #fff;
}
.wpo-team-section .team-container,
.wpo-team-section-s2 .team-container,
.wpo-team-section-s3 .team-container {
  height: 100%;
  width: -moz-max-content;
  width: max-content;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .wpo-team-section .team-container,
  .wpo-team-section-s2 .team-container,
  .wpo-team-section-s3 .team-container {
    width: 100%;
    justify-content: center;
  }
}
.wpo-team-section .team-container .team-content,
.wpo-team-section-s2 .team-container .team-content,
.wpo-team-section-s3 .team-container .team-content {
  display: flex;
}
@media (max-width: 991px) {
  .wpo-team-section .team-container .team-content,
  .wpo-team-section-s2 .team-container .team-content,
  .wpo-team-section-s3 .team-container .team-content {
    display: block;
  }
}
.wpo-team-section .team-container .team-content .wpo-section-title-s2,
.wpo-team-section-s2 .team-container .team-content .wpo-section-title-s2,
.wpo-team-section-s3 .team-container .team-content .wpo-section-title-s2 {
  max-width: 500px;
}
@media (max-width: 991px) {
  .wpo-team-section .team-container .team-content .wpo-section-title-s2,
  .wpo-team-section-s2 .team-container .team-content .wpo-section-title-s2,
  .wpo-team-section-s3 .team-container .team-content .wpo-section-title-s2 {
    margin: 0 auto;
    margin-bottom: 35px;
  }
}
.wpo-team-section .team-container .team-content .team-right,
.wpo-team-section-s2 .team-container .team-content .team-right,
.wpo-team-section-s3 .team-container .team-content .team-right {
  padding-left: 190px;
}
@media (max-width: 1199px) {
  .wpo-team-section .team-container .team-content .team-right,
  .wpo-team-section-s2 .team-container .team-content .team-right,
  .wpo-team-section-s3 .team-container .team-content .team-right {
    padding-left: 120px;
  }
}
@media (max-width: 991px) {
  .wpo-team-section .team-container .team-content .team-right,
  .wpo-team-section-s2 .team-container .team-content .team-right,
  .wpo-team-section-s3 .team-container .team-content .team-right {
    padding-left: 0;
  }
}
.wpo-team-section .team-item,
.wpo-team-section-s2 .team-item,
.wpo-team-section-s3 .team-item {
  display: flex;
  gap: 5px;
}
@media (max-width: 991px) {
  .wpo-team-section .team-item,
  .wpo-team-section-s2 .team-item,
  .wpo-team-section-s3 .team-item {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
}
@media (max-width: 991px) {
  .wpo-team-section .team-item .team-card,
  .wpo-team-section-s2 .team-item .team-card,
  .wpo-team-section-s3 .team-item .team-card {
    width: 48%;
  }
  .wpo-team-section .team-item .team-card:last-child,
  .wpo-team-section-s2 .team-item .team-card:last-child,
  .wpo-team-section-s3 .team-item .team-card:last-child {
    margin-bottom: 0;
  }
}
@media (max-width: 575px) {
  .wpo-team-section .team-item .team-card,
  .wpo-team-section-s2 .team-item .team-card,
  .wpo-team-section-s3 .team-item .team-card {
    width: 100%;
  }
}
.wpo-team-section .team-item .team-card img,
.wpo-team-section-s2 .team-item .team-card img,
.wpo-team-section-s3 .team-item .team-card img {
  width: 100%;
}
.wpo-team-section .team-item .team-card .team-text,
.wpo-team-section-s2 .team-item .team-card .team-text,
.wpo-team-section-s3 .team-item .team-card .team-text {
  padding-top: 25px;
  padding-left: 30px;
}
@media (max-width: 991px) {
  .wpo-team-section .team-item .team-card .team-text,
  .wpo-team-section-s2 .team-item .team-card .team-text,
  .wpo-team-section-s3 .team-item .team-card .team-text {
    padding-top: 15px;
    padding-left: 15px;
  }
}
@media (max-width: 575px) {
  .wpo-team-section .team-item .team-card .team-text,
  .wpo-team-section-s2 .team-item .team-card .team-text,
  .wpo-team-section-s3 .team-item .team-card .team-text {
    padding-left: 0;
    text-align: center;
  }
}
.wpo-team-section .team-item .team-card .team-text span,
.wpo-team-section-s2 .team-item .team-card .team-text span,
.wpo-team-section-s3 .team-item .team-card .team-text span {
  margin: 0;
  font-weight: 600;
  font-size: 32px;
  line-height: 105%;
  letter-spacing: -0.48px;
  color: #1B240F;
}
@media (max-width: 1199px) {
  .wpo-team-section .team-item .team-card .team-text span,
  .wpo-team-section-s2 .team-item .team-card .team-text span,
  .wpo-team-section-s3 .team-item .team-card .team-text span {
    font-size: 28px;
  }
}
@media (max-width: 767px) {
  .wpo-team-section .team-item .team-card .team-text span,
  .wpo-team-section-s2 .team-item .team-card .team-text span,
  .wpo-team-section-s3 .team-item .team-card .team-text span {
    font-size: 22px;
  }
}
.wpo-team-section .team-item .team-card .team-text span a,
.wpo-team-section-s2 .team-item .team-card .team-text span a,
.wpo-team-section-s3 .team-item .team-card .team-text span a {
  color: #1B240F;
  transition: all ease-in-out 0.4s;
}
.wpo-team-section .team-item .team-card .team-text span a:hover,
.wpo-team-section-s2 .team-item .team-card .team-text span a:hover,
.wpo-team-section-s3 .team-item .team-card .team-text span a:hover {
  color: #556B2F;
}
.wpo-team-section .team-item .team-card .team-text p,
.wpo-team-section-s2 .team-item .team-card .team-text p,
.wpo-team-section-s3 .team-item .team-card .team-text p {
  margin: 0;
  color: #1B240F;
  font-weight: 400;
  font-size: 16px;
  line-height: 135%;
  letter-spacing: -0.48px;
  padding-top: 5px;
}
@media (max-width: 767px) {
  .wpo-team-section .team-item .team-card .team-text p,
  .wpo-team-section-s2 .team-item .team-card .team-text p,
  .wpo-team-section-s3 .team-item .team-card .team-text p {
    font-size: 14px;
  }
}

/* 3.8 Blog Section */
.wpo-blog-section,
.wpo-blog-section-s3 {
  position: relative;
  padding-bottom: 90px;
}
@media (max-width: 991px) {
  .wpo-blog-section,
  .wpo-blog-section-s3 {
    padding-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .wpo-blog-section,
  .wpo-blog-section-s3 {
    padding-bottom: 30px;
  }
}
.wpo-blog-section .wpo-blog-wrap,
.wpo-blog-section-s3 .wpo-blog-wrap {
  display: flex;
  gap: 5px;
}
@media (max-width: 991px) {
  .wpo-blog-section .wpo-blog-wrap,
  .wpo-blog-section-s3 .wpo-blog-wrap {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.wpo-blog-section .blog-card,
.wpo-blog-section-s3 .blog-card {
  display: block;
  padding: 0;
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .wpo-blog-section .blog-card,
  .wpo-blog-section-s3 .blog-card {
    width: 47%;
  }
}
@media (max-width: 767px) {
  .wpo-blog-section .blog-card,
  .wpo-blog-section-s3 .blog-card {
    width: 100%;
  }
}
.wpo-blog-section .blog-card .image,
.wpo-blog-section-s3 .blog-card .image {
  max-width: 100%;
  overflow: hidden;
  position: relative;
}
.wpo-blog-section .blog-card .image img,
.wpo-blog-section-s3 .blog-card .image img {
  width: 100%;
  height: 100%;
  position: relative;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 500ms ease;
}
.wpo-blog-section .blog-card .image img:first-child,
.wpo-blog-section-s3 .blog-card .image img:first-child {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  transform: translateX(50%) scaleX(2);
  opacity: 0;
  filter: blur(10px);
  transition: all 0.4s ease-in-out;
}
.wpo-blog-section .blog-card .blog-content,
.wpo-blog-section-s3 .blog-card .blog-content {
  padding-top: 25px;
}
.wpo-blog-section .blog-card .blog-content ul,
.wpo-blog-section-s3 .blog-card .blog-content ul {
  display: flex;
  gap: 10px;
  padding-bottom: 20px;
}
@media (max-width: 767px) {
  .wpo-blog-section .blog-card .blog-content ul,
  .wpo-blog-section-s3 .blog-card .blog-content ul {
    padding-bottom: 10px;
  }
}
.wpo-blog-section .blog-card .blog-content ul li,
.wpo-blog-section-s3 .blog-card .blog-content ul li {
  letter-spacing: -0.48px;
  color: #787878;
  font-weight: 500;
  font-size: 16px;
  line-height: 124%;
}
.wpo-blog-section .blog-card .blog-content ul li a,
.wpo-blog-section-s3 .blog-card .blog-content ul li a {
  color: #787878;
  transition: all ease-in-out 0.3s;
}
.wpo-blog-section .blog-card .blog-content ul li a:hover,
.wpo-blog-section-s3 .blog-card .blog-content ul li a:hover {
  color: #556B2F;
}
.wpo-blog-section .blog-card .blog-content span,
.wpo-blog-section-s3 .blog-card .blog-content span {
  font-weight: 600;
  font-size: 24px;
  line-height: 120%;
  letter-spacing: -0.64px;
  color: #1B240F;
  display: block;
  max-width: 350px;
}
@media (max-width: 1199px) {
  .wpo-blog-section .blog-card .blog-content span,
  .wpo-blog-section-s3 .blog-card .blog-content span {
    font-size: 21px;
  }
}
@media (max-width: 767px) {
  .wpo-blog-section .blog-card .blog-content span,
  .wpo-blog-section-s3 .blog-card .blog-content span {
    max-width: unset;
  }
}
.wpo-blog-section .blog-card .blog-content span a,
.wpo-blog-section-s3 .blog-card .blog-content span a {
  color: #1B240F;
  transition: all ease-in-out 0.3s;
}
.wpo-blog-section .blog-card .blog-content span a:hover,
.wpo-blog-section-s3 .blog-card .blog-content span a:hover {
  color: #556B2F;
}
.wpo-blog-section .blog-card .blog-content .blog-link,
.wpo-blog-section-s3 .blog-card .blog-content .blog-link {
  padding-top: 25px;
  color: #556B2F;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all ease-in-out 0.3s;
  max-width: 120px;
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
}
@media (max-width: 767px) {
  .wpo-blog-section .blog-card .blog-content .blog-link,
  .wpo-blog-section-s3 .blog-card .blog-content .blog-link {
    padding-top: 15px;
  }
}
.wpo-blog-section .blog-card .blog-content .blog-link i,
.wpo-blog-section-s3 .blog-card .blog-content .blog-link i {
  font-weight: 700;
  font-size: 16px;
}
.wpo-blog-section .blog-card:hover .image img:first-child,
.wpo-blog-section-s3 .blog-card:hover .image img:first-child {
  transform: translateX(0) scaleX(1);
  opacity: 1;
  filter: blur(0);
}
.wpo-blog-section .blog-card:hover .image img:nth-child(2),
.wpo-blog-section-s3 .blog-card:hover .image img:nth-child(2) {
  transform: translateX(-50%) scaleX(2);
  opacity: 0;
  filter: blur(10px);
}
.wpo-blog-section .shape,
.wpo-blog-section-s3 .shape {
  position: absolute;
  left: 60px;
  top: 120px;
}
@media (max-width: 991px) {
  .wpo-blog-section .shape,
  .wpo-blog-section-s3 .shape {
    display: none;
  }
}
.wpo-blog-section .shape img,
.wpo-blog-section-s3 .shape img {
  animation: circle 5s linear infinite;
}
.wpo-blog-section .s2,
.wpo-blog-section-s3 .s2 {
  left: auto;
  top: auto;
  right: 60px;
  bottom: 130px;
}

@keyframes rotateAniamtion {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes roted {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*======================================
5.0 Home Page Two
=======================================*/
/* 5.1 About Section Style 2 */
.wpo-about-section-s2 .wpo-about-wrap,
.wpo-about-section-s3 .wpo-about-wrap {
  max-width: 1555px;
  margin: 0 auto;
}
.wpo-about-section-s2 .about-left-side,
.wpo-about-section-s3 .about-left-side {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
@media (max-width: 991px) {
  .wpo-about-section-s2 .about-left-side,
  .wpo-about-section-s3 .about-left-side {
    margin-bottom: 40px;
    height: auto;
    text-align: center;
  }
}
.wpo-about-section-s2 .about-left-side .about-top,
.wpo-about-section-s3 .about-left-side .about-top {
  max-width: 590px;
}
@media (max-width: 991px) {
  .wpo-about-section-s2 .about-left-side .about-top,
  .wpo-about-section-s3 .about-left-side .about-top {
    margin: 0 auto;
    max-width: unset;
  }
}
.wpo-about-section-s2 .about-left-side .about-top h2,
.wpo-about-section-s3 .about-left-side .about-top h2 {
  margin: 0;
  color: #1B240F;
  font-weight: 500;
  font-size: 40px;
  line-height: 114%;
  letter-spacing: -0.48px;
}
@media (max-width: 1199px) {
  .wpo-about-section-s2 .about-left-side .about-top h2,
  .wpo-about-section-s3 .about-left-side .about-top h2 {
    font-size: 35px;
  }
}
@media (max-width: 991px) {
  .wpo-about-section-s2 .about-left-side .about-top h2,
  .wpo-about-section-s3 .about-left-side .about-top h2 {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .wpo-about-section-s2 .about-left-side .about-top h2,
  .wpo-about-section-s3 .about-left-side .about-top h2 {
    font-size: 25px;
  }
}
@media (max-width: 575px) {
  .wpo-about-section-s2 .about-left-side .about-top h2,
  .wpo-about-section-s3 .about-left-side .about-top h2 {
    font-size: 20px;
  }
}
.wpo-about-section-s2 .about-left-side .wpo-fun-fact-grids,
.wpo-about-section-s3 .about-left-side .wpo-fun-fact-grids {
  margin: 0;
  padding-bottom: 0;
  background: transparent;
  backdrop-filter: none;
  justify-content: start;
}
@media (max-width: 1399px) {
  .wpo-about-section-s2 .about-left-side .wpo-fun-fact-grids,
  .wpo-about-section-s3 .about-left-side .wpo-fun-fact-grids {
    gap: 50px;
  }
}
@media (max-width: 1199px) {
  .wpo-about-section-s2 .about-left-side .wpo-fun-fact-grids,
  .wpo-about-section-s3 .about-left-side .wpo-fun-fact-grids {
    gap: 19px;
  }
}
@media (max-width: 991px) {
  .wpo-about-section-s2 .about-left-side .wpo-fun-fact-grids,
  .wpo-about-section-s3 .about-left-side .wpo-fun-fact-grids {
    justify-content: center;
    gap: 40px;
  }
}
@media (max-width: 575px) {
  .wpo-about-section-s2 .about-left-side .wpo-fun-fact-grids,
  .wpo-about-section-s3 .about-left-side .wpo-fun-fact-grids {
    gap: 0;
  }
}
@media (max-width: 425px) {
  .wpo-about-section-s2 .about-left-side .wpo-fun-fact-grids .grid:last-child,
  .wpo-about-section-s3 .about-left-side .wpo-fun-fact-grids .grid:last-child {
    padding-bottom: 0;
  }
}
.wpo-about-section-s2 .about-image,
.wpo-about-section-s3 .about-image {
  text-align: end;
  border-radius: 8px;
  max-width: 495px;
  width: 100%;
  margin-left: auto;
}
@media (max-width: 991px) {
  .wpo-about-section-s2 .about-image,
  .wpo-about-section-s3 .about-image {
    margin: 0;
    max-width: unset;
  }
}
.wpo-about-section-s2 .about-image img,
.wpo-about-section-s3 .about-image img {
  border-radius: 8px;
  width: auto;
}
@media (max-width: 991px) {
  .wpo-about-section-s2 .about-image img,
  .wpo-about-section-s3 .about-image img {
    width: 100%;
  }
}

/* 5.2 Partner Section */
.wpo-partner-section .hidden {
  display: none;
}
.wpo-partner-section .wpo-partner-wrap {
  max-width: 1555px;
  margin: 0 auto;
}
.wpo-partner-section .partners-slider .slick-slide {
  margin-right: 15px;
}
.wpo-partner-section .partners-slider .slick-slide > div {
  padding: 0 10px;
}
.wpo-partner-section .partner-item ul {
  margin-left: 0;
}
.wpo-partner-section .partner-item ul li {
  background-color: #E9F0D7;
  border-radius: 12px;
  width: 250px;
  height: 195px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .wpo-partner-section .partner-item ul li {
    width: 200px;
    height: 170px;
  }
}
@media (max-width: 575px) {
  .wpo-partner-section .partner-item ul li {
    width: 160px;
    height: 130px;
  }
}

/* 5.3 Service Section Style 2 */
.wpo-service-section-s2 {
  background-color: #F5F8ED;
  padding-bottom: 90px;
}
@media (max-width: 991px) {
  .wpo-service-section-s2 {
    padding-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .wpo-service-section-s2 {
    padding-bottom: 30px;
  }
}
.wpo-service-section-s2 .wpo-service-wrap {
  max-width: 1555px;
  margin: 0 auto;
}
.wpo-service-section-s2 .service-all-content {
  display: block;
}
.wpo-service-section-s2 .service-all-content .service-item {
  padding: 0;
  width: 100%;
  border: 0;
  margin-bottom: 30px;
}
.wpo-service-section-s2 .service-all-content .service-item .image {
  border-radius: 12px;
}
.wpo-service-section-s2 .service-all-content .service-item .service-content {
  display: flex;
  padding-top: 25px;
  gap: 50px;
}
@media (max-width: 1399px) {
  .wpo-service-section-s2 .service-all-content .service-item .service-content {
    gap: 20px;
  }
}
@media (max-width: 1199px) {
  .wpo-service-section-s2 .service-all-content .service-item .service-content {
    flex-direction: column;
    gap: 15px;
  }
}
.wpo-service-section-s2 .service-all-content .service-item .service-content span {
  max-width: unset;
}
.wpo-service-section-s2 .service-all-content .service-item .service-content p {
  max-width: 375px;
  padding-top: 10px;
  color: #131907;
}
@media (max-width: 1199px) {
  .wpo-service-section-s2 .service-all-content .service-item .service-content p {
    font-size: 16px;
  }
}
.wpo-service-section-s2 .service-all-content .service-item .service-content .service-left small {
  font-weight: 500;
  font-size: 16px;
  line-height: 145%;
  color: #9A9F8F;
}
.wpo-service-section-s2 .service-all-content .service-item:hover, .wpo-service-section-s2 .service-all-content .service-item.active {
  background-color: transparent;
}

/* 5.4 Portfolio Section Style 2 */
.wpo-portfolio-section-s2,
.wpo-portfolio-section-s3 {
  background-color: #192112;
}
.wpo-portfolio-section-s2 .wpo-portfolio-wrap,
.wpo-portfolio-section-s3 .wpo-portfolio-wrap {
  max-width: 1555px;
  margin: 0 auto;
}
.wpo-portfolio-section-s2 .wpo-portfolio-wrap .wpo-section-title-s3,
.wpo-portfolio-section-s3 .wpo-portfolio-wrap .wpo-section-title-s3 {
  margin-bottom: 60px;
}
.wpo-portfolio-section-s2 .wpo-portfolio-wrap .wpo-section-title-s3 span,
.wpo-portfolio-section-s3 .wpo-portfolio-wrap .wpo-section-title-s3 span {
  color: #9EB962;
}
.wpo-portfolio-section-s2 .wpo-portfolio-wrap .wpo-section-title-s3 span::before,
.wpo-portfolio-section-s3 .wpo-portfolio-wrap .wpo-section-title-s3 span::before {
  background-color: #9EB962;
}
.wpo-portfolio-section-s2 .wpo-portfolio-wrap .wpo-section-title-s3 h2,
.wpo-portfolio-section-s3 .wpo-portfolio-wrap .wpo-section-title-s3 h2 {
  color: #F5F8ED;
}
.wpo-portfolio-section-s2 .wpo-portfolio-wrap .portfolio-card,
.wpo-portfolio-section-s3 .wpo-portfolio-wrap .portfolio-card {
  display: flex;
  align-items: center;
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  gap: 80px;
  opacity: 0.45;
  transition: all 0.4s ease;
}
@media (max-width: 1600px) {
  .wpo-portfolio-section-s2 .wpo-portfolio-wrap .portfolio-card,
  .wpo-portfolio-section-s3 .wpo-portfolio-wrap .portfolio-card {
    gap: 50px;
    justify-content: space-between;
  }
}
@media (max-width: 1199px) {
  .wpo-portfolio-section-s2 .wpo-portfolio-wrap .portfolio-card,
  .wpo-portfolio-section-s3 .wpo-portfolio-wrap .portfolio-card {
    gap: 30px;
  }
}
@media (max-width: 991px) {
  .wpo-portfolio-section-s2 .wpo-portfolio-wrap .portfolio-card,
  .wpo-portfolio-section-s3 .wpo-portfolio-wrap .portfolio-card {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .wpo-portfolio-section-s2 .wpo-portfolio-wrap .portfolio-card,
  .wpo-portfolio-section-s3 .wpo-portfolio-wrap .portfolio-card {
    flex-direction: column;
    align-items: start;
    gap: 20px;
  }
}
.wpo-portfolio-section-s2 .wpo-portfolio-wrap .portfolio-card .image-item,
.wpo-portfolio-section-s3 .wpo-portfolio-wrap .portfolio-card .image-item {
  display: flex;
  max-width: 500px;
  width: 100%;
  justify-content: space-between;
  gap: 20px;
}
@media (max-width: 1600px) {
  .wpo-portfolio-section-s2 .wpo-portfolio-wrap .portfolio-card .image-item,
  .wpo-portfolio-section-s3 .wpo-portfolio-wrap .portfolio-card .image-item {
    max-width: 430px;
  }
}
@media (max-width: 1399px) {
  .wpo-portfolio-section-s2 .wpo-portfolio-wrap .portfolio-card .image-item,
  .wpo-portfolio-section-s3 .wpo-portfolio-wrap .portfolio-card .image-item {
    max-width: 330px;
  }
}
@media (max-width: 1199px) {
  .wpo-portfolio-section-s2 .wpo-portfolio-wrap .portfolio-card .image-item,
  .wpo-portfolio-section-s3 .wpo-portfolio-wrap .portfolio-card .image-item {
    max-width: 290px;
  }
}
@media (max-width: 991px) {
  .wpo-portfolio-section-s2 .wpo-portfolio-wrap .portfolio-card .image-item,
  .wpo-portfolio-section-s3 .wpo-portfolio-wrap .portfolio-card .image-item {
    max-width: 240px;
  }
}
@media (max-width: 767px) {
  .wpo-portfolio-section-s2 .wpo-portfolio-wrap .portfolio-card .image-item,
  .wpo-portfolio-section-s3 .wpo-portfolio-wrap .portfolio-card .image-item {
    max-width: unset;
    flex-direction: column;
  }
}
.wpo-portfolio-section-s2 .wpo-portfolio-wrap .portfolio-card .image-item .image,
.wpo-portfolio-section-s3 .wpo-portfolio-wrap .portfolio-card .image-item .image {
  border-radius: 12px;
  max-width: 235px;
  max-height: 165px;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767px) {
  .wpo-portfolio-section-s2 .wpo-portfolio-wrap .portfolio-card .image-item .image,
  .wpo-portfolio-section-s3 .wpo-portfolio-wrap .portfolio-card .image-item .image {
    width: 100%;
    max-height: unset;
    max-width: unset;
    order: 1;
  }
}
@media (max-width: 767px) {
  .wpo-portfolio-section-s2 .wpo-portfolio-wrap .portfolio-card .image-item .text,
  .wpo-portfolio-section-s3 .wpo-portfolio-wrap .portfolio-card .image-item .text {
    order: 2;
  }
}
.wpo-portfolio-section-s2 .wpo-portfolio-wrap .portfolio-card .image-item .text small,
.wpo-portfolio-section-s3 .wpo-portfolio-wrap .portfolio-card .image-item .text small {
  font-weight: 500;
  font-size: 16px;
  line-height: 145%;
  color: #F5F8ED;
}
.wpo-portfolio-section-s2 .wpo-portfolio-wrap .portfolio-card .portfolio-content,
.wpo-portfolio-section-s3 .wpo-portfolio-wrap .portfolio-card .portfolio-content {
  display: flex;
  max-width: 680px;
  width: 100%;
  justify-content: space-between;
  gap: 20px;
}
@media (max-width: 1399px) {
  .wpo-portfolio-section-s2 .wpo-portfolio-wrap .portfolio-card .portfolio-content,
  .wpo-portfolio-section-s3 .wpo-portfolio-wrap .portfolio-card .portfolio-content {
    max-width: 600px;
  }
}
@media (max-width: 1199px) {
  .wpo-portfolio-section-s2 .wpo-portfolio-wrap .portfolio-card .portfolio-content,
  .wpo-portfolio-section-s3 .wpo-portfolio-wrap .portfolio-card .portfolio-content {
    max-width: 510px;
  }
}
@media (max-width: 991px) {
  .wpo-portfolio-section-s2 .wpo-portfolio-wrap .portfolio-card .portfolio-content,
  .wpo-portfolio-section-s3 .wpo-portfolio-wrap .portfolio-card .portfolio-content {
    max-width: 460px;
  }
}
@media (max-width: 767px) {
  .wpo-portfolio-section-s2 .wpo-portfolio-wrap .portfolio-card .portfolio-content,
  .wpo-portfolio-section-s3 .wpo-portfolio-wrap .portfolio-card .portfolio-content {
    flex-direction: column;
    max-width: unset;
  }
}
.wpo-portfolio-section-s2 .wpo-portfolio-wrap .portfolio-card .portfolio-text,
.wpo-portfolio-section-s3 .wpo-portfolio-wrap .portfolio-card .portfolio-text {
  max-width: 300px;
  width: 100%;
}
@media (max-width: 1199px) {
  .wpo-portfolio-section-s2 .wpo-portfolio-wrap .portfolio-card .portfolio-text,
  .wpo-portfolio-section-s3 .wpo-portfolio-wrap .portfolio-card .portfolio-text {
    max-width: 250px;
  }
}
@media (max-width: 767px) {
  .wpo-portfolio-section-s2 .wpo-portfolio-wrap .portfolio-card .portfolio-text,
  .wpo-portfolio-section-s3 .wpo-portfolio-wrap .portfolio-card .portfolio-text {
    max-width: unset;
  }
}
.wpo-portfolio-section-s2 .wpo-portfolio-wrap .portfolio-card .portfolio-text span a,
.wpo-portfolio-section-s3 .wpo-portfolio-wrap .portfolio-card .portfolio-text span a {
  font-weight: 600;
  font-size: 32px;
  line-height: 107%;
  letter-spacing: -0.48px;
  color: #F5F8ED;
  display: block;
}
@media (max-width: 1199px) {
  .wpo-portfolio-section-s2 .wpo-portfolio-wrap .portfolio-card .portfolio-text span a,
  .wpo-portfolio-section-s3 .wpo-portfolio-wrap .portfolio-card .portfolio-text span a {
    font-size: 27px;
  }
}
@media (max-width: 991px) {
  .wpo-portfolio-section-s2 .wpo-portfolio-wrap .portfolio-card .portfolio-text span a,
  .wpo-portfolio-section-s3 .wpo-portfolio-wrap .portfolio-card .portfolio-text span a {
    font-size: 23px;
  }
}
@media (max-width: 425px) {
  .wpo-portfolio-section-s2 .wpo-portfolio-wrap .portfolio-card .portfolio-text span a,
  .wpo-portfolio-section-s3 .wpo-portfolio-wrap .portfolio-card .portfolio-text span a {
    font-size: 20px;
  }
}
.wpo-portfolio-section-s2 .wpo-portfolio-wrap .portfolio-card .portfolio-info,
.wpo-portfolio-section-s3 .wpo-portfolio-wrap .portfolio-card .portfolio-info {
  max-width: 260px;
  width: 100%;
}
.wpo-portfolio-section-s2 .wpo-portfolio-wrap .portfolio-card .portfolio-info ul li,
.wpo-portfolio-section-s3 .wpo-portfolio-wrap .portfolio-card .portfolio-info ul li {
  font-weight: 400;
  font-size: 16px;
  line-height: 145%;
  color: #F5F8ED;
  display: flex;
  align-items: center;
  gap: 30px;
  padding-bottom: 20px;
}
@media (max-width: 1199px) {
  .wpo-portfolio-section-s2 .wpo-portfolio-wrap .portfolio-card .portfolio-info ul li,
  .wpo-portfolio-section-s3 .wpo-portfolio-wrap .portfolio-card .portfolio-info ul li {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .wpo-portfolio-section-s2 .wpo-portfolio-wrap .portfolio-card .portfolio-info ul li,
  .wpo-portfolio-section-s3 .wpo-portfolio-wrap .portfolio-card .portfolio-info ul li {
    padding-bottom: 10px;
  }
}
.wpo-portfolio-section-s2 .wpo-portfolio-wrap .portfolio-card .portfolio-info ul li:last-child,
.wpo-portfolio-section-s3 .wpo-portfolio-wrap .portfolio-card .portfolio-info ul li:last-child {
  padding-bottom: 0;
}
.wpo-portfolio-section-s2 .wpo-portfolio-wrap .portfolio-card .portfolio-info ul li span,
.wpo-portfolio-section-s3 .wpo-portfolio-wrap .portfolio-card .portfolio-info ul li span {
  color: rgba(245, 248, 237, 0.51);
  max-width: 65px;
  width: 100%;
}
.wpo-portfolio-section-s2 .wpo-portfolio-wrap .portfolio-card .portfolio-view,
.wpo-portfolio-section-s3 .wpo-portfolio-wrap .portfolio-card .portfolio-view {
  padding-left: 95px;
}
@media (max-width: 1600px) {
  .wpo-portfolio-section-s2 .wpo-portfolio-wrap .portfolio-card .portfolio-view,
  .wpo-portfolio-section-s3 .wpo-portfolio-wrap .portfolio-card .portfolio-view {
    padding-left: 0;
  }
}
@media (max-width: 1199px) {
  .wpo-portfolio-section-s2 .wpo-portfolio-wrap .portfolio-card .portfolio-view,
  .wpo-portfolio-section-s3 .wpo-portfolio-wrap .portfolio-card .portfolio-view {
    max-width: 115px;
    width: 100%;
  }
}
.wpo-portfolio-section-s2 .wpo-portfolio-wrap .portfolio-card .portfolio-view .view-link,
.wpo-portfolio-section-s3 .wpo-portfolio-wrap .portfolio-card .portfolio-view .view-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #F5F8ED;
  font-size: 16px;
  font-weight: 600;
}
@media (max-width: 1199px) {
  .wpo-portfolio-section-s2 .wpo-portfolio-wrap .portfolio-card .portfolio-view .view-link,
  .wpo-portfolio-section-s3 .wpo-portfolio-wrap .portfolio-card .portfolio-view .view-link {
    font-size: 15px;
  }
}
.wpo-portfolio-section-s2 .wpo-portfolio-wrap .portfolio-card .portfolio-view .view-link i,
.wpo-portfolio-section-s3 .wpo-portfolio-wrap .portfolio-card .portfolio-view .view-link i {
  font-size: 16px;
  font-weight: 700;
}
.wpo-portfolio-section-s2 .wpo-portfolio-wrap .portfolio-card.active, .wpo-portfolio-section-s2 .wpo-portfolio-wrap .portfolio-card:hover,
.wpo-portfolio-section-s3 .wpo-portfolio-wrap .portfolio-card.active,
.wpo-portfolio-section-s3 .wpo-portfolio-wrap .portfolio-card:hover {
  opacity: 1;
}

/* 5.5 Why Choose Section */
.wpo-why-choose-section {
  padding-bottom: 120px;
}
@media (max-width: 991px) {
  .wpo-why-choose-section {
    padding-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .wpo-why-choose-section {
    padding-bottom: 30px;
  }
}
.wpo-why-choose-section .wpo-why-choose-wrap {
  max-width: 1555px;
  margin: 0 auto;
}
.wpo-why-choose-section .why-choose-left {
  max-width: 700px;
}
.wpo-why-choose-section .why-choose-top {
  padding-bottom: 80px;
}
@media (max-width: 991px) {
  .wpo-why-choose-section .why-choose-top {
    padding-bottom: 40px;
  }
}
.wpo-why-choose-section .wpo-section-title-s2 {
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .wpo-why-choose-section .wpo-section-title-s2 {
    margin-bottom: 35px;
  }
}
.wpo-why-choose-section .wpo-section-title-s2 span {
  color: #9EB962;
}
.wpo-why-choose-section .wpo-section-title-s2 span::before {
  background-color: #9EB962;
}
.wpo-why-choose-section .wpo-section-title-s2 h2 {
  font-weight: 600;
  font-size: 64px;
  line-height: 100%;
  letter-spacing: 0.8px;
  padding-top: 20px;
  text-transform: unset;
}
@media (max-width: 1399px) {
  .wpo-why-choose-section .wpo-section-title-s2 h2 {
    font-size: 55px;
  }
}
@media (max-width: 1199px) {
  .wpo-why-choose-section .wpo-section-title-s2 h2 {
    font-size: 45px;
  }
}
@media (max-width: 767px) {
  .wpo-why-choose-section .wpo-section-title-s2 h2 {
    font-size: 35px;
    padding-top: 10px;
  }
}
@media (max-width: 575px) {
  .wpo-why-choose-section .wpo-section-title-s2 h2 {
    font-size: 30px;
  }
}
@media (max-width: 425px) {
  .wpo-why-choose-section .wpo-section-title-s2 h2 {
    font-size: 25px;
  }
}
.wpo-why-choose-section .wpo-section-title-s2 p {
  max-width: 600px;
  font-weight: 400;
  font-size: 24px;
  line-height: 145%;
}
@media (max-width: 1199px) {
  .wpo-why-choose-section .wpo-section-title-s2 p {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .wpo-why-choose-section .wpo-section-title-s2 p {
    font-size: 18px;
    margin: 0 auto;
  }
}
@media (max-width: 575px) {
  .wpo-why-choose-section .wpo-section-title-s2 p {
    font-size: 16px;
    padding-top: 10px;
  }
}
.wpo-why-choose-section .why-choose-image {
  position: relative;
  text-align: center;
}
.wpo-why-choose-section .why-choose-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
}
.wpo-why-choose-section .why-choose-image .video-item {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 111;
}
.wpo-why-choose-section .why-choose-image .video-item .video-btn {
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.75);
  border-radius: 50%;
  backdrop-filter: blur(10px);
}
@media (max-width: 991px) {
  .wpo-why-choose-section .why-choose-image .video-item .video-btn {
    width: 80px;
    height: 80px;
  }
}
@media (max-width: 575px) {
  .wpo-why-choose-section .why-choose-image .video-item .video-btn {
    width: 60px;
    height: 60px;
  }
}
.wpo-why-choose-section .why-choose-image .video-item .video-btn .fi::before {
  font-size: 25px;
  position: relative;
  color: #192112;
}
@media (max-width: 991px) {
  .wpo-why-choose-section .why-choose-image .video-item .video-btn .fi::before {
    font-size: 28px;
  }
}
@media (max-width: 575px) {
  .wpo-why-choose-section .why-choose-image .video-item .video-btn .fi::before {
    font-size: 20px;
  }
}
.wpo-why-choose-section .why-choose-item {
  display: flex;
  gap: 25px;
  max-width: 318px;
}
@media (max-width: 1399px) {
  .wpo-why-choose-section .why-choose-item {
    flex-direction: column;
  }
}
@media (max-width: 991px) {
  .wpo-why-choose-section .why-choose-item {
    margin: 0 auto;
    margin-bottom: 30px;
    justify-content: center;
    text-align: center;
    gap: 15px;
  }
}
.wpo-why-choose-section .why-choose-item .icon {
  max-width: 40px;
  width: 100%;
}
@media (max-width: 991px) {
  .wpo-why-choose-section .why-choose-item .icon {
    margin: 0 auto;
  }
}
.wpo-why-choose-section .why-choose-item .icon img {
  transition: all 0.5s ease-in-out;
}
.wpo-why-choose-section .why-choose-item h3 {
  margin: 0;
  font-weight: 600;
  font-size: 24px;
  line-height: 122%;
  letter-spacing: -0.64px;
  color: #131907;
  max-width: 185px;
  padding-bottom: 15px;
}
@media (max-width: 1199px) {
  .wpo-why-choose-section .why-choose-item h3 {
    font-size: 21px;
    max-width: 155px;
  }
}
@media (max-width: 991px) {
  .wpo-why-choose-section .why-choose-item h3 {
    margin: 0 auto;
  }
}
.wpo-why-choose-section .why-choose-item p {
  margin: 0;
  color: #131907;
  font-weight: 400;
  font-size: 18px;
  line-height: 145%;
}
@media (max-width: 1199px) {
  .wpo-why-choose-section .why-choose-item p {
    font-size: 16px;
  }
}
.wpo-why-choose-section .why-choose-item:hover .icon img {
  transform: rotateY(360deg);
}

/* 5.6 Performance Section */
.wpo-performance-section {
  border-top: 1px solid #DEE9C4;
  margin: 0 30px;
}
@media (max-width: 991px) {
  .wpo-performance-section {
    margin: 0;
  }
}
.wpo-performance-section .wpo-performance-wrap {
  max-width: 1555px;
  margin: 0 auto;
}
.wpo-performance-section .performance-item {
  display: flex;
  align-items: center;
  gap: 25px;
  max-width: 1170px;
  margin-left: auto;
}
@media (max-width: 1199px) {
  .wpo-performance-section .performance-item {
    flex-direction: column;
    max-width: 600px;
    margin: 0 auto;
  }
}
.wpo-performance-section .performance-item .category-card {
  padding: 40px;
  border-radius: 20px;
  background-color: #fff;
}
@media (max-width: 575px) {
  .wpo-performance-section .performance-item .category-card {
    padding: 20px;
  }
}
.wpo-performance-section .performance-item .category-card .category-title {
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.wpo-performance-section .performance-item .category-card .category-title span {
  font-weight: 500;
  font-size: 16px;
  line-height: 110%;
  color: #637D33;
}
@media (max-width: 425px) {
  .wpo-performance-section .performance-item .category-card .category-title span {
    font-size: 15px;
  }
}
.wpo-performance-section .performance-item .category-card .category-title h3 {
  margin: 0;
  color: #131907;
  font-weight: 600;
  font-size: 24px;
  line-height: 122%;
  letter-spacing: -0.64px;
  padding-top: 5px;
}
@media (max-width: 575px) {
  .wpo-performance-section .performance-item .category-card .category-title h3 {
    font-size: 20px;
  }
}
@media (max-width: 425px) {
  .wpo-performance-section .performance-item .category-card .category-title h3 {
    font-size: 18px;
  }
}
.wpo-performance-section .performance-item .category-card .category-image {
  padding-top: 35px;
}
@media (max-width: 1199px) {
  .wpo-performance-section .performance-item .award-card {
    width: 100%;
  }
}
.wpo-performance-section .performance-item .award-card .award-content {
  padding: 15px;
  padding-right: 24px;
  background-color: #fff;
  display: flex;
  align-items: center;
  gap: 25px;
  border-radius: 12px;
  margin-bottom: 5px;
}
@media (max-width: 575px) {
  .wpo-performance-section .performance-item .award-card .award-content {
    flex-direction: column;
    align-items: start;
  }
}
.wpo-performance-section .performance-item .award-card .award-content:last-child {
  margin-bottom: 0;
}
.wpo-performance-section .performance-item .award-card .award-content .icon {
  width: 88px;
  height: 88px;
  border-radius: 6px;
  background-color: #F5F8ED;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 575px) {
  .wpo-performance-section .performance-item .award-card .award-content .icon {
    width: 70px;
    height: 70px;
  }
}
.wpo-performance-section .performance-item .award-card .award-content .icon img {
  transition: all 0.5s ease-in-out;
}
.wpo-performance-section .performance-item .award-card .award-content .award-item {
  display: flex;
  align-items: center;
  width: calc(100% - 110px);
}
@media (max-width: 1199px) {
  .wpo-performance-section .performance-item .award-card .award-content .award-item {
    justify-content: space-between;
  }
}
@media (max-width: 575px) {
  .wpo-performance-section .performance-item .award-card .award-content .award-item {
    flex-direction: column;
    justify-content: start;
    align-items: start;
  }
}
@media (max-width: 575px) {
  .wpo-performance-section .performance-item .award-card .award-content .award-item {
    width: 100%;
  }
}
.wpo-performance-section .performance-item .award-card .award-content .award-item .award-text h4 {
  margin: 0;
  font-weight: 600;
  font-size: 18px;
  line-height: 122%;
  letter-spacing: -0.64px;
  color: #131907;
  padding-bottom: 5px;
}
.wpo-performance-section .performance-item .award-card .award-content .award-item .award-text p {
  margin: 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 145%;
  color: #5E5E5E;
}
.wpo-performance-section .performance-item .award-card .award-content .award-item .date {
  padding-left: 50px;
}
@media (max-width: 575px) {
  .wpo-performance-section .performance-item .award-card .award-content .award-item .date {
    padding-left: 0;
    padding-top: 5px;
  }
}
.wpo-performance-section .performance-item .award-card .award-content .award-item .date span {
  font-weight: 500;
  font-size: 14px;
  line-height: 145%;
  color: #637D33;
  position: relative;
  display: block;
  padding-left: 15px;
}
.wpo-performance-section .performance-item .award-card .award-content .award-item .date span::before {
  position: absolute;
  content: "";
  top: 7px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #637D33;
}
.wpo-performance-section .performance-item .award-card .award-content:hover .icon img {
  transform: rotateY(360deg);
}

/* 5.7 Testimonial Section Style 2 */
.wpo-testimonial-section-s2 {
  background-color: #192112;
}
.wpo-testimonial-section-s2 .wpo-testimonial-wrap {
  max-width: 1555px;
  margin: 0 auto;
}
.wpo-testimonial-section-s2 .testimonial-silde-s2 {
  max-width: 390px;
  position: relative;
}
@media (max-width: 991px) {
  .wpo-testimonial-section-s2 .testimonial-silde-s2 {
    max-width: unset;
  }
}
.wpo-testimonial-section-s2 .testimonial-silde-s2 .owl-stage {
  position: relative;
  display: flex;
  align-items: center;
}
@media (max-width: 991px) {
  .wpo-testimonial-section-s2 .testimonial-silde-s2 .owl-stage {
    margin-left: 0;
  }
}
.wpo-testimonial-section-s2 .testimonial-silde-s2 .owl-nav {
  display: none;
}
.wpo-testimonial-section-s2 .testimonial-silde-s2 .owl-dots {
  text-align: center;
  margin-top: 20px;
}
@media (min-width: 992px) {
  .wpo-testimonial-section-s2 .testimonial-silde-s2 .owl-dots {
    display: none;
  }
}
.wpo-testimonial-section-s2 .testimonial-silde-s2 .owl-dots button {
  border: 0;
  width: 10px;
  height: 12px;
  margin: 5px;
  border-radius: 50%;
  background-color: #9A9F8F;
}
.wpo-testimonial-section-s2 .testimonial-silde-s2 .owl-dots button.active {
  background: #556B2F;
}
.wpo-testimonial-section-s2 .wpo-section-title-s3 h2 {
  color: #F5F8ED;
}
.wpo-testimonial-section-s2 .testimonial-content {
  padding-left: 2px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.wpo-testimonial-section-s2 .testimonial-content h3 {
  margin: 0;
  color: #CCCEC6;
  font-weight: 400;
  font-size: 32px;
  line-height: 124%;
  letter-spacing: -0.64px;
  margin-bottom: 50px;
}
@media (max-width: 1399px) {
  .wpo-testimonial-section-s2 .testimonial-content h3 {
    font-size: 26px;
  }
}
@media (max-width: 1199px) {
  .wpo-testimonial-section-s2 .testimonial-content h3 {
    font-size: 23px;
  }
}
@media (max-width: 575px) {
  .wpo-testimonial-section-s2 .testimonial-content h3 {
    font-size: 20px;
  }
}
.wpo-testimonial-section-s2 .testimonial-content h4 {
  margin: 0;
  font-weight: 500;
  font-size: 24px;
  line-height: 124%;
  letter-spacing: -0.64px;
  margin-bottom: 40px;
  color: #CCCEC6;
}
@media (max-width: 1199px) {
  .wpo-testimonial-section-s2 .testimonial-content h4 {
    font-size: 20px;
    margin-bottom: 30px;
  }
}
@media (max-width: 575px) {
  .wpo-testimonial-section-s2 .testimonial-content h4 {
    font-size: 17px;
  }
}
.wpo-testimonial-section-s2 .testimonial-content .testimonial-client span {
  color: #F5F8ED;
  font-weight: 500;
  font-size: 18px;
  line-height: 122%;
  letter-spacing: -0.64px;
}
@media (max-width: 991px) {
  .wpo-testimonial-section-s2 .testimonial-content .testimonial-client span {
    font-size: 16px;
  }
}
.wpo-testimonial-section-s2 .testimonial-content .testimonial-client p {
  margin: 0;
  color: #BBBBBB;
  font-weight: 400;
  font-size: 14px;
  line-height: 145%;
}
.wpo-testimonial-section-s2 .testimonial-left {
  position: relative;
  height: 100%;
  z-index: 11;
}
@media (max-width: 767px) {
  .wpo-testimonial-section-s2 .testimonial-left {
    height: auto;
    margin-bottom: 25px;
  }
}
.wpo-testimonial-section-s2 .testimonial-left .testimonial-image {
  position: absolute;
  bottom: 0;
  right: 20px;
}
@media (max-width: 1399px) {
  .wpo-testimonial-section-s2 .testimonial-left .testimonial-image {
    max-width: 350px;
    width: 100%;
  }
}
@media (max-width: 1199px) {
  .wpo-testimonial-section-s2 .testimonial-left .testimonial-image {
    max-width: 300px;
  }
}
@media (max-width: 991px) {
  .wpo-testimonial-section-s2 .testimonial-left .testimonial-image {
    display: none;
  }
}
.wpo-testimonial-section-s2 .testimonial-left .testimonial-item {
  background-color: #212C18;
  border-radius: 12px;
  padding: 60px 50px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
@media (max-width: 1199px) {
  .wpo-testimonial-section-s2 .testimonial-left .testimonial-item {
    padding: 40px 30px;
  }
}
@media (max-width: 575px) {
  .wpo-testimonial-section-s2 .testimonial-left .testimonial-item {
    padding: 30px 20px;
  }
}
.wpo-testimonial-section-s2 .shape {
  margin-bottom: 30px;
}
.wpo-testimonial-section-s2 .testimonial-right .testimonial-card {
  background-color: #212C18;
  padding: 51px;
  position: relative;
  z-index: 1;
  border-radius: 12px;
  margin-bottom: 25px;
  box-shadow: 8px 8px 24px 0px rgba(10, 13, 13, 0.07);
}
@media (max-width: 1399px) {
  .wpo-testimonial-section-s2 .testimonial-right .testimonial-card {
    padding: 35px;
  }
}
@media (max-width: 1199px) {
  .wpo-testimonial-section-s2 .testimonial-right .testimonial-card {
    padding: 25px;
  }
}
@media (max-width: 767px) {
  .wpo-testimonial-section-s2 .testimonial-right .testimonial-card {
    padding: 20px;
  }
}
.wpo-testimonial-section-s2 .testimonial-right .testimonial-card:last-child {
  margin-bottom: 0;
}
.wpo-testimonial-section-s2 .testimonial-right .testimonial-card .testimonial-client {
  display: flex;
  align-items: center;
  gap: 15px;
}
.wpo-testimonial-section-s2 .testimonial-right .testimonial-card .image img {
  border-radius: 50%;
}

/* 5.8 Team Section Style 2 */
.wpo-team-section.style-2 {
  background-color: transparent;
}
@media (max-width: 1399px) {
  .wpo-team-section.style-2 .team-container .team-content .wpo-section-title-s2 {
    max-width: 370px;
  }
}
.wpo-team-section.style-2 .team-container .team-content .wpo-section-title-s2 span {
  color: #9EB962;
}
.wpo-team-section.style-2 .team-container .team-content .wpo-section-title-s2 span::before {
  background-color: #9EB962;
}
.wpo-team-section.style-2 .team-container .team-content .wpo-section-title-s2 h2 {
  font-weight: 600;
  font-size: 64px;
  line-height: 100%;
  letter-spacing: -0.8px;
}
@media (max-width: 1399px) {
  .wpo-team-section.style-2 .team-container .team-content .wpo-section-title-s2 h2 {
    font-size: 55px;
  }
}
@media (max-width: 1199px) {
  .wpo-team-section.style-2 .team-container .team-content .wpo-section-title-s2 h2 {
    font-size: 50px;
  }
}
@media (max-width: 991px) {
  .wpo-team-section.style-2 .team-container .team-content .wpo-section-title-s2 h2 {
    font-size: 40px;
  }
}
@media (max-width: 575px) {
  .wpo-team-section.style-2 .team-container .team-content .wpo-section-title-s2 h2 {
    font-size: 35px;
  }
}
@media (max-width: 425px) {
  .wpo-team-section.style-2 .team-container .team-content .wpo-section-title-s2 h2 {
    font-size: 30px;
  }
}
.wpo-team-section.style-2 .wpo-team-wrap {
  max-width: 1555px;
  margin: 0 auto;
}
.wpo-team-section.style-2 .team-container .team-content .team-right .team-item .team-card img {
  border-radius: 12px;
}
.wpo-team-section.style-2 .team-container .team-content .team-right .team-item {
  gap: 25px;
}
@media (max-width: 991px) {
  .wpo-team-section.style-2 .team-container .team-content .team-right .team-item {
    gap: 20px;
  }
}

/* 5.9 Blog Section Style 2 */
.wpo-blog-section-s2 {
  background-color: transparent;
}
.wpo-blog-section-s2 .wpo-blog-wrap {
  max-width: 1555px;
  margin: 0 auto;
}
.wpo-blog-section-s2 .blog-wrapper {
  display: flex;
  gap: 25px;
}
.wpo-blog-section-s2 .blog-card {
  width: 25%;
  transition: all 0.5s ease;
  min-height: 360px;
  position: relative;
}
.wpo-blog-section-s2 .blog-card .image {
  overflow: hidden;
  border-radius: 14px;
  transition: height 0.5s ease;
  z-index: 11;
  border-radius: 12px;
}
.wpo-blog-section-s2 .blog-card .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
  border-radius: 12px;
}
.wpo-blog-section-s2 .blog-card .content ul {
  display: flex;
  gap: 10px;
  padding-bottom: 20px;
}
@media (max-width: 991px) {
  .wpo-blog-section-s2 .blog-card .content ul {
    padding-bottom: 10px;
  }
}
.wpo-blog-section-s2 .blog-card .content ul li {
  letter-spacing: -0.48px;
  color: #787878;
  font-weight: 500;
  font-size: 16px;
  line-height: 124%;
}
@media (max-width: 575px) {
  .wpo-blog-section-s2 .blog-card .content ul li {
    font-size: 14px;
  }
}
.wpo-blog-section-s2 .blog-card .content ul li a {
  color: #787878;
  transition: all ease-in-out 0.3s;
}
.wpo-blog-section-s2 .blog-card .content ul li a:hover {
  color: #556B2F;
}
.wpo-blog-section-s2 .blog-card .content span {
  font-weight: 600;
  font-size: 24px;
  line-height: 120%;
  letter-spacing: -0.64px;
  color: #131907;
  display: block;
  max-width: 330px;
}
@media (max-width: 1350px) {
  .wpo-blog-section-s2 .blog-card .content span {
    font-size: 20px;
  }
}
.wpo-blog-section-s2 .blog-card .content span a {
  color: #1B240F;
  transition: all ease-in-out 0.3s;
}
.wpo-blog-section-s2 .blog-card .content span a:hover {
  color: #556B2F;
}
.wpo-blog-section-s2 .blog-card.active, .wpo-blog-section-s2 .blog-card:hover {
  width: 50%;
  min-height: 360px;
  border-radius: 12px;
}
.wpo-blog-section-s2 .blog-card.active .image, .wpo-blog-section-s2 .blog-card:hover .image {
  position: relative;
  z-index: 1;
  border-radius: 12px;
}
.wpo-blog-section-s2 .blog-card.active .image img, .wpo-blog-section-s2 .blog-card:hover .image img {
  transform: scale(1.08);
}
.wpo-blog-section-s2 .blog-card.active .image::before, .wpo-blog-section-s2 .blog-card:hover .image::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 190px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
  z-index: 11;
  border-radius: 12px;
}
.wpo-blog-section-s2 .blog-card.active .content, .wpo-blog-section-s2 .blog-card:hover .content {
  margin-top: -142px;
  padding: 0 45px 45px;
  position: relative;
  z-index: 2;
  color: #F5F8ED;
}
@media (max-width: 1350px) {
  .wpo-blog-section-s2 .blog-card.active .content, .wpo-blog-section-s2 .blog-card:hover .content {
    padding: 0 30px 30px;
    margin-top: -120px;
  }
}
.wpo-blog-section-s2 .blog-card.active .content ul li a, .wpo-blog-section-s2 .blog-card:hover .content ul li a {
  color: #F5F8ED;
}
.wpo-blog-section-s2 .blog-card.active .content ul li, .wpo-blog-section-s2 .blog-card:hover .content ul li {
  color: #F5F8ED;
}
.wpo-blog-section-s2 .blog-card.active .content span a, .wpo-blog-section-s2 .blog-card:hover .content span a {
  color: #F5F8ED;
}
.wpo-blog-section-s2 .blog-card:not(.active) .image img {
  min-height: 460px;
}
@media (max-width: 1600px) {
  .wpo-blog-section-s2 .blog-card:not(.active) .image img {
    min-height: 420px;
  }
}
@media (max-width: 1500px) {
  .wpo-blog-section-s2 .blog-card:not(.active) .image img {
    min-height: 390px;
  }
}
@media (max-width: 1399px) {
  .wpo-blog-section-s2 .blog-card:not(.active) .image img {
    min-height: 330px;
  }
}
@media (max-width: 1199px) {
  .wpo-blog-section-s2 .blog-card:not(.active) .image img {
    min-height: 240px;
  }
}
.wpo-blog-section-s2 .blog-card:not(.active) .content {
  padding: 18px 0 0;
}
@media (max-width: 991px) {
  .wpo-blog-section-s2 .blog-wrapper {
    flex-wrap: wrap;
    gap: 30px;
  }
  .wpo-blog-section-s2 .blog-card,
  .wpo-blog-section-s2 .blog-card.active,
  .wpo-blog-section-s2 .blog-card:hover {
    width: 100%;
    min-height: auto;
  }
  .wpo-blog-section-s2 .blog-card .image::before,
  .wpo-blog-section-s2 .blog-card.active .image::before,
  .wpo-blog-section-s2 .blog-card:hover .image::before {
    display: none;
  }
  .wpo-blog-section-s2 .blog-card .content,
  .wpo-blog-section-s2 .blog-card.active .content,
  .wpo-blog-section-s2 .blog-card:hover .content {
    margin-top: 0;
    padding: 20px 0 0;
  }
  .wpo-blog-section-s2 .blog-card .content ul li,
  .wpo-blog-section-s2 .blog-card .content ul li a,
  .wpo-blog-section-s2 .blog-card .content span a,
  .wpo-blog-section-s2 .blog-card.active .content ul li,
  .wpo-blog-section-s2 .blog-card.active .content ul li a,
  .wpo-blog-section-s2 .blog-card.active .content span a,
  .wpo-blog-section-s2 .blog-card:hover .content ul li,
  .wpo-blog-section-s2 .blog-card:hover .content ul li a,
  .wpo-blog-section-s2 .blog-card:hover .content span a {
    color: inherit;
  }
  .wpo-blog-section-s2 .blog-card .content ul li,
  .wpo-blog-section-s2 .blog-card .content ul li a,
  .wpo-blog-section-s2 .blog-card.active .content ul li,
  .wpo-blog-section-s2 .blog-card.active .content ul li a,
  .wpo-blog-section-s2 .blog-card:hover .content ul li,
  .wpo-blog-section-s2 .blog-card:hover .content ul li a {
    color: #787878;
  }
  .wpo-blog-section-s2 .blog-card:not(.active) .image img,
  .wpo-blog-section-s2 .blog-card.active:not(.active) .image img,
  .wpo-blog-section-s2 .blog-card:hover:not(.active) .image img {
    min-height: auto;
  }
}

/* 5.10 Contact Section */
.wpo-contact-section .wpo-contact-wraper {
  max-width: 1555px;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .wpo-contact-section .wpo-contact-wraper {
    align-items: flex-start;
    flex-direction: column;
  }
}
.wpo-contact-section .contact-left-side {
  max-width: 550px;
}
@media (max-width: 991px) {
  .wpo-contact-section .contact-left-side {
    margin-bottom: 40px;
  }
}
.wpo-contact-section .contact-left-side h2 {
  margin: 0;
  font-weight: 500;
  font-size: 48px;
  line-height: 98%;
  letter-spacing: -0.48px;
  padding-top: 30px;
}
@media (max-width: 1199px) {
  .wpo-contact-section .contact-left-side h2 {
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  .wpo-contact-section .contact-left-side h2 {
    font-size: 35px;
  }
}
@media (max-width: 575px) {
  .wpo-contact-section .contact-left-side h2 {
    font-size: 30px;
  }
}
@media (max-width: 425px) {
  .wpo-contact-section .contact-left-side h2 {
    font-size: 25px;
  }
}
.wpo-contact-section .contact-form-area .submit-text p {
  margin: 0;
  color: #787878;
  font-weight: 500;
  font-size: 16px;
  line-height: 137%;
  letter-spacing: -0.48px;
  max-width: 360px;
  padding-top: 35px;
}
@media (max-width: 575px) {
  .wpo-contact-section .contact-form-area .submit-text p {
    font-size: 14px;
    padding-top: 20px;
  }
}

.contact-form-area .col {
  padding: 0 15px;
}
.contact-form-area .form-control {
  width: 100%;
  height: 45px;
  margin-bottom: 40px;
  border: 0;
  border-radius: 0;
  background: transparent;
  border-bottom: 1px solid rgb(223, 222, 219);
  color: #374324;
  padding: 0;
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
}
@media (max-width: 575px) {
  .contact-form-area .form-control {
    margin-bottom: 15px;
  }
}
.contact-form-area .form-control:focus {
  outline: none;
  box-shadow: none;
}
.contact-form-area .submit-area {
  margin-top: 10px;
}
.contact-form-area .form-control::-moz-placeholder {
  color: #374324;
}
.contact-form-area .form-control::placeholder {
  color: #374324;
}
.contact-form-area textarea.form-control {
  height: 100px;
  padding-top: 15px;
}
@media (max-width: 575px) {
  .contact-form-area textarea.form-control {
    height: 80px;
    padding-top: 10px;
  }
}
.contact-form-area select.form-control {
  color: #374324;
  -webkit-appearance: none;
  -o-appearance: none;
  appearance: none;
  -moz-appearance: none;
  background: transparent url(../images/select-icon.png) no-repeat calc(100% - 0px) center;
  position: relative;
}
.contact-form-area .contact-validation-active label.error {
  margin-top: -25px;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .contact-form-area .contact-validation-active label.error {
    margin-top: -10px;
    margin-bottom: 20px;
  }
}

/*======================================
6.0 About Page
=======================================*/
.wpo-about-section-s3 .about-left-side {
  margin: 0;
}
.wpo-about-section-s3 .about-left-side .about-top {
  max-width: 1060px;
  margin-bottom: 65px;
}
@media (max-width: 991px) {
  .wpo-about-section-s3 .about-left-side .about-top {
    margin-bottom: 35px;
  }
}
.wpo-about-section-s3 .about-left-side .about-top h2 {
  font-weight: 600;
  font-size: 80px;
  line-height: 98%;
  letter-spacing: -0.48px;
}
@media (max-width: 1399px) {
  .wpo-about-section-s3 .about-left-side .about-top h2 {
    font-size: 65px;
  }
}
@media (max-width: 1199px) {
  .wpo-about-section-s3 .about-left-side .about-top h2 {
    font-size: 55px;
  }
}
@media (max-width: 991px) {
  .wpo-about-section-s3 .about-left-side .about-top h2 {
    font-size: 45px;
  }
}
@media (max-width: 575px) {
  .wpo-about-section-s3 .about-left-side .about-top h2 {
    font-size: 35px;
  }
}
@media (max-width: 425px) {
  .wpo-about-section-s3 .about-left-side .about-top h2 {
    font-size: 27px;
  }
}
.wpo-about-section-s3 .about-left-side .about-bottom-item {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
@media (max-width: 991px) {
  .wpo-about-section-s3 .about-left-side .about-bottom-item {
    flex-direction: column;
    justify-content: center;
  }
}
.wpo-about-section-s3 .about-left-side .about-bottom-item .text p {
  margin: 0;
  color: #1B240F;
  font-weight: 400;
  font-size: 24px;
  line-height: 145%;
  letter-spacing: -0.32px;
  padding-bottom: 50px;
}
@media (max-width: 1199px) {
  .wpo-about-section-s3 .about-left-side .about-bottom-item .text p {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .wpo-about-section-s3 .about-left-side .about-bottom-item .text p {
    font-size: 18px;
    padding-bottom: 30px;
  }
}
.wpo-about-section-s3 .about-left-side .about-bottom-item .about-review {
  max-width: 460px;
}
@media (max-width: 991px) {
  .wpo-about-section-s3 .about-left-side .about-bottom-item .about-review {
    margin: 0 auto;
  }
}
@media (max-width: 991px) {
  .wpo-about-section-s3 .about-left-side .about-bottom-item .about-review .client-team {
    justify-content: center;
    margin: 0;
  }
}
.wpo-about-section-s3 .about-left-side .about-bottom-item .about-review .client-team .client-text ul li i {
  color: #FF602F;
}
.wpo-about-section-s3 .about-left-side .wpo-fun-fact-grids {
  padding-top: 0;
  align-items: start;
}
@media (max-width: 575px) {
  .wpo-about-section-s3 .about-left-side .wpo-fun-fact-grids .grid:last-child {
    padding-bottom: 0;
  }
}
.wpo-about-section-s3 .about-left-side .wpo-fun-fact-grids p {
  max-width: 140px;
}
@media (max-width: 1199px) {
  .wpo-about-section-s3 .about-left-side .wpo-fun-fact-grids p {
    font-size: 17px;
  }
}
@media (max-width: 991px) {
  .wpo-about-section-s3 .about-left-side .wpo-fun-fact-grids p {
    font-size: 16px;
    max-width: unset;
  }
}

.wpo-story-section p {
  margin: 0;
  color: #1B240F;
  font-weight: 400;
  font-size: 18px;
  line-height: 145%;
  letter-spacing: -0.32px;
}
@media (max-width: 1199px) {
  .wpo-story-section p {
    font-size: 16px;
    line-height: 130%;
  }
}
.wpo-story-section .story-left {
  max-width: 430px;
  margin-left: -3px;
}
@media (max-width: 991px) {
  .wpo-story-section .story-left {
    margin: 0;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 40px;
  }
}
.wpo-story-section .story-left h3 {
  margin: 0;
  font-weight: 500;
  font-size: 24px;
  line-height: 145%;
  letter-spacing: -0.32px;
  padding-bottom: 30px;
}
@media (max-width: 1199px) {
  .wpo-story-section .story-left h3 {
    font-size: 20px;
    line-height: 135%;
  }
}
.wpo-story-section .story-card {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding-left: 70px;
}
@media (max-width: 1354px) {
  .wpo-story-section .story-card {
    padding-left: 0;
  }
}
.wpo-story-section .story-card .story-image {
  overflow: hidden;
}
.wpo-story-section .story-card .story-image img {
  width: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  transition: opacity 0.5s ease, filter 0.5s ease, transform 0.5s ease;
}
.wpo-story-section .story-card .story-image img.blur {
  opacity: 0;
  filter: blur(1px);
  transform: scale(1.1);
}
.wpo-story-section .story-card .story-content {
  max-width: 305px;
}
@media (max-width: 767px) {
  .wpo-story-section .story-card .story-content {
    max-width: unset;
  }
}
.wpo-story-section .story-card .story-content .story-item {
  display: flex;
  gap: 25px;
  padding-bottom: 50px;
  transition: all 0.5s ease;
}
@media (max-width: 1199px) {
  .wpo-story-section .story-card .story-content .story-item {
    padding-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .wpo-story-section .story-card .story-content .story-item {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
}
.wpo-story-section .story-card .story-content .story-item:last-child {
  padding-bottom: 0;
}
.wpo-story-section .story-card .story-content .story-item .line {
  width: 100%;
  max-width: 30px;
  height: 1px;
  background: rgba(63, 78, 38, 0.2);
  margin-top: 10px;
}
.wpo-story-section .story-card .story-content .story-item span {
  font-weight: 500;
  font-size: 24px;
  line-height: 87%;
  letter-spacing: -0.64px;
  text-transform: uppercase;
  color: rgba(27, 36, 15, 0.2);
  transition: all 0.35s ease;
}
.wpo-story-section .story-card .story-content .story-item .story-text span {
  font-weight: 600;
  color: #1B240F;
  display: block;
  text-transform: capitalize;
  padding-bottom: 30px;
}
@media (max-width: 1199px) {
  .wpo-story-section .story-card .story-content .story-item .story-text span {
    padding-bottom: 15px;
  }
}
.wpo-story-section .story-card .story-content .story-item .story-text p {
  font-weight: 500;
  color: #374324;
}
@media (max-width: 767px) {
  .wpo-story-section .story-card .story-content .story-item .story-text p {
    font-size: 16px;
  }
}
.wpo-story-section .story-card .story-content .story-item:hover .number span, .wpo-story-section .story-card .story-content .story-item.active .number span {
  color: #000;
}
.wpo-story-section .mobile-image {
  display: none;
}
.wpo-story-section .mobile-image img {
  width: 100%;
}
@media (max-width: 767px) {
  .wpo-story-section .story-card {
    display: block;
  }
  .wpo-story-section .story-image {
    display: none;
  }
  .wpo-story-section .story-content {
    max-width: 100%;
  }
  .wpo-story-section .story-item {
    display: block;
    padding-bottom: 40px;
  }
  .wpo-story-section .mobile-image {
    display: block;
  }
  .wpo-story-section .line {
    display: none;
  }
}

.wpo-team-section-s3 {
  padding-bottom: 90px;
}
.wpo-team-section-s3 .team-item {
  flex-wrap: wrap;
  gap: 5px;
}
.wpo-team-section-s3 .team-item .team-card {
  margin-bottom: 30px;
  max-width: 439px;
  width: 100%;
}
@media (max-width: 1354px) {
  .wpo-team-section-s3 .team-item .team-card {
    max-width: 367px;
  }
}
@media (max-width: 1199px) {
  .wpo-team-section-s3 .team-item .team-card {
    max-width: 307px;
  }
}
@media (max-width: 991px) {
  .wpo-team-section-s3 .team-item .team-card {
    max-width: 344px;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .wpo-team-section-s3 .team-item .team-card {
    max-width: 254px;
  }
}
@media (max-width: 575px) {
  .wpo-team-section-s3 .team-item .team-card {
    max-width: unset;
  }
}

.wpo-portfolio-section-s3 {
  padding-bottom: 90px;
  background-color: transparent;
}
@media (max-width: 991px) {
  .wpo-portfolio-section-s3 {
    padding-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .wpo-portfolio-section-s3 {
    padding-bottom: 30px;
  }
}
.wpo-portfolio-section-s3 .wpo-portfolio-wrap .portfolio-card {
  display: block;
  opacity: 1;
  border: 0;
  padding: 0;
  margin-bottom: 30px;
}
.wpo-portfolio-section-s3 .wpo-portfolio-wrap .portfolio-card .portfolio-content {
  flex-direction: column;
}
.wpo-portfolio-section-s3 .wpo-portfolio-wrap .portfolio-card .portfolio-content .portfolio-text {
  max-width: 345px;
}
@media (max-width: 1199px) {
  .wpo-portfolio-section-s3 .wpo-portfolio-wrap .portfolio-card .portfolio-content .portfolio-text {
    max-width: 280px;
  }
}
.wpo-portfolio-section-s3 .wpo-portfolio-wrap .portfolio-card .portfolio-content .portfolio-text span a {
  color: #1B240F;
}
.wpo-portfolio-section-s3 .wpo-portfolio-wrap .portfolio-card .portfolio-content .portfolio-info {
  max-width: 275px;
}
.wpo-portfolio-section-s3 .wpo-portfolio-wrap .portfolio-card .portfolio-content .portfolio-info ul li {
  color: #787878;
  gap: 50px;
}
.wpo-portfolio-section-s3 .wpo-portfolio-wrap .portfolio-card .portfolio-content .portfolio-info ul li span {
  color: #131907;
}
.wpo-portfolio-section-s3 .wpo-portfolio-wrap .portfolio-card .portfolio-view {
  padding: 0;
  padding-top: 20px;
}
.wpo-portfolio-section-s3 .wpo-portfolio-wrap .portfolio-card .portfolio-view .view-link {
  color: #131907;
}
.wpo-portfolio-section-s3 .wpo-portfolio-wrap .portfolio-card .image-item {
  flex-direction: column;
  max-width: unset;
}
.wpo-portfolio-section-s3 .wpo-portfolio-wrap .portfolio-card .image-item .text {
  order: 2;
  padding-bottom: 20px;
}
.wpo-portfolio-section-s3 .wpo-portfolio-wrap .portfolio-card .image-item .text small {
  color: #787878;
}
.wpo-portfolio-section-s3 .wpo-portfolio-wrap .portfolio-card .image-item .image {
  width: 100%;
  order: 1;
  max-width: unset;
  max-height: unset;
}

/*======================================
10.0 Service Single Page
 =======================================*/
/* service-single-page */
.wpo-service-single-page {
  padding-bottom: 90px;
}
@media (max-width: 991px) {
  .wpo-service-single-page {
    padding-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .wpo-service-single-page {
    padding-bottom: 30px;
  }
}
.wpo-service-single-page .container-fluid {
  margin: 0 auto;
  max-width: 1720px;
}
.wpo-service-single-page .service-title {
  padding-bottom: 30px;
}
@media (max-width: 991px) {
  .wpo-service-single-page .service-title {
    text-align: center;
  }
}
.wpo-service-single-page h2 {
  font-size: 60px;
  font-weight: 400;
  line-height: 120%;
  margin-bottom: 40px;
}
@media (max-width: 1399px) {
  .wpo-service-single-page h2 {
    font-size: 55px;
  }
}
@media (max-width: 1199px) {
  .wpo-service-single-page h2 {
    font-size: 50px;
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .wpo-service-single-page h2 {
    font-size: 45px;
    line-height: 115%;
    margin-bottom: 10px;
  }
}
@media (max-width: 575px) {
  .wpo-service-single-page h2 {
    font-size: 37px;
    line-height: 110%;
  }
}
@media (max-width: 425px) {
  .wpo-service-single-page h2 {
    font-size: 30px;
  }
}
.wpo-service-single-page p {
  color: #374324;
  font-size: 20px;
  font-weight: 400;
  line-height: 160%;
}
@media (max-width: 991px) {
  .wpo-service-single-page p {
    font-size: 18px;
    line-height: 150%;
  }
}
@media (max-width: 575px) {
  .wpo-service-single-page p {
    font-size: 16px;
    line-height: 140%;
  }
}
.wpo-service-single-page p:last-child {
  margin-bottom: 0;
}
.wpo-service-single-page p span {
  color: #374324;
  font-size: 50px;
}
@media (max-width: 1399px) {
  .wpo-service-single-page p span {
    font-size: 35px;
  }
}
@media (max-width: 575px) {
  .wpo-service-single-page p span {
    font-size: 28px;
  }
}
.wpo-service-single-page .service-top-item .content {
  max-width: 999px;
}
@media (max-width: 991px) {
  .wpo-service-single-page .service-top-item .content {
    text-align: center;
    padding-bottom: 30px;
  }
}
.wpo-service-single-page .service-top-item .video {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 578px;
  position: relative;
  margin-left: auto;
}
@media (max-width: 1399px) {
  .wpo-service-single-page .service-top-item .video {
    height: 478px;
  }
}
@media (max-width: 991px) {
  .wpo-service-single-page .service-top-item .video {
    margin-left: 0;
    max-width: 590px;
    margin: 0 auto;
  }
}
@media (max-width: 991px) {
  .wpo-service-single-page .service-top-item .video {
    height: 400px;
  }
}
@media (max-width: 767px) {
  .wpo-service-single-page .service-top-item .video {
    height: 300px;
  }
}
.wpo-service-single-page .service-top-item .video-holder {
  text-align: center;
}
.wpo-service-single-page .service-top-item .video-holder:hover:before {
  opacity: 0.8;
}
.wpo-service-single-page .service-top-item .video-holder a {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 83px;
  height: 83px;
  line-height: 80px;
  background: #fff;
  border-radius: 50%;
  z-index: 1;
}
@media (max-width: 767px) {
  .wpo-service-single-page .service-top-item .video-holder a {
    width: 60px;
    height: 60px;
    line-height: 60px;
  }
}
.wpo-service-single-page .service-top-item .video-holder a:after {
  position: absolute;
  left: -12px;
  top: -12px;
  width: 106px;
  height: 106px;
  content: "";
  border-radius: 106px;
  z-index: -1;
  border: 1px solid #fff;
}
@media (max-width: 767px) {
  .wpo-service-single-page .service-top-item .video-holder a:after {
    width: 70px;
    height: 70px;
    left: -6px;
    top: -6px;
  }
}
.wpo-service-single-page .service-top-item .video-holder .fi:before {
  font-size: 24px;
  font-size: 1.3333333333rem;
  color: #556B2F;
}
.wpo-service-single-page .dream-wrap {
  display: flex;
  flex-direction: row-reverse;
  padding-top: 100px;
}
@media (max-width: 1199px) {
  .wpo-service-single-page .dream-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 991px) {
  .wpo-service-single-page .dream-wrap {
    padding-top: 80px;
  }
}
@media (max-width: 767px) {
  .wpo-service-single-page .dream-wrap {
    padding-top: 50px;
  }
}
.wpo-service-single-page .dream-wrap .image-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  width: calc(100% - 588px);
}
@media (max-width: 1599px) {
  .wpo-service-single-page .dream-wrap .image-wrap {
    width: calc(100% - 500px);
  }
}
@media (max-width: 1399px) {
  .wpo-service-single-page .dream-wrap .image-wrap {
    width: calc(100% - 700px);
  }
}
@media (max-width: 1199px) {
  .wpo-service-single-page .dream-wrap .image-wrap {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .wpo-service-single-page .dream-wrap .image-wrap {
    flex-direction: column;
    justify-content: center;
  }
}
.wpo-service-single-page .dream-wrap .image-wrap .image {
  width: 100%;
}
.wpo-service-single-page .dream-wrap .image-wrap .image img {
  width: 100%;
}
.wpo-service-single-page .dream-wrap .service-title {
  max-width: 588px;
  padding-left: 70px;
}
@media (max-width: 1599px) {
  .wpo-service-single-page .dream-wrap .service-title {
    padding-left: 20px;
  }
}
@media (max-width: 1399px) {
  .wpo-service-single-page .dream-wrap .service-title {
    max-width: 700px;
  }
}
@media (max-width: 1199px) {
  .wpo-service-single-page .dream-wrap .service-title {
    padding-left: 0;
  }
}
@media (max-width: 991px) {
  .wpo-service-single-page .dream-wrap .service-title {
    margin: 0 auto;
  }
}
.wpo-service-single-page .service-business-wrap {
  padding-top: 100px;
}
@media (max-width: 991px) {
  .wpo-service-single-page .service-business-wrap {
    padding-top: 80px;
  }
}
@media (max-width: 767px) {
  .wpo-service-single-page .service-business-wrap {
    padding-top: 50px;
  }
}
.wpo-service-single-page .service-business-wrap .image-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
@media (max-width: 767px) {
  .wpo-service-single-page .service-business-wrap .image-wrap {
    flex-direction: column;
    justify-content: center;
  }
}
.wpo-service-single-page .service-business-wrap .image-wrap .image {
  width: 100%;
}
.wpo-service-single-page .service-business-wrap .image-wrap .image img {
  width: 100%;
}
.wpo-service-single-page .service-business-wrap .image-wrap .col:last-child {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media (max-width: 991px) {
  .wpo-service-single-page .service-business-wrap .image-wrap .col:last-child {
    display: block;
  }
}
.wpo-service-single-page .service-business-wrap .image-wrap .col:last-child .image {
  max-width: 550px;
  max-height: 408px;
}
@media (max-width: 991px) {
  .wpo-service-single-page .service-business-wrap .image-wrap .col:last-child .image {
    display: block;
    max-width: 100%;
    max-height: 100%;
    margin-bottom: 20px;
  }
}
.wpo-service-single-page .wpo-faq-wrap {
  padding-top: 100px;
}
@media (max-width: 991px) {
  .wpo-service-single-page .wpo-faq-wrap {
    padding-top: 80px;
  }
}
@media (max-width: 767px) {
  .wpo-service-single-page .wpo-faq-wrap {
    padding-top: 50px;
  }
}
.wpo-service-single-page .wpo-faq-wrap .service-title h2 {
  margin: 0;
}
.wpo-service-single-page .wpo-faq-wrap .accordion-button {
  font-size: 30px;
  padding: 40px;
  color: rgb(44, 38, 38);
  background-color: transparent;
  border: 1px solid rgb(223, 222, 219);
}
@media (max-width: 1199px) {
  .wpo-service-single-page .wpo-faq-wrap .accordion-button {
    font-size: 27px;
  }
}
@media (max-width: 991px) {
  .wpo-service-single-page .wpo-faq-wrap .accordion-button {
    font-size: 24px;
    padding: 30px;
  }
}
@media (max-width: 575px) {
  .wpo-service-single-page .wpo-faq-wrap .accordion-button {
    font-size: 20px;
    padding: 18px;
  }
}
.wpo-service-single-page .wpo-faq-wrap .accordion-body {
  padding: 40px;
  background-color: transparent;
  border: 1px solid rgb(223, 222, 219);
  border-top: 0;
}
@media (max-width: 991px) {
  .wpo-service-single-page .wpo-faq-wrap .accordion-body {
    padding: 30px;
  }
}
@media (max-width: 575px) {
  .wpo-service-single-page .wpo-faq-wrap .accordion-body {
    padding: 18px;
  }
}
.wpo-service-single-page .wpo-faq-wrap .accordion-body p {
  font-size: 20px;
  color: #374324;
  line-height: 36px;
}
@media (max-width: 991px) {
  .wpo-service-single-page .wpo-faq-wrap .accordion-body p {
    font-size: 18px;
    line-height: 28px;
  }
}
@media (max-width: 575px) {
  .wpo-service-single-page .wpo-faq-wrap .accordion-body p {
    font-size: 16px;
    line-height: 24px;
  }
}
.wpo-service-single-page .wpo-service-section-s2 {
  padding: 0;
}
.wpo-service-single-page .wpo-service-section-s2 .service-all-content {
  padding-top: 100px;
}
.wpo-service-single-page .wpo-service-section-s2 .service-all-content .service-item {
  padding: 0;
  border: 0;
}
.wpo-service-single-page .wpo-service-section-s2 .service-all-content .service-item .service-content {
  padding-top: 20px;
}
.wpo-service-single-page .wpo-service-section-s2 .service-all-content .service-item .service-content span {
  max-width: unset;
}

.theme-accordion-s1 {
  margin-bottom: 0;
}

.accordion-button:not(.collapsed) {
  background-color: transparent;
  color: rgb(44, 38, 38);
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-item {
  margin-bottom: 30px;
  border: 0;
  background-color: transparent;
}
.accordion-item:last-child {
  margin-bottom: 0;
}
.accordion-item h3 {
  font-family: "Inter Display";
  font-weight: 400;
}

.accordion-collapse {
  border-top: 0;
}

/*=====================================================
9.0 Portfolio Single Page
======================================================*/
.wpo-portfolio-single-area {
  padding-bottom: 70px;
}
@media (max-width: 991px) {
  .wpo-portfolio-single-area {
    padding-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .wpo-portfolio-single-area {
    padding-bottom: 20px;
  }
}
.wpo-portfolio-single-area .wpo-portfolio-single-wrap .wpo-portfolio-single-title h2 {
  font-weight: 500;
  font-size: 45px;
  line-height: 110%;
  margin-bottom: 20px;
}
@media (max-width: 1199px) {
  .wpo-portfolio-single-area .wpo-portfolio-single-wrap .wpo-portfolio-single-title h2 {
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  .wpo-portfolio-single-area .wpo-portfolio-single-wrap .wpo-portfolio-single-title h2 {
    font-size: 35px;
  }
}
@media (max-width: 575px) {
  .wpo-portfolio-single-area .wpo-portfolio-single-wrap .wpo-portfolio-single-title h2 {
    font-size: 30px;
  }
}
.wpo-portfolio-single-area .wpo-portfolio-single-wrap p {
  font-size: 20px;
  line-height: 155%;
  color: #374324;
}
@media (max-width: 991px) {
  .wpo-portfolio-single-area .wpo-portfolio-single-wrap p {
    font-size: 18px;
    line-height: 150%;
  }
}
@media (max-width: 575px) {
  .wpo-portfolio-single-area .wpo-portfolio-single-wrap p {
    font-size: 16px;
    line-height: 140%;
  }
}
.wpo-portfolio-single-area .wpo-portfolio-single-wrap .wpo-portfolio-single-item {
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .wpo-portfolio-single-area .wpo-portfolio-single-wrap .wpo-portfolio-single-item {
    margin-bottom: 40px;
  }
}
.wpo-portfolio-single-area .wpo-portfolio-single-wrap .wpo-portfolio-single-item .wpo-portfolio-single-main-img {
  margin-bottom: 50px;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .wpo-portfolio-single-area .wpo-portfolio-single-wrap .wpo-portfolio-single-item .wpo-portfolio-single-main-img {
    margin-bottom: 40px;
  }
}
.wpo-portfolio-single-area .wpo-portfolio-single-wrap .wpo-portfolio-single-item .wpo-portfolio-single-main-img .owl-controls {
  width: 100%;
  margin: 0;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.wpo-portfolio-single-area .wpo-portfolio-single-wrap .wpo-portfolio-single-item .wpo-portfolio-single-main-img .owl-nav [class*=owl-]:hover {
  background: #556B2F;
  color: #fff;
}
.wpo-portfolio-single-area .wpo-portfolio-single-wrap .wpo-portfolio-single-item .wpo-portfolio-single-main-img .owl-nav [class*=owl-] {
  background: #fff;
  width: 50px;
  height: 50px;
  line-height: 58px;
  padding: 0;
  margin: 0;
  border-radius: 50%;
  color: #556B2F;
  transition: all 0.3s;
  border: 0;
}
@media (max-width: 575px) {
  .wpo-portfolio-single-area .wpo-portfolio-single-wrap .wpo-portfolio-single-item .wpo-portfolio-single-main-img .owl-nav [class*=owl-] {
    width: 40px;
    height: 40px;
    line-height: 44px;
  }
}
.wpo-portfolio-single-area .wpo-portfolio-single-wrap .wpo-portfolio-single-item .wpo-portfolio-single-main-img .owl-nav [class*=owl-] .fi::before {
  font-size: 20px;
}
@media (max-width: 575px) {
  .wpo-portfolio-single-area .wpo-portfolio-single-wrap .wpo-portfolio-single-item .wpo-portfolio-single-main-img .owl-nav [class*=owl-] .fi::before {
    font-size: 17px;
  }
}
.wpo-portfolio-single-area .wpo-portfolio-single-wrap .wpo-portfolio-single-item .wpo-portfolio-single-main-img .owl-nav .owl-prev,
.wpo-portfolio-single-area .wpo-portfolio-single-wrap .wpo-portfolio-single-item .wpo-portfolio-single-main-img .owl-nav .owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.wpo-portfolio-single-area .wpo-portfolio-single-wrap .wpo-portfolio-single-item .wpo-portfolio-single-main-img .owl-nav .owl-prev {
  left: 15px;
}
.wpo-portfolio-single-area .wpo-portfolio-single-wrap .wpo-portfolio-single-item .wpo-portfolio-single-main-img .owl-nav .owl-next {
  right: 15px;
}
.wpo-portfolio-single-area .wpo-portfolio-single-wrap .wpo-portfolio-single-item .wpo-portfolio-single-content-des-right {
  max-width: 380px;
  flex-basis: 35%;
  margin-left: auto;
  margin-bottom: 50px;
}
@media (max-width: 1200px) {
  .wpo-portfolio-single-area .wpo-portfolio-single-wrap .wpo-portfolio-single-item .wpo-portfolio-single-content-des-right {
    flex-basis: 100%;
    margin-bottom: 40px;
  }
}
@media (max-width: 991px) {
  .wpo-portfolio-single-area .wpo-portfolio-single-wrap .wpo-portfolio-single-item .wpo-portfolio-single-content-des-right {
    margin-left: 0;
    max-width: 100%;
    margin-top: 20px;
  }
}
.wpo-portfolio-single-area .wpo-portfolio-single-wrap .wpo-portfolio-single-item .wpo-portfolio-single-content-des-right ul {
  list-style: none;
  padding: 50px 30px;
  box-shadow: 0px 2px 10px rgba(14, 29, 44, 0.15);
}
@media (max-width: 1199px) {
  .wpo-portfolio-single-area .wpo-portfolio-single-wrap .wpo-portfolio-single-item .wpo-portfolio-single-content-des-right ul {
    padding: 30px 20px;
  }
}
.wpo-portfolio-single-area .wpo-portfolio-single-wrap .wpo-portfolio-single-item .wpo-portfolio-single-content-des-right ul li {
  display: flex;
  padding: 10px 0;
  font-size: 16px;
  color: #131907;
  font-weight: 600;
  position: relative;
  justify-content: space-between;
  font-weight: 600;
}
.wpo-portfolio-single-area .wpo-portfolio-single-wrap .wpo-portfolio-single-item .wpo-portfolio-single-content-des-right ul li span {
  flex-basis: 60%;
  color: #374324;
  font-weight: 400;
}
.wpo-portfolio-single-area .wpo-portfolio-single-wrap .wpo-portfolio-single-item .wpo-portfolio-single-content-des-right ul li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.wpo-portfolio-single-area .wpo-portfolio-single-wrap .wpo-portfolio-single-item .wpo-portfolio-single-content-des-right ul li:first-child {
  padding-top: 0;
}
@media (max-width: 991px) {
  .wpo-portfolio-single-area .wpo-portfolio-single-wrap .wpo-portfolio-single-item.related-portfolio {
    margin-bottom: 20px;
  }
}
.wpo-portfolio-single-area .wpo-portfolio-single-wrap .list-widget ul {
  list-style: none;
}
.wpo-portfolio-single-area .wpo-portfolio-single-wrap .list-widget ul li {
  padding: 7px 0;
  padding-left: 35px;
  position: relative;
  color: #374324;
}
.wpo-portfolio-single-area .wpo-portfolio-single-wrap .list-widget ul li:before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 25px;
  height: 25px;
  line-height: 25px;
  border-radius: 50%;
  background: rgba(85, 107, 47, 0.1);
  content: "\e64c";
  font-family: "themify";
  text-align: center;
  color: #556B2F;
  font-size: 12px;
}
.wpo-portfolio-single-area .wpo-portfolio-single-wrap .wpo-p-details-img {
  margin-bottom: 10px;
}
.wpo-portfolio-single-area .wpo-portfolio-single-wrap .wpo-portfolio-single-item-quote {
  padding: 45px;
  background: rgba(85, 107, 47, 0.1);
  text-align: center;
  border-radius: 15px;
}
@media (max-width: 991px) {
  .wpo-portfolio-single-area .wpo-portfolio-single-wrap .wpo-portfolio-single-item-quote {
    padding: 20px;
    margin-top: 30px;
  }
}
.wpo-portfolio-single-area .wpo-portfolio-single-wrap .wpo-portfolio-single-item-quote p {
  font-size: 22px;
  margin-bottom: 30px;
  color: #131907;
  line-height: 35px;
}
@media (max-width: 991px) {
  .wpo-portfolio-single-area .wpo-portfolio-single-wrap .wpo-portfolio-single-item-quote p {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 20px;
  }
}
@media (max-width: 575px) {
  .wpo-portfolio-single-area .wpo-portfolio-single-wrap .wpo-portfolio-single-item-quote p {
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 20px;
  }
}
.wpo-portfolio-single-area .wpo-portfolio-single-wrap .wpo-portfolio-single-item-quote span {
  font-size: 22px;
  font-weight: 600;
  color: #131907;
}
@media (max-width: 991px) {
  .wpo-portfolio-single-area .wpo-portfolio-single-wrap .wpo-portfolio-single-item-quote span {
    font-size: 16px;
  }
}
.wpo-portfolio-single-area .wpo-portfolio-single-wrap .wpo-portfolio-single-item-quote span span {
  color: #556B2F;
  font-weight: 400;
}
@media (max-width: 991px) {
  .wpo-portfolio-single-area .wpo-portfolio-single-wrap .list-widget-s {
    margin-top: 30px;
  }
}
.wpo-portfolio-single-area .wpo-portfolio-single-wrap .wpo-portfolio-single-gallery {
  margin-bottom: 30px;
}
.wpo-portfolio-single-area .wpo-portfolio-single-wrap .wpo-portfolio-contact-area {
  padding: 50px 40px 40px;
  box-shadow: 0px 2px 8px 2px rgba(22, 14, 71, 0.1);
}
@media (max-width: 991px) {
  .wpo-portfolio-single-area .wpo-portfolio-single-wrap .wpo-portfolio-contact-area {
    padding: 40px 30px 30px;
  }
}
@media (max-width: 575px) {
  .wpo-portfolio-single-area .wpo-portfolio-single-wrap .wpo-portfolio-contact-area {
    padding: 30px 20px 20px;
  }
}
.wpo-portfolio-single-area .wpo-portfolio-single-wrap .wpo-portfolio-contact-area .wpo-contact-title {
  margin-bottom: 30px;
}
.wpo-portfolio-single-area .wpo-portfolio-single-wrap .wpo-portfolio-contact-area .wpo-contact-title h3 {
  font-size: 35px;
  line-height: 105%;
  font-weight: 600;
}
@media (max-width: 767px) {
  .wpo-portfolio-single-area .wpo-portfolio-single-wrap .wpo-portfolio-contact-area .wpo-contact-title h3 {
    font-size: 28px;
  }
}
.wpo-portfolio-single-area .wpo-portfolio-single-wrap .wpo-portfolio-contact-area .wpo-contact-form-area .col {
  margin-bottom: 30px;
}
.wpo-portfolio-single-area .wpo-portfolio-single-wrap .wpo-portfolio-contact-area .wpo-contact-form-area .form-control {
  height: 50px;
  border: 0;
  border-bottom: 1px solid #E8E8E8;
  border-radius: 0;
  background: none;
  padding: 0;
  color: #787878;
}
.wpo-portfolio-single-area .wpo-portfolio-single-wrap .wpo-portfolio-contact-area .wpo-contact-form-area .form-control:focus {
  outline: none;
  box-shadow: none;
}
.wpo-portfolio-single-area .wpo-portfolio-single-wrap .wpo-portfolio-contact-area .wpo-contact-form-area textarea.form-control {
  height: 120px;
}
.wpo-portfolio-single-area .wpo-portfolio-single-wrap .wpo-portfolio-contact-area .wpo-contact-form-area select.form-control {
  color: #787878;
  background: transparent url(../images/select-icon.png) no-repeat calc(100% - 15px) center;
}
.wpo-portfolio-single-area .wpo-portfolio-single-wrap .wpo-portfolio-contact-area .wpo-contact-form-area .submit-area .theme-btn {
  border: none;
}
.wpo-portfolio-single-area .wpo-portfolio-single-wrap .portfolio-single {
  background: #f5f5f5;
  transition: all 0.4s ease-in-out;
  padding: 35px;
}
@media (max-width: 991px) {
  .wpo-portfolio-single-area .wpo-portfolio-single-wrap .portfolio-single {
    margin-bottom: 30px;
  }
}
@media (max-width: 1280px) {
  .wpo-portfolio-single-area .wpo-portfolio-single-wrap .portfolio-single {
    padding: 30px 25px;
  }
}
@media (max-width: 580px) {
  .wpo-portfolio-single-area .wpo-portfolio-single-wrap .portfolio-single {
    padding: 25px 15px;
  }
}
.wpo-portfolio-single-area .wpo-portfolio-single-wrap .portfolio-single .portfolio-single-img {
  overflow: hidden;
}
.wpo-portfolio-single-area .wpo-portfolio-single-wrap .portfolio-single .portfolio-single-img img {
  width: 100%;
  transition: all 0.4s ease-in-out;
}
.wpo-portfolio-single-area .wpo-portfolio-section-s3 {
  padding: 0;
}
.wpo-portfolio-single-area .wpo-portfolio-section-s3 .container {
  padding: 0;
}
.wpo-portfolio-single-area .wpo-portfolio-section-s3 .portfolio-card .image img {
  border-radius: 0;
}

/*==========================================
11.0 Team Single Page
===========================================*/
.team-pg-area .container {
  max-width: 1500px;
}
@media (max-width: 991px) {
  .team-pg-area .container {
    max-width: 697px;
    margin: 0 auto;
  }
}
.team-pg-area h2 {
  font-weight: 600;
  font-size: 55px;
  line-height: 100%;
  margin-top: 0;
  margin-bottom: 30px;
}
@media (max-width: 1399px) {
  .team-pg-area h2 {
    font-size: 50px;
  }
}
@media (max-width: 1199px) {
  .team-pg-area h2 {
    font-size: 45px;
  }
}
@media (max-width: 991px) {
  .team-pg-area h2 {
    font-size: 40px;
    margin-bottom: 20px;
  }
}
@media (max-width: 575px) {
  .team-pg-area h2 {
    font-size: 30px;
  }
}
.team-pg-area p {
  font-weight: 400;
  font-size: 20px;
  line-height: 160%;
  color: #374324;
}
@media (max-width: 991px) {
  .team-pg-area p {
    font-size: 18px;
    line-height: 150%;
  }
}
@media (max-width: 575px) {
  .team-pg-area p {
    font-size: 16px;
    line-height: 140%;
  }
}
.team-pg-area .wpo-contact-area {
  padding-top: 100px;
}
@media (max-width: 991px) {
  .team-pg-area .wpo-contact-area {
    padding-top: 80px;
  }
}
@media (max-width: 575px) {
  .team-pg-area .wpo-contact-area {
    padding-top: 60px;
  }
}
.team-pg-area .wpo-contact-area .wpo-contact-title {
  margin-bottom: 40px;
  text-align: start;
}
@media (max-width: 991px) {
  .team-pg-area .wpo-contact-area .wpo-contact-title {
    margin-bottom: 30px;
  }
}
.team-pg-area .wpo-contact-area .theme-btn {
  outline: 0;
  border: 0;
}
.team-pg-area .wpo-contact-area .quote-form .form-control {
  height: 60px;
  padding: 15px;
  background: transparent;
  font-size: 16px;
  margin-bottom: 20px;
  border: 1px solid rgb(223, 222, 219);
  border-radius: 8px;
  color: #374324;
}
@media (max-width: 767px) {
  .team-pg-area .wpo-contact-area .quote-form .form-control {
    height: 48px;
    font-size: 15px;
  }
}
.team-pg-area .wpo-contact-area .quote-form .form-control:focus {
  outline: none;
  box-shadow: none;
}
.team-pg-area .wpo-contact-area .quote-form textarea.form-control {
  height: 170px;
}
.team-pg-area .wpo-contact-area .quote-form select.form-control {
  -webkit-appearance: none;
  -o-appearance: none;
  appearance: none;
  -moz-appearance: none;
  background: transparent url(../images/select-icon.png) no-repeat calc(100% - 15px) center;
  position: relative;
  color: #374324;
}
.team-pg-area .quote-form .form-control::-moz-placeholder {
  color: #374324;
}
.team-pg-area .quote-form .form-control::placeholder {
  color: #374324;
}
.team-pg-area option {
  background-color: #000;
}
.team-pg-area .half-col {
  float: left;
  width: 50%;
  padding: 0 15px 5px;
  padding-left: 0;
}
@media (max-width: 575px) {
  .team-pg-area .half-col {
    width: 100%;
  }
}
.team-pg-area .full-col {
  padding: 0 15px 5px;
  padding-left: 0;
}
.team-pg-area .exprience-area {
  padding-top: 60px;
}

.team-info-img {
  min-height: 100%;
}
.team-info-img .team-info-img-sticky {
  position: sticky;
  top: 10px;
}
.team-info-img img {
  width: 100%;
}

.team-info-all-text {
  padding-left: 70px;
}
@media (max-width: 1399px) {
  .team-info-all-text {
    padding-left: 30px;
  }
}
@media (max-width: 991px) {
  .team-info-all-text {
    padding-left: 0;
  }
}

.team-info-text {
  padding-top: 80px;
}
@media (max-width: 575px) {
  .team-info-text {
    padding-top: 40px;
  }
}
.team-info-text ul {
  max-width: 720px;
  padding-top: 20px;
}
@media (max-width: 767px) {
  .team-info-text ul {
    padding-top: 0;
  }
}
.team-info-text ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 400;
  font-size: 20px;
  line-height: normal;
  color: #374324;
  margin-bottom: 30px;
  list-style: none;
}
@media (max-width: 767px) {
  .team-info-text ul li {
    font-size: 18px;
    margin-bottom: 20px;
  }
}
@media (max-width: 425px) {
  .team-info-text ul li {
    display: block;
    font-size: 16px;
  }
}
.team-info-text ul li:last-child {
  margin-bottom: 0;
}
.team-info-text ul li span {
  color: #787878;
  display: inline-block;
  position: relative;
  flex-basis: 62%;
}
.team-info-text ul li:last-child {
  margin-bottom: 0;
}

.team-widget {
  padding-top: 80px;
}
@media (max-width: 575px) {
  .team-widget {
    padding-top: 60px;
  }
}

.skills-area {
  padding-top: 70px;
}
@media (max-width: 991px) {
  .skills-area {
    padding-top: 60px;
  }
}
@media (max-width: 575px) {
  .skills-area {
    padding-top: 40px;
  }
}
.skills-area .wpo-skill-progress .wpo-progress-single {
  margin-bottom: 30px;
  position: relative;
}
@media (max-width: 767px) {
  .skills-area .wpo-skill-progress .wpo-progress-single {
    margin-bottom: 20px;
  }
}
.skills-area .wpo-skill-progress .wpo-progress-single h3 {
  font-weight: 400;
  font-size: 20px;
  line-height: 32px;
  color: #374324;
}
@media (max-width: 767px) {
  .skills-area .wpo-skill-progress .wpo-progress-single h3 {
    font-size: 18px;
  }
}
@media (max-width: 425px) {
  .skills-area .wpo-skill-progress .wpo-progress-single h3 {
    font-size: 16px;
  }
}
.skills-area .wpo-skill-progress .wpo-progress-single:last-child {
  margin-bottom: 0;
}
.skills-area .wpo-skill-progress .wpo-progress-single .progress {
  background: #E8E8E8;
  height: 10px;
  width: 100%;
  border-radius: 40px;
  position: relative;
}
.skills-area .wpo-skill-progress .wpo-progress-single .progress .progress-bar {
  background: #556B2F;
  border-radius: 56px;
}
.skills-area .wpo-skill-progress .progress-number {
  position: absolute;
  right: 0;
  top: -10px;
  font-weight: 500;
  font-size: 20px;
  line-height: 32px;
  color: #374324;
}
@media (max-width: 767px) {
  .skills-area .wpo-skill-progress .progress-number {
    font-size: 18px;
    top: -5px;
  }
}
@media (max-width: 425px) {
  .skills-area .wpo-skill-progress .progress-number {
    font-size: 16px;
    top: 0;
  }
}

/*======================================
7.0 Blog Page
 =======================================*/
/* Blog Page Section */
.wpo-blog-pg-section .container-fluid {
  max-width: 1410px;
}
@media (max-width: 991px) {
  .wpo-blog-pg-section .container-fluid {
    max-width: 697px;
    margin: 0 auto;
  }
}
.wpo-blog-pg-section .wpo-blog-wraper {
  display: flex;
  align-items: flex-start;
}
@media (max-width: 991px) {
  .wpo-blog-pg-section .wpo-blog-wraper {
    display: block;
  }
}
.wpo-blog-pg-section .entry-details {
  border: 1px solid rgb(232, 232, 232);
  background: transparent;
  padding: 15px 40px 30px;
}
@media (max-width: 1399px) {
  .wpo-blog-pg-section .entry-details {
    padding: 15px 20px 30px;
  }
}
@media (max-width: 767px) {
  .wpo-blog-pg-section .entry-details {
    padding: 15px 15px 20px;
  }
}
.wpo-blog-pg-section .wpo-blog-content {
  width: calc(100% - 363px);
  padding-right: 60px;
}
@media (max-width: 1399px) {
  .wpo-blog-pg-section .wpo-blog-content {
    padding-right: 20px;
  }
}
@media (max-width: 991px) {
  .wpo-blog-pg-section .wpo-blog-content {
    padding-right: 0px;
    width: 100%;
  }
}
.wpo-blog-pg-section .wpo-blog-content .post {
  margin-bottom: 60px;
}
@media (max-width: 991px) {
  .wpo-blog-pg-section .wpo-blog-content .post {
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .wpo-blog-pg-section .wpo-blog-content .post {
    margin-bottom: 40px;
  }
}
.wpo-blog-pg-section .entry-meta {
  list-style: none;
  overflow: hidden;
  margin-bottom: 20px;
}
.wpo-blog-pg-section .entry-meta ul {
  list-style: none;
}
.wpo-blog-pg-section .entry-meta ul li {
  color: #787878;
  font-size: 20px;
  font-weight: 400;
  line-height: 50px;
  display: inline-block;
}
.wpo-blog-pg-section .entry-meta ul li a {
  color: #787878;
}
.wpo-blog-pg-section .entry-meta ul li a:hover {
  color: #556B2F;
}
.wpo-blog-pg-section .entry-meta ul li i {
  position: relative;
  margin-right: 3px;
}
.wpo-blog-pg-section .entry-meta ul li i:before {
  font-size: 13px;
}
.wpo-blog-pg-section .entry-meta ul li + li {
  margin-left: 15px;
  padding-left: 15px;
  position: relative;
}
.wpo-blog-pg-section .entry-meta ul li + li:before {
  position: absolute;
  left: -5px;
  top: 50%;
  transform: translateY(-50%);
  width: 7px;
  height: 7px;
  content: "";
  background: #374324;
  border-radius: 50%;
}
@media (max-width: 440px) {
  .wpo-blog-pg-section .entry-meta ul li + li:before {
    display: none;
  }
}
@media (max-width: 440px) {
  .wpo-blog-pg-section .entry-meta ul li + li {
    margin-left: 0;
    padding-left: 0;
  }
}
@media (max-width: 767px) {
  .wpo-blog-pg-section .entry-meta ul li {
    font-size: 15px;
    line-height: 20px;
  }
}
@media (max-width: 440px) {
  .wpo-blog-pg-section .entry-meta ul li {
    float: none;
    display: block;
    margin-bottom: 5px;
  }
}
.wpo-blog-pg-section .post h2 {
  color: #1B240F;
  font-size: 45px;
  font-weight: 400;
  line-height: 110%;
  margin-bottom: 20px;
}
@media (max-width: 1199px) {
  .wpo-blog-pg-section .post h2 {
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  .wpo-blog-pg-section .post h2 {
    font-size: 35px;
  }
}
@media (max-width: 575px) {
  .wpo-blog-pg-section .post h2 {
    font-size: 30px;
    margin-bottom: 10px;
  }
}
@media (max-width: 425px) {
  .wpo-blog-pg-section .post h2 {
    font-size: 25px;
  }
}
.wpo-blog-pg-section .post h2 a {
  color: #1B240F;
}
.wpo-blog-pg-section .post h2 a:hover {
  color: #556B2F;
}
.wpo-blog-pg-section .post p {
  margin-bottom: 30px;
  color: #374324;
  font-size: 20px;
  font-weight: 400;
  line-height: 35px;
}
@media (max-width: 991px) {
  .wpo-blog-pg-section .post p {
    font-size: 18px;
    line-height: 30px;
  }
}
@media (max-width: 575px) {
  .wpo-blog-pg-section .post p {
    font-size: 16px;
    line-height: 25px;
    margin-bottom: 20px;
  }
}
.wpo-blog-pg-section .post a.read-more {
  color: #374324;
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  text-decoration: underline;
}
@media (max-width: 767px) {
  .wpo-blog-pg-section .post a.read-more {
    font-size: 16px;
    line-height: 20px;
  }
}
.wpo-blog-pg-section .post a.read-more:hover {
  color: #556B2F;
}
.wpo-blog-pg-section .entry-media img {
  width: 100%;
}
.wpo-blog-pg-section {
  /*** format-gallery ***/
}
.wpo-blog-pg-section .format-gallery {
  position: relative;
}
.wpo-blog-pg-section .format-gallery .owl-controls {
  width: 100%;
  margin: 0;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.wpo-blog-pg-section .format-gallery .owl-nav [class*=owl-]:hover {
  background: #556B2F;
  color: #fff;
}
.wpo-blog-pg-section .format-gallery .owl-nav [class*=owl-] {
  background: #fff;
  width: 50px;
  height: 50px;
  line-height: 58px;
  padding: 0;
  margin: 0;
  color: #787878;
  transition: all 0.3s;
  border: 0;
}
@media (max-width: 767px) {
  .wpo-blog-pg-section .format-gallery .owl-nav [class*=owl-] {
    width: 40px;
    height: 40px;
    line-height: 45px;
  }
}
.wpo-blog-pg-section .format-gallery .owl-nav [class*=owl-] .fi::before {
  font-size: 18px;
}
@media (max-width: 767px) {
  .wpo-blog-pg-section .format-gallery .owl-nav [class*=owl-] .fi::before {
    font-size: 15px;
  }
}
.wpo-blog-pg-section .format-gallery .owl-nav .owl-prev,
.wpo-blog-pg-section .format-gallery .owl-nav .owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.wpo-blog-pg-section .format-gallery .owl-nav .owl-prev {
  left: 10px;
}
.wpo-blog-pg-section .format-gallery .owl-nav .owl-next {
  right: 10px;
}
.wpo-blog-pg-section {
  /*** format-video ***/
}
.wpo-blog-pg-section .format-video .video-holder {
  position: relative;
  text-align: center;
}
.wpo-blog-pg-section .format-video .video-holder:hover:before {
  opacity: 0.8;
}
.wpo-blog-pg-section .format-video .video-holder a {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 83px;
  height: 83px;
  line-height: 80px;
  background: #fff;
  border-radius: 50%;
  z-index: 1;
}
@media (max-width: 767px) {
  .wpo-blog-pg-section .format-video .video-holder a {
    width: 60px;
    height: 60px;
    line-height: 60px;
  }
}
.wpo-blog-pg-section .format-video .video-holder a:after {
  position: absolute;
  left: -12px;
  top: -12px;
  width: 106px;
  height: 106px;
  content: "";
  border-radius: 106px;
  z-index: -1;
  border: 1px solid #fff;
}
@media (max-width: 767px) {
  .wpo-blog-pg-section .format-video .video-holder a:after {
    width: 75px;
    height: 75px;
    left: -8px;
    top: -8px;
  }
}
.wpo-blog-pg-section .format-video .video-holder .fi:before {
  font-size: 24px;
  font-size: 1.3333333333rem;
  color: #556B2F;
}

.wpo-blog-section-s3 .wpo-blog-wrap {
  flex-wrap: wrap;
}
@media (max-width: 1354px) {
  .wpo-blog-section-s3 .wpo-blog-wrap .blog-card {
    max-width: 367px;
  }
}
@media (max-width: 1199px) {
  .wpo-blog-section-s3 .wpo-blog-wrap .blog-card {
    max-width: 307px;
  }
}
@media (max-width: 991px) {
  .wpo-blog-section-s3 .wpo-blog-wrap .blog-card {
    width: 100%;
    max-width: 344px;
  }
}
@media (max-width: 767px) {
  .wpo-blog-section-s3 .wpo-blog-wrap .blog-card {
    max-width: unset;
  }
}

/*======================================
8.0 Blog Single Page
 =======================================*/
/* wpo-blog-single-section*/
.wpo-blog-single-section .container-fluid {
  max-width: 1410px;
}
@media (max-width: 991px) {
  .wpo-blog-single-section .container-fluid {
    max-width: 750px;
    margin: 0 auto;
  }
}
.wpo-blog-single-section .wpo-blog-wraper {
  display: flex;
  align-items: flex-start;
}
@media (max-width: 991px) {
  .wpo-blog-single-section .wpo-blog-wraper {
    display: block;
  }
}
.wpo-blog-single-section .wpo-blog-content {
  width: calc(100% - 363px);
  padding-right: 60px;
}
@media (max-width: 1399px) {
  .wpo-blog-single-section .wpo-blog-content {
    padding-right: 20px;
  }
}
@media (max-width: 991px) {
  .wpo-blog-single-section .wpo-blog-content {
    padding-right: 0px;
    width: 100%;
  }
}
.wpo-blog-single-section .entry-meta {
  list-style: none;
  overflow: hidden;
  margin-bottom: 20px;
}
.wpo-blog-single-section .entry-meta ul {
  list-style: none;
}
.wpo-blog-single-section .entry-meta ul li {
  color: #787878;
  font-size: 20px;
  font-weight: 400;
  line-height: 50px;
  display: inline-block;
}
.wpo-blog-single-section .entry-meta ul li a {
  color: #787878;
}
.wpo-blog-single-section .entry-meta ul li a:hover {
  color: #556B2F;
}
.wpo-blog-single-section .entry-meta ul li i {
  position: relative;
  margin-right: 3px;
}
.wpo-blog-single-section .entry-meta ul li i:before {
  font-size: 13px;
}
.wpo-blog-single-section .entry-meta ul li + li {
  margin-left: 15px;
  padding-left: 15px;
  position: relative;
}
.wpo-blog-single-section .entry-meta ul li + li:before {
  position: absolute;
  left: -5px;
  top: 50%;
  transform: translateY(-50%);
  width: 7px;
  height: 7px;
  content: "";
  background: #787878;
  border-radius: 50%;
}
@media (max-width: 440px) {
  .wpo-blog-single-section .entry-meta ul li + li:before {
    display: none;
  }
}
@media (max-width: 440px) {
  .wpo-blog-single-section .entry-meta ul li + li {
    margin-left: 0;
    padding-left: 0;
  }
}
@media (max-width: 767px) {
  .wpo-blog-single-section .entry-meta ul li {
    font-size: 15px;
    line-height: 20px;
  }
}
@media (max-width: 440px) {
  .wpo-blog-single-section .entry-meta ul li {
    float: none;
    display: block;
    margin-bottom: 5px;
  }
}
.wpo-blog-single-section .entry-media {
  margin-bottom: 20px;
}
.wpo-blog-single-section .entry-media img {
  width: 100%;
}
.wpo-blog-single-section .post h2 {
  margin-bottom: 30px;
  font-size: 55px;
  font-weight: 400;
  line-height: 110%;
}
@media (max-width: 1199px) {
  .wpo-blog-single-section .post h2 {
    font-size: 50px;
    line-height: 60px;
  }
}
@media (max-width: 991px) {
  .wpo-blog-single-section .post h2 {
    font-size: 40px;
    line-height: 50px;
  }
}
@media (max-width: 575px) {
  .wpo-blog-single-section .post h2 {
    font-size: 35px;
    line-height: 40px;
    margin-bottom: 20px;
  }
}
.wpo-blog-single-section .post p {
  margin-bottom: 30px;
  color: #374324;
  font-size: 20px;
  font-weight: 400;
  line-height: 35px;
}
@media (max-width: 991px) {
  .wpo-blog-single-section .post p {
    font-size: 18px;
    line-height: 27px;
  }
}
@media (max-width: 575px) {
  .wpo-blog-single-section .post p {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 20px;
  }
}
.wpo-blog-single-section .post p span {
  color: #000;
  font-size: 40px;
  font-weight: 400;
  line-height: 35px;
}
@media (max-width: 1199px) {
  .wpo-blog-single-section .post p span {
    font-size: 25px;
  }
}
.wpo-blog-single-section .post blockquote {
  max-width: 990px;
  color: #1B240F;
  border: 0;
  text-align: left;
  position: relative;
  font-family: "Inter Display";
  font-size: 40px;
  font-weight: 400;
  line-height: 50px;
  padding-left: 30px;
  margin-top: 60px;
  margin-bottom: 60px;
}
@media (max-width: 1399px) {
  .wpo-blog-single-section .post blockquote {
    font-size: 35px;
    line-height: 45px;
  }
}
@media (max-width: 767px) {
  .wpo-blog-single-section .post blockquote {
    font-size: 30px;
    line-height: 35px;
    padding-left: 20px;
    margin-top: 40px;
    margin-bottom: 40px;
  }
}
@media (max-width: 575px) {
  .wpo-blog-single-section .post blockquote {
    font-size: 25px;
    line-height: 30px;
  }
}
.wpo-blog-single-section .post blockquote:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  border-left: 3px solid #374324;
  background: #fff;
  height: 100%;
}
.wpo-blog-single-section .post blockquote h3 {
  font-family: "Inter Display";
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  margin-bottom: 0;
  padding-top: 5px;
}
@media (max-width: 991px) {
  .wpo-blog-single-section .post blockquote h3 {
    font-size: 18px;
    line-height: 30px;
  }
}
@media (max-width: 575px) {
  .wpo-blog-single-section .post blockquote h3 {
    font-size: 16px;
    line-height: 25px;
  }
}
.wpo-blog-single-section .post blockquote span {
  color: #374324;
}
.wpo-blog-single-section .post .gallery {
  overflow: hidden;
  margin: 40px -15px 0;
}
.wpo-blog-single-section .post .gallery > div {
  width: calc(50% - 30px);
  float: left;
  margin: 0 15px 15px;
}
@media (max-width: 575px) {
  .wpo-blog-single-section .post .gallery > div {
    width: calc(100% - 20px);
    float: none;
    margin: 10px;
  }
}
.wpo-blog-single-section .post .gallery img {
  width: 100%;
}
.wpo-blog-single-section .tag-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 45px;
}
@media (max-width: 1199px) {
  .wpo-blog-single-section .tag-wrap {
    display: block;
  }
}
.wpo-blog-single-section {
  /*** tag-share ***/
}
.wpo-blog-single-section .tag-share,
.wpo-blog-single-section .tag-share-s2 {
  padding-bottom: 30px;
  color: #1B240F;
}
@media (max-width: 575px) {
  .wpo-blog-single-section .tag-share,
  .wpo-blog-single-section .tag-share-s2 {
    padding-bottom: 20px;
  }
}
.wpo-blog-single-section .tag-share ul,
.wpo-blog-single-section .tag-share-s2 ul {
  list-style: none;
  display: inline-block;
  overflow: hidden;
}
.wpo-blog-single-section .tag-share ul li,
.wpo-blog-single-section .tag-share-s2 ul li {
  float: left;
}
@media (max-width: 767px) {
  .wpo-blog-single-section .tag-share ul li,
  .wpo-blog-single-section .tag-share-s2 ul li {
    margin: 2px;
  }
}
.wpo-blog-single-section .tag-share ul > li + li,
.wpo-blog-single-section .tag-share-s2 ul > li + li {
  margin-left: 10px;
}
@media (max-width: 767px) {
  .wpo-blog-single-section .tag-share ul > li + li,
  .wpo-blog-single-section .tag-share-s2 ul > li + li {
    margin: 2px;
  }
}
.wpo-blog-single-section .tag-share .tag,
.wpo-blog-single-section .tag-share-s2 .tag {
  display: flex;
  align-items: center;
}
.wpo-blog-single-section .tag-share .tag > span,
.wpo-blog-single-section .tag-share-s2 .tag > span {
  color: #000;
  display: inline-block;
  padding-right: 15px;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
}
@media (max-width: 575px) {
  .wpo-blog-single-section .tag-share .tag > span,
  .wpo-blog-single-section .tag-share-s2 .tag > span {
    padding-right: 5px;
    font-size: 18px;
  }
}
.wpo-blog-single-section .tag-share .tag ul,
.wpo-blog-single-section .tag-share-s2 .tag ul {
  list-style: none;
  position: relative;
}
.wpo-blog-single-section .tag-share .tag li,
.wpo-blog-single-section .tag-share-s2 .tag li {
  position: relative;
}
.wpo-blog-single-section .tag-share .tag a,
.wpo-blog-single-section .tag-share-s2 .tag a {
  display: inline-block;
  padding: 1px 18px;
  background: transparent;
  text-transform: capitalize;
  color: #374324;
  font-family: "DM Sans";
  font-size: 18px;
  font-weight: 400;
  border: 1px solid #CCC;
}
@media (max-width: 767px) {
  .wpo-blog-single-section .tag-share .tag a,
  .wpo-blog-single-section .tag-share-s2 .tag a {
    font-size: 16px;
    padding: 1px 10px;
  }
}
.wpo-blog-single-section .tag-share .tag a:hover,
.wpo-blog-single-section .tag-share-s2 .tag a:hover {
  color: #556B2F;
}
.wpo-blog-single-section .tag-share-s2 .tag a {
  font-size: 16px;
  text-transform: capitalize;
  color: #374324;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 42px;
  border-radius: 40px;
  padding: 0;
}
@media (max-width: 575px) {
  .wpo-blog-single-section .tag-share-s2 .tag a {
    width: 35px;
    height: 35px;
    line-height: 38px;
  }
}
.wpo-blog-single-section {
  /*** more-posts ***/
}
.wpo-blog-single-section .more-posts {
  overflow: hidden;
  border: 1px solid #E8E8E8;
  border-right: 0;
  border-left: 0;
}
.wpo-blog-single-section .more-posts > div {
  width: 50%;
  float: left;
}
@media (max-width: 767px) {
  .wpo-blog-single-section .more-posts > div {
    width: 100%;
    float: none;
  }
}
.wpo-blog-single-section .more-posts > div > a {
  display: inline-block;
}
.wpo-blog-single-section .more-posts .previous-post,
.wpo-blog-single-section .more-posts .next-post {
  padding: 40px 0;
}
@media (max-width: 767px) {
  .wpo-blog-single-section .more-posts .previous-post,
  .wpo-blog-single-section .more-posts .next-post {
    padding: 25px 0;
  }
}
.wpo-blog-single-section .more-posts .next-post {
  text-align: right;
  padding-left: 15px;
  padding-right: 5px;
}
@media (max-width: 767px) {
  .wpo-blog-single-section .more-posts .next-post {
    border-left: 0;
    text-align: left;
    padding-left: 5px;
  }
}
.wpo-blog-single-section .more-posts .next-post .post-control-link {
  position: relative;
}
@media (max-width: 767px) {
  .wpo-blog-single-section .more-posts .next-post .post-control-link {
    padding-right: 0;
  }
}
.wpo-blog-single-section .more-posts .previous-post {
  padding-right: 15px;
  padding-left: 5px;
}
.wpo-blog-single-section .more-posts .previous-post .post-control-link {
  position: relative;
}
@media (max-width: 767px) {
  .wpo-blog-single-section .more-posts .previous-post .post-control-link {
    padding-left: 0;
  }
}
.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: capitalize;
  font-weight: 600;
  color: #787878;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  margin-bottom: 10px;
}
@media (max-width: 991px) {
  .wpo-blog-single-section .more-posts .post-control-link {
    font-size: 18px;
  }
}
.wpo-blog-single-section .more-posts .post-name {
  color: #1B240F;
  font-size: 30px;
  font-weight: 400;
  line-height: 40px;
}
@media (max-width: 1199px) {
  .wpo-blog-single-section .more-posts .post-name {
    font-size: 25px;
    line-height: 35px;
  }
}
@media (max-width: 1199px) {
  .wpo-blog-single-section .more-posts .post-name {
    font-size: 20px;
    line-height: 30px;
  }
}
.wpo-blog-single-section .more-posts a:hover .post-control-link {
  color: #556B2F;
}
.wpo-blog-single-section {
  /*** comments area ***/
}
.wpo-blog-single-section .comments-area {
  margin-top: 40px;
}
.wpo-blog-single-section .comments-area li > div {
  padding: 35px 0;
}
@media (max-width: 991px) {
  .wpo-blog-single-section .comments-area li > div {
    padding: 35px 0;
  }
}
.wpo-blog-single-section .comments-area ol {
  list-style-type: none;
  padding-left: 0;
}
.wpo-blog-single-section .comments-area ol ul {
  padding-left: 140px;
  list-style-type: none;
}
@media (max-width: 1199px) {
  .wpo-blog-single-section .comments-area ol ul {
    padding-left: 40px;
  }
}
@media (max-width: 767px) {
  .wpo-blog-single-section .comments-area ol ul {
    padding-left: 20px;
  }
}
.wpo-blog-single-section .comments-area ol > li:last-child div {
  border-bottom: 0;
}
.wpo-blog-single-section .comments-area .comments-title {
  color: #1B240F;
  font-size: 60px;
  font-weight: 400;
  line-height: 70px;
}
@media (max-width: 1199px) {
  .wpo-blog-single-section .comments-area .comments-title {
    font-size: 50px;
    line-height: 60px;
  }
}
@media (max-width: 767px) {
  .wpo-blog-single-section .comments-area .comments-title {
    font-size: 40px;
    line-height: 50px;
  }
}
.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: 1199px) {
  .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: 140px;
  max-width: 980px;
}
@media (max-width: 1199px) {
  .wpo-blog-single-section .comments-area .comment-main-area {
    padding-left: 0;
    margin-top: 25px;
  }
}
.wpo-blog-single-section .comments-area .comment-main-area p {
  color: #374324;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .wpo-blog-single-section .comments-area .comment-main-area p {
    font-size: 18px;
    line-height: 27px;
  }
}
@media (max-width: 575px) {
  .wpo-blog-single-section .comments-area .comment-main-area p {
    font-size: 16px;
    line-height: 24px;
  }
}
.wpo-blog-single-section .comments-area .comments-meta h4 {
  color: #1B240F;
  font-size: 28px;
  font-weight: 400;
  line-height: 40px;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .wpo-blog-single-section .comments-area .comments-meta h4 {
    font-size: 23px;
    line-height: 32px;
  }
}
.wpo-blog-single-section .comments-area .comments-meta span {
  text-transform: none;
  display: inline-block;
  color: #374324;
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  margin-bottom: 20px;
}
@media (max-width: 991px) {
  .wpo-blog-single-section .comments-area .comments-meta span {
    font-size: 16px;
    line-height: 28px;
  }
}
@media (max-width: 575px) {
  .wpo-blog-single-section .comments-area .comments-meta span {
    font-size: 16px;
    line-height: 25px;
  }
}
.wpo-blog-single-section .comments-area .comment-reply-link {
  color: #000;
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
}
@media (max-width: 991px) {
  .wpo-blog-single-section .comments-area .comment-reply-link {
    font-size: 18px;
    line-height: 25px;
  }
}
.wpo-blog-single-section .comments-area .comment-reply-link:hover {
  color: #556B2F;
}
.wpo-blog-single-section .comments-area .children {
  position: relative;
}
.wpo-blog-single-section .comments-area .shape {
  position: absolute;
  left: 49px;
  top: -175px;
  max-width: 106px;
  max-height: 260px;
  z-index: -1;
}
@media (max-width: 1199px) {
  .wpo-blog-single-section .comments-area .shape {
    display: none;
  }
}
.wpo-blog-single-section .comments-section {
  border-bottom: 1px solid #E8E8E8;
  padding-bottom: 20px;
}
.wpo-blog-single-section {
  /*** comment-respond ***/
}
.wpo-blog-single-section .comment-respond {
  margin-top: 70px;
}
@media (max-width: 767px) {
  .wpo-blog-single-section .comment-respond {
    margin-top: 40px;
  }
}
.wpo-blog-single-section .comment-respond .comment-reply-title {
  margin-bottom: 40px;
  color: #1B240F;
  font-size: 60px;
  font-weight: 400;
  line-height: 70px;
}
@media (max-width: 1199px) {
  .wpo-blog-single-section .comment-respond .comment-reply-title {
    font-size: 50px;
    line-height: 60px;
  }
}
@media (max-width: 767px) {
  .wpo-blog-single-section .comment-respond .comment-reply-title {
    font-size: 40px;
    line-height: 50px;
  }
}
@media (max-width: 575px) {
  .wpo-blog-single-section .comment-respond .comment-reply-title {
    font-size: 35px;
    line-height: 45px;
    margin-bottom: 25px;
  }
}
.wpo-blog-single-section .comment-respond .comment-form {
  background: #fbfff0;
  padding: 60px;
}
@media (max-width: 1199px) {
  .wpo-blog-single-section .comment-respond .comment-form {
    padding: 50px 30px;
  }
}
@media (max-width: 575px) {
  .wpo-blog-single-section .comment-respond .comment-form {
    padding: 30px 20px;
  }
}
.wpo-blog-single-section .comment-respond form input,
.wpo-blog-single-section .comment-respond form textarea {
  background-color: #fff;
  background: #f8fbef;
  width: 100%;
  height: 55px;
  border: 1px solid transparent;
  padding: 6px 15px;
  margin-bottom: 20px;
  outline: 0;
  box-shadow: none;
  transition: all 0.3s;
  color: #374324;
  font-size: 20px;
  font-weight: 400;
  border: 1px solid rgba(19, 25, 7, 0.1);
}
@media (max-width: 575px) {
  .wpo-blog-single-section .comment-respond form input,
  .wpo-blog-single-section .comment-respond form textarea {
    font-size: 18px;
    height: 45px;
  }
}
.wpo-blog-single-section .comment-respond form input:focus,
.wpo-blog-single-section .comment-respond form textarea:focus {
  box-shadow: none;
  border-color: #556B2F;
}
.wpo-blog-single-section .comment-respond form textarea {
  height: 220px;
  padding: 15px;
}
@media (max-width: 991px) {
  .wpo-blog-single-section .comment-respond form textarea {
    height: 130px;
  }
}
.wpo-blog-single-section .comment-respond .form-inputs {
  overflow: hidden;
}
.wpo-blog-single-section .comment-respond .form-inputs > input:nth-child(1) {
  width: 49%;
  float: left;
}
@media (max-width: 767px) {
  .wpo-blog-single-section .comment-respond .form-inputs > input:nth-child(1) {
    width: 100%;
    float: none;
  }
}
.wpo-blog-single-section .comment-respond .form-inputs > input:nth-child(2) {
  width: 49%;
  float: right;
}
@media (max-width: 767px) {
  .wpo-blog-single-section .comment-respond .form-inputs > input:nth-child(2) {
    width: 100%;
    float: none;
  }
}
.wpo-blog-single-section .comment-respond .form-submit {
  max-width: 228px;
  height: 58px;
  background-color: #556B2F;
  color: #fff;
  position: relative;
  transition: all 0.3s ease-in-out;
  margin-top: 10px;
}
@media (max-width: 767px) {
  .wpo-blog-single-section .comment-respond .form-submit {
    max-width: 180px;
  }
}
.wpo-blog-single-section .comment-respond .form-submit::before {
  position: absolute;
  right: 30px;
  top: 50%;
  content: "\e628";
  font-family: "themify";
  color: #fff;
  z-index: 1;
  font-size: 18px;
  transform: translateY(-50%);
  cursor: pointer;
}
@media (max-width: 767px) {
  .wpo-blog-single-section .comment-respond .form-submit::before {
    right: 20px;
  }
}
.wpo-blog-single-section .comment-respond .form-submit input {
  text-align: left;
  padding-left: 30px;
  margin-bottom: 0;
  line-height: 30px;
  height: 100%;
  outline: 0;
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 400;
  background: transparent;
  color: #fff;
}
@media (max-width: 767px) {
  .wpo-blog-single-section .comment-respond .form-submit input {
    padding-left: 20px;
    font-size: 18px;
  }
}
.wpo-blog-single-section .comment-respond .form-submit:hover {
  background-color: rgb(59.6655844156, 75.1084415584, 32.9915584416);
}

.wpo-blog-single-left-sidebar-section .wpo-blog-wraper {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .wpo-blog-single-left-sidebar-section .wpo-blog-wraper {
    display: block;
  }
}
.wpo-blog-single-left-sidebar-section .wpo-blog-content {
  padding-left: 60px;
  padding-right: 0;
}
@media (max-width: 1399px) {
  .wpo-blog-single-left-sidebar-section .wpo-blog-content {
    padding-left: 20px;
    padding-right: 0;
  }
}
@media (max-width: 991px) {
  .wpo-blog-single-left-sidebar-section .wpo-blog-content {
    padding-right: 0px;
    padding-left: 0;
  }
}

/*--------------------------------------------------------------
12.0 Contact Page
--------------------------------------------------------------*/
.wpo-contact-pg-section {
  padding-bottom: 90px;
}
@media (max-width: 991px) {
  .wpo-contact-pg-section {
    padding-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .wpo-contact-pg-section {
    padding-bottom: 30px;
  }
}
.wpo-contact-pg-section img {
  border-radius: 16px;
}
.wpo-contact-pg-section .contact-left {
  max-width: 700px;
}
@media (max-width: 991px) {
  .wpo-contact-pg-section .contact-left {
    margin-bottom: 40px;
  }
}
.wpo-contact-pg-section .contact-left h2 {
  margin: 0;
  font-weight: 600;
  font-size: 80px;
  line-height: 98%;
  letter-spacing: -0.48px;
  padding-bottom: 40px;
}
@media (max-width: 1399px) {
  .wpo-contact-pg-section .contact-left h2 {
    font-size: 65px;
  }
}
@media (max-width: 1199px) {
  .wpo-contact-pg-section .contact-left h2 {
    font-size: 55px;
  }
}
@media (max-width: 991px) {
  .wpo-contact-pg-section .contact-left h2 {
    font-size: 45px;
    padding-bottom: 20px;
  }
}
@media (max-width: 575px) {
  .wpo-contact-pg-section .contact-left h2 {
    font-size: 30px;
    padding-bottom: 10px;
  }
}
.wpo-contact-pg-section .contact-left p {
  margin: 0;
  font-weight: 400;
  font-size: 24px;
  line-height: 145%;
  letter-spacing: -0.32px;
  max-width: 530px;
  color: #1B240F;
}
@media (max-width: 1199px) {
  .wpo-contact-pg-section .contact-left p {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .wpo-contact-pg-section .contact-left p {
    font-size: 18px;
  }
}
@media (max-width: 575px) {
  .wpo-contact-pg-section .contact-left p {
    font-size: 16px;
  }
}
.wpo-contact-pg-section .main-contact-information {
  padding-bottom: 90px;
}
@media (max-width: 991px) {
  .wpo-contact-pg-section .main-contact-information {
    padding-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .wpo-contact-pg-section .main-contact-information {
    padding-bottom: 40px;
  }
}
.wpo-contact-pg-section .contact-form-area .form-control,
.wpo-contact-pg-section form textarea {
  color: #969696;
  font-weight: 400;
  font-size: 16px;
  line-height: 145%;
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}
.wpo-contact-pg-section .contact-form-area .form-control:focus,
.wpo-contact-pg-section form textarea:focus {
  border-color: #556B2F;
  background: transparent;
  box-shadow: none;
}
.wpo-contact-pg-section .input-item label {
  color: #1B240F;
  font-weight: 400;
  font-size: 16px;
  line-height: 145%;
}
.wpo-contact-pg-section textarea.form-control {
  height: 80px;
}
.wpo-contact-pg-section form {
  overflow: hidden;
}
.wpo-contact-pg-section form ::-webkit-input-placeholder {
  font-style: 16px;
  font-style: normal;
  color: #969696;
}
.wpo-contact-pg-section form :-moz-placeholder {
  font-style: 16px;
  font-style: normal;
  color: #969696;
}
.wpo-contact-pg-section form ::-moz-placeholder {
  font-style: 16px;
  font-style: normal;
  color: #969696;
}
.wpo-contact-pg-section form :-ms-input-placeholder {
  font-style: 16px;
  font-style: normal;
  color: #969696;
}
.wpo-contact-pg-section form .submit-area {
  width: 100%;
  margin-top: 10px;
  margin-left: 0;
}
@media (max-width: 991px) {
  .wpo-contact-pg-section form .submit-area {
    margin-top: 0;
  }
}
.wpo-contact-pg-section form .submit-area .theme-btn {
  border: 0;
}
.wpo-contact-pg-section .form-control::-moz-placeholder {
  color: #969696;
}
.wpo-contact-pg-section .form-control::placeholder {
  color: #969696;
}
.wpo-contact-pg-section .office-info .office-info-item {
  margin-bottom: 30px;
  text-align: start;
  max-height: 340px;
  padding: 70px 40px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: #E9F0D7;
}
@media (max-width: 1399px) {
  .wpo-contact-pg-section .office-info .office-info-item {
    padding: 30px 23px;
  }
}
@media (max-width: 1199px) {
  .wpo-contact-pg-section .office-info .office-info-item {
    text-align: center;
    min-height: auto;
    padding: 40px 30px;
  }
}
@media (max-width: 767px) {
  .wpo-contact-pg-section .office-info .office-info-item {
    padding: 30px;
  }
}
.wpo-contact-pg-section .office-info .office-info-item .office-info-text {
  margin-top: 80px;
}
@media (max-width: 1199px) {
  .wpo-contact-pg-section .office-info .office-info-item .office-info-text {
    margin-top: 50px;
  }
}
.wpo-contact-pg-section .office-info .office-info-item .office-info-text h3 {
  margin: 0;
  margin-top: 10px;
  color: #131907;
  font-weight: 600;
  font-size: 24px;
  line-height: 122%;
  letter-spacing: -0.64px;
}
@media (max-width: 1399px) {
  .wpo-contact-pg-section .office-info .office-info-item .office-info-text h3 {
    font-size: 19px;
  }
}
.wpo-contact-pg-section .office-info .office-info-item .office-info-text span {
  margin-bottom: 0;
  color: #3F4E26;
  font-size: 18px;
  font-weight: 400;
  line-height: 110%;
  letter-spacing: -0.32px;
}
@media (max-width: 991px) {
  .wpo-contact-pg-section .office-info .office-info-item .office-info-text span {
    font-size: 16px;
  }
}
.wpo-contact-pg-section .contact-validation-active label.error {
  position: relative;
  top: 0;
  color: red;
  font-size: 14px;
}

.wpo-contact-map-section {
  margin-left: 60px;
  position: relative;
}
@media (max-width: 991px) {
  .wpo-contact-map-section {
    margin-left: 0;
  }
}
.wpo-contact-map-section .wpo-contact-map {
  height: 800px;
}
@media (max-width: 991px) {
  .wpo-contact-map-section .wpo-contact-map {
    height: 600px;
  }
}
@media (max-width: 575px) {
  .wpo-contact-map-section .wpo-contact-map {
    height: 400px;
  }
}
.wpo-contact-map-section iframe {
  width: 100%;
  height: 100%;
  border: 0;
  outline: 0;
  filter: grayscale(100%);
}
.wpo-contact-map-section h2.hidden {
  display: none;
}
.wpo-contact-map-section .feature-card {
  background: rgba(85, 107, 47, 0.66);
  backdrop-filter: blur(30px);
  padding: 8px;
  border-radius: 12px;
  max-width: 350px;
  position: absolute;
  bottom: 40px;
  left: 60px;
}
@media (max-width: 575px) {
  .wpo-contact-map-section .feature-card {
    display: none;
  }
}
.wpo-contact-map-section .feature-card .feature-item {
  background: #F5F8ED;
  backdrop-filter: blur(30px);
  border-radius: 8px;
  padding: 30px 25px;
}
.wpo-contact-map-section .feature-card .content {
  margin-bottom: 60px;
}
.wpo-contact-map-section .feature-card .content .feature-top {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  gap: 10px;
}
.wpo-contact-map-section .feature-card .content .feature-top i {
  font-size: 18px;
  color: #131907;
}
.wpo-contact-map-section .feature-card .content h2 {
  margin: 0;
  color: #131907;
  font-size: 24px;
  font-weight: 500;
  line-height: 105%;
  font-weight: 600;
  letter-spacing: -0.64px;
}
.wpo-contact-map-section .feature-card .content p {
  margin: 0;
  color: #1B240F;
  font-weight: 400;
  font-size: 18px;
  line-height: 145%;
  letter-spacing: -0.32px;
  max-width: 290px;
}
.wpo-contact-map-section .feature-card .client {
  display: flex;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  width: 100%;
}
.wpo-contact-map-section .feature-card .client .client-img {
  border-radius: 50%;
}
.wpo-contact-map-section .feature-card .client .client-img img {
  border-radius: 50%;
}
.wpo-contact-map-section .feature-card .client .client-text {
  margin-left: 15px;
  position: relative;
}
.wpo-contact-map-section .feature-card .client .client-text h3 {
  margin: 0;
  font-weight: 600;
  font-size: 16px;
  line-height: 135%;
  letter-spacing: 0.32px;
  text-transform: uppercase;
  color: #131907;
}
.wpo-contact-map-section .feature-card .client .client-text span {
  color: #5F5F62;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: -0.48px;
}
.wpo-contact-map-section .feature-card .feature-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 10px 5px;
}
.wpo-contact-map-section .feature-card .feature-bottom span {
  color: #F5F8ED;
  font-weight: 400;
  font-size: 14px;
  line-height: 134%;
  letter-spacing: 0.48px;
  text-transform: uppercase;
}

/*--------------------------------------------------------------
13.0 404 Error Page
--------------------------------------------------------------*/
.error-404-section {
  text-align: center;
}
.error-404-section .error img {
  width: 100%;
  max-width: 600px;
}
.error-404-section .error-message {
  margin-top: 50px;
  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: 30px;
  }
}
@media (max-width: 767px) {
  .error-404-section .error-message {
    padding: 0;
  }
}
.error-404-section .error-message h2 {
  font-size: 45px;
  font-weight: 500;
  font-size: 2.5rem;
  margin: 0 0 0.8em;
  color: #000;
  text-transform: capitalize;
  font-family: "Inter Display";
}
@media (max-width: 991px) {
  .error-404-section .error-message h2 {
    font-size: 40px;
    font-size: 2.2222222222rem;
  }
}
@media (max-width: 767px) {
  .error-404-section .error-message h2 {
    font-size: 30px;
    font-size: 1.6666666667rem;
  }
}
.error-404-section .error-message .theme-btn {
  display: inline-flex;
}