@charset "UTF-8";
/*------------------------------------------------------------------
[Master Stylesheet]
Theme Name:   Auctor – Lawyer & Attorney WordPress Theme
Version:        1.0.0
-------------------------------------------------------------------*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------

1. General
   1.1 Theme Reset Style
   1.2 Global Elements

2. header
   2.1 navigation 

3. content
   3.1 wpo-hero-static
   3.2 wpo-service-section
   3.3 wpo-case-section
   3.4 wpo-testimonial-section
   3.5 wpo-fun-fact-section
   3.6 wpo-team-section
   3.7 wpo-video-section
   3.8 marquee-section
   3.9 wpo-blog-section
   3.10 wpo-cta-section

4. wpo-footer

5. Home-style-2
   5.1 wpo-about-section  
   5.2 wpo-service-section-s2
   5.3 wpo-case-section-s2
   5.4 wpo-testimonial-section-s2
   5.5 wpo-team-section-s2
   5.6 wpo-blog-section-s2
   5.7 wpo-cta-section-s2

6. Home-style-3
   6.1 wpo-about-section-s2
   6.2 wpo-case-section-s3
   6.3 wpo-testimonial-section-s3

7. Home-style-4
   7.1 wpo-fun-fact-section-s2
   7.2 wpo-about-section-s3
   7.3 wpo-service-section-s3
   7.4 wpo-case-section-s4
   7.5 wpo-testimonial-section-s4
   7.6 wpo-faq-section


8. wpo-practice-single

9. wpo-attorney-single

10. wpo-case-single-section

11. wpo-shop-page

12. wpo-contact-page

13. wpo-blog-single-section

14. contact-pg-section

15. error-404-section

----------------------------------------------------------------*/
/*------------------------------------------------------------------
1. General
----------------------------------------------------------------*/

/*---------------------------
  Fonts
----------------------------*/
/* 1.1 Theme Reset Style */
html {
  font-size: 18px;
}

:root {
  scroll-behavior: unset;
}

body {
  font-family: "Inter";
  color: #041117;
  background-color: #fff;
  font-size: 18px;
  font-size: 1rem;
  overflow-x: hidden;
}

@media (max-width: 767px) {
  body {
    font-size: 16px;
  }
}

p {
  font-size: 18px;
  color: #041117;
  line-height: 1.8em;
}

@media (max-width: 767px) {
  p {
    font-size: 16px;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #000;
  font-family: "Marcellus";
  font-weight: 700;
}

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: 1400px) {
  .container {
    max-width: 1725px;
  }
}

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

.page-wrapper.style-2 {
  overflow: unset;
}

.single-team .page-wrapper {
  overflow: unset;
}

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

@media (max-width: 450px) {
  .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: #215153;
  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 shine {
  100% {
    left: 125%;
  }
}

/*** back to top **/
.back-to-top {
  background-color: rgba(33, 81, 83, 0.7);
  width: 45px;
  height: 45px;
  line-height: 45px;
  border: 2px solid #215153;
  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: #215153;
}

.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;
}

.wpo-section-title,
.wpo-section-title-s2,
.wpo-section-title-s3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: -15px;
  margin-bottom: 60px;
}

@media (max-width: 991px) {

  .wpo-section-title,
  .wpo-section-title-s2,
  .wpo-section-title-s3 {
    margin-top: 0;
    margin-bottom: 35px;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
}

.wpo-section-title span,
.wpo-section-title-s2 span,
.wpo-section-title-s3 span {
  font-family: "Inter";
  color: #CDB091;
  padding-left: 85px;
  font-size: 25px;
  font-weight: 500;
  line-height: 35px;
  position: relative;
}

@media (max-width: 991px) {

  .wpo-section-title span,
  .wpo-section-title-s2 span,
  .wpo-section-title-s3 span {
    font-size: 20px;
  }
}

@media (max-width: 575px) {

  .wpo-section-title span,
  .wpo-section-title-s2 span,
  .wpo-section-title-s3 span {
    font-size: 17px;
    padding-left: 45px;
  }
}

.wpo-section-title span::before,
.wpo-section-title-s2 span::before,
.wpo-section-title-s3 span::before {
  position: absolute;
  content: "";
  top: 15px;
  left: 0;
  width: 80px;
  height: 3px;
  background-color: #CDB091;
}

@media (max-width: 991px) {

  .wpo-section-title span::before,
  .wpo-section-title-s2 span::before,
  .wpo-section-title-s3 span::before {
    top: 10px;
  }
}

@media (max-width: 575px) {

  .wpo-section-title span::before,
  .wpo-section-title-s2 span::before,
  .wpo-section-title-s3 span::before {
    width: 40px;
  }
}

.wpo-section-title h2,
.wpo-section-title-s2 h2,
.wpo-section-title-s3 h2 {
  color: #000;
  font-size: 100px;
  font-weight: 400;
  line-height: 110px;
  max-width: 955px;
  margin-top: 0;
  margin-bottom: 0;
}

@media (max-width: 1550px) {

  .wpo-section-title h2,
  .wpo-section-title-s2 h2,
  .wpo-section-title-s3 h2 {
    font-size: 85px;
    line-height: 95px;
  }
}

@media (max-width: 1399px) {

  .wpo-section-title h2,
  .wpo-section-title-s2 h2,
  .wpo-section-title-s3 h2 {
    font-size: 70px;
    line-height: 80px;
  }
}

@media (max-width: 1199px) {

  .wpo-section-title h2,
  .wpo-section-title-s2 h2,
  .wpo-section-title-s3 h2 {
    font-size: 60px;
    max-width: 600px;
    line-height: 70px;
  }
}

@media (max-width: 991px) {

  .wpo-section-title h2,
  .wpo-section-title-s2 h2,
  .wpo-section-title-s3 h2 {
    font-size: 50px;
    margin: 0 auto;
    line-height: 60px;
  }
}

@media (max-width: 575px) {

  .wpo-section-title h2,
  .wpo-section-title-s2 h2,
  .wpo-section-title-s3 h2 {
    font-size: 40px;
    line-height: 50px;
  }
}

@media (max-width: 425px) {

  .wpo-section-title h2,
  .wpo-section-title-s2 h2,
  .wpo-section-title-s3 h2 {
    font-size: 30px;
    line-height: 40px;
  }
}

.wpo-section-title p,
.wpo-section-title-s2 p,
.wpo-section-title-s3 p {
  margin: 0;
  color: #000;
  font-size: 20px;
  font-weight: 400;
  line-height: 32px;
  max-width: 490px;
  margin-bottom: 0;
}

.page-wrapper .wpo-section-title p,
.page-wrapper .wpo-section-title-s2 p,
.page-wrapper .wpo-section-title-s3 p {
  margin-bottom: 0;
}

@media (max-width: 991px) {

  .wpo-section-title p,
  .wpo-section-title-s2 p,
  .wpo-section-title-s3 p {
    font-size: 18px;
    line-height: 30px;
    margin: 0 auto;
  }
}

@media (max-width: 575px) {

  .wpo-section-title p,
  .wpo-section-title-s2 p,
  .wpo-section-title-s3 p {
    font-size: 16px;
    line-height: 25px;
    max-width: unset;
  }
}

@media (max-width: 425px) {

  .wpo-section-title p,
  .wpo-section-title-s2 p,
  .wpo-section-title-s3 p {
    font-size: 14px;
    line-height: 22px;
  }
}

@media (max-width: 991px) {

  .wpo-section-title .title-btn,
  .wpo-section-title-s2 .title-btn,
  .wpo-section-title-s3 .title-btn {
    padding-top: 20px;
  }
}

.wpo-section-title-s2 {
  display: block;
  align-items: start;
}

@media (max-width: 991px) {
  .wpo-section-title-s2 {
    align-items: center;
  }
}

.wpo-section-title-s2 p {
  padding-top: 20px;
}

.wpo-section-title-s2 .title-btn {
  padding-top: 35px;
}

.wpo-section-title-s3 {
  max-width: 1520px;
  margin: 0 auto;
  margin-top: -15px;
  margin-bottom: 60px;
}

@media (max-width: 991px) {
  .wpo-section-title-s3 {
    margin-top: 0;
    margin-bottom: 35px;
  }
}

.wpo-section-title-s3 h2 {
  max-width: 952px;
}

@media (max-width: 1399px) {
  .wpo-section-title-s3 h2 {
    max-width: 700px;
  }
}

@media (max-width: 1199px) {
  .wpo-section-title-s3 h2 {
    max-width: 575px;
  }
}

.theme-btn,
.theme-btn-s2 {
  background: transparent;
  color: #fff;
  display: inline-block;
  padding: 15px 35px;
  -webkit-backface-visibility: hidden;
  z-index: 1;
  position: relative;
  color: #000;
  font-size: 22px;
  font-weight: 500;
  line-height: normal;
  text-transform: capitalize;
  border: 2px solid #000;
  border-radius: 10px;
  font-family: "Inter";
  transition: all 0.5s ease-in-out;
  overflow: hidden;
}

.theme-btn::before,
.theme-btn-s2::before {
  background: #215153;
  content: "";
  height: 1000px;
  left: 50%;
  opacity: 1;
  position: absolute;
  top: 50%;
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
  width: 0;
  z-index: -1;
  border-radius: 10px;
  transition: all 0.5s ease-in-out;
}

.theme-btn:hover,
.theme-btn:focus,
.theme-btn:active,
.theme-btn-s2:hover,
.theme-btn-s2:focus,
.theme-btn-s2:active {
  color: #fff;
  border-color: #215153;
}

.theme-btn:hover::before,
.theme-btn:focus::before,
.theme-btn:active::before,
.theme-btn-s2:hover::before,
.theme-btn-s2:focus::before,
.theme-btn-s2:active::before {
  opacity: 1;
  width: 100%;
}

@media (max-width: 991px) {

  .theme-btn,
  .theme-btn-s2 {
    font-size: 20px;
    font-size: 1.1111111111rem;
    padding: 15px 20px;
  }
}

@media (max-width: 767px) {

  .theme-btn,
  .theme-btn-s2 {
    padding: 12px 18px;
    font-size: 16px;
  }
}

.theme-btn-s2 {
  transition: all 0.5s ease-in-out;
  padding-right: 30px;
}

@media (max-width: 991px) {
  .theme-btn-s2 {
    font-size: 20px;
    padding: 14px 20px;
    padding-right: 30px;
  }
}

@media (max-width: 767px) {
  .theme-btn-s2 {
    font-size: 16px;
    padding: 10px 15px;
    padding-right: 20px;
  }
}

.theme-btn-s2::before {
  background: #215153;
  content: "";
  height: 1000px;
  left: 50%;
  opacity: 1;
  position: absolute;
  top: 50%;
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
  width: 0;
  z-index: -1;
  border-radius: 10px;
  transition: all 0.5s ease-in-out;
}

.theme-btn-s2 i {
  position: relative;
  top: 3px;
  margin-left: 10px;
  font-size: 22px;
  font-weight: 600;
}

@media (max-width: 767px) {
  .theme-btn-s2 i {
    top: 2px;
    margin-left: 4px;
    font-size: 16px;
  }
}

.theme-btn-s2:hover {
  border-color: #215153;
}

.theme-btn-s2:hover::before {
  opacity: 1;
  width: 100%;
}

.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: #215153;
  -o-box-shadow: 0 0 5px 0 rgb(47.5086206897, 116.6120689655, 119.4913793103);
  -ms-box-shadow: 0 0 5px 0 rgb(47.5086206897, 116.6120689655, 119.4913793103);
  box-shadow: 0 0 5px 0 rgb(47.5086206897, 116.6120689655, 119.4913793103);
}

.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(47.5086206897, 116.6120689655, 119.4913793103);
  width: 35px;
  height: 35px;
  line-height: 35px;
  display: block;
  color: #fff;
  text-align: center;
}

.social-links li a:hover {
  background-color: #215153;
}

.wpo-page-title,
.wpo-page-title-s2 {
  background: #215153;
  min-height: 460px;
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  z-index: 1;
  overflow: hidden;
  padding-top: 160px;
  padding-bottom: 100px;
}

@media (max-width: 991px) {

  .wpo-page-title,
  .wpo-page-title-s2 {
    min-height: 300px;
    padding: 50px 0;
  }
}

@media (max-width: 767px) {

  .wpo-page-title,
  .wpo-page-title-s2 {
    min-height: 250px;
  }
}

@media (max-width: 575px) {

  .wpo-page-title,
  .wpo-page-title-s2 {
    min-height: 200px;
  }
}

.wpo-page-title .wpo-breadcumb-wrap,
.wpo-page-title-s2 .wpo-breadcumb-wrap {
  text-align: center;
}

.wpo-page-title .wpo-breadcumb-wrap h2,
.wpo-page-title-s2 .wpo-breadcumb-wrap h2 {
  margin: 0;
  font-weight: 400;
  font-size: 100px;
  line-height: 105px;
  color: #fff;
  margin-bottom: 10px;
  text-transform: capitalize;
  word-break: break-all;
  display: inline-block;
  margin-bottom: 25px;
}

@media (max-width: 1500px) {
  .wpo-page-title .wpo-breadcumb-wrap h2,
  .wpo-page-title-s2 .wpo-breadcumb-wrap h2 {
    font-size: 100px;
  }
}

@media (max-width: 1199px) {

  .wpo-page-title .wpo-breadcumb-wrap h2,
  .wpo-page-title-s2 .wpo-breadcumb-wrap h2 {
    font-size: 80px;
    line-height: normal;
  }
}

@media (max-width: 991px) {

  .wpo-page-title .wpo-breadcumb-wrap h2,
  .wpo-page-title-s2 .wpo-breadcumb-wrap h2 {
    font-size: 60px;
    margin-bottom: 15px;
  }
}

@media (max-width: 767px) {

  .wpo-page-title .wpo-breadcumb-wrap h2,
  .wpo-page-title-s2 .wpo-breadcumb-wrap h2 {
    font-size: 50px;
  }
}

@media (max-width: 575px) {

  .wpo-page-title .wpo-breadcumb-wrap h2,
  .wpo-page-title-s2 .wpo-breadcumb-wrap h2 {
    font-size: 40px;
  }
}

@media (max-width: 425px) {

  .wpo-page-title .wpo-breadcumb-wrap h2,
  .wpo-page-title-s2 .wpo-breadcumb-wrap h2 {
    font-size: 34px;
  }
}

.wpo-page-title .wpo-breadcumb-wrap,
.wpo-page-title-s2 .wpo-breadcumb-wrap {
  padding-left: 0;
  margin-bottom: 0;
  justify-content: center;
}

.wpo-page-title .wpo-breadcumb-wrap li,
.wpo-page-title-s2 .wpo-breadcumb-wrap li {
  display: inline-block;
  padding: 0px 20px;
  color: #fff;
  position: relative;
  font-size: 25px;
  line-height: 35px;
  font-weight: 400;
}

@media (max-width: 767px) {

  .wpo-page-title .wpo-breadcumb-wrap li,
  .wpo-page-title-s2 .wpo-breadcumb-wrap li {
    font-size: 16px;
  }
}

.wpo-page-title .wpo-breadcumb-wrap li:after,
.wpo-page-title-s2 .wpo-breadcumb-wrap li:after {
  content: "\e649";
  font-family: "themify";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
}

.wpo-page-title .wpo-breadcumb-wrap li:last-child,
.wpo-page-title-s2 .wpo-breadcumb-wrap li:last-child {
  padding: 0;
  padding-left: 5px;
}

.wpo-page-title .wpo-breadcumb-wrap li:last-child:after,
.wpo-page-title-s2 .wpo-breadcumb-wrap li:last-child:after {
  display: none;
}

.wpo-page-title .wpo-breadcumb-wrap li a,
.wpo-page-title-s2 .wpo-breadcumb-wrap li a {
  color: #fff;
  font-size: 25px;
  transition: all 0.3s;
}

@media (max-width: 767px) {

  .wpo-page-title .wpo-breadcumb-wrap li a,
  .wpo-page-title-s2 .wpo-breadcumb-wrap li a {
    font-size: 16px;
  }
}

.wpo-page-title .wpo-breadcumb-wrap li a:hover,
.wpo-page-title-s2 .wpo-breadcumb-wrap li a:hover {
  color: #CDB091;
}

.wpo-page-title-s2 {
  min-height: 720px;
  padding-bottom: 200px;
}

@media (max-width: 1199px) {
  .wpo-page-title-s2 {
    min-height: 550px;
    padding-bottom: 100px;
  }
}

@media (max-width: 991px) {
  .wpo-page-title-s2 {
    min-height: 300px;
    padding-bottom: 0;
  }
}

@media (max-width: 767px) {
  .wpo-page-title-s2 {
    min-height: 250px;
  }
}

@media (max-width: 575px) {
  .wpo-page-title-s2 {
    min-height: 200px;
  }
}

.preloader {
  background-color: #215153;
  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;
  max-width: 55px;
}

.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;
}

/*------------------------------------
	blog sidebar
------------------------------------*/
.blog-sidebar {
  margin-left: auto;
  max-width: 400px;
  /*** search-widget ***/
  /*** category-widget ***/
  /*** recent-post-widget ***/
  /*** tag-widget ***/
}

@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 #E2E2E2;
}

.blog-sidebar .widget h3 {
  display: block;
  color: #001635;
  font-size: 40px;
  font-weight: 400;
  line-height: normal;
  padding: 15px 30px;
  margin-bottom: 0;
  border-bottom: 1px solid #E2E2E2;
  margin-top: 0;
}

@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 {
  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;
  box-shadow: none;
  transition: all 0.3s;
  border: 1px solid #E2E2E2;
  color: #585656;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
}

.blog-sidebar .search-widget input:focus {
  background-color: rgba(33, 81, 83, 0.1);
}

.blog-sidebar .search-widget form button {
  background: transparent;
  font-size: 20px;
  color: #fff;
  background-color: #000;
  border: 0;
  outline: 0;
  position: absolute;
  right: 10px;
  top: 52%;
  height: 50px;
  line-height: 50px;
  width: 50px;
  transform: translateY(-50%);
}

.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: #525252;
  font-size: 20px;
  font-weight: 400;
  line-height: 32px;
}

.blog-sidebar .category-widget ul a span {
  display: inline-block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border-radius: 50%;
}

@media (max-width: 767px) {
  .blog-sidebar .category-widget ul a span {
    font-size: 14px;
  }
}

.blog-sidebar .category-widget ul a:hover,
.blog-sidebar .category-widget ul li:hover:before {
  color: #096366;
}

.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 .img-holder img{
  height: 100px;
  object-fit: cover;
}

.blog-sidebar .recent-post-widget .post .details {
  width: calc(100% - 90px);
  float: left;
  padding-left: 20px;
}

@media (max-width: 575px) {
  .blog-sidebar .recent-post-widget .post .details {
    padding-left: 10px;
  }
}

.blog-sidebar .recent-post-widget .post h4 {
  margin: 0;
  color: #000;
  font-family: "Inter";
  font-size: 20px;
  font-weight: 500;
  line-height: 32px;
}

@media (max-width: 1199px) {
  .blog-sidebar .recent-post-widget .post h4 {
    margin: 0;
  }
}

@media (max-width: 575px) {
  .blog-sidebar .recent-post-widget .post h4 {
    font-size: 16px;
    line-height: 26px;
  }
}

.blog-sidebar .recent-post-widget .post h4 a {
  display: inline-block;
  color: #000;
}

.blog-sidebar .recent-post-widget .post h4 a:hover {
  color: #096366;
}

.blog-sidebar .recent-post-widget .post .details .date {
  color: #666666;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
}

@media (max-width: 575px) {
  .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 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;
}

.blog-sidebar .tag-widget ul li a {
  display: inline-block;
  padding: 5px 12px;
  color: #626B72;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
  border: 1px solid #E2E2E2;
  text-transform: capitalize;
}

.blog-sidebar .tag-widget ul li a:hover {
  background: #215153;
  color: #fff;
}

/**** 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: #444444;
  background: rgb(245, 248, 251);
  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: #215153;
  border-color: #215153;
  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;
  }
}

.practice-sidebar {
  max-width: 500px;
}

@media (max-width: 991px) {
  .practice-sidebar {
    margin-top: 50px;
  }
}

.practice-catagory-title {
  background-color: #215153;
  padding: 20px 30px;
}

@media (max-width: 1399px) {
  .practice-catagory-title {
    padding: 20px 20px;
  }
}

@media (max-width: 1199px) {
  .practice-catagory-title {
    padding: 15px;
  }
}

.practice-catagory-title h3 {
  margin: 0;
  font-size: 40px;
  font-weight: 400;
  line-height: normal;
  color: #fff;
}

@media (max-width: 1399px) {
  .practice-catagory-title h3 {
    font-size: 35px;
  }
}

@media (max-width: 1199px) {
  .practice-catagory-title h3 {
    font-size: 30px;
  }
}

.practice-catagory ul {
  background-color: #F8F8F8;
  padding: 15px 30px;
  list-style: none;
}

@media (max-width: 1399px) {
  .practice-catagory ul {
    padding: 15px 20px;
  }
}

@media (max-width: 1199px) {
  .practice-catagory ul {
    padding: 15px;
  }
}

.practice-catagory ul li {
  border-bottom: 2px solid #BBBBBB;
  padding: 20px 0;
}

@media (max-width: 575px) {
  .practice-catagory ul li {
    padding: 10px 0;
  }
}

.practice-catagory ul li:last-child {
  border-bottom: none;
}

.practice-catagory ul li a {
  color: #000;
  font-size: 25px;
  font-weight: 400;
  line-height: 35px;
  display: block;
  transition: all 0.3s ease-in-out;
  position: relative;
}

@media (max-width: 1399px) {
  .practice-catagory ul li a {
    font-size: 20px;
  }
}

@media (max-width: 575px) {
  .practice-catagory ul li a {
    font-size: 18px;
  }
}

.practice-catagory ul li a:hover {
  color: #096366;
}

.practice-catagory ul li a:hover::before {
  color: #215153;
}

.practice-catagory ul li a::before {
  position: absolute;
  right: 0;
  top: 20px;
  transform: translateY(-50%);
  content: "\e65a";
  font-family: "themify";
  transition: all 0.3s ease-in-out;
  color: #666666;
  font-size: 20px;
}

@media (max-width: 1399px) {
  .practice-catagory ul li a::before {
    font-size: 17px;
  }
}

.practice-info {
  padding: 50px 20px;
  text-align: center;
  width: 100%;
  margin-top: 55px;
  background: #215153;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

@media (max-width: 575px) {
  .practice-info {
    margin-top: 30px;
  }
}

.practice-info .icon {
  margin-bottom: 30px;
}

.practice-info h2 {
  font-size: 25px;
  font-weight: 400;
  line-height: 35px;
  margin-bottom: 10px;
  color: #fff;
  font-family: "Inter";
}

@media (max-width: 1399px) {
  .practice-info h2 {
    font-size: 20px;
  }
}

@media (max-width: 1199px) {
  .practice-info h2 {
    font-size: 16px;
  }
}

.practice-info span {
  font-family: "Marcellus";
  color: #fff;
  font-size: 50px;
  font-weight: 400;
  line-height: normal;
  display: block;
}

@media (max-width: 1399px) {
  .practice-info span {
    font-size: 40px;
  }
}

@media (max-width: 1199px) {
  .practice-info span {
    font-size: 33px;
  }
}

.practice-info .theme-btn {
  background-color: #CDB091;
  border: 0;
  border-radius: 0;
  padding: 14px 48px;
  text-align: center;
  color: #001635;
  font-weight: 600;
  margin-top: 30px;
}

.practice-info .theme-btn::before {
  display: none;
}

/*--------------------------------------------------------------
2. header
--------------------------------------------------------------*/
/* 2.1 navigation */
.wpo-site-header {
  /* navigation open and close btn hide for width screen */
  /* style for navigation less than 992px */
  /*navbar collaps less then 992px*/
  /*** cart-search-contact ***/
  position: absolute;
  left: 5%;
  width: 90%;
  z-index: 99;
  top: 30px;
  background: #215153;
  padding: 20px 25px;
  border-radius: 15px;
}

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

@media (max-width: 1200px) {
  .wpo-site-header {
    padding: 20px 0;
  }
}

@media (max-width: 991px) {
  .wpo-site-header {
    position: relative;
    left: 0;
    width: 100%;
    top: 0px;
    padding: 0 15px;
    border-radius: 0;
  }
}

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

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

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

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

@media (max-width: 991px) {
  .wpo-site-header .navigation {
    padding: 20px 0;
  }
}

@media (max-width: 575px) {
  .wpo-site-header .navigation {
    padding: 10px 0;
  }
}

.wpo-site-header #navbar {
  transition: all 0.5s;
}

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

@media screen and (min-width: 992px) {
  .wpo-site-header #navbar {
    /*** hover effect ***/
    border-radius: 29px;
    border: 1px solid #2B5E60;
    justify-content: center;
  }

  .wpo-site-header #navbar li {
    position: relative;
    line-height: unset;
  }

  .wpo-site-header #navbar>ul>li>a:hover:before,
  .wpo-site-header #navbar>ul>li>a.active:before {
    opacity: 1;
    visibility: visible;
  }

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

  .wpo-site-header #navbar>ul>li>.sub-menu>.menu-item-has-children>a {
    position: relative;
  }

  .wpo-site-header #navbar>ul>li>.sub-menu>.menu-item-has-children>a:before {
    font-family: "themify";
    content: "\e649";
    font-size: 11px;
    font-size: 0.73333rem;
    position: absolute;
    right: 15px;
    top: 58%;
    transform: translateY(-50%);
  }

  .wpo-site-header #navbar>ul>li:hover>.sub-menu {
    top: 100%;
    visibility: visible;
    opacity: 1;
  }

  .wpo-site-header #navbar .sub-menu>li:hover>.sub-menu {
    left: 100%;
    visibility: visible;
    opacity: 1;
  }
}

.wpo-site-header .container-fluid {
  display: block;
}

@media (max-width: 991px) {
  .wpo-site-header .container-fluid {
    padding-right: 0;
  }
}

@media (max-width: 991px) {
  .wpo-site-header {
    /* class for show hide navigation */
  }

  .wpo-site-header .row {
    flex-wrap: nowrap;
  }

  .wpo-site-header .container {
    width: 100%;
    max-width: 100%;
  }

  .wpo-site-header .header-right {
    right: 15px;
  }
}

@media (max-width: 991px) and (max-width: 425px) {
  .wpo-site-header .header-right {
    right: 10px;
  }
}

@media (max-width: 991px) {
  .wpo-site-header .navbar-header button span {
    background-color: #fff;
    width: 20px;
    display: block;
    height: 2px;
    margin-bottom: 5px;
  }

  .wpo-site-header .navbar-header button span:last-child {
    margin: 0;
  }
}

.wpo-site-header #navbar 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: #215153;
  }

  .wpo-site-header #navbar .close-navbar .ti-close {
    position: relative;
    top: 1px;
  }

  .wpo-site-header .navbar-toggler .first-angle,
  .wpo-site-header .navbar-toggler .last-angle {
    transition: all 0.3s;
  }

  .wpo-site-header .x-close .middle-angle {
    opacity: 0;
  }

  .wpo-site-header .x-close .first-angle {
    position: absolute;
    -webkit-transform: rotate(-44deg);
    top: 16px;
    left: 10px;
  }

  .wpo-site-header .x-close .last-angle {
    -webkit-transform: rotate(44deg);
    position: absolute;
    top: 16px;
    right: 10px;
  }
}

@media (max-width: 767px) {
  .wpo-site-header .navbar-header .navbar-brand {
    font-size: 24px;
  }

  .wpo-site-header #navbar .navbar-nav {
    margin: 0;
  }
}

@media (max-width: 991px) {
  .wpo-site-header .navbar-collapse.collapse {
    display: none;
  }

  .wpo-site-header .navbar-collapse.collapse.in {
    display: block;
  }

  .wpo-site-header .navbar-header .collapse,
  .wpo-site-header .navbar-toggle {
    display: block;
  }

  .wpo-site-header .navbar-header {
    float: none;
    position: relative;
    z-index: 99;
    text-align: center;
  }

  .wpo-site-header .navbar-right {
    float: none;
  }

  .wpo-site-header .navbar-nav {
    float: none;
  }

  .wpo-site-header .navbar-nav>li {
    float: none;
  }
}

.wpo-site-header .header-right {
  display: flex;
  justify-content: flex-end;
  z-index: 991;
  position: relative;
  align-items: center;
}

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

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

.wpo-site-header .header-right .header-contact {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-right: 35px;
  position: relative;
}

.wpo-site-header .header-right .header-contact::before {
  position: absolute;
  content: "";
  top: -25px;
  right: 0;
  width: 1px;
  height: 102px;
  background: rgba(231, 232, 239, 0.11);
}

@media (max-width: 1500px) {
  .wpo-site-header .header-right .header-contact::before {
    height: 91px;
  }
}

@media (max-width: 1200px) {
  .wpo-site-header .header-right .header-contact::before {
    top: -30px;
  }
}

@media (max-width: 991px) {
  .wpo-site-header .header-right .header-contact::before {
    height: 95px;
    top: -33px;
  }
}

@media (max-width: 1500px) {
  .wpo-site-header .header-right .header-contact {
    padding-right: 10px;
    gap: 6px;
  }
}

@media (max-width: 991px) {
  .wpo-site-header .header-right .header-contact {
    margin-right: 0;
  }
}

@media (max-width: 500px) {
  .wpo-site-header .header-right .header-contact {
    display: none;
  }
}

.wpo-site-header .header-right .header-contact .header-contact-icon a i {
  font-size: 24px;
  color: #fff;
}

@media (max-width: 1500px) {
  .wpo-site-header .header-right .header-contact .header-contact-icon a i {
    font-size: 20px;
  }
}

@media (max-width: 1200px) {
  .wpo-site-header .header-right .header-contact .header-contact-icon a i {
    font-size: 24px;
  }
}

@media (max-width: 1200px) {
  .wpo-site-header .header-right .header-contact .header-contact-text {
    display: none;
  }
}

.wpo-site-header .header-right .header-contact .header-contact-text p {
  margin: 0;
  color: #D9D9D9;
  font-size: 14px;
  font-weight: 400;
  line-height: 25px;
}

@media (max-width: 1500px) {
  .wpo-site-header .header-right .header-contact .header-contact-text p {
    font-size: 12px;
    line-height: 15px;
  }
}

.wpo-site-header .header-right .header-contact .header-contact-text span {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: 25px;
}

@media (max-width: 1500px) {
  .wpo-site-header .header-right .header-contact .header-contact-text span {
    font-size: 12px;
    line-height: 20px;
  }
}

.wpo-site-header .header-right .close-form .theme-btn {
  padding: 17px 30px;
  font-size: 18px;
  font-weight: 500;
  text-transform: capitalize;
  display: flex;
  align-items: center;
  color: #215153;
  border-radius: 10px;
  transition: all ease-in-out 0.4s;
  background-color: #EBD6C0;
  border: 0;
}

@media (max-width: 1500px) {
  .wpo-site-header .header-right .close-form .theme-btn {
    padding: 12px 18px;
    font-size: 15px;
  }
}

@media (max-width: 1200px) {
  .wpo-site-header .header-right .close-form .theme-btn {
    padding: 12px 17px;
  }
}

@media (max-width: 991px) {
  .wpo-site-header .header-right .close-form .theme-btn {
    padding: 0;
    width: 55px;
    height: 55px;
    line-height: 55px;
    text-align: center;
    justify-content: center;
    border-radius: 50%;
  }
}

@media (max-width: 575px) {
  .wpo-site-header .header-right .close-form .theme-btn {
    width: 45px;
    height: 45px;
    line-height: 45px;
  }
}

@media (max-width: 991px) {
  .wpo-site-header .header-right .close-form .theme-btn span {
    display: none;
  }
}

.wpo-site-header .header-right .close-form .theme-btn i {
  font-size: 20px;
  color: #000;
  position: relative;
  top: -2px;
  right: 10px;
}

@media (max-width: 1500px) {
  .wpo-site-header .header-right .close-form .theme-btn i {
    font-size: 17px;
    right: 5px;
  }
}

@media (max-width: 991px) {
  .wpo-site-header .header-right .close-form .theme-btn i {
    font-size: 22px;
    right: 0;
  }
}

@media (max-width: 575px) {
  .wpo-site-header .header-right .close-form .theme-btn i {
    font-size: 18px;
  }
}

.wpo-site-header .header-right .close-form .theme-btn:hover {
  background-color: #fff;
}

.wpo-site-header .header-right .close-form .theme-btn::before {
  display: none;
}

.wpo-site-header .header-right .close-form .theme-btn::after {
  display: none;
}

@media (max-width: 450px) {
  .wpo-site-header .header-right>div {
    margin-right: 18px;
  }
}

.wpo-site-header .header-right>div:last-child {
  margin: 0 0 0 30px;
  position: relative;
}

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

@media (max-width: 767px) {
  .wpo-site-header .header-right>div:last-child {
    margin: 3px 0 0 10px;
  }
}

@media (max-width: 450px) {
  .wpo-site-header .header-right .cart-toggle-btn {
    display: none;
  }
}

.wpo-site-header .header-right .header-search-form-wrapper .fi:before {
  font-size: 24px;
}

.wpo-site-header .header-right .search-toggle-btn {
  color: #444444;
  background: none;
  margin-right: 10px;
}

.wpo-site-header .header-right .search-toggle-btn .fi:before {
  font-size: 20px;
}

.wpo-site-header .header-right .search-toggle-btn .ti-close {
  display: block;
  line-height: 20px;
  position: relative;
  top: -2px;
}

.wpo-site-header .header-right .search-toggle-btn .fi:before {
  font-size: 26px;
}

/*** cart-search-contact ***/
.cart-search-contact button {
  background: transparent;
  padding: 0;
  border: 0;
  outline: 0;
}

.cart-search-contact .search-toggle-btn i {
  font-size: 30px;
  font-size: 1.6666666667rem;
  color: #fff;
}

.cart-search-contact>div {
  float: left;
  position: relative;
}

.cart-search-contact>div+div {
  margin-left: 12px;
}

.cart-search-contact .header-search-form {
  position: absolute;
  width: 350px;
  right: 0;
  top: 75px;
  transform: scale(0);
  opacity: 0;
  visibility: hidden;
  background: #fff;
  padding: 30px;
  border-radius: 6px;
  transition: all 0.5s;
  box-shadow: -2px 18px 40px -9px rgb(153, 153, 153);
}

@media (max-width: 991px) {
  .cart-search-contact .header-search-form {
    top: 65px;
  }
}

@media (max-width: 767px) {
  .cart-search-contact .header-search-form {
    right: 15px;
  }
}

@media (max-width: 575px) {
  .cart-search-contact .header-search-form {
    width: 260px;
    padding: 15px;
  }
}

.cart-search-contact .header-search-form-wrapper .fi:before {
  font-size: 24px;
  font-size: 1.3333333333rem;
}

.cart-search-contact form div {
  position: relative;
}

.cart-search-contact form div button {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}

.cart-search-contact form div button .fi:before {
  font-size: 24px;
}

.cart-search-contact input {
  width: 100%;
  height: 50px;
  padding: 6px 20px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  border: 1px solid #dedede;
}

.cart-search-contact input:focus {
  box-shadow: none;
  border-color: #B59E9C;
}

.wpo-site-header .header-right .header-search-content-toggle {
  opacity: 1;
  visibility: visible;
  right: 0;
  transform: scale(1);
}

.mini-cart {
  margin-left: 5px;
}

.mini-cart .fi {
  font-size: 24px;
  color: #444444;
}

.mini-cart .cart-toggle-btn {
  background-color: transparent;
}

.mini-cart .cart-count {
  background: #B59E9C;
  width: 19px;
  height: 19px;
  font-size: 10px;
  font-size: 0.5555555556rem;
  line-height: 17px;
  color: white;
  position: absolute;
  top: -16px;
  right: -6px;
  border-radius: 50%;
  font-weight: 600;
}

.mini-cart-content {
  background: #fff;
  width: 320px;
  height: 100%;
  z-index: 100;
  position: fixed;
  right: -320px;
  top: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
  box-shadow: -2px 18px 40px -9px rgb(153, 153, 153);
}

@media (max-width: 575px) {
  .mini-cart-content {
    width: 290px;
  }
}

.mini-cart-content .mini-cart-close {
  display: block;
  width: 40px;
  height: 40px;
  background-color: rgb(51, 51, 51);
  color: rgb(255, 255, 255);
  font-size: 0px;
  text-align: center;
  overflow: hidden;
  position: relative;
  float: right;
  line-height: 54px;
  border-radius: 3px;
  right: 10px;
  top: 20px;
}

.mini-cart-content .mini-cart-close i {
  font-size: 15px;
}

.mini-cart-content p {
  font-size: 15px;
  font-size: 0.8333333333rem;
  font-weight: 500;
  color: #000;
  margin: 0;
  text-transform: uppercase;
}

.mini-cart-content .mini-cart-items {
  padding: 100px 20px 25px;
}

.mini-cart-content .mini-cart-item {
  padding-top: 15px;
  margin-top: 15px;
  border-top: 1px solid #efefef;
}

.mini-cart-content .mini-cart-item:first-child {
  padding-top: 0;
  margin-top: 0;
  border-top: 0;
}

.mini-cart-content .mini-cart-item-image {
  width: 50px;
  height: 50px;
  border: 2px solid #f3f3f3;
  float: left;
  margin-right: 15px;
}

.mini-cart-content .mini-cart-item-image a,
.mini-cart-content .mini-cart-item-image img {
  display: block;
  width: 46px;
  height: 46px;
}

.mini-cart-content .mini-cart-item-des {
  position: relative;
  overflow: hidden;
}

.mini-cart-content .mini-cart-item-des a {
  font-size: 15px;
  font-size: 0.8333333333rem;
  font-weight: 600;
  text-align: left;
  color: #000;
}

.mini-cart-content .mini-cart-item-des a:hover {
  color: #966a65;
}

.mini-cart-content .mini-cart-item-des .mini-cart-item-price {
  font-size: 13px;
  font-size: 0.7222222222rem;
  color: #333;
  display: block;
  margin-top: 3px;
  display: flex;
}

.mini-cart-content .mini-cart-item-des .mini-cart-item-quantity {
  font-size: 12px;
  font-size: 0.6666666667rem;
  color: #444;
  display: block;
  position: relative;
  right: -3px;
  top: 0;
}

.mini-cart-content .visible-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  opacity: 0.02;
  z-index: -1;
}

.mini-cart-content .mini-cart-action {
  padding: 20px 0 30px;
  text-align: center;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 85%;
}

.mini-cart-content .mini-cart-action .theme-btn-s2 {
  float: right;
}

.mini-cart-content .mini-cart-action .mini-btn {
  width: 240px;
}

.mini-cart-content .mini-cart-action .mini-checkout-price {
  font-size: 18px;
  font-size: 1rem;
  font-weight: 600;
  color: #000;
  display: block;
  margin-bottom: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mini-cart-content .mini-cart-action .mini-checkout-price span {
  color: #B59E9C;
  font-size: 20px;
}

.mini-cart-content-toggle,
.mini-wislist-content-toggle {
  opacity: 1;
  visibility: visible;
  right: 0;
}

.mini-cart-content .mini-cart-empty p {
  text-transform: capitalize;
  color: #687693;
  margin-bottom: 0;
}

.mini-cart-content .mini-cart-empty {
  padding-top: 80px;
  text-align: center;
}

.mini-cart-content .mini-cart-empty .cart-emty-icon i:before {
  font-size: 120px;
  color: #eee;
}

.mini-cart-content .mini-cart-empty a {
  display: inline-block;
}

@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;
  }
}

.header-search-area {
  background: #fff;
  width: 100%;
  padding: 100px 0;
  text-align: center;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 999;
}

.header-search-area h3 {
  font-size: 45px;
  margin: 0 0 1em;
}

.header-search-area form {
  position: relative;
}

.header-search-area input {
  height: 50px;
  font-size: 18px;
  font-size: 1.2rem;
  border-radius: 0;
  border: 0;
  border-bottom: 1px solid #d0d0d0;
  box-shadow: none;
}

.header-search-area input:focus {
  box-shadow: none;
  border-color: #B59E9C;
}

.header-search-area form button {
  background: transparent;
  border: 0;
  font-size: 20px;
  font-size: 1.33333rem;
  position: absolute;
  right: 0;
  bottom: 10px;
}

.header-search-area form button:focus {
  border: none;
  outline: none;
}

.header-search-area .close-form {
  position: absolute;
  right: 35px;
  top: 35px;
  bottom: auto;
  padding-bottom: 5px;
  border-bottom: 1px solid;
}

.header-search-area .close-form button {
  background: transparent;
  border: 0;
  outline: 0;
  font-size: 13px;
  font-size: 0.86667rem;
  text-transform: uppercase;
  color: #000;
  letter-spacing: 2px;
  z-index: 99;
}

.header-search-area .close-form button:focus {
  border: 0;
  outline: 0;
}

@media (max-width: 991px) {
  .page-wrapper {
    transition: all 0.3s;
  }

  .body-overlay:before {
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    position: absolute;
    left: 0;
    top: 0;
    z-index: 10;
    transition: all 0.3s;
  }
}

.wpo-site-header {
  /* navigation open and close btn hide for width screen */
  /* style for navigation less than 992px */
  /*navbar collaps less then 992px*/
}

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

.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: #CDB091;
}

@media screen and (min-width: 992px) {
  .wpo-site-header #navbar {
    /*** hover effect ***/
  }

  .wpo-site-header #navbar li {
    position: relative;
  }

  .wpo-site-header #navbar>ul>li>a {
    padding: 20px 26px;
    display: block;
    position: relative;
    text-transform: capitalize;
    color: #fff;
    font-family: "Inter";
    font-size: 16px;
    font-weight: 300;
    line-height: normal;
  }
}

@media screen and (min-width: 992px) and (max-width: 1835px) {
  .wpo-site-header #navbar>ul>li>a {
    padding: 18px 21px;
  }
}

@media screen and (min-width: 992px) {
  .wpo-site-header #navbar>ul .sub-menu {
    background-color: #fff;
    box-shadow: 0px 2px 20px 0px rgba(62, 65, 159, 0.09);
    width: 230px;
    position: absolute;
    padding: 20px 0;
    left: 0;
    top: 110%;
    z-index: 10;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s;
    transform: scaleY(0);
    transform-origin: center top 0;
    transition: all 0.3s ease-in-out 0s;
    -webkit-transition: all 0.3s ease-in-out 0s;
  }

  .wpo-site-header #navbar>ul>li .sub-menu a {
    font-size: 16px;
    display: block;
    padding: 10px 15px;
    color: #444444;
    position: relative;
    overflow: hidden;
    font-weight: 400;
    text-transform: capitalize;
  }

  .wpo-site-header #navbar>ul>li .sub-menu a:after {
    position: absolute;
    left: 15px;
    bottom: 0;
    width: 0;
    height: 3px;
    background: #CDB091;
    content: "";
    transition: all 0.3s;
    border-radius: 5px;
  }

  .wpo-site-header #navbar>ul>li .sub-menu a:hover,
  .wpo-site-header #navbar>ul>li .sub-menu a.active {
    color: #CDB091;
  }

  .wpo-site-header #navbar>ul>li .sub-menu a:hover:after,
  .wpo-site-header #navbar>ul>li .sub-menu a.active:after {
    width: 40px;
    opacity: 1;
    visibility: visible;
  }

  .wpo-site-header #navbar>ul>li>.sub-menu .sub-menu {
    left: 110%;
    top: 0;
    transition: all 0.3s;
    transform: none;
    transform-origin: none;
    transition: all 0.3s ease-in-out 0s;
  }

  .wpo-site-header #navbar>ul>li>.sub-menu>.menu-item-has-children>a {
    position: relative;
  }

  .wpo-site-header #navbar>ul>li>.sub-menu>.menu-item-has-children>a:before {
    font-family: "themify";
    content: "\e649";
    font-size: 11px;
    font-size: 0.6111111111rem;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
  }

  .wpo-site-header #navbar>ul>li:hover>.sub-menu {
    top: 100%;
    visibility: visible;
    opacity: 1;
    transform: scaleY(100%);
    -webkit-transform: scaleY(100%);
  }

  .wpo-site-header #navbar .sub-menu>li:hover>.sub-menu {
    left: 100%;
    visibility: visible;
    opacity: 1;
  }
}

@media (max-width: 991px) {
  .wpo-site-header #navbar>ul>li a {
    display: block;
    font-size: 15px;
    font-size: 0.8333333333rem;
    color: #fff;
    font-weight: 500;
  }

  .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>a {
    position: relative;
    color: #fff;
  }

  .wpo-site-header #navbar>ul .menu-item-has-children>a:hover,
  .wpo-site-header #navbar>ul .menu-item-has-children>a.active {
    color: #fff;
  }

  .wpo-site-header #navbar>ul .menu-item-has-children>a:before {
    font-family: "themify";
    content: "\e649";
    font-size: 11px;
    font-size: 0.6111111111rem;
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s;
  }

  .wpo-site-header #navbar>ul .menu-item-has-children>a.rotate:before {
    transform: rotate(90deg);
    top: 29%;
  }

  .wpo-site-header #navbar>ul .menu-item-has-children>a.rotate {
    color: #fff;
  }
}

@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;
}

@media (max-width: 991px) {
  .wpo-site-header {
    /* class for show hide navigation */
  }

  .wpo-site-header .container {
    width: 100%;
  }

  .wpo-site-header .mobail-menu button {
    background-color: #CDB091;
    width: 40px;
    height: 35px;
    border: 0;
    padding: 5px 10px;
    outline: 0;
    position: relative;
    z-index: 20;
    display: block;
  }

  .wpo-site-header .mobail-menu button:focus {
    outline: none;
    box-shadow: none;
  }

  .wpo-site-header .mobail-menu button span {
    background-color: #215153;
    width: 20px;
    display: block;
    height: 2px;
    margin-bottom: 5px;
  }

  .wpo-site-header .mobail-menu button span.first-angle {
    margin-top: 2px;
  }

  .wpo-site-header .mobail-menu button span:last-child {
    margin: 0;
  }

  .wpo-site-header .mobail-menu button .sr-only {
    display: none;
    opacity: 0;
    visibility: hidden;
  }

  .wpo-site-header #navbar {
    background: #215153;
    display: block;
    width: 300px;
    height: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    position: fixed;
    left: -320px;
    top: 0px;
    z-index: 999999;
    opacity: 0;
    visibility: hidden;
  }

  .wpo-site-header #navbar .navbar-nav {
    display: block;
  }

  .wpo-site-header #navbar>ul {
    position: relative;
    z-index: 101;
  }

  .wpo-site-header #navbar ul a {
    color: #000;
  }

  .wpo-site-header #navbar ul a:hover,
  .wpo-site-header #navbar ul li.current a {
    color: #215153;
  }

  .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 #navbar.slideInn {
    left: 0;
    opacity: 1;
    visibility: visible;
  }

  .wpo-site-header .navbar-toggler .first-angle,
  .wpo-site-header .navbar-toggler .last-angle {
    transition: all 0.3s;
  }

  .wpo-site-header .x-close .middle-angle {
    opacity: 0;
  }

  .wpo-site-header .x-close .first-angle {
    position: absolute;
    -webkit-transform: rotate(-44deg);
    top: 16px;
    left: 10px;
  }

  .wpo-site-header .x-close .last-angle {
    -webkit-transform: rotate(44deg);
    position: absolute;
    top: 16px;
    right: 10px;
  }
}

@media (max-width: 767px) {
  .wpo-site-header .navbar-header .navbar-brand {
    font-size: 24px;
  }

  .wpo-site-header #navbar .navbar-nav {
    margin: 0;
  }
}

.wpo-site-header .navbar-header .navbar-brand {
  display: block;
  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;
  }

  .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: 1700px) {
  .wpo-site-header #navbar>ul>li>a {
    padding: 15px;
  }
}

@media (max-width: 1500px) {
  .wpo-site-header #navbar>ul>li>a {
    padding: 15px 8px;
    font-size: 15px;
  }
}

@media (max-width: 991px) {
  .wpo-site-header {
    padding: 0;
  }
}

@media (max-width: 991px) {
  .wpo-site-header #navbar>ul>li>a {
    font-size: 15px;
  }
}

@media (max-width: 991px) {
  .wpo-site-header #navbar>ul>li>a {
    padding: 15px 30px;
  }
}

@media (max-width: 991px) {

  .wpo-site-header,
  .wpo-header-style-2 {
    z-index: 99999;
  }
}

.wpo-site-header .navigation.sticky-header {
  padding: 21px 60px;
}

@media (max-width: 1700px) {
  .wpo-site-header .navigation.sticky-header {
    padding: 21px 40px;
  }
}

@media (max-width: 1400px) {
  .wpo-site-header .navigation.sticky-header {
    padding: 20px;
  }
}

@media (max-width: 1500px) {
  .wpo-site-header .navigation.sticky-header .header-right .header-contact::before {
    height: 91px;
  }
}

@media (max-width: 1200px) {
  .wpo-site-header .navigation.sticky-header .header-right .header-contact::before {
    top: -30px;
  }
}

@media (max-width: 991px) {
  .wpo-site-header .navigation.sticky-header .header-right .header-contact::before {
    height: 83px;
  }
}

@media (max-width: 575px) {
  .wpo-site-header .navigation.sticky-header .header-right .header-contact::before {
    height: 79px;
  }
}

@media (max-width: 991px) {
  .wpo-site-header .navigation.sticky-header {
    padding: 10px 0;
  }
}

.wpo-header-style-s2,
.wpo-header-style-s4 {
  left: 0;
  width: 100%;
  z-index: 999;
  top: 0;
  border-radius: 0;
  padding: 20px 90px;
}

@media (max-width: 1780px) {

  .wpo-header-style-s2,
  .wpo-header-style-s4 {
    padding: 20px 50px;
  }
}

@media (max-width: 1500px) {

  .wpo-header-style-s2,
  .wpo-header-style-s4 {
    padding: 20px;
  }
}

@media (max-width: 991px) {

  .wpo-header-style-s2,
  .wpo-header-style-s4 {
    padding: 0;
    border-bottom: 1px solid #2B5E60;
  }
}

@media (max-width: 425px) {

  .wpo-header-style-s2,
  .wpo-header-style-s4 {
    padding: 0;
  }
}

.wpo-header-style-s2 .header-right .header-contact::before,
.wpo-header-style-s4 .header-right .header-contact::before {
  display: none;
}

.wpo-header-style-s2 .header-right .header-contact,
.wpo-header-style-s4 .header-right .header-contact {
  padding-right: 0;
}

.wpo-header-style-s3 {
  left: 0;
  width: 100%;
  z-index: 999;
  top: 0;
  border-radius: 0;
  background-color: transparent;
  padding: 0;
  position: relative;
}

.wpo-header-style-s3 .header-wrap {
  max-width: 1820px;
  margin: 0 auto;
}

.wpo-header-style-s3 .header-right {
  padding: 15px 0;
  padding-right: 30px;
  border-top-right-radius: 30px;
  position: relative;
}

@media (max-width: 991px) {
  .wpo-header-style-s3 .header-right {
    padding: 0;
  }
}

.wpo-header-style-s3 .header-right::before {
  position: absolute;
  content: "";
  background-color: #215153;
  top: 0;
  right: -1px;
  width: 100%;
  height: 125px;
  border-top-right-radius: 30px;
  border-top-left-radius: 30px;
}

@media (max-width: 991px) {
  .wpo-header-style-s3 .header-right::before {
    display: none;
  }
}

.wpo-header-style-s3 .header-right .header-contact::before {
  display: none;
}

@media (max-width: 991px) {
  .wpo-header-style-s3 .header-right .header-contact .header-contact-icon a i {
    color: #000;
  }
}

.wpo-header-style-s3 .header-right .left-shape {
  position: absolute;
  bottom: -13px;
  left: -57px;
}

@media (max-width: 1500px) {
  .wpo-header-style-s3 .header-right .left-shape {
    bottom: -17px;
    left: -56px;
  }
}

@media (max-width: 991px) {
  .wpo-header-style-s3 .header-right .left-shape {
    display: none;
  }
}

.wpo-header-style-s3 #navbar {
  border: 0;
  border-radius: 0;
}

.wpo-header-style-s3 #navbar>ul>li>a {
  padding: 40px 28px;
  color: #000;
  font-weight: 400;
}

@media (max-width: 1700px) {
  .wpo-header-style-s3 #navbar>ul>li>a {
    padding: 40px 20px;
  }
}

@media (max-width: 1500px) {
  .wpo-header-style-s3 #navbar>ul>li>a {
    padding: 40px 11px;
  }
}

@media (max-width: 991px) {
  .wpo-header-style-s3 #navbar>ul>li>a {
    padding: 15px 30px;
    color: #fff;
  }
}

.wpo-header-style-s3 .navigation.sticky-header {
  padding: 0 40px;
  background: #fff;
}

@media (max-width: 1500px) {
  .wpo-header-style-s3 .navigation.sticky-header {
    padding: 0 20px;
  }
}

@media (max-width: 991px) {
  .wpo-header-style-s3 .navigation.sticky-header {
    padding: 10px 0;
  }
}

.wpo-header-style-s3 .navigation.sticky-header .header-right {
  padding: 0;
}

.wpo-header-style-s3 .navigation.sticky-header .header-right::before,
.wpo-header-style-s3 .navigation.sticky-header .header-right .left-shape {
  display: none;
}

.wpo-header-style-s3 .navigation.sticky-header .header-right .header-contact .header-contact-text p,
.wpo-header-style-s3 .navigation.sticky-header .header-right .header-contact .header-contact-text span {
  color: #000;
}

.wpo-header-style-s3 .navigation.sticky-header .header-right .header-contact .header-contact-icon a i {
  color: #000;
}

.wpo-header-style-s4 {
  padding: 0px 90px 0 40px;
  background-color: transparent;
  position: absolute;
  border: 0;
}

@media (max-width: 1700px) {
  .wpo-header-style-s4 {
    padding: 0 40px;
  }
}

@media (max-width: 1500px) {
  .wpo-header-style-s4 {
    padding: 0 20px;
  }
}

@media (max-width: 1199px) {
  .wpo-header-style-s4 {
    padding: 0 10px;
  }
}

.wpo-header-style-s4 #navbar {
  border: 0;
  border-radius: 0;
}

.wpo-header-style-s4 #navbar>ul>li>a {
  padding: 40px 28px;
}

@media (max-width: 1399px) {
  .wpo-header-style-s4 #navbar>ul>li>a {
    padding: 40px 20px;
  }
}

@media (max-width: 1199px) {
  .wpo-header-style-s4 #navbar>ul>li>a {
    padding: 30px 14px;
  }
}

@media (max-width: 991px) {
  .wpo-header-style-s4 #navbar>ul>li>a {
    padding: 15px 20px;
  }
}

.wpo-header-style-s4 .navigation.sticky-header {
  padding: 0 60px;
}

@media (max-width: 1700px) {
  .wpo-header-style-s4 .navigation.sticky-header {
    padding: 0 40px;
  }
}

@media (max-width: 1399px) {
  .wpo-header-style-s4 .navigation.sticky-header {
    padding: 0 20px;
  }
}

@media (max-width: 991px) {
  .wpo-header-style-s4 .navigation.sticky-header {
    padding: 10px 0;
  }
}

.admin-bar .wpo-site-header .sticky-header.navigation {
  top: 32px;
}

@media(max-width: 991px) {
  .admin-bar .wpo-site-header .sticky-header.navigation {
    top: 46px;
  }
}

@media(max-width: 600px) {
  .admin-bar .wpo-site-header .sticky-header.navigation {
    top: 0;
  }
}

/*--------------------------------------------------------------
3. content
--------------------------------------------------------------*/
/* 3.1 wpo-hero-static */
.wpo-hero-static {
  position: relative;
  background: #E4F2F3;
}

.wpo-hero-static .hero-left {
  padding-top: 240px;
  padding-bottom: 140px;
}

@media (max-width: 1399px) {
  .wpo-hero-static .hero-left {
    padding-top: 200px;
    padding-bottom: 110px;
  }
}

@media (max-width: 1199px) {
  .wpo-hero-static .hero-left {
    padding-top: 160px;
    padding-bottom: 80px;
  }
}

@media (max-width: 991px) {
  .wpo-hero-static .hero-left {
    padding: 80px 0;
    text-align: center;
  }
}

@media (max-width: 767px) {
  .wpo-hero-static .hero-left {
    padding: 60px 0;
  }
}

@media (max-width: 575px) {
  .wpo-hero-static .hero-left {
    padding: 40px 0;
  }
}

.wpo-hero-static .hero-left .hero-left-item .hero-left-top {
  padding-left: 170px;
}

@media (max-width: 1870px) {
  .wpo-hero-static .hero-left .hero-left-item .hero-left-top {
    padding-left: 120px;
  }
}

@media (max-width: 1790px) {
  .wpo-hero-static .hero-left .hero-left-item .hero-left-top {
    padding-left: 90px;
  }
}

@media (max-width: 1139px) {
  .wpo-hero-static .hero-left .hero-left-item .hero-left-top {
    padding-left: 60px;
  }
}

@media (max-width: 1199px) {
  .wpo-hero-static .hero-left .hero-left-item .hero-left-top {
    padding-left: 40px;
  }
}

@media (max-width: 991px) {
  .wpo-hero-static .hero-left .hero-left-item .hero-left-top {
    padding-left: 0;
  }
}

.wpo-hero-static .hero-left .hero-left-item .hero-left-top h2 {
  margin: 0;
  color: #000;
  font-size: 130px;
  font-weight: 400;
  line-height: 140px;
  max-width: 1070px;
}

@media (max-width: 1790px) {
  .wpo-hero-static .hero-left .hero-left-item .hero-left-top h2 {
    font-size: 115px;
    line-height: 140px;
  }
}

@media (max-width: 1600px) {
  .wpo-hero-static .hero-left .hero-left-item .hero-left-top h2 {
    font-size: 100px;
    line-height: 125px;
  }
}

@media (max-width: 1399px) {
  .wpo-hero-static .hero-left .hero-left-item .hero-left-top h2 {
    font-size: 80px;
    line-height: 100px;
  }
}

@media (max-width: 1199px) {
  .wpo-hero-static .hero-left .hero-left-item .hero-left-top h2 {
    font-size: 67px;
    line-height: 85px;
  }
}

@media (max-width: 991px) {
  .wpo-hero-static .hero-left .hero-left-item .hero-left-top h2 {
    font-size: 60px;
    line-height: 75px;
    margin: 0 auto;
    max-width: 800px;
  }
}

@media (max-width: 575px) {
  .wpo-hero-static .hero-left .hero-left-item .hero-left-top h2 {
    font-size: 50px;
    line-height: 65px;
  }
}

@media (max-width: 425px) {
  .wpo-hero-static .hero-left .hero-left-item .hero-left-top h2 {
    font-size: 38px;
    line-height: 50px;
  }
}

.wpo-hero-static .hero-left .hero-left-item .hero-left-bottom {
  display: flex;
  justify-content: space-between;
}

@media (max-width: 991px) {
  .wpo-hero-static .hero-left .hero-left-item .hero-left-bottom {
    flex-direction: column;
  }
}

.wpo-hero-static .hero-left .hero-left-item .hero-left-bottom .image-left {
  position: relative;
  left: -14px;
}

@media (max-width: 991px) {
  .wpo-hero-static .hero-left .hero-left-item .hero-left-bottom .image-left {
    order: 2;
    left: 0;
    position: unset;
  }
}

@media (max-width: 991px) {
  .wpo-hero-static .hero-left .hero-left-item .hero-left-bottom .image-left img {
    width: 100%;
  }
}

.wpo-hero-static .hero-left .hero-left-item .hero-left-bottom .left-content {
  max-width: 430px;
  padding-top: 60px;
}

@media (max-width: 1399px) {
  .wpo-hero-static .hero-left .hero-left-item .hero-left-bottom .left-content {
    padding-top: 30px;
    max-width: 320px;
  }
}

@media (max-width: 1199px) {
  .wpo-hero-static .hero-left .hero-left-item .hero-left-bottom .left-content {
    max-width: 255px;
  }
}

@media (max-width: 991px) {
  .wpo-hero-static .hero-left .hero-left-item .hero-left-bottom .left-content {
    order: 1;
    margin: 0 auto;
    padding-top: 10px;
    max-width: 500px;
  }
}

.wpo-hero-static .hero-left .hero-left-item .hero-left-bottom .left-content p {
  margin: 0;
  color: #000;
  font-size: 25px;
  font-weight: 400;
  line-height: 35px;
}

@media (max-width: 1399px) {
  .wpo-hero-static .hero-left .hero-left-item .hero-left-bottom .left-content p {
    font-size: 20px;
    line-height: 30px;
  }
}

@media (max-width: 1199px) {
  .wpo-hero-static .hero-left .hero-left-item .hero-left-bottom .left-content p {
    font-size: 18px;
    line-height: 26px;
  }
}

@media (max-width: 575px) {
  .wpo-hero-static .hero-left .hero-left-item .hero-left-bottom .left-content p {
    font-size: 16px;
    line-height: 24px;
  }
}

.wpo-hero-static .hero-left .hero-left-item .hero-left-bottom .left-content .client-team {
  margin-left: 130px;
  margin-top: 75px;
}

@media (max-width: 1399px) {
  .wpo-hero-static .hero-left .hero-left-item .hero-left-bottom .left-content .client-team {
    margin-left: 70px;
    margin-top: 30px;
  }
}

@media (max-width: 1199px) {
  .wpo-hero-static .hero-left .hero-left-item .hero-left-bottom .left-content .client-team {
    margin-left: 0;
  }
}

@media (max-width: 991px) {
  .wpo-hero-static .hero-left .hero-left-item .hero-left-bottom .left-content .client-team {
    margin: 0 auto;
    margin-top: 30px;
  }
}

.wpo-hero-static .image-right {
  position: absolute;
  bottom: 0;
  right: 0;
}

@media (max-width: 1790px) {
  .wpo-hero-static .image-right {
    max-width: 600px;
  }
}

@media (max-width: 1600px) {
  .wpo-hero-static .image-right {
    max-width: 550px;
  }
}

@media (max-width: 1399px) {
  .wpo-hero-static .image-right {
    max-width: 460px;
  }
}

@media (max-width: 1199px) {
  .wpo-hero-static .image-right {
    max-width: 380px;
  }
}

@media (max-width: 991px) {
  .wpo-hero-static .image-right {
    display: none;
  }
}

.wpo-hero-static-s2 {
  position: relative;
  background-color: #215153;
}

.wpo-hero-static-s2 .hero-all-item {
  padding-top: 120px;
  padding-bottom: 30px;
}

@media (max-width: 991px) {
  .wpo-hero-static-s2 .hero-all-item {
    padding: 50px 0;
  }
}

@media (max-width: 575px) {
  .wpo-hero-static-s2 .hero-all-item {
    padding: 30px 0;
  }
}

.wpo-hero-static-s2 .hero-all-item .hero-left-item {
  display: flex;
}

@media (max-width: 991px) {
  .wpo-hero-static-s2 .hero-all-item .hero-left-item {
    display: block;
  }
}

.wpo-hero-static-s2 .hero-all-item .hero-left-item .hero-left-top {
  max-width: 1260px;
}

@media (max-width: 991px) {
  .wpo-hero-static-s2 .hero-all-item .hero-left-item .hero-left-top {
    text-align: center;
    margin: 0 auto;
  }
}

.wpo-hero-static-s2 .hero-all-item .hero-left-item .hero-left-top h2 {
  color: #fff;
  margin: 0;
  font-size: 200px;
  line-height: normal;
  font-weight: 400;
}

.wpo-hero-static-s2 .hero-all-item .hero-left-item .hero-left-top h2 span {
  display: inline-block;
}

@media (max-width: 1730px) {
  .wpo-hero-static-s2 .hero-all-item .hero-left-item .hero-left-top h2 {
    font-size: 175px;
  }
}

@media (max-width: 1600px) {
  .wpo-hero-static-s2 .hero-all-item .hero-left-item .hero-left-top h2 {
    font-size: 135px;
  }
}

@media (max-width: 1399px) {
  .wpo-hero-static-s2 .hero-all-item .hero-left-item .hero-left-top h2 {
    font-size: 100px;
  }
}

@media (max-width: 1199px) {
  .wpo-hero-static-s2 .hero-all-item .hero-left-item .hero-left-top h2 {
    font-size: 80px;
  }
}

@media (max-width: 575px) {
  .wpo-hero-static-s2 .hero-all-item .hero-left-item .hero-left-top h2 {
    font-size: 65px;
  }
}

@media (max-width: 425px) {
  .wpo-hero-static-s2 .hero-all-item .hero-left-item .hero-left-top h2 {
    font-size: 48px;
  }
}

@media (max-width: 1600px) {
  .wpo-hero-static-s2 .hero-all-item .hero-left-item .hero-left-top h2 img {
    max-width: 142px;
    width: 100%;
  }
}

@media (max-width: 1399px) {
  .wpo-hero-static-s2 .hero-all-item .hero-left-item .hero-left-top h2 img {
    max-width: 100px;
  }
}

@media (max-width: 1199px) {
  .wpo-hero-static-s2 .hero-all-item .hero-left-item .hero-left-top h2 img {
    max-width: 80px;
  }
}

@media (max-width: 575px) {
  .wpo-hero-static-s2 .hero-all-item .hero-left-item .hero-left-top h2 img {
    max-width: 60px;
  }
}

@media (max-width: 425px) {
  .wpo-hero-static-s2 .hero-all-item .hero-left-item .hero-left-top h2 img {
    max-width: 50px;
  }
}

.wpo-hero-static-s2 .hero-all-item .hero-left-item .hero-right-item {
  max-width: 480px;
  position: relative;
  padding-top: 100px;
  margin-left: 25px;
}

@media (max-width: 1600px) {
  .wpo-hero-static-s2 .hero-all-item .hero-left-item .hero-right-item {
    padding-top: 35px;
  }
}

@media (max-width: 991px) {
  .wpo-hero-static-s2 .hero-all-item .hero-left-item .hero-right-item {
    padding-top: 0;
    margin: 0 auto;
    text-align: center;
  }
}

.wpo-hero-static-s2 .hero-all-item .hero-left-item .hero-right-item .right-content p {
  margin: 0;
  color: #fff;
  font-size: 25px;
  line-height: 35px;
  font-weight: 400;
}

@media (max-width: 1399px) {
  .wpo-hero-static-s2 .hero-all-item .hero-left-item .hero-right-item .right-content p {
    font-size: 22px;
  }
}

@media (max-width: 991px) {
  .wpo-hero-static-s2 .hero-all-item .hero-left-item .hero-right-item .right-content p {
    font-size: 18px;
    line-height: 30px;
  }
}

@media (max-width: 575px) {
  .wpo-hero-static-s2 .hero-all-item .hero-left-item .hero-right-item .right-content p {
    font-size: 16px;
    line-height: 26px;
  }
}

.wpo-hero-static-s2 .hero-all-item .hero-left-item .hero-right-item .hero-circle {
  position: unset;
  max-width: 150px;
  margin: 0 auto;
  margin-top: 50px;
  transform: none;
}

@media (max-width: 1600px) {
  .wpo-hero-static-s2 .hero-all-item .hero-left-item .hero-right-item .hero-circle {
    margin-top: 30px;
  }
}

@media (max-width: 575px) {
  .wpo-hero-static-s2 .hero-all-item .hero-left-item .hero-right-item .hero-circle {
    max-width: 130px;
  }
}

.wpo-hero-static-s3 {
  position: relative;
  z-index: 1;
}

.wpo-hero-static-s3 .hero-wrapper {
  background-color: #215153;
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  padding: 50px;
  max-width: 1820px;
  margin: 0 auto;
}

@media (max-width: 991px) {
  .wpo-hero-static-s3 .hero-wrapper {
    padding: 30px;
    border-top-right-radius: 30px;
  }
}

@media (max-width: 575px) {
  .wpo-hero-static-s3 .hero-wrapper {
    padding: 10px;
  }
}

@media (max-width: 991px) {
  .wpo-hero-static-s3 .hero-wrapper .hero-item .hero-left-top {
    text-align: center;
  }
}

.wpo-hero-static-s3 .hero-wrapper .hero-item .hero-left-top h2 {
  margin: 0;
  font-size: 200px;
  line-height: 200px;
  font-weight: 400;
  color: #fff;
  text-transform: uppercase;
}

@media (max-width: 1750px) {
  .wpo-hero-static-s3 .hero-wrapper .hero-item .hero-left-top h2 {
    font-size: 185px;
  }
}

@media (max-width: 1600px) {
  .wpo-hero-static-s3 .hero-wrapper .hero-item .hero-left-top h2 {
    font-size: 160px;
    line-height: 170px;
  }
}

@media (max-width: 1199px) {
  .wpo-hero-static-s3 .hero-wrapper .hero-item .hero-left-top h2 {
    font-size: 130px;
    line-height: 160px;
  }
}

@media (max-width: 991px) {
  .wpo-hero-static-s3 .hero-wrapper .hero-item .hero-left-top h2 {
    font-size: 100px;
    line-height: 120px;
  }
}

@media (max-width: 767px) {
  .wpo-hero-static-s3 .hero-wrapper .hero-item .hero-left-top h2 {
    font-size: 70px;
    line-height: 90px;
  }
}

@media (max-width: 575px) {
  .wpo-hero-static-s3 .hero-wrapper .hero-item .hero-left-top h2 {
    font-size: 60px;
    line-height: 80px;
  }
}

@media (max-width: 425px) {
  .wpo-hero-static-s3 .hero-wrapper .hero-item .hero-left-top h2 {
    font-size: 50px;
    line-height: 65px;
  }
}

.wpo-hero-static-s3 .hero-wrapper .hero-item .hero-left-top .text-middle {
  text-align: center;
  font-size: 200px;
  font-weight: 400;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #fff;
  color: transparent;
  opacity: 1;
}

@media (max-width: 1750px) {
  .wpo-hero-static-s3 .hero-wrapper .hero-item .hero-left-top .text-middle {
    font-size: 185px;
  }
}

@media (max-width: 1600px) {
  .wpo-hero-static-s3 .hero-wrapper .hero-item .hero-left-top .text-middle {
    font-size: 160px;
  }
}

@media (max-width: 1199px) {
  .wpo-hero-static-s3 .hero-wrapper .hero-item .hero-left-top .text-middle {
    font-size: 130px;
  }
}

@media (max-width: 991px) {
  .wpo-hero-static-s3 .hero-wrapper .hero-item .hero-left-top .text-middle {
    font-size: 100px;
  }
}

@media (max-width: 767px) {
  .wpo-hero-static-s3 .hero-wrapper .hero-item .hero-left-top .text-middle {
    font-size: 70px;
  }
}

@media (max-width: 575px) {
  .wpo-hero-static-s3 .hero-wrapper .hero-item .hero-left-top .text-middle {
    font-size: 60px;
  }
}

@media (max-width: 425px) {
  .wpo-hero-static-s3 .hero-wrapper .hero-item .hero-left-top .text-middle {
    font-size: 50px;
  }
}

.wpo-hero-static-s3 .hero-wrapper .hero-item .hero-left-top .text-bottom {
  text-align: end;
}

@media (max-width: 991px) {
  .wpo-hero-static-s3 .hero-wrapper .hero-item .hero-left-top .text-bottom {
    text-align: center;
  }
}

.wpo-hero-static-s3 .hero-wrapper .hero-item .hero-bottom-item .content {
  max-width: 535px;
  position: absolute;
  right: 160px;
  top: 90px;
}

@media (max-width: 1399px) {
  .wpo-hero-static-s3 .hero-wrapper .hero-item .hero-bottom-item .content {
    right: 40px;
    max-width: 450px;
  }
}

@media (max-width: 1199px) {
  .wpo-hero-static-s3 .hero-wrapper .hero-item .hero-bottom-item .content {
    right: 30px;
    max-width: 400px;
  }
}

@media (max-width: 991px) {
  .wpo-hero-static-s3 .hero-wrapper .hero-item .hero-bottom-item .content {
    position: unset;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 30px;
  }
}

.wpo-hero-static-s3 .hero-wrapper .hero-item .hero-bottom-item .content p {
  margin: 0;
  font-size: 25px;
  font-weight: 400;
  line-height: 35px;
  color: #fff;
}

@media (max-width: 1399px) {
  .wpo-hero-static-s3 .hero-wrapper .hero-item .hero-bottom-item .content p {
    font-size: 22px;
    line-height: 32px;
  }
}

@media (max-width: 1199px) {
  .wpo-hero-static-s3 .hero-wrapper .hero-item .hero-bottom-item .content p {
    font-size: 20px;
    line-height: 30px;
  }
}

@media (max-width: 575px) {
  .wpo-hero-static-s3 .hero-wrapper .hero-item .hero-bottom-item .content p {
    font-size: 16px;
    line-height: 26px;
  }
}

.wpo-hero-static-s3 .hero-wrapper .hero-item .hero-bottom-item .client-team {
  position: absolute;
  top: 460px;
  left: 130px;
}

@media (max-width: 1600px) {
  .wpo-hero-static-s3 .hero-wrapper .hero-item .hero-bottom-item .client-team {
    margin-top: 0;
    left: 80px;
  }
}

@media (max-width: 1399px) {
  .wpo-hero-static-s3 .hero-wrapper .hero-item .hero-bottom-item .client-team {
    top: 450px;
  }
}

@media (max-width: 991px) {
  .wpo-hero-static-s3 .hero-wrapper .hero-item .hero-bottom-item .client-team {
    position: unset;
    margin-bottom: 30px;
  }
}

.wpo-hero-static-s3 .hero-wrapper .hero-item .hero-bottom-item .client-team ul li {
  border: 4px solid #2F6567;
  background-color: #2F6567;
}

.wpo-hero-static-s3 .hero-wrapper .hero-item .hero-bottom-item .client-team ul li:last-child {
  border: 4px solid #fff;
}

.wpo-hero-static-s3 .hero-wrapper .hero-item .hero-bottom-item .client-team ul li:last-child i {
  color: #fff;
  font-weight: 600;
}

.wpo-hero-static-s3 .hero-wrapper .hero-item .hero-bottom-item .client-team span {
  color: #fff;
}

.wpo-hero-static-s3 .hero-wrapper .hero-item .hero-circle {
  position: unset;
  transform: none;
  left: 0;
  position: relative;
  margin-bottom: -90px;
}

@media (max-width: 991px) {
  .wpo-hero-static-s3 .hero-wrapper .hero-item .hero-circle {
    margin-bottom: 30px;
  }
}

.wpo-hero-static-s3 .hero-wrapper .hero-item .hero-circle .content {
  background-color: #215153;
  width: 182px;
  height: 180px;
  border: 1px solid #2C6264;
  padding: 10px;
  border-radius: 50%;
  margin: 0 auto;
}

.wpo-hero-static-s3 .hero-wrapper .hero-item .hero-circle .circle-content {
  margin: 0 auto;
  background-color: #fff;
  width: 160px;
  height: 160px;
  padding: 10px;
}

.wpo-hero-static-s3 .hero-wrapper .hero-item .hero-circle .circle-content .rotate-anm {
  border-radius: 50%;
  border: 1px solid #215153;
  padding: 5px;
}

.wpo-hero-static-s3 .hero-wrapper .hero-item .hero-circle .circle-content svg textPath {
  fill: #215153;
}

.wpo-hero-static-s3 .hero-image img {
  border-radius: 30px;
}

.wpo-hero-static-s4 {
  background-color: #001026;
  position: relative;
  height: 980px;
  z-index: 1;
}

@media (max-width: 1399px) {
  .wpo-hero-static-s4 {
    height: 870px;
  }
}

@media (max-width: 991px) {
  .wpo-hero-static-s4 {
    height: auto;
  }
}

.wpo-hero-static-s4 .hero-item {
  padding-top: 60px;
}

@media (max-width: 1399px) {
  .wpo-hero-static-s4 .hero-item {
    padding-top: 100px;
  }
}

@media (max-width: 991px) {
  .wpo-hero-static-s4 .hero-item {
    text-align: center;
    padding: 120px 0 60px 0;
  }
}

@media (max-width: 575px) {
  .wpo-hero-static-s4 .hero-item {
    padding: 100px 0 60px 0;
  }
}

.wpo-hero-static-s4 .hero-item .hero-top h2 {
  margin: 0;
  font-size: 282px;
  font-weight: 400;
  line-height: normal;
  color: #CDB091;
}

@media (max-width: 1865px) {
  .wpo-hero-static-s4 .hero-item .hero-top h2 {
    font-size: 270px;
  }
}

@media (max-width: 1800px) {
  .wpo-hero-static-s4 .hero-item .hero-top h2 {
    font-size: 240px;
  }
}

@media (max-width: 1600px) {
  .wpo-hero-static-s4 .hero-item .hero-top h2 {
    font-size: 210px;
  }
}

@media (max-width: 1399px) {
  .wpo-hero-static-s4 .hero-item .hero-top h2 {
    font-size: 180px;
  }
}

@media (max-width: 1199px) {
  .wpo-hero-static-s4 .hero-item .hero-top h2 {
    font-size: 145px;
  }
}

@media (max-width: 991px) {
  .wpo-hero-static-s4 .hero-item .hero-top h2 {
    font-size: 90px;
  }
}

@media (max-width: 767px) {
  .wpo-hero-static-s4 .hero-item .hero-top h2 {
    font-size: 75px;
  }
}

@media (max-width: 575px) {
  .wpo-hero-static-s4 .hero-item .hero-top h2 {
    font-size: 60px;
  }
}

@media (max-width: 425px) {
  .wpo-hero-static-s4 .hero-item .hero-top h2 {
    font-size: 42px;
  }
}

.wpo-hero-static-s4 .hero-item .hero-bottom {
  position: relative;
}

.wpo-hero-static-s4 .hero-item .hero-bottom .left-content {
  max-width: 400px;
  margin-left: 130px;
  margin-top: 100px;
}

@media (max-width: 1600px) {
  .wpo-hero-static-s4 .hero-item .hero-bottom .left-content {
    margin-left: 50px;
  }
}

@media (max-width: 1399px) {
  .wpo-hero-static-s4 .hero-item .hero-bottom .left-content {
    margin-left: 20px;
    margin-top: 50px;
  }
}

@media (max-width: 1199px) {
  .wpo-hero-static-s4 .hero-item .hero-bottom .left-content {
    max-width: 300px;
  }
}

@media (max-width: 991px) {
  .wpo-hero-static-s4 .hero-item .hero-bottom .left-content {
    margin: 0 auto;
    max-width: 500px;
  }
}

.wpo-hero-static-s4 .hero-item .hero-bottom .left-content p {
  margin: 0;
  font-size: 25px;
  line-height: 35px;
  font-weight: 400;
  color: #fff;
}

@media (max-width: 1399px) {
  .wpo-hero-static-s4 .hero-item .hero-bottom .left-content p {
    font-size: 22px;
    line-height: 32px;
  }
}

@media (max-width: 1199px) {
  .wpo-hero-static-s4 .hero-item .hero-bottom .left-content p {
    font-size: 18px;
    line-height: 28px;
  }
}

@media (max-width: 575px) {
  .wpo-hero-static-s4 .hero-item .hero-bottom .left-content p {
    font-size: 16px;
    line-height: 25px;
  }
}

.wpo-hero-static-s4 .hero-item .hero-bottom .left-content .hero-btn {
  margin-top: 45px;
}

@media (max-width: 1199px) {
  .wpo-hero-static-s4 .hero-item .hero-bottom .left-content .hero-btn {
    margin-top: 20px;
  }
}

.wpo-hero-static-s4 .hero-item .hero-bottom .left-content .hero-btn .theme-btn {
  font-size: 22px;
  color: #CDB091;
  border: 2px solid #CDB091;
  border-radius: 35px;
  padding: 20px 43px;
}

@media (max-width: 1199px) {
  .wpo-hero-static-s4 .hero-item .hero-bottom .left-content .hero-btn .theme-btn {
    padding: 14px 30px;
    font-size: 18px;
  }
}

@media (max-width: 575px) {
  .wpo-hero-static-s4 .hero-item .hero-bottom .left-content .hero-btn .theme-btn {
    padding: 10px 22px;
    font-size: 16px;
  }
}

.wpo-hero-static-s4 .hero-item .hero-bottom .left-content .hero-btn .theme-btn::before {
  background-color: #CDB091;
  border-radius: 0;
}

.wpo-hero-static-s4 .hero-item .hero-bottom .left-content .hero-btn .theme-btn:hover {
  color: #fff;
  border: 2px solid #CDB091;
}

.wpo-hero-static-s4 .hero-item .hero-bottom .right-content {
  position: absolute;
  bottom: -80px;
  right: 300px;
}

@media (max-width: 1600px) {
  .wpo-hero-static-s4 .hero-item .hero-bottom .right-content {
    right: 170px;
  }
}

@media (max-width: 1399px) {
  .wpo-hero-static-s4 .hero-item .hero-bottom .right-content {
    right: 100px;
  }
}

@media (max-width: 1199px) {
  .wpo-hero-static-s4 .hero-item .hero-bottom .right-content {
    right: 40px;
  }
}

@media (max-width: 991px) {
  .wpo-hero-static-s4 .hero-item .hero-bottom .right-content {
    position: unset;
  }
}

.wpo-hero-static-s4 .hero-item .hero-bottom .right-content ul li {
  border: 4px solid #081F3E;
  background: #081F3E;
}

.wpo-hero-static-s4 .hero-item .hero-bottom .right-content span {
  color: #fff;
}

.wpo-hero-static-s4 .hero-image {
  position: absolute;
  top: auto;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
}

@media (max-width: 991px) {
  .wpo-hero-static-s4 .hero-image {
    display: none;
  }
}

@media (max-width: 1399px) {
  .wpo-hero-static-s4 .hero-image img {
    max-width: 450px;
  }
}

.client-team {
  max-width: 205px;
  text-align: start;
}

@media (max-width: 1600px) {
  .client-team {
    margin-top: 40px;
  }
}

@media (max-width: 991px) {
  .client-team {
    margin: 0 auto;
    margin-top: 20px;
    text-align: center;
  }
}

.client-team ul {
  display: flex;
  align-items: center;
  margin-left: 10px;
  padding-left: 0;
  list-style: none;
}

@media (max-width: 991px) {
  .client-team ul {
    justify-content: center;
    margin-left: 0;
  }
}

.client-team ul li {
  width: 60px;
  height: 60px;
  line-height: 48px;
  border-radius: 60px;
  margin: 0 -10px;
  text-align: center;
  border: 4px solid #FFF;
  background: #D9D9D9;
  box-shadow: 0 2px 12px 2px rgba(4, 0, 52, 0.1);
}

.client-team ul li:last-child {
  background-color: #215153;
  color: #fff;
  color: #FFF;
  font-size: 20px;
  font-weight: 300;
  line-height: 52px;
}

.client-team ul li:last-child i {
  color: #fff;
  font-weight: 600;
}

.client-team ul li img {
  width: 100%;
  height: 100%;
  border-radius: 100px;
}

.client-team span {
  color: #000;
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  display: block;
  margin-top: 20px;
}

@media (max-width: 575px) {
  .client-team span {
    font-size: 16px;
    line-height: 26px;
    margin-top: 10px;
  }
}

.hero-circle {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.hero-circle .circle-content {
  width: 150px;
  height: 150px;
  position: relative;
  background: #CDB091;
  padding: 5px;
  font-size: 11px;
  letter-spacing: 2.5px;
  font-weight: 400;
  text-transform: uppercase;
  border-radius: 100%;
}

@media (max-width: 575px) {
  .hero-circle .circle-content {
    width: 130px;
    height: 130px;
  }
}

.hero-circle .circle-content .rotate-anm {
  animation: roted 30s linear infinite;
}

.hero-circle .circle-content svg textPath {
  fill: #fff;
}

.hero-circle .circle-content .arrows {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  stroke-width: 0.818px;
  width: 82px;
  height: 82px;
  line-height: 79px;
  border-radius: 82px;
  text-align: center;
}

@keyframes rotateAniamtion {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes roted {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
4. wpo-footer
--------------------------------------------------------------*/
/* wpo-site-footer */
.wpo-site-footer {
  background: #215153;
}

.wpo-site-footer .footer-wrap {
  padding-top: 190px;
  padding-bottom: 90px;
}

@media (max-width: 991px) {
  .wpo-site-footer .footer-wrap {
    padding-top: 60px;
    padding-bottom: 0;
  }
}

@media (max-width: 575px) {
  .wpo-site-footer .footer-wrap {
    padding-top: 40px;
  }
}

.wpo-site-footer .wpo-top-footer {
  text-align: center;
  padding-bottom: 30px;
}

.wpo-site-footer .wpo-top-footer h2 {
  margin: 0;
  color: #fff;
  font-size: 248px;
  font-weight: 400;
  line-height: normal;
}

@media (max-width: 1720px) {
  .wpo-site-footer .wpo-top-footer h2 {
    font-size: 230px;
  }
}

@media (max-width: 1600px) {
  .wpo-site-footer .wpo-top-footer h2 {
    font-size: 200px;
  }
}

@media (max-width: 1399px) {
  .wpo-site-footer .wpo-top-footer h2 {
    font-size: 160px;
  }
}

@media (max-width: 1199px) {
  .wpo-site-footer .wpo-top-footer h2 {
    font-size: 135px;
  }
}

@media (max-width: 991px) {
  .wpo-site-footer .wpo-top-footer h2 {
    font-size: 100px;
  }
}

@media (max-width: 767px) {
  .wpo-site-footer .wpo-top-footer h2 {
    font-size: 75px;
  }
}

@media (max-width: 575px) {
  .wpo-site-footer .wpo-top-footer h2 {
    font-size: 55px;
  }
}

@media (max-width: 425px) {
  .wpo-site-footer .wpo-top-footer h2 {
    font-size: 40px;
  }
}

.wpo-site-footer .wpo-upper-footer .col {
  min-height: 100%;
}

.wpo-site-footer .link-widget {
  padding: 50px 0 40px 60px;
  border-radius: 40px;
  background: #2B5E60;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  justify-content: space-between;
}

@media (max-width: 1550px) {
  .wpo-site-footer .link-widget {
    padding: 40px 0 40px 40px;
  }
}

@media (max-width: 1399px) {
  .wpo-site-footer .link-widget {
    padding: 30px 0 30px 32px;
  }
}

@media (max-width: 575px) {
  .wpo-site-footer .link-widget {
    padding: 30px 20px;
  }
}

.wpo-site-footer .link-widget .footer-left {
  padding-bottom: 190px;
}

@media (max-width: 1399px) {
  .wpo-site-footer .link-widget .footer-left {
    padding-bottom: 154px;
  }
}

@media (max-width: 991px) {
  .wpo-site-footer .link-widget .footer-left {
    padding-bottom: 85px;
  }
}

@media (max-width: 767px) {
  .wpo-site-footer .link-widget .footer-left {
    padding-bottom: 60px;
  }
}

@media (max-width: 575px) {
  .wpo-site-footer .link-widget .footer-left {
    padding-bottom: 30px;
  }
}

.wpo-site-footer .link-widget .footer-left ul li {
  font-family: "Marcellus";
  color: #fff;
  font-size: 35px;
  font-weight: 400;
  line-height: normal;
  padding-bottom: 20px;
}

@media (max-width: 1399px) {
  .wpo-site-footer .link-widget .footer-left ul li {
    font-size: 30px;
  }
}

@media (max-width: 1199px) {
  .wpo-site-footer .link-widget .footer-left ul li {
    font-size: 25px;
  }
}

@media (max-width: 575px) {
  .wpo-site-footer .link-widget .footer-left ul li {
    font-size: 20px;
    padding-bottom: 10px;
  }
}

.wpo-site-footer .link-widget .footer-left ul li:last-child {
  padding-bottom: 0;
}

.wpo-site-footer .link-widget .footer-left ul li a {
  color: #fff;
  transition: all ease 0.4s;
}

.wpo-site-footer .link-widget .footer-left ul li a:hover {
  color: #CDB091;
}

.wpo-site-footer ul {
  padding-left: 0;
  list-style: none;
}

.wpo-site-footer .link-widget .footer-middle {
  padding-bottom: 160px;
}

@media (max-width: 991px) {
  .wpo-site-footer .link-widget .footer-middle {
    padding-bottom: 90px;
  }
}

@media (max-width: 767px) {
  .wpo-site-footer .link-widget .footer-middle {
    padding-bottom: 50px;
  }
}

@media (max-width: 575px) {
  .wpo-site-footer .link-widget .footer-middle {
    padding-bottom: 30px;
  }
}

.wpo-site-footer .link-widget .footer-middle ul li {
  font-family: "Marcellus";
  color: #fff;
  font-size: 35px;
  font-weight: 400;
  line-height: normal;
  padding-bottom: 20px;
}

@media (max-width: 1399px) {
  .wpo-site-footer .link-widget .footer-middle ul li {
    font-size: 30px;
  }
}

@media (max-width: 1199px) {
  .wpo-site-footer .link-widget .footer-middle ul li {
    font-size: 25px;
  }
}

@media (max-width: 575px) {
  .wpo-site-footer .link-widget .footer-middle ul li {
    font-size: 20px;
    padding-bottom: 10px;
  }
}

.wpo-site-footer .link-widget .footer-middle ul li:last-child {
  padding-bottom: 0;
}

.wpo-site-footer .link-widget .footer-middle ul li a {
  color: #fff;
  transition: all ease 0.4s;
}

.wpo-site-footer .link-widget .footer-middle ul li a:hover {
  color: #CDB091;
}

.wpo-site-footer .link-widget .footer-bottom .copyright {
  margin: 0;
  color: #8adee1;
  font-size: 18px;
  font-weight: 400;
  line-height: normal;
}

@media (max-width: 1399px) {
  .wpo-site-footer .link-widget .footer-bottom .copyright {
    max-width: 250px;
  }
}

@media (max-width: 767px) {
  .wpo-site-footer .link-widget .footer-bottom .copyright {
    max-width: unset;
  }
}

@media (max-width: 575px) {
  .wpo-site-footer .link-widget .footer-bottom .copyright {
    font-size: 16px;
  }
}

@media (max-width: 425px) {
  .wpo-site-footer .link-widget .footer-bottom .copyright {
    font-size: 14px;
  }
}

.wpo-site-footer .link-widget .footer-bottom .copyright a {
  color: #8adee1;
  transition: all ease 0.4s;
}

.wpo-site-footer .link-widget .footer-bottom .copyright a:hover {
  color: #CDB091;
}

.wpo-site-footer .link-widget .footer-bottom ul {
  display: flex;
  gap: 40px;
}

@media (max-width: 575px) {
  .wpo-site-footer .link-widget .footer-bottom ul {
    gap: 20px;
  }
}

.wpo-site-footer .link-widget .footer-bottom ul li {
  padding: 0;
  color: #63B6B9;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

@media (max-width: 575px) {
  .wpo-site-footer .link-widget .footer-bottom ul li {
    font-size: 16px;
  }
}

@media (max-width: 425px) {
  .wpo-site-footer .link-widget .footer-bottom ul li {
    font-size: 14px;
  }
}

.wpo-site-footer .link-widget .footer-bottom ul li a {
  color: #8adee1;
  transition: all ease 0.4s;
}

.wpo-site-footer .link-widget .footer-bottom ul li a:hover {
  color: #CDB091;
}

.wpo-site-footer .footer-right .footer-contect ul li {
  border-radius: 40px;
  background: #2B5E60;
  color: #FFF;
  font-size: 30px;
  font-weight: 300;
  line-height: 35px;
  margin-bottom: 30px;
  padding: 50px 0 53px 40px;
}

@media (max-width: 1399px) {
  .wpo-site-footer .footer-right .footer-contect ul li {
    padding: 38px 0 40px 30px;
    font-size: 25px;
  }
}

@media (max-width: 1199px) {
  .wpo-site-footer .footer-right .footer-contect ul li {
    padding: 30px 0 30px 20px;
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .wpo-site-footer .footer-right .footer-contect ul li {
    padding: 15px 0;
    font-size: 18px;
    margin-bottom: 20px;
    text-align: center;
  }
}

.wpo-site-footer .footer-right .footer-contect .widget-newsletter {
  border-radius: 40px;
  background: #2B5E60;
  padding: 70px 46px 82px;
}

@media (max-width: 1399px) {
  .wpo-site-footer .footer-right .footer-contect .widget-newsletter {
    padding: 50px 30px;
  }
}

@media (max-width: 1199px) {
  .wpo-site-footer .footer-right .footer-contect .widget-newsletter {
    padding: 50px 20px;
  }
}

@media (max-width: 767px) {
  .wpo-site-footer .footer-right .footer-contect .widget-newsletter {
    padding: 40px 20px;
    text-align: center;
  }
}

.wpo-site-footer .footer-right .footer-contect .widget-newsletter h2 {
  color: #fff;
  font-size: 40px;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 25px;
  margin-top: 0;
}

@media (max-width: 1550px) {
  .wpo-site-footer .footer-right .footer-contect .widget-newsletter h2 {
    font-size: 36px;
  }
}

@media (max-width: 1399px) {
  .wpo-site-footer .footer-right .footer-contect .widget-newsletter h2 {
    font-size: 30px;
  }
}

@media (max-width: 1199px) {
  .wpo-site-footer .footer-right .footer-contect .widget-newsletter h2 {
    font-size: 25px;
  }
}

.wpo-site-footer .footer-right .footer-contect .widget-newsletter .newsletter .form-fild {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

@media (max-width: 991px) {
  .wpo-site-footer .footer-right .footer-contect .widget-newsletter .newsletter .form-fild {
    gap: 15px;
  }
}

.wpo-site-footer .footer-right .footer-contect .widget-newsletter .newsletter .form-fild .input-items .fild {
  color: #fff;
  font-size: 25px;
  font-weight: 400;
  line-height: 35px;
  border: transparent;
  transition: all 0.3s ease-in-out;
  padding: 22px 0;
  padding-left: 30px;
  width: 100%;
  z-index: 1;
  border-radius: 20px;
  background: #215153;
}

@media (max-width: 1199px) {
  .wpo-site-footer .footer-right .footer-contect .widget-newsletter .newsletter .form-fild .input-items .fild {
    font-size: 20px;
    padding-left: 20px;
  }
}

@media (max-width: 991px) {
  .wpo-site-footer .footer-right .footer-contect .widget-newsletter .newsletter .form-fild .input-items .fild {
    font-size: 18px;
    padding: 12px 0;
    padding-left: 16px;
  }
}

.wpo-site-footer .footer-right .footer-contect .widget-newsletter .newsletter .form-fild .input-items .fild:focus-visible {
  outline: -webkit-focus-ring-color auto transparent;
  outline: 0;
}

.wpo-site-footer .footer-right .footer-contect .widget-newsletter .newsletter .form-fild .input-items .fild::-webkit-input-placeholder {
  color: #fff;
}

.wpo-site-footer .footer-right .footer-contect .widget-newsletter .newsletter .form-fild .input-items .fild::-moz-placeholder {
  color: #fff;
}

.wpo-site-footer .footer-right .footer-contect .widget-newsletter .newsletter .form-fild .input-items .fild:-ms-input-placeholder {
  color: #fff;
}

.wpo-site-footer .footer-right .footer-contect .widget-newsletter .newsletter .form-fild .input-items .fild:-moz-placeholder {
  color: #fff;
}

.wpo-site-footer .footer-right .footer-contect .widget-newsletter .newsletter .form-fild .input-btn .theme-btn-s2 {
  padding: 17px 46px;
  border-radius: 20px;
  background: #FDFDFD;
  width: 100%;
  color: #215153;
  border: 0;
  transition: all ease-in-out 0.3s;
}

.wpo-site-footer .footer-right .footer-contect .widget-newsletter .newsletter .form-fild .input-btn .theme-btn-s2::before {
  background-color: #CDB091;
}

.wpo-site-footer .footer-right .footer-contect .widget-newsletter .newsletter .form-fild .input-btn .theme-btn-s2:hover {
  color: #fff;
}

@media (max-width: 991px) {
  .wpo-site-footer .wpo-upper-footer .col {
    margin-bottom: 60px;
  }
}

@media (max-width: 767px) {
  .wpo-site-footer .wpo-upper-footer .col {
    margin-bottom: 40px;
  }
}

.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 wpo-service-section */
.wpo-service-section,
.wpo-service-section-s3 {
  position: relative;
  z-index: 1;
}

.wpo-service-section .wpo-section-title h2,
.wpo-service-section-s3 .wpo-section-title h2 {
  max-width: 780px;
}

@media (max-width: 1199px) {

  .wpo-service-section .wpo-section-title h2,
  .wpo-service-section-s3 .wpo-section-title h2 {
    max-width: 500px;
  }
}

.wpo-service-section .service-card,
.wpo-service-section-s3 .service-card {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding: 33px 0;
  border-bottom: 2px solid #C9C9C9;
  transition: all 0.8s ease-in-out;
  z-index: 1111;
}

.wpo-service-section .service-card:first-child,
.wpo-service-section-s3 .service-card:first-child {
  border-top: 2px solid #C9C9C9;
}

@media (max-width: 991px) {

  .wpo-service-section .service-card,
  .wpo-service-section-s3 .service-card {
    margin: 0;
    padding: 25px 0;
  }
}

@media (max-width: 991px) {

  .wpo-service-section .service-card,
  .wpo-service-section-s3 .service-card {
    margin: 0;
    padding: 25px 0;
  }
}

@media (max-width: 575px) {

  .wpo-service-section .service-card,
  .wpo-service-section-s3 .service-card {
    padding: 16px 0;
  }
}

.wpo-service-section .service-card .text,
.wpo-service-section-s3 .service-card .text {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

@media (max-width: 991px) {

  .wpo-service-section .service-card .text,
  .wpo-service-section-s3 .service-card .text {
    display: block;
  }
}

.wpo-service-section .service-card .text span,
.wpo-service-section-s3 .service-card .text span {
  color: #000;
  text-align: right;
  font-size: 30px;
  font-weight: 500;
  line-height: normal;
}

@media (max-width: 1399px) {

  .wpo-service-section .service-card .text span,
  .wpo-service-section-s3 .service-card .text span {
    font-size: 25px;
  }
}

@media (max-width: 991px) {

  .wpo-service-section .service-card .text span,
  .wpo-service-section-s3 .service-card .text span {
    font-size: 20px;
  }
}

@media (max-width: 575px) {

  .wpo-service-section .service-card .text span,
  .wpo-service-section-s3 .service-card .text span {
    font-size: 16px;
  }
}

.wpo-service-section .service-card .text h2,
.wpo-service-section-s3 .service-card .text h2 {
  margin-bottom: 0;
  margin-top: 0;
}

.wpo-service-section .service-card .text h2 a,
.wpo-service-section-s3 .service-card .text h2 a {
  color: #000;
  font-family: "Marcellus";
  font-size: 40px;
  font-weight: 400;
  line-height: normal;
  display: block;
  transition: all 0.4s ease-in-out;
}

@media (max-width: 1399px) {

  .wpo-service-section .service-card .text h2 a,
  .wpo-service-section-s3 .service-card .text h2 a {
    font-size: 35px;
  }
}

@media (max-width: 991px) {

  .wpo-service-section .service-card .text h2 a,
  .wpo-service-section-s3 .service-card .text h2 a {
    font-size: 30px;
    margin-bottom: 10px;
  }
}

@media (max-width: 575px) {

  .wpo-service-section .service-card .text h2 a,
  .wpo-service-section-s3 .service-card .text h2 a {
    font-size: 23px;
  }
}

@media (max-width: 425px) {

  .wpo-service-section .service-card .text h2 a,
  .wpo-service-section-s3 .service-card .text h2 a {
    font-size: 20px;
  }
}

.wpo-service-section .service-card .text h2 a:hover,
.wpo-service-section-s3 .service-card .text h2 a:hover {
  color: #096366;
}

.wpo-service-section .service-card .image,
.wpo-service-section-s3 .service-card .image {
  position: absolute;
  top: 96%;
  left: 66%;
  transform: translate(-50%, -50%);
  transition: all 0.8s ease-in-out;
  opacity: 0;
  visibility: hidden;
  z-index: 11;
}

@media (max-width: 991px) {

  .wpo-service-section .service-card .image,
  .wpo-service-section-s3 .service-card .image {
    left: 82%;
  }
}

@media (max-width: 767px) {

  .wpo-service-section .service-card .image,
  .wpo-service-section-s3 .service-card .image {
    left: 85%;
    top: 60%;
  }
}

@media (max-width: 575px) {

  .wpo-service-section .service-card .image,
  .wpo-service-section-s3 .service-card .image {
    left: 81%;
    top: 50%;
  }
}

.wpo-service-section .service-card .image img,
.wpo-service-section-s3 .service-card .image img {
  border-radius: 20px;
}

@media (max-width: 1199px) {

  .wpo-service-section .service-card .image img,
  .wpo-service-section-s3 .service-card .image img {
    max-width: 300px;
    max-height: 300px;
  }
}

@media (max-width: 767px) {

  .wpo-service-section .service-card .image img,
  .wpo-service-section-s3 .service-card .image img {
    max-width: 180px;
    max-height: 180px;
  }
}

@media (max-width: 425px) {

  .wpo-service-section .service-card .image img,
  .wpo-service-section-s3 .service-card .image img {
    max-width: 140px;
    max-height: 140px;
  }
}

.wpo-service-section .service-card.active,
.wpo-service-section-s3 .service-card.active {
  z-index: 9999;
}

.wpo-service-section .service-card.active .image,
.wpo-service-section-s3 .service-card.active .image {
  opacity: 1;
  visibility: visible;
}

.wpo-service-section .col .service-card:last-child .image,
.wpo-service-section-s3 .col .service-card:last-child .image {
  top: 30%;
}

/* 3.3 wpo-case-section */
.wpo-case-section,
.wpo-case-section-s2,
.wpo-case-section-s3 {
  background-color: #215153;
}

.wpo-case-section .case-left-sticky,
.wpo-case-section-s2 .case-left-sticky,
.wpo-case-section-s3 .case-left-sticky {
  min-height: 100%;
}

.wpo-case-section .case-left-sticky .wpo-section-title-s2,
.wpo-case-section-s2 .case-left-sticky .wpo-section-title-s2,
.wpo-case-section-s3 .case-left-sticky .wpo-section-title-s2 {
  position: sticky;
  top: 10px;
}

.wpo-case-section .case-left-sticky .wpo-section-title-s2 h2,
.wpo-case-section-s2 .case-left-sticky .wpo-section-title-s2 h2,
.wpo-case-section-s3 .case-left-sticky .wpo-section-title-s2 h2 {
  color: #fff;
}

.wpo-case-section .case-left-sticky .wpo-section-title-s2 p,
.wpo-case-section-s2 .case-left-sticky .wpo-section-title-s2 p,
.wpo-case-section-s3 .case-left-sticky .wpo-section-title-s2 p {
  color: #fff;
}

.wpo-case-section .case-left-sticky .wpo-section-title-s2 .title-btn .theme-btn-s2,
.wpo-case-section-s2 .case-left-sticky .wpo-section-title-s2 .title-btn .theme-btn-s2,
.wpo-case-section-s3 .case-left-sticky .wpo-section-title-s2 .title-btn .theme-btn-s2 {
  color: #fff;
  border-color: #fff;
}

.wpo-case-section .case-left-sticky .wpo-section-title-s2 .title-btn .theme-btn-s2::before,
.wpo-case-section-s2 .case-left-sticky .wpo-section-title-s2 .title-btn .theme-btn-s2::before,
.wpo-case-section-s3 .case-left-sticky .wpo-section-title-s2 .title-btn .theme-btn-s2::before {
  background-color: #CDB091;
}

.wpo-case-section .case-left-sticky .wpo-section-title-s2 .title-btn .theme-btn-s2:hover,
.wpo-case-section-s2 .case-left-sticky .wpo-section-title-s2 .title-btn .theme-btn-s2:hover,
.wpo-case-section-s3 .case-left-sticky .wpo-section-title-s2 .title-btn .theme-btn-s2:hover {
  border: 2px solid #CDB091;
}

.wpo-case-section .case-left-sticky .wpo-section-title-s2 .title-btn .theme-btn-s2 i,
.wpo-case-section-s2 .case-left-sticky .wpo-section-title-s2 .title-btn .theme-btn-s2 i,
.wpo-case-section-s3 .case-left-sticky .wpo-section-title-s2 .title-btn .theme-btn-s2 i {
  color: #fff;
}

.wpo-case-section .case-right-all,
.wpo-case-section-s2 .case-right-all,
.wpo-case-section-s3 .case-right-all {
  padding-left: 85px;
}

@media (max-width: 1630px) {

  .wpo-case-section .case-right-all,
  .wpo-case-section-s2 .case-right-all,
  .wpo-case-section-s3 .case-right-all {
    padding-left: 20px;
  }
}

@media (max-width: 1199px) {

  .wpo-case-section .case-right-all,
  .wpo-case-section-s2 .case-right-all,
  .wpo-case-section-s3 .case-right-all {
    padding-left: 0;
  }
}

.wpo-case-section .case-item,
.wpo-case-section-s2 .case-item,
.wpo-case-section-s3 .case-item {
  margin-bottom: 60px;
}

@media (max-width: 1199px) {

  .wpo-case-section .case-item,
  .wpo-case-section-s2 .case-item,
  .wpo-case-section-s3 .case-item {
    margin-bottom: 40px;
  }
}

@media (max-width: 767px) {

  .wpo-case-section .case-item,
  .wpo-case-section-s2 .case-item,
  .wpo-case-section-s3 .case-item {
    margin-bottom: 30px;
  }
}

.wpo-case-section .case-item .case-image,
.wpo-case-section-s2 .case-item .case-image,
.wpo-case-section-s3 .case-item .case-image {
  position: relative;
}

.wpo-case-section .case-item .case-image .image,
.wpo-case-section-s2 .case-item .case-image .image,
.wpo-case-section-s3 .case-item .case-image .image {
  overflow: hidden;
  border-radius: 40px;
  transform: scale(1);
}

.wpo-case-section .case-item .case-image .image img,
.wpo-case-section-s2 .case-item .case-image .image img,
.wpo-case-section-s3 .case-item .case-image .image img {
  transition: all ease-in-out 0.4s;
  width: 100%;
  border-radius: 40px;
}

.wpo-case-section .case-item .case-image .image:hover img,
.wpo-case-section-s2 .case-item .case-image .image:hover img,
.wpo-case-section-s3 .case-item .case-image .image:hover img {
  transform: scale(1.1);
}

.wpo-case-section .case-item .case-image .case-tag,
.wpo-case-section-s2 .case-item .case-image .case-tag,
.wpo-case-section-s3 .case-item .case-image .case-tag {
  position: absolute;
  bottom: 30px;
  left: 30px;
  display: flex;
  align-items: center;
  gap: 20px;
}

@media (max-width: 991px) {

  .wpo-case-section .case-item .case-image .case-tag,
  .wpo-case-section-s2 .case-item .case-image .case-tag,
  .wpo-case-section-s3 .case-item .case-image .case-tag {
    gap: 8px;
    left: 20px;
    bottom: 20px;
  }
}

.auctor-case .case-item .case-image .case-tag {
  padding-left: 0;
  list-style: none;
}

.wpo-case-section .case-item .case-image .case-tag li,
.wpo-case-section-s2 .case-item .case-image .case-tag li,
.wpo-case-section-s3 .case-item .case-image .case-tag li {
  border-radius: 10px;
  background: #fff;
  color: #215153;
  font-size: 25px;
  font-weight: 400;
  line-height: 35px;
  padding: 6px 20px;
  transition: all ease-in-out 0.4s;
}

@media (max-width: 1199px) {

  .wpo-case-section .case-item .case-image .case-tag li,
  .wpo-case-section-s2 .case-item .case-image .case-tag li,
  .wpo-case-section-s3 .case-item .case-image .case-tag li {
    font-size: 22px;
    line-height: 30px;
    padding: 4px 15px;
  }
}

@media (max-width: 767px) {

  .wpo-case-section .case-item .case-image .case-tag li,
  .wpo-case-section-s2 .case-item .case-image .case-tag li,
  .wpo-case-section-s3 .case-item .case-image .case-tag li {
    font-size: 18px;
    line-height: 26px;
  }
}

@media (max-width: 425px) {

  .wpo-case-section .case-item .case-image .case-tag li,
  .wpo-case-section-s2 .case-item .case-image .case-tag li,
  .wpo-case-section-s3 .case-item .case-image .case-tag li {
    font-size: 16px;
    padding: 2px 12px;
    line-height: 24px;
  }
}

.wpo-case-section .case-item .case-text,
.wpo-case-section-s2 .case-item .case-text,
.wpo-case-section-s3 .case-item .case-text {
  padding-left: 10px;
  padding-top: 25px;
}

@media (max-width: 1199px) {

  .wpo-case-section .case-item .case-text,
  .wpo-case-section-s2 .case-item .case-text,
  .wpo-case-section-s3 .case-item .case-text {
    padding-top: 20px;
  }
}

.wpo-case-section .case-item .case-text h3,
.wpo-case-section-s2 .case-item .case-text h3,
.wpo-case-section-s3 .case-item .case-text h3 {
  margin: 0;
  color: #fff;
  font-size: 40px;
  font-weight: 400;
  line-height: normal;
}

@media (max-width: 1630px) {

  .wpo-case-section .case-item .case-text h3,
  .wpo-case-section-s2 .case-item .case-text h3,
  .wpo-case-section-s3 .case-item .case-text h3 {
    font-size: 35px;
  }
}

@media (max-width: 1399px) {

  .wpo-case-section .case-item .case-text h3,
  .wpo-case-section-s2 .case-item .case-text h3,
  .wpo-case-section-s3 .case-item .case-text h3 {
    font-size: 29px;
  }
}

@media (max-width: 1199px) {

  .wpo-case-section .case-item .case-text h3,
  .wpo-case-section-s2 .case-item .case-text h3,
  .wpo-case-section-s3 .case-item .case-text h3 {
    font-size: 24px;
  }
}

@media (max-width: 575px) {

  .wpo-case-section .case-item .case-text h3,
  .wpo-case-section-s2 .case-item .case-text h3,
  .wpo-case-section-s3 .case-item .case-text h3 {
    font-size: 20px;
  }
}

.wpo-case-section .case-item .case-text h3 a,
.wpo-case-section-s2 .case-item .case-text h3 a,
.wpo-case-section-s3 .case-item .case-text h3 a {
  color: #fff;
  transition: all ease-in-out 0.4s;
}

.wpo-case-section .case-item .case-text h3 a:hover,
.wpo-case-section-s2 .case-item .case-text h3 a:hover,
.wpo-case-section-s3 .case-item .case-text h3 a:hover {
  color: #CDB091;
}

.wpo-case-section .case-item:last-child,
.wpo-case-section-s2 .case-item:last-child,
.wpo-case-section-s3 .case-item:last-child {
  margin-bottom: 0;
}

/* 3.4 wpo-testimonial-section */
@media (max-width: 991px) {
  .wpo-testimonial-section .client-team {
    display: none;
  }
}

.wpo-testimonial-section .owl-nav {
  margin-top: 80px;
}

@media (max-width: 1399px) {
  .wpo-testimonial-section .owl-nav {
    margin-top: 50px;
  }
}

.wpo-testimonial-section .owl-nav button {
  border: 0;
  background: transparent;
  position: relative;
  transition: all ease 0.4s;
}

.wpo-testimonial-section .owl-nav button:hover {
  color: #215153;
}

.wpo-testimonial-section .owl-nav .owl-prev {
  font-size: 30px;
  color: #B4B4B4;
}

.wpo-testimonial-section .owl-nav .owl-next {
  margin-left: 30px;
  font-size: 30px;
  color: #B4B4B4;
}

@media (max-width: 1399px) {
  .wpo-testimonial-section .wpo-section-title h2 {
    max-width: 730px;
  }
}

.wpo-testimonial-section .wpo-testimonial-items {
  display: flex;
  margin-left: 20px;
  align-items: center;
}

@media (max-width: 1399px) {
  .wpo-testimonial-section .wpo-testimonial-items {
    margin-left: 0;
  }
}

@media (max-width: 991px) {
  .wpo-testimonial-section .wpo-testimonial-items {
    display: block;
    text-align: center;
  }
}

.wpo-testimonial-section .wpo-testimonial-items .testimonial-image {
  width: 50%;
  overflow: hidden;
  border-radius: 30px;
}

@media (max-width: 991px) {
  .wpo-testimonial-section .wpo-testimonial-items .testimonial-image {
    width: 100%;
  }
}

.wpo-testimonial-section .wpo-testimonial-items .testimonial-image .owl-nav {
  display: none;
}

.wpo-testimonial-section .wpo-testimonial-items .testimonial-image .image img {
  border-radius: 30px;
}

@media (max-width: 991px) {
  .wpo-testimonial-section .wpo-testimonial-items .testimonial-image .image img {
    width: 100%;
  }
}

.wpo-testimonial-section .wpo-testimonial-items .wpo-testimonial-text {
  max-width: 570px;
  margin-left: 75px;
  width: 50%;
}

@media (max-width: 1399px) {
  .wpo-testimonial-section .wpo-testimonial-items .wpo-testimonial-text {
    max-width: 400px;
    margin-left: 30px;
  }
}

@media (max-width: 991px) {
  .wpo-testimonial-section .wpo-testimonial-items .wpo-testimonial-text {
    max-width: unset;
    margin-left: 0;
    margin-top: 30px;
    width: 100%;
  }
}

.wpo-testimonial-section .wpo-testimonial-items .wpo-testimonial-text .icon {
  margin-bottom: 30px;
  max-width: 50px;
}

@media (max-width: 991px) {
  .wpo-testimonial-section .wpo-testimonial-items .wpo-testimonial-text .icon {
    margin: 0 auto;
    margin-bottom: 30px;
  }
}

.wpo-testimonial-section .wpo-testimonial-items .wpo-testimonial-text p {
  margin: 0;
  font-size: 25px;
  line-height: 40px;
  font-weight: 400;
  margin-bottom: 40px;
}

@media (max-width: 1199px) {
  .wpo-testimonial-section .wpo-testimonial-items .wpo-testimonial-text p {
    font-size: 22px;
    line-height: 35px;
    margin-bottom: 25px;
  }
}

@media (max-width: 575px) {
  .wpo-testimonial-section .wpo-testimonial-items .wpo-testimonial-text p {
    font-size: 20px;
    line-height: 30px;
  }
}

.wpo-testimonial-section .wpo-testimonial-items .wpo-testimonial-text .wpo-testimonial-text-btm h3 {
  margin: 0;
  font-size: 40px;
  line-height: normal;
  font-weight: 400;
  padding-bottom: 10px;
}

@media (max-width: 1199px) {
  .wpo-testimonial-section .wpo-testimonial-items .wpo-testimonial-text .wpo-testimonial-text-btm h3 {
    font-size: 33px;
  }
}

@media (max-width: 575px) {
  .wpo-testimonial-section .wpo-testimonial-items .wpo-testimonial-text .wpo-testimonial-text-btm h3 {
    font-size: 26px;
  }
}

.wpo-testimonial-section .wpo-testimonial-items .wpo-testimonial-text .wpo-testimonial-text-btm span {
  font-size: 20px;
  line-height: normal;
  font-weight: 400;
}

@media (max-width: 575px) {
  .wpo-testimonial-section .wpo-testimonial-items .wpo-testimonial-text .wpo-testimonial-text-btm span {
    font-size: 18px;
  }
}

/* 3.5 wpo-fun-fact-section */
.wpo-fun-fact-section,
.wpo-fun-fact-section-s2 {
  text-align: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 90px 0;
  background-color: #215153;
}

@media (max-width: 991px) {

  .wpo-fun-fact-section,
  .wpo-fun-fact-section-s2 {
    padding: 70px 0;
  }
}

@media (max-width: 575px) {

  .wpo-fun-fact-section,
  .wpo-fun-fact-section-s2 {
    padding: 40px 0;
  }
}

.wpo-fun-fact-section .fun-fact-wrap,
.wpo-fun-fact-section-s2 .fun-fact-wrap {
  max-width: 1330px;
  margin: 0 auto;
}

.wpo-fun-fact-section .wpo-fun-fact-grids .grid,
.wpo-fun-fact-section-s2 .wpo-fun-fact-grids .grid {
  width: 25%;
  float: left;
}

@media (max-width: 991px) {

  .wpo-fun-fact-section .wpo-fun-fact-grids .grid,
  .wpo-fun-fact-section-s2 .wpo-fun-fact-grids .grid {
    padding: 20px 0;
  }
}

@media (max-width: 991px) {

  .wpo-fun-fact-section .wpo-fun-fact-grids .grid,
  .wpo-fun-fact-section-s2 .wpo-fun-fact-grids .grid {
    width: 50%;
  }
}

@media (max-width: 425px) {

  .wpo-fun-fact-section .wpo-fun-fact-grids .grid,
  .wpo-fun-fact-section-s2 .wpo-fun-fact-grids .grid {
    width: 100%;
    float: none;
  }
}

.wpo-fun-fact-section .info,
.wpo-fun-fact-section-s2 .info {
  display: flex;
  align-items: center;
  gap: 10px;
}

@media (max-width: 991px) {

  .wpo-fun-fact-section .info,
  .wpo-fun-fact-section-s2 .info {
    display: block;
  }
}

.wpo-fun-fact-section .grid h3,
.wpo-fun-fact-section-s2 .grid h3 {
  margin: 0;
  font-family: "Marcellus";
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 80px;
  font-weight: 400;
  line-height: normal;
}

@media (max-width: 1399px) {

  .wpo-fun-fact-section .grid h3,
  .wpo-fun-fact-section-s2 .grid h3 {
    font-size: 70px;
  }
}

@media (max-width: 1199px) {

  .wpo-fun-fact-section .grid h3,
  .wpo-fun-fact-section-s2 .grid h3 {
    font-size: 60px;
  }
}

@media (max-width: 767px) {

  .wpo-fun-fact-section .grid h3,
  .wpo-fun-fact-section-s2 .grid h3 {
    font-size: 50px;
  }
}

.wpo-fun-fact-section .grid h3 span,
.wpo-fun-fact-section-s2 .grid h3 span {
  font-family: "Marcellus";
}

.wpo-fun-fact-section .grid h3+p,
.wpo-fun-fact-section-s2 .grid h3+p {
  margin: 0;
  color: #444444;
  font-family: "Marcellus";
  color: #fff;
  font-size: 25px;
  font-weight: 400;
  line-height: 35px;
  text-align: start;
  max-width: 50px;
}

@media (max-width: 1399px) {

  .wpo-fun-fact-section .grid h3+p,
  .wpo-fun-fact-section-s2 .grid h3+p {
    font-size: 22px;
  }
}

@media (max-width: 991px) {

  .wpo-fun-fact-section .grid h3+p,
  .wpo-fun-fact-section-s2 .grid h3+p {
    font-size: 20px;
    max-width: unset;
    text-align: center;
  }
}

@media (max-width: 767px) {

  .wpo-fun-fact-section .grid h3+p,
  .wpo-fun-fact-section-s2 .grid h3+p {
    font-size: 18px;
  }
}

/* 3.6 wpo-team-section */
.wpo-team-section {
  position: relative;
  overflow: hidden;
  padding-bottom: 90px;
}

@media (max-width: 991px) {
  .wpo-team-section {
    padding-bottom: 60px;
  }
}

@media (max-width: 767px) {
  .wpo-team-section {
    padding-bottom: 30px;
  }
}

.wpo-team-section .team-container {
  height: 100%;
  width: -moz-max-content;
  width: max-content;
  display: flex;
  align-items: center;
}

@media (max-width: 991px) {
  .wpo-team-section .team-container {
    width: 100%;
    justify-content: center;
  }
}

.wpo-team-section .team-container .team-content {
  display: flex;
}

@media (max-width: 991px) {
  .wpo-team-section .team-container .team-content {
    display: block;
  }
}

.wpo-team-section .team-container .team-content .wpo-section-title-s2 {
  max-width: 480px;
}

@media (max-width: 991px) {
  .wpo-team-section .team-container .team-content .wpo-section-title-s2 {
    margin: 0 auto;
    margin-bottom: 35px;
  }
}

.wpo-team-section .team-container .team-content .wpo-section-title-s2 p {
  max-width: 450px;
}

.wpo-team-section .team-container .team-content .team-right {
  padding-left: 60px;
}

@media (max-width: 991px) {
  .wpo-team-section .team-container .team-content .team-right {
    padding-left: 0;
  }
}

.wpo-team-section .team-container .team-content .team-right .team-item {
  display: flex;
  gap: 25px;
}

@media (max-width: 991px) {
  .wpo-team-section .team-container .team-content .team-right .team-item {
    flex-wrap: wrap;
    gap: 15px;
  }
}

@media (max-width: 575px) {
  .wpo-team-section .team-container .team-content .team-right .team-item {
    gap: 0;
  }
}

.wpo-team-section .team-container .team-content .team-right .team-item .team-card {
  margin-bottom: 30px;
}

@media (max-width: 991px) {
  .wpo-team-section .team-container .team-content .team-right .team-item .team-card {
    width: 48%;
  }

  .wpo-team-section .team-container .team-content .team-right .team-item .team-card:last-child {
    margin-bottom: 0;
  }
}

@media (max-width: 575px) {
  .wpo-team-section .team-container .team-content .team-right .team-item .team-card {
    width: 100%;
  }
}

.wpo-team-section .team-container .team-content .team-right .team-item .team-card img {
  width: 100%;
  border-radius: 12px;
}

.wpo-team-section .team-container .team-content .team-right .team-item .team-card .team-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 25px;
}

@media (max-width: 991px) {
  .wpo-team-section .team-container .team-content .team-right .team-item .team-card .team-bottom {
    padding-top: 15px;
  }
}

.wpo-team-section .team-container .team-content .team-right .team-item .team-card .team-bottom .text h4 {
  margin: 0;
  font-size: 35px;
  font-weight: 400;
  line-height: normal;
}

@media (max-width: 991px) {
  .wpo-team-section .team-container .team-content .team-right .team-item .team-card .team-bottom .text h4 {
    font-size: 28px;
  }
}

@media (max-width: 767px) {
  .wpo-team-section .team-container .team-content .team-right .team-item .team-card .team-bottom .text h4 {
    font-size: 24px;
  }
}

.wpo-team-section .team-container .team-content .team-right .team-item .team-card .team-bottom .text h4 a {
  color: #000;
  transition: all ease-in-out 0.4s;
}

.wpo-team-section .team-container .team-content .team-right .team-item .team-card .team-bottom .text h4 a:hover {
  color: #096366;
}

.wpo-team-section .team-container .team-content .team-right .team-item .team-card .team-bottom .text span {
  color: #000;
  font-size: 20px;
  font-weight: 400;
  line-height: 32px;
}

@media (max-width: 767px) {
  .wpo-team-section .team-container .team-content .team-right .team-item .team-card .team-bottom .text span {
    font-size: 18px;
    line-height: 28px;
  }
}

@media (max-width: 575px) {
  .wpo-team-section .team-container .team-content .team-right .team-item .team-card .team-bottom .text span {
    font-size: 16px;
  }
}

.wpo-team-section .team-container .team-content .team-right .team-item .team-card .team-bottom .icon {
  padding-right: 30px;
}

.wpo-team-section .team-container .team-content .team-right .team-item .team-card .team-bottom .icon a i {
  color: #215153;
  font-size: 22px;
}

/* 3.7 wpo-video-section */
.wpo-video-section .video-image {
  position: relative;
  text-align: center;
}

.wpo-video-section .video-image .video-wrap {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.wpo-video-section .video-image .video-wrap .video-btn {
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: hsla(0, 0%, 100%, 0.3);
  border-radius: 50%;
  z-index: 1;
  border: 2px solid #fff;
}

@media (max-width: 991px) {
  .wpo-video-section .video-image .video-wrap .video-btn {
    width: 90px;
    height: 90px;
  }
}

@media (max-width: 575px) {
  .wpo-video-section .video-image .video-wrap .video-btn {
    width: 60px;
    height: 60px;
  }
}

.wpo-video-section .video-image .video-wrap .video-btn .fi::before {
  font-size: 35px;
  position: relative;
  color: #fff;
  z-index: 1;
}

@media (max-width: 991px) {
  .wpo-video-section .video-image .video-wrap .video-btn .fi::before {
    font-size: 28px;
  }
}

@media (max-width: 575px) {
  .wpo-video-section .video-image .video-wrap .video-btn .fi::before {
    font-size: 20px;
  }
}

/* 3.8 marquee-section */
.marquee-section {
  overflow: hidden;
}

.marquee-section .marquee_container {
  display: flex;
  width: 100%;
  overflow: hidden;
  background: #215153;
  padding: 30px 0;
}

@media (max-width: 991px) {
  .marquee-section .marquee_container {
    padding: 15px 0;
  }
}

.marquee-section .marquee {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-shrink: 0;
  min-width: 100%;
  animation: marquee 30s linear infinite;
}

.marquee-section .marquee+.marquee {
  margin-left: 30px;
}

.marquee-section h2 {
  display: flex;
  align-items: center;
  white-space: nowrap;
  margin: 0;
  color: #fff;
  font-size: 60px;
  font-weight: 400;
}

@media (max-width: 1399px) {
  .marquee-section h2 {
    font-size: 50px;
  }
}

@media (max-width: 1199px) {
  .marquee-section h2 {
    font-size: 40px;
  }
}

@media (max-width: 991px) {
  .marquee-section h2 {
    font-size: 25px;
  }
}

.marquee-section h2 img {
  padding-right: 25px;
}

@media (max-width: 1399px) {
  .marquee-section h2 img {
    padding-right: 20px;
  }
}

@media (max-width: 991px) {
  .marquee-section h2 img {
    max-width: 40px;
    padding-right: 14px;
  }
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

/* 3.9 wpo-blog-section */
.wpo-blog-section,
.wpo-blog-section-s2 {
  padding-bottom: 90px;
}

@media (max-width: 991px) {

  .wpo-blog-section,
  .wpo-blog-section-s2 {
    padding-bottom: 60px;
  }
}

@media (max-width: 767px) {

  .wpo-blog-section,
  .wpo-blog-section-s2 {
    padding-bottom: 30px;
  }
}

.wpo-blog-section .blog-card,
.wpo-blog-section-s2 .blog-card {
  display: block;
  padding: 0;
  background: transparent;
  margin-bottom: 30px;
}

.wpo-blog-section .blog-card .image,
.wpo-blog-section-s2 .blog-card .image {
  max-width: 100%;
  overflow: hidden;
  position: relative;
  border-radius: 40px;
}

.wpo-blog-section .blog-card .image img,
.wpo-blog-section-s2 .blog-card .image img {
  border-radius: 0;
  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-s2 .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 .content,
.wpo-blog-section-s2 .blog-card .content {
  padding: 0;
  padding-top: 25px;
}

@media (max-width: 991px) {

  .wpo-blog-section .blog-card .content,
  .wpo-blog-section-s2 .blog-card .content {
    padding-top: 10px;
  }
}

.wpo-blog-section .blog-card .content .text h3,
.wpo-blog-section-s2 .blog-card .content .text h3 {
  margin: 0;
}

.wpo-blog-section .blog-card .content .text h3 a,
.wpo-blog-section-s2 .blog-card .content .text h3 a {
  color: #000;
  font-size: 38px;
  font-weight: 400;
  line-height: 60px;
  transition: all ease-in-out 0.4s;
}

@media (max-width: 1550px) {

  .wpo-blog-section .blog-card .content .text h3 a,
  .wpo-blog-section-s2 .blog-card .content .text h3 a {
    font-size: 33px;
    line-height: 50px;
  }
}

@media (max-width: 1399px) {

  .wpo-blog-section .blog-card .content .text h3 a,
  .wpo-blog-section-s2 .blog-card .content .text h3 a {
    font-size: 26px;
    line-height: 36px;
  }
}

@media (max-width: 991px) {

  .wpo-blog-section .blog-card .content .text h3 a,
  .wpo-blog-section-s2 .blog-card .content .text h3 a {
    font-size: 24px;
    line-height: 36px;
  }
}

@media (max-width: 575px) {

  .wpo-blog-section .blog-card .content .text h3 a,
  .wpo-blog-section-s2 .blog-card .content .text h3 a {
    font-size: 21px;
    line-height: 32px;
  }
}

.wpo-blog-section .blog-card .content .text h3 a:hover,
.wpo-blog-section-s2 .blog-card .content .text h3 a:hover {
  color: #096366;
}

.wpo-blog-section .blog-card .content .blg-bottom,
.wpo-blog-section-s2 .blog-card .content .blg-bottom {
  padding-top: 10px;
}

.wpo-blog-section .blog-card .content .blg-bottom ul,
.wpo-blog-section-s2 .blog-card .content .blg-bottom ul {
  display: flex;
  gap: 45px;
  padding-left: 0;
  list-style: none;
}

@media (max-width: 1199px) {

  .wpo-blog-section .blog-card .content .blg-bottom ul,
  .wpo-blog-section-s2 .blog-card .content .blg-bottom ul {
    gap: 40px;
  }
}

.wpo-blog-section .blog-card .content .blg-bottom ul li,
.wpo-blog-section-s2 .blog-card .content .blg-bottom ul li {
  position: relative;
  color: #215153;
  font-size: 20px;
  font-weight: 400;
  line-height: 32px;
}

@media (max-width: 1399px) {

  .wpo-blog-section .blog-card .content .blg-bottom ul li,
  .wpo-blog-section-s2 .blog-card .content .blg-bottom ul li {
    font-size: 18px;
    line-height: 27px;
  }
}

@media (max-width: 575px) {

  .wpo-blog-section .blog-card .content .blg-bottom ul li,
  .wpo-blog-section-s2 .blog-card .content .blg-bottom ul li {
    font-size: 16px;
    line-height: 23px;
  }
}

.wpo-blog-section .blog-card .content .blg-bottom ul li a,
.wpo-blog-section-s2 .blog-card .content .blg-bottom ul li a {
  color: #215153;
  transition: all ease-in-out 0.4s;
}

.wpo-blog-section .blog-card .content .blg-bottom ul li a:hover,
.wpo-blog-section-s2 .blog-card .content .blg-bottom ul li a:hover {
  color: #096366;
}

.wpo-blog-section .blog-card .content .blg-bottom ul li::before,
.wpo-blog-section-s2 .blog-card .content .blg-bottom ul li::before {
  position: absolute;
  content: "";
  background-color: #215153;
  top: 50%;
  left: -25px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  transform: translateY(-50%);
}

.wpo-blog-section .blog-card .content .blg-bottom ul li:nth-child(1)::before,
.wpo-blog-section-s2 .blog-card .content .blg-bottom ul li:nth-child(1)::before {
  display: none;
}

.auctor-blog .blog-card .image img {
  min-height: 560px;
  object-fit: cover;
}

.wpo-blog-section .blog-card:hover .image img:first-child,
.wpo-blog-section-s2 .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-s2 .blog-card:hover .image img:nth-child(2) {
  transform: translateX(-50%) scaleX(2);
  opacity: 0;
  filter: blur(10px);
}

@media(max-width:1440px) {
  .auctor-blog .blog-card .image img {
    min-height: 450px;
  }
}

@media(max-width:1199px) {
  .auctor-blog .blog-card .image img {
    min-height: 350px;
  }
}

@media(max-width:991px) {
  .auctor-blog .blog-card .image img {
    min-height: 100%;
  }

}

/* 3.10 wpo-cta-section */
.wpo-cta-section,
.wpo-cta-section-s2 {
  position: relative;
  margin-bottom: -190px;
  z-index: 11;
}

@media (max-width: 991px) {

  .wpo-cta-section,
  .wpo-cta-section-s2 {
    margin-bottom: 0;
    padding-bottom: 90px;
  }
}

@media (max-width: 767px) {

  .wpo-cta-section,
  .wpo-cta-section-s2 {
    padding-bottom: 60px;
  }
}

.wpo-cta-section .cta-wrap,
.wpo-cta-section-s2 .cta-wrap {
  border-radius: 40px;
  background: #D6E9EA;
  padding: 40px 0;
}

@media (max-width: 991px) {

  .wpo-cta-section .cta-wrap,
  .wpo-cta-section-s2 .cta-wrap {
    text-align: center;
    padding: 40px 20px;
  }
}

.wpo-cta-section .cta-wrap .cta-left,
.wpo-cta-section-s2 .cta-wrap .cta-left {
  padding-left: 100px;
}

@media (max-width: 1600px) {

  .wpo-cta-section .cta-wrap .cta-left,
  .wpo-cta-section-s2 .cta-wrap .cta-left {
    padding-left: 50px;
  }
}

@media (max-width: 991px) {

  .wpo-cta-section .cta-wrap .cta-left,
  .wpo-cta-section-s2 .cta-wrap .cta-left {
    padding-left: 0;
    max-width: 500px;
    margin: 0 auto;
  }
}

.wpo-cta-section .cta-wrap .cta-left h2,
.wpo-cta-section-s2 .cta-wrap .cta-left h2 {
  margin: 0;
  font-size: 70px;
  font-weight: 400;
  line-height: 100px;
  max-width: 780px;
}

@media (max-width: 1600px) {

  .wpo-cta-section .cta-wrap .cta-left h2,
  .wpo-cta-section-s2 .cta-wrap .cta-left h2 {
    font-size: 60px;
    line-height: 90px;
  }
}

@media (max-width: 1399px) {

  .wpo-cta-section .cta-wrap .cta-left h2,
  .wpo-cta-section-s2 .cta-wrap .cta-left h2 {
    font-size: 50px;
    line-height: 75px;
  }
}

@media (max-width: 1199px) {

  .wpo-cta-section .cta-wrap .cta-left h2,
  .wpo-cta-section-s2 .cta-wrap .cta-left h2 {
    font-size: 40px;
    line-height: 60px;
  }
}

@media (max-width: 575px) {

  .wpo-cta-section .cta-wrap .cta-left h2,
  .wpo-cta-section-s2 .cta-wrap .cta-left h2 {
    font-size: 32px;
    line-height: 44px;
  }
}

@media (max-width: 425px) {

  .wpo-cta-section .cta-wrap .cta-left h2,
  .wpo-cta-section-s2 .cta-wrap .cta-left h2 {
    font-size: 26px;
    line-height: 38px;
  }
}

.wpo-cta-section .cta-wrap .cta-left .cta-btn,
.wpo-cta-section-s2 .cta-wrap .cta-left .cta-btn {
  margin-top: 30px;
}

@media (max-width: 575px) {

  .wpo-cta-section .cta-wrap .cta-left .cta-btn,
  .wpo-cta-section-s2 .cta-wrap .cta-left .cta-btn {
    margin-top: 15px;
  }
}

@media (max-width: 991px) {

  .wpo-cta-section .cta-wrap .cta-right,
  .wpo-cta-section-s2 .cta-wrap .cta-right {
    margin-top: 40px;
  }
}

@media (max-width: 767px) {

  .wpo-cta-section .cta-wrap .cta-right img,
  .wpo-cta-section-s2 .cta-wrap .cta-right img {
    max-width: 400px;
  }
}

@media (max-width: 500px) {

  .wpo-cta-section .cta-wrap .cta-right img,
  .wpo-cta-section-s2 .cta-wrap .cta-right img {
    max-width: 300px;
  }
}

@media (max-width: 375px) {

  .wpo-cta-section .cta-wrap .cta-right img,
  .wpo-cta-section-s2 .cta-wrap .cta-right img {
    max-width: 250px;
  }
}

/*======================================
5. Home-style-2
 =======================================*/
/* 5.1 wpo-about-section */
.wpo-about-section .about-left,
.wpo-about-section-s4 .about-left {
  text-align: center;
  padding-right: 100px;
}

@media (max-width: 1600px) {

  .wpo-about-section .about-left,
  .wpo-about-section-s4 .about-left {
    padding-right: 20px;
  }
}

.wpo-about-section .about-left .wpo-section-title,
.wpo-about-section-s4 .about-left .wpo-section-title {
  justify-content: center;
  margin-top: 0;
}

.wpo-about-section .about-right,
.wpo-about-section-s4 .about-right {
  max-width: 1080px;
  margin-left: auto;
}

@media (max-width: 991px) {

  .wpo-about-section .about-right,
  .wpo-about-section-s4 .about-right {
    text-align: center;
    margin-top: 30px;
  }
}

.wpo-about-section .about-right .about-right-content,
.wpo-about-section-s4 .about-right .about-right-content {
  margin-bottom: 52px;
}

@media (max-width: 575px) {

  .wpo-about-section .about-right .about-right-content,
  .wpo-about-section-s4 .about-right .about-right-content {
    margin-bottom: 30px;
  }
}

.wpo-about-section .about-right .about-right-content h3,
.wpo-about-section-s4 .about-right .about-right-content h3 {
  margin: 0;
  font-size: 40px;
  line-height: 60px;
  font-weight: 400;
}

@media (max-width: 1600px) {

  .wpo-about-section .about-right .about-right-content h3,
  .wpo-about-section-s4 .about-right .about-right-content h3 {
    font-size: 35px;
    line-height: 54px;
  }
}

@media (max-width: 1399px) {

  .wpo-about-section .about-right .about-right-content h3,
  .wpo-about-section-s4 .about-right .about-right-content h3 {
    font-size: 30px;
    line-height: 48px;
  }
}

@media (max-width: 991px) {

  .wpo-about-section .about-right .about-right-content h3,
  .wpo-about-section-s4 .about-right .about-right-content h3 {
    font-size: 26px;
    line-height: 42px;
  }
}

@media (max-width: 767px) {

  .wpo-about-section .about-right .about-right-content h3,
  .wpo-about-section-s4 .about-right .about-right-content h3 {
    font-size: 24px;
    line-height: 35px;
  }
}

@media (max-width: 425px) {

  .wpo-about-section .about-right .about-right-content h3,
  .wpo-about-section-s4 .about-right .about-right-content h3 {
    font-size: 20px;
    line-height: 28px;
  }
}

.wpo-about-section .about-right .about-right-image,
.wpo-about-section-s4 .about-right .about-right-image {
  display: flex;
  gap: 40px;
}

@media (max-width: 991px) {

  .wpo-about-section .about-right .about-right-image,
  .wpo-about-section-s4 .about-right .about-right-image {
    gap: 20px;
  }
}

@media (max-width: 575px) {

  .wpo-about-section .about-right .about-right-image,
  .wpo-about-section-s4 .about-right .about-right-image {
    flex-direction: column;
  }
}

@media (max-width: 575px) {

  .wpo-about-section .about-right .about-right-image img,
  .wpo-about-section-s4 .about-right .about-right-image img {
    width: 100%;
  }
}

/* 5.2 wpo-service-section-s2 */
.wpo-service-section-s2 {
  position: relative;
  z-index: 1;
}

.wpo-service-section-s2 .service-wrap {
  overflow: hidden;
}

.wpo-service-section-s2 .service-wrap .service-items {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  flex: 1;
  cursor: pointer;
  padding: 33px 0;
  border-bottom: 2px solid #C9C9C9;
  transition: all 0.4s ease-in-out;
}

@media (max-width: 991px) {
  .wpo-service-section-s2 .service-wrap .service-items {
    padding: 17px 0;
  }
}

.wpo-service-section-s2 .service-wrap .service-items:first-child {
  border-top: 2px solid #C9C9C9;
}

.wpo-service-section-s2 .service-wrap .service-items:last-child {
  border-bottom: none;
}

.wpo-service-section-s2 .service-wrap .service-items .service-text {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 425px) {
  .wpo-service-section-s2 .service-wrap .service-items .service-text {
    flex-direction: column;
  }
}

.wpo-service-section-s2 .service-wrap .service-items .service-text h2 {
  margin: 0;
}

.wpo-service-section-s2 .service-wrap .service-items .service-text h2 a {
  color: #000;
  font-family: "Marcellus";
  font-size: 40px;
  font-weight: 400;
  line-height: normal;
  display: block;
  transition: all 0.6s ease-in-out;
}

@media (max-width: 1399px) {
  .wpo-service-section-s2 .service-wrap .service-items .service-text h2 a {
    font-size: 35px;
  }
}

@media (max-width: 991px) {
  .wpo-service-section-s2 .service-wrap .service-items .service-text h2 a {
    font-size: 30px;
    margin-bottom: 10px;
  }
}

@media (max-width: 575px) {
  .wpo-service-section-s2 .service-wrap .service-items .service-text h2 a {
    font-size: 23px;
  }
}

@media (max-width: 425px) {
  .wpo-service-section-s2 .service-wrap .service-items .service-text h2 a {
    font-size: 20px;
  }
}

.wpo-service-section-s2 .service-wrap .service-items .service-text h2 a:hover {
  color: #096366;
}

.wpo-service-section-s2 .service-wrap .service-items .service-text span {
  color: #000;
  text-align: right;
  font-size: 30px;
  font-weight: 500;
  line-height: normal;
}

@media (max-width: 1399px) {
  .wpo-service-section-s2 .service-wrap .service-items .service-text span {
    font-size: 25px;
  }
}

@media (max-width: 991px) {
  .wpo-service-section-s2 .service-wrap .service-items .service-text span {
    font-size: 20px;
  }
}

@media (max-width: 575px) {
  .wpo-service-section-s2 .service-wrap .service-items .service-text span {
    font-size: 16px;
  }
}

.wpo-service-section-s2 .service-wrap .service-items .service-expanded {
  display: none;
}

.wpo-service-section-s2 .service-wrap .service-items .service-expanded .service-image {
  width: 100%;
  position: relative;
  top: 40px;
}

@media (max-width: 991px) {
  .wpo-service-section-s2 .service-wrap .service-items .service-expanded .service-image {
    top: 20px;
  }
}

.wpo-service-section-s2 .service-wrap .service-items.active {
  border-bottom: none;
}

.wpo-service-section-s2 .service-wrap .service-items.active .service-default {
  flex-direction: column;
  border-bottom: none;
}

.wpo-service-section-s2 .service-items.active .service-expanded {
  display: flex;
  flex-direction: column;
}

/* 5.3 wpo-case-section-s2 */
.wpo-case-section-s2 .case-wrap,
.wpo-case-section-s3 .case-wrap {
  max-width: 1530px;
  margin: 0 auto;
}

.wpo-case-section-s2 .wpo-section-title-s3,
.wpo-case-section-s3 .wpo-section-title-s3 {
  max-width: 1530px;
  padding-right: 135px;
}

@media (max-width: 1600px) {

  .wpo-case-section-s2 .wpo-section-title-s3,
  .wpo-case-section-s3 .wpo-section-title-s3 {
    padding-right: 20px;
  }
}

@media (max-width: 1399px) {

  .wpo-case-section-s2 .wpo-section-title-s3,
  .wpo-case-section-s3 .wpo-section-title-s3 {
    padding-right: 0;
  }
}

.wpo-case-section-s2 .wpo-section-title-s3 h2,
.wpo-case-section-s3 .wpo-section-title-s3 h2 {
  color: #fff;
  max-width: 956px;
}

@media (max-width: 1399px) {

  .wpo-case-section-s2 .wpo-section-title-s3 h2,
  .wpo-case-section-s3 .wpo-section-title-s3 h2 {
    max-width: 700px;
  }
}

@media (max-width: 1199px) {

  .wpo-case-section-s2 .wpo-section-title-s3 h2,
  .wpo-case-section-s3 .wpo-section-title-s3 h2 {
    max-width: 560px;
  }
}

.wpo-case-section-s2 .case-left-sticky,
.wpo-case-section-s3 .case-left-sticky {
  max-width: 260px;
}

@media (max-width: 991px) {

  .wpo-case-section-s2 .case-left-sticky,
  .wpo-case-section-s3 .case-left-sticky {
    margin: 0 auto;
    text-align: center;
    margin-bottom: 30px;
  }
}

.wpo-case-section-s2 .case-left-sticky .grid,
.wpo-case-section-s3 .case-left-sticky .grid {
  position: sticky;
  top: 10px;
}

.wpo-case-section-s2 .case-left-sticky .grid h3,
.wpo-case-section-s3 .case-left-sticky .grid h3 {
  margin: 0;
  font-family: "Marcellus";
  color: #fff;
  font-size: 60px;
  font-weight: 400;
  line-height: normal;
}

@media (max-width: 1199px) {

  .wpo-case-section-s2 .case-left-sticky .grid h3,
  .wpo-case-section-s3 .case-left-sticky .grid h3 {
    font-size: 50px;
  }
}

@media (max-width: 767px) {

  .wpo-case-section-s2 .case-left-sticky .grid h3,
  .wpo-case-section-s3 .case-left-sticky .grid h3 {
    font-size: 40px;
  }
}

.wpo-case-section-s2 .case-left-sticky .grid h3 span,
.wpo-case-section-s3 .case-left-sticky .grid h3 span {
  font-family: "Marcellus";
}

.wpo-case-section-s2 .case-left-sticky .grid h3+p,
.wpo-case-section-s3 .case-left-sticky .grid h3+p {
  margin: 0;
  font-family: "Marcellus";
  color: #fff;
  font-size: 25px;
  line-height: 35px;
  font-weight: 400;
  text-align: start;
  margin-top: 15px;
}

@media (max-width: 1199px) {

  .wpo-case-section-s2 .case-left-sticky .grid h3+p,
  .wpo-case-section-s3 .case-left-sticky .grid h3+p {
    font-size: 20px;
  }
}

@media (max-width: 991px) {

  .wpo-case-section-s2 .case-left-sticky .grid h3+p,
  .wpo-case-section-s3 .case-left-sticky .grid h3+p {
    max-width: unset;
    text-align: center;
  }
}

@media (max-width: 767px) {

  .wpo-case-section-s2 .case-left-sticky .grid h3+p,
  .wpo-case-section-s3 .case-left-sticky .grid h3+p {
    font-size: 18px;
    margin-top: 7px;
  }
}

.wpo-case-section-s2 .case-left-sticky .odometer-formatting-mark,
.wpo-case-section-s3 .case-left-sticky .odometer-formatting-mark {
  display: none;
}

.wpo-case-section-s2 .case-right-all,
.wpo-case-section-s3 .case-right-all {
  padding-left: 55px;
}

@media (max-width: 991px) {

  .wpo-case-section-s2 .case-right-all,
  .wpo-case-section-s3 .case-right-all {
    padding-left: 0;
  }
}

.wpo-case-section-s2 .case-right-all .case-item .case-image .image,
.wpo-case-section-s3 .case-right-all .case-item .case-image .image {
  border-radius: 0;
}

.wpo-case-section-s2 .case-right-all .case-item .case-image .image img,
.wpo-case-section-s3 .case-right-all .case-item .case-image .image img {
  border-radius: 0;
  max-width: 1085px;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  max-height: 730px;
  height: 100%;
}

.wpo-case-section-s2 .case-right-all .case-item .case-text,
.wpo-case-section-s3 .case-right-all .case-item .case-text {
  padding-left: 0;
  padding-top: 25px;
}

@media (max-width: 991px) {

  .wpo-case-section-s2 .case-right-all .case-item .case-text,
  .wpo-case-section-s3 .case-right-all .case-item .case-text {
    padding-top: 15px;
  }
}

.wpo-case-section-s2 .case-right-all .case-item .case-text h3,
.wpo-case-section-s3 .case-right-all .case-item .case-text h3 {
  font-size: 60px;
  font-weight: 400;
  line-height: normal;
}

@media (max-width: 1600px) {

  .wpo-case-section-s2 .case-right-all .case-item .case-text h3,
  .wpo-case-section-s3 .case-right-all .case-item .case-text h3 {
    font-size: 50px;
  }
}

@media (max-width: 1399px) {

  .wpo-case-section-s2 .case-right-all .case-item .case-text h3,
  .wpo-case-section-s3 .case-right-all .case-item .case-text h3 {
    font-size: 44px;
  }
}

@media (max-width: 1199px) {

  .wpo-case-section-s2 .case-right-all .case-item .case-text h3,
  .wpo-case-section-s3 .case-right-all .case-item .case-text h3 {
    font-size: 35px;
  }
}

@media (max-width: 991px) {

  .wpo-case-section-s2 .case-right-all .case-item .case-text h3,
  .wpo-case-section-s3 .case-right-all .case-item .case-text h3 {
    font-size: 30px;
  }
}

@media (max-width: 575px) {

  .wpo-case-section-s2 .case-right-all .case-item .case-text h3,
  .wpo-case-section-s3 .case-right-all .case-item .case-text h3 {
    font-size: 25px;
  }
}

@media (max-width: 425px) {

  .wpo-case-section-s2 .case-right-all .case-item .case-text h3,
  .wpo-case-section-s3 .case-right-all .case-item .case-text h3 {
    font-size: 20px;
  }
}

/* 5.4 wpo-testimonial-section-s2 */
.wpo-testimonial-section-s2 .owl-nav {
  margin-top: 80px;
  text-align: center;
  max-height: 20px;
}

@media (max-width: 1399px) {
  .wpo-testimonial-section-s2 .owl-nav {
    margin-top: 50px;
  }
}

@media (max-width: 767px) {
  .wpo-testimonial-section-s2 .owl-nav {
    margin-top: 30px;
  }
}

.wpo-testimonial-section-s2 .owl-nav button {
  border: 0;
  background: transparent;
  position: relative;
  transition: all ease 0.4s;
  height: 20px;
  line-height: 20px;
}

.wpo-testimonial-section-s2 .owl-nav button:hover {
  color: #215153;
}

.wpo-testimonial-section-s2 .owl-nav .owl-prev {
  font-size: 30px;
  color: #B4B4B4;
}

.wpo-testimonial-section-s2 .owl-nav .owl-next {
  margin-left: 30px;
  font-size: 30px;
  color: #B4B4B4;
}

.wpo-testimonial-section-s2 .wpo-testimonial-items {
  display: flex;
  align-items: center;
  margin-left: 10px;
  margin-right: -10px;
}

@media (max-width: 1399px) {
  .wpo-testimonial-section-s2 .wpo-testimonial-items {
    margin-left: 0;
    margin-right: 0;
  }
}

@media (max-width: 767px) {
  .wpo-testimonial-section-s2 .wpo-testimonial-items {
    display: block;
    text-align: center;
  }
}

@media (max-width: 991px) {
  .wpo-testimonial-section-s2 .wpo-testimonial-items .testimonial-image .image img {
    width: 100%;
  }
}

.wpo-testimonial-section-s2 .wpo-testimonial-items .wpo-testimonial-text-s2 {
  max-width: 440px;
  margin-left: 40px;
}

@media (max-width: 1399px) {
  .wpo-testimonial-section-s2 .wpo-testimonial-items .wpo-testimonial-text-s2 {
    max-width: 300px;
  }
}

@media (max-width: 1199px) {
  .wpo-testimonial-section-s2 .wpo-testimonial-items .wpo-testimonial-text-s2 {
    max-width: 520px;
  }
}

@media (max-width: 991px) {
  .wpo-testimonial-section-s2 .wpo-testimonial-items .wpo-testimonial-text-s2 {
    max-width: 400px;
    margin-left: 20px;
  }
}

@media (max-width: 767px) {
  .wpo-testimonial-section-s2 .wpo-testimonial-items .wpo-testimonial-text-s2 {
    max-width: unset;
    margin-left: 0;
    margin-top: 30px;
  }
}

.wpo-testimonial-section-s2 .wpo-testimonial-items .wpo-testimonial-text-s2 .icon {
  margin-bottom: 30px;
  max-width: 50px;
}

@media (max-width: 767px) {
  .wpo-testimonial-section-s2 .wpo-testimonial-items .wpo-testimonial-text-s2 .icon {
    margin: 0 auto;
    margin-bottom: 30px;
  }
}

.wpo-testimonial-section-s2 .wpo-testimonial-items .wpo-testimonial-text-s2 p {
  margin: 0;
  font-size: 25px;
  line-height: 40px;
  font-weight: 400;
  margin-bottom: 40px;
}

@media (max-width: 1399px) {
  .wpo-testimonial-section-s2 .wpo-testimonial-items .wpo-testimonial-text-s2 p {
    font-size: 20px;
    line-height: 35px;
    margin-bottom: 25px;
  }
}

@media (max-width: 575px) {
  .wpo-testimonial-section-s2 .wpo-testimonial-items .wpo-testimonial-text-s2 p {
    font-size: 18px;
    line-height: 30px;
  }
}

.wpo-testimonial-section-s2 .wpo-testimonial-items .wpo-testimonial-text-s2 .wpo-testimonial-text-btm h3 {
  margin: 0;
  font-size: 40px;
  line-height: normal;
  font-weight: 400;
  padding-bottom: 10px;
}

@media (max-width: 1399px) {
  .wpo-testimonial-section-s2 .wpo-testimonial-items .wpo-testimonial-text-s2 .wpo-testimonial-text-btm h3 {
    font-size: 33px;
  }
}

@media (max-width: 575px) {
  .wpo-testimonial-section-s2 .wpo-testimonial-items .wpo-testimonial-text-s2 .wpo-testimonial-text-btm h3 {
    font-size: 25px;
  }
}

.wpo-testimonial-section-s2 .wpo-testimonial-items .wpo-testimonial-text-s2 .wpo-testimonial-text-btm span {
  font-size: 20px;
  line-height: normal;
  font-weight: 400;
}

@media (max-width: 575px) {
  .wpo-testimonial-section-s2 .wpo-testimonial-items .wpo-testimonial-text-s2 .wpo-testimonial-text-btm span {
    font-size: 18px;
  }
}

/* 5.5 wpo-team-section-s2 */
.wpo-team-section-s2 {
  padding-bottom: 90px;
}

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

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

.wpo-team-section-s2 .team-wrap {
  max-width: 1530px;
  margin: 0 auto;
}

.wpo-team-section-s2 .team-card {
  margin-bottom: 30px;
}

.wpo-team-section-s2 .team-card .image {
  overflow: hidden;
  position: relative;
  transform: scale(1);
}

.wpo-team-section-s2 .team-card .image img {
  transition: all ease-in-out 0.4s;
  width: 100%;
}

.wpo-team-section-s2 .team-card .image::before {
  position: absolute;
  top: 0;
  left: -85%;
  z-index: 2;
  display: block;
  content: "";
  width: 30%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  transform: skewX(-30deg);
}

.wpo-team-section-s2 .team-card .team-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 25px;
}

@media (max-width: 991px) {
  .wpo-team-section-s2 .team-card .team-bottom {
    padding-top: 15px;
  }
}

.wpo-team-section-s2 .team-card .team-bottom .text h4 {
  margin: 0;
  font-size: 40px;
  font-weight: 400;
  line-height: normal;
}

@media (max-width: 1399px) {
  .wpo-team-section-s2 .team-card .team-bottom .text h4 {
    font-size: 36px;
  }
}

@media (max-width: 1199px) {
  .wpo-team-section-s2 .team-card .team-bottom .text h4 {
    font-size: 32px;
  }
}

@media (max-width: 575px) {
  .wpo-team-section-s2 .team-card .team-bottom .text h4 {
    font-size: 26px;
  }
}

.wpo-team-section-s2 .team-card .team-bottom .text h4 a {
  color: #000;
  transition: all ease-in-out 0.4s;
}

.wpo-team-section-s2 .team-card .team-bottom .text h4 a:hover {
  color: #096366;
}

.wpo-team-section-s2 .team-card .team-bottom .text span {
  color: #000;
  font-size: 20px;
  font-weight: 400;
  line-height: 32px;
}

@media (max-width: 767px) {
  .wpo-team-section-s2 .team-card .team-bottom .text span {
    font-size: 18px;
    line-height: 28px;
  }
}

@media (max-width: 575px) {
  .wpo-team-section-s2 .team-card .team-bottom .text span {
    font-size: 16px;
  }
}

.wpo-team-section-s2 .team-card .team-bottom .icon {
  padding-right: 55px;
}

@media (max-width: 1399px) {
  .wpo-team-section-s2 .team-card .team-bottom .icon {
    padding-right: 20px;
  }
}

.wpo-team-section-s2 .team-card .team-bottom .icon a i {
  color: #215153;
  font-size: 22px;
}

.wpo-team-section-s2 .team-card:hover .image img {
  transform: scale(1.1);
}

.wpo-team-section-s2 .team-card:hover .image::before {
  animation: shine 0.95s;
}

/* 5.6 wpo-blog-section-s2 */
.wpo-blog-section-s2 .blog-wrap {
  max-width: 1530px;
  margin: 0 auto;
}

.wpo-blog-section-s2 .blog-card .image {
  border-radius: 0;
}

.wpo-blog-section-s2 .blog-card .content .text h3 a {
  font-size: 35px;
  line-height: 50px;
}

@media (max-width: 1550px) {
  .wpo-blog-section-s2 .blog-card .content .text h3 a {
    font-size: 30px;
    line-height: 46px;
  }
}

@media (max-width: 1399px) {
  .wpo-blog-section-s2 .blog-card .content .text h3 a {
    font-size: 26px;
    line-height: 40px;
  }
}

@media (max-width: 991px) {
  .wpo-blog-section-s2 .blog-card .content .text h3 a {
    font-size: 24px;
    line-height: 30px;
  }
}

@media (max-width: 575px) {
  .wpo-blog-section-s2 .blog-card .content .text h3 a {
    font-size: 22px;
  }
}

/* 5.7 wpo-cta-section-s2 */
.wpo-cta-section-s2 .cta-wrap {
  border-radius: 0;
}

/*======================================
6. Home-style-3
 =======================================*/
/* 6.1 wpo-about-section-s2 */
.wpo-about-section-s2 {
  padding: 100px;
}

@media (max-width: 991px) {
  .wpo-about-section-s2 {
    padding: 70px;
  }
}

@media (max-width: 767px) {
  .wpo-about-section-s2 {
    padding: 60px;
  }
}

.wpo-about-section-s2 .about-item .about-top-content {
  text-align: center;
  margin-bottom: 60px;
}

@media (max-width: 767px) {
  .wpo-about-section-s2 .about-item .about-top-content {
    margin-bottom: 30px;
  }
}

.wpo-about-section-s2 .about-item .about-top-content h2 {
  margin: 0;
  font-size: 100px;
  line-height: normal;
  font-weight: 400;
}

@media (max-width: 1730px) {
  .wpo-about-section-s2 .about-item .about-top-content h2 {
    font-size: 80px;
  }
}

@media (max-width: 1399px) {
  .wpo-about-section-s2 .about-item .about-top-content h2 {
    font-size: 60px;
  }
}

@media (max-width: 1199px) {
  .wpo-about-section-s2 .about-item .about-top-content h2 {
    font-size: 50px;
  }
}

@media (max-width: 991px) {
  .wpo-about-section-s2 .about-item .about-top-content h2 {
    font-size: 50px;
  }
}

@media (max-width: 767px) {
  .wpo-about-section-s2 .about-item .about-top-content h2 {
    font-size: 40px;
  }
}

@media (max-width: 575px) {
  .wpo-about-section-s2 .about-item .about-top-content h2 {
    font-size: 30px;
  }
}

.wpo-about-section-s2 .about-item .about-item {
  position: relative;
}

.wpo-about-section-s2 .about-item .about-item .about-image {
  display: flex;
  gap: 40px;
}

@media (max-width: 767px) {
  .wpo-about-section-s2 .about-item .about-item .about-image {
    flex-direction: column;
    gap: 20px;
  }
}

.wpo-about-section-s2 .about-item .about-item .odometer-item {
  position: absolute;
  top: 50%;
  left: 63%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  border-radius: 50%;
  padding: 20px;
}

@media (max-width: 1199px) {
  .wpo-about-section-s2 .about-item .about-item .odometer-item {
    padding: 10px;
  }
}

@media (max-width: 767px) {
  .wpo-about-section-s2 .about-item .about-item .odometer-item {
    position: unset;
    transform: none;
    margin-bottom: 30px;
    padding: 0;
  }
}

.wpo-about-section-s2 .about-item .about-item .odometer-item .odometer-border {
  padding: 15px;
  width: 250px;
  height: 250px;
  background-color: #215153;
  border-radius: 50%;
}

@media (max-width: 1199px) {
  .wpo-about-section-s2 .about-item .about-item .odometer-item .odometer-border {
    width: 190px;
    height: 190px;
    padding: 10px;
  }
}

@media (max-width: 767px) {
  .wpo-about-section-s2 .about-item .about-item .odometer-item .odometer-border {
    margin: 0 auto;
  }
}

.wpo-about-section-s2 .about-item .about-item .odometer-item .odometer-border .grid {
  width: 220px;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 50%;
  border: 1px solid #fff;
}

@media (max-width: 1199px) {
  .wpo-about-section-s2 .about-item .about-item .odometer-item .odometer-border .grid {
    width: 170px;
    height: 170px;
  }
}

.wpo-about-section-s2 .about-item .about-item .odometer-item .odometer-border .grid h3 {
  margin: 0;
  font-family: "Marcellus";
  color: #fff;
  font-size: 100px;
  font-weight: 400;
  line-height: 80px;
}

@media (max-width: 1199px) {
  .wpo-about-section-s2 .about-item .about-item .odometer-item .odometer-border .grid h3 {
    font-size: 60px;
    line-height: 60px;
  }
}

@media (max-width: 767px) {
  .wpo-about-section-s2 .about-item .about-item .odometer-item .odometer-border .grid h3 {
    font-size: 40px;
  }
}

.wpo-about-section-s2 .about-item .about-item .odometer-item .odometer-border .grid h3 span {
  font-family: "Marcellus";
}

.wpo-about-section-s2 .about-item .about-item .odometer-item .odometer-border .grid h3+p {
  margin: 0;
  font-family: "Marcellus";
  color: #fff;
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  text-align: center;
  max-width: 105px;
}

@media (max-width: 1199px) {
  .wpo-about-section-s2 .about-item .about-item .odometer-item .odometer-border .grid h3+p {
    font-size: 18px;
    line-height: 25px;
  }
}

@media (max-width: 575px) {
  .wpo-about-section-s2 .about-item .about-item .odometer-item .odometer-border .grid h3+p {
    font-size: 16px;
  }
}

.wpo-about-section-s2 .about-item .about-item .odometer-item .odometer-border .odometer-formatting-mark {
  display: none;
}

/* 6.2 wpo-case-section-s3 */
.wpo-case-section-s3 {
  padding-bottom: 90px;
}

@media (max-width: 991px) {
  .wpo-case-section-s3 {
    padding-bottom: 60px;
  }
}

@media (max-width: 991px) {
  .wpo-case-section-s3 {
    padding-bottom: 30px;
  }
}

.wpo-case-section-s3 .wpo-section-title-s3 {
  flex-direction: column;
  align-items: center;
  padding: 0;
  text-align: center;
  margin-top: 0;
}

.wpo-case-section-s3 .case-item .case-image .image {
  border-radius: 0;
}

.wpo-case-section-s3 .case-item .case-image .image img {
  border-radius: 0;
}

@media (max-width: 1199px) {
  .wpo-case-section-s3 .case-item .case-image .case-tag {
    left: 10px;
    gap: 10px;
  }
}

@media (max-width: 1199px) {
  .wpo-case-section-s3 .case-item .case-image .case-tag li {
    font-size: 20px;
    line-height: 28px;
    padding: 2px 12px;
  }
}

@media (max-width: 575px) {
  .wpo-case-section-s3 .case-item .case-image .case-tag li {
    font-size: 16px;
    line-height: 24px;
    padding: 2px 10px;
  }
}

.wpo-case-section-s3 .case-item .case-text {
  padding-left: 0;
}

.wpo-case-section-s3 .case-item:last-child {
  margin-bottom: 30px;
}

/* 6.3 wpo-testimonial-section-s3 */
.wpo-testimonial-section-s3 .wpo-testimonial-active {
  padding-bottom: 90px;
}

@media (max-width: 767px) {
  .wpo-testimonial-section-s3 .wpo-testimonial-active {
    padding-bottom: 60px;
  }
}

.wpo-testimonial-section-s3 .wpo-testimonial-items {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  max-width: 1566px;
}

.wpo-testimonial-section-s3 .wpo-testimonial-items .icon {
  max-width: 120px;
  margin: 0 auto;
  margin-bottom: 60px;
}

@media (max-width: 991px) {
  .wpo-testimonial-section-s3 .wpo-testimonial-items .icon {
    max-width: 80px;
    margin-bottom: 30px;
  }
}

@media (max-width: 575px) {
  .wpo-testimonial-section-s3 .wpo-testimonial-items .icon {
    max-width: 60px;
  }
}

.wpo-testimonial-section-s3 .wpo-testimonial-items h2 {
  color: #000;
  font-size: 60px;
  font-weight: 400;
  line-height: normal;
  text-align: center;
  margin: 0;
}

@media (max-width: 1399px) {
  .wpo-testimonial-section-s3 .wpo-testimonial-items h2 {
    font-size: 52px;
  }
}

@media (max-width: 1199px) {
  .wpo-testimonial-section-s3 .wpo-testimonial-items h2 {
    font-size: 38px;
  }
}

@media (max-width: 991px) {
  .wpo-testimonial-section-s3 .wpo-testimonial-items h2 {
    font-size: 32px;
  }
}

@media (max-width: 575px) {
  .wpo-testimonial-section-s3 .wpo-testimonial-items h2 {
    font-size: 24px;
  }
}

.wpo-testimonial-section-s3 .wpo-testimonial-items .wpo-testimonial-text-btm {
  padding-top: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

@media (max-width: 991px) {
  .wpo-testimonial-section-s3 .wpo-testimonial-items .wpo-testimonial-text-btm {
    padding-top: 40px;
  }
}

@media (max-width: 575px) {
  .wpo-testimonial-section-s3 .wpo-testimonial-items .wpo-testimonial-text-btm {
    padding-top: 20px;
    gap: 10px;
  }
}

.wpo-testimonial-section-s3 .wpo-testimonial-items .wpo-testimonial-text-btm .client-image img {
  border-radius: 50%;
}

@media (max-width: 575px) {
  .wpo-testimonial-section-s3 .wpo-testimonial-items .wpo-testimonial-text-btm .client-image img {
    max-width: 70px;
    width: 100%;
  }
}

.wpo-testimonial-section-s3 .wpo-testimonial-items .wpo-testimonial-text-btm .client-text h3 {
  margin: 0;
  font-size: 35px;
  line-height: normal;
  font-weight: 400;
  padding-bottom: 10px;
}

@media (max-width: 1199px) {
  .wpo-testimonial-section-s3 .wpo-testimonial-items .wpo-testimonial-text-btm .client-text h3 {
    font-size: 30px;
  }
}

@media (max-width: 575px) {
  .wpo-testimonial-section-s3 .wpo-testimonial-items .wpo-testimonial-text-btm .client-text h3 {
    font-size: 22px;
    padding-bottom: 0;
  }
}

.wpo-testimonial-section-s3 .wpo-testimonial-items .wpo-testimonial-text-btm .client-text span {
  color: #000;
  font-size: 20px;
  line-height: normal;
  font-weight: 400;
}

@media (max-width: 575px) {
  .wpo-testimonial-section-s3 .wpo-testimonial-items .wpo-testimonial-text-btm .client-text span {
    font-size: 16px;
  }
}

.wpo-testimonial-section-s3 .slick-dotted.slick-slider {
  margin-bottom: 0;
}

.wpo-testimonial-section-s3 .slick-arrow {
  position: absolute;
  top: auto;
  left: auto;
  right: 0;
  bottom: -30px;
  left: 50%;
  top: auto;
  bottom: 0;
  transform: translateX(-50%);
  transition: all 0.4s ease;
  z-index: 1;
}

.wpo-testimonial-section-s3 .slick-arrow.slick-prev::after,
.wpo-testimonial-section-s3 .slick-arrow.slick-next::after {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  content: "\e628";
  font-family: 'themify';
  font-size: 30px;
  color: #B4B4B4;
  transition: all 0.4s ease;
}

.wpo-testimonial-section-s3 .slick-arrow.slick-prev::before,
.wpo-testimonial-section-s3 .slick-arrow.slick-next::before {
  display: none;
}

.wpo-testimonial-section-s3 .slick-arrow.slick-next {
  margin-left: -35px;
}

.wpo-testimonial-section-s3 .slick-arrow.slick-prev {
  margin-left: 35px;
}

.wpo-testimonial-section-s3 .slick-arrow.slick-next::after {
  content: "\e629";
}

.wpo-testimonial-section-s3 .slick-arrow.slick-next::before {
  display: none;
}

.wpo-testimonial-section-s3 .slick-arrow:hover::after {
  color: #215153;
}

.wpo-testimonial-section-s3 .slick-dots {
  text-align: center;
  bottom: 0;
  display: none;
}

@media (max-width: 991px) {
  .wpo-testimonial-section-s3 .slick-dots {
    display: block;
  }
}

.wpo-testimonial-section-s3 .slick-dots li {
  width: unset;
  height: unset;
}

.wpo-testimonial-section-s3 .slick-dots li button {
  background: #D9D9D9;
  margin-right: 5px;
  width: 10px;
  height: 10px;
  padding: 0;
  border-radius: 50%;
}

.wpo-testimonial-section-s3 .slick-dots li button::before {
  display: none;
}

.wpo-testimonial-section-s3 .slick-dots li.slick-active button {
  background: #215153;
}

.wpo-testimonial-section-s3 .slick-dots li.slick-active button::after {
  position: absolute;
  left: -3px;
  top: -3px;
  width: 16px;
  height: 16px;
  content: "";
  border: 1px solid #215153;
  border-radius: 50%;
}

/*======================================
7. Home-style-4
 =======================================*/
/* 7.1 wpo-fun-fact-section-s2 */
.wpo-fun-fact-section-s2 {
  background-color: #000D1D;
  margin-top: -1px;
}

/* 7.2 wpo-about-section-s3 */
@media (max-width: 991px) {

  .wpo-about-section-s3 .about-left-item .about-left-image img,
  .wpo-about-section-s4 .about-left-item .about-left-image img {
    width: 100%;
  }
}

.wpo-about-section-s3 .about-left-item .about-left-image .image-2,
.wpo-about-section-s4 .about-left-item .about-left-image .image-2 {
  position: relative;
  margin-top: -200px;
  margin-left: 60px;
}

@media (max-width: 1399px) {

  .wpo-about-section-s3 .about-left-item .about-left-image .image-2,
  .wpo-about-section-s4 .about-left-item .about-left-image .image-2 {
    margin-left: 30px;
    margin-top: -100px;
  }
}

@media (max-width: 991px) {

  .wpo-about-section-s3 .about-left-item .about-left-image .image-2,
  .wpo-about-section-s4 .about-left-item .about-left-image .image-2 {
    margin-left: 0;
    margin-top: 30px;
  }
}

.wpo-about-section-s3 .about-left-item .about-left-image .image-2 .odometer-item,
.wpo-about-section-s4 .about-left-item .about-left-image .image-2 .odometer-item {
  position: absolute;
  top: 50%;
  left: 63%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  border-radius: 50%;
  padding: 15px;
}

@media (max-width: 1399px) {

  .wpo-about-section-s3 .about-left-item .about-left-image .image-2 .odometer-item,
  .wpo-about-section-s4 .about-left-item .about-left-image .image-2 .odometer-item {
    left: 50%;
  }
}

@media (max-width: 1199px) {

  .wpo-about-section-s3 .about-left-item .about-left-image .image-2 .odometer-item,
  .wpo-about-section-s4 .about-left-item .about-left-image .image-2 .odometer-item {
    padding: 10px;
  }
}

@media (max-width: 991px) {

  .wpo-about-section-s3 .about-left-item .about-left-image .image-2 .odometer-item,
  .wpo-about-section-s4 .about-left-item .about-left-image .image-2 .odometer-item {
    position: unset;
    transform: none;
    margin-top: 30px;
  }
}

.wpo-about-section-s3 .about-left-item .about-left-image .image-2 .odometer-item .odometer-border,
.wpo-about-section-s4 .about-left-item .about-left-image .image-2 .odometer-item .odometer-border {
  padding: 15px;
  width: 250px;
  height: 250px;
  background-color: #215153;
  border-radius: 50%;
}

@media (max-width: 1199px) {

  .wpo-about-section-s3 .about-left-item .about-left-image .image-2 .odometer-item .odometer-border,
  .wpo-about-section-s4 .about-left-item .about-left-image .image-2 .odometer-item .odometer-border {
    width: 190px;
    height: 190px;
    padding: 10px;
  }
}

@media (max-width: 991px) {

  .wpo-about-section-s3 .about-left-item .about-left-image .image-2 .odometer-item .odometer-border,
  .wpo-about-section-s4 .about-left-item .about-left-image .image-2 .odometer-item .odometer-border {
    margin: 0 auto;
  }
}

.wpo-about-section-s3 .about-left-item .about-left-image .image-2 .odometer-item .odometer-border .grid,
.wpo-about-section-s4 .about-left-item .about-left-image .image-2 .odometer-item .odometer-border .grid {
  width: 220px;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 50%;
  border: 1px solid #fff;
}

@media (max-width: 1199px) {

  .wpo-about-section-s3 .about-left-item .about-left-image .image-2 .odometer-item .odometer-border .grid,
  .wpo-about-section-s4 .about-left-item .about-left-image .image-2 .odometer-item .odometer-border .grid {
    width: 170px;
    height: 170px;
  }
}

.wpo-about-section-s3 .about-left-item .about-left-image .image-2 .odometer-item .odometer-border .grid h3,
.wpo-about-section-s4 .about-left-item .about-left-image .image-2 .odometer-item .odometer-border .grid h3 {
  margin: 0;
  font-family: "Marcellus";
  color: #fff;
  font-size: 100px;
  font-weight: 400;
  line-height: 80px;
}

@media (max-width: 1199px) {

  .wpo-about-section-s3 .about-left-item .about-left-image .image-2 .odometer-item .odometer-border .grid h3,
  .wpo-about-section-s4 .about-left-item .about-left-image .image-2 .odometer-item .odometer-border .grid h3 {
    font-size: 60px;
    line-height: 60px;
  }
}

@media (max-width: 767px) {

  .wpo-about-section-s3 .about-left-item .about-left-image .image-2 .odometer-item .odometer-border .grid h3,
  .wpo-about-section-s4 .about-left-item .about-left-image .image-2 .odometer-item .odometer-border .grid h3 {
    font-size: 40px;
  }
}

.wpo-about-section-s3 .about-left-item .about-left-image .image-2 .odometer-item .odometer-border .grid h3 span,
.wpo-about-section-s4 .about-left-item .about-left-image .image-2 .odometer-item .odometer-border .grid h3 span {
  font-family: "Marcellus";
}

.wpo-about-section-s3 .about-left-item .about-left-image .image-2 .odometer-item .odometer-border .grid h3+p,
.wpo-about-section-s4 .about-left-item .about-left-image .image-2 .odometer-item .odometer-border .grid h3+p {
  margin: 0;
  font-family: "Marcellus";
  color: #fff;
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  text-align: center;
  max-width: 105px;
}

@media (max-width: 1199px) {

  .wpo-about-section-s3 .about-left-item .about-left-image .image-2 .odometer-item .odometer-border .grid h3+p,
  .wpo-about-section-s4 .about-left-item .about-left-image .image-2 .odometer-item .odometer-border .grid h3+p {
    font-size: 18px;
    line-height: 25px;
  }
}

@media (max-width: 575px) {

  .wpo-about-section-s3 .about-left-item .about-left-image .image-2 .odometer-item .odometer-border .grid h3+p,
  .wpo-about-section-s4 .about-left-item .about-left-image .image-2 .odometer-item .odometer-border .grid h3+p {
    font-size: 16px;
  }
}

.wpo-about-section-s3 .about-left-item .about-left-image .image-2 .odometer-item .odometer-border .odometer-formatting-mark,
.wpo-about-section-s4 .about-left-item .about-left-image .image-2 .odometer-item .odometer-border .odometer-formatting-mark {
  display: none;
}

.wpo-about-section-s3 .about-bottom,
.wpo-about-section-s4 .about-bottom {
  margin-top: 50px;
}

.wpo-about-section-s3 .about-bottom .client-item,
.wpo-about-section-s4 .about-bottom .client-item {
  display: flex;
  gap: 25px;
  padding-bottom: 50px;
}

@media (max-width: 991px) {

  .wpo-about-section-s3 .about-bottom .client-item,
  .wpo-about-section-s4 .about-bottom .client-item {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }
}

.wpo-about-section-s3 .about-bottom .client-item:last-child,
.wpo-about-section-s4 .about-bottom .client-item:last-child {
  padding-bottom: 0;
}

.wpo-about-section-s3 .about-bottom .client-item .icon,
.wpo-about-section-s4 .about-bottom .client-item .icon {
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  border: 1px solid #CDB091;
  border-radius: 50%;
}

.wpo-about-section-s3 .about-bottom .client-item .text .info h3,
.wpo-about-section-s4 .about-bottom .client-item .text .info h3 {
  margin: 0;
  font-family: "Inter";
  color: #000;
  font-size: 20px;
  font-weight: 400;
  line-height: 32px;
  padding-bottom: 5px;
}

@media (max-width: 575px) {

  .wpo-about-section-s3 .about-bottom .client-item .text .info h3,
  .wpo-about-section-s4 .about-bottom .client-item .text .info h3 {
    font-size: 18px;
  }
}

.wpo-about-section-s3 .about-bottom .client-item .text .info h3 span,
.wpo-about-section-s4 .about-bottom .client-item .text .info h3 span {
  font-family: "Inter";
}

.wpo-about-section-s3 .about-bottom .client-item .text .info p,
.wpo-about-section-s4 .about-bottom .client-item .text .info p {
  margin: 0;
  font-family: "Inter";
  color: #000;
  font-size: 30px;
  font-weight: 400;
  line-height: normal;
  font-family: "Marcellus";
}

@media (max-width: 991px) {

  .wpo-about-section-s3 .about-right-item .about-content,
  .wpo-about-section-s4 .about-right-item .about-content {
    text-align: center;
    margin-top: 30px;
  }
}

.wpo-about-section-s3 .about-right-item .about-content .about-top h2,
.wpo-about-section-s4 .about-right-item .about-content .about-top h2 {
  font-size: 60px;
  line-height: normal;
  font-weight: 400;
  margin-bottom: 30px;
  margin-top: 0;
}

@media (max-width: 1600px) {

  .wpo-about-section-s3 .about-right-item .about-content .about-top h2,
  .wpo-about-section-s4 .about-right-item .about-content .about-top h2 {
    font-size: 50px;
  }
}

@media (max-width: 1399px) {

  .wpo-about-section-s3 .about-right-item .about-content .about-top h2,
  .wpo-about-section-s4 .about-right-item .about-content .about-top h2 {
    font-size: 40px;
  }
}

@media (max-width: 1199px) {

  .wpo-about-section-s3 .about-right-item .about-content .about-top h2,
  .wpo-about-section-s4 .about-right-item .about-content .about-top h2 {
    font-size: 35px;
  }
}

@media (max-width: 575px) {

  .wpo-about-section-s3 .about-right-item .about-content .about-top h2,
  .wpo-about-section-s4 .about-right-item .about-content .about-top h2 {
    margin-bottom: 10px;
  }
}

@media (max-width: 425px) {

  .wpo-about-section-s3 .about-right-item .about-content .about-top h2,
  .wpo-about-section-s4 .about-right-item .about-content .about-top h2 {
    font-size: 27px;
  }
}

.wpo-about-section-s3 .about-right-item .about-content .about-top p,
.wpo-about-section-s4 .about-right-item .about-content .about-top p {
  font-size: 20px;
  font-weight: 400;
  line-height: 32px;
  max-width: 660px;
}

@media (max-width: 991px) {

  .wpo-about-section-s3 .about-right-item .about-content .about-top p,
  .wpo-about-section-s4 .about-right-item .about-content .about-top p {
    font-size: 18px;
    line-height: 30px;
  }
}

@media (max-width: 575px) {

  .wpo-about-section-s3 .about-right-item .about-content .about-top p,
  .wpo-about-section-s4 .about-right-item .about-content .about-top p {
    font-size: 16px;
    line-height: 25px;
  }
}

/* 7.3 wpo-service-section-s3 */
.wpo-service-section-s3 {
  background-color: #001026;
}

.wpo-service-section-s3 .wpo-section-title-s2 h2 {
  color: #fff;
}

@media (max-width: 1550px) {
  .wpo-service-section-s3 .wpo-section-title-s2 h2 {
    font-size: 90px;
  }
}

@media (max-width: 1399px) {
  .wpo-service-section-s3 .wpo-section-title-s2 h2 {
    font-size: 70px;
  }
}

@media (max-width: 1199px) {
  .wpo-service-section-s3 .wpo-section-title-s2 h2 {
    font-size: 60px;
  }
}

@media (max-width: 575px) {
  .wpo-service-section-s3 .wpo-section-title-s2 h2 {
    font-size: 52px;
  }
}

@media (max-width: 425px) {
  .wpo-service-section-s3 .wpo-section-title-s2 h2 {
    font-size: 35px;
  }
}

.wpo-service-section-s3 .wpo-section-title-s2 p {
  padding-top: 22px;
  color: #fff;
  margin-bottom: 0;
  padding-top: 0;
}

@media (max-width: 1399px) {
  .wpo-service-section-s3 .wpo-section-title-s2 p {
    padding-top: 0;
  }
}

.wpo-service-section-s3 .wpo-section-title-s2 .title-btn {
  padding-top: 50px;
}

@media (max-width: 1399px) {
  .wpo-service-section-s3 .wpo-section-title-s2 .title-btn {
    padding-top: 20px;
  }
}

.wpo-service-section-s3 .wpo-section-title-s2 .title-btn .theme-btn-s2 {
  color: #fff;
  border-color: #fff;
}

.wpo-service-section-s3 .wpo-section-title-s2 .title-btn .theme-btn-s2::before {
  background-color: #CDB091;
}

.wpo-service-section-s3 .wpo-section-title-s2 .title-btn .theme-btn-s2:hover {
  border-color: #CDB091;
}

.wpo-service-section-s3 .service-all-item {
  margin-left: 50px;
}

@media (max-width: 991px) {
  .wpo-service-section-s3 .service-all-item {
    margin-left: 0;
  }
}

.wpo-service-section-s3 .service-card .text h2 a {
  color: #fff;
}

@media (max-width: 991px) {
  .wpo-service-section-s3 .service-card .text h2 a {
    margin-bottom: 0;
  }
}

.wpo-service-section-s3 .service-card .text h2 a:hover {
  color: #CDB091;
}

@media (max-width: 991px) {
  .wpo-service-section-s3 .service-card {
    padding: 20px 0;
  }
}

@media (max-width: 575px) {
  .wpo-service-section-s3 .service-card {
    padding: 14px 0;
  }
}

@media (max-width: 991px) {
  .wpo-service-section-s3 .service-card .text {
    display: flex;
  }
}

.wpo-service-section-s3 .service-card .text a i {
  font-size: 25px;
  color: #fff;
  transition: all ease 0.4s;
}

@media (max-width: 991px) {
  .wpo-service-section-s3 .service-card .text a i {
    font-size: 20px;
  }
}

@media (max-width: 575px) {
  .wpo-service-section-s3 .service-card .text a i {
    font-size: 16px;
  }
}

.wpo-service-section-s3 .service-card .text a:hover i {
  color: #CDB091;
}

/* 7.4 wpo-case-section-s4 */

.wpo-case-section-s4 .case-item {
  position: relative;
  margin-bottom: 30px;
}

.wpo-case-section-s4 .case-item::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 16, 38, 0) 0%, rgb(0, 16, 38) 100%);
}

.wpo-case-section-s4 .case-item .case-text {
  position: absolute;
  bottom: 25px;
  left: 30px;
  transition: all ease-in-out 0.4s;
}

@media (max-width: 1399px) {
  .wpo-case-section-s4 .case-item .case-text {
    left: 15px;
  }
}

.wpo-case-section-s4 .case-item .case-text h3 {
  margin: 0;
}

.wpo-case-section-s4 .case-item .case-text h3 a {
  font-size: 40px;
  line-height: normal;
  font-weight: 400;
  color: #fff;
  transition: all ease 0.4s;
}

@media (max-width: 1550px) {
  .wpo-case-section-s4 .case-item .case-text h3 a {
    font-size: 35px;
  }
}

@media (max-width: 1399px) {
  .wpo-case-section-s4 .case-item .case-text h3 a {
    font-size: 30px;
  }
}

@media (max-width: 1199px) {
  .wpo-case-section-s4 .case-item .case-text h3 a {
    font-size: 25px;
  }
}

@media (max-width: 425px) {
  .wpo-case-section-s4 .case-item .case-text h3 a {
    font-size: 20px;
  }
}

.wpo-case-section-s4 .case-item .case-text h3 a:hover {
  color: #CDB091;
}

.wpo-case-section-s4 .case-item:hover .case-text {
  bottom: 40px;
}

.wpo-case-section-s4 .col:last-child .case-item {
  margin-bottom: 0;
}

/* 7.5 wpo-testimonial-section-s4 */
.wpo-testimonial-section-s4 {
  position: relative;
  padding-bottom: 0;
  padding-top: 290px;
  overflow: hidden;
}

@media (max-width: 1500px) {
  .wpo-testimonial-section-s4 {
    padding-top: 120px;
  }
}

@media (max-width: 991px) {
  .wpo-testimonial-section-s4 {
    padding-top: 90px;
  }
}

@media (max-width: 767px) {
  .wpo-testimonial-section-s4 {
    padding-top: 60px;
  }
}

.wpo-testimonial-section-s4 .testimonial-wrapper {
  background-color: #001026;
  max-height: 800px;
}

@media (max-width: 991px) {
  .wpo-testimonial-section-s4 .testimonial-wrapper {
    max-height: 100%;
  }
}

.wpo-testimonial-section-s4 .wpo-testimonial-wrap-s4 {
  position: relative;
  z-index: 91;
}

.wpo-testimonial-section-s4 .wpo-testimonial-wrap-s4 .wpo-testimonial-items {
  max-width: 850px;
  padding-top: 120px;
}

@media (max-width: 1399px) {
  .wpo-testimonial-section-s4 .wpo-testimonial-wrap-s4 .wpo-testimonial-items {
    max-width: 630px;
  }
}

@media (max-width: 1199px) {
  .wpo-testimonial-section-s4 .wpo-testimonial-wrap-s4 .wpo-testimonial-items {
    max-width: 510px;
  }
}

@media (max-width: 991px) {
  .wpo-testimonial-section-s4 .wpo-testimonial-wrap-s4 .wpo-testimonial-items {
    padding-top: 90px;
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .wpo-testimonial-section-s4 .wpo-testimonial-wrap-s4 .wpo-testimonial-items {
    padding-top: 60px;
  }
}

.wpo-testimonial-section-s4 .wpo-testimonial-wrap-s4 .wpo-testimonial-content .icon {
  margin-bottom: 40px;
}

@media (max-width: 575px) {
  .wpo-testimonial-section-s4 .wpo-testimonial-wrap-s4 .wpo-testimonial-content .icon {
    margin-bottom: 20px;
  }
}

@media (max-width: 991px) {
  .wpo-testimonial-section-s4 .wpo-testimonial-wrap-s4 .wpo-testimonial-content .icon img {
    margin: 0 auto;
  }
}

@media (max-width: 575px) {
  .wpo-testimonial-section-s4 .wpo-testimonial-wrap-s4 .wpo-testimonial-content .icon img {
    max-width: 40px;
    width: 100%;
  }
}

@media (max-width: 991px) {
  .wpo-testimonial-section-s4 .wpo-testimonial-wrap-s4 .wpo-testimonial-content .wpo-testimonial-text-slide {
    text-align: center;
  }
}

.wpo-testimonial-section-s4 .wpo-testimonial-wrap-s4 .wpo-testimonial-content .wpo-testimonial-text-slide h2 {
  font-style: normal;
  font-weight: 400;
  font-size: 50px;
  line-height: normal;
  color: #fff;
  margin: 0;
  margin-bottom: 10px;
}

@media (max-width: 1399px) {
  .wpo-testimonial-section-s4 .wpo-testimonial-wrap-s4 .wpo-testimonial-content .wpo-testimonial-text-slide h2 {
    font-size: 35px;
  }
}

@media (max-width: 1199px) {
  .wpo-testimonial-section-s4 .wpo-testimonial-wrap-s4 .wpo-testimonial-content .wpo-testimonial-text-slide h2 {
    font-size: 30px;
  }
}

@media (max-width: 991px) {
  .wpo-testimonial-section-s4 .wpo-testimonial-wrap-s4 .wpo-testimonial-content .wpo-testimonial-text-slide h2 {
    font-size: 30px;
  }
}

@media (max-width: 575px) {
  .wpo-testimonial-section-s4 .wpo-testimonial-wrap-s4 .wpo-testimonial-content .wpo-testimonial-text-slide h2 {
    font-size: 20px;
  }
}

.wpo-testimonial-section-s4 .wpo-testimonial-wrap-s4 .wpo-testimonial-content .wpo-testimonial-text-slide .wpo-testimonial-text-btm {
  margin-top: 80px;
  display: flex;
  align-items: center;
  padding-left: 5px;
  padding-bottom: 5px;
  text-align: start;
}

@media (max-width: 1199px) {
  .wpo-testimonial-section-s4 .wpo-testimonial-wrap-s4 .wpo-testimonial-content .wpo-testimonial-text-slide .wpo-testimonial-text-btm {
    margin-top: 50px;
  }
}

@media (max-width: 991px) {
  .wpo-testimonial-section-s4 .wpo-testimonial-wrap-s4 .wpo-testimonial-content .wpo-testimonial-text-slide .wpo-testimonial-text-btm {
    justify-content: center;
  }
}

@media (max-width: 575px) {
  .wpo-testimonial-section-s4 .wpo-testimonial-wrap-s4 .wpo-testimonial-content .wpo-testimonial-text-slide .wpo-testimonial-text-btm {
    margin-top: 20px;
  }
}

.wpo-testimonial-section-s4 .wpo-testimonial-wrap-s4 .wpo-testimonial-content .wpo-testimonial-text-slide .wpo-testimonial-text-btm .wpo-testimonial-text-btm-img {
  border-radius: 50%;
  margin-right: 18px;
}

.wpo-testimonial-section-s4 .wpo-testimonial-wrap-s4 .wpo-testimonial-content .wpo-testimonial-text-slide .wpo-testimonial-text-btm .wpo-testimonial-text-btm-img img {
  border-radius: 50%;
}

@media (max-width: 991px) {
  .wpo-testimonial-section-s4 .wpo-testimonial-wrap-s4 .wpo-testimonial-content .wpo-testimonial-text-slide .wpo-testimonial-text-btm .wpo-testimonial-text-btm-img img {
    max-width: 80px;
    width: 100%;
  }
}

.wpo-testimonial-section-s4 .wpo-testimonial-wrap-s4 .wpo-testimonial-content .wpo-testimonial-text-slide .wpo-testimonial-text-btm h3 {
  font-weight: 400;
  font-size: 35px;
  line-height: normal;
  color: #fff;
  margin: 0;
  margin-bottom: 10px;
}

@media (max-width: 1199px) {
  .wpo-testimonial-section-s4 .wpo-testimonial-wrap-s4 .wpo-testimonial-content .wpo-testimonial-text-slide .wpo-testimonial-text-btm h3 {
    font-size: 30px;
  }
}

@media (max-width: 991px) {
  .wpo-testimonial-section-s4 .wpo-testimonial-wrap-s4 .wpo-testimonial-content .wpo-testimonial-text-slide .wpo-testimonial-text-btm h3 {
    font-size: 25px;
    margin-bottom: 0;
  }
}

@media (max-width: 575px) {
  .wpo-testimonial-section-s4 .wpo-testimonial-wrap-s4 .wpo-testimonial-content .wpo-testimonial-text-slide .wpo-testimonial-text-btm h3 {
    font-size: 20px;
  }
}

.wpo-testimonial-section-s4 .wpo-testimonial-wrap-s4 .wpo-testimonial-content .wpo-testimonial-text-slide .wpo-testimonial-text-btm span {
  font-weight: 400;
  font-size: 20px;
  line-height: normal;
  color: #fff;
}

@media (max-width: 1199px) {
  .wpo-testimonial-section-s4 .wpo-testimonial-wrap-s4 .wpo-testimonial-content .wpo-testimonial-text-slide .wpo-testimonial-text-btm span {
    font-size: 18px;
  }
}

@media (max-width: 991px) {
  .wpo-testimonial-section-s4 .wpo-testimonial-wrap-s4 .wpo-testimonial-content .wpo-testimonial-text-slide .wpo-testimonial-text-btm span {
    font-size: 16px;
  }
}

@media (max-width: 575px) {
  .wpo-testimonial-section-s4 .wpo-testimonial-wrap-s4 .wpo-testimonial-content .wpo-testimonial-text-slide .wpo-testimonial-text-btm span {
    font-size: 14px;
  }
}

.wpo-testimonial-section-s4 .wpo-testimonial-wrap-s4 .testimonial-left {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  flex-direction: column;
  margin: 0 auto;
  top: auto;
  bottom: 200px;
}

@media (max-width: 1500px) {
  .wpo-testimonial-section-s4 .wpo-testimonial-wrap-s4 .testimonial-left {
    bottom: 0;
  }
}

@media (max-width: 991px) {
  .wpo-testimonial-section-s4 .wpo-testimonial-wrap-s4 .testimonial-left {
    justify-content: center;
  }
}

.wpo-testimonial-section-s4 .wpo-testimonial-wrap-s4 .testimonial-left .testimonial-img {
  position: relative;
}

@media (max-width: 991px) {
  .wpo-testimonial-section-s4 .wpo-testimonial-wrap-s4 .testimonial-left .testimonial-img {
    text-align: center;
    margin-top: 50px;
  }

  .wpo-testimonial-section-s4 .wpo-testimonial-wrap-s4 .testimonial-left .testimonial-img img {
    margin: 0 auto;
  }
}

@media (max-width: 991px) and (max-width: 1510px) {
  .wpo-testimonial-section-s4 .wpo-testimonial-wrap-s4 .testimonial-left .testimonial-img img {
    max-width: 480px;
  }
}

@media (max-width: 991px) and (max-width: 575px) {
  .wpo-testimonial-section-s4 .wpo-testimonial-wrap-s4 .testimonial-left .testimonial-img img {
    max-width: 280px;
  }
}

.wpo-testimonial-section-s4 .wpo-testimonial-wrap-s4 .slick-arrow {
  position: absolute;
  top: auto;
  left: auto;
  right: 0;
  bottom: 5px;
  transition: all 0.3s ease-in-out;
  z-index: 1;
}

@media (max-width: 1399px) {
  .wpo-testimonial-section-s4 .wpo-testimonial-wrap-s4 .slick-arrow {
    bottom: -30px;
  }
}

@media (max-width: 1199px) {
  .wpo-testimonial-section-s4 .wpo-testimonial-wrap-s4 .slick-arrow {
    bottom: 0;
  }
}

@media (max-width: 991px) {
  .wpo-testimonial-section-s4 .wpo-testimonial-wrap-s4 .slick-arrow {
    display: none;
  }
}

.wpo-testimonial-section-s4 .wpo-testimonial-wrap-s4 .slick-arrow.slick-prev,
.wpo-testimonial-section-s4 .wpo-testimonial-wrap-s4 .slick-arrow.slick-next {
  right: 80px;
}

.wpo-testimonial-section-s4 .wpo-testimonial-wrap-s4 .slick-arrow.slick-prev::after,
.wpo-testimonial-section-s4 .wpo-testimonial-wrap-s4 .slick-arrow.slick-next::after {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  content: "\e629";
  font-family: 'themify';
  font-size: 25px;
  color: #B4B4B4;
  transition: all 0.3s ease-in-out;
}

.wpo-testimonial-section-s4 .wpo-testimonial-wrap-s4 .slick-arrow.slick-prev::before,
.wpo-testimonial-section-s4 .wpo-testimonial-wrap-s4 .slick-arrow.slick-next::before {
  display: none;
}

.wpo-testimonial-section-s4 .wpo-testimonial-wrap-s4 .slick-arrow.slick-next {
  right: 0;
}

.wpo-testimonial-section-s4 .wpo-testimonial-wrap-s4 .slick-arrow.slick-next::after {
  content: "\e628";
}

.wpo-testimonial-section-s4 .wpo-testimonial-wrap-s4 .slick-arrow.slick-next::before {
  display: none;
}

.wpo-testimonial-section-s4 .wpo-testimonial-wrap-s4 .slick-arrow:hover::after {
  color: #CDB091;
}

.wpo-testimonial-section-s4 .wpo-testimonial-wrap-s4 .slick-dots {
  text-align: center;
  bottom: -40px;
  display: none;
}

@media (max-width: 991px) {
  .wpo-testimonial-section-s4 .wpo-testimonial-wrap-s4 .slick-dots {
    display: block;
  }
}

.wpo-testimonial-section-s4 .wpo-testimonial-wrap-s4 .slick-dots li {
  width: unset;
  height: unset;
}

.wpo-testimonial-section-s4 .wpo-testimonial-wrap-s4 .slick-dots li button {
  background: #D9D9D9;
  margin-right: 5px;
  width: 10px;
  height: 10px;
  padding: 0;
  border-radius: 50%;
}

.wpo-testimonial-section-s4 .wpo-testimonial-wrap-s4 .slick-dots li button::before {
  display: none;
}

.wpo-testimonial-section-s4 .wpo-testimonial-wrap-s4 .slick-dots li.slick-active button {
  background: #215153;
}

.wpo-testimonial-section-s4 .wpo-testimonial-wrap-s4 .slick-dots li.slick-active button::after {
  position: absolute;
  left: -3px;
  top: -3px;
  width: 16px;
  height: 16px;
  content: "";
  border: 1px solid #215153;
  border-radius: 50%;
}

/* 7.6 wpo-faq-section */
.wpo-faq-section {
  position: relative;
  z-index: 1;
}

.wpo-faq-section .wpo-faq-wrap {
  max-width: 1520px;
  margin: 0 auto;
}

@media (max-width: 991px) {
  .wpo-faq-section img {
    width: 100%;
  }
}

.wpo-faq-section .wpo-section-title {
  margin-top: 0;
  margin-bottom: 190px;
}

@media (max-width: 991px) {
  .wpo-faq-section .wpo-section-title {
    margin-bottom: 60px;
  }
}

.wpo-faq-section .wpo-faq-items {
  margin-left: 40px;
}

@media (max-width: 1199px) {
  .wpo-faq-section .wpo-faq-items {
    margin-left: 0;
  }
}

@media (max-width: 991px) {
  .wpo-faq-section .wpo-faq-items {
    margin-top: 40px;
  }
}

@media (max-width: 991px) {
  .wpo-faq-section .wpo-faq-box {
    text-align: center;
  }
}

.wpo-faq-wrap .wpo-faq-top-items {
  max-width: 950px;
  padding-bottom: 50px;
}

@media (max-width: 991px) {
  .wpo-faq-wrap .wpo-faq-top-items {
    text-align: center;
    padding-bottom: 30px;
  }
}

.wpo-faq-wrap .wpo-faq-top-items h2 {
  margin: 0;
  font-size: 60px;
  font-weight: 400;
  line-height: normal;
  padding-bottom: 25px;
}

@media (max-width: 1199px) {
  .wpo-faq-wrap .wpo-faq-top-items h2 {
    font-size: 45px;
  }
}

@media (max-width: 575px) {
  .wpo-faq-wrap .wpo-faq-top-items h2 {
    font-size: 35px;
    padding: 0;
  }
}

.wpo-faq-wrap .wpo-faq-top-items p {
  margin: 0;
  font-size: 25px;
  font-weight: 400;
  line-height: 40px;
  color: #525252;
}

@media (max-width: 1199px) {
  .wpo-faq-wrap .wpo-faq-top-items p {
    font-size: 22px;
    line-height: 33px;
  }
}

@media (max-width: 991px) {
  .wpo-faq-wrap .wpo-faq-top-items p {
    font-size: 18px;
    line-height: 30px;
  }
}

@media (max-width: 575px) {
  .wpo-faq-wrap .wpo-faq-top-items p {
    font-size: 16px;
    line-height: 26px;
  }
}

.wpo-faq-wrap .accordion-item {
  border: 0;
  border-radius: 0;
  border-left: 1px solid #DCDCDC;
  border-top: 1px solid #DCDCDC;
  border-right: 1px solid #DCDCDC;
  box-shadow: none;
  padding-left: 0;
  margin-bottom: 0;
}

.wpo-faq-wrap .accordion-item h3 {
  margin-top: 0;
}

.wpo-faq-wrap .accordion-item:last-child {
  margin-bottom: 0;
  border-bottom: 1px solid #DCDCDC;
}

.wpo-faq-wrap .accordion-item .accordion-body {
  padding-top: 30px;
  padding-bottom: 30px;
}

@media (max-width: 1399px) {
  .wpo-faq-wrap .accordion-item .accordion-body {
    padding-left: 25px;
    padding-right: 25px;
  }
}

@media (max-width: 575px) {
  .wpo-faq-wrap .accordion-item .accordion-body {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.wpo-faq-wrap .accordion-item .accordion-body p {
  margin-bottom: 0;
  color: #676767;
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
}

@media (max-width: 575px) {
  .wpo-faq-wrap .accordion-item .accordion-body p {
    font-size: 16px;
    line-height: 25px;
  }
}

.wpo-faq-wrap .accordion-item .accordion-button:not(.collapsed) {
  box-shadow: none;
  background-color: #215153;
  color: #fff;
}

.wpo-faq-wrap .accordion-item .accordion-button:not(.collapsed)::after {
  color: #fff;
}

.wpo-faq-wrap .accordion-item button {
  padding: 30px 40px;
  border: 0;
  border-radius: 0;
  font-family: "Marcellus";
  color: #001635;
  background-color: #F9F9F9;
  font-size: 30px;
  font-weight: 400;
  line-height: normal;
}

@media (max-width: 1399px) {
  .wpo-faq-wrap .accordion-item button {
    font-size: 24px;
    padding: 20px 25px;
  }
}

@media (max-width: 575px) {
  .wpo-faq-wrap .accordion-item button {
    font-size: 20px;
    padding: 20px 15px;
  }
}

.wpo-faq-wrap .accordion-item button::after {
  background: none;
  font-family: "themify";
  content: "\e622";
  font-size: 16px;
  transform: rotate(0deg);
  font-weight: 700;
  color: #525252;
}

.wpo-faq-wrap .accordion-item button.collapsed {
  color: #001635;
}

.wpo-faq-wrap .accordion-item button.collapsed::after {
  content: "\e61a";
}

.wpo-faq-wrap .accordion-item button:focus {
  box-shadow: none;
  outline: none;
  border-color: #F5F3F3;
}

.wpo-faq-wrap .accordion-item .accordion-collapse {
  border: 0;
}

.wpo-faq-wrap .accordion-button {
  background: transparent;
}

/* 7.2 wpo-about-section-s4 style-4*/
.wpo-about-section-s4.style-4 .about-top-title h2 {
  font-size: 60px;
  line-height: normal;
  font-weight: 400;
  margin-bottom: 30px;
}

@media (max-width: 1600px) {
  .wpo-about-section-s4.style-4 .about-top-title h2 {
    font-size: 50px;
  }
}

@media (max-width: 1399px) {
  .wpo-about-section-s4.style-4 .about-top-title h2 {
    font-size: 40px;
  }
}

@media (max-width: 991px) {
  .wpo-about-section-s4.style-4 .about-top-title h2 {
    font-size: 35px;
    margin-bottom: 15px;
  }
}

@media (max-width: 575px) {
  .wpo-about-section-s4.style-4 .about-top-title h2 {
    margin-bottom: 10px;
  }
}

@media (max-width: 575px) {
  .wpo-about-section-s4.style-4 .about-top-title h2 {
    font-size: 27px;
  }
}

.wpo-about-section-s4.style-4 .about-content {
  margin-top: 60px;
}

@media (max-width: 991px) {
  .wpo-about-section-s4.style-4 .about-content {
    margin-top: 30px;
  }
}

.wpo-about-section-s4.style-4 .about-content p {
  font-size: 20px;
  font-weight: 400;
  line-height: 32px;
  color: #000;
  margin-bottom: 30px;
}

@media (max-width: 991px) {
  .wpo-about-section-s4.style-4 .about-content p {
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 24px;
  }
}

@media (max-width: 575px) {
  .wpo-about-section-s4.style-4 .about-content p {
    font-size: 16px;
    line-height: 27px;
    margin-bottom: 15px;
  }
}

@media (max-width: 991px) {
  .wpo-about-section-s4.style-4 .about-right {
    margin-top: 50px;
  }
}

@media (max-width: 575px) {
  .wpo-about-section-s4.style-4 .about-right {
    margin-top: 30px;
  }
}

.wpo-about-section-s4.style-4 .about-bottom {
  display: flex;
  gap: 70px;
  margin-top: 70px;
}

@media (max-width: 1199px) {
  .wpo-about-section-s4.style-4 .about-bottom {
    gap: 30px;
  }
}

@media (max-width: 425px) {
  .wpo-about-section-s4.style-4 .about-bottom {
    flex-direction: column;
  }
}

@media (max-width: 991px) {
  .wpo-about-section-s4.style-4 .about-bottom {
    justify-content: center;
    margin-top: 50px;
  }
}

.wpo-about-section-s4.style-4 .about-bottom .client-item {
  padding-bottom: 0;
}

@media (max-width: 1199px) {
  .wpo-about-section-s4.style-4 .about-bottom .client-item .text .info p {
    font-size: 24px;
  }
}

/* 7.2 wpo-case-section style-2*/
.wpo-case-section.style-2 {
  background-color: transparent;
}

.wpo-case-section.style-2 .wpo-section-title-s2 h2,
.wpo-case-section.style-2 .wpo-section-title-s2 p {
  color: #000;
}

.wpo-case-section.style-2 .wpo-section-title-s2 .title-btn .theme-btn-s2 {
  color: #000;
  border-color: #000;
}

.wpo-case-section.style-2 .wpo-section-title-s2 .title-btn .theme-btn-s2 i {
  color: #000;
}

.wpo-case-section.style-2 .case-item .case-text h3 a {
  color: #000;
}

.wpo-case-section.style-2 .case-item .case-text h3 a:hover {
  color: #CDB091;
}

/*======================================
8. wpo-practice-single
=======================================*/
.practice-single-content {
  margin-left: 40px;
}

@media (max-width: 1399px) {
  .practice-single-content {
    margin-left: 20px;
  }
}

@media (max-width: 991px) {
  .practice-single-content {
    margin-left: 0;
  }
}

.practice-single-content .title-image {
  margin-bottom: 30px;
}

.practice-single-content .title-image img {
  width: 100%;
}

.practice-single-content h2 {
  font-size: 80px;
  font-weight: 400;
  line-height: normal;
  text-transform: capitalize;
  margin-bottom: 40px;
  color: #000;
}

@media (max-width: 1500px) {
  .practice-single-content h2 {
    font-size: 60px;
  }
}

@media (max-width: 991px) {
  .practice-single-content h2 {
    font-size: 45px;
    margin-bottom: 20px;
  }
}

@media (max-width: 575px) {
  .practice-single-content h2 {
    font-size: 33px;
  }
}

.practice-single-content p {
  color: #000;
  font-size: 20px;
  font-weight: 400;
  line-height: 32px;
  margin-bottom: 30px;
}

@media (max-width: 991px) {
  .practice-single-content p {
    font-size: 18px;
    line-height: 29px;
  }
}

@media (max-width: 575px) {
  .practice-single-content p {
    font-size: 16px;
    line-height: 26px;
  }
}

.practice-single-content .practice-content h3 {
  font-size: 40px;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 30px;
}

@media (max-width: 1399px) {
  .practice-single-content .practice-content h3 {
    font-size: 35px;
  }
}

@media (max-width: 991px) {
  .practice-single-content .practice-content h3 {
    font-size: 30px;
    margin-bottom: 20px;
  }
}

@media (max-width: 425px) {
  .practice-single-content .practice-content h3 {
    font-size: 26px;
  }
}

.practice-single-content .practice-content ul {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
}

.practice-single-content .practice-content ul li {
  font-size: 20px;
  line-height: 36px;
  font-weight: 400;
  color: #666666;
  padding-bottom: 25px;
}

@media (max-width: 991px) {
  .practice-single-content .practice-content ul li {
    font-size: 18px;
    line-height: 32px;
    padding-bottom: 15px;
  }
}

@media (max-width: 575px) {
  .practice-single-content .practice-content ul li {
    font-size: 16px;
    line-height: 26px;
  }
}

.practice-single-content .practice-content ul li span {
  font-family: "Marcellus";
  font-size: 30px;
  line-height: normal;
  font-weight: 400;
  color: #000;
}

@media (max-width: 991px) {
  .practice-single-content .practice-content ul li span {
    font-size: 25px;
  }
}

@media (max-width: 575px) {
  .practice-single-content .practice-content ul li span {
    font-size: 20px;
  }
}

.practice-single-content .practice-content ul li:last-child {
  padding-bottom: 0;
}

.practice-single-content .image-wrap {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
  margin-bottom: 30px;
}

@media (max-width: 991px) {
  .practice-single-content .image-wrap {
    gap: 20px;
  }
}

@media (max-width: 575px) {
  .practice-single-content .image-wrap {
    flex-direction: column;
  }
}

@media (max-width: 575px) {
  .practice-single-content .image-wrap .image {
    width: 100%;
  }
}

.practice-single-content .image-wrap .image img {
  width: 100%;
}

.practice-single-content .wpo-faq-wrap {
  padding-top: 100px;
}

@media (max-width: 991px) {
  .practice-single-content .wpo-faq-wrap {
    padding-top: 50px;
  }
}

.practice-single-content .wpo-faq-wrap .wpo-faq-top-items {
  max-width: unset;
}

@media (max-width: 991px) {
  .practice-single-content .wpo-faq-wrap .wpo-faq-top-items {
    text-align: start;
  }
}

.practice-single-content .wpo-faq-wrap .wpo-faq-top-items h2 {
  font-size: 60px;
  line-height: normal;
  font-weight: 400;
  max-width: 775px;
  padding-bottom: 20px;
}

@media (max-width: 991px) {
  .practice-single-content .wpo-faq-wrap .wpo-faq-top-items h2 {
    font-size: 45px;
  }
}

@media (max-width: 575px) {
  .practice-single-content .wpo-faq-wrap .wpo-faq-top-items h2 {
    font-size: 33px;
    padding-bottom: 10px;
  }
}

.practice-single-content .wpo-faq-wrap .wpo-faq-top-items p {
  color: #525252;
}

/*==========================================
9. wpo-attorney-single
===========================================*/
.attorney-pg-area {
  padding-top: 0;
}

.attorney-pg-area h2 {
  font-weight: 400;
  font-size: 60px;
  line-height: normal;
  color: #000;
  margin-top: 0;
  margin-bottom: 35px;
}

@media (max-width: 1399px) {
  .attorney-pg-area h2 {
    font-size: 45px;
  }
}

@media (max-width: 991px) {
  .attorney-pg-area h2 {
    font-size: 35px;
    margin-bottom: 20px;
  }
}

.attorney-pg-area p {
  font-weight: 400;
  font-size: 20px;
  color: #525252;
}

@media (max-width: 991px) {
  .attorney-pg-area p {
    font-size: 18px;
  }
}

@media (max-width: 575px) {
  .attorney-pg-area p {
    font-size: 16px;
  }
}

.attorney-info-img {
  position: relative;
  z-index: 1;
  min-height: 100%;
}

.attorney-info-img .attorney-info-img-sticky {
  position: sticky;
  top: 0;
}

.attorney-info-img img {
  width: 100%;
}

.attorney-info-all-text {
  padding-left: 70px;
}

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

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

.attorney-info-text {
  padding-top: 60px;
}

.attorney-info-text ul {
  max-width: 720px;
  padding-left: 0;
  margin-bottom: 0;
}

.attorney-info-text ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 400;
  font-size: 30px;
  line-height: normal;
  color: #000;
  margin-bottom: 40px;
  list-style: none;
  font-family: "Marcellus";
}

@media (max-width: 1199px) {
  .attorney-info-text ul li {
    font-size: 25px;
    margin-bottom: 20px;
  }
}

@media (max-width: 575px) {
  .attorney-info-text ul li {
    font-size: 20px;
  }
}

@media (max-width: 425px) {
  .attorney-info-text ul li {
    display: block;
  }
}

.attorney-info-text ul li:last-child {
  margin-bottom: 0;
}

.attorney-info-text ul li span {
  font-size: 25px;
  color: #727272;
  display: inline-block;
  position: relative;
  font-family: "Inter";
  flex-basis: 62%;
}

@media (max-width: 1199px) {
  .attorney-info-text ul li span {
    font-size: 20px;
  }
}

@media (max-width: 575px) {
  .attorney-info-text ul li span {
    font-size: 16px;
  }
}

.attorney-info-text ul li:last-child {
  margin-bottom: 0;
}

.attorney-widget {
  padding-top: 100px;
}

@media (max-width: 991px) {
  .attorney-widget {
    padding-top: 60px;
  }
}

.attorney-exprience-area .exprience-wrap {
  max-width: 930px;
}

.attorney-exprience-area .education-area {
  padding-top: 80px;
}

@media (max-width: 991px) {
  .attorney-exprience-area .education-area {
    padding-top: 60px;
  }
}

.attorney-exprience-area .education-area .education-area {
  max-width: 600px;
}

.attorney-exprience-area .education-area ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.attorney-exprience-area .education-area ul li {
  padding-bottom: 30px;
  position: relative;
  padding-left: 30px;
  font-weight: 400;
  font-size: 20px;
  line-height: normal;
  color: #525252;
}

@media (max-width: 575px) {
  .attorney-exprience-area .education-area ul li {
    font-size: 18px;
    padding-bottom: 20px;
  }
}

.attorney-exprience-area .education-area ul li:before {
  position: absolute;
  left: 0;
  top: 5px;
  content: "\e661";
  font-family: "themify";
  font-size: 14px;
}

.attorney-exprience-area .education-area ul li:last-child {
  padding-bottom: 0;
}

.skills-area {
  padding-top: 100px;
}

@media (max-width: 991px) {
  .skills-area {
    padding-top: 60px;
  }
}

.skills-area .wpo-skill-progress .wpo-progress-single {
  margin-bottom: 30px;
  position: relative;
}

.skills-area .wpo-skill-progress .wpo-progress-single h5 {
  font-weight: 400;
  font-size: 20px;
  line-height: 32px;
  color: #525252;
  font-family: "Inter";
}

@media (max-width: 767px) {
  .skills-area .wpo-skill-progress .wpo-progress-single h5 {
    font-size: 18px;
  }
}

.skills-area .wpo-skill-progress .wpo-progress-single:last-child {
  margin-bottom: 0;
}

.skills-area .wpo-skill-progress .wpo-progress-single .progress {
  background: #edf1ff;
  height: 10px;
  position: relative;
}

.skills-area .wpo-skill-progress .wpo-progress-single .progress .progress-bar {
  background-color: #215153;
}

.skills-area .wpo-skill-progress .progress-number {
  position: absolute;
  right: 0;
  top: 0px;
  font-weight: 400;
  font-size: 20px;
  line-height: 32px;
  color: #525252;
}

@media (max-width: 767px) {
  .skills-area .wpo-skill-progress .progress-number {
    font-size: 18px;
    top: -5px;
  }
}

.wpo-contact-area {
  padding-top: 110px;
}

@media (max-width: 991px) {
  .wpo-contact-area {
    padding-top: 60px;
  }
}

.wpo-contact-area .wpo-contact-title {
  margin-bottom: 40px;
  text-align: start;
}

.wpo-contact-area .wpo-contact-title p {
  max-width: 600px;
}

.wpo-contact-area .theme-btn {
  border-radius: 0;
  outline: 0;
  border: 0;
  background: #215153;
  color: #fff;
  padding: 20px 35px;
  margin-top: 15px;
}

.wpo-contact-area .theme-btn::before {
  background-color: #CDB091;
}

@media (max-width: 767px) {
  .wpo-contact-area .theme-btn {
    padding: 16px 30px;
  }
}

.wpo-contact-area .quote-form .form-control {
  height: 55px;
  border: 0;
  margin-bottom: 20px;
  padding: 15px;
  background: #ededed;
  background: #F3F3F3;
  color: #1E2E3E;
}

.wpo-contact-area .quote-form .form-control:focus {
  outline: none;
  box-shadow: none;
  border-color: #215153;
}

.wpo-contact-area .quote-form textarea.form-control {
  height: 170px;
}

.wpo-contact-area .quote-form select.form-control {
  -webkit-appearance: none;
  -o-appearance: none;
  appearance: none;
  -moz-appearance: none;
  background: #F3F3F3 url(../images/select-icon2.png) no-repeat calc(100% - 15px) center;
  position: relative;
  color: #1E2E3E;
}

.quote-form .form-control::-moz-placeholder {
  color: #1E2E3E;
}

.quote-form .form-control::placeholder {
  color: #1E2E3E;
}

.half-col {
  float: left;
  width: 50%;
  padding: 0 15px 5px;
  padding-left: 0;
}

@media (max-width: 575px) {
  .half-col {
    width: 100%;
  }
}

.full-col {
  padding: 0 15px 5px;
  padding-left: 0;
}

.exprience-area {
  padding-top: 60px;
}

/*--------------------------------------------------------------
11. wpo-shop-page
--------------------------------------------------------------*/
.shop-section .shop-grids {
  margin: 0 -15px;
}

@media (max-width: 767px) {
  .shop-section .shop-grids {
    margin: 0 -7px;
  }
}

.shop-section .grid {
  width: calc(33.33% - 30px);
  float: left;
  margin: 0 15px 30px;
}

@media (max-width: 991px) {
  .shop-section .grid {
    width: calc(50% - 30px);
  }
}

@media (max-width: 767px) {
  .shop-section .grid {
    width: calc(50% - 15px);
    margin: 0 7px 15px;
  }
}

@media (max-width: 550px) {
  .shop-section .grid {
    width: calc(100% - 15px);
    float: none;
  }
}

.shop-section .grid img {
  width: 100%;
}

.shop-section .details {
  background-color: #f1f1f1;
  text-align: center;
  padding: 35px 15px;
}

.shop-section .details ins {
  text-decoration: none;
}

.shop-section .details h3 {
  font-size: 30px;
  font-size: 1.6666666667rem;
  margin: 0 0 0.5em;
  font-weight: 400;
}

@media (max-width: 1199px) {
  .shop-section .details h3 {
    font-size: 25px;
    font-size: 1.3888888889rem;
  }
}

@media (max-width: 767px) {
  .shop-section .details h3 {
    font-size: 22px;
    font-size: 1.2222222222rem;
  }
}

.shop-section .details h3 a {
  color: #000;
}

.shop-section .details h3 a:hover {
  color: #096366;
}

.shop-section .details del {
  color: #333;
}

.shop-section .details del+span {
  display: inline-block;
  padding-left: 20px;
}

.shop-section .add-to-cart {
  margin-top: 20px;
}

.shop-section .add-to-cart a {
  font-family: "Inter";
  font-size: 16px;
  font-size: 0.8888888889rem;
  color: #215153;
  padding: 10px 20px;
  border: 2px solid #215153;
  display: inline-block;
  border-radius: 50px;
}

@media (max-width: 767px) {
  .shop-section .add-to-cart a {
    font-size: 13px;
    font-size: 0.7222222222rem;
    padding: 8px 18px;
  }
}

.shop-section .add-to-cart a:hover {
  background-color: #215153;
  color: #fff;
}

.shop-section .add-to-cart a i {
  font-size: 15px;
  font-size: 0.8333333333rem;
  display: inline-block;
  padding-left: 5px;
}

.shop-section .grid:hover .add-to-cart a {
  background-color: #215153;
  color: #fff;
}

/*--------------------------------------------------------------
10. wpo-case-single-section
--------------------------------------------------------------*/
.case-single-section .case-single-content {
  margin-left: 30px;
}
@media (max-width: 991px) {
  .case-single-section .case-single-content {
    margin-left: 0;
  }
}
.case-single-section .case-single-content p {
  margin: 0;
  color: #000;
  font-size: 20px;
  line-height: 32px;
  font-weight: 400;
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .case-single-section .case-single-content p {
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 20px;
  }
}
@media (max-width: 575px) {
  .case-single-section .case-single-content p {
    font-size: 16px;
    line-height: 26px;
  }
}
.case-single-section .case-single-content h2 {
  margin: 0;
  font-size: 80px;
  line-height: normal;
  font-weight: 400;
  padding-bottom: 30px;
  color: #000;
}
@media (max-width: 1399px) {
  .case-single-section .case-single-content h2 {
    font-size: 60px;
  }
}
@media (max-width: 1199px) {
  .case-single-section .case-single-content h2 {
    font-size: 50px;
  }
}
@media (max-width: 767px) {
  .case-single-section .case-single-content h2 {
    font-size: 40px;
  }
}
@media (max-width: 575px) {
  .case-single-section .case-single-content h2 {
    font-size: 30px;
  }
}
.case-single-section .case-single-content h3 {
  margin: 0;
  font-size: 40px;
  line-height: normal;
  font-weight: 400;
  padding-bottom: 30px;
  color: #000;
}
@media (max-width: 575px) {
  .case-single-section .case-single-content h3 {
    font-size: 30px;
    padding-bottom: 20px;
  }
}
.case-single-section .case-single-content .case-image-wrap {
  padding-bottom: 60px;
}
@media (max-width: 991px) {
  .case-single-section .case-single-content .case-image-wrap {
    padding-bottom: 30px;
  }
}
.case-single-section .case-single-content .case-image {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 50px;
}
@media (max-width: 991px) {
  .case-single-section .case-single-content .case-image {
    gap: 20px;
    margin-bottom: 30px;
  }
}
@media (max-width: 575px) {
  .case-single-section .case-single-content .case-image {
    flex-direction: column;
  }
}
@media (max-width: 575px) {
  .case-single-section .case-single-content .case-image .image {
    width: 100%;
  }
}
.case-single-section .case-single-content .case-image img {
  width: 100%;
}
.case-single-section .case-single-content .progress-image {
  padding-top: 50px;
}
@media (max-width: 991px) {
  .case-single-section .case-single-content .progress-image {
    padding-top: 30px;
  }
}

.case-sidebar {
  max-width: 500px;
}
@media (max-width: 991px) {
  .case-sidebar {
    margin-top: 50px;
  }
}
.case-sidebar .case-details-list .title {
  background-color: #215153;
  padding: 20px 30px;
}
@media (max-width: 1399px) {
  .case-sidebar .case-details-list .title {
    padding: 20px 20px;
  }
}
@media (max-width: 1199px) {
  .case-sidebar .case-details-list .title {
    padding: 15px;
  }
}
.case-sidebar .case-details-list .title h3 {
  margin: 0;
  font-size: 40px;
  font-weight: 400;
  line-height: normal;
  color: #fff;
}
@media (max-width: 1399px) {
  .case-sidebar .case-details-list .title h3 {
    font-size: 35px;
  }
}
@media (max-width: 1199px) {
  .case-sidebar .case-details-list .title h3 {
    font-size: 30px;
  }
}
.case-sidebar .case-details-list ul {
  background-color: #F8F8F8;
  padding: 35px 30px;
}
@media (max-width: 1399px) {
  .case-sidebar .case-details-list ul {
    padding: 15px 20px;
  }
}
@media (max-width: 1199px) {
  .case-sidebar .case-details-list ul {
    padding: 20px 15px;
  }
}
.case-sidebar .case-details-list ul li {
  font-size: 22px;
  font-family: "Marcellus";
  font-weight: 400;
  line-height: normal;
  color: #001635;
  padding-bottom: 20px;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 1399px) {
  .case-sidebar .case-details-list ul li {
    font-size: 20px;
  }
}
@media (max-width: 575px) {
  .case-sidebar .case-details-list ul li {
    font-size: 18px;
  }
}
.case-sidebar .case-details-list ul li span {
  color: #727272;
  font-size: 18px;
  font-weight: 400;
  line-height: normal;
  flex-basis: 50%;
  font-family: "Inter";
}
@media (max-width: 1199px) {
  .case-sidebar .case-details-list ul li span {
    font-size: 16px;
    flex-basis: 43%;
  }
}
.case-sidebar .case-details-list ul li:last-child {
  padding-bottom: 0;
}
.case-sidebar .case-details-list ul li .icon {
  display: flex;
  gap: 20px;
  padding: 0;
}
@media (max-width: 1199px) {
  .case-sidebar .case-details-list ul li .icon {
    gap: 10px;
  }
}
.case-sidebar .case-details-list ul li .icon i {
  color: #1E2E3E;
  font-size: 18px;
}
@media (max-width: 1199px) {
  .case-sidebar .case-details-list ul li .icon i {
    font-size: 16px;
  }
}

.wpo-case-section-s3.style-3 {
  background-color: transparent;
  border-top: 1px solid #DBDBDB;
}
.wpo-case-section-s3.style-3 .wpo-section-title {
  justify-content: center;
  margin-bottom: 50px;
}
@media (max-width: 991px) {
  .wpo-case-section-s3.style-3 .wpo-section-title {
    margin-bottom: 25px;
  }
}
.wpo-case-section-s3.style-3 .wpo-section-title h2 {
  color: #000;
  font-size: 100px;
  line-height: normal;
  font-weight: 400;
  margin-bottom: 0;
}
@media (max-width: 1399px) {
  .wpo-case-section-s3.style-3 .wpo-section-title h2 {
    font-size: 80px;
  }
}
@media (max-width: 1199px) {
  .wpo-case-section-s3.style-3 .wpo-section-title h2 {
    font-size: 60px;
  }
}
@media (max-width: 575px) {
  .wpo-case-section-s3.style-3 .wpo-section-title h2 {
    font-size: 45px;
  }
}
@media (max-width: 425px) {
  .wpo-case-section-s3.style-3 .wpo-section-title h2 {
    font-size: 35px;
  }
}
.wpo-case-section-s3.style-3 .case-item .case-text {
  padding-top: 20px;
}
.wpo-case-section-s3.style-3 .case-item .case-text h3 a {
  color: #000;
  transition: all ease-in-out 0.3s;
}
.wpo-case-section-s3.style-3 .case-item .case-text h3 a:hover {
  color: #096366;
}

/*--------------------------------------------------------------
12. wpo-contact-page
--------------------------------------------------------------*/
.map-section .wpo-map {
  height: 550px;
}

@media (max-width: 991px) {
  .map-section .wpo-map {
    height: 350px;
  }
}

@media (max-width: 575px) {
  .map-section .wpo-map {
    height: 200px;
  }
}

.map-section iframe {
  width: 100%;
  height: 100%;
  border: 0;
  outline: 0;
}

.map-section h2.hidden {
  display: none;
}

.contact-page .contact-wrap {
  max-width: 1350px;
  margin: 0 auto;
}

.contact-page .wpo-contact-form-area {
  position: relative;
  padding: 70px 70px 55px 70px;
  max-width: 720px;
  margin: 0 auto;
  background: #E5EEEF;
}

@media (max-width: 1399px) {
  .contact-page .wpo-contact-form-area {
    padding: 50px 40px 40px;
  }
}

@media (max-width: 575px) {
  .contact-page .wpo-contact-form-area {
    padding: 40px 20px 30px;
  }
}

.contact-page .wpo-contact-form-area .contact-title {
  margin-bottom: 30px;
}

.contact-page .wpo-contact-form-area .contact-title h2 {
  margin: 0;
  color: #001635;
  font-size: 40px;
  font-weight: 400;
  line-height: normal;
}

@media (max-width: 991px) {
  .contact-page .wpo-contact-form-area .contact-title h2 {
    font-size: 35px;
    line-height: 48px;
  }
}

@media (max-width: 575px) {
  .contact-page .wpo-contact-form-area .contact-title h2 {
    font-size: 30px;
    line-height: 40px;
  }
}

.contact-page .wpo-contact-form-area .col {
  padding: 0 7px;
}

.contact-page .wpo-contact-form-area .form-control {
  width: 100%;
  height: 64px;
  margin-bottom: 16px;
  border: 0;
  border-radius: 0;
  background: #fff;
  color: #525252;
  font-size: 20px;
  font-weight: 400;
  line-height: normal;
}

@media (max-width: 575px) {
  .contact-page .wpo-contact-form-area .form-control {
    height: 50px;
    font-size: 16px;
  }
}

.contact-page .wpo-contact-form-area .form-control:focus {
  outline: none;
  box-shadow: none;
}

.contact-page .wpo-contact-form-area .submit-area {
  max-width: 255px;
  text-align: left;
}

@media (max-width: 767px) {
  .contact-page .wpo-contact-form-area .submit-area {
    max-width: 200px;
  }
}

.contact-page .wpo-contact-form-area .theme-btn-s2 {
  width: 100%;
  padding: 20px 40px;
  margin-top: 24px;
  color: #fff;
  border: 0;
  border-radius: 0;
  outline: 0;
  font-size: 20px;
  background: #CDB091;
}

@media (max-width: 991px) {
  .contact-page .wpo-contact-form-area .theme-btn-s2 {
    margin-top: 10px;
    padding: 16px 30px;
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .contact-page .wpo-contact-form-area .theme-btn-s2 {
    margin-top: 10px;
    font-size: 16px;
  }
}

.contact-page .wpo-contact-form-area .theme-btn-s2 i {
  padding-left: 10px;
}

.contact-page .wpo-contact-form-area .form-control::-moz-placeholder {
  color: #525252;
}

.contact-page .wpo-contact-form-area .form-control::placeholder {
  color: #525252;
}

.contact-page .wpo-contact-form-area textarea.form-control {
  height: 200px;
}

@media (max-width: 575px) {
  .contact-page .wpo-contact-form-area textarea.form-control {
    height: 120px;
  }
}

.contact-page .wpo-contact-form-area .contact-validation-active label.error {
  margin-top: -8px;
  margin-bottom: 20px;
}

.contact-page .contact-left-info {
  padding-left: 60px;
  max-width: 526px;
}

@media (max-width: 1199px) {
  .contact-page .contact-left-info {
    padding-left: 20px;
  }
}

@media (max-width: 991px) {
  .contact-page .contact-left-info {
    padding-left: 0;
    margin-top: 40px;
  }
}

.contact-page .contact-left-info .contact-left-title {
  margin-bottom: 60px;
}

@media (max-width: 575px) {
  .contact-page .contact-left-info .contact-left-title {
    margin-bottom: 30px;
  }
}

.contact-page .contact-left-info .contact-left-title h2 {
  margin: 0;
  font-size: 60px;
  line-height: normal;
  font-weight: 400;
  margin-bottom: 10px;
}

@media (max-width: 1199px) {
  .contact-page .contact-left-info .contact-left-title h2 {
    font-size: 45px;
  }
}

@media (max-width: 575px) {
  .contact-page .contact-left-info .contact-left-title h2 {
    font-size: 35px;
  }
}

.contact-page .contact-left-info .contact-left-title p {
  margin: 0;
  font-size: 30px;
  line-height: normal;
  font-weight: 400;
  color: #999999;
}

@media (max-width: 1199px) {
  .contact-page .contact-left-info .contact-left-title p {
    font-size: 25px;
  }
}

@media (max-width: 575px) {
  .contact-page .contact-left-info .contact-left-title p {
    font-size: 20px;
  }
}

.contact-page .contact-left-info .contact-left-item .contact-info {
  margin-bottom: 60px;
}

@media (max-width: 1199px) {
  .contact-page .contact-left-info .contact-left-item .contact-info {
    margin-bottom: 40px;
  }
}

@media (max-width: 575px) {
  .contact-page .contact-left-info .contact-left-item .contact-info {
    margin-bottom: 20px;
  }
}

.contact-page .contact-left-info .contact-left-item .contact-info h3 {
  font-size: 30px;
  line-height: normal;
  font-weight: 400;
  color: #001635;
  margin-top: 0;
  margin-bottom: 10px;
}

@media (max-width: 1199px) {
  .contact-page .contact-left-info .contact-left-item .contact-info h3 {
    font-size: 25px;
  }
}

.contact-page .contact-left-info .contact-left-item .contact-info p {
  font-size: 25px;
  line-height: 40px;
  font-weight: 400;
  color: #727272;
}

@media (max-width: 1199px) {
  .contact-page .contact-left-info .contact-left-item .contact-info p {
    font-size: 20px;
    line-height: 32px;
  }
}

@media (max-width: 575px) {
  .contact-page .contact-left-info .contact-left-item .contact-info p {
    font-size: 18px;
    line-height: 28px;
  }
}

.contact-page .contact-left-info .contact-left-item .contact-info:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
12. wpo-blog-pg-section
--------------------------------------------------------------*/
.wpo-blog-pg-section {
  /*** format-standard ***/
  /*** format-gallery ***/
  /*** format-quote ***/
  /*** format-video ***/
}

.wpo-blog-pg-section .container-fluid {
  max-width: 1410px;
}

.wpo-blog-pg-section .wpo-blog-content .post {
  margin-bottom: 70px;
}

@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: 35px;
  border-bottom: 1px solid #eee;
  padding: 15px 0;
}

@media (max-width: 767px) {
  .wpo-blog-pg-section .entry-meta {
    margin-bottom: 30px;
  }
}

.wpo-blog-pg-section .entry-meta ul {
  list-style: none;
  padding-left: 0;
}

.wpo-blog-pg-section .entry-meta ul li {
  font-size: 16px;
  float: left;
  text-transform: uppercase;
  color: #585656;
}

.wpo-blog-pg-section .entry-meta ul li a {
  color: #585656;
  font-weight: 500;
}


.wpo-blog-pg-section .entry-meta ul li a:hover {
  color: #707070;
}

.wpo-blog-pg-section .entry-meta ul li i {
  position: relative;
  top: 2px;
  margin-right: 3px;
}

.wpo-blog-pg-section .entry-meta ul li i:before {
  font-size: 14px;
}

.wpo-blog-pg-section .entry-meta ul li+li {
  margin-left: 20px;
  padding-left: 0px;
  position: relative;
}

.wpo-blog-pg-section .entry-meta ul li+li i {
  padding-right: 3px;
}

.wpo-blog-pg-section .entry-meta ul li+li+li i {
  top: 1px;
}

.wpo-blog-pg-section .entry-meta ul li+li:before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 7px;
  height: 7px;
  /*content: "";*/
  background: #707070;
  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: 12px;
    font-size: 0.8rem;
  }
}

@media (max-width: 440px) {
  .wpo-blog-pg-section .entry-meta ul li {
    float: none;
    display: block;
    margin-bottom: 5px;
  }
}

.wpo-blog-pg-section .post h3 {
  font-size: 48px;
  line-height: 1.2em;
  font-weight: 400;
  margin: -0.27em 0 0.3em;
  word-break: break-all;
}

@media (max-width: 991px) {
  .wpo-blog-pg-section .post h3 {
    font-size: 40px;
    line-height: 50px;
  }
}

@media (max-width: 767px) {
  .wpo-blog-pg-section .post h3 {
    font-size: 30px;
    line-height: 40px;
  }
}

.wpo-blog-pg-section .post h3 a {
  color: #000;
}

.wpo-blog-pg-section .post h3 a:hover {
  color: #B59E9C;
}

.wpo-blog-pg-section .post p,
.wpo-blog-single-section .entry-details p {
  margin-bottom: 1.5em;
  font-size: 20px;
}

@media (max-width: 991px) {

  .wpo-blog-pg-section .post p,
  .wpo-blog-single-section .entry-details p {
    font-size: 16px;
  }
}

.wpo-blog-pg-section .post a.read-more {
  color: #000;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 600;
  color: #000;
}

.wpo-blog-pg-section .post a.read-more:hover {
  color: #000;
}

@media (max-width: 767px) {

  .wpo-blog-pg-section .format-standard,
  .wpo-blog-pg-section .format-quote {
    padding: 25px 20px 45px;
  }
}

.wpo-blog-pg-section .format-standard {
  position: relative;
}

.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: #707070;
  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;
  border-radius: 50%;
  color: #707070;
  transition: all 0.3s;
  border: 0;
}

.wpo-blog-pg-section .format-gallery .owl-nav [class*=owl-] .fi::before {
  font-size: 20px;
}

.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: 15px;
}

.wpo-blog-pg-section .format-gallery .owl-nav .owl-next {
  right: 15px;
}

.wpo-blog-pg-section .format-quote {
  text-align: center;
  padding: 80px 60px;
  position: relative;
}

@media (max-width: 767px) {
  .wpo-blog-pg-section .format-quote {
    padding: 40px 20px;
  }
}

.wpo-blog-pg-section .format-quote p {
  margin-bottom: 0;
}

.wpo-blog-pg-section .format-quote:before {
  font-size: 250px;
  color: #ecf3fb;
  margin-left: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.wpo-blog-pg-section .format-quote h3,
.wpo-blog-pg-section .format-quote p {
  position: relative;
}

.wpo-blog-pg-section .format-video .video-holder {
  position: relative;
  text-align: center;
}

.wpo-blog-pg-section .format-video .video-holder:before {
  content: "";
  background-color: #707070;
  background: linear-gradient(left, #1835c7, #707070);
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  transition: all 0.3s;
  opacity: 0.5;
}

.wpo-blog-pg-section .format-video .video-holder:hover:before {
  opacity: 0.7;
}

.wpo-blog-pg-section .format-video .video-holder a {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 63px;
  height: 63px;
  line-height: 63px;
  background: #fff;
  border-radius: 50%;
  z-index: 1;
}

.wpo-blog-pg-section .format-video .video-holder a:before {
  position: absolute;
  left: -12px;
  top: -12px;
  width: 140%;
  height: 140%;
  background: rgba(255, 255, 255, 0.3);
  content: "";
  -webkit-animation: save-the-date-pulse 1s infinite;
  animation: save-the-date-pulse 1s infinite;
  border-radius: 50%;
  z-index: -1;
}

.wpo-blog-pg-section .format-video .video-holder .fi:before {
  font-size: 20px;
  font-size: 1.3333333333rem;
  color: #707070;
}

@media screen and (min-width: 1200px) {
  .blog-pg-left-sidebar .blog-sidebar {
    padding-right: 45px;
    padding-left: 0;
  }
}

@media screen and (min-width: 1200px) {
  .blog-pg-fullwidth .wpo-blog-content {
    padding: 0;
  }
}

@-webkit-keyframes save-the-date-pulse {
  from {
    transform: scale3d(1, 1, 1);
  }

  50% {
    transform: scale3d(0.95, 0.95, 0.95);
  }

  to {
    transform: scale3d(1, 1, 1);
  }
}

@keyframes save-the-date-pulse {
  from {
    transform: scale3d(1, 1, 1);
  }

  50% {
    transform: scale3d(0.95, 0.95, 0.95);
  }

  to {
    transform: scale3d(1, 1, 1);
  }
}

/*--------------------------------------------------------------
13. wpo-blog-single-section
--------------------------------------------------------------*/
.wpo-blog-single-section {
  /*** tag-share ***/
  /*** author-box ***/
  /*** more-posts ***/
  /*** comments area ***/
  /*** comment-respond ***/
}

.wpo-blog-single-section .container-fluid {
  max-width: 1410px;
}

.wpo-blog-single-section .entry-meta {
  list-style: none;
  overflow: hidden;
}

.wpo-blog-single-section .entry-meta ul {
  list-style: none;
  padding-left: 0;
}

.wpo-blog-single-section .entry-meta ul li {
  font-size: 16px;
  float: left;
  text-transform: uppercase;
  color: #585656;
}

.wpo-blog-single-section .entry-meta ul li a {
  color: #585656;
  font-weight: 500;
}

.wpo-blog-single-section .entry-meta ul li a:hover {
  color: #000;
}

.wpo-blog-single-section .entry-meta ul li i {
  position: relative;
  top: 2px;
  margin-right: 3px;
}

.wpo-blog-single-section .entry-meta ul li i:before {
  font-size: 14px;
}

.wpo-blog-single-section .entry-meta ul li+li {
  margin-left: 20px;
  padding-left: 0px;
  position: relative;
}

.wpo-blog-single-section .entry-meta ul li+li i {
  padding-right: 4px;
}

.wpo-blog-single-section .entry-meta ul li+li+li i {
  position: relative;
  top: 0px;
}

.wpo-blog-single-section .entry-meta ul li+li:before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 7px;
  height: 7px;
  /*content: "";*/
  background: #BAE900;
  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: 14px;
  }
}

@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 img {
  width: 100%;
}

.wpo-blog-single-section .post h2 {
  margin: -0.22em 0 0.7em;
  line-height: 1.3em;
  font-size: 40px;
  font-weight: 400;
}

.wpo-blog-single-section .post p {
  margin-bottom: 1.5em;
}

.wpo-blog-single-section .post h3 {
  font-size: 24px;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.3em;
  margin: 1.8em 0 1em;
}

@media (max-width: 991px) {
  .wpo-blog-single-section .post h3 {
    font-size: 22px;
  }
}

@media (max-width: 767px) {
  .wpo-blog-single-section .post h3 {
    font-size: 20px;
  }
}

.wpo-blog-single-section .post blockquote {
  background-color: #f5f5f5;
  color: #233d62;
  font-size: 20px;
  line-height: 1.6em;
  padding: 65px;
  margin-top: 50px;
  margin-bottom: 40px;
  border: 0;
  position: relative;
  text-decoration: underline;
}

@media (max-width: 767px) {
  .wpo-blog-single-section .post blockquote {
    padding: 55px 25px;
  }
}

.wpo-blog-single-section .post blockquote:before {
  font-family: "themify";
  content: "\e67e";
  font-size: 20px;
  color: rgba(255, 255, 255, 0.5);
  position: absolute;
  left: 50%;
  top: -30px;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  line-height: 60px;
  border: 2px solid #000;
  background: #fff;
  color: #BAE900;
  border-radius: 50%;
  transform: rotate(180deg)
}

.wpo-blog-single-section .post .gallery {
  overflow: hidden;
  margin: 40px -7.5px 0;
}

.wpo-blog-single-section .post .gallery>div {
  width: calc(50% - 15px);
  float: left;
  margin: 0 7.5px 15px;
}

.wpo-blog-single-section .post .gallery img {
  width: 100%;
}

.wpo-blog-single-section .tag-share,
.wpo-blog-single-section .tag-share-s2 {
  margin: 75px 0 0;
  color: #000;
}

@media (max-width: 767px) {

  .wpo-blog-single-section .tag-share,
  .wpo-blog-single-section .tag-share-s2 {
    margin-top: 40px;
  }
}

.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;
  font-weight: 600;
  display: inline-block;
  padding-right: 15px;
  text-transform: uppercase;
}

.wpo-blog-single-section .tag-share .tag ul,
.wpo-blog-single-section .tag-share-s2 .tag ul {
  list-style: none;
  position: relative;
  padding-left: 0;
  margin-bottom: 0;
}

.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 {
  font-size: 16px;
  display: inline-block;
  padding: 5px 18px;
  color: #1d2327;
  background: #f5f5f5;
  border-radius: 15px;
  text-transform: uppercase;
  font-weight: 400;
}

@media (max-width: 767px) {

  .wpo-blog-single-section .tag-share .tag a,
  .wpo-blog-single-section .tag-share-s2 .tag a {
    font-size: 14px;
  }
}


.wpo-blog-single-section .tag-share-s2 {
  margin: 0;
  border-bottom: 0;
}

.wpo-blog-single-section .tag-share-s2 .tag a {
  width: 35px;
  height: 35px;
  line-height: 36px;
  text-align: center;
  border: 1px solid #eae6e6;
  border-radius: 50%;
  display: inline-block;
  font-size: 14px;
  font-size: 0.875rem;
  color: #627381;
  padding: 0;
}

.wpo-blog-single-section .tag-share-s2 .tag ul>li:first-child a {
  color: #3c5ba4;
}

.wpo-blog-single-section .tag-share-s2 .tag ul>li:nth-child(2) a {
  color: #47a0d9;
}

.wpo-blog-single-section .tag-share-s2 .tag ul>li:nth-child(3) a {
  color: #0073b1;
}

.wpo-blog-single-section .tag-share-s2 .tag ul>li:nth-child(4) a {
  color: #9c0343;
}


.wpo-blog-single-section .has-tag-share .tag a {
  width: 35px;
  height: 35px;
  line-height: 36px;
  text-align: center;
  border: 1px solid #eae6e6;
  border-radius: 50%;
  display: inline-block;
  font-size: 14px;
  font-size: 0.875rem;
  color: #627381;
  padding: 0;
}

.wpo-blog-single-section .has-tag-share .tag ul>li:first-child a {
  color: #3c5ba4;
}

.wpo-blog-single-section .has-tag-share .tag ul>li:nth-child(2) a {
  color: #47a0d9;
}

.wpo-blog-single-section .has-tag-share .tag ul>li:nth-child(3) a {
  color: #0073b1;
}

.wpo-blog-single-section .has-tag-share .tag ul>li:nth-child(4) a {
  color: #9c0343;
}

.wpo-blog-single-section .tag-share .tag ul li a:hover,
.wpo-blog-single-section .tag-share-s2 .tag ul li a:hover {
  color: #fff;
  background: #000;
}

.wpo-blog-single-section .author-box {
  margin: 50px 0 60px;
}

.wpo-blog-single-section .author-box .author-avatar {
  float: left;
}

@media (max-width: 767px) {
  .wpo-blog-single-section .author-box .author-avatar {
    float: none;
  }
}

.wpo-blog-single-section .author-box .author-avatar img {
  border-radius: 50%;
}

.wpo-blog-single-section .author-box .author-content {
  display: block;
  overflow: hidden;
  padding-left: 25px;
}

@media (max-width: 767px) {
  .wpo-blog-single-section .author-box .author-content {
    padding: 0;
    margin: 15px 0 0 0;
  }
}

.wpo-blog-single-section .author-box .author-content p {
  margin-bottom: 20px;
}

.wpo-blog-single-section .author-box .author-name {
  font-size: 24px;
  font-size: 1.6rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 10px;
  color: #000;
}

.wpo-blog-single-section .author-box .social-link {
  display: inline-block;
  list-style: none;
}

.wpo-blog-single-section .author-box .social-link li {
  float: left;
  margin-right: 12px;
}

.wpo-blog-single-section .author-box .social-link a {
  display: block;
  font-size: 13px;
  color: #000;
}

.wpo-blog-single-section .author-box .social-link a:hover {
  color: #BAE900;
}

.wpo-blog-single-section .more-posts {
  overflow: hidden;
  border: 1px solid #d8e0f1;
  padding: 0 25px;
}

.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 15px !important;
  }
}

.wpo-blog-single-section .more-posts .next-post {
  text-align: right;
  border-left: 1px solid #d8e0f1;
  padding-left: 15px;
  padding-right: 5px;
}

@media (max-width: 767px) {
  .wpo-blog-single-section .more-posts .next-post {
    border-left: 0;
    text-align: left;
    border-top: 1px solid #d8e0f1;
  }
}

.wpo-blog-single-section .more-posts .next-post .post-control-link {
  padding-right: 25px;
  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 .next-post .post-control-link:before {
  font-family: "themify";
  content: "";
  position: absolute;
  right: 0;
  top: 0;
}

@media (max-width: 767px) {
  .wpo-blog-single-section .more-posts .next-post .post-control-link:before {
    display: none;
  }
}

.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 {
  padding-left: 25px;
  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 .post-control-link:before {
  font-family: "themify";
  content: "";
  position: absolute;
  left: 0;
  top: 0;
}

@media (max-width: 767px) {
  .wpo-blog-single-section .more-posts .previous-post .post-control-link:before {
    display: none;
  }
}

.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 {
  font-size: 14px;
  color: #6e6e6e;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 2px;
}

.wpo-blog-single-section .more-posts .post-name {
  font-size: 18px;
  font-size: 1.2rem;
  color: #232f4b;
  margin: 0.7em 0 0;
}

@media (max-width: 991px) {
  .wpo-blog-single-section .more-posts .post-name {
    font-size: 18px;
    font-size: 1.2rem;
  }
}

.wpo-blog-single-section .more-posts a:hover .post-control-link {
  color: #BAE900;
}

.wpo-blog-single-section .comments-area {
  margin-top: 70px;
}

.wpo-blog-single-section .comments-area li>div {
  border-bottom: 1px solid #e4effb;
  padding: 35px;
}

@media (max-width: 991px) {
  .wpo-blog-single-section .comments-area li>div {
    padding: 35px 25px;
  }
}

.wpo-blog-single-section .comments-area ol {
  list-style-type: none;
  padding-left: 0;
}

.wpo-blog-single-section .comments-area ol ul {
  padding-left: 30px;
  list-style-type: none;
}

.wpo-blog-single-section .comments-area ol>li:last-child div {
  border-bottom: 0;
}

.wpo-blog-single-section .comments-area .comments-title {
  font-size: 32px;
  margin: 0 0 1em;
  letter-spacing: 1px;
}

@media (max-width: 991px) {
  .wpo-blog-single-section .comments-area .comments-title {
    font-size: 28px;
  }
}

.wpo-blog-single-section .comments-area li>div {
  position: relative;
}

.wpo-blog-single-section .comments-area .comment-theme {
  position: absolute;
  left: 35px;
}

@media (max-width: 767px) {
  .wpo-blog-single-section .comments-area .comment-theme {
    position: static;
  }
}

.wpo-blog-single-section .comments-area .comment-theme img {
  border-radius: 50%;
}

.wpo-blog-single-section .comments-area .comment-main-area {
  padding-left: 100px;
}

@media (max-width: 767px) {
  .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 {
  margin-bottom: 20px;
  font-weight: 400;
  font-size: 16px;
}

.wpo-blog-single-section .comments-area .comments-meta h4 {
  font-size: 25px;
  color: #232f4b;
  margin: 0 0 1em;
}

.wpo-blog-single-section .comments-area .comments-meta h4 span {
  font-size: 18px;
  color: #6e6e6e;
  font-weight: normal;
  text-transform: none;
  display: inline-block;
  padding-left: 5px;
}

@media (max-width: 767px) {
  .wpo-blog-single-section .comments-area .comments-meta h4 span {
    padding-left: 0;
  }
}

.wpo-blog-single-section .comments-area .comment-reply-link {
  font-size: 14px;
  font-weight: 600;
  color: #232f4b;
  text-align: center;
  border-radius: 50px;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.wpo-blog-single-section .comments-area .comment-reply-link:hover {
  color: #EBB011;
}


.wpo-blog-single-section .comment-respond .comment-reply-title {
  font-size: 34px;
  margin: 0 0 1.1em;
}

@media (max-width: 991px) {
  .wpo-blog-single-section .comment-respond .comment-reply-title {
    font-size: 30px;
  }
}

.wpo-blog-single-section .comment-respond input,
.wpo-blog-single-section .comment-respond textarea {
  background-color: #f9f9f9;
  width: 100%;
  height: 55px;
  border: 1px solid #E3E3E3;
  padding: 6px 15px;
  margin-bottom: 15px;
  outline: 0;
  border-radius: 0px;
  box-shadow: none;
  transition: all 0.3s;
}

.wpo-blog-single-section .comment-respond input:focus,
.wpo-blog-single-section .comment-respond textarea:focus {
  box-shadow: none;
  border-color: #BAE900;
}

@media (max-width: 991px) {

  .wpo-blog-single-section .comment-respond input,
  .wpo-blog-single-section .comment-respond textarea {
    height: 40px;
  }
}

.wpo-blog-single-section .comment-respond textarea {
  height: 220px;
  padding: 15px;
}

@media (max-width: 991px) {
  .wpo-blog-single-section .comment-respond textarea {
    height: 150px;
  }
}

.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 input {
  max-width: 185px;
  background-color: #000;
  color: #fff;
  margin-bottom: 0;
  border: 0;
  outline: 0;
  font-size: 18px;
  border-radius: 0px;
  height: 55px;
  font-weight: 500;
}

.wpo-blog-single-section .comment-respond .form-submit input:hover {
  background-color: #333;
}

@media screen and (min-width: 1200px) {
  .wpo-blog-single-left-sidebar-section .blog-sidebar {
    padding-right: 45px;
    padding-left: 0;
  }
}

/* 14. contact-pg-section */

.wpo-contact-pg-section {
  padding-bottom: 0px;
}

.wpo-contact-pg-section .wpo-contact-title {
  max-width: 440px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 50px;
}

@media (max-width: 767px) {
  .wpo-contact-pg-section .wpo-contact-title {
    margin-bottom: 30px;
  }
}

.wpo-contact-pg-section .wpo-contact-title h2 {
  font-size: 40px;
  font-size: 2.2222222222rem;
  font-weight: 500;
  margin-bottom: 15px;
}

@media (max-width: 575px) {
  .wpo-contact-pg-section .wpo-contact-title h2 {
    font-size: 30px;
    font-size: 1.6666666667rem;
  }
}

.wpo-contact-pg-section .wpo-contact-title p {
  margin: 0;
  color: #333;
}

@media (max-width: 575px) {
  .wpo-contact-pg-section .wpo-contact-title p {
    font-size: 16px;
  }
}

.wpo-contact-pg-section form input,
.wpo-contact-pg-section form select,
.wpo-contact-pg-section form textarea {
  background: transparent;
  width: 100%;
  height: 50px;
  border: 1px solid transparent;
  border-radius: 0px;
  box-shadow: none;
  padding-left: 25px;
  border: 1px solid #ebebeb;
  font-size: 17px;
}

@media (max-width: 991px) {

  .wpo-contact-pg-section form input,
  .wpo-contact-pg-section form select,
  .wpo-contact-pg-section form textarea {
    height: 45px;
  }
}

.wpo-contact-pg-section form input:focus,
.wpo-contact-pg-section form select:focus,
.wpo-contact-pg-section form textarea:focus {
  border-color: #B59E9C;
  background: transparent;
  outline: 0;
  box-shadow: none;
}

.wpo-contact-pg-section form textarea {
  height: 180px;
  padding-top: 15px;
}

.wpo-contact-pg-section form {
  margin: 0 -15px;
  overflow: hidden;
}

.wpo-contact-pg-section form ::-webkit-input-placeholder {
  font-style: 16px;
  font-style: normal;
  color: #5C5C5C;
}

.wpo-contact-pg-section form :-moz-placeholder {
  font-style: 16px;
  font-style: normal;
  color: #5C5C5C;
}

.wpo-contact-pg-section form ::-moz-placeholder {
  font-style: 16px;
  font-style: normal;
  color: #5C5C5C;
}

.wpo-contact-pg-section form :-ms-input-placeholder {
  font-style: 16px;
  font-style: normal;
  color: #5C5C5C;
}

.wpo-contact-pg-section form select {
  display: inline-block;
  color: #5C5C5C;
  cursor: pointer;
  opacity: 1;
  padding: 6px 25px;
  font-size: 17px;
  font-size: 0.9444444444rem;
  -webkit-appearance: none;
  -o-appearance: none;
  appearance: none;
  -moz-appearance: none;
  background: transparent url(../images/select-icon2.png) no-repeat calc(100% - 17px) center;
  position: relative;
}

.wpo-contact-pg-section form select:focus {
  background: transparent url(../images/select-icon2.png) no-repeat calc(100% - 17px) center;
}

.wpo-contact-pg-section form .submit-area {
  text-align: center;
  width: 100%;
  margin-bottom: 10px;
  margin-left: 0;
}

.wpo-contact-pg-section form .submit-area input {
  width: auto;
}

.wpo-contact-pg-section form .submit-area .wpcf7-spinner {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 30px;
  margin: 0;
}

.wpo-contact-pg-section form .wpcf7-response-output {
  width: 98%;
  text-align: center;
}

@media (max-width: 767px) {
  .wpo-contact-pg-section form .submit-area {
    margin-bottom: 0;
  }
}

.wpo-contact-pg-section form .submit-area .theme-btn {
  border-radius: 0px;
  font-size: 16px;
  padding: 15px 40px;
  background: #B59E9C;
  border: 0;
  height: auto;
}

@media (max-width: 767px) {
  .wpo-contact-pg-section form .submit-area .theme-btn {
    padding: 10px 30px;
  }
}

.wpo-contact-pg-section form .submit-area .theme-btn:after:after {
  border-radius: 0px;
}

.wpo-contact-pg-section form>div {
  width: calc(50% - 30px);
  float: left;
  margin: 0 15px 25px;
}

@media (max-width: 600px) {
  .wpo-contact-pg-section form>div {
    width: calc(100% - 25px);
    float: none;
  }
}

.wpo-contact-pg-section form .fullwidth {
  width: calc(100% - 25px);
  float: none;
  clear: both;
}

.wpo-contact-pg-section .office-info {
  padding-bottom: 100px;
}

@media (max-width: 767px) {
  .wpo-contact-pg-section .office-info {
    padding-bottom: 60px;
  }
}

@media (max-width: 1200px) {
  .wpo-contact-pg-section .office-info .col .office-info-item {
    margin-bottom: 30px;
  }
}

@media (max-width: 1200px) {
  .wpo-contact-pg-section .office-info .col:last-child .office-info-item {
    margin-bottom: 0px;
  }
}

.wpo-contact-pg-section .office-info .office-info-item {
  text-align: center;
  box-shadow: 0px 5px 15px 0px rgba(62, 65, 159, 0.1);
  padding: 40px;
}

.wpo-contact-pg-section .office-info .office-info-item .office-info-icon {
  width: 85px;
  height: 85px;
  background: #f5f5f5;
  line-height: 85px;
  text-align: center;
  margin: 0 auto;
  border-radius: 50%;
}

.wpo-contact-pg-section .office-info .office-info-item .office-info-icon .icon i {
  font-size: 35px;
  color: #B59E9C;
  line-height: unset;
}

.wpo-contact-pg-section .office-info .office-info-item .office-info-text h2 {
  font-size: 30px;
  font-weight: 400;
  margin: 20px 0;
  font-family: "DM Sans";
}

.wpo-contact-pg-section .office-info .office-info-item .office-info-text p {
  margin-bottom: 0;
  color: #333;
}

.wpo-contact-pg-section .wpo-contact-form-area {
  padding: 50px;
  background: #fff;
  box-shadow: 0px 1px 15px 0px rgba(62, 65, 159, 0.1);
  position: relative;
  z-index: 9;
}

@media (max-width: 767px) {
  .wpo-contact-pg-section .wpo-contact-form-area {
    padding: 30px;
    padding-top: 50px;
  }
}

@media (max-width: 425px) {
  .wpo-contact-pg-section .wpo-contact-form-area {
    padding: 20px;
    padding-top: 40px;
  }
}

.wpo-contact-map-section .wpo-contact-map {
  height: 550px;
}

.wpo-contact-map-section iframe {
  width: 100%;
  height: 100%;
  border: 0;
  outline: 0;
  filter: grayscale(100%);
}

.wpo-contact-map-section h2.hidden {
  display: none;
}

/* 15. error-404-section */
.error-404-section {
  text-align: center;
}

.error-404-section .error-message {
  margin-top: 30px;
  padding: 0 200px;
}

@media (max-width: 991px) {
  .error-404-section .error-message {
    margin-top: 20px;
    padding: 0 100px;
  }
}

@media (max-width: 767px) {
  .error-404-section .error-message {
    padding: 0;
  }
}

.error-404-section .error-message h3 {
  font-size: 55px;
  margin: 0 0 20px;
}

@media (max-width: 767px) {
  .error-404-section .error-message h3 {
    font-size: 40px;
  }
}

.error-404-section .error-message p {
  margin-bottom: 1.8em;
}

.error-404-section {
  text-align: center;
}

.error-404-section .error h2 {
  font-size: 150px;
  margin: 0;
}

@media (max-width: 991px) {
  .error-404-section .error h2 {
    font-size: 120px;
  }
}

@media (max-width: 767px) {
  .error-404-section .error h2 {
    font-size: 100px;
  }
}


.error-404-section .error-message {
  margin-top: 0px;
  padding: 0 200px;
}

@media (max-width: 991px) {
  .error-404-section .error-message {
    margin-top: 0px;
    padding: 0 100px;
  }
}

@media (max-width: 767px) {
  .error-404-section .error-message {
    padding: 0;
  }
}

.error-404-section .error-message p {
  max-width: 750px;
  margin: auto;
  margin-bottom: 1.8em;
}

/*--------------------------------------------------------------
#  shop-pg-section
--------------------------------------------------------------*/

.shop-pg-section .shop-grids {
  margin: 0 -15px;
}

.shop-pg-section .shop-grids .grid {
  width: calc(33.33% - 30px);
  float: left;
  margin: 0 15px 30px;
}

@media (max-width: 991px) {
  .shop-pg-section .shop-grids .grid {
    width: calc(50% - 30px);
  }
}

@media (max-width: 550px) {
  .shop-pg-section .shop-grids .grid {
    width: calc(100% - 30px);
    float: none;
  }
}

.shop-pg-section .grid:hover .cart-details li {
  opacity: 1;
  visibility: visible;
  bottom: 0;
}

.shop-pg-section .img-cart {
  position: relative;
  overflow: hidden;
  /*    z-index: 1;*/
}

.shop-pg-section .img-cart:before {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0;
  content: "";
  background: rgba(20, 33, 43, 0.4);
  transition: all 0.3s;
}

.shop-pg-section .img-cart:hover:before {
  height: 100%;
}

.shop-pg-section .cart-details {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 20px;
  text-align: center;
}

.shop-pg-section .cart-details ul {
  overflow: hidden;
  display: inline-block;
  list-style-type: none;
  padding-left: 0;
}

.shop-pg-section .cart-details li {
  float: left;
  margin: 7px;
  position: relative;
  bottom: -50px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.shop-pg-section .cart-details li:last-child {
  transition: all 0.3s;
}

.shop-pg-section .details {
  text-align: center;
  padding: 30px 15px;
}

.shop-pg-section .details h4 {
  font-size: 25px;
  font-weight: 500;
  margin: 0 0 0.4em;
}

@media (max-width: 991px) {
  .shop-pg-section .details h4 {
    font-size: 20px;
  }
}

.shop-pg-section .details h4 a {
  color: #233D50;
}

.shop-pg-section .details h4 a:hover {
  color: #707070;
}

.shop-pg-section .details del {
  color: #aaa;
  font-weight: 500;
  display: inline-block;
  padding-right: 10px;
}

@media (max-width: 991px) {
  .shop-pg-section .details del {
    font-size: 14px;
  }
}

.shop-pg-section .details .price {
  color: #233D50;
  font-weight: 500;
}

@media (max-width: 991px) {
  .shop-pg-section .details .price {
    font-size: 14px;
  }
}

.shop-pg-section .pagination-wrapper {
  text-align: center;
  clear: both;
}

.shop-pg-section .details ins {
  text-decoration: none;
  font-weight: 600;
}

.shop-pg-section .cart-details .theme-btn {
  background: #d2f34a;
  color: #000;
}