@charset "UTF-8";
/*------------------------------------------------------------------
[Master Stylesheet]
Theme Name:     Avukat – Lawyer and Attorney HTML Template
Version:        1.0.0
-------------------------------------------------------------------*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------

1. General
	1.1 Theme Reset Style
	1.2 Global Elements

2. header
	2.1 topbar
	2.2 navigation

3. content
	3.1 wpo-hero-slider
	3.2 wpo-about-section
	3.3 wpo-practice-section
	3.4 wpo-testimonials-section
	3.5 wpo-case-section
	3.6 wpo-fun-fact-section
	3.7 wpo-team-section
	3.8 wpo-contact-section
	3.9 wpo-blog-section

4. wpo-footer

5. Home-style-2
	5.1 wpo-about-section-s2
	5.2 wpo-practice-section-s2
	5.3 wpo-contact-section-s2

6. Home-style-3
	6.1 wpo-features-section
	6.2 wpo-about-section-s3
	6.3 wpo-practice-section-s3
	6.4 wpo-testimonials-section-s2
	6.5 wpo-case-section-s2

7. Home-style-3
	7.1 wpo-about-section-s3
	7.2 wpo-case-section-s3

8. wpo-Attorney-single

9. wpo-service-single-section

10. wpo-case-section

11. wpo-cart-page-style

12. wpo-checkout-page-style

13. wpo-shop-page

14. wpo-shop-single-page

15. wpo-pricing-page

16. wpo-faq-page

17. wpo-blog-pg-section

18. wpo-blog-single-section

19. wpo-contact-pg-section

20. wpo-terms-section

21. error-404-section

----------------------------------------------------------------*/
/*------------------------------------------------------------------
1. General
----------------------------------------------------------------*/
/*---------------------------
	Fonts
----------------------------*/
@import url("https://fonts.googleapis.com/css2?family=DM+Serif+Text:ital@0;1&family=Mulish:wght@300;400;500;600;700;800;900&display=swap");
/* 1.1	Theme Reset Style */
html {
  font-size: 15px;
}

:root {
  scroll-behavior: unset;
}

body {
  font-family: "Mulish", sans-serif;
  color: #525252;
  background-color: #fff;
  font-size: 18px;
  font-size: 1.2rem;
  overflow-x: hidden;
}

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #1E2E3E;
  font-family: "DM Serif Text", serif;
  font-weight: 400;
}

ul {
  padding-left: 0;
  margin: 0;
}

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

a:hover {
  text-decoration: none;
}

img {
  max-width: 100%;
}

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

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

.wow {
  visibility: hidden;
}

.fi:before {
  margin: 0;
}

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

.section-padding {
  padding: 120px 0;
}

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

@media (max-width: 767px) {
  .section-padding {
    padding: 80px 0;
  }
}

.pt-120 {
  padding-top: 120px !important;
}

@media (max-width: 991px) {
  .pt-120 {
    padding-top: 90px !important;
  }
}

@media (max-width: 767px) {
  .pt-120 {
    padding-top: 80px !important;
  }
}

@media (max-width: 575px) {
  .pt-120 {
    padding-top: 60px !important;
  }
}

.pb-120 {
  padding-bottom: 120px !important;
}

@media (max-width: 991px) {
  .pb-120 {
    padding-bottom: 90px !important;
  }
}

@media (max-width: 767px) {
  .pb-120 {
    padding-bottom: 80px !important;
  }
}

@media (max-width: 575px) {
  .pb-120 {
    padding-bottom: 60px !important;
  }
}

.light-bg {
  background: #fff !important;
}

/*** contact form error handling ***/
.contact-validation-active .error-handling-messages {
  width: 100% !important;
  margin-top: 15px !important;
}

.contact-validation-active label.error {
  color: red;
  font-size: 0.93333rem;
  font-weight: normal;
  margin: 5px 0 0 0;
  text-align: left;
  display: block;
}

.contact-validation-active #c-loader,
.contact-validation-active #loader {
  display: none;
  margin-top: 10px;
}

.contact-validation-active #c-loader i,
.contact-validation-active #loader i {
  font-size: 30px;
  font-size: 2rem;
  color: #CDB091;
  display: inline-block;
  -webkit-animation: rotating linear 2s infinite;
  animation: rotating linear 2s infinite;
}

.contact-validation-active #success,
.contact-validation-active #c-success,
.contact-validation-active #c-error,
.contact-validation-active #error {
  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 #c-success,
  .contact-validation-active #c-error,
  .contact-validation-active #error {
    font-size: 15px;
  }
}

.contact-validation-active #c-success,
.contact-validation-active #success {
  background-color: #009a00;
  border-left: 5px solid green;
  margin-bottom: 5px;
}

.contact-validation-active #c-error,
.contact-validation-active #error {
  background-color: #ff1a1a;
  border-left: 5px solid red;
}

@-webkit-keyframes rotating {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes rotating {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.rotating {
  -webkit-animation: rotating 5s alternate infinite;
  animation: rotating 5s alternate infinite;
}

/*** back to top **/
.back-to-top {
  background-color: rgba(205, 176, 145, 0.7);
  width: 45px;
  height: 45px;
  line-height: 45px;
  border: 2px solid #CDB091;
  border-radius: 45px;
  text-align: center;
  display: none;
  position: fixed;
  z-index: 999;
  right: 15px;
  bottom: 15px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

@media (max-width: 991px) {
  .back-to-top {
    width: 35px;
    height: 35px;
    line-height: 35px;
  }
}

.back-to-top:hover {
  background-color: #CDB091;
}

.back-to-top i {
  font-size: 18px;
  font-size: 1.2rem;
  color: #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -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;
  -webkit-transition: all 0.3s ease-out;
  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 !important;
}

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

.wpo-section-title,
.wpo-section-title-s2,
.wpo-section-title-s3 {
  margin-bottom: 60px;
  position: relative;
  padding-left: 25px;
}

.wpo-section-title:before,
.wpo-section-title-s2:before,
.wpo-section-title-s3:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background: #CDB091;
  content: "";
}

@media (max-width: 991px) {
  .wpo-section-title,
  .wpo-section-title-s2,
  .wpo-section-title-s3 {
    margin-bottom: 40px;
  }
}

@media (max-width: 575px) {
  .wpo-section-title,
  .wpo-section-title-s2,
  .wpo-section-title-s3 {
    margin-bottom: 30px;
  }
}

.wpo-section-title span,
.wpo-section-title-s2 span,
.wpo-section-title-s3 span {
  font-weight: 400;
  font-size: 20px;
  line-height: 25px;
  color: #CDB091;
}

.wpo-section-title h2,
.wpo-section-title-s2 h2,
.wpo-section-title-s3 h2 {
  font-weight: 400;
  font-size: 40px;
  line-height: 55px;
  margin: 0;
  position: relative;
  text-transform: capitalize;
  font-family: "DM Serif Text", serif;
  margin-top: 0;
  margin-bottom: 0;
  color: #fff;
}

@media (max-width: 767px) {
  .wpo-section-title h2,
  .wpo-section-title-s2 h2,
  .wpo-section-title-s3 h2 {
    font-size: 32px;
    line-height: 40px;
  }
}

@media (max-width: 330px) {
  .wpo-section-title h2,
  .wpo-section-title-s2 h2,
  .wpo-section-title-s3 h2 {
    font-size: 28px;
  }
}

.wpo-section-title p,
.wpo-section-title-s2 p,
.wpo-section-title-s3 p {
  font-size: 18px;
}

.wpo-section-title-s2,
.wpo-section-title-s3 {
  text-align: center;
  padding-bottom: 20px;
  padding-left: 0;
}

.wpo-section-title-s2:before,
.wpo-section-title-s3:before {
  left: 50%;
  bottom: 0;
  top: auto;
  width: 80px;
  height: 1px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.wpo-section-title-s3 h2 {
  color: #1E2E3E;
}

.theme-btn,
.theme-btn-s2 {
  background: transparent;
  color: #CDB091;
  display: inline-block;
  font-weight: 600;
  padding: 12px 55px 17px;
  border: 1px solid #CDB091;
  border-radius: 0px;
  text-transform: capitalize;
  -webkit-backface-visibility: hidden;
  z-index: 1;
  position: relative;
  font-weight: 400;
  font-size: 20px;
  line-height: 25px;
  font-size: 1.33333rem;
  -webkit-transition: all .3s;
  transition: all .3s;
}

@media (max-width: 991px) {
  .theme-btn,
  .theme-btn-s2 {
    font-size: 18px;
    font-size: 1.2rem;
  }
}

@media (max-width: 767px) {
  .theme-btn,
  .theme-btn-s2 {
    padding: 9px 18px 14px;
    font-size: 14px;
  }
}

.theme-btn:after,
.theme-btn-s2:after {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  border-radius: 0px;
  background: #c09c75;
  -webkit-transition: opacity 0.5s ease-out;
  transition: opacity 0.5s ease-out;
  z-index: -1;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.theme-btn:before,
.theme-btn-s2:before {
  position: absolute;
  content: '';
  top: -6px;
  right: -7px;
  width: 101%;
  height: 101%;
  border-radius: 0px;
  z-index: -1;
  border: 1px solid #CDB091;
}

.theme-btn:hover, .theme-btn:focus, .theme-btn:active,
.theme-btn-s2:hover,
.theme-btn-s2:focus,
.theme-btn-s2:active {
  color: #fff;
  padding: 14.5px 55px;
}

.theme-btn:hover:after, .theme-btn:focus:after, .theme-btn:active:after,
.theme-btn-s2:hover:after,
.theme-btn-s2:focus:after,
.theme-btn-s2:active:after {
  height: 100%;
}

@media (max-width: 767px) {
  .theme-btn:hover, .theme-btn:focus, .theme-btn:active,
  .theme-btn-s2:hover,
  .theme-btn-s2:focus,
  .theme-btn-s2:active {
    padding: 11.5px 18px;
  }
}

.theme-btn-s2 {
  background: #CDB091;
  color: #fff;
  display: inline-block;
  border: 1px solid #CDB091;
  text-transform: capitalize;
  padding: 12px 55px;
  z-index: 1;
  position: relative;
}

@media (max-width: 991px) {
  .theme-btn-s2 {
    font-size: 14px;
    font-size: 0.93333rem;
  }
}

@media (max-width: 767px) {
  .theme-btn-s2 {
    padding: 12px 18px;
    font-size: 13px;
  }
}

.theme-btn-s2:hover, .theme-btn-s2:focus, .theme-btn-s2:active {
  background: #c5a37f;
  color: #fff;
  padding: 12px 55px;
}

@media (max-width: 767px) {
  .theme-btn-s2:hover, .theme-btn-s2:focus, .theme-btn-s2:active {
    padding: 12px 18px;
  }
}

.theme-btn-s2:hover:after {
  opacity: 1;
}

.view-cart-btn {
  display: block;
  margin-top: 15px;
  border-radius: 5px;
  padding: 10px 45px;
  background: #CDB091;
  color: #fff;
}

.view-cart-btn:after {
  display: none;
}

.view-cart-btn:before {
  display: none;
}

.view-cart-btn:hover {
  background-color: #c09c75;
}

.view-cart-btn.s1 {
  background: #ddd;
}

.view-cart-btn.s1:hover {
  background-color: #c9c9c9;
}

.form input,
.form textarea,
.form select {
  border-color: #bfbfbf;
  border-radius: 0;
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #595959;
  font-style: normal;
}

.form input:focus,
.form textarea:focus,
.form select:focus {
  border-color: #CDB091;
  -webkit-box-shadow: 0 0 5px 0 #ddc9b4;
  -o-box-shadow: 0 0 5px 0 #ddc9b4;
  -ms-box-shadow: 0 0 5px 0 #ddc9b4;
  box-shadow: 0 0 5px 0 #ddc9b4;
}

.form ::-webkit-input-placeholder {
  font-style: 14px;
  font-style: italic;
  color: #595959;
}

.form :-moz-placeholder {
  font-style: 14px;
  font-style: italic;
  color: #595959;
}

.form ::-moz-placeholder {
  font-style: 14px;
  font-style: italic;
  color: #595959;
}

.form :-ms-input-placeholder {
  font-style: 14px;
  font-style: italic;
  color: #595959;
}

.form select {
  font-style: normal;
  background: url(../images/select-icon.png) no-repeat right center;
  display: inline-block;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  appearance: none;
  cursor: pointer;
}

.form select::-ms-expand {
  /* for IE 11 */
  display: none;
}

.form ::-webkit-input-placeholder {
  /* Edge */
  font-style: normal;
}

.form :-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  font-style: normal;
}

.form ::-ms-input-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: #ddc9b4;
  width: 35px;
  height: 35px;
  line-height: 35px;
  display: block;
  color: #fff;
  text-align: center;
}

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

.wpo-page-title {
  background: url(../images/page-title.jpg) no-repeat center top/cover;
  min-height: 400px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  z-index: 1;
}

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

.wpo-page-title:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #001635;
  content: "";
  z-index: -1;
  opacity: .30;
}

.wpo-page-title .wpo-breadcumb-wrap h2 {
  color: #fff;
  margin-bottom: 20px;
  font-weight: 400;
  font-size: 50px;
  line-height: 69px;
}

@media (min-width: 991px) {
  .wpo-page-title .wpo-breadcumb-wrap h2 {
    margin-top: -20px;
  }
}

@media (max-width: 767px) {
  .wpo-page-title .wpo-breadcumb-wrap h2 {
    font-size: 30px;
    line-height: 35px;
    margin-bottom: 10px;
  }
}

.wpo-page-title .wpo-breadcumb-wrap ol {
  padding-left: 0;
  margin-bottom: 0;
}

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

@media (max-width: 767px) {
  .wpo-page-title .wpo-breadcumb-wrap ol li {
    font-size: 18px;
  }
}

.wpo-page-title .wpo-breadcumb-wrap ol li:after {
  content: "-";
  position: relative;
  left: 7px;
}

.wpo-page-title .wpo-breadcumb-wrap ol li:last-child span {
  color: #cbd4fd;
}

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

.wpo-page-title .wpo-breadcumb-wrap ol li a {
  color: #fff;
  font-size: 20px;
  -webkit-transition: all .3s;
  transition: all .3s;
}

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

.preloader {
  background-color: #1E2E3E;
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 1000;
  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 {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: inline-block;
  vertical-align: middle;
  text-align: left;
  font-size: 0;
}

.preloader * {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.preloader .loader-circle {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  -webkit-box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
          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;
  -webkit-transform-origin: 60px 60px;
  transform-origin: 60px 60px;
  -webkit-mask-image: -webkit-linear-gradient(top, #000000, rgba(0, 0, 0, 0));
  -webkit-animation: rotate 1.2s infinite linear;
  animation: rotate 1.2s infinite linear;
}

.preloader .loader-line-mask .loader-line {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  -webkit-box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5);
          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%;
  -webkit-transform: scale3d(0.5, 0.5, 1);
  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;
}

@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.preloader [not-existing] {
  zoom: 1;
}

.preloader lesshat-selector {
  -lh-property: 0;
}

@-webkit-keyframes fade {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.25;
  }
}

@keyframes fade {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.25;
  }
}

.preloader [not-existing] {
  zoom: 1;
}

.preloader lesshat-selector {
  -lh-property: 0;
}

@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.preloader [not-existing] {
  zoom: 1;
}

/*------------------------------------
	blog sidebar
------------------------------------*/
.blog-sidebar {
  /*** search-widget ***/
  /*** about-widget ***/
  /*** category-widget ***/
  /*** recent-post-widget ***/
  /*** instagram-widget ***/
  /*** tag-widget ***/
  /*** wpo-contact-widget ***/
}

@media screen and (min-width: 992px) {
  .blog-sidebar {
    padding-left: 45px;
  }
}

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

@media (max-width: 767px) {
  .blog-sidebar {
    margin-top: 60px;
  }
}

.blog-sidebar .widget {
  background: #f5f5f5;
  padding: 40px;
  border-radius: 5px;
}

@media (max-width: 1400px) {
  .blog-sidebar .widget {
    padding: 25px;
  }
}

.blog-sidebar .widget h3 {
  font-size: 25px;
  font-size: 1.66667rem;
  color: #1E2E3E;
  margin: 0 0 1.3em;
  position: relative;
  text-transform: capitalize;
  font-family: "DM Serif Text", serif;
  font-weight: 400;
  border-radius: 5px;
}

.blog-sidebar > .widget + .widget {
  margin-top: 65px;
}

.blog-sidebar .search-widget form div {
  position: relative;
}

.blog-sidebar .search-widget input {
  background-color: #fff;
  height: 70px;
  font-size: 16px;
  font-size: 1.06667rem;
  padding: 6px 50px 6px 20px;
  border: 0;
  border-radius: 5px;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.blog-sidebar .search-widget input:focus {
  background-color: #fff;
}

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

.blog-sidebar .about-widget {
  text-align: center;
  background-color: #f5f5f5;
  padding: 45px;
  position: relative;
  z-index: 1;
}

@media (max-width: 1200px) {
  .blog-sidebar .about-widget {
    padding: 35px;
  }
}

.blog-sidebar .about-widget .aw-shape {
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}

.blog-sidebar .about-widget .img-holder {
  margin-bottom: 25px;
}

.blog-sidebar .about-widget .img-holder img {
  border-radius: 50%;
  width: 100%;
  max-width: 200px;
}

.blog-sidebar .about-widget ul {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.blog-sidebar .about-widget ul li {
  margin-right: 10px;
}

.blog-sidebar .about-widget ul li:last-child {
  margin-right: 0;
}

.blog-sidebar .about-widget ul li a {
  text-decoration: none;
  display: block;
  width: 40px;
  height: 40px;
  line-height: 44px;
  background-color: #fff;
  border-radius: 50%;
}

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

.blog-sidebar .about-widget h4 {
  font-size: 25px;
  font-weight: 400;
  margin-bottom: 15px;
}

.blog-sidebar .about-widget p {
  font-size: 15px;
  font-size: 1rem;
  margin-bottom: 1.2em;
}

.blog-sidebar .about-widget a {
  font-family: "DM Serif Text", serif;
  font-size: 14px;
  font-size: 0.93333rem;
  color: #1E2E3E;
  text-decoration: underline;
}

.blog-sidebar .about-widget a:hover {
  color: #CDB091;
}

.blog-sidebar .category-widget ul {
  list-style: none;
}

.blog-sidebar .category-widget ul li {
  font-size: 19px;
  font-size: 1.26667rem;
  position: relative;
}

@media (max-width: 767px) {
  .blog-sidebar .category-widget ul li {
    font-size: 16px;
    font-size: 1.06667rem;
  }
}

.blog-sidebar .category-widget ul li span {
  position: absolute;
  right: 0;
}

.blog-sidebar .category-widget ul > li + li {
  margin-top: 12px;
}

.blog-sidebar .category-widget ul a {
  display: block;
  color: #474f62;
  font-size: 16px;
  padding: 20px;
  background: #fff;
  padding-left: 60px;
  position: relative;
  border-radius: 5px;
  font-weight: 600;
}

@media (max-width: 1200px) {
  .blog-sidebar .category-widget ul a {
    padding: 10px;
    padding-left: 25px;
    font-size: 14px;
  }
}

.blog-sidebar .category-widget ul a:after {
  position: absolute;
  left: 30px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "\f11c";
  font-family: flaticon_law;
  transform: translateY(-50%);
}

@media (max-width: 1200px) {
  .blog-sidebar .category-widget ul a:after {
    left: 5px;
  }
}

.blog-sidebar .category-widget ul a:hover,
.blog-sidebar .category-widget ul a.active,
.blog-sidebar .category-widget ul li:hover:before {
  background: #CDB091;
  color: #fff;
}

.blog-sidebar .recent-post-widget .post {
  overflow: hidden;
}

.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 {
  border-radius: 6px;
}

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

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

.blog-sidebar .recent-post-widget .post h4 {
  font-size: 16px;
  font-size: 1.06667rem;
  font-weight: 500;
  line-height: 1.3em;
  margin: 0 0 0.3em;
  font-family: "Mulish", sans-serif;
}

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

@media (max-width: 767px) {
  .blog-sidebar .recent-post-widget .post h4 {
    font-size: 16px;
    font-size: 1.06667rem;
  }
}

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

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

.blog-sidebar .recent-post-widget .post .details .date {
  font-size: 13px;
  font-size: 0.86667rem;
  color: #CDB091;
}

.blog-sidebar .recent-post-widget .post .details .date i {
  display: inline-block;
  padding-right: 7px;
}

.blog-sidebar .wpo-instagram-widget ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  list-style: none;
}

.blog-sidebar .wpo-instagram-widget ul li {
  -ms-flex: 0 0 33.33%;
  -webkit-box-flex: 0;
  flex: 0 0 33.33%;
  max-width: 33.33%;
  margin-bottom: 5px;
  padding: 0px 3px;
}

.blog-sidebar .wpo-instagram-widget ul li img {
  width: 100%;
  border-radius: 6px;
}

.blog-sidebar .tag-widget ul {
  overflow: hidden;
  list-style: none;
}

.blog-sidebar .tag-widget ul li {
  float: left;
  margin: 0 8px 8px 0;
}

.blog-sidebar .tag-widget ul li a {
  font-size: 15px;
  font-size: 1rem;
  display: inline-block;
  padding: 5px 10px;
  color: #1E2E3E;
  background: #fff;
  border-radius: 5px;
}

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

.blog-sidebar .wpo-contact-widget {
  border: 0;
  background: #172533;
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 40px;
  margin-top: 65px;
}

@media (max-width: 1199px) {
  .blog-sidebar .wpo-contact-widget {
    padding: 30px 20px;
  }
}

.blog-sidebar .wpo-contact-widget i {
  display: block;
  font-size: 50px;
  color: #CDB091;
}

.blog-sidebar .wpo-contact-widget span {
  font-weight: 400;
  font-size: 22px;
  line-height: 30px;
  text-align: center;
  font-family: "DM Serif Text", serif;
  color: #fff;
  display: block;
  margin-bottom: 5px;
}

.blog-sidebar .wpo-contact-widget h2 {
  font-weight: 400;
  font-size: 40px;
  line-height: 55px;
  color: #fff;
  margin-bottom: 20px;
}

@media (max-width: 1199px) {
  .blog-sidebar .wpo-contact-widget h2 {
    font-size: 30px;
  }
}

.blog-sidebar .wpo-contact-widget p {
  color: #fff;
  font-size: 18px;
}

.blog-sidebar .wpo-contact-widget a {
  display: inline-block;
  padding: 10px 30px;
  background: #CDB091;
  font-weight: 400;
  font-size: 20px;
  line-height: 27px;
  position: relative;
  margin-top: 10px;
  color: #1E2E3E;
  font-family: "DM Serif Text", serif;
}

@media screen and (min-width: 992px) {
  .wpo-blog-pg-section.blog-pg-left-sidebar .blog-sidebar {
    padding-left: 0px;
    padding-right: 45px;
  }
}

@media screen and (min-width: 992px) {
  .wpo-blog-single-section.wpo-blog-single-left-sidebar-section .blog-sidebar {
    padding-left: 0px;
    padding-right: 45px;
  }
}

/**** 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: 1.06667rem;
  font-weight: 600;
  color: #1E2E3E;
  background: #ebf4fc;
  display: block;
}

@media (max-width: 991px) {
  .pagination-wrapper .pg-pagination li a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 15px;
    font-size: 1rem;
  }
}

.pagination-wrapper .pg-pagination .active a,
.pagination-wrapper .pg-pagination li a:hover {
  background: #CDB091;
  border-color: #CDB091;
  color: #fff;
}

.pagination-wrapper .pg-pagination .fi:before {
  font-size: 15px;
  font-size: 1rem;
}

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

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

@media screen and (min-width: 1200px) {
  .pagination-wrapper-right {
    padding-right: 50px;
  }
}

@media (max-width: 991px) {
  .pagination-wrapper-right {
    margin-top: 45px;
    text-align: left;
  }
}

/*--------------------------------------------------------------
2. header
--------------------------------------------------------------*/
/*-- 2.1 topbar --*/
.topbar {
  background: #001635;
  padding: 0 130px;
}

@media (max-width: 1600px) {
  .topbar {
    padding: 0 30px;
  }
}

@media (max-width: 1500px) {
  .topbar {
    padding: 0 10px;
  }
}

@media (max-width: 991px) {
  .topbar {
    text-align: center;
    padding: 0;
  }
}

.topbar {
  font-size: 16px;
  color: #e5e3e3;
  margin: 0;
}

.topbar ul {
  overflow: hidden;
  list-style: none;
  float: right;
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .topbar ul {
    float: none;
    display: inline-block;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.topbar ul li {
  font-size: 16px;
  float: left;
  padding: 10px 10px;
  color: #e5e3e3;
  line-height: 1em;
}

@media (max-width: 1399px) {
  .topbar ul li {
    font-size: 14px;
  }
}

@media (max-width: 991px) {
  .topbar ul li {
    padding: 15px 10px;
  }
}

.topbar .contact-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 991px) {
  .topbar .contact-info {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media (max-width: 767px) {
  .topbar .contact-info {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.topbar .contact-info li {
  position: relative;
}

.topbar .contact-info ul.social {
  margin-right: 20px;
}

@media (max-width: 475px) {
  .topbar .contact-info ul.social {
    margin-right: 0;
  }
}

.topbar .contact-info ul.social li a {
  display: block;
  text-align: center;
  font-size: 14px;
}

.topbar .contact-info ul.social li a:hover {
  color: #fff;
}

.topbar .contact-info .top-btn {
  padding: 12px 20px;
  background: #CDB091;
  font-weight: 700;
  font-size: 17px;
  line-height: 21px;
  text-align: center;
  color: #fff;
}

.topbar .contact-info ul li a {
  color: #e4e4e4;
}

.topbar .contact-info ul li a:hover {
  color: #CDB091;
}

.topbar ul li:first-child {
  padding-left: 0;
}

.topbar .contact-intro ul {
  float: left;
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .topbar .contact-intro ul {
    float: none;
  }
}

@media (max-width: 1200px) {
  .topbar ul li {
    font-size: 12px;
    padding: 10px 4px;
  }
}

@media (max-width: 991px) {
  .topbar ul li {
    font-size: 13px;
  }
  .topbar {
    padding: 10px 0;
  }
}

@media (max-width: 767px) {
  .topbar ul li {
    float: left;
    border: none;
    padding: 8px 6px;
    font-size: 13px;
  }
}

@media (max-width: 590px) {
  .topbar ul li {
    float: none;
  }
  .topbar .contact-info ul li {
    float: left;
  }
  .topbar ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.topbar .theme-btn-s2 {
  padding: 15px 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: -3px;
  color: #fff !important;
}

.topbar ul .fi:before {
  position: relative;
  top: 1px;
  display: inline-block;
  padding-right: 5px;
}

.topbar ul .fi:before {
  font-size: 15px;
  font-size: 1rem;
  color: #fff;
}

/* 2.2 navigation */
.wpo-site-header {
  /* navigation open and close btn hide for width screen */
  /* style for navigation less than 992px */
  /*navbar collaps less then 992px*/
  /*** cart-search-contact ***/
  background-color: #fff;
}

.wpo-site-header .navigation {
  background-color: #fff;
  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;
  -webkit-transition: all 1s;
  transition: all 1s;
  -webkit-box-shadow: 0 -5px 15px #086ad84a;
  box-shadow: 0 -5px 15px #086ad84a;
}

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

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

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

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

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

.wpo-site-header #navbar {
  -webkit-transition: all 0.5s;
  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 ***/
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .wpo-site-header #navbar li {
    position: relative;
  }
  .wpo-site-header #navbar > ul > li > a:before {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 4px;
    background: #CDB091;
    content: "";
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all .3s;
    transition: all .3s;
    border-radius: 3px;
  }
  .wpo-site-header #navbar > ul > li > a:hover:before,
  .wpo-site-header #navbar > ul > li > a.active:before {
    opacity: 1;
    visibility: visible;
  }
  .wpo-site-header #navbar > ul > li > .sub-menu > .menu-item-has-children > a {
    position: relative;
  }
  .wpo-site-header #navbar > ul > li > .sub-menu > .menu-item-has-children > a:before {
    font-family: "themify";
    content: "\e649";
    font-size: 11px;
    font-size: 0.73333rem;
    position: absolute;
    right: 15px;
    top: 58%;
    -webkit-transform: translateY(-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%);
    -moz-transform: scaleY(100%);
    -ms-transform: scaleY(100%);
    -o-transform: scaleY(100%);
  }
  .wpo-site-header #navbar .sub-menu > li:hover > .sub-menu {
    left: 100%;
    visibility: visible;
    opacity: 1;
  }
}

.wpo-site-header .container-fluid {
  padding-right: 0;
}

@media (max-width: 991px) {
  .wpo-site-header {
    /* class for show hide navigation */
  }
  .wpo-site-header .container {
    width: 100%;
    max-width: 100%;
  }
  .wpo-site-header .header-right {
    right: -10px;
  }
  .wpo-site-header .navbar-header button span {
    background-color: #fff;
    width: 20px;
    display: block;
    height: 2px;
    margin-bottom: 5px;
  }
  .wpo-site-header .navbar-header button span:last-child {
    margin: 0;
  }
}

.wpo-site-header #navbar ul {
  list-style: none;
}

@media (max-width: 991px) and (max-width: 991px) {
  .wpo-site-header #navbar {
    top: 0;
    visibility: visible;
    opacity: 1;
  }
}

@media (max-width: 991px) {
  .wpo-site-header #navbar > ul {
    z-index: 101;
  }
  .wpo-site-header #navbar ul a {
    color: #000;
  }
  .wpo-site-header #navbar ul a:hover,
  .wpo-site-header #navbar ul li.current a {
    color: #CDB091;
  }
  .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 {
    -webkit-transition: all 0.3s;
    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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  z-index: 991;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          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;
  margin-right: 8px;
}

.wpo-site-header .header-right .close-form .theme-btn {
  padding: 10px 25px;
}

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

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

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

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

.wpo-site-header .header-right .header-search-form-wrapper {
  position: relative;
}

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

.wpo-site-header .header-right .search-toggle-btn,
.wpo-site-header .header-right .cart-toggle-btn {
  background: transparent;
  line-height: 0.66em;
  color: #232f4b;
  border: 0;
  position: relative;
}

.wpo-site-header .header-right .search-toggle-btn .fi:before,
.wpo-site-header .header-right .cart-toggle-btn .fi:before {
  font-size: 20px;
  color: #fff;
}

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

@media (max-width: 575px) {
  .wpo-site-header .header-right .search-toggle-btn {
    padding-right: 5px;
  }
}

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

.cart-search-contact .fi {
  font-size: 30px;
  font-size: 2rem;
  color: #1E2E3E;
}

.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;
  -webkit-transform: scale(0);
          transform: scale(0);
  opacity: 0;
  visibility: hidden;
  background: #fff;
  padding: 30px;
  border-radius: 6px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-box-shadow: -2px 18px 40px -9px #999999;
          box-shadow: -2px 18px 40px -9px #999999;
}

@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: 18px;
  font-size: 1.2rem;
}

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

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

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

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

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

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

.mini-cart .cart-count {
  background: #CDB091;
  width: 19px;
  height: 19px;
  font-size: 10px;
  font-size: 0.53333rem;
  line-height: 17px;
  color: white;
  position: absolute;
  top: -15px;
  right: -10px;
  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;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-box-shadow: -2px 18px 40px -9px #999999;
          box-shadow: -2px 18px 40px -9px #999999;
}

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

.mini-cart-content .mini-cart-close {
  display: block;
  width: 40px;
  height: 40px;
  background-color: #333333;
  color: white;
  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: 1rem;
  font-weight: 500;
  color: #1E2E3E;
  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: 14px;
  font-size: 0.93333rem;
  font-weight: 600;
  text-align: left;
  color: #1E2E3E;
}

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

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

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

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

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

.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: 16px;
  font-size: 1.06667rem;
  font-weight: 600;
  color: #1E2E3E;
  display: block;
  margin-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

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

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

@media (max-width: 991px) {
  .page-wrapper {
    -webkit-transition: all 0.3s;
    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;
    -webkit-transition: all 0.3s;
    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;
  -webkit-box-shadow: none;
  box-shadow: none;
}

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

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

.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 {
  background-color: #fff;
  margin-bottom: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
}

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

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

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

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

@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 {
    font-weight: 400;
    font-size: 18px;
    line-height: 23px;
    padding: 45px 22px;
    display: block;
    color: #232f4b;
    position: relative;
    text-transform: uppercase;
  }
}

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

@media screen and (min-width: 992px) {
  .wpo-site-header #navbar > ul .sub-menu {
    background-color: #fff;
    -webkit-box-shadow: 0px 2px 20px 0px rgba(62, 65, 159, 0.09);
            box-shadow: 0px 2px 20px 0px rgba(62, 65, 159, 0.09);
    width: 242px;
    position: absolute;
    padding: 20px 0;
    left: 0;
    top: 110%;
    z-index: 10;
    visibility: hidden;
    opacity: 0;
    transform: scaleY(0);
    -webkit-transform: scaleY(0);
    -moz-transform: scaleY(0);
    -ms-transform: scaleY(0);
    -o-transform: scaleY(0);
    transform-origin: center top 0;
    -webkit-transform-origin: center top 0;
    -moz-transform-origin: center top 0;
    -ms-transform-origin: center top 0;
    -o-transform-origin: center top 0;
    transition: all 0.3s ease-in-out 0s;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    -ms-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
  }
  .wpo-site-header #navbar > ul > li .sub-menu a {
    font-size: 16px;
    font-size: 1.06667rem;
    display: block;
    padding: 10px 25px;
    color: #1E2E3E;
    position: relative;
    overflow: hidden;
    font-weight: 700;
  }
  .wpo-site-header #navbar > ul > li .sub-menu a:after {
    position: absolute;
    left: 25px;
    bottom: 4px;
    width: 0px;
    height: 2px;
    content: "";
    background: #CDB091;
    -webkit-transition: all .3s;
    transition: all .3s;
    opacity: 0;
    visibility: hidden;
  }
  .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 {
    -webkit-transform: unset;
            transform: unset;
    left: 110%;
    top: 0;
  }
  .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: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .wpo-site-header #navbar > ul > li:hover > .sub-menu {
    top: 100%;
    visibility: visible;
    opacity: 1;
  }
  .wpo-site-header #navbar .sub-menu > li:hover > .sub-menu {
    left: 100%;
    visibility: visible;
    opacity: 1;
  }
}

@media (max-width: 991px) {
  .wpo-site-header #navbar > ul > li a {
    display: block;
    font-size: 15px;
    font-size: 1rem;
    color: #fff;
    font-weight: 600;
  }
  .wpo-site-header #navbar > ul > li a:hover, .wpo-site-header #navbar > ul > li a.active {
    color: #fff;
  }
  .wpo-site-header #navbar > ul .sub-menu > li:last-child {
    border-bottom: 0;
  }
  .wpo-site-header #navbar > ul > li > .sub-menu a {
    padding: 8px 15px 8px 45px;
  }
  .wpo-site-header #navbar > ul > li > .sub-menu .sub-menu a {
    padding: 8px 15px 8px 65px;
  }
  .wpo-site-header #navbar > ul .menu-item-has-children > a {
    position: relative;
    color: #ddd;
  }
  .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.73333rem;
    position: absolute;
    right: 30px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .wpo-site-header #navbar > ul .menu-item-has-children > a.rotate:before {
    -webkit-transform: rotate(90deg);
            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;
  }
  .wpo-site-header .mobail-menu button:focus {
    outline: none;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .wpo-site-header .mobail-menu button span {
    background-color: #fff;
    width: 20px;
    display: block;
    height: 2px;
    margin-bottom: 5px;
  }
  .wpo-site-header .mobail-menu button span:last-child {
    margin: 0;
  }
  .wpo-site-header #navbar {
    background: #1E2E3E;
    display: block !important;
    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: #CDB091;
  }
  .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 .slideInn {
    left: 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
  .wpo-site-header .navbar-toggler .first-angle,
  .wpo-site-header .navbar-toggler .last-angle {
    -webkit-transition: all 0.3s;
    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 img {
  max-width: 170px;
}

@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: 440px) {
  .wpo-site-header .navbar-header .navbar-brand img {
    max-width: 170px;
  }
}

@media (max-width: 370px) {
  .wpo-site-header .navbar-header .navbar-brand img {
    max-width: 140px;
  }
}

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

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

@media (max-width: 1400px) {
  .wpo-site-header #navbar > ul > li > a {
    padding: 30px 10px;
    font-size: 18px;
  }
}

@media (max-width: 1200px) {
  .wpo-site-header #navbar > ul > li > a {
    padding: 30px 6px;
    font-size: 16px;
  }
}

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

@media (max-width: 767px) {
  .header-right .theme-btn {
    padding: 20px 12px;
  }
  .wpo-site-header .header-right .close-form {
    display: none;
  }
}

.wpo-header-style-1 {
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 11;
  background: transparent;
}

@media (max-width: 991px) {
  .wpo-header-style-1 {
    position: relative;
    background-color: #1E2E3E;
  }
}

.wpo-header-style-1 .navigation {
  background: transparent;
}

@media screen and (min-width: 992px) {
  .wpo-header-style-1 .navigation #navbar {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.wpo-header-style-1 .navigation #navbar ul.nav {
  padding-right: 20px;
}

@media (min-width: 991px) {
  .wpo-header-style-1 .navigation #navbar ul.nav {
    background: #1E2E3E;
  }
}

@media (max-width: 1199px) {
  .wpo-header-style-1 .navigation #navbar ul.nav {
    margin-left: 30px;
  }
}

@media (max-width: 991px) {
  .wpo-header-style-1 .navigation #navbar ul.nav {
    margin-left: 0px;
  }
}

@media (min-width: 991px) {
  .wpo-header-style-1 .navigation #navbar ul.nav .sub-menu {
    background: #26394c;
  }
}

.wpo-header-style-1 .navigation #navbar ul.nav li a {
  color: #fff;
}

.wpo-header-style-1 .navigation.sticky-header {
  background: #192634;
}

.wpo-header-style-1 .navigation.sticky-header #navbar ul.nav {
  background: #192634;
}

.wpo-header-style-2 {
  position: relative;
  width: 100%;
  z-index: 99;
  background: #1E2E3E;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.wpo-header-style-2 .navigation {
  background: transparent;
  border-bottom: 1px solid #41586F;
}

.wpo-header-style-2 .navigation.sticky-on {
  background: #192634;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-bottom: 0;
}

@media (max-width: 991px) {
  .wpo-header-style-2 .navigation #navbar {
    background: #26394c;
  }
}

@media (min-width: 991px) {
  .wpo-header-style-2 .navigation #navbar ul.nav .sub-menu {
    background: #26394c;
  }
}

.wpo-header-style-2 .navigation #navbar ul.nav .sub-menu li a {
  color: #fff;
}

.wpo-header-style-2 #navbar > ul > li > a {
  color: #fff;
}

.wpo-header-style-3 {
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 99;
  background: rgba(0, 22, 53, 0.3);
}

@media (max-width: 991px) {
  .wpo-header-style-3 {
    position: relative;
    background: #082846;
  }
}

.wpo-header-style-3 .navigation {
  background: transparent;
}

@media (max-width: 991px) {
  .wpo-header-style-3 .navigation {
    background: #082846;
  }
}

@media screen and (min-width: 992px) {
  .wpo-header-style-3 .navigation #navbar {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media (max-width: 991px) {
  .wpo-header-style-3 .navigation #navbar ul.nav {
    background: #1E2E3E;
  }
}

@media (min-width: 991px) {
  .wpo-header-style-3 .navigation #navbar ul.nav .sub-menu {
    background: #163862;
  }
}

.wpo-header-style-3 .navigation #navbar ul.nav .sub-menu li a {
  color: #fff;
}

.wpo-header-style-3 .navigation #navbar ul.nav li a {
  color: #fff;
}

.wpo-header-style-3 .navigation.sticky-header {
  background: #192634;
}

@media (max-width: 991px) {
  .wpo-header-style-3 .navigation.sticky-header {
    background: #082846;
  }
}

.wpo-header-style-3 .navigation.sticky-header #navbar ul.nav {
  background: #192634;
}

.wpo-header-style-1 .mini-cart-content,
.wpo-header-style-2 .mini-cart-content,
.wpo-header-style-3 .mini-cart-content {
  background: #26394c;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.wpo-header-style-1 .mini-cart-content .mini-cart-close,
.wpo-header-style-2 .mini-cart-content .mini-cart-close,
.wpo-header-style-3 .mini-cart-content .mini-cart-close {
  background: #CDB091;
}

.wpo-header-style-1 .mini-cart-content .mini-cart-item-des a,
.wpo-header-style-2 .mini-cart-content .mini-cart-item-des a,
.wpo-header-style-3 .mini-cart-content .mini-cart-item-des a {
  color: #fff;
}

.wpo-header-style-1 .mini-cart-content .mini-cart-action .mini-checkout-price,
.wpo-header-style-2 .mini-cart-content .mini-cart-action .mini-checkout-price,
.wpo-header-style-3 .mini-cart-content .mini-cart-action .mini-checkout-price {
  color: #fff;
}

.wpo-header-style-1 .mini-cart-content .mini-cart-item-image,
.wpo-header-style-2 .mini-cart-content .mini-cart-item-image,
.wpo-header-style-3 .mini-cart-content .mini-cart-item-image {
  border: 2px solid #3a5570;
}

.wpo-header-style-1 .mini-cart-content .mini-cart-item + .mini-cart-item,
.wpo-header-style-2 .mini-cart-content .mini-cart-item + .mini-cart-item,
.wpo-header-style-3 .mini-cart-content .mini-cart-item + .mini-cart-item {
  border-top: 1px solid #2d455c;
}

.wpo-header-style-1 .mini-cart-content .mini-cart-item-des .mini-cart-item-price,
.wpo-header-style-2 .mini-cart-content .mini-cart-item-des .mini-cart-item-price,
.wpo-header-style-3 .mini-cart-content .mini-cart-item-des .mini-cart-item-price {
  color: #ddd;
}

.wpo-header-style-1 .mini-cart-content .view-cart-btn.s1,
.wpo-header-style-2 .mini-cart-content .view-cart-btn.s1,
.wpo-header-style-3 .mini-cart-content .view-cart-btn.s1 {
  background: #fff;
  color: #CDB091;
}

.wpo-header-style-1 .mini-cart-content .view-cart-btn.s1:hover,
.wpo-header-style-2 .mini-cart-content .view-cart-btn.s1:hover,
.wpo-header-style-3 .mini-cart-content .view-cart-btn.s1:hover {
  background-color: #ebebeb;
}

.wpo-header-style-1 .header-search-form,
.wpo-header-style-2 .header-search-form,
.wpo-header-style-3 .header-search-form {
  background: #26394c;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.wpo-header-style-1 .header-search-form input,
.wpo-header-style-2 .header-search-form input,
.wpo-header-style-3 .header-search-form input {
  background: #26394c;
  border-color: #2d455c;
  color: #fff;
}

.wpo-header-style-1 .header-search-form input::-webkit-input-placeholder,
.wpo-header-style-2 .header-search-form input::-webkit-input-placeholder,
.wpo-header-style-3 .header-search-form input::-webkit-input-placeholder {
  color: #fff;
}

.wpo-header-style-1 .header-search-form input:-ms-input-placeholder,
.wpo-header-style-2 .header-search-form input:-ms-input-placeholder,
.wpo-header-style-3 .header-search-form input:-ms-input-placeholder {
  color: #fff;
}

.wpo-header-style-1 .header-search-form input::-ms-input-placeholder,
.wpo-header-style-2 .header-search-form input::-ms-input-placeholder,
.wpo-header-style-3 .header-search-form input::-ms-input-placeholder {
  color: #fff;
}

.wpo-header-style-1 .header-search-form input::placeholder,
.wpo-header-style-2 .header-search-form input::placeholder,
.wpo-header-style-3 .header-search-form input::placeholder {
  color: #fff;
}

.wpo-header-style-1 .header-search-form .fi,
.wpo-header-style-2 .header-search-form .fi,
.wpo-header-style-3 .header-search-form .fi {
  color: #fff;
}

.wpo-header-s4 {
  position: absolute;
  width: 100%;
  z-index: 11;
}

@media (max-width: 991px) {
  .wpo-header-s4 {
    position: relative;
  }
}

.wpo-header-s4 .topbar {
  background: rgba(0, 22, 53, 0.3);
}

@media (max-width: 991px) {
  .wpo-header-s4 .topbar {
    background: #001635;
  }
}

@media (min-width: 991px) {
  .wpo-header-s4 .topbar {
    padding: 0;
    padding-left: 20px;
  }
}

.wpo-header-s4 .topbar .col {
  padding: 0;
}

.wpo-header-s4 .wpo-header-style-4 {
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 11;
  background: rgba(0, 22, 53, 0.3);
  border-top: 2px solid rgba(255, 255, 255, 0.3);
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
}

@media (max-width: 991px) {
  .wpo-header-s4 .wpo-header-style-4 {
    position: relative;
    background: #192634;
  }
}

@media (min-width: 991px) {
  .wpo-header-s4 .wpo-header-style-4 {
    padding: 0;
    padding-left: 20px;
  }
}

@media (min-width: 991px) {
  .wpo-header-s4 .wpo-header-style-4 .container-fluid {
    padding: 0;
  }
}

@media (min-width: 991px) {
  .wpo-header-s4 .wpo-header-style-4 .col {
    padding: 0;
  }
}

.wpo-header-s4 .wpo-header-style-4 .navigation {
  background: transparent;
}

@media (max-width: 991px) {
  .wpo-header-s4 .wpo-header-style-4 .navigation {
    background: #192634;
  }
}

@media screen and (min-width: 992px) {
  .wpo-header-s4 .wpo-header-style-4 .navigation #navbar {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.wpo-header-s4 .wpo-header-style-4 .navigation #navbar ul.nav {
  padding-left: 30px;
  margin-left: -20px;
}

@media (min-width: 991px) {
  .wpo-header-s4 .wpo-header-style-4 .navigation #navbar ul.nav {
    border-left: 2px solid rgba(255, 255, 255, 0.3);
  }
}

@media (max-width: 1499px) {
  .wpo-header-s4 .wpo-header-style-4 .navigation #navbar ul.nav {
    margin-left: 0;
  }
}

@media (max-width: 991px) {
  .wpo-header-s4 .wpo-header-style-4 .navigation #navbar ul.nav {
    padding-left: 0;
  }
}

@media (min-width: 991px) {
  .wpo-header-s4 .wpo-header-style-4 .navigation #navbar ul.nav .sub-menu {
    background: #121c26;
  }
}

.wpo-header-s4 .wpo-header-style-4 .navigation #navbar ul.nav li a {
  color: #fff;
}

.wpo-header-s4 .wpo-header-style-4 .navigation.sticky-header {
  background: #192634;
}

@media (min-width: 991px) {
  .wpo-header-s4 .wpo-header-style-4 .navigation.sticky-header {
    padding: 0;
    padding-left: 20px;
  }
}

.wpo-header-s4 .wpo-header-style-4 .navigation.sticky-header #navbar ul.nav {
  background: #192634;
}

.wpo-header-s4 .wpo-header-style-4 .header-right > div {
  margin-right: 0;
}

.wpo-header-s4 .wpo-header-style-4 .header-right .mini-cart .cart-toggle-btn {
  width: 108px;
  height: 118px;
  background: #CDB091;
  text-align: center;
  margin-right: -12px;
  margin-top: -3px;
  border-left: 2px solid rgba(255, 255, 255, 0.3);
  border-top: 2px solid rgba(255, 255, 255, 0.3);
}

@media (max-width: 450px) {
  .wpo-header-s4 .wpo-header-style-4 .header-right .mini-cart .cart-toggle-btn {
    top: -5px;
  }
}

.wpo-header-s4 .wpo-header-style-4 .header-right .mini-cart .cart-toggle-btn .cart-count {
  background: #fff;
  color: #CDB091;
  top: 35px;
  right: 30px;
}

@media (max-width: 1870px) {
  .wpo-header-s4 .wpo-header-style-4 .header-right .mini-cart .cart-toggle-btn .cart-count {
    top: 22px;
    right: 30px;
  }
}

@media (max-width: 1399px) {
  .wpo-header-s4 .wpo-header-style-4 .header-right .mini-cart .cart-toggle-btn .cart-count {
    top: 20px;
    right: 20px;
  }
}

@media (max-width: 991px) {
  .wpo-header-s4 .wpo-header-style-4 .header-right .mini-cart .cart-toggle-btn .cart-count {
    top: 0;
    right: 0;
  }
}

@media (max-width: 1870px) {
  .wpo-header-s4 .wpo-header-style-4 .header-right .mini-cart .cart-toggle-btn {
    height: 100px;
  }
}

@media (max-width: 1499px) {
  .wpo-header-s4 .wpo-header-style-4 .header-right .mini-cart .cart-toggle-btn {
    height: 90px;
  }
}

@media (max-width: 1399px) {
  .wpo-header-s4 .wpo-header-style-4 .header-right .mini-cart .cart-toggle-btn {
    width: 80px;
  }
}

@media (max-width: 991px) {
  .wpo-header-s4 .wpo-header-style-4 .header-right .mini-cart .cart-toggle-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    padding: 0;
    margin: 0;
    text-align: center;
  }
}

@media (max-width: 450px) {
  .wpo-header-s4 .wpo-header-style-4 .header-right .header-cta {
    display: none;
  }
}

.wpo-header-s4 .wpo-header-style-4 .header-right .header-cta a {
  display: block;
  height: 118px;
  background: #CDB091;
  margin-right: -10px;
  margin-top: -2px;
  padding: 30px;
  position: relative;
  width: 330px;
}

@media (max-width: 1870px) {
  .wpo-header-s4 .wpo-header-style-4 .header-right .header-cta a {
    height: 100px;
    padding: 20px;
  }
}

@media (max-width: 1499px) {
  .wpo-header-s4 .wpo-header-style-4 .header-right .header-cta a {
    height: 90px;
  }
}

@media (max-width: 1399px) {
  .wpo-header-s4 .wpo-header-style-4 .header-right .header-cta a {
    width: 300px;
  }
}

@media (max-width: 1199px) {
  .wpo-header-s4 .wpo-header-style-4 .header-right .header-cta a {
    width: 235px;
  }
}

@media (max-width: 991px) {
  .wpo-header-s4 .wpo-header-style-4 .header-right .header-cta a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    padding: 0;
    margin: 0;
    text-align: center;
  }
}

.wpo-header-s4 .wpo-header-style-4 .header-right .header-cta a:before {
  position: absolute;
  right: 0;
  top: 0;
  width: 60px;
  height: 2px;
  content: "";
  background: rgba(255, 255, 255, 0.3);
}

@media (max-width: 1399px) {
  .wpo-header-s4 .wpo-header-style-4 .header-right .header-cta a:before {
    width: 85px;
  }
}

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

.wpo-header-s4 .wpo-header-style-4 .header-right .header-cta a i {
  float: left;
  font-size: 40px;
  color: #fff;
  margin-right: 20px;
}

@media (max-width: 1199px) {
  .wpo-header-s4 .wpo-header-style-4 .header-right .header-cta a i {
    font-size: 30px;
    margin-right: 10px;
    position: relative;
    top: 4px;
  }
}

@media (max-width: 991px) {
  .wpo-header-s4 .wpo-header-style-4 .header-right .header-cta a i {
    margin-right: 0;
    top: 2px;
    right: -9px;
  }
}

.wpo-header-s4 .wpo-header-style-4 .header-right .header-cta a .cta-text {
  margin-top: 10px;
}

@media (max-width: 991px) {
  .wpo-header-s4 .wpo-header-style-4 .header-right .header-cta a .cta-text {
    display: none;
  }
}

.wpo-header-s4 .wpo-header-style-4 .header-right .header-cta a .cta-text span {
  font-weight: 700;
  font-size: 18px;
  line-height: 23px;
  color: #fff;
}

@media (max-width: 1199px) {
  .wpo-header-s4 .wpo-header-style-4 .header-right .header-cta a .cta-text span {
    font-size: 14px;
  }
}

.wpo-header-s4 .wpo-header-style-4 .header-right .header-cta a .cta-text small {
  font-weight: 700;
  font-size: 26px;
  line-height: 33px;
  color: #fff;
  margin-bottom: 0;
  display: block;
  margin-top: 2px;
}

@media (max-width: 1199px) {
  .wpo-header-s4 .wpo-header-style-4 .header-right .header-cta a .cta-text small {
    font-size: 20px;
    line-height: 28px;
  }
}

.wpo-header-style-5 {
  background: #001635;
  border-top: 1px solid #41586F;
}

.wpo-header-style-5 .navigation {
  background: #001635;
}

.wpo-header-style-5 .navigation #navbar > ul > li > a {
  color: #fff;
}

@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: 0 130px;
}

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

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

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

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

/*--------------------------------------------------------------
3. content
--------------------------------------------------------------*/
/*3.1 wpo-hero-slider*/
.wpo-hero-slider,
.static-hero,
.wpo-hero-slider-s2 {
  width: 100%;
  height: 900px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  z-index: 0;
}

@media (max-width: 991px) {
  .wpo-hero-slider,
  .static-hero,
  .wpo-hero-slider-s2 {
    height: 600px;
  }
}

@media (max-width: 767px) {
  .wpo-hero-slider,
  .static-hero,
  .wpo-hero-slider-s2 {
    height: 500px;
  }
}

.wpo-hero-slider .swiper-slide,
.static-hero .swiper-slide,
.wpo-hero-slider-s2 .swiper-slide {
  overflow: hidden;
}

.wpo-hero-slider .swiper-container,
.wpo-hero-slider .hero-container,
.static-hero .swiper-container,
.static-hero .hero-container,
.wpo-hero-slider-s2 .swiper-container,
.wpo-hero-slider-s2 .hero-container {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.wpo-hero-slider .slide-inner,
.wpo-hero-slider .hero-inner,
.static-hero .slide-inner,
.static-hero .hero-inner,
.wpo-hero-slider-s2 .slide-inner,
.wpo-hero-slider-s2 .hero-inner {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background-size: cover;
  background-position: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: left;
}

.wpo-hero-slider .slide-inner .slide-content,
.wpo-hero-slider .hero-inner .slide-content,
.static-hero .slide-inner .slide-content,
.static-hero .hero-inner .slide-content,
.wpo-hero-slider-s2 .slide-inner .slide-content,
.wpo-hero-slider-s2 .hero-inner .slide-content {
  padding-bottom: 85px;
  padding-left: 240px;
}

@media (max-width: 1700px) {
  .wpo-hero-slider .slide-inner .slide-content,
  .wpo-hero-slider .hero-inner .slide-content,
  .static-hero .slide-inner .slide-content,
  .static-hero .hero-inner .slide-content,
  .wpo-hero-slider-s2 .slide-inner .slide-content,
  .wpo-hero-slider-s2 .hero-inner .slide-content {
    padding-left: 140px;
  }
}

@media (max-width: 991px) {
  .wpo-hero-slider .slide-inner .slide-content,
  .wpo-hero-slider .hero-inner .slide-content,
  .static-hero .slide-inner .slide-content,
  .static-hero .hero-inner .slide-content,
  .wpo-hero-slider-s2 .slide-inner .slide-content,
  .wpo-hero-slider-s2 .hero-inner .slide-content {
    padding-bottom: 0;
    padding-left: 30px;
  }
}

@media (max-width: 767px) {
  .wpo-hero-slider .slide-inner .slide-content,
  .wpo-hero-slider .hero-inner .slide-content,
  .static-hero .slide-inner .slide-content,
  .static-hero .hero-inner .slide-content,
  .wpo-hero-slider-s2 .slide-inner .slide-content,
  .wpo-hero-slider-s2 .hero-inner .slide-content {
    padding-left: 10px;
  }
}

.wpo-hero-slider .swiper-button-prev,
.wpo-hero-slider .swiper-button-next,
.static-hero .swiper-button-prev,
.static-hero .swiper-button-next,
.wpo-hero-slider-s2 .swiper-button-prev,
.wpo-hero-slider-s2 .swiper-button-next {
  background: rgba(255, 255, 255, 0.2);
  width: 60px;
  height: 60px;
  line-height: 60px;
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.7;
  text-align: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.wpo-hero-slider .swiper-button-prev:hover,
.wpo-hero-slider .swiper-button-next:hover,
.static-hero .swiper-button-prev:hover,
.static-hero .swiper-button-next:hover,
.wpo-hero-slider-s2 .swiper-button-prev:hover,
.wpo-hero-slider-s2 .swiper-button-next:hover {
  opacity: 0.9;
}

@media (max-width: 767px) {
  .wpo-hero-slider .swiper-button-prev,
  .wpo-hero-slider .swiper-button-next,
  .static-hero .swiper-button-prev,
  .static-hero .swiper-button-next,
  .wpo-hero-slider-s2 .swiper-button-prev,
  .wpo-hero-slider-s2 .swiper-button-next {
    display: none;
  }
}

.wpo-hero-slider .swiper-button-prev,
.static-hero .swiper-button-prev,
.wpo-hero-slider-s2 .swiper-button-prev {
  left: 25px;
}

.wpo-hero-slider .swiper-button-prev:before,
.static-hero .swiper-button-prev:before,
.wpo-hero-slider-s2 .swiper-button-prev:before {
  font-family: "themify";
  content: "\e629";
  font-size: 20px;
  color: #fff;
}

.wpo-hero-slider .swiper-button-next,
.static-hero .swiper-button-next,
.wpo-hero-slider-s2 .swiper-button-next {
  right: 25px;
}

.wpo-hero-slider .swiper-button-next:before,
.static-hero .swiper-button-next:before,
.wpo-hero-slider-s2 .swiper-button-next:before {
  font-family: "themify";
  content: "\e628";
  font-size: 20px;
  color: #fff;
}

@media (max-width: 991px) {
  .wpo-hero-slider .swiper-button-prev,
  .wpo-hero-slider .swiper-button-next,
  .static-hero .swiper-button-prev,
  .static-hero .swiper-button-next,
  .wpo-hero-slider-s2 .swiper-button-prev,
  .wpo-hero-slider-s2 .swiper-button-next {
    display: none;
  }
}

.wpo-hero-slider .swiper-pagination-bullet,
.static-hero .swiper-pagination-bullet,
.wpo-hero-slider-s2 .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  text-align: center;
  line-height: 12px;
  font-size: 12px;
  color: #000;
  opacity: 1;
  background: #AFAFAF;
}

@media screen and (min-width: 992px) {
  .wpo-hero-slider .swiper-pagination-bullet,
  .static-hero .swiper-pagination-bullet,
  .wpo-hero-slider-s2 .swiper-pagination-bullet {
    display: none;
  }
}

.wpo-hero-slider .swiper-pagination-bullet-active,
.static-hero .swiper-pagination-bullet-active,
.wpo-hero-slider-s2 .swiper-pagination-bullet-active {
  color: #fff;
  background: #CDB091;
  width: 12px;
  height: 12px;
  text-align: center;
  line-height: 12px;
  position: relative;
}

.wpo-hero-slider .swiper-pagination-bullet-active:before,
.static-hero .swiper-pagination-bullet-active:before,
.wpo-hero-slider-s2 .swiper-pagination-bullet-active:before {
  position: absolute;
  left: -3px;
  top: -3px;
  width: 18px;
  height: 18px;
  border: 1px solid #CDB091;
  content: "";
  border-radius: 50%;
}

.wpo-hero-slider .swiper-container-horizontal > .swiper-pagination-bullets,
.wpo-hero-slider .swiper-pagination-custom,
.wpo-hero-slider .swiper-pagination-fraction,
.static-hero .swiper-container-horizontal > .swiper-pagination-bullets,
.static-hero .swiper-pagination-custom,
.static-hero .swiper-pagination-fraction,
.wpo-hero-slider-s2 .swiper-container-horizontal > .swiper-pagination-bullets,
.wpo-hero-slider-s2 .swiper-pagination-custom,
.wpo-hero-slider-s2 .swiper-pagination-fraction {
  bottom: 30px;
}

.wpo-hero-slider .swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.static-hero .swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.wpo-hero-slider-s2 .swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 8px;
}

@media (max-width: 1199px) {
  .wpo-hero-slider,
  .static-hero,
  .wpo-hero-slider-s2 {
    height: 680px;
  }
}

@media (max-width: 991px) {
  .wpo-hero-slider,
  .static-hero,
  .wpo-hero-slider-s2 {
    height: 600px;
  }
}

@media (max-width: 767px) {
  .wpo-hero-slider,
  .static-hero,
  .wpo-hero-slider-s2 {
    height: 500px;
  }
}

.wpo-hero-slider .gradient-overlay,
.static-hero .gradient-overlay,
.wpo-hero-slider-s2 .gradient-overlay {
  background: -webkit-gradient(linear, left top, right top, color-stop(45%, #1E2E3E), color-stop(65%, transparent));
  background: linear-gradient(left, #1E2E3E 45%, transparent 65%);
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  opacity: .6;
}

.wpo-hero-slider .gradient-overlay + .container,
.static-hero .gradient-overlay + .container,
.wpo-hero-slider-s2 .gradient-overlay + .container {
  position: relative;
  z-index: 11;
}

.wpo-hero-slider .swiper-slide,
.static-hero .swiper-slide,
.wpo-hero-slider-s2 .swiper-slide {
  position: relative;
  z-index: 11;
}

.wpo-hero-slider .wpo-hero-title-top span,
.static-hero .wpo-hero-title-top span,
.wpo-hero-slider-s2 .wpo-hero-title-top span {
  font-size: 22px;
  color: #e4e4e4;
  font-family: "DM Serif Text", serif;
}

@media (max-width: 767px) {
  .wpo-hero-slider .wpo-hero-title-top span,
  .static-hero .wpo-hero-title-top span,
  .wpo-hero-slider-s2 .wpo-hero-title-top span {
    font-size: 15px;
  }
}

.wpo-hero-slider .sub-title span,
.static-hero .sub-title span,
.wpo-hero-slider-s2 .sub-title span {
  font-weight: 400;
  font-size: 30px;
  line-height: 41px;
  color: #CDB091;
  font-family: "DM Serif Text", serif;
}

@media (max-width: 767px) {
  .wpo-hero-slider .sub-title span,
  .static-hero .sub-title span,
  .wpo-hero-slider-s2 .sub-title span {
    font-size: 20px;
    line-height: 32px;
  }
}

.wpo-hero-slider .slide-title,
.static-hero .slide-title,
.wpo-hero-slider-s2 .slide-title {
  max-width: 712px;
}

@media (max-width: 1199px) {
  .wpo-hero-slider .slide-title,
  .static-hero .slide-title,
  .wpo-hero-slider-s2 .slide-title {
    max-width: 555px;
  }
}

.wpo-hero-slider .slide-title h2,
.static-hero .slide-title h2,
.wpo-hero-slider-s2 .slide-title h2 {
  font-size: 70px;
  font-weight: 400;
  line-height: 90px;
  margin: 10px 0 15px;
  color: #fff;
}

@media (max-width: 1199px) {
  .wpo-hero-slider .slide-title h2,
  .static-hero .slide-title h2,
  .wpo-hero-slider-s2 .slide-title h2 {
    font-size: 45px;
    font-size: 3rem;
    line-height: 60px;
  }
}

@media (max-width: 991px) {
  .wpo-hero-slider .slide-title h2,
  .static-hero .slide-title h2,
  .wpo-hero-slider-s2 .slide-title h2 {
    font-size: 40px;
    font-size: 2.66667rem;
    line-height: 55px;
  }
}

@media (max-width: 767px) {
  .wpo-hero-slider .slide-title h2,
  .static-hero .slide-title h2,
  .wpo-hero-slider-s2 .slide-title h2 {
    font-size: 30px;
    font-size: 2rem;
    line-height: 36px;
  }
}

.wpo-hero-slider .slide-text,
.static-hero .slide-text,
.wpo-hero-slider-s2 .slide-text {
  max-width: 680px;
}

@media (max-width: 767px) {
  .wpo-hero-slider .slide-text,
  .static-hero .slide-text,
  .wpo-hero-slider-s2 .slide-text {
    max-width: 500px;
  }
}

.wpo-hero-slider .slide-text p,
.static-hero .slide-text p,
.wpo-hero-slider-s2 .slide-text p {
  font-size: 22px;
  color: #fff;
  line-height: 35px;
  max-width: 680px;
  margin-bottom: 40px;
  color: #e2e2e2;
}

@media (max-width: 991px) {
  .wpo-hero-slider .slide-text p,
  .static-hero .slide-text p,
  .wpo-hero-slider-s2 .slide-text p {
    font-size: 18px;
    font-size: 1.2rem;
  }
}

@media (max-width: 767px) {
  .wpo-hero-slider .slide-text p,
  .static-hero .slide-text p,
  .wpo-hero-slider-s2 .slide-text p {
    font-size: 16px;
    font-size: 1.06667rem;
    line-height: 22px;
    margin-bottom: 30px;
  }
}

@media (max-width: 991px) {
  .wpo-hero-slider .slide-btns,
  .static-hero .slide-btns,
  .wpo-hero-slider-s2 .slide-btns {
    max-width: 400px;
  }
}

.wpo-hero-slider .slide-btns .theme-btn,
.static-hero .slide-btns .theme-btn,
.wpo-hero-slider-s2 .slide-btns .theme-btn {
  border-radius: 0;
  color: #1E2E3E;
  font-weight: 600;
  font-size: 18px;
}

.wpo-hero-slider .slide-btns .theme-btn:after,
.static-hero .slide-btns .theme-btn:after,
.wpo-hero-slider-s2 .slide-btns .theme-btn:after {
  border-radius: 0;
}

.wpo-hero-slider .slide-btns .hero-video-btn,
.static-hero .slide-btns .hero-video-btn,
.wpo-hero-slider-s2 .slide-btns .hero-video-btn {
  margin-left: 40px;
}

@media (max-width: 767px) {
  .wpo-hero-slider .slide-btns .hero-video-btn,
  .static-hero .slide-btns .hero-video-btn,
  .wpo-hero-slider-s2 .slide-btns .hero-video-btn {
    margin-left: 20px;
  }
}

.wpo-hero-style-1 {
  position: relative;
  height: 1000px;
  background: #1E2E3E;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  z-index: 1;
}

@media (max-width: 1399px) {
  .wpo-hero-style-1 {
    height: 850px;
  }
}

@media (max-width: 991px) {
  .wpo-hero-style-1 {
    height: 500px;
  }
}

@media (max-width: 575px) {
  .wpo-hero-style-1 {
    height: 400px;
  }
}

.wpo-hero-style-1 .right-img {
  position: absolute;
  right: 0;
  top: 0;
  height: 1000px;
  width: 70%;
  z-index: -1;
  background: url(../images/slider/hero-s1.jpg) no-repeat right center;
  background-size: cover;
}

@media (max-width: 1600px) {
  .wpo-hero-style-1 .right-img {
    width: 60%;
    background-size: cover;
    background-position: center;
  }
}

@media (max-width: 1399px) {
  .wpo-hero-style-1 .right-img {
    height: 850px;
  }
}

@media (max-width: 991px) {
  .wpo-hero-style-1 .right-img {
    width: 100%;
    height: 500px;
  }
  .wpo-hero-style-1 .right-img:before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: rgba(0, 0, 0, 0.5);
    z-index: -11;
  }
}

@media (max-width: 575px) {
  .wpo-hero-style-1 .right-img {
    height: 400px;
  }
}

.wpo-hero-style-1 .right-img2 {
  position: absolute;
  left: 60px;
  bottom: -1px;
  z-index: 1;
}

.wpo-hero-style-1 .right-img img {
  height: 100%;
  width: 100%;
}

.wpo-hero-style-1 .wpo-hero-section-text {
  padding-left: 240px;
}

@media (max-width: 1800px) {
  .wpo-hero-style-1 .wpo-hero-section-text {
    padding-left: 150px;
  }
}

@media (max-width: 1700px) {
  .wpo-hero-style-1 .wpo-hero-section-text {
    padding-left: 50px;
  }
}

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

.wpo-hero-style-1 .wpo-hero-title h2 {
  font-weight: 400;
  font-size: 100px;
  line-height: 137px;
  margin: 10px 0 25px;
  margin-top: 0;
  color: #fff;
}

@media (max-width: 1600px) {
  .wpo-hero-style-1 .wpo-hero-title h2 {
    font-size: 90px;
    line-height: 117px;
  }
}

@media (max-width: 1399px) {
  .wpo-hero-style-1 .wpo-hero-title h2 {
    font-size: 80px;
    line-height: 100px;
    margin-bottom: 35px;
  }
}

@media (max-width: 1199px) {
  .wpo-hero-style-1 .wpo-hero-title h2 {
    font-size: 65px;
    line-height: 90px;
    margin-bottom: 35px;
  }
}

@media (max-width: 1024px) {
  .wpo-hero-style-1 .wpo-hero-title h2 {
    font-size: 60px;
    line-height: 80px;
  }
}

@media (max-width: 991px) {
  .wpo-hero-style-1 .wpo-hero-title h2 {
    font-size: 45px;
    max-width: 600px;
    margin: 0 auto;
    margin-bottom: 30px;
    line-height: 60px;
  }
}

@media (max-width: 575px) {
  .wpo-hero-style-1 .wpo-hero-title h2 {
    font-size: 35px;
    line-height: 50px;
  }
}

@media (max-width: 450px) {
  .wpo-hero-style-1 .wpo-hero-title h2 {
    font-size: 30px;
    line-height: 40px;
  }
}

.wpo-hero-slider-s2 {
  height: 1000px;
}

@media (max-width: 1199px) {
  .wpo-hero-slider-s2 {
    height: 680px;
  }
}

@media (max-width: 991px) {
  .wpo-hero-slider-s2 {
    height: 600px;
  }
}

@media (max-width: 767px) {
  .wpo-hero-slider-s2 {
    height: 500px;
  }
}

.wpo-hero-slider-s2 .hero-inner .slide-content,
.wpo-hero-slider-s2 .slide-inner .slide-content {
  padding-bottom: 0;
  padding-top: 40px;
}

/*-------------------------------------------
	hero style 1
--------------------------------------------*/
.static-hero {
  background: #1E2E3E;
  height: 900px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  z-index: 0;
  overflow: hidden;
}

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

@media (max-width: 1199px) {
  .static-hero {
    height: 680px;
  }
}

@media (max-width: 991px) {
  .static-hero {
    height: 100%;
    padding: 80px 0;
  }
}

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

.static-hero .hero-container {
  position: relative;
}

.static-hero .container {
  position: relative;
}

@media (max-width: 991px) {
  .static-hero .hero-inner {
    position: relative;
  }
}

.static-hero .hero-inner::before {
  display: none;
}

@media (max-width: 1199px) {
  .static-hero .slide-title {
    max-width: 450px;
  }
}

.static-hero .slide-text p {
  font-weight: 400;
  font-size: 20px;
  line-height: 25px;
  margin-top: 30px;
}

@media (max-width: 1399px) {
  .static-hero .slide-text p {
    max-width: 600px;
  }
}

@media (max-width: 1199px) {
  .static-hero .slide-text p {
    max-width: 420px;
    font-size: 18px;
  }
}

@media (max-width: 991px) {
  .static-hero .sub-title span {
    font-size: 20px;
  }
}

@media (max-width: 991px) {
  .static-hero .hero-text-wrap {
    text-align: center;
  }
  .static-hero .hero-text-wrap .slide-title,
  .static-hero .hero-text-wrap .slide-btns {
    margin: 0 auto;
  }
  .static-hero .hero-text-wrap .slide-text p {
    margin: 0 auto;
    margin-bottom: 30px;
  }
}

.static-hero .lawyer-pic {
  position: absolute;
  right: -70px;
  bottom: -200px;
  z-index: 1;
}

@media (max-width: 1600px) {
  .static-hero .lawyer-pic {
    right: 0;
  }
}

@media (max-width: 1399px) {
  .static-hero .lawyer-pic {
    width: 440px;
    height: 640px;
    bottom: -70px;
    right: -30px;
  }
}

@media (max-width: 1199px) {
  .static-hero .lawyer-pic {
    width: 439px;
    height: 550px;
    bottom: -30px;
  }
}

@media (max-width: 991px) {
  .static-hero .lawyer-pic {
    position: relative;
    bottom: 0;
    margin: 0 auto;
    margin-top: 20px;
  }
}

@media (max-width: 575px) {
  .static-hero .lawyer-pic {
    width: 300px;
    height: 450px;
  }
}

.static-hero .lawyer-pic .lawyer-shape {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 65px;
  width: 520px;
  height: 95%;
  border: 20px solid #717171;
  border-radius: 0;
  z-index: -1;
}

@media (max-width: 1399px) {
  .static-hero .lawyer-pic .lawyer-shape {
    width: 385px;
    height: 550px;
  }
}

@media (max-width: 1199px) {
  .static-hero .lawyer-pic .lawyer-shape {
    width: 385px;
    height: 550px;
  }
}

@media (max-width: 575px) {
  .static-hero .lawyer-pic .lawyer-shape {
    width: 250px;
    height: 362px;
  }
}

.static-hero .lawyer-pic .lawyer-shape:before {
  position: absolute;
  left: -25px;
  bottom: 40px;
  height: 200px;
  width: 30px;
  background: #1E2E3E;
  content: "";
}

@media (max-width: 1199px) {
  .static-hero .lawyer-pic .lawyer-shape:before {
    height: 150px;
  }
}

@media (max-width: 575px) {
  .static-hero .lawyer-pic .lawyer-shape:before {
    height: 100px;
  }
}

.static-hero .lawyer-pic .exprience {
  margin-top: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 300px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  left: -70px;
  bottom: 40px;
}

@media (max-width: 1399px) {
  .static-hero .lawyer-pic .exprience {
    bottom: 70px;
  }
}

@media (max-width: 1199px) {
  .static-hero .lawyer-pic .exprience {
    bottom: 10px;
  }
}

@media (max-width: 575px) {
  .static-hero .lawyer-pic .exprience {
    bottom: 85px;
  }
}

@media (max-width: 390px) {
  .static-hero .lawyer-pic .exprience {
    left: -50px;
  }
}

@media (max-width: 350px) {
  .static-hero .lawyer-pic .exprience {
    left: -35px;
  }
}

.static-hero .lawyer-pic .exprience .exprience-left {
  margin-right: 0px;
  overflow: hidden;
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
}

@media (max-width: 1199px) {
  .static-hero .lawyer-pic .exprience .exprience-left {
    -ms-flex-preferred-size: 35%;
        flex-basis: 35%;
  }
}

@media (max-width: 390px) {
  .static-hero .lawyer-pic .exprience .exprience-left {
    -ms-flex-preferred-size: 30%;
        flex-basis: 30%;
  }
}

.static-hero .lawyer-pic .exprience .exprience-left h4 {
  font-weight: 400;
  font-size: 120px;
  line-height: 165px;
  color: #CDB091;
}

@media (max-width: 1199px) {
  .static-hero .lawyer-pic .exprience .exprience-left h4 {
    font-size: 80px;
    line-height: 95px;
  }
}

@media (max-width: 390px) {
  .static-hero .lawyer-pic .exprience .exprience-left h4 {
    font-size: 50px;
    line-height: 65px;
  }
}

.static-hero .lawyer-pic .exprience .exprience-right {
  overflow: hidden;
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
}

@media (max-width: 1199px) {
  .static-hero .lawyer-pic .exprience .exprience-right {
    -ms-flex-preferred-size: 65%;
        flex-basis: 65%;
    margin-top: 0;
  }
}

.static-hero .lawyer-pic .exprience .exprience-right h4 {
  font-weight: 400;
  font-size: 30px;
  line-height: 41px;
  color: #fff;
  margin-bottom: 10px;
}

@media (max-width: 1199px) {
  .static-hero .lawyer-pic .exprience .exprience-right h4 {
    font-size: 22px;
    margin-bottom: 0px;
    line-height: 32px;
  }
}

.wpo-hero-style-3 .slide-content {
  padding-top: 35px;
}

@media (max-width: 991px) {
  .wpo-hero-style-3 .slide-content {
    padding-top: 0;
  }
}

@media (max-width: 991px) {
  .wpo-hero-style-4 {
    height: 500px;
  }
}

@media (max-width: 575px) {
  .wpo-hero-style-4 {
    height: 400px;
  }
}

.wpo-hero-style-4 .swiper-button-next,
.wpo-hero-style-4 .swiper-button-prev {
  display: none;
}

.wpo-hero-style-4 .swiper-pagination-bullet {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.wpo-hero-style-4 .slide-inner:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #1E2E3E;
  content: "";
  opacity: .5;
}

.wpo-hero-style-4 .slide-inner .slide-content {
  padding-top: 35px;
  padding-left: 0;
  max-width: 950px;
  margin: 0 auto;
  text-align: center;
}

@media (min-width: 991px) {
  .wpo-hero-style-4 .slide-inner .slide-content {
    padding-top: 220px;
  }
}

.wpo-hero-style-4 .slide-inner .slide-content .slide-title,
.wpo-hero-style-4 .slide-inner .slide-content .slide-btns,
.wpo-hero-style-4 .slide-inner .slide-content .slide-text {
  margin: 0 auto;
}

@media (max-width: 991px) {
  .wpo-hero-style-4 .slide-inner .slide-content {
    padding-top: 0;
  }
}

/*--------------------------------------------------------------
4. wpo-footer
--------------------------------------------------------------*/
.wpo-site-footer {
  background: #172533;
  position: relative;
  font-size: 15px;
  overflow: hidden;
  z-index: 1;
  /*** newsletter-widget ***/
}

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

.wpo-site-footer p {
  color: #fff;
}

.wpo-site-footer li {
  color: #fff;
}

.wpo-site-footer .container {
  position: relative;
}

.wpo-site-footer .wpo-upper-footer {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.wpo-site-footer .wpo-upper-footer .ft-shape {
  position: absolute;
  right: 0;
  bottom: -10%;
  z-index: -1;
}

@media (max-width: 767px) {
  .wpo-site-footer .wpo-upper-footer .ft-shape {
    bottom: -30px;
  }
}

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

@media (max-width: 767px) {
  .wpo-site-footer .wpo-upper-footer {
    padding: 60px 0 0;
  }
}

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

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

.wpo-site-footer .widget-title {
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .wpo-site-footer .widget-title {
    margin-bottom: 20px;
  }
}

.wpo-site-footer .widget-title h3 {
  font-weight: 400;
  font-size: 25px;
  line-height: 34px;
  color: #fff;
  margin: 0;
  position: relative;
  font-family: "DM Serif Text", serif;
}

.wpo-site-footer .about-widget {
  max-width: 350px;
}

.wpo-site-footer .about-widget .logo {
  max-width: 180px;
}

.wpo-site-footer .about-widget p {
  margin-bottom: 0.8em;
  line-height: 1.9em;
  color: #fff;
}

.wpo-site-footer .about-widget p:last-child {
  margin-bottom: 0;
}

.wpo-site-footer .about-widget ul {
  overflow: hidden;
  padding-top: 10px;
}

.wpo-site-footer .about-widget ul li {
  font-size: 22px;
  float: left;
}

.wpo-site-footer .about-widget ul li a {
  color: #fff;
  width: 36px;
  height: 36px;
  line-height: 40px;
  background: rgba(255, 255, 255, 0.1);
  display: block;
  text-align: center;
  border-radius: 50%;
  font-size: 16px;
}

.wpo-site-footer .about-widget ul li a:hover {
  color: #fff;
  background: #CDB091;
}

.wpo-site-footer .about-widget ul li + li {
  margin-left: 15px;
}

@media (max-width: 1200px) {
  .wpo-site-footer .about-widget ul li + li {
    margin-left: 15px;
  }
}

.wpo-site-footer .wpo-service-link-widget {
  padding-left: 70px;
}

.wpo-site-footer .link-widget {
  overflow: hidden;
}

.wpo-site-footer .link-widget.s2 {
  padding-left: 50px;
}

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

.wpo-site-footer .link-widget ul li {
  position: relative;
  z-index: 1;
  padding: 6px 0;
  padding-left: 20px;
}

.wpo-site-footer .link-widget ul li:before {
  position: absolute;
  left: 0px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "";
  z-index: -1;
  width: 6px;
  height: 6px;
  background: #D9D9D9;
  border-radius: 50%;
}

.wpo-site-footer .link-widget ul li a {
  color: #fff;
  font-size: 16px;
}

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

.wpo-site-footer .newsletter-widget form {
  margin-top: 25px;
  position: relative;
}

.wpo-site-footer .newsletter-widget form input {
  background-color: transparent;
  height: 60px;
  color: #fff;
  padding: 6px 15px;
  border: 1px solid #989898;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 0;
}

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

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

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

.wpo-site-footer .newsletter-widget form input::placeholder {
  color: #fff;
}

.wpo-site-footer .newsletter-widget form .submit {
  margin-top: 20px;
}

.wpo-site-footer .newsletter-widget form .submit button {
  background: #CDB091;
  border: 0;
  outline: 0;
  font-size: 20px;
  color: #fff;
  width: 100%;
  height: 60px;
  line-height: 60px;
}

.wpo-site-footer .wpo-lower-footer {
  text-align: left;
}

.wpo-site-footer .wpo-lower-footer .row {
  padding: 20px 0;
  position: relative;
  border-top: 1px solid #30465C;
}

@media (max-width: 991px) {
  .wpo-site-footer .wpo-lower-footer {
    text-align: center;
  }
}

.wpo-site-footer .wpo-lower-footer ul li {
  color: #d9d9d9;
}

.wpo-site-footer .wpo-lower-footer ul li a {
  color: #d9d9d9;
}

.wpo-site-footer .wpo-lower-footer .link ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

@media (max-width: 991px) {
  .wpo-site-footer .wpo-lower-footer .link ul {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 10px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.wpo-site-footer .wpo-lower-footer .link ul li a {
  color: #d9d9d9;
}

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

.wpo-site-footer .wpo-lower-footer .link ul li + li {
  padding-left: 20px;
  position: relative;
}

@media (max-width: 375px) {
  .wpo-site-footer .wpo-lower-footer .link ul li + li {
    padding-left: 5px;
    margin-left: 5px;
  }
}

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

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

/* 3.2 wpo-about-section */
@media (max-width: 991px) {
  .wpo-about-section {
    padding-top: 40px;
  }
}

.wpo-about-section,
.wpo-about-section-s2,
.wpo-about-section-s3,
.wpo-about-section-s4 {
  background: #1E2E3E;
}

.wpo-about-section .wpo-about-section-wrapper,
.wpo-about-section-s2 .wpo-about-section-wrapper,
.wpo-about-section-s3 .wpo-about-section-wrapper,
.wpo-about-section-s4 .wpo-about-section-wrapper {
  position: relative;
  z-index: 1;
}

.wpo-about-section .wpo-about-img,
.wpo-about-section-s2 .wpo-about-img,
.wpo-about-section-s3 .wpo-about-img,
.wpo-about-section-s4 .wpo-about-img {
  padding: 20px;
  border: 1px solid #786653;
  margin-right: 60px;
}

@media (max-width: 1199px) {
  .wpo-about-section .wpo-about-img,
  .wpo-about-section-s2 .wpo-about-img,
  .wpo-about-section-s3 .wpo-about-img,
  .wpo-about-section-s4 .wpo-about-img {
    margin-right: 20px;
  }
}

@media (max-width: 991px) {
  .wpo-about-section .wpo-about-img,
  .wpo-about-section-s2 .wpo-about-img,
  .wpo-about-section-s3 .wpo-about-img,
  .wpo-about-section-s4 .wpo-about-img {
    margin-right: 0;
  }
}

@media (max-width: 575px) {
  .wpo-about-section .wpo-about-img,
  .wpo-about-section-s2 .wpo-about-img,
  .wpo-about-section-s3 .wpo-about-img,
  .wpo-about-section-s4 .wpo-about-img {
    padding: 10px;
  }
}

.wpo-about-section .wpo-about-img img,
.wpo-about-section-s2 .wpo-about-img img,
.wpo-about-section-s3 .wpo-about-img img,
.wpo-about-section-s4 .wpo-about-img img {
  width: 100%;
}

.wpo-about-section .wpo-about-content,
.wpo-about-section-s2 .wpo-about-content,
.wpo-about-section-s3 .wpo-about-content,
.wpo-about-section-s4 .wpo-about-content {
  max-width: 565px;
}

@media (max-width: 991px) {
  .wpo-about-section .wpo-about-content,
  .wpo-about-section-s2 .wpo-about-content,
  .wpo-about-section-s3 .wpo-about-content,
  .wpo-about-section-s4 .wpo-about-content {
    padding-left: 0;
    margin-top: 50px;
  }
}

@media (max-width: 575px) {
  .wpo-about-section .wpo-about-content,
  .wpo-about-section-s2 .wpo-about-content,
  .wpo-about-section-s3 .wpo-about-content,
  .wpo-about-section-s4 .wpo-about-content {
    margin-top: 20px;
  }
}

.wpo-about-section .wpo-about-content h2,
.wpo-about-section-s2 .wpo-about-content h2,
.wpo-about-section-s3 .wpo-about-content h2,
.wpo-about-section-s4 .wpo-about-content h2 {
  font-weight: 400;
  font-size: 50px;
  line-height: 69px;
  color: #fff;
  margin-bottom: 30px;
}

@media (max-width: 1399px) {
  .wpo-about-section .wpo-about-content h2,
  .wpo-about-section-s2 .wpo-about-content h2,
  .wpo-about-section-s3 .wpo-about-content h2,
  .wpo-about-section-s4 .wpo-about-content h2 {
    font-size: 35px;
    line-height: 50px;
  }
}

@media (max-width: 1199px) {
  .wpo-about-section .wpo-about-content h2,
  .wpo-about-section-s2 .wpo-about-content h2,
  .wpo-about-section-s3 .wpo-about-content h2,
  .wpo-about-section-s4 .wpo-about-content h2 {
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 20px;
  }
}

@media (max-width: 767px) {
  .wpo-about-section .wpo-about-content h2,
  .wpo-about-section-s2 .wpo-about-content h2,
  .wpo-about-section-s3 .wpo-about-content h2,
  .wpo-about-section-s4 .wpo-about-content h2 {
    font-size: 25px;
    line-height: 30px;
  }
}

.wpo-about-section .wpo-about-content P,
.wpo-about-section-s2 .wpo-about-content P,
.wpo-about-section-s3 .wpo-about-content P,
.wpo-about-section-s4 .wpo-about-content P {
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  color: #fff;
  margin-bottom: 20px;
}

@media (max-width: 575px) {
  .wpo-about-section .wpo-about-content P,
  .wpo-about-section-s2 .wpo-about-content P,
  .wpo-about-section-s3 .wpo-about-content P,
  .wpo-about-section-s4 .wpo-about-content P {
    font-size: 16px;
  }
}

.wpo-about-section .wpo-about-content .exprience,
.wpo-about-section-s2 .wpo-about-content .exprience,
.wpo-about-section-s3 .wpo-about-content .exprience,
.wpo-about-section-s4 .wpo-about-content .exprience {
  margin-top: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 490px) {
  .wpo-about-section .wpo-about-content .exprience,
  .wpo-about-section-s2 .wpo-about-content .exprience,
  .wpo-about-section-s3 .wpo-about-content .exprience,
  .wpo-about-section-s4 .wpo-about-content .exprience {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.wpo-about-section .wpo-about-content .exprience .exprience-left,
.wpo-about-section-s2 .wpo-about-content .exprience .exprience-left,
.wpo-about-section-s3 .wpo-about-content .exprience .exprience-left,
.wpo-about-section-s4 .wpo-about-content .exprience .exprience-left {
  margin-right: 20px;
  overflow: hidden;
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
}

@media (max-width: 1199px) {
  .wpo-about-section .wpo-about-content .exprience .exprience-left,
  .wpo-about-section-s2 .wpo-about-content .exprience .exprience-left,
  .wpo-about-section-s3 .wpo-about-content .exprience .exprience-left,
  .wpo-about-section-s4 .wpo-about-content .exprience .exprience-left {
    -ms-flex-preferred-size: 35%;
        flex-basis: 35%;
  }
}

@media (max-width: 490px) {
  .wpo-about-section .wpo-about-content .exprience .exprience-left,
  .wpo-about-section-s2 .wpo-about-content .exprience .exprience-left,
  .wpo-about-section-s3 .wpo-about-content .exprience .exprience-left,
  .wpo-about-section-s4 .wpo-about-content .exprience .exprience-left {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
}

.wpo-about-section .wpo-about-content .exprience .exprience-left h4,
.wpo-about-section-s2 .wpo-about-content .exprience .exprience-left h4,
.wpo-about-section-s3 .wpo-about-content .exprience .exprience-left h4,
.wpo-about-section-s4 .wpo-about-content .exprience .exprience-left h4 {
  font-weight: 400;
  font-size: 250px;
  line-height: 210px;
  text-transform: uppercase;
  background-image: url(../images/about/text-bg.png);
  background-repeat: repeat;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: cover;
}

@media (max-width: 1199px) {
  .wpo-about-section .wpo-about-content .exprience .exprience-left h4,
  .wpo-about-section-s2 .wpo-about-content .exprience .exprience-left h4,
  .wpo-about-section-s3 .wpo-about-content .exprience .exprience-left h4,
  .wpo-about-section-s4 .wpo-about-content .exprience .exprience-left h4 {
    font-size: 150px;
    line-height: 130px;
  }
}

.wpo-about-section .wpo-about-content .exprience .exprience-right,
.wpo-about-section-s2 .wpo-about-content .exprience .exprience-right,
.wpo-about-section-s3 .wpo-about-content .exprience .exprience-right,
.wpo-about-section-s4 .wpo-about-content .exprience .exprience-right {
  margin-top: 20px;
  overflow: hidden;
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
}

@media (max-width: 1199px) {
  .wpo-about-section .wpo-about-content .exprience .exprience-right,
  .wpo-about-section-s2 .wpo-about-content .exprience .exprience-right,
  .wpo-about-section-s3 .wpo-about-content .exprience .exprience-right,
  .wpo-about-section-s4 .wpo-about-content .exprience .exprience-right {
    -ms-flex-preferred-size: 65%;
        flex-basis: 65%;
    margin-top: 0;
  }
}

@media (max-width: 490px) {
  .wpo-about-section .wpo-about-content .exprience .exprience-right,
  .wpo-about-section-s2 .wpo-about-content .exprience .exprience-right,
  .wpo-about-section-s3 .wpo-about-content .exprience .exprience-right,
  .wpo-about-section-s4 .wpo-about-content .exprience .exprience-right {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
}

.wpo-about-section .wpo-about-content .exprience .exprience-right h4,
.wpo-about-section-s2 .wpo-about-content .exprience .exprience-right h4,
.wpo-about-section-s3 .wpo-about-content .exprience .exprience-right h4,
.wpo-about-section-s4 .wpo-about-content .exprience .exprience-right h4 {
  font-weight: 400;
  font-size: 30px;
  line-height: 41px;
  color: #fff;
  margin-bottom: 10px;
}

@media (max-width: 1199px) {
  .wpo-about-section .wpo-about-content .exprience .exprience-right h4,
  .wpo-about-section-s2 .wpo-about-content .exprience .exprience-right h4,
  .wpo-about-section-s3 .wpo-about-content .exprience .exprience-right h4,
  .wpo-about-section-s4 .wpo-about-content .exprience .exprience-right h4 {
    font-size: 25px;
    margin-bottom: 0px;
  }
}

.wpo-about-section .wpo-about-content .exprience .exprience-right p,
.wpo-about-section-s2 .wpo-about-content .exprience .exprience-right p,
.wpo-about-section-s3 .wpo-about-content .exprience .exprience-right p,
.wpo-about-section-s4 .wpo-about-content .exprience .exprience-right p {
  margin-bottom: 0;
  color: #fff;
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
}

@media (max-width: 1199px) {
  .wpo-about-section .wpo-about-content .exprience .exprience-right p,
  .wpo-about-section-s2 .wpo-about-content .exprience .exprience-right p,
  .wpo-about-section-s3 .wpo-about-content .exprience .exprience-right p,
  .wpo-about-section-s4 .wpo-about-content .exprience .exprience-right p {
    font-size: 15px;
  }
}

.wpo-about-section .wpo-about-content .exprience p,
.wpo-about-section-s2 .wpo-about-content .exprience p,
.wpo-about-section-s3 .wpo-about-content .exprience p,
.wpo-about-section-s4 .wpo-about-content .exprience p {
  font-size: 16px;
  color: #687693;
  margin-bottom: 30px;
}

.visible-text {
  position: absolute;
  top: -50px;
  z-index: -1;
  right: 50px;
}

@media (max-width: 991px) {
  .visible-text {
    display: none;
  }
}

.visible-text h2 {
  font-weight: 400;
  font-size: 250px;
  line-height: 220px;
  text-transform: uppercase;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: #33475A;
  opacity: .5;
}

@media (max-width: 1399px) {
  .visible-text h2 {
    font-size: 200px;
    line-height: 180px;
  }
}

@media (max-width: 1199px) {
  .visible-text h2 {
    font-size: 150px;
    line-height: 120px;
  }
}

@media (max-width: 991px) {
  .visible-text h2 {
    font-size: 120px;
    line-height: 115px;
  }
}

@media (max-width: 767px) {
  .visible-text h2 {
    font-size: 100px;
    line-height: 95px;
  }
}

@media (max-width: 575px) {
  .visible-text h2 {
    font-size: 70px;
    line-height: 75px;
  }
}

@media (max-width: 450px) {
  .visible-text h2 {
    font-size: 50px;
    line-height: 55px;
  }
}

/* 3.3 wpo-practice-section */
.wpo-practice-section,
.wpo-practice-section-s2 {
  background: #1E2E3E;
  padding-left: 100px;
}

@media (max-width: 1850px) {
  .wpo-practice-section,
  .wpo-practice-section-s2 {
    padding-left: 100px;
  }
}

@media (max-width: 1750px) {
  .wpo-practice-section,
  .wpo-practice-section-s2 {
    padding-left: 40px;
  }
}

@media (max-width: 1650px) {
  .wpo-practice-section,
  .wpo-practice-section-s2 {
    padding-left: 0px;
  }
}

.wpo-practice-section .wpo-practice-wrap,
.wpo-practice-section-s2 .wpo-practice-wrap {
  position: relative;
  z-index: 1;
  right: -150px;
}

@media (max-width: 1650px) {
  .wpo-practice-section .wpo-practice-wrap,
  .wpo-practice-section-s2 .wpo-practice-wrap {
    right: -80px;
  }
}

@media (max-width: 1500px) {
  .wpo-practice-section .wpo-practice-wrap,
  .wpo-practice-section-s2 .wpo-practice-wrap {
    right: -80px;
  }
}

@media (max-width: 1440px) {
  .wpo-practice-section .wpo-practice-wrap,
  .wpo-practice-section-s2 .wpo-practice-wrap {
    right: -50px;
  }
}

@media (max-width: 991px) {
  .wpo-practice-section .wpo-practice-wrap,
  .wpo-practice-section-s2 .wpo-practice-wrap {
    right: 0px;
  }
}

.wpo-practice-section .wpo-practice-wrap .wpo-practice-items .wpo-practice-item,
.wpo-practice-section-s2 .wpo-practice-wrap .wpo-practice-items .wpo-practice-item {
  margin-bottom: 30px;
  position: relative;
}

.wpo-practice-section .wpo-practice-wrap .wpo-practice-items .wpo-practice-item .wpo-practice-img,
.wpo-practice-section-s2 .wpo-practice-wrap .wpo-practice-items .wpo-practice-item .wpo-practice-img {
  position: relative;
}

.wpo-practice-section .wpo-practice-wrap .wpo-practice-items .wpo-practice-item .wpo-practice-img:before,
.wpo-practice-section-s2 .wpo-practice-wrap .wpo-practice-items .wpo-practice-item .wpo-practice-img:before {
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 100%;
  content: "";
  background: -webkit-gradient(linear, left top, left bottom, color-stop(2%, rgba(30, 46, 62, 0)), color-stop(35.6%, rgba(30, 46, 62, 0.61)), color-stop(67.6%, #1E2E3E), to(#1E2E3E));
  background: linear-gradient(180deg, rgba(30, 46, 62, 0) 2%, rgba(30, 46, 62, 0.61) 35.6%, #1E2E3E 67.6%, #1E2E3E 100%);
  opacity: 0.8;
  z-index: 1;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.wpo-practice-section .wpo-practice-wrap .wpo-practice-items .wpo-practice-item .wpo-practice-img img,
.wpo-practice-section-s2 .wpo-practice-wrap .wpo-practice-items .wpo-practice-item .wpo-practice-img img {
  width: 100%;
}

.wpo-practice-section .wpo-practice-wrap .wpo-practice-items .wpo-practice-item .wpo-practice-content,
.wpo-practice-section-s2 .wpo-practice-wrap .wpo-practice-items .wpo-practice-item .wpo-practice-content {
  padding: 30px;
  position: absolute;
  bottom: 0;
  z-index: 19;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  -webkit-transition: all .3s;
  transition: all .3s;
}

@media (max-width: 500px) {
  .wpo-practice-section .wpo-practice-wrap .wpo-practice-items .wpo-practice-item .wpo-practice-content,
  .wpo-practice-section-s2 .wpo-practice-wrap .wpo-practice-items .wpo-practice-item .wpo-practice-content {
    padding: 30px 15px;
  }
}

.wpo-practice-section .wpo-practice-wrap .wpo-practice-items .wpo-practice-item .wpo-practice-content .b-top,
.wpo-practice-section-s2 .wpo-practice-wrap .wpo-practice-items .wpo-practice-item .wpo-practice-content .b-top {
  overflow: hidden;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.wpo-practice-section .wpo-practice-wrap .wpo-practice-items .wpo-practice-item .wpo-practice-content .b-top .b-top-inner,
.wpo-practice-section-s2 .wpo-practice-wrap .wpo-practice-items .wpo-practice-item .wpo-practice-content .b-top .b-top-inner {
  bottom: -90px;
  position: relative;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.wpo-practice-section .wpo-practice-wrap .wpo-practice-items .wpo-practice-item .wpo-practice-content .b-top p,
.wpo-practice-section-s2 .wpo-practice-wrap .wpo-practice-items .wpo-practice-item .wpo-practice-content .b-top p {
  color: #fff;
  height: 1px;
  overflow: hidden;
  margin: 0;
  -webkit-transition: all .3s;
  transition: all .3s;
  min-height: 70px;
  max-height: 70px;
  height: 70px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 991px) {
  .wpo-practice-section .wpo-practice-wrap .wpo-practice-items .wpo-practice-item .wpo-practice-content .b-top p,
  .wpo-practice-section-s2 .wpo-practice-wrap .wpo-practice-items .wpo-practice-item .wpo-practice-content .b-top p {
    font-size: 16px;
  }
}

.wpo-practice-section .wpo-practice-wrap .wpo-practice-items .wpo-practice-item .wpo-practice-content h2,
.wpo-practice-section-s2 .wpo-practice-wrap .wpo-practice-items .wpo-practice-item .wpo-practice-content h2 {
  font-weight: 400;
  font-size: 40px;
  line-height: 55px;
  font-family: "DM Serif Text", serif;
  margin-bottom: 15px;
  margin-top: 0;
}

@media (max-width: 767px) {
  .wpo-practice-section .wpo-practice-wrap .wpo-practice-items .wpo-practice-item .wpo-practice-content h2,
  .wpo-practice-section-s2 .wpo-practice-wrap .wpo-practice-items .wpo-practice-item .wpo-practice-content h2 {
    font-size: 30px;
    margin-bottom: 10px;
  }
}

.wpo-practice-section .wpo-practice-wrap .wpo-practice-items .wpo-practice-item .wpo-practice-content h2 a,
.wpo-practice-section-s2 .wpo-practice-wrap .wpo-practice-items .wpo-practice-item .wpo-practice-content h2 a {
  color: #fff;
}

.wpo-practice-section .wpo-practice-wrap .wpo-practice-items .wpo-practice-item .wpo-practice-content h2 a:hover,
.wpo-practice-section-s2 .wpo-practice-wrap .wpo-practice-items .wpo-practice-item .wpo-practice-content h2 a:hover {
  color: #CDB091;
}

.wpo-practice-section .wpo-practice-wrap .wpo-practice-items .wpo-practice-item .wpo-practice-content p,
.wpo-practice-section-s2 .wpo-practice-wrap .wpo-practice-items .wpo-practice-item .wpo-practice-content p {
  font-weight: 400;
  font-size: 18px;
  line-height: 23px;
}

.wpo-practice-section .wpo-practice-wrap .wpo-practice-items .wpo-practice-item:hover .wpo-practice-content .b-top .b-top-inner,
.wpo-practice-section-s2 .wpo-practice-wrap .wpo-practice-items .wpo-practice-item:hover .wpo-practice-content .b-top .b-top-inner {
  bottom: 0;
}

.wpo-practice-section .wpo-practice-wrap .wpo-practice-items .owl-nav button.owl-next,
.wpo-practice-section-s2 .wpo-practice-wrap .wpo-practice-items .owl-nav button.owl-next {
  left: auto;
  right: 300px;
  top: -100px;
}

@media (max-width: 1700px) {
  .wpo-practice-section .wpo-practice-wrap .wpo-practice-items .owl-nav button.owl-next,
  .wpo-practice-section-s2 .wpo-practice-wrap .wpo-practice-items .owl-nav button.owl-next {
    right: 100px;
  }
}

.wpo-practice-section .wpo-practice-wrap .wpo-practice-items .owl-nav button,
.wpo-practice-section-s2 .wpo-practice-wrap .wpo-practice-items .owl-nav button {
  position: absolute;
  right: 370px;
  top: -100px;
  height: 50px;
  width: 50px;
  line-height: 50px;
  text-align: center;
  -webkit-transition: all .3s;
  transition: all .3s;
  background: #24384B;
  border: 0;
  color: #CDB091;
  text-decoration: none;
  border-radius: 0;
}

.wpo-practice-section .wpo-practice-wrap .wpo-practice-items .owl-nav button:hover,
.wpo-practice-section-s2 .wpo-practice-wrap .wpo-practice-items .owl-nav button:hover {
  background: #CDB091;
  color: #fff;
  text-decoration: none;
  border-radius: 0;
}

@media (max-width: 1700px) {
  .wpo-practice-section .wpo-practice-wrap .wpo-practice-items .owl-nav button,
  .wpo-practice-section-s2 .wpo-practice-wrap .wpo-practice-items .owl-nav button {
    right: 170px;
  }
}

@media (max-width: 767px) {
  .wpo-practice-section .wpo-practice-wrap .wpo-practice-items .owl-nav button,
  .wpo-practice-section-s2 .wpo-practice-wrap .wpo-practice-items .owl-nav button {
    display: none;
  }
}

.wpo-practice-section .wpo-practice-wrap .wpo-practice-items .owl-dots,
.wpo-practice-section-s2 .wpo-practice-wrap .wpo-practice-items .owl-dots {
  bottom: -10px;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

@media (min-width: 575px) {
  .wpo-practice-section .wpo-practice-wrap .wpo-practice-items .owl-dots,
  .wpo-practice-section-s2 .wpo-practice-wrap .wpo-practice-items .owl-dots {
    display: none;
  }
}

.wpo-practice-section .wpo-practice-wrap .wpo-practice-items .owl-dots button,
.wpo-practice-section-s2 .wpo-practice-wrap .wpo-practice-items .owl-dots button {
  border: 0;
  width: 10px;
  height: 12px;
  margin: 5px;
  border-radius: 50%;
}

.wpo-practice-section .wpo-practice-wrap .wpo-practice-items .owl-dots button.active,
.wpo-practice-section-s2 .wpo-practice-wrap .wpo-practice-items .owl-dots button.active {
  background: #CDB091;
}

.visible-text.s2 {
  right: auto;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

@media (max-width: 1199px) {
  .visible-text.s2 {
    top: -20px;
  }
}

@media (max-width: 991px) {
  .visible-text.s2 {
    right: 50px;
    left: auto;
    -webkit-transform: unset;
            transform: unset;
    top: -15;
  }
}

/*3.4 wpo-testimonials-section */
.wpo-testimonials-section,
.wpo-testimonials-section-s2 {
  background: #1E2E3E;
  position: relative;
  padding-top: 90px;
}

@media (max-width: 991px) {
  .wpo-testimonials-section,
  .wpo-testimonials-section-s2 {
    padding-top: 60px;
  }
}

@media (max-width: 767px) {
  .wpo-testimonials-section,
  .wpo-testimonials-section-s2 {
    padding-top: 50px;
  }
}

.wpo-testimonials-section .wpo-testimonials-wrap,
.wpo-testimonials-section-s2 .wpo-testimonials-wrap {
  background-image: url(../images/testimonial/bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  text-align: center;
  padding: 170px 0;
}

@media (max-width: 1199px) {
  .wpo-testimonials-section .wpo-testimonials-wrap,
  .wpo-testimonials-section-s2 .wpo-testimonials-wrap {
    padding: 80px 30px 100px;
  }
}

@media (max-width: 575px) {
  .wpo-testimonials-section .wpo-testimonials-wrap,
  .wpo-testimonials-section-s2 .wpo-testimonials-wrap {
    padding: 50px 20px 70px;
  }
}

.wpo-testimonials-section .wpo-testimonials-wrap .row,
.wpo-testimonials-section-s2 .wpo-testimonials-wrap .row {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.wpo-testimonials-section .wpo-testimonials-wrap .wpo-testimonials-active p,
.wpo-testimonials-section-s2 .wpo-testimonials-wrap .wpo-testimonials-active p {
  font-weight: 400;
  font-size: 22px;
  line-height: 40px;
  color: #fff;
  max-width: 810px;
  margin: 0 auto;
}

@media (max-width: 575px) {
  .wpo-testimonials-section .wpo-testimonials-wrap .wpo-testimonials-active p,
  .wpo-testimonials-section-s2 .wpo-testimonials-wrap .wpo-testimonials-active p {
    font-size: 18px;
    margin: 0;
    max-width: 100%;
    line-height: 30px;
  }
}

.wpo-testimonials-section .wpo-testimonials-wrap .wpo-testimonials-active .wpo-testimonial-info,
.wpo-testimonials-section-s2 .wpo-testimonials-wrap .wpo-testimonials-active .wpo-testimonial-info {
  margin-top: 30px;
}

.wpo-testimonials-section .wpo-testimonials-wrap .wpo-testimonials-active .wpo-testimonial-info .wpo-testimonial-info-img,
.wpo-testimonials-section-s2 .wpo-testimonials-wrap .wpo-testimonials-active .wpo-testimonial-info .wpo-testimonial-info-img {
  position: relative;
  z-index: 1;
  width: 75px;
  height: 75px;
  margin: 0 auto;
  margin-bottom: 20px;
}

.wpo-testimonials-section .wpo-testimonials-wrap .wpo-testimonials-active .wpo-testimonial-info .wpo-testimonial-info-img:before,
.wpo-testimonials-section-s2 .wpo-testimonials-wrap .wpo-testimonials-active .wpo-testimonial-info .wpo-testimonial-info-img:before {
  position: absolute;
  left: -3px;
  top: -3px;
  width: 110%;
  height: 109%;
  content: "";
  background: #CDB091;
  z-index: -1;
  border-radius: 50px;
}

.wpo-testimonials-section .wpo-testimonials-wrap .wpo-testimonials-active .wpo-testimonial-info .wpo-testimonial-info-img img,
.wpo-testimonials-section-s2 .wpo-testimonials-wrap .wpo-testimonials-active .wpo-testimonial-info .wpo-testimonial-info-img img {
  border-radius: 50%;
}

.wpo-testimonials-section .wpo-testimonials-wrap .wpo-testimonials-active .wpo-testimonial-info .wpo-testimonial-info-text h5,
.wpo-testimonials-section-s2 .wpo-testimonials-wrap .wpo-testimonials-active .wpo-testimonial-info .wpo-testimonial-info-text h5 {
  color: #fff;
  font-weight: 400;
  font-size: 25px;
  line-height: 34px;
  margin-bottom: 0;
}

@media (max-width: 1399px) {
  .wpo-testimonials-section .wpo-testimonials-wrap .wpo-testimonials-active .wpo-testimonial-info .wpo-testimonial-info-text h5,
  .wpo-testimonials-section-s2 .wpo-testimonials-wrap .wpo-testimonials-active .wpo-testimonial-info .wpo-testimonial-info-text h5 {
    font-size: 20px;
  }
}

.wpo-testimonials-section .wpo-testimonials-wrap .wpo-testimonials-active .wpo-testimonial-info .wpo-testimonial-info-text span,
.wpo-testimonials-section-s2 .wpo-testimonials-wrap .wpo-testimonials-active .wpo-testimonial-info .wpo-testimonial-info-text span {
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  color: #fff;
}

.wpo-testimonials-section .wpo-testimonials-wrap .wpo-testimonials-active .owl-nav,
.wpo-testimonials-section-s2 .wpo-testimonials-wrap .wpo-testimonials-active .owl-nav {
  display: none;
}

.wpo-testimonials-section .wpo-testimonials-wrap .wpo-testimonials-active .owl-dots,
.wpo-testimonials-section-s2 .wpo-testimonials-wrap .wpo-testimonials-active .owl-dots {
  position: absolute;
  left: -25%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media (max-width: 1800px) {
  .wpo-testimonials-section .wpo-testimonials-wrap .wpo-testimonials-active .owl-dots,
  .wpo-testimonials-section-s2 .wpo-testimonials-wrap .wpo-testimonials-active .owl-dots {
    left: -16%;
  }
}

@media (max-width: 1700px) {
  .wpo-testimonials-section .wpo-testimonials-wrap .wpo-testimonials-active .owl-dots,
  .wpo-testimonials-section-s2 .wpo-testimonials-wrap .wpo-testimonials-active .owl-dots {
    left: -10%;
  }
}

@media (max-width: 1600px) {
  .wpo-testimonials-section .wpo-testimonials-wrap .wpo-testimonials-active .owl-dots,
  .wpo-testimonials-section-s2 .wpo-testimonials-wrap .wpo-testimonials-active .owl-dots {
    left: -5%;
  }
}

@media (max-width: 1500px) {
  .wpo-testimonials-section .wpo-testimonials-wrap .wpo-testimonials-active .owl-dots,
  .wpo-testimonials-section-s2 .wpo-testimonials-wrap .wpo-testimonials-active .owl-dots {
    left: 0%;
  }
}

@media (max-width: 1399px) {
  .wpo-testimonials-section .wpo-testimonials-wrap .wpo-testimonials-active .owl-dots,
  .wpo-testimonials-section-s2 .wpo-testimonials-wrap .wpo-testimonials-active .owl-dots {
    left: -8%;
  }
}

@media (max-width: 1199px) {
  .wpo-testimonials-section .wpo-testimonials-wrap .wpo-testimonials-active .owl-dots,
  .wpo-testimonials-section-s2 .wpo-testimonials-wrap .wpo-testimonials-active .owl-dots {
    left: auto;
    top: auto;
    bottom: -30px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.wpo-testimonials-section .wpo-testimonials-wrap .wpo-testimonials-active .owl-dots button,
.wpo-testimonials-section-s2 .wpo-testimonials-wrap .wpo-testimonials-active .owl-dots button {
  width: 10px;
  height: 10px;
  border: 0;
  background: #fff;
  margin-bottom: 10px;
  border-radius: 50%;
  display: block;
  padding: 0;
}

@media (max-width: 1199px) {
  .wpo-testimonials-section .wpo-testimonials-wrap .wpo-testimonials-active .owl-dots button,
  .wpo-testimonials-section-s2 .wpo-testimonials-wrap .wpo-testimonials-active .owl-dots button {
    display: inline-block;
    margin-bottom: 0px;
    margin-right: 10px;
  }
}

.wpo-testimonials-section .wpo-testimonials-wrap .wpo-testimonials-active .owl-dots .owl-dot.active,
.wpo-testimonials-section-s2 .wpo-testimonials-wrap .wpo-testimonials-active .owl-dots .owl-dot.active {
  background-color: #CDB091;
}

/*3.5 wpo-case-section */
.wpo-case-section,
.wpo-case-section-s2,
.wpo-case-section-s3 {
  background: #1E2E3E;
}

@media (max-width: 991px) {
  .wpo-case-section .wpo-section-title,
  .wpo-case-section-s2 .wpo-section-title,
  .wpo-case-section-s3 .wpo-section-title {
    margin-bottom: 20px;
  }
}

.wpo-case-section .wpo-case-wrap,
.wpo-case-section-s2 .wpo-case-wrap,
.wpo-case-section-s3 .wpo-case-wrap {
  position: relative;
  z-index: 1;
}

.wpo-case-section .case-menu,
.wpo-case-section-s2 .case-menu,
.wpo-case-section-s3 .case-menu {
  text-align: center;
}

.wpo-case-section .case-menu ul,
.wpo-case-section-s2 .case-menu ul,
.wpo-case-section-s3 .case-menu ul {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

@media (max-width: 991px) {
  .wpo-case-section .case-menu ul,
  .wpo-case-section-s2 .case-menu ul,
  .wpo-case-section-s3 .case-menu ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: 40px;
  }
}

@media (max-width: 575px) {
  .wpo-case-section .case-menu ul,
  .wpo-case-section-s2 .case-menu ul,
  .wpo-case-section-s3 .case-menu ul {
    margin-bottom: 20px;
  }
}

.wpo-case-section .case-menu li a,
.wpo-case-section-s2 .case-menu li a,
.wpo-case-section-s3 .case-menu li a {
  font-weight: 600;
  font-size: 20px;
  line-height: 25px;
  font-size: 1.33333rem;
  text-transform: capitalize;
  color: #fff;
  padding: 0px 20px;
  display: inline-block;
  margin-bottom: 20px;
}

@media (max-width: 1399px) {
  .wpo-case-section .case-menu li a,
  .wpo-case-section-s2 .case-menu li a,
  .wpo-case-section-s3 .case-menu li a {
    font-size: 16px;
    font-size: 1.06667rem;
  }
}

@media (max-width: 1199px) {
  .wpo-case-section .case-menu li a,
  .wpo-case-section-s2 .case-menu li a,
  .wpo-case-section-s3 .case-menu li a {
    font-size: 14px;
    font-size: 0.93333rem;
    padding: 5px 10px;
  }
}

@media (max-width: 991px) {
  .wpo-case-section .case-menu li a,
  .wpo-case-section-s2 .case-menu li a,
  .wpo-case-section-s3 .case-menu li a {
    font-size: 14px;
    font-size: 0.93333rem;
    padding: 8px 16px;
    margin-bottom: 0;
  }
}

@media (max-width: 767px) {
  .wpo-case-section .case-menu li a,
  .wpo-case-section-s2 .case-menu li a,
  .wpo-case-section-s3 .case-menu li a {
    font-size: 14px;
    font-size: 0.93333rem;
    padding: 8px 16px;
  }
}

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

.wpo-case-section .case-menu li a.current,
.wpo-case-section-s2 .case-menu li a.current,
.wpo-case-section-s3 .case-menu li a.current {
  color: #CDB091;
}

.wpo-case-section .case-grids,
.wpo-case-section-s2 .case-grids,
.wpo-case-section-s3 .case-grids {
  margin: 0 -7.5px;
}

.wpo-case-section .case-grids .grid,
.wpo-case-section-s2 .case-grids .grid,
.wpo-case-section-s3 .case-grids .grid {
  width: 50%;
  float: left;
  padding: 0 7.5px 15px;
}

@media (max-width: 1199px) {
  .wpo-case-section .case-grids .grid,
  .wpo-case-section-s2 .case-grids .grid,
  .wpo-case-section-s3 .case-grids .grid {
    width: 50%;
  }
}

@media (max-width: 600px) {
  .wpo-case-section .case-grids .grid,
  .wpo-case-section-s2 .case-grids .grid,
  .wpo-case-section-s3 .case-grids .grid {
    width: 100%;
  }
}

.wpo-case-section .case-grids .grid img,
.wpo-case-section-s2 .case-grids .grid img,
.wpo-case-section-s3 .case-grids .grid img {
  width: 100%;
}

.wpo-case-section .grid .img-holder,
.wpo-case-section-s2 .grid .img-holder,
.wpo-case-section-s3 .grid .img-holder {
  position: relative;
}

.wpo-case-section .grid .img-holder .hover-content,
.wpo-case-section-s2 .grid .img-holder .hover-content,
.wpo-case-section-s3 .grid .img-holder .hover-content {
  -webkit-transition: all .3s;
  transition: all .3s;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.wpo-case-section .grid .img-holder .hover-content .theme-btn,
.wpo-case-section-s2 .grid .img-holder .hover-content .theme-btn,
.wpo-case-section-s3 .grid .img-holder .hover-content .theme-btn {
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: all .3s;
  transition: all .3s;
}

@media (max-width: 1200px) {
  .wpo-case-section .grid .img-holder .hover-content .theme-btn,
  .wpo-case-section-s2 .grid .img-holder .hover-content .theme-btn,
  .wpo-case-section-s3 .grid .img-holder .hover-content .theme-btn {
    font-size: 14px;
  }
}

@media (max-width: 991px) {
  .wpo-case-section .grid .img-holder .hover-content .theme-btn,
  .wpo-case-section-s2 .grid .img-holder .hover-content .theme-btn,
  .wpo-case-section-s3 .grid .img-holder .hover-content .theme-btn {
    padding: 15px 20px;
  }
}

@media (max-width: 767px) {
  .wpo-case-section .grid .img-holder .hover-content .theme-btn,
  .wpo-case-section-s2 .grid .img-holder .hover-content .theme-btn,
  .wpo-case-section-s3 .grid .img-holder .hover-content .theme-btn {
    padding: 8px 12px;
  }
}

.wpo-case-section .grid .img-holder:before,
.wpo-case-section-s2 .grid .img-holder:before,
.wpo-case-section-s3 .grid .img-holder:before {
  position: absolute;
  left: 2%;
  top: 2%;
  width: 96%;
  height: 96%;
  content: "";
  background: rgba(23, 37, 51, 0.7);
  opacity: 0;
  -webkit-transition: all .3s;
  transition: all .3s;
  -webkit-transform: scale(0);
          transform: scale(0);
}

.wpo-case-section .grid:hover .hover-content,
.wpo-case-section-s2 .grid:hover .hover-content,
.wpo-case-section-s3 .grid:hover .hover-content {
  opacity: 1;
}

.wpo-case-section .grid:hover .hover-content .theme-btn,
.wpo-case-section-s2 .grid:hover .hover-content .theme-btn,
.wpo-case-section-s3 .grid:hover .hover-content .theme-btn {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.wpo-case-section .grid:hover .img-holder:before,
.wpo-case-section-s2 .grid:hover .img-holder:before,
.wpo-case-section-s3 .grid:hover .img-holder:before {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

/* 3.6 wpo-fun-fact-section */
.wpo-fun-fact-section {
  background: #1E2E3E;
  position: relative;
  background-size: cover;
  z-index: 1;
  padding: 80px 0 90px;
}

@media (max-width: 991px) {
  .wpo-fun-fact-section {
    padding: 30px 0 40px;
  }
}

.wpo-fun-fact-section h2 {
  font-size: 30px;
  font-size: 2rem;
  font-weight: 600;
  margin: 0 0 1.8em;
}

@media (max-width: 991px) {
  .wpo-fun-fact-section h2 {
    font-size: 26px;
    font-size: 1.73333rem;
  }
}

@media (max-width: 767px) {
  .wpo-fun-fact-section h2 {
    font-size: 25px;
    font-size: 1.66667rem;
  }
}

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

@media (max-width: 991px) {
  .wpo-fun-fact-section .wpo-fun-fact-grids .grid {
    width: 50%;
    margin-bottom: 30px;
  }
}

.wpo-fun-fact-section .grid .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 991px) {
  .wpo-fun-fact-section .grid .info {
    display: block;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    text-align: center;
  }
}

.wpo-fun-fact-section .grid h3 {
  font-size: 80px;
  font-size: 5.33333rem;
  font-weight: 400;
  line-height: 110px;
  color: #fff;
  font-family: "DM Serif Text", serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 20px;
  margin-bottom: 0;
}

@media (max-width: 1399px) {
  .wpo-fun-fact-section .grid h3 {
    font-size: 60px;
    font-size: 4rem;
    margin-right: 10px;
  }
}

@media (max-width: 1199px) {
  .wpo-fun-fact-section .grid h3 {
    font-size: 45px;
    font-size: 3rem;
  }
}

@media (max-width: 991px) {
  .wpo-fun-fact-section .grid h3 {
    font-size: 40px;
    font-size: 2.66667rem;
    display: block;
  }
}

@media (max-width: 767px) {
  .wpo-fun-fact-section .grid h3 {
    font-size: 35px;
    font-size: 2.33333rem;
  }
}

.wpo-fun-fact-section .grid h3 span {
  font-family: "DM Serif Text", serif;
}

.wpo-fun-fact-section .grid h3 + p {
  font-weight: 400;
  line-height: 35px;
  font-size: 25px;
  font-size: 1.66667rem;
  margin: 0;
  color: #fff;
  max-width: 100px;
}

@media (max-width: 1399px) {
  .wpo-fun-fact-section .grid h3 + p {
    font-size: 20px;
    font-size: 1.33333rem;
    line-height: 25px;
  }
}

@media (max-width: 1199px) {
  .wpo-fun-fact-section .grid h3 + p {
    font-size: 18px;
    font-size: 1.2rem;
  }
}

@media (max-width: 991px) {
  .wpo-fun-fact-section .grid h3 + p {
    font-size: 16px;
    font-size: 1.06667rem;
    max-width: 100%;
  }
}

/* 3.7 wpo-team-section */
.wpo-team-section {
  padding-bottom: 90px;
  background: #1E2E3E;
}

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

.wpo-team-section .wpo-team-wrap {
  position: relative;
  z-index: 1;
}

.wpo-team-section .wpo-team-wrap .row {
  margin: 0 -7.5px;
}

@media (max-width: 991px) {
  .wpo-team-section .wpo-team-wrap .row {
    margin: 0 -15px;
  }
}

.wpo-team-section .wpo-team-wrap .col {
  padding: 0;
}

@media (max-width: 991px) {
  .wpo-team-section .wpo-team-wrap .col {
    padding: 0 15px;
  }
}

.wpo-team-section .wpo-team-wrap .wpo-team-item {
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
}

.wpo-team-section .wpo-team-wrap .wpo-team-item .wpo-team-img {
  position: relative;
}

.wpo-team-section .wpo-team-wrap .wpo-team-item .wpo-team-img:before {
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 100%;
  content: "";
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(30, 46, 62, 0)), color-stop(28.65%, rgba(30, 46, 62, 0.29)), color-stop(63.02%, rgba(24, 40, 55, 0.78)), color-stop(97.92%, #101A25));
  background: linear-gradient(180deg, rgba(30, 46, 62, 0) 0%, rgba(30, 46, 62, 0.29) 28.65%, rgba(24, 40, 55, 0.78) 63.02%, #101A25 97.92%);
  z-index: 1;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.wpo-team-section .wpo-team-wrap .wpo-team-item .wpo-team-img img {
  width: 100%;
}

.wpo-team-section .wpo-team-wrap .wpo-team-item .wpo-team-text {
  padding: 30px;
  background: none;
  text-align: center;
  position: absolute;
  -webkit-transition: all .3s;
  transition: all .3s;
  left: 0;
  bottom: 0;
  z-index: 1;
  width: 100%;
  bottom: -70px;
  transition: all .3s;
}

.wpo-team-section .wpo-team-wrap .wpo-team-item .wpo-team-text:before {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 3px;
  background: #CDB091;
  content: "";
  -webkit-transition: all .3s;
  transition: all .3s;
}

.wpo-team-section .wpo-team-wrap .wpo-team-item .wpo-team-text h2 {
  font-weight: 400;
  font-size: 30px;
  line-height: 41px;
  color: #fff;
  margin-bottom: 0px;
}

@media (max-width: 1199px) {
  .wpo-team-section .wpo-team-wrap .wpo-team-item .wpo-team-text h2 {
    font-size: 28px;
  }
}

.wpo-team-section .wpo-team-wrap .wpo-team-item .wpo-team-text h2 a {
  color: #fff;
}

.wpo-team-section .wpo-team-wrap .wpo-team-item .wpo-team-text h2 a:hover {
  color: #CDB091;
}

.wpo-team-section .wpo-team-wrap .wpo-team-item .wpo-team-text span {
  color: #CDB091;
}

.wpo-team-section .wpo-team-wrap .wpo-team-item .wpo-team-text .social ul {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 20px;
}

.wpo-team-section .wpo-team-wrap .wpo-team-item .wpo-team-text .social ul li {
  -webkit-transition: all .3s;
  transition: all .3s;
}

.wpo-team-section .wpo-team-wrap .wpo-team-item .wpo-team-text .social ul li + li {
  margin-left: 15px;
}

.wpo-team-section .wpo-team-wrap .wpo-team-item .wpo-team-text .social ul li a {
  display: block;
  width: 40px;
  height: 40px;
  background: #24384B;
  line-height: 43px;
  text-align: center;
  color: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  font-size: 15px;
}

.wpo-team-section .wpo-team-wrap .wpo-team-item .wpo-team-text .social ul li a:hover {
  background: #CDB091;
}

.wpo-team-section .wpo-team-wrap .wpo-team-item:hover .wpo-team-text {
  bottom: 0;
}

.wpo-team-section .wpo-team-wrap .wpo-team-item:hover .wpo-team-text:before {
  width: 100%;
}

.wpo-team-section .wpo-team-wrap .owl-nav button.owl-next {
  left: auto;
  right: 0px;
  top: -100px;
}

.wpo-team-section .wpo-team-wrap .owl-nav button {
  position: absolute;
  right: 70px;
  top: -100px;
  height: 50px;
  width: 50px;
  line-height: 50px;
  text-align: center;
  -webkit-transition: all .3s;
  transition: all .3s;
  background: #24384B;
  border: 0;
  color: #CDB091;
  text-decoration: none;
  border-radius: 0;
}

.wpo-team-section .wpo-team-wrap .owl-nav button:hover {
  background: #CDB091;
  color: #fff;
  text-decoration: none;
  border-radius: 0;
}

@media (max-width: 767px) {
  .wpo-team-section .wpo-team-wrap .owl-nav button {
    display: none;
  }
}

.wpo-team-section .wpo-team-wrap .owl-dots {
  bottom: -10px;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

@media (min-width: 575px) {
  .wpo-team-section .wpo-team-wrap .owl-dots {
    display: none;
  }
}

.wpo-team-section .wpo-team-wrap .owl-dots button {
  border: 0;
  width: 10px;
  height: 12px;
  margin: 5px;
  border-radius: 50%;
}

.wpo-team-section .wpo-team-wrap .owl-dots button.active {
  background: #CDB091;
}

/* 3.8 wpo-contact-section */
.wpo-contact-section,
.wpo-contact-section-s2 {
  background: #172533;
}

.wpo-contact-section .contact-info-wrap .contact-info-item,
.wpo-contact-section-s2 .contact-info-wrap .contact-info-item {
  margin-bottom: 55px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.wpo-contact-section .contact-info-wrap .contact-info-item:last-child,
.wpo-contact-section-s2 .contact-info-wrap .contact-info-item:last-child {
  margin-bottom: 0;
}

.wpo-contact-section .contact-info-wrap .contact-info-item .contact-info-icon,
.wpo-contact-section-s2 .contact-info-wrap .contact-info-item .contact-info-icon {
  margin-right: 20px;
}

.wpo-contact-section .contact-info-wrap .contact-info-item .contact-info-icon i,
.wpo-contact-section-s2 .contact-info-wrap .contact-info-item .contact-info-icon i {
  font-size: 50px;
  color: #fff;
}

.wpo-contact-section .contact-info-wrap .contact-info-item .contact-info-text h4,
.wpo-contact-section-s2 .contact-info-wrap .contact-info-item .contact-info-text h4 {
  font-weight: 400;
  font-size: 22px;
  line-height: 30px;
  color: #fff;
  margin-bottom: 10px;
}

.wpo-contact-section .contact-info-wrap .contact-info-item .contact-info-text p,
.wpo-contact-section-s2 .contact-info-wrap .contact-info-item .contact-info-text p {
  font-weight: 400;
  font-size: 16px;
  line-height: 23px;
  color: #fff;
  margin-bottom: 0;
}

.wpo-contact-section .wpo-contact-map,
.wpo-contact-section-s2 .wpo-contact-map {
  padding: 20px 0;
  border-top: 1px solid #9A9A9A;
  border-bottom: 1px solid #9A9A9A;
}

.wpo-contact-section .wpo-contact-map iframe,
.wpo-contact-section-s2 .wpo-contact-map iframe {
  height: 415px;
  width: 100%;
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
}

.wpo-contact-section .wpo-contact-section-wrapper,
.wpo-contact-section-s2 .wpo-contact-section-wrapper {
  position: relative;
}

.wpo-contact-section .wpo-contact-section-wrapper .wpo-contact-form-area,
.wpo-contact-section-s2 .wpo-contact-section-wrapper .wpo-contact-form-area {
  padding: 60px 40px 80px;
  position: relative;
  z-index: 9;
  border: 1px solid #9A9A9A;
  max-width: 540px;
  margin: 0 auto;
}

@media (max-width: 1199px) {
  .wpo-contact-section .wpo-contact-section-wrapper .wpo-contact-form-area,
  .wpo-contact-section-s2 .wpo-contact-section-wrapper .wpo-contact-form-area {
    padding: 40px 20px;
    max-width: 360px;
  }
}

@media (max-width: 991px) {
  .wpo-contact-section .wpo-contact-section-wrapper .wpo-contact-form-area,
  .wpo-contact-section-s2 .wpo-contact-section-wrapper .wpo-contact-form-area {
    max-width: 100%;
    margin: 50px 0;
  }
}

.wpo-contact-section .wpo-contact-section-wrapper .wpo-contact-form-area .form-control,
.wpo-contact-section-s2 .wpo-contact-section-wrapper .wpo-contact-form-area .form-control {
  width: 100%;
  height: 60px;
  margin-bottom: 20px;
  border: 0;
  border-bottom: 1px solid #9A9A9A;
  background: transparent;
  color: #fff;
  border-radius: 0;
  font-weight: 400;
  font-size: 20px;
  line-height: 25px;
  padding: 0;
}

.wpo-contact-section .wpo-contact-section-wrapper .wpo-contact-form-area .form-control:focus,
.wpo-contact-section-s2 .wpo-contact-section-wrapper .wpo-contact-form-area .form-control:focus {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.wpo-contact-section .wpo-contact-section-wrapper .wpo-contact-form-area .form-control::-webkit-input-placeholder,
.wpo-contact-section-s2 .wpo-contact-section-wrapper .wpo-contact-form-area .form-control::-webkit-input-placeholder {
  color: #fff;
}

.wpo-contact-section .wpo-contact-section-wrapper .wpo-contact-form-area .form-control:-ms-input-placeholder,
.wpo-contact-section-s2 .wpo-contact-section-wrapper .wpo-contact-form-area .form-control:-ms-input-placeholder {
  color: #fff;
}

.wpo-contact-section .wpo-contact-section-wrapper .wpo-contact-form-area .form-control::-ms-input-placeholder,
.wpo-contact-section-s2 .wpo-contact-section-wrapper .wpo-contact-form-area .form-control::-ms-input-placeholder {
  color: #fff;
}

.wpo-contact-section .wpo-contact-section-wrapper .wpo-contact-form-area .form-control::placeholder,
.wpo-contact-section-s2 .wpo-contact-section-wrapper .wpo-contact-form-area .form-control::placeholder {
  color: #fff;
}

.wpo-contact-section .wpo-contact-section-wrapper .wpo-contact-form-area textarea.form-control,
.wpo-contact-section-s2 .wpo-contact-section-wrapper .wpo-contact-form-area textarea.form-control {
  height: 130px;
}

.wpo-contact-section .wpo-contact-section-wrapper .wpo-contact-form-area select.form-control,
.wpo-contact-section-s2 .wpo-contact-section-wrapper .wpo-contact-form-area select.form-control {
  color: #fff;
  -webkit-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  -moz-appearance: none;
  background: transparent url(../images/select-icon2.png) no-repeat calc(100% - 15px) center;
  position: relative;
}

.wpo-contact-section .wpo-contact-section-wrapper .wpo-contact-form-area select.form-control option,
.wpo-contact-section-s2 .wpo-contact-section-wrapper .wpo-contact-form-area select.form-control option {
  background: #1c2b3b;
  border: 0;
}

.wpo-contact-section .wpo-contact-section-wrapper .wpo-contact-form-area .submit-area,
.wpo-contact-section-s2 .wpo-contact-section-wrapper .wpo-contact-form-area .submit-area {
  margin-top: 50px;
  text-align: center;
}

/* 3.9 wpo-blog-section */
.wpo-blog-section {
  padding-bottom: 90px;
  background: #1E2E3E;
}

@media (max-width: 767px) {
  .wpo-blog-section {
    padding-bottom: 60px;
    padding-top: 60px;
  }
}

.wpo-blog-section .wpo-blog-wrap {
  position: relative;
  z-index: 1;
}

.wpo-blog-section .see-more-btn {
  text-align: right;
}

@media (max-width: 991px) {
  .wpo-blog-section .see-more-btn {
    text-align: left;
    margin-bottom: 30px;
  }
}

.wpo-blog-section .see-more-btn a {
  display: inline-block;
  padding: 10px 25px;
  border: 1px solid #7E7E7E;
  font-weight: 600;
  font-size: 20px;
  line-height: 25px;
  color: #fff;
}

.wpo-blog-section .see-more-btn a:hover {
  background: #CDB091;
  border-color: #CDB091;
}

.wpo-blog-section .wpo-blog-items .row {
  margin: 0 -20px;
}

.wpo-blog-section .wpo-blog-items .col {
  padding: 0 20px;
}

.wpo-blog-section .wpo-blog-item {
  margin-bottom: 30px;
}

.wpo-blog-section .wpo-blog-item .wpo-blog-img img {
  width: 100%;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}

.wpo-blog-section .wpo-blog-item .wpo-blog-content {
  padding-top: 30px;
}

.wpo-blog-section .wpo-blog-item .wpo-blog-content ul {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
}

@media (max-width: 991px) {
  .wpo-blog-section .wpo-blog-item .wpo-blog-content ul {
    margin-bottom: 10px;
  }
}

.wpo-blog-section .wpo-blog-item .wpo-blog-content ul li {
  color: #BEBEBE;
  font-weight: 400;
  font-size: 18px;
  line-height: 23px;
}

@media (max-width: 1399px) {
  .wpo-blog-section .wpo-blog-item .wpo-blog-content ul li {
    font-size: 15px;
  }
}

@media (max-width: 991px) {
  .wpo-blog-section .wpo-blog-item .wpo-blog-content ul li {
    font-size: 14px;
  }
}

.wpo-blog-section .wpo-blog-item .wpo-blog-content ul li + li {
  padding-left: 20px;
  margin-left: 20px;
  position: relative;
}

@media (max-width: 575px) {
  .wpo-blog-section .wpo-blog-item .wpo-blog-content ul li + li {
    padding-left: 10px;
    margin-left: 10px;
  }
}

.wpo-blog-section .wpo-blog-item .wpo-blog-content ul li + li:before {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 6px;
  height: 6px;
  content: "";
  background: #BEBEBE;
  border-radius: 50%;
}

.wpo-blog-section .wpo-blog-item .wpo-blog-content ul li a {
  color: #BEBEBE;
}

.wpo-blog-section .wpo-blog-item .wpo-blog-content ul li a:hover {
  color: #CDB091;
}

.wpo-blog-section .wpo-blog-item .wpo-blog-content h2 {
  font-family: "DM Serif Text", serif;
  margin-bottom: 25px;
  font-weight: 400;
  font-size: 26px;
  line-height: 36px;
  margin-top: 0;
}

@media (max-width: 1399px) {
  .wpo-blog-section .wpo-blog-item .wpo-blog-content h2 {
    font-size: 24px;
  }
}

@media (max-width: 1200px) {
  .wpo-blog-section .wpo-blog-item .wpo-blog-content h2 {
    font-size: 22px;
  }
}

@media (max-width: 991px) {
  .wpo-blog-section .wpo-blog-item .wpo-blog-content h2 {
    margin-bottom: 10px;
  }
}

.wpo-blog-section .wpo-blog-item .wpo-blog-content h2 a {
  color: #fff;
}

.wpo-blog-section .wpo-blog-item .wpo-blog-content h2 a:hover {
  color: #CDB091;
}

.wpo-blog-section .wpo-blog-item .wpo-blog-content .b-btn {
  display: inline-block;
  font-weight: 700;
  font-size: 18px;
  line-height: 23px;
  padding-left: 60px;
  color: #CDB091;
  position: relative;
}

@media (max-width: 575px) {
  .wpo-blog-section .wpo-blog-item .wpo-blog-content .b-btn {
    font-size: 16px;
    padding-left: 40px;
  }
}

.wpo-blog-section .wpo-blog-item .wpo-blog-content .b-btn:before {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 50px;
  height: 2px;
  background: #CDB091;
  content: "";
  -webkit-transition: all .3s;
  transition: all .3s;
}

@media (max-width: 991px) {
  .wpo-blog-section .wpo-blog-item .wpo-blog-content .b-btn:before {
    width: 30px;
  }
}

.wpo-blog-section .wpo-blog-item .wpo-blog-content .b-btn:hover:before {
  left: -5px;
}

/*======================================
 5. Home-style-2 
 =======================================*/
/* 5.1 wpo-about-section-s2 */
@media (max-width: 575px) {
  .wpo-about-section-s2 {
    padding-bottom: 0;
  }
}

.wpo-about-section-s2 .wpo-about-section-wrapper .wpo-about-img,
.wpo-about-section-s3 .wpo-about-section-wrapper .wpo-about-img,
.wpo-about-section-s4 .wpo-about-section-wrapper .wpo-about-img {
  margin-right: 30px;
}

@media (max-width: 991px) {
  .wpo-about-section-s2 .wpo-about-section-wrapper .wpo-about-img,
  .wpo-about-section-s3 .wpo-about-section-wrapper .wpo-about-img,
  .wpo-about-section-s4 .wpo-about-section-wrapper .wpo-about-img {
    margin-right: 0;
  }
}

.wpo-about-section-s2 .wpo-about-section-wrapper .wpo-about-content,
.wpo-about-section-s3 .wpo-about-section-wrapper .wpo-about-content,
.wpo-about-section-s4 .wpo-about-section-wrapper .wpo-about-content {
  max-width: 100%;
  padding-left: 40px;
}

@media (max-width: 1399px) {
  .wpo-about-section-s2 .wpo-about-section-wrapper .wpo-about-content,
  .wpo-about-section-s3 .wpo-about-section-wrapper .wpo-about-content,
  .wpo-about-section-s4 .wpo-about-section-wrapper .wpo-about-content {
    padding-left: 20px;
  }
}

@media (max-width: 1399px) {
  .wpo-about-section-s2 .wpo-about-section-wrapper .wpo-about-content,
  .wpo-about-section-s3 .wpo-about-section-wrapper .wpo-about-content,
  .wpo-about-section-s4 .wpo-about-section-wrapper .wpo-about-content {
    padding-left: 1px;
    margin-top: 40px;
  }
}

.wpo-about-section-s2 .wpo-about-section-wrapper .wpo-about-content h2,
.wpo-about-section-s3 .wpo-about-section-wrapper .wpo-about-content h2,
.wpo-about-section-s4 .wpo-about-section-wrapper .wpo-about-content h2 {
  font-weight: 400;
  font-size: 40px;
  line-height: 55px;
}

@media (max-width: 1500px) {
  .wpo-about-section-s2 .wpo-about-section-wrapper .wpo-about-content h2,
  .wpo-about-section-s3 .wpo-about-section-wrapper .wpo-about-content h2,
  .wpo-about-section-s4 .wpo-about-section-wrapper .wpo-about-content h2 {
    font-size: 35px;
  }
}

@media (max-width: 1399px) {
  .wpo-about-section-s2 .wpo-about-section-wrapper .wpo-about-content h2,
  .wpo-about-section-s3 .wpo-about-section-wrapper .wpo-about-content h2,
  .wpo-about-section-s4 .wpo-about-section-wrapper .wpo-about-content h2 {
    font-size: 30px;
    line-height: 45px;
  }
}

@media (max-width: 767px) {
  .wpo-about-section-s2 .wpo-about-section-wrapper .wpo-about-content h2,
  .wpo-about-section-s3 .wpo-about-section-wrapper .wpo-about-content h2,
  .wpo-about-section-s4 .wpo-about-section-wrapper .wpo-about-content h2 {
    font-size: 25px;
    line-height: 40px;
  }
}

.wpo-about-section-s2 .wpo-about-section-wrapper .specialization-wrap,
.wpo-about-section-s3 .wpo-about-section-wrapper .specialization-wrap,
.wpo-about-section-s4 .wpo-about-section-wrapper .specialization-wrap {
  padding-right: 20px;
  border-right: 1px solid #364D65;
}

@media (max-width: 991px) {
  .wpo-about-section-s2 .wpo-about-section-wrapper .specialization-wrap,
  .wpo-about-section-s3 .wpo-about-section-wrapper .specialization-wrap,
  .wpo-about-section-s4 .wpo-about-section-wrapper .specialization-wrap {
    margin-top: 40px;
    border: 0;
  }
}

.wpo-about-section-s2 .wpo-about-section-wrapper .specialization-wrap h2,
.wpo-about-section-s3 .wpo-about-section-wrapper .specialization-wrap h2,
.wpo-about-section-s4 .wpo-about-section-wrapper .specialization-wrap h2 {
  font-weight: 400;
  font-size: 40px;
  line-height: 55px;
  color: #fff;
  margin-bottom: 50px;
}

@media (max-width: 1399px) {
  .wpo-about-section-s2 .wpo-about-section-wrapper .specialization-wrap h2,
  .wpo-about-section-s3 .wpo-about-section-wrapper .specialization-wrap h2,
  .wpo-about-section-s4 .wpo-about-section-wrapper .specialization-wrap h2 {
    font-size: 35px;
    line-height: 50px;
  }
}

.wpo-about-section-s2 .wpo-about-section-wrapper .specialization-wrap .specialization-item,
.wpo-about-section-s3 .wpo-about-section-wrapper .specialization-wrap .specialization-item,
.wpo-about-section-s4 .wpo-about-section-wrapper .specialization-wrap .specialization-item {
  margin-bottom: 75px;
}

.wpo-about-section-s2 .wpo-about-section-wrapper .specialization-wrap .specialization-item:last-child,
.wpo-about-section-s3 .wpo-about-section-wrapper .specialization-wrap .specialization-item:last-child,
.wpo-about-section-s4 .wpo-about-section-wrapper .specialization-wrap .specialization-item:last-child {
  margin-bottom: 0;
}

.wpo-about-section-s2 .wpo-about-section-wrapper .specialization-wrap .specialization-item .specialization-icon,
.wpo-about-section-s3 .wpo-about-section-wrapper .specialization-wrap .specialization-item .specialization-icon,
.wpo-about-section-s4 .wpo-about-section-wrapper .specialization-wrap .specialization-item .specialization-icon {
  float: left;
  overflow: hidden;
  padding-right: 15px;
  margin-right: 15px;
  border-right: 1px solid #6C88A5;
}

.wpo-about-section-s2 .wpo-about-section-wrapper .specialization-wrap .specialization-item .specialization-icon .fi::before,
.wpo-about-section-s3 .wpo-about-section-wrapper .specialization-wrap .specialization-item .specialization-icon .fi::before,
.wpo-about-section-s4 .wpo-about-section-wrapper .specialization-wrap .specialization-item .specialization-icon .fi::before {
  font-size: 40px;
  color: #CDB091;
}

.wpo-about-section-s2 .wpo-about-section-wrapper .specialization-wrap .specialization-item .specialization-text,
.wpo-about-section-s3 .wpo-about-section-wrapper .specialization-wrap .specialization-item .specialization-text,
.wpo-about-section-s4 .wpo-about-section-wrapper .specialization-wrap .specialization-item .specialization-text {
  overflow: hidden;
}

.wpo-about-section-s2 .wpo-about-section-wrapper .specialization-wrap .specialization-item .specialization-text span,
.wpo-about-section-s3 .wpo-about-section-wrapper .specialization-wrap .specialization-item .specialization-text span,
.wpo-about-section-s4 .wpo-about-section-wrapper .specialization-wrap .specialization-item .specialization-text span {
  font-weight: 400;
  font-size: 20px;
  line-height: 25px;
  color: #7391AE;
}

.wpo-about-section-s2 .wpo-about-section-wrapper .specialization-wrap .specialization-item .specialization-text h4,
.wpo-about-section-s3 .wpo-about-section-wrapper .specialization-wrap .specialization-item .specialization-text h4,
.wpo-about-section-s4 .wpo-about-section-wrapper .specialization-wrap .specialization-item .specialization-text h4 {
  font-weight: 400;
  font-size: 25px;
  line-height: 34px;
  color: #fff;
  margin-top: 5px;
}

@media (max-width: 1399px) {
  .wpo-about-section-s2 .wpo-about-section-wrapper .specialization-wrap .specialization-item .specialization-text h4,
  .wpo-about-section-s3 .wpo-about-section-wrapper .specialization-wrap .specialization-item .specialization-text h4,
  .wpo-about-section-s4 .wpo-about-section-wrapper .specialization-wrap .specialization-item .specialization-text h4 {
    font-size: 20px;
    line-height: 35px;
  }
}

/* 5.2 wpo-practice-section-s2 */
.wpo-practice-section-s2 {
  padding-left: 0;
}

.wpo-practice-section-s2 .wpo-practice-wrap {
  right: 0;
}

/* 5.3 wpo-contact-section-s2 */
.wpo-contact-section-s2 {
  padding-left: 0;
}

.wpo-contact-section-s2 .wpo-contact-section-wrapper .contact-info-wrap {
  min-height: 100%;
  background: #1E2E3E;
  padding: 100px;
}

@media (max-width: 1399px) {
  .wpo-contact-section-s2 .wpo-contact-section-wrapper .contact-info-wrap {
    padding: 60px;
  }
}

@media (max-width: 991px) {
  .wpo-contact-section-s2 .wpo-contact-section-wrapper .contact-info-wrap {
    padding: 30px;
  }
}

@media (max-width: 575px) {
  .wpo-contact-section-s2 .wpo-contact-section-wrapper .contact-info-wrap {
    padding: 15px;
  }
}

.wpo-contact-section-s2 .wpo-contact-section-wrapper .contact-info-wrap .contact-info-title {
  margin-bottom: 38px;
}

@media (max-width: 575px) {
  .wpo-contact-section-s2 .wpo-contact-section-wrapper .contact-info-wrap .contact-info-title {
    margin-bottom: 20px;
  }
}

.wpo-contact-section-s2 .wpo-contact-section-wrapper .contact-info-wrap .contact-info-title h3 {
  font-weight: 400;
  font-size: 40px;
  line-height: 55px;
  color: #fff;
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 20px;
}

@media (max-width: 575px) {
  .wpo-contact-section-s2 .wpo-contact-section-wrapper .contact-info-wrap .contact-info-title h3 {
    font-size: 25px;
    margin-bottom: 20px;
    padding-bottom: 10px;
  }
}

.wpo-contact-section-s2 .wpo-contact-section-wrapper .contact-info-wrap .contact-info-title h3:before {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 300px;
  height: 2px;
  content: "";
  background: #CDB091;
}

@media (max-width: 575px) {
  .wpo-contact-section-s2 .wpo-contact-section-wrapper .contact-info-wrap .contact-info-title h3:before {
    width: 180px;
    height: 2px;
  }
}

.wpo-contact-section-s2 .wpo-contact-section-wrapper .contact-info-wrap .contact-info-title p {
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: #fff;
}

@media (max-width: 575px) {
  .wpo-contact-section-s2 .wpo-contact-section-wrapper .contact-info-wrap .contact-info-title p {
    font-size: 16px;
  }
}

.wpo-contact-section-s2 .wpo-contact-section-wrapper .contact-info-wrap .contact-info-item {
  margin-bottom: 30px;
}

.wpo-contact-section-s2 .wpo-contact-section-wrapper .contact-info-wrap .contact-info-item:last-child {
  margin-bottom: 0;
}

.wpo-contact-section-s2 .wpo-contact-section-wrapper .col {
  padding: 0;
}

@media (max-width: 991px) {
  .wpo-contact-section-s2 .wpo-contact-section-wrapper .col {
    padding: 0 15px;
  }
}

.wpo-contact-section-s2 .wpo-contact-section-wrapper .wpo-contact-form-area {
  background: #AD9071;
  max-width: 100%;
  border: 0;
  padding: 75px;
}

@media (max-width: 1399px) {
  .wpo-contact-section-s2 .wpo-contact-section-wrapper .wpo-contact-form-area {
    padding: 50px;
  }
}

@media (max-width: 991px) {
  .wpo-contact-section-s2 .wpo-contact-section-wrapper .wpo-contact-form-area {
    padding: 30px;
    margin-bottom: 0;
  }
}

@media (max-width: 575px) {
  .wpo-contact-section-s2 .wpo-contact-section-wrapper .wpo-contact-form-area {
    padding: 20px;
  }
}

.wpo-contact-section-s2 .wpo-contact-section-wrapper .wpo-contact-form-area .form-title {
  margin-bottom: 50px;
  text-align: center;
}

@media (max-width: 991px) {
  .wpo-contact-section-s2 .wpo-contact-section-wrapper .wpo-contact-form-area .form-title {
    margin-bottom: 20px;
  }
}

.wpo-contact-section-s2 .wpo-contact-section-wrapper .wpo-contact-form-area .form-title span {
  font-weight: 400;
  font-size: 20px;
  line-height: 25px;
  color: #fff;
}

.wpo-contact-section-s2 .wpo-contact-section-wrapper .wpo-contact-form-area .form-title h3 {
  font-weight: 400;
  font-size: 40px;
  line-height: 55px;
  color: #fff;
}

@media (max-width: 575px) {
  .wpo-contact-section-s2 .wpo-contact-section-wrapper .wpo-contact-form-area .form-title h3 {
    font-size: 30px;
    line-height: 45px;
  }
}

.wpo-contact-section-s2 .wpo-contact-section-wrapper .wpo-contact-form-area .form-control {
  padding: 15px;
  border: 1px solid #dddddd;
}

@media (max-width: 575px) {
  .wpo-contact-section-s2 .wpo-contact-section-wrapper .wpo-contact-form-area .submit-area {
    margin-top: 30px;
  }
}

.wpo-contact-section-s2 .wpo-contact-section-wrapper .wpo-contact-form-area .theme-btn {
  border-color: #fff;
  color: #fff;
}

.wpo-contact-section-s2 .wpo-contact-section-wrapper .wpo-contact-form-area .theme-btn:before {
  border-color: #fff;
}

.wpo-contact-section-s2 .wpo-contact-section-wrapper .wpo-contact-form-area .theme-btn:after {
  background-color: #fff;
}

.wpo-contact-section-s2 .wpo-contact-section-wrapper .wpo-contact-form-area .theme-btn:hover {
  color: #CDB091;
}

/*======================================
 6. Home-style-3 
 =======================================*/
/* 6.1 wpo-features-section */
.wpo-features-section {
  padding: 40px 0;
  background: rgba(30, 46, 62, 0.8);
  position: relative;
  z-index: 11;
  margin-top: -146px;
}

@media (max-width: 991px) {
  .wpo-features-section {
    margin-top: 0;
    background: #1E2E3E;
    padding-bottom: 0;
  }
}

@media (max-width: 575px) {
  .wpo-features-section .wpo-features-wrap .custom-grid {
    float: left;
    width: 50%;
  }
}

@media (max-width: 460px) {
  .wpo-features-section .wpo-features-wrap .custom-grid {
    width: 100%;
  }
}

@media (max-width: 991px) {
  .wpo-features-section .wpo-features-wrap .features-item {
    margin-bottom: 40px;
  }
}

@media (max-width: 460px) {
  .wpo-features-section .wpo-features-wrap .features-item {
    text-align: center;
  }
}

.wpo-features-section .wpo-features-wrap .features-item .features-icon {
  float: left;
  overflow: hidden;
  padding-right: 15px;
  margin-right: 15px;
  border-right: 1px solid #6C88A5;
}

@media (max-width: 460px) {
  .wpo-features-section .wpo-features-wrap .features-item .features-icon {
    float: none;
    margin: 0;
    padding: 0;
    border: 0;
  }
}

.wpo-features-section .wpo-features-wrap .features-item .features-icon .fi::before {
  font-size: 40px;
  color: #CDB091;
}

.wpo-features-section .wpo-features-wrap .features-item .features-text {
  overflow: hidden;
}

.wpo-features-section .wpo-features-wrap .features-item .features-text span {
  font-weight: 400;
  font-size: 20px;
  line-height: 25px;
  color: #AEC5DB;
}

.wpo-features-section .wpo-features-wrap .features-item .features-text h4 {
  font-weight: 400;
  font-size: 25px;
  line-height: 34px;
  color: #fff;
  margin-top: 5px;
  margin-bottom: 0;
}

@media (max-width: 1399px) {
  .wpo-features-section .wpo-features-wrap .features-item .features-text h4 {
    font-size: 19px;
    line-height: 35px;
  }
}

@media (max-width: 475px) {
  .wpo-features-section .wpo-features-wrap .features-item .features-text h4 {
    font-size: 18px;
    line-height: 35px;
  }
}

/* 6.2 wpo-about-section-s3 */
@media (max-width: 575px) {
  .wpo-about-section-s3 {
    padding-top: 0px;
  }
}

.wpo-about-section-s3 .wpo-about-section-wrapper .visible-text,
.wpo-about-section-s4 .wpo-about-section-wrapper .visible-text {
  right: auto;
  left: 0;
  top: -30px;
}

@media (max-width: 1399px) {
  .wpo-about-section-s3 .wpo-about-section-wrapper .visible-text,
  .wpo-about-section-s4 .wpo-about-section-wrapper .visible-text {
    top: 20px;
  }
}

@media (max-width: 991px) {
  .wpo-about-section-s3 .wpo-about-section-wrapper .visible-text,
  .wpo-about-section-s4 .wpo-about-section-wrapper .visible-text {
    display: none;
  }
}

.wpo-about-section-s3 .wpo-about-section-wrapper .wpo-about-content,
.wpo-about-section-s4 .wpo-about-section-wrapper .wpo-about-content {
  padding-right: 40px;
}

@media (max-width: 991px) {
  .wpo-about-section-s3 .wpo-about-section-wrapper .wpo-about-content,
  .wpo-about-section-s4 .wpo-about-section-wrapper .wpo-about-content {
    padding-right: 0;
    margin-top: 0;
    margin-bottom: 40px;
    text-align: center;
  }
}

.wpo-about-section-s3 .wpo-about-section-wrapper .wpo-about-img,
.wpo-about-section-s4 .wpo-about-section-wrapper .wpo-about-img {
  position: relative;
  margin-left: 200px;
}

@media (max-width: 1399px) {
  .wpo-about-section-s3 .wpo-about-section-wrapper .wpo-about-img,
  .wpo-about-section-s4 .wpo-about-section-wrapper .wpo-about-img {
    margin-left: 120px;
  }
}

@media (max-width: 420px) {
  .wpo-about-section-s3 .wpo-about-section-wrapper .wpo-about-img,
  .wpo-about-section-s4 .wpo-about-section-wrapper .wpo-about-img {
    margin-left: 80px;
  }
}

.wpo-about-section-s3 .wpo-about-section-wrapper .wpo-about-img .about-img-inner,
.wpo-about-section-s4 .wpo-about-section-wrapper .wpo-about-img .about-img-inner {
  position: absolute;
  left: -190px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  max-width: 380px;
  padding: 15px;
  background-color: #1E2E3E;
  border: 1px solid #786653;
}

@media (max-width: 1399px) {
  .wpo-about-section-s3 .wpo-about-section-wrapper .wpo-about-img .about-img-inner,
  .wpo-about-section-s4 .wpo-about-section-wrapper .wpo-about-img .about-img-inner {
    max-width: 280px;
    left: -140px;
  }
}

@media (max-width: 575px) {
  .wpo-about-section-s3 .wpo-about-section-wrapper .wpo-about-img .about-img-inner,
  .wpo-about-section-s4 .wpo-about-section-wrapper .wpo-about-img .about-img-inner {
    max-width: 220px;
    left: -110px;
  }
}

@media (max-width: 420px) {
  .wpo-about-section-s3 .wpo-about-section-wrapper .wpo-about-img .about-img-inner,
  .wpo-about-section-s4 .wpo-about-section-wrapper .wpo-about-img .about-img-inner {
    max-width: 180px;
    left: -80px;
    padding: 8px;
  }
}

/* 6.3 wpo-practice-section-s3 */
.wpo-practice-section-s3 {
  background: #1E2E3E;
  padding-bottom: 90px;
}

@media (max-width: 991px) {
  .wpo-practice-section-s3 {
    padding-top: 60px;
    padding-bottom: 50px;
  }
}

@media (max-width: 767px) {
  .wpo-practice-section-s3 {
    padding-top: 60px;
    padding-bottom: 50px;
  }
}

.wpo-practice-section-s3 .wpo-practice-wrap .wpo-practice-item {
  padding: 50px;
  text-align: center;
  border: 1px solid #405D79;
  margin-bottom: 30px;
}

@media (max-width: 1199px) {
  .wpo-practice-section-s3 .wpo-practice-wrap .wpo-practice-item {
    padding: 30px;
  }
}

.wpo-practice-section-s3 .wpo-practice-wrap .wpo-practice-item .wpo-practice-icon {
  width: 110px;
  height: 110px;
  line-height: 110px;
  background: rgba(85, 128, 171, 0.2);
  margin: 0 auto;
  border-radius: 50%;
  font-size: 50px;
  color: #CDB091;
  margin-bottom: 30px;
}

.wpo-practice-section-s3 .wpo-practice-wrap .wpo-practice-item .wpo-practice-content h2 {
  font-weight: 400;
  font-size: 35px;
  line-height: 48px;
  margin-bottom: 20px;
}

@media (max-width: 1199px) {
  .wpo-practice-section-s3 .wpo-practice-wrap .wpo-practice-item .wpo-practice-content h2 {
    font-size: 30px;
    margin-bottom: 15px;
  }
}

.wpo-practice-section-s3 .wpo-practice-wrap .wpo-practice-item .wpo-practice-content h2 a {
  color: #fff;
}

.wpo-practice-section-s3 .wpo-practice-wrap .wpo-practice-item .wpo-practice-content h2 a:hover {
  color: #CDB091;
}

.wpo-practice-section-s3 .wpo-practice-wrap .wpo-practice-item .wpo-practice-content p {
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: #fff;
  margin-bottom: 0;
}

/* 6.4 wpo-testimonials-section-s2 */
.wpo-testimonials-section-s2 .wpo-testimonials-wrap {
  background: #172533;
  padding: 0;
}

.wpo-testimonials-section-s2 .wpo-testimonials-wrap .wpo-testimonials-active .wpo-testimonials-item {
  padding: 0 85px;
}

@media (max-width: 1399px) {
  .wpo-testimonials-section-s2 .wpo-testimonials-wrap .wpo-testimonials-active .wpo-testimonials-item {
    padding: 0 30px;
  }
}

@media (max-width: 991px) {
  .wpo-testimonials-section-s2 .wpo-testimonials-wrap .wpo-testimonials-active .wpo-testimonials-item {
    padding: 60px 30px 80px;
  }
}

@media (max-width: 575px) {
  .wpo-testimonials-section-s2 .wpo-testimonials-wrap .wpo-testimonials-active .wpo-testimonials-item {
    padding: 40px 15px 60px;
  }
}

.wpo-testimonials-section-s2 .wpo-testimonials-wrap .wpo-testimonials-active .wpo-testimonials-item p {
  margin-bottom: 40px;
}

@media (max-width: 1399px) {
  .wpo-testimonials-section-s2 .wpo-testimonials-wrap .wpo-testimonials-active .wpo-testimonials-item p {
    font-size: 16px;
    line-height: 27px;
    margin-bottom: 20px;
  }
}

.wpo-testimonials-section-s2 .wpo-testimonials-wrap .wpo-testimonials-active .owl-dots {
  left: auto;
  top: auto;
  bottom: -70px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

@media (max-width: 1199px) {
  .wpo-testimonials-section-s2 .wpo-testimonials-wrap .wpo-testimonials-active .owl-dots {
    bottom: -25px;
  }
}

@media (max-width: 991px) {
  .wpo-testimonials-section-s2 .wpo-testimonials-wrap .wpo-testimonials-active .owl-dots {
    bottom: 20px;
  }
}

.wpo-testimonials-section-s2 .wpo-testimonials-wrap .wpo-testimonials-active .owl-dots button {
  display: inline-block;
  margin-bottom: 0px;
  margin-right: 10px;
}

.wpo-testimonials-section-s2 .wpo-testimonials-wrap .wpo-testimonials-active .owl-dots .owl-dot.active {
  background-color: #CDB091;
}

/* 6.5 wpo-case-section-s2 */
.wpo-case-section-s2 .grid .img-holder,
.wpo-case-section-s3 .grid .img-holder {
  position: relative;
}

.wpo-case-section-s2 .grid .img-holder:before,
.wpo-case-section-s3 .grid .img-holder:before {
  position: absolute;
  left: 2%;
  top: 1%;
  width: 96%;
  height: 98%;
}

.wpo-case-section-s2 .case-menu ul,
.wpo-case-section-s3 .case-menu ul {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: -20px;
  margin-bottom: 40px;
}

.wpo-case-section-s2 .case-grids .grid,
.wpo-case-section-s3 .case-grids .grid {
  width: 33.33%;
}

@media (max-width: 575px) {
  .wpo-case-section-s2 .case-grids .grid,
  .wpo-case-section-s3 .case-grids .grid {
    width: 100%;
  }
}

.wpo-case-section-s2 .case-grids .grid .theme-btn-s2,
.wpo-case-section-s3 .case-grids .grid .theme-btn-s2 {
  padding: 10px 25px;
}

/*======================================
 7. Home-style-3 
 =======================================*/
/* 7.1 wpo-about-section-s3 */
.wpo-about-section-s4 {
  background: #fff;
}

.wpo-about-section-s4 .wpo-about-section-wrapper .visible-text h2 {
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #E9EDF0;
  opacity: .5;
}

.wpo-about-section-s4 .wpo-about-section-wrapper .wpo-about-content {
  padding-right: 40px;
}

@media (max-width: 991px) {
  .wpo-about-section-s4 .wpo-about-section-wrapper .wpo-about-content {
    padding-right: 0;
    margin-top: 0;
    margin-bottom: 40px;
  }
}

.wpo-about-section-s4 .wpo-about-section-wrapper .wpo-about-content h2 {
  color: #1E2E3E;
}

.wpo-about-section-s4 .wpo-about-section-wrapper .wpo-about-content p {
  color: #525252;
}

.wpo-about-section-s4 .wpo-about-section-wrapper .wpo-about-img {
  position: relative;
  margin-left: 200px;
  border-color: #CEE0F2;
}

@media (max-width: 1399px) {
  .wpo-about-section-s4 .wpo-about-section-wrapper .wpo-about-img {
    margin-left: 120px;
  }
}

@media (max-width: 420px) {
  .wpo-about-section-s4 .wpo-about-section-wrapper .wpo-about-img {
    margin-left: 80px;
  }
}

.wpo-about-section-s4 .wpo-about-section-wrapper .wpo-about-img .about-img-inner {
  background-color: #fff;
  border-color: #CEE0F2;
}

/* 7.2 wpo-case-section-s3 */
.wpo-case-section-s3 {
  background: #fff;
  position: relative;
}

.wpo-case-section-s3:before {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 120px;
  content: "";
  background: #1E2E3E;
}

.wpo-case-section-s3.b-none:before {
  display: none;
}

.wpo-case-section-s3 .case-menu li a {
  color: #525252;
}

/*==========================================
8. wpo-Attorney-single
===========================================*/
.attorney-pg-area {
  margin: 0 auto;
  background: #F5F5F5;
  padding-top: 200px;
  padding-bottom: 100px;
}

@media (max-width: 1199px) {
  .attorney-pg-area {
    padding: 100px 0;
  }
}

@media (max-width: 991px) {
  .attorney-pg-area {
    padding: 90px 0;
  }
}

@media (max-width: 767px) {
  .attorney-pg-area {
    padding: 70px 0;
  }
}

.attorney-single-wrap {
  background: #fff;
  padding: 100px;
  padding-top: 0;
}

@media (max-width: 1199px) {
  .attorney-single-wrap {
    padding: 50px;
  }
}

@media (max-width: 767px) {
  .attorney-single-wrap {
    padding: 30px;
  }
}

@media (max-width: 575px) {
  .attorney-single-wrap {
    padding: 15px;
  }
}

.attorney-info-img {
  margin-top: -100px;
  max-width: 480px;
}

@media (max-width: 1199px) {
  .attorney-info-img {
    margin-top: 0;
  }
}

@media (max-width: 991px) {
  .attorney-info-img {
    max-width: 100%;
  }
}

.attorney-info-img img {
  width: 100%;
}

.attorney-info-text {
  padding-left: 30px;
  padding-top: 30px;
}

@media (max-width: 991px) {
  .attorney-info-text {
    padding-left: 0;
  }
}

.attorney-info-text h2 {
  font-weight: 400;
  font-size: 40px;
  line-height: 55px;
  color: #1E2E3E;
  margin-top: 0;
  margin-bottom: 30px;
}

@media (max-width: 575px) {
  .attorney-info-text h2 {
    font-size: 30px;
    line-height: 45px;
  }
}

.attorney-info-text ul li {
  font-weight: 400;
  font-size: 20px;
  line-height: 27px;
  color: #001635;
  margin-bottom: 15px;
  list-style: none;
  font-family: "DM Serif Text", serif;
}

@media (max-width: 575px) {
  .attorney-info-text ul li {
    font-size: 16px;
    line-height: 27px;
  }
}

.attorney-info-text ul li:last-child {
  padding-bottom: 0;
}

.attorney-info-text ul li span {
  font-size: 16px;
  color: #8c8c8c;
  display: inline-block;
  position: relative;
  padding-left: 5px;
  font-family: "Mulish", sans-serif;
}

.attorney-info-text ul li:last-child {
  margin-bottom: 0;
}

.attorney-info-text .certificates-wrap {
  margin-top: 40px;
}

.attorney-info-text .certificates-wrap h2 {
  font-weight: 400;
  font-size: 27px;
  line-height: 37px;
}

.attorney-info-text .certificates-wrap .certificates-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.attorney-info-text .certificates-wrap .certificates-items .certificates-item + .certificates-item {
  margin-left: 20px;
}

.attorney-widget {
  padding-top: 40px;
  margin-top: 40px;
  border-top: 1px solid #D9D9D9;
}

.attorney-widget h2 {
  font-weight: 400;
  font-size: 35px;
  line-height: 48px;
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .attorney-widget h2 {
    font-size: 25px;
    line-height: 35px;
    margin-bottom: 15px;
  }
}

.attorney-exprience-area .exprience-wrap {
  max-width: 560px;
}

.attorney-exprience-area .education-area {
  padding-left: 50px;
}

@media (max-width: 991px) {
  .attorney-exprience-area .education-area {
    padding-left: 0;
    margin-bottom: 40px;
  }
}

.attorney-exprience-area .education-area .education-area {
  max-width: 600px;
}

.attorney-exprience-area .education-area ul {
  list-style: none;
}

.attorney-exprience-area .education-area ul li {
  padding-bottom: 15px;
  position: relative;
  padding-left: 30px;
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
}

.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 .ex-wiget {
  padding-top: 60px;
}

.attorney-exprience-area .education-area .ex-wiget h2 {
  font-size: 30px;
  font-weight: 700;
  color: #333333;
  margin-bottom: 30px;
}

.skills-area {
  padding-top: 40px;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-top: 1px solid #D9D9D9;
  border-bottom: 1px solid #D9D9D9;
}

@media (max-width: 991px) {
  .skills-area {
    padding-top: 20px;
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
}

.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: 18px;
  line-height: 23px;
  color: #525252;
  font-family: "Mulish", sans-serif;
}

@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: #fafbfe;
  height: 6px;
  position: relative;
}

.skills-area .wpo-skill-progress .wpo-progress-single .progress .progress-bar {
  background-color: #CDB091;
}

.skills-area .wpo-skill-progress .progress-number {
  position: absolute;
  right: 0;
  top: -10px;
  font-weight: 400;
  font-size: 18px;
  line-height: 23px;
  color: #525252;
}

@media (max-width: 767px) {
  .skills-area .wpo-skill-progress .progress-number {
    font-size: 18px;
    top: -5px;
  }
}

.exprience-wrap p {
  color: #5d5851;
  margin-bottom: 30px;
}

@media (max-width: 991px) {
  .exprience-wrap p {
    margin-bottom: 15px;
  }
}

.exprience-wrap {
  padding-bottom: 40px;
}

.wpo-contact-area {
  padding-top: 50px;
}

@media (max-width: 991px) {
  .wpo-contact-area {
    padding-top: 20px;
  }
}

.wpo-contact-area .wpo-contact-title {
  max-width: 580px;
  margin: 0 auto;
  margin-bottom: 40px;
  text-align: center;
}

.wpo-contact-area .quote-form {
  max-width: 890px;
  margin: 0 auto;
}

.wpo-contact-area .quote-form .form-control {
  height: 55px;
  border: 0;
  margin-bottom: 20px;
  padding: 15px;
  background: #EBEBEB;
}

.wpo-contact-area .quote-form .form-control:focus {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-color: #CDB091;
}

.wpo-contact-area .quote-form textarea.form-control {
  height: 125px;
}

.wpo-contact-area .quote-form select.form-control {
  -webkit-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  -moz-appearance: none;
  background: #EBEBEB url(../images/select-icon2.png) no-repeat calc(100% - 15px) center;
  position: relative;
}

.half-col {
  float: left;
  width: 50%;
  padding: 0 10px 5px;
}

@media (max-width: 575px) {
  .half-col {
    width: 100%;
  }
}

.full-col {
  padding: 0 10px 5px;
}

.exprience-area {
  padding-top: 60px;
}

/*--------------------------------------------------------------
9. wpo-service-single-section
--------------------------------------------------------------*/
@media (max-width: 991px) {
  .wpo-service-single-section {
    padding-bottom: 60px;
  }
}

.wpo-service-single-section .wpo-service-single-wrap img {
  width: 100%;
}

.wpo-service-single-section .wpo-service-single-wrap .wpo-service-single-content .wpo-service-single-content-des {
  padding: 60px 0 20px;
}

@media (max-width: 767px) {
  .wpo-service-single-section .wpo-service-single-wrap .wpo-service-single-content .wpo-service-single-content-des {
    padding: 35px 0 0;
  }
}

.wpo-service-single-section .wpo-service-single-wrap .wpo-service-single-content .wpo-service-single-content-des h2 {
  font-weight: 400;
  font-size: 40px;
  line-height: 55px;
  font-family: "DM Serif Text", serif;
  margin-bottom: 30px;
  color: #000;
}

@media (max-width: 767px) {
  .wpo-service-single-section .wpo-service-single-wrap .wpo-service-single-content .wpo-service-single-content-des h2 {
    font-size: 25px;
    margin-bottom: 16px;
  }
}

.wpo-service-single-section .wpo-service-single-wrap .wpo-service-single-content .wpo-service-single-content-des p {
  margin-bottom: 30px;
}

.wpo-service-single-section .wpo-service-single-wrap .wpo-service-single-content .rule-area h3 {
  font-weight: 400;
  font-size: 30px;
  line-height: 41px;
  color: #000;
  margin-bottom: 20px;
}

@media (max-width: 767px) {
  .wpo-service-single-section .wpo-service-single-wrap .wpo-service-single-content .rule-area h3 {
    font-size: 25px;
    line-height: 35px;
  }
}

.wpo-service-single-section .wpo-service-single-wrap .wpo-service-single-content .rule-area ul.rules {
  list-style: none;
  margin-top: 20px;
}

.wpo-service-single-section .wpo-service-single-wrap .wpo-service-single-content .rule-area ul.rules li {
  padding-bottom: 15px;
  position: relative;
  padding-left: 30px;
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
}

.wpo-service-single-section .wpo-service-single-wrap .wpo-service-single-content .rule-area ul.rules li:before {
  position: absolute;
  left: 0;
  top: 5px;
  content: "\e661";
  font-family: 'themify';
  font-size: 14px;
}

.wpo-service-single-section .wpo-service-single-wrap .wpo-service-single-content .rule-area .wpo-service-single-sub-img {
  margin-top: 50px;
}

.wpo-service-single-section .wpo-service-single-wrap .wpo-service-single-content .rule-area .wpo-service-single-sub-img ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  margin: 0 -10px;
  margin-bottom: 20px;
}

.wpo-service-single-section .wpo-service-single-wrap .wpo-service-single-content .rule-area .wpo-service-single-sub-img li {
  padding-left: 10px;
  padding-right: 10px;
}

.wpo-service-single-section .wpo-service-single-wrap .wpo-service-single-content .rule-area .wpo-service-single-sub-img li:last-child {
  padding-left: 10px;
  padding-right: 0;
}

.wpo-service-single-section .wpo-service-single-wrap .wpo-faq-section {
  padding-top: 40px;
  margin-top: 40px;
  border-top: 1px solid #D9D9D9;
}

.wpo-service-single-section .wpo-service-single-wrap .wpo-faq-section h2 {
  font-size: 30px;
  font-family: "DM Serif Text", serif;
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .wpo-service-single-section .wpo-service-single-wrap .wpo-faq-section h2 {
    font-size: 25px;
  }
}

.wpo-service-single-section .wpo-service-single-wrap .wpo-faq-section p {
  margin-bottom: 40px;
}

.wpo-service-single-section .wpo-service-single-wrap .wpo-faq-section .accordion {
  border: 1px solid #e1e1e1;
}

.wpo-service-single-section .wpo-service-single-wrap .wpo-faq-section .accordion-item {
  border: 0;
  border-bottom: 1px solid #e1e1e1;
}

.wpo-service-single-section .wpo-service-single-wrap .wpo-faq-section .accordion-item .accordion-body {
  padding: 30px 20px;
}

.wpo-service-single-section .wpo-service-single-wrap .wpo-faq-section .accordion-item .accordion-body p {
  margin-bottom: 0px;
}

.wpo-service-single-section .wpo-service-single-wrap .wpo-faq-section .accordion-item button {
  padding: 16px;
  border: 0;
  border-radius: 0;
  padding-left: 0;
  padding-right: 0;
  font-size: 20px;
  color: #fff;
  text-align: left;
  font-family: "Mulish", sans-serif;
  font-weight: 600;
  background: #172533;
  padding: 30px 20px;
}

.wpo-service-single-section .wpo-service-single-wrap .wpo-faq-section .accordion-item button::after {
  background: none;
  font-family: "themify";
  content: "\e622";
  font-size: 15px;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  font-weight: 700;
}

.wpo-service-single-section .wpo-service-single-wrap .wpo-faq-section .accordion-item button.collapsed {
  color: #373b3e;
  background: #F9F9F9;
}

.wpo-service-single-section .wpo-service-single-wrap .wpo-faq-section .accordion-item button.collapsed::after {
  content: "\e61a";
}

.wpo-service-single-section .wpo-service-single-wrap .wpo-faq-section .accordion-item button:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
  border-color: #DCDCDC;
}

.wpo-service-single-section .wpo-service-single-wrap .wpo-faq-section .accordion-item .accordion-collapse {
  border: 0;
}

.wpo-service-single-section .wpo-service-single-wrap .wpo-faq-section .accordion-button {
  background: transparent;
}

.wpo-single-sidebar {
  padding-right: 40px;
}

@media (max-width: 1199px) {
  .wpo-single-sidebar {
    padding-right: 20px;
  }
}

@media (max-width: 991px) {
  .wpo-single-sidebar {
    padding-right: 0;
    margin-top: 60px;
  }
}

.wpo-single-sidebar .widget {
  margin-bottom: 40px;
  background: #f9f9f9;
}

.wpo-single-sidebar .widget h2 {
  font-weight: 400;
  font-size: 30px;
  line-height: 41px;
  position: relative;
  text-align: left;
  display: block;
  margin-bottom: 0px;
  padding: 20px 30px;
  background: #DDDDDD;
}

@media (max-width: 1199px) {
  .wpo-single-sidebar .widget h2 {
    font-size: 25px;
    line-height: 38px;
  }
}

.wpo-single-sidebar .widget ul {
  list-style: none;
}

.wpo-single-sidebar .wpo-service-widget ul {
  padding: 30px 40px;
}

@media (max-width: 1199px) {
  .wpo-single-sidebar .wpo-service-widget ul {
    padding: 20px 20px;
  }
}

.wpo-single-sidebar .wpo-service-widget ul li a {
  font-weight: 400;
  font-size: 18px;
  line-height: 23px;
  display: block;
  padding: 15px 0;
  color: #525252;
  border-bottom: 1px solid #e1e1e1;
  padding-left: 20px;
  position: relative;
}

.wpo-single-sidebar .wpo-service-widget ul li a:before {
  position: absolute;
  left: 0;
  top: 23px;
  width: 6px;
  height: 6px;
  content: "";
  background: #CDB091;
  border-radius: 50%;
}

.wpo-single-sidebar .wpo-service-widget ul li a:hover {
  color: #CDB091;
}

.wpo-single-sidebar .wpo-service-widget ul li:last-child a {
  padding-bottom: 0;
  border-bottom: 0;
}

.wpo-single-sidebar .wpo-service-widget ul li:first-child a {
  padding-top: 0;
}

.wpo-single-sidebar .wpo-service-widget ul li:first-child a:before {
  top: 10px;
}

.wpo-single-sidebar .wpo-contact-widget {
  border: 0;
  background: #172533;
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 40px;
}

@media (max-width: 1199px) {
  .wpo-single-sidebar .wpo-contact-widget {
    padding: 30px 20px;
  }
}

.wpo-single-sidebar .wpo-contact-widget i {
  display: block;
  font-size: 50px;
  color: #CDB091;
}

.wpo-single-sidebar .wpo-contact-widget span {
  font-weight: 400;
  font-size: 22px;
  line-height: 30px;
  text-align: center;
  font-family: "DM Serif Text", serif;
  color: #fff;
  display: block;
  margin-bottom: 5px;
}

.wpo-single-sidebar .wpo-contact-widget h2 {
  font-weight: 400;
  font-size: 40px;
  line-height: 55px;
  color: #fff;
  margin-bottom: 20px;
}

@media (max-width: 1199px) {
  .wpo-single-sidebar .wpo-contact-widget h2 {
    font-size: 30px;
  }
}

.wpo-single-sidebar .wpo-contact-widget p {
  color: #fff;
  font-size: 18px;
}

.wpo-single-sidebar .wpo-contact-widget a {
  display: inline-block;
  padding: 10px 30px;
  background: #CDB091;
  font-weight: 400;
  font-size: 20px;
  line-height: 27px;
  position: relative;
  margin-top: 10px;
  color: #1E2E3E;
  font-family: "DM Serif Text", serif;
}

/*--------------------------------------------------------------
10. wpo-case-section
--------------------------------------------------------------*/
@media (max-width: 991px) {
  .service-single-section,
  .project-single-section {
    padding: 50px 0;
  }
}

.service-single-section .service-content .service-content-top,
.project-single-section .service-content .service-content-top {
  text-align: center;
  margin-bottom: 40px;
}

.service-single-section .service-content .service-content-top h3,
.project-single-section .service-content .service-content-top h3 {
  font-weight: 400;
  font-size: 40px;
  line-height: 55px;
  text-align: center;
}

@media (max-width: 991px) {
  .service-single-section .service-content .service-content-top h3,
  .project-single-section .service-content .service-content-top h3 {
    font-size: 30px;
    line-height: 45px;
  }
}

@media (max-width: 575px) {
  .service-single-section .service-content .service-content-top h3,
  .project-single-section .service-content .service-content-top h3 {
    font-size: 25px;
    line-height: 32px;
  }
}

.service-single-section .service-content .service-content-top span,
.project-single-section .service-content .service-content-top span {
  font-weight: 400;
  font-size: 20px;
  line-height: 25px;
}

@media (max-width: 575px) {
  .service-single-section .service-content .service-content-top span,
  .project-single-section .service-content .service-content-top span {
    font-size: 16px;
    line-height: 20px;
  }
}

.service-single-section .service-content > .img-holder,
.project-single-section .service-content > .img-holder {
  margin-bottom: 45px;
}

.service-single-section .service-content > .img-holder img,
.project-single-section .service-content > .img-holder img {
  width: 100%;
}

.service-single-section .case-details-wrap,
.project-single-section .case-details-wrap {
  padding-bottom: 80px;
}

@media (max-width: 991px) {
  .service-single-section .case-details-wrap,
  .project-single-section .case-details-wrap {
    padding-bottom: 40px;
  }
}

.service-single-section .case-details-wrap .case-details-left,
.project-single-section .case-details-wrap .case-details-left {
  background: #F8F8F8;
}

.service-single-section .case-details-wrap .case-details-left h3,
.project-single-section .case-details-wrap .case-details-left h3 {
  padding: 20px;
  background: #DDDDDD;
}

.service-single-section .case-details-wrap .case-details-left ul,
.project-single-section .case-details-wrap .case-details-left ul {
  padding: 30px;
}

.service-single-section .case-details-wrap .case-details-left ul li,
.project-single-section .case-details-wrap .case-details-left ul li {
  font-weight: 400;
  font-size: 20px;
  line-height: 27px;
  color: #001635;
  margin-bottom: 20px;
  list-style: none;
  font-family: "DM Serif Text", serif;
}

@media (max-width: 575px) {
  .service-single-section .case-details-wrap .case-details-left ul li,
  .project-single-section .case-details-wrap .case-details-left ul li {
    font-size: 16px;
    line-height: 27px;
  }
}

.service-single-section .case-details-wrap .case-details-left ul li:last-child,
.project-single-section .case-details-wrap .case-details-left ul li:last-child {
  padding-bottom: 0;
}

.service-single-section .case-details-wrap .case-details-left ul li span,
.project-single-section .case-details-wrap .case-details-left ul li span {
  font-size: 16px;
  color: #8c8c8c;
  display: inline-block;
  position: relative;
  padding-left: 5px;
  font-family: "Mulish", sans-serif;
}

.service-single-section .case-details-wrap .case-details-left ul li:last-child,
.project-single-section .case-details-wrap .case-details-left ul li:last-child {
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .service-single-section .case-details-wrap .case-details-right,
  .project-single-section .case-details-wrap .case-details-right {
    margin-top: 40px;
  }
}

.service-single-section .case-details-wrap .case-details-right h3,
.project-single-section .case-details-wrap .case-details-right h3 {
  font-weight: 400;
  font-size: 35px;
  line-height: 48px;
  margin-bottom: 15px;
  margin-top: -12px;
}

@media (max-width: 575px) {
  .service-single-section .case-details-wrap .case-details-right h3,
  .project-single-section .case-details-wrap .case-details-right h3 {
    font-size: 25px;
    line-height: 38px;
    margin-bottom: 10px;
  }
}

.service-single-section .case-info-wrap,
.project-single-section .case-info-wrap {
  padding-bottom: 40px;
}

.service-single-section .case-info-wrap h3,
.project-single-section .case-info-wrap h3 {
  font-weight: 400;
  font-size: 35px;
  line-height: 48px;
  margin-bottom: 30px;
}

@media (max-width: 575px) {
  .service-single-section .case-info-wrap h3,
  .project-single-section .case-info-wrap h3 {
    font-size: 25px;
    line-height: 38px;
    margin-bottom: 10px;
  }
}

.service-single-section .case-info-wrap .case-challenge ul,
.project-single-section .case-info-wrap .case-challenge ul {
  list-style: none;
  margin-top: 20px;
}

.service-single-section .case-info-wrap .case-challenge ul li,
.project-single-section .case-info-wrap .case-challenge ul li {
  padding-bottom: 15px;
  position: relative;
  padding-left: 30px;
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
}

.service-single-section .case-info-wrap .case-challenge ul li:before,
.project-single-section .case-info-wrap .case-challenge ul li:before {
  position: absolute;
  left: 0;
  top: 0;
  content: "\e661";
  font-family: 'themify';
  font-size: 14px;
}

@media (max-width: 991px) {
  .service-single-section .case-info-wrap .case-approach,
  .project-single-section .case-info-wrap .case-approach {
    padding: 30px 0;
  }
}

@media (min-width: 991px) {
  .service-single-section .case-info-wrap .case-result,
  .project-single-section .case-info-wrap .case-result {
    padding-left: 30px;
  }
}

.service-single-section .case-attorney h3,
.project-single-section .case-attorney h3 {
  font-weight: 400;
  font-size: 35px;
  line-height: 48px;
  margin-bottom: 40px;
}

@media (max-width: 575px) {
  .service-single-section .case-attorney h3,
  .project-single-section .case-attorney h3 {
    font-size: 25px;
    line-height: 38px;
    margin-bottom: 10px;
  }
}

.service-single-section .case-attorney .case-attorney-wrap,
.project-single-section .case-attorney .case-attorney-wrap {
  background: #F8F8F8;
}

.service-single-section .case-attorney .case-attorney-wrap .case-attorney-img img,
.project-single-section .case-attorney .case-attorney-wrap .case-attorney-img img {
  width: 100%;
}

@media (max-width: 1399px) {
  .service-single-section .case-attorney .case-attorney-wrap .case-attorney-img img,
  .project-single-section .case-attorney .case-attorney-wrap .case-attorney-img img {
    min-height: 450px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

@media (max-width: 1199px) {
  .service-single-section .case-attorney .case-attorney-wrap .case-attorney-img img,
  .project-single-section .case-attorney .case-attorney-wrap .case-attorney-img img {
    min-height: 480px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

@media (max-width: 991px) {
  .service-single-section .case-attorney .case-attorney-wrap .case-attorney-img img,
  .project-single-section .case-attorney .case-attorney-wrap .case-attorney-img img {
    min-height: 100%;
  }
}

.service-single-section .case-attorney .case-attorney-wrap .case-text,
.project-single-section .case-attorney .case-attorney-wrap .case-text {
  padding: 30px;
}

@media (max-width: 575px) {
  .service-single-section .case-attorney .case-attorney-wrap .case-text,
  .project-single-section .case-attorney .case-attorney-wrap .case-text {
    padding: 15px;
  }
}

.service-single-section .case-attorney .case-attorney-wrap .case-text h4,
.project-single-section .case-attorney .case-attorney-wrap .case-text h4 {
  font-weight: 400;
  font-size: 30px;
  line-height: 41px;
}

@media (max-width: 575px) {
  .service-single-section .case-attorney .case-attorney-wrap .case-text h4,
  .project-single-section .case-attorney .case-attorney-wrap .case-text h4 {
    font-size: 25px;
    line-height: 32px;
  }
}

.service-single-section .case-attorney .case-attorney-wrap .case-text span,
.project-single-section .case-attorney .case-attorney-wrap .case-text span {
  display: block;
  font-weight: 400;
  font-size: 18px;
  line-height: 23px;
  margin-bottom: 30px;
}

@media (max-width: 575px) {
  .service-single-section .case-attorney .case-attorney-wrap .case-text span,
  .project-single-section .case-attorney .case-attorney-wrap .case-text span {
    margin-bottom: 15px;
  }
}

.service-single-section .case-attorney .case-attorney-wrap .case-text a,
.project-single-section .case-attorney .case-attorney-wrap .case-text a {
  font-weight: 400;
  font-size: 20px;
  line-height: 35px;
  color: #9D7B56;
}

.service-single-section .case-attorney .case-attorney-wrap .case-text a i,
.project-single-section .case-attorney .case-attorney-wrap .case-text a i {
  position: relative;
  top: 5px;
}

.service-single-section .wpo-case-section-s3,
.project-single-section .wpo-case-section-s3 {
  padding-top: 100px;
}

@media (max-width: 1199px) {
  .service-single-section .wpo-case-section-s3,
  .project-single-section .wpo-case-section-s3 {
    padding-top: 80px;
  }
}

@media (max-width: 991px) {
  .service-single-section .wpo-case-section-s3,
  .project-single-section .wpo-case-section-s3 {
    padding-top: 40px;
  }
}

.service-single-section .wpo-case-section-s3 h3,
.project-single-section .wpo-case-section-s3 h3 {
  font-weight: 400;
  font-size: 35px;
  line-height: 48px;
  margin-bottom: 30px;
}

@media (max-width: 575px) {
  .service-single-section .wpo-case-section-s3 h3,
  .project-single-section .wpo-case-section-s3 h3 {
    font-size: 25px;
    line-height: 38px;
    margin-bottom: 10px;
  }
}

.service-single-section .wpo-case-section-s3:before,
.project-single-section .wpo-case-section-s3:before {
  display: none;
}

/*===========================
11. wpo-cart-page-style
===========================*/
.cart-area .cart-wrapper {
  -webkit-box-shadow: 0px 5px 15px 0px rgba(68, 68, 68, 0.1);
          box-shadow: 0px 5px 15px 0px rgba(68, 68, 68, 0.1);
}

@media (max-width: 991px) {
  .cart-area .cart-wrapper table {
    width: 1022px;
  }
}

@media (max-width: 991px) {
  .cart-area .cart-wrapper form {
    overflow: scroll;
    overflow-y: hidden;
  }
}

.cart-area .cart-wrap td,
.cart-area .cart-wrap th {
  width: 10%;
  border-bottom: 1px solid #f0f0f094;
  text-align: center;
  font-weight: 400;
  color: #414141;
}

.cart-area .cart-wrap td ul,
.cart-area .cart-wrap th ul {
  list-style: none;
}

.cart-area .cart-wrap th {
  border-bottom: 1px solid #f0f0f094;
  padding: 40px 0;
}

.cart-area .cart-wrap thead {
  background: #fff;
  color: #505050;
  padding: 40px;
}

.cart-area .cart-area form {
  margin: auto;
  text-align: center;
  background: #fff;
}

.cart-area .cart-wrap .product {
  width: 15%;
}

.cart-area .cart-wrap .product ul {
  text-align: left;
  padding-left: 30px;
  list-style: none;
}

.cart-area .cart-wrap .product ul li {
  padding-bottom: 5px;
}

.cart-area .cart-wrap .product a {
  font-size: 16px;
  color: #a5a4a4;
}

.cart-area .cart-wrap .product-2 {
  text-align: left;
  padding-left: 55px;
}

.cart-area .cart-wrap .product a:hover {
  color: #CDB091;
}

.cart-area .cart-wrap th {
  height: 80px;
  font-weight: 700;
}

.cart-area .cart-wrap td {
  padding: 40px 25px;
}

.cart-area .cart-wrap td.action ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  list-style: none;
}

.cart-area .cart-wrap td.action ul .w-btn-view a {
  line-height: 45px;
}

.cart-area .cart-wrap td span {
  display: block;
  width: 100px;
  height: 38px;
  line-height: 34px;
  color: #ee9902;
  font-size: 14px;
  border: 1.5px solid #ee9902;
  border-radius: 4px;
}

.cart-area .cart-wrap td.Del span {
  color: #4ABA4E;
  border: 1.5px solid #4ABA4E;
}

.cart-area .cart-wrap td.can span {
  color: #D85656;
  border: 1.5px solid #D85656;
}

.cart-area .cart-wrap td.pro span {
  color: #691A5F;
  border: 1.5px solid #691A5F;
}

.cart-area .cart-wrap .name {
  width: 15%;
}

.cart-area .cart-wrap .action a {
  display: block;
  width: 40px;
  height: 38px;
  line-height: 45px;
  background: #414141;
  color: #fff;
  border-radius: 4px;
  font-size: 14px;
}

.cart-area .cart-wrap .action a .fi::before {
  font-size: 20px;
}

.cart-area .cart-wrap .action a:hover {
  background: #CDB091;
}

.cart-area .cart-wrap .action li.c-btn {
  margin-right: 10px;
}

.cart-area .cart-wrap .action li.c-btn a {
  background-color: #CDB091;
}

.cart-area .order-wrap {
  padding: 0;
}

.cart-area .cart-wrap tr:nth-child(even) {
  background: #FCFCFC;
}

.cart-area .cart-wrap .quantity {
  position: relative;
  max-width: 110px;
  margin: 0 auto;
}

.cart-area .quantity input {
  width: 105px;
  padding: 0px 35px;
  text-align: center;
  height: 36px;
  position: relative;
  background: #f2f2f5;
  border: none;
  border-radius: 40px;
}

.cart-area .quantity .qtybutton {
  position: absolute;
  top: 0;
  left: 0px;
  height: 30px;
  width: 30px;
  text-align: center;
  line-height: 28px;
  font-size: 18px;
  cursor: pointer;
  color: #333;
  background: #fafaff;
  border-radius: 30px;
}

.cart-area .cart-wrap .quantity .qtybutton {
  top: 50%;
  left: 5px;
  transform: translateY(-51%);
  -webkit-transform: translateY(-51%);
  -moz-transform: translateY(-51%);
}

.cart-area .cart-wrap .quantity .qtybutton.dec {
  border-left: none;
}

.cart-area .cart-wrap .quantity .qtybutton.inc {
  right: 5px;
  left: auto;
  border-right: none;
}

.cart-area .submit-btn-area {
  padding: 40px;
}

.cart-area .submit-btn-area ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  list-style: none;
}

@media (max-width: 450px) {
  .cart-area .submit-btn-area ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.cart-area .submit-btn-area ul li:last-child {
  margin-left: 20px;
}

@media (max-width: 450px) {
  .cart-area .submit-btn-area ul li:last-child {
    margin-left: 3px;
    margin-top: 5px;
  }
}

.cart-area .submit-btn-area button {
  padding: 15px 40px;
  border: none;
  background: #333;
  color: #fff;
  -webkit-transition: all .3s;
  transition: all .3s;
  outline: none;
  border-radius: 0px;
}

.cart-area .submit-btn-area button:hover {
  background: #CDB091;
}

.cart-area .submit-btn-area .theme-btn {
  text-transform: capitalize;
  font-size: 15px;
  font-weight: 500;
  line-height: 27px;
}

.cart-area .submit-btn-area .theme-btn:before {
  display: none;
}

.cart-area .cart-product-list ul {
  border-top: 1px solid #f0f0f094;
  padding-top: 20px;
  list-style: none;
}

.cart-area .cart-product-list ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0px 30px;
  font-weight: 300;
  font-size: 18px;
  line-height: 21px;
  color: #414141;
  padding-bottom: 30px;
}

.cart-area .cart-product-list ul li.cart-b {
  border-top: 1px solid #f0f0f094;
  border-bottom: 1px solid #f0f0f094;
  color: #CDB091;
  padding-top: 30px;
  font-weight: 600;
}

/*===============================
12. wpo-checkout-page-style
================================*/
.wpo-checkout-area .checkout-wrap {
  background: #fff;
}

.wpo-checkout-area .checkout-wrap ul {
  list-style: none;
}

.wpo-checkout-area #open2 {
  display: block;
}

.wpo-checkout-area #open3 {
  display: none;
}

.wpo-checkout-area #open4 {
  display: none;
}

.wpo-checkout-area .create-account p {
  margin-bottom: 15px;
}

.wpo-checkout-area .create-account {
  display: none;
  padding: 20px;
}

.wpo-checkout-area .create-account span {
  margin-bottom: 20px;
  display: block;
}

.wpo-checkout-area .input-wrap {
  position: relative;
}

.wpo-checkout-area .create-account input {
  width: 100%;
  height: 50px;
  border: 1px solid #ebebeb;
  margin-bottom: 25px;
  padding-left: 20px;
  border-radius: 40px;
}

.wpo-checkout-area .create-account input:focus {
  outline: none;
}

.wpo-checkout-area .create-account button {
  position: absolute;
  right: 0;
  top: 0;
  height: 50px;
  background: #333;
  color: #fff;
  width: 108px;
  border: none;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  cursor: pointer;
  border-top-right-radius: 40px;
  border-bottom-right-radius: 40px;
}

.wpo-checkout-area .create-account button:hover {
  background: #CDB091;
}

.wpo-checkout-area .coupon {
  position: relative;
  cursor: pointer;
  cursor: pointer;
  background: #fffbf5;
}

.wpo-checkout-area .coupon:before {
  position: absolute;
  right: 30px;
  top: 21px;
  content: "\e64b";
  font-family: 'themify';
}

.wpo-checkout-area .coupon span {
  position: absolute;
  right: 30px;
  top: 30px;
}

.wpo-checkout-area .coupon label {
  margin-bottom: 0;
  font-weight: 500;
  font-size: 18px;
  color: #0F0F0F;
  cursor: pointer;
  padding: 20px 20px;
  border-left: 4px solid #CDB091;
  -webkit-transition: all .3s;
  transition: all .3s;
  width: 100%;
}

@media (max-width: 767px) {
  .wpo-checkout-area .coupon label {
    font-size: 15px;
  }
}

.wpo-checkout-area .caupon-wrap {
  background: #fff;
  margin-bottom: 20px;
  -webkit-transition: all .3s;
  transition: all .3s;
  -webkit-box-shadow: 0px 5px 15px 0px rgba(62, 65, 159, 0.1);
          box-shadow: 0px 5px 15px 0px rgba(62, 65, 159, 0.1);
}

.wpo-checkout-area .active-border {
  -webkit-transition: all .3s;
  transition: all .3s;
}

.wpo-checkout-area .s1.active-border .coupon-active label,
.wpo-checkout-area .s3.coupon-2 .coupon-3 label {
  border-left: none;
  border-top: 4px solid #CDB091;
  border-bottom: 1px solid #ffe5dc;
}

.wpo-checkout-area .s2 .coupon-3 {
  border-top: 4px solid #CDB091;
}

.wpo-checkout-area .s2.coupon-2 .coupon-3 {
  border-top: 0;
}

.wpo-checkout-area .s2 .coupon-3 label {
  border-left: 0;
  border-bottom: 1px solid #ffe5dc;
}

.wpo-checkout-area .s2.coupon-2 .coupon-3 label {
  border-left: 4px solid #CDB091;
  border-bottom: 0;
}

.wpo-checkout-area .billing-adress .form-style input,
.wpo-checkout-area .billing-adress .form-style select {
  width: 100%;
  margin-bottom: 15px;
  padding-left: 10px;
  height: 40px;
  background: #fff;
  border-radius: 2px;
  border: none;
  border: 1px solid #ebebeb;
  border-radius: 40px;
}

.wpo-checkout-area .billing-adress .form-style input:focus,
.wpo-checkout-area .billing-adress .form-style select:focus {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.wpo-checkout-area .billing-adress .form-style select {
  -webkit-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  -moz-appearance: none;
  background: transparent url(../images/select-icon2.png) no-repeat calc(100% - 15px) center;
  position: relative;
}

.wpo-checkout-area .billing-adress {
  padding: 30px;
}

.wpo-checkout-area .note-area textarea {
  width: 100%;
  height: 150px;
  padding-top: 10px;
  margin-bottom: 0;
  padding-left: 10px;
  border: 1px solid #ebebeb;
  border-radius: 20px;
}

.wpo-checkout-area .note-area textarea:focus {
  outline: none;
}

.wpo-checkout-area .biling-item-2 {
  margin-top: 20px;
}

.wpo-checkout-area .biling-item-2 label.fontsize {
  margin-bottom: 20px;
}

.wpo-checkout-area .biling-item-2 .billing-adress {
  padding: 0;
}

.wpo-checkout-area .payment-name ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

@media (max-width: 575px) {
  .wpo-checkout-area .payment-name ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.wpo-checkout-area .payment-area form {
  overflow: unset !important;
}

.wpo-checkout-area .payment-name ul li {
  width: 100px;
  height: 60px;
  text-align: center;
  line-height: 60px;
}

.wpo-checkout-area .payment-name ul li input {
  margin-right: 0;
}

.wpo-checkout-area .payment-name ul li {
  margin-right: 15px;
}

@media (max-width: 575px) {
  .wpo-checkout-area .payment-name ul li {
    margin-bottom: 10px;
  }
}

.wpo-checkout-area .payment-area h2 {
  padding-bottom: 40px;
  margin-bottom: 0;
}

.wpo-checkout-area .payment-select {
  padding: 40px 0;
}

.wpo-checkout-area .payment-select ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 575px) {
  .wpo-checkout-area .payment-select ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.wpo-checkout-area .payment-select ul li {
  margin-right: 10px;
  font-size: 15px;
  font-weight: 500;
  color: #5B5B5B;
}

.wpo-checkout-area .payment-select label {
  font-size: 18px;
  font-weight: 600;
}

@media (max-width: 575px) {
  .wpo-checkout-area .payment-select label {
    font-size: 14px;
  }
}

.wpo-checkout-area .payment-area h2 {
  font-size: 20px;
  color: #878787;
  font-weight: 700;
}

.wpo-checkout-area .payment-area h2 span {
  font-size: 30px;
  color: #ff493c;
}

.wpo-checkout-area .payment-area {
  width: 100%;
}

.wpo-checkout-area .payment-name ul li input {
  margin-right: 0;
  position: absolute;
  z-index: -1;
}

.wpo-checkout-area .payment-name ul li input:checked ~ label {
  border: 1px solid #ff493c;
}

.wpo-checkout-area .payment-name label {
  width: 100%;
  border: 1px solid transparent;
}

.wpo-checkout-area .payment-name .visa label {
  border: 1px solid #0057A0;
}

.wpo-checkout-area .payment-name .mas label {
  border: 1px solid #CC0000;
}

.wpo-checkout-area .payment-name .ski label {
  border: 1px solid #691A5F;
}

.wpo-checkout-area .payment-name .pay label {
  border: 1px solid #019CDE;
}

.wpo-checkout-area .payment-option {
  padding: 30px;
}

.wpo-checkout-area .payment-name {
  display: none;
}

.wpo-checkout-area .payment-name.active {
  display: block;
}

.wpo-checkout-area .payment-option.active .payment-name {
  display: none !important;
}

.wpo-checkout-area .payment-area .form-style input,
.wpo-checkout-area .payment-area .form-style select {
  width: 100%;
  margin-bottom: 15px;
  padding-left: 10px;
  height: 40px;
  background: #fff;
  border-radius: 2px;
  border: none;
  border: 1px solid #ebebeb;
  border-radius: 40px;
}

.wpo-checkout-area .payment-area .form-style input:focus,
.wpo-checkout-area .payment-area .form-style select:focus {
  outline: none;
}

.wpo-checkout-area .payment-area .contact-form {
  margin-top: 40px;
}

.wpo-checkout-area .cout-order-area {
  -webkit-box-shadow: 0px 5px 15px 0px rgba(62, 65, 159, 0.1);
          box-shadow: 0px 5px 15px 0px rgba(62, 65, 159, 0.1);
}

.wpo-checkout-area .cout-order-area .oreder-item ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 20px 30px;
  font-weight: 300;
  font-size: 18px;
  line-height: 21px;
  color: #414141;
}

.wpo-checkout-area .cout-order-area .oreder-item ul li.s-total {
  font-weight: 400;
}

.wpo-checkout-area .cout-order-area .oreder-item ul .o-header {
  color: #0F0F0F;
  font-size: 20px;
  font-weight: 600;
  border-bottom: 1px solid #ebebeb;
}

.wpo-checkout-area .cout-order-area .oreder-item ul .o-middle {
  border-bottom: 1px solid #ebebeb;
}

.wpo-checkout-area .cout-order-area .oreder-item ul .o-bottom {
  border-top: 1px solid #ebebeb;
  color: #CDB091;
  font-weight: 600;
}

.wpo-checkout-area .create-account.active {
  display: block;
}

.wpo-checkout-area .contact-form .form-control {
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
}

.wpo-checkout-area .contact-form input, .wpo-checkout-area .contact-form select {
  margin-top: 10px;
}

.wpo-checkout-area .submit-btn-area {
  margin-top: 20px;
}

.wpo-checkout-area .submit-btn-area .theme-btn {
  text-transform: capitalize;
}

/*--------------------------------------------------------------
13. wpo-shop-page
--------------------------------------------------------------*/
.wpo-shop-page .wpo-product-section {
  padding: 0;
  padding-left: 30px;
}

@media (max-width: 991px) {
  .wpo-shop-page .wpo-product-section {
    padding-left: 0;
  }
}

.wpo-shop-page .wpo-product-section .wpo-product-wrap .wpo-product-item {
  margin-bottom: 30px;
}

.wpo-shop-page .wpo-product-section .wpo-product-wrap .wpo-product-item .img-holder img {
  width: 100%;
}

.wpo-shop-page .wpo-product-section .wpo-product-wrap .wpo-product-item .details {
  background-color: #f7f7f7;
  text-align: center;
  padding: 35px 15px;
}

.wpo-shop-page .wpo-product-section .wpo-product-wrap .wpo-product-item .details h3 {
  font-size: 22px;
  font-size: 1.46667rem;
  margin: 0 0 0.5em;
  font-weight: 400;
}

@media (max-width: 991px) {
  .wpo-shop-page .wpo-product-section .wpo-product-wrap .wpo-product-item .details h3 {
    font-size: 16px;
    font-size: 1.06667rem;
  }
}

.wpo-shop-page .wpo-product-section .wpo-product-wrap .wpo-product-item .details h3 a {
  color: #1E2E3E;
}

.wpo-shop-page .wpo-product-section .wpo-product-wrap .wpo-product-item .details h3 a:hover {
  color: #CDB091;
}

.wpo-shop-page .wpo-product-section .wpo-product-wrap .wpo-product-item .details del {
  color: #6e6e6e;
}

.wpo-shop-page .wpo-product-section .wpo-product-wrap .wpo-product-item .details del + span {
  display: inline-block;
  padding-left: 20px;
}

.wpo-shop-page .wpo-product-section .wpo-product-wrap .wpo-product-item .add-to-cart {
  margin-top: 20px;
}

.wpo-shop-page .wpo-product-section .wpo-product-wrap .wpo-product-item .add-to-cart a {
  font-family: "Mulish", sans-serif;
  font-size: 15px;
  font-size: 1rem;
  font-weight: 600;
  color: #CDB091;
  padding: 12px 20px;
  border: 2px solid #CDB091;
  display: inline-block;
  border-radius: 50px;
}

@media (max-width: 767px) {
  .wpo-shop-page .wpo-product-section .wpo-product-wrap .wpo-product-item .add-to-cart a {
    font-size: 12px;
    font-size: 0.8rem;
    padding: 8px 18px;
  }
}

.wpo-shop-page .wpo-product-section .wpo-product-wrap .wpo-product-item .add-to-cart a:hover {
  background-color: #CDB091;
  color: #fff;
}

.wpo-shop-page .wpo-product-section .wpo-product-wrap .wpo-product-item .add-to-cart a i {
  font-size: 15px;
  font-size: 1rem;
  display: inline-block;
  padding-left: 5px;
}

.wpo-shop-page .wpo-product-section .wpo-product-wrap .wpo-product-item .grid:hover .add-to-cart a {
  background-color: #CDB091;
  color: #fff;
}

.wpo-shop-page .sorting-section {
  padding-bottom: 20px;
}

.wpo-shop-page .sorting-section ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  list-style: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.wpo-shop-page .sorting-section ul li {
  margin: 10px 0;
}

.wpo-shop-page .sorting-section .nice-select ul {
  display: block;
}

/*------------------------------------
	shop sidebar
------------------------------------*/
.wpo-shop-sidebar {
  /*** search-widget ***/
  /*** widget_price_filter ***/
  /*** widget_product_categories ***/
}

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

.wpo-shop-sidebar .widget h3 {
  font-size: 18px;
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 1.5em;
  position: relative;
  text-transform: none;
  text-transform: uppercase;
  font-family: "Mulish", sans-serif;
}

.wpo-shop-sidebar > .widget + .widget {
  margin-top: 65px;
}

.wpo-shop-sidebar .search-widget form div {
  position: relative;
}

.wpo-shop-sidebar .search-widget input {
  font-size: 14px;
  font-size: 0.93333rem;
  width: 100%;
  height: 60px;
  border: 1px solid #CEE0F2;
  padding: 10px;
}

.wpo-shop-sidebar .search-widget input:focus {
  outline: none;
  border-color: #CDB091;
}

.wpo-shop-sidebar .search-widget form button {
  background-color: #CDB091;
  color: #fff;
  padding: 0;
  border: 0;
  outline: 0;
  position: absolute;
  right: 0px;
  top: 0px;
  border-radius: 0;
  width: 60px;
  height: 60px;
}

.wpo-shop-sidebar .search-widget form button i {
  font-size: 18px;
  font-size: 1.2rem;
}

.wpo-shop-sidebar .widget_price_filter .ui-corner-all,
.wpo-shop-sidebar .widget_price_filter .ui-corner-bottom,
.wpo-shop-sidebar .widget_price_filter .ui-corner-right,
.wpo-shop-sidebar .widget_price_filter .ui-corner-br {
  border-radius: 30px;
}

.wpo-shop-sidebar .widget_price_filter .filter-price {
  position: relative;
  font-size: 14px;
}

.wpo-shop-sidebar .widget_price_filter .filter-price input {
  border: 0;
  padding: 0;
  display: inline-block;
  width: auto;
  position: absolute;
}

.wpo-shop-sidebar .widget_price_filter .filter-price input:focus {
  border: 0;
  outline: none;
}

.wpo-shop-sidebar .widget_price_filter .filter-price button {
  background: transparent;
  color: #CDB091;
  font-size: 18px;
  font-size: 1.2rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0;
  display: inline-block;
  border: 0;
  outline: none;
  position: absolute;
  right: 0;
  z-index: 9;
  text-decoration: underline;
}

.wpo-shop-sidebar .widget_price_filter .filter-price button:hover, .wpo-shop-sidebar .widget_price_filter .filter-price button:focus, .wpo-shop-sidebar .widget_price_filter .filter-price button:active {
  text-decoration: underline;
}

.wpo-shop-sidebar .widget_price_filter .filter-price #amount {
  color: #000;
}

.wpo-shop-sidebar .widget_price_filter #slider-range {
  height: 3px;
  background: #fafbfe;
  border: 0;
  border-radius: 50px;
  margin-bottom: 25px;
  margin-left: 8px;
  padding: 0;
}

.wpo-shop-sidebar .widget_price_filter .ui-state-default,
.wpo-shop-sidebar .widget_price_filter .ui-widget-content .ui-state-default,
.wpo-shop-sidebar .widget_price_filter .ui-widget-header .ui-state-default {
  width: 10px;
  height: 10px;
  border: none;
  background: #071e93;
  top: -4px;
}

.wpo-shop-sidebar .widget_price_filter .ui-state-default:focus,
.wpo-shop-sidebar .widget_price_filter .ui-widget-content .ui-state-default:focus,
.wpo-shop-sidebar .widget_price_filter .ui-widget-header .ui-state-default:focus {
  outline: none;
}

.wpo-shop-sidebar .widget_price_filter .ui-widget-header {
  background: #071e93;
}

.wpo-shop-sidebar .widget_product_categories,
.wpo-shop-sidebar .woocommerce-widget-layered-nav {
  font-family: "Mulish", sans-serif;
}

.wpo-shop-sidebar .widget_product_categories .product-categories a,
.wpo-shop-sidebar .widget_product_categories .woocommerce-widget-layered-nav-list a,
.wpo-shop-sidebar .woocommerce-widget-layered-nav .product-categories a,
.wpo-shop-sidebar .woocommerce-widget-layered-nav .woocommerce-widget-layered-nav-list a {
  color: #6e6e6e;
}

.wpo-shop-sidebar .widget_product_categories .product-categories,
.wpo-shop-sidebar .woocommerce-widget-layered-nav .product-categories {
  list-style: none;
}

.wpo-shop-sidebar .widget_product_categories .product-categories li,
.wpo-shop-sidebar .widget_product_categories .woocommerce-widget-layered-nav-list li,
.wpo-shop-sidebar .woocommerce-widget-layered-nav .product-categories li,
.wpo-shop-sidebar .woocommerce-widget-layered-nav .woocommerce-widget-layered-nav-list li {
  margin-top: 10px;
  position: relative;
  padding-bottom: 10px;
  border-bottom: 1px solid #ebebeb;
}

.wpo-shop-sidebar .widget_product_categories .product-categories li:first-child,
.wpo-shop-sidebar .widget_product_categories .woocommerce-widget-layered-nav-list li:first-child,
.wpo-shop-sidebar .woocommerce-widget-layered-nav .product-categories li:first-child,
.wpo-shop-sidebar .woocommerce-widget-layered-nav .woocommerce-widget-layered-nav-list li:first-child {
  margin-top: 0;
}

.wpo-shop-sidebar .widget_product_categories .product-categories li:last-child,
.wpo-shop-sidebar .widget_product_categories .woocommerce-widget-layered-nav-list li:last-child,
.wpo-shop-sidebar .woocommerce-widget-layered-nav .product-categories li:last-child,
.wpo-shop-sidebar .woocommerce-widget-layered-nav .woocommerce-widget-layered-nav-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.wpo-shop-sidebar .widget_product_categories .product-categories li a,
.wpo-shop-sidebar .widget_product_categories .woocommerce-widget-layered-nav-list li a,
.wpo-shop-sidebar .woocommerce-widget-layered-nav .product-categories li a,
.wpo-shop-sidebar .woocommerce-widget-layered-nav .woocommerce-widget-layered-nav-list li a {
  font-size: 16px;
  font-size: 1.06667rem;
  font-weight: 500;
  position: relative;
}

.wpo-shop-sidebar .widget_product_categories .product-categories li a:hover,
.wpo-shop-sidebar .widget_product_categories .woocommerce-widget-layered-nav-list li a:hover,
.wpo-shop-sidebar .woocommerce-widget-layered-nav .product-categories li a:hover,
.wpo-shop-sidebar .woocommerce-widget-layered-nav .woocommerce-widget-layered-nav-list li a:hover {
  text-decoration: underline;
  color: #000;
}

.wpo-shop-sidebar .widget_product_categories .product-categories li a:hover:before,
.wpo-shop-sidebar .widget_product_categories .woocommerce-widget-layered-nav-list li a:hover:before,
.wpo-shop-sidebar .woocommerce-widget-layered-nav .product-categories li a:hover:before,
.wpo-shop-sidebar .woocommerce-widget-layered-nav .woocommerce-widget-layered-nav-list li a:hover:before {
  border-color: #000;
}

/*** widget_best-seller ***/
.widget_best-seller .wpo-best-seller-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}

.widget_best-seller .wpo-best-seller-item:last-child {
  margin-bottom: 0;
}

.widget_best-seller .wpo-best-seller-item .wpo-best-seller-text {
  margin-left: 20px;
}

.widget_best-seller .wpo-best-seller-item .wpo-best-seller-text h4 {
  font-size: 18px;
  font-weight: 600;
  color: #6e6e6e;
  font-family: "Mulish", sans-serif;
}

.widget_best-seller .wpo-best-seller-item .wpo-best-seller-text span {
  font-size: 16px;
  color: #8d8d8d;
}

.hidden {
  display: none;
}

/*--------------------------------------------------------------
14. wpo-shop-single-page
--------------------------------------------------------------*/
.wpo-shop-single-section {
  /*** product slider ***/
  /*** product info ***/
}

.wpo-shop-single-section .shop-single-slider .slider-for {
  text-align: center;
}

.wpo-shop-single-section .shop-single-slider .slider-for img {
  display: inline-block;
}

.wpo-shop-single-section .shop-single-slider .slider-nav {
  padding: 0 25px;
  margin-top: 35px;
}

.wpo-shop-single-section .shop-single-slider .slider-nav > i {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 100;
}

.wpo-shop-single-section .shop-single-slider .slider-nav > i:hover {
  cursor: pointer;
}

.wpo-shop-single-section .shop-single-slider .slider-nav .nav-btn-rt {
  left: auto;
  right: 0;
}

.wpo-shop-single-section .shop-single-slider .slider-nav .slick-slide {
  text-align: center;
}

.wpo-shop-single-section .shop-single-slider .slider-nav .slick-slide img {
  display: inline-block;
}

.wpo-shop-single-section .product-details {
  padding: 15px 30px 80px;
  /*** product option ***/
}

@media (max-width: 1199px) {
  .wpo-shop-single-section .product-details {
    padding: 10px 30px 15px;
  }
}

@media (max-width: 991px) {
  .wpo-shop-single-section .product-details {
    margin-top: 45px;
    padding: 40px 30px;
  }
}

@media (max-width: 767px) {
  .wpo-shop-single-section .product-details {
    padding: 0;
  }
}

.wpo-shop-single-section .product-details h2 {
  font-size: 35px;
  font-size: 2.33333rem;
  line-height: 1.4em;
  margin: 0 0 0.33em;
  font-weight: 700;
}

@media (max-width: 767px) {
  .wpo-shop-single-section .product-details h2 {
    font-size: 22px;
    font-size: 1.46667rem;
  }
}

.wpo-shop-single-section .product-details .price {
  font-size: 25px;
  font-size: 1.66667rem;
  color: #CDB091;
  margin: 7px 0 20px;
  font-weight: 700;
}

@media (max-width: 991px) {
  .wpo-shop-single-section .product-details .price {
    font-size: 30px;
    font-size: 2rem;
  }
}

@media (max-width: 767px) {
  .wpo-shop-single-section .product-details .price {
    font-size: 25px;
    font-size: 1.66667rem;
  }
}

.wpo-shop-single-section .product-details .price .old {
  font-size: 24px;
  font-size: 1.6rem;
  font-weight: normal;
  color: #a1a1a1;
  text-decoration: line-through;
  display: inline-block;
  margin-left: 5px;
  font-weight: 500;
}

@media (max-width: 991px) {
  .wpo-shop-single-section .product-details .price .old {
    font-size: 20px;
    font-size: 1.33333rem;
  }
}

@media (max-width: 767px) {
  .wpo-shop-single-section .product-details .price .old {
    font-size: 18px;
    font-size: 1.2rem;
  }
}

.wpo-shop-single-section .product-details .product-rt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}

.wpo-shop-single-section .product-details .product-rt .rating {
  margin-right: 10px;
}

.wpo-shop-single-section .product-details .product-rt .rating i {
  color: #f9d322;
}

.wpo-shop-single-section .product-details p {
  margin-bottom: 1.3em;
}

.wpo-shop-single-section .product-details ul {
  list-style: none;
}

.wpo-shop-single-section .product-details ul li {
  padding-left: 20px;
  position: relative;
  margin-bottom: 10px;
}

.wpo-shop-single-section .product-details ul li:before {
  position: absolute;
  left: 0;
  top: 6px;
  width: 8px;
  height: 8px;
  background: #CDB091;
  content: "";
  border-radius: 50%;
}

.wpo-shop-single-section .product-details .product-option {
  margin-top: 30px;
}

.wpo-shop-single-section .product-details .tg-btm {
  margin-top: 25px;
}

.wpo-shop-single-section .product-details .tg-btm p {
  margin-bottom: 0px;
}

.wpo-shop-single-section .product-details .tg-btm p span {
  font-weight: 700;
  color: #1E2E3E;
  margin-right: 5px;
}

.wpo-shop-single-section .product-details .product-option .product-row button:after {
  display: none;
}

.wpo-shop-single-section .product-details .product-option .product-row > div {
  height: 35px;
  display: inline-block;
}

.wpo-shop-single-section .product-details .product-option .product-row > div + div {
  margin-left: 15px;
}

.wpo-shop-single-section .product-details .product-option .product-row > div + div .theme-btn {
  border-radius: 0;
  border-width: 1px;
  height: 40px;
  padding: 0 18px;
}

.wpo-shop-single-section .product-details .product-option .product-row > div:first-child {
  width: 85px;
}

.wpo-shop-single-section .product-details .product-option .product-row > div:last-child .theme-btn:hover {
  background: #CDB091;
  border-color: #CDB091;
  color: #fff;
}

.wpo-shop-single-section .product-details .product-option .theme-btn {
  background-color: transparent;
  color: #333;
  font-size: 14px;
  font-size: 0.93333rem;
  padding: 0 20px;
  height: 35px;
  line-height: 32px;
  outline: 0;
  border: 2px solid #e6e6e6;
  border-radius: 0;
}

.wpo-shop-single-section .product-details .product-option .theme-btn:hover {
  background-color: #CDB091;
  color: #fff;
  border-color: #CDB091;
}

@media (max-width: 767px) {
  .wpo-shop-single-section .product-details .product-option .theme-btn {
    font-size: 14px;
    font-size: 0.93333rem;
  }
}

.wpo-shop-single-section .product-details .product-option .theme-btn:before {
  display: none;
}

.wpo-shop-single-section .product-details .product-option .heart-btn i {
  font-size: 15px;
  font-size: 1rem;
}

.wpo-shop-single-section .product-details .product-option .product-row > div:last-child .theme-btn {
  background-color: #fff;
  font-size: 18px;
  font-size: 1.2rem;
  color: #6e6e6e;
  border: 1px solid #e6e6e6;
}

.wpo-shop-single-section .product-details #product-count {
  border-radius: 0;
  border: 1px solid #e6e6e6;
}

.wpo-shop-single-section .product-details #product-count:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
}

.wpo-shop-single-section .product-details .bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-up,
.wpo-shop-single-section .product-details .bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-down {
  border-radius: 0;
  border-color: #e6e6e6;
  display: block;
  padding: 1px 4px;
  font-size: 10px;
}

.wpo-shop-single-section .product-details .bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-up:hover,
.wpo-shop-single-section .product-details .bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-down:hover {
  background-color: #CDB091;
  color: #fff;
}

.wpo-shop-single-section .product-info {
  margin-top: 75px;
  /*** tabs ***/
  /*** client rv ***/
  /*** review form ***/
}

@media (max-width: 991px) {
  .wpo-shop-single-section .product-info {
    margin-top: 40px;
  }
}

.wpo-shop-single-section .product-info h4 {
  font-size: 18px;
  font-size: 1.2rem;
  margin: 0;
  line-height: 1.7em;
  font-weight: 700;
  margin-bottom: 10px;
}

.wpo-shop-single-section .product-info p {
  margin-bottom: 1.3em;
}

.wpo-shop-single-section .product-info .tab-pane p:last-child {
  margin-bottom: 0;
}

.wpo-shop-single-section .product-info .nav-tabs {
  font-family: "DM Serif Text", serif;
  border: 0;
}

@media (max-width: 767px) {
  .wpo-shop-single-section .product-info .nav-tabs {
    margin-bottom: 20px;
  }
}

.wpo-shop-single-section .product-info .nav-tabs li {
  margin-right: 1px;
}

.wpo-shop-single-section .product-info .nav-tabs li a.active {
  border: 0;
  outline: 0;
}

.wpo-shop-single-section .product-info .nav-tabs a {
  font-size: 15px;
  font-size: 1rem;
  color: #6e6e6e;
  border: 0;
  border-radius: 0;
  margin: 0;
  display: block;
  padding: 12px 20px 11px;
  font-family: "Mulish", sans-serif;
  position: relative;
}

@media (max-width: 767px) {
  .wpo-shop-single-section .product-info .nav-tabs a {
    font-size: 14px;
    font-size: 0.93333rem;
    font-weight: normal;
    padding: 10px 10px 8px;
    text-transform: none;
  }
}

.wpo-shop-single-section .product-info .nav-tabs a:before {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: #CDB091;
  border-radius: 4px;
  content: "";
  opacity: 0;
  visibility: hidden;
}

.wpo-shop-single-section .product-info .nav-tabs a:hover:before,
.wpo-shop-single-section .product-info .nav-tabs a.active:before {
  opacity: 1;
  visibility: visible;
}

.wpo-shop-single-section .product-info .nav-tabs .active,
.wpo-shop-single-section .product-info .nav-tabs li:hover {
  border-color: #CDB091;
}

.wpo-shop-single-section .product-info .tab-content {
  border-top: 1px solid rgba(205, 176, 145, 0.3);
  padding-top: 30px;
  margin-top: -1px;
}

@media (max-width: 767px) {
  .wpo-shop-single-section .product-info .tab-content {
    border: 0;
    padding: 0;
    margin: 0;
  }
}

.wpo-shop-single-section .product-info .client-rv {
  overflow: hidden;
  margin-bottom: 30px;
}

.wpo-shop-single-section .product-info .client-rv:last-child {
  margin-bottom: 0;
}

.wpo-shop-single-section .product-info .client-rv .client-pic {
  width: 100px;
  float: left;
}

.wpo-shop-single-section .product-info .client-rv .client-pic img {
  border-radius: 50%;
}

@media (max-width: 767px) {
  .wpo-shop-single-section .product-info .client-rv .client-pic {
    width: 100%;
    float: none;
    margin-bottom: 10px;
  }
}

.wpo-shop-single-section .product-info .client-rv .details {
  width: calc(100% - 130px);
  float: right;
}

@media (max-width: 767px) {
  .wpo-shop-single-section .product-info .client-rv .details {
    width: 100%;
    float: none;
  }
}

.wpo-shop-single-section .product-info .client-rv .name-rating .product-rt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 767px) {
  .wpo-shop-single-section .product-info .client-rv .name-rating-time {
    padding-bottom: 3px;
  }
}

.wpo-shop-single-section .product-info .client-rv .name-rating-time > div,
.wpo-shop-single-section .product-info .client-rv .name-rating > div {
  display: inline-block;
  font-size: 14px;
  font-size: 0.93333rem;
}

@media (max-width: 767px) {
  .wpo-shop-single-section .product-info .client-rv .name-rating-time > div,
  .wpo-shop-single-section .product-info .client-rv .name-rating > div {
    font-size: 12px;
    font-size: 0.8rem;
    display: block;
  }
}

.wpo-shop-single-section .product-info .client-rv .rating {
  font-size: 12px;
  padding-left: 12px;
}

.wpo-shop-single-section .product-info .client-rv .rating i {
  color: #CDB091;
}

@media (max-width: 767px) {
  .wpo-shop-single-section .product-info .client-rv .rating {
    padding-left: 0;
    margin: 4px 0 7px;
  }
}

.wpo-shop-single-section .product-info .client-rv .name-rating-time .time {
  float: right;
  color: #b3b3b3;
  text-transform: uppercase;
}

@media (max-width: 767px) {
  .wpo-shop-single-section .product-info .client-rv .name-rating-time .time {
    float: none;
  }
}

.wpo-shop-single-section .product-info .client-rv .review-body {
  padding-top: 12px;
}

.wpo-shop-single-section .product-info .review-form {
  margin-top: 45px;
}

.wpo-shop-single-section .product-info .review-form h4 {
  font-size: 30px;
  font-weight: 700;
}

.wpo-shop-single-section .product-info .review-form p {
  margin-bottom: 1.73em;
}

.wpo-shop-single-section .product-info .review-form .give-rat-sec {
  margin-bottom: 10px;
}

.wpo-shop-single-section .product-info .review-form .give-rat-sec p {
  margin-bottom: 0;
}

.wpo-shop-single-section .product-info .review-form .give-rating {
  display: inline-block;
  position: relative;
  height: 50px;
  line-height: 50px;
  font-size: 30px;
  margin-bottom: 10px;
}

.wpo-shop-single-section .product-info .review-form .give-rating label {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  cursor: pointer;
}

.wpo-shop-single-section .product-info .review-form .give-rating label:last-child {
  position: static;
}

.wpo-shop-single-section .product-info .review-form .give-rating label:nth-child(1) {
  z-index: 5;
}

.wpo-shop-single-section .product-info .review-form .give-rating label:nth-child(2) {
  z-index: 4;
}

.wpo-shop-single-section .product-info .review-form .give-rating label:nth-child(3) {
  z-index: 3;
}

.wpo-shop-single-section .product-info .review-form .give-rating label:nth-child(4) {
  z-index: 2;
}

.wpo-shop-single-section .product-info .review-form .give-rating label:nth-child(5) {
  z-index: 1;
}

.wpo-shop-single-section .product-info .review-form .give-rating label input {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.wpo-shop-single-section .product-info .review-form .give-rating label .icon {
  float: left;
  color: transparent;
}

.wpo-shop-single-section .product-info .review-form .give-rating label:last-child .icon {
  color: #ddd;
}

.wpo-shop-single-section .product-info .review-form .give-rating:not(:hover) label input:checked ~ .icon,
.wpo-shop-single-section .product-info .review-form .give-rating:hover label:hover input ~ .icon {
  color: #FFD400;
}

.wpo-shop-single-section .product-info .review-form .give-rating label input:focus:not(:checked) ~ .icon:last-child {
  color: #ddd;
  text-shadow: 0 0 5px #FFD400;
}

.wpo-shop-single-section .product-info .review-form form input,
.wpo-shop-single-section .product-info .review-form form textarea {
  background: transparent;
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  height: 50px;
  border: 1px solid #efefef;
}

.wpo-shop-single-section .product-info .review-form form input:focus,
.wpo-shop-single-section .product-info .review-form form textarea:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
}

.wpo-shop-single-section .product-info .review-form form textarea {
  height: 130px;
}

.wpo-shop-single-section .product-info .review-form form > div {
  margin-bottom: 27px;
}

.wpo-shop-single-section .product-info .review-form form > div:last-child {
  margin-bottom: 0;
}

.wpo-shop-single-section .product-info .review-form form .theme-btn-s4 {
  background-color: transparent;
  color: #908f8f;
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.wpo-shop-single-section .product-info .review-form form .theme-btn-s4:hover {
  background-color: #CDB091;
  color: #fff;
}

@media screen and (min-width: 767px) {
  .wpo-shop-single-section .product-info .review-form form .theme-btn-s4 {
    font-size: 15px;
    font-size: 1rem;
    padding: 0 20px;
  }
}

.wpo-shop-single-section .slider-nav .slick-slide:focus {
  outline: none;
}

/*--------------------------------------------------------------
15. wpo-pricing-page
--------------------------------------------------------------*/
@media (max-width: 991px) {
  .wpo-pricing-section {
    padding-bottom: 75px;
  }
}

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

.wpo-pricing-section .pricing-grids {
  margin: 0 -15px;
  padding-top: 50px;
}

.wpo-pricing-section .pricing-grids .grid {
  width: calc(33.33% - 30px);
  float: left;
  margin: 0 15px 0;
  text-align: center;
  padding: 0 45px 55px;
  border: 1px solid #f9dcd3;
  border-radius: 5px;
  -webkit-box-shadow: 0px 7px 13.5px 1.5px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 7px 13.5px 1.5px rgba(0, 0, 0, 0.05);
}

@media (max-width: 1199px) {
  .wpo-pricing-section .pricing-grids .grid {
    padding: 0 15px 55px;
  }
}

@media (max-width: 991px) {
  .wpo-pricing-section .pricing-grids .grid {
    width: calc(50% - 30px);
    margin: 0 15px 30px;
  }
}

@media (max-width: 650px) {
  .wpo-pricing-section .pricing-grids .grid {
    width: calc(100% - 30px);
    float: none;
  }
}

.wpo-pricing-section .grid .type {
  background-color: #f3f3f3;
  display: inline-block;
  padding: 12px 60px;
  margin-top: 40px;
  border-radius: 30px;
}

@media (max-width: 991px) {
  .wpo-pricing-section .grid .type {
    padding: 10px 40px;
  }
}

.wpo-pricing-section .grid .type h5 {
  font-size: 20px;
  font-size: 1.33333rem;
  margin: 0;
  text-transform: uppercase;
}

@media (max-width: 991px) {
  .wpo-pricing-section .grid .type h5 {
    font-size: 16px;
    font-size: 1.06667rem;
  }
}

.wpo-pricing-section .pricing-header {
  background: #fff;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  margin: 30px auto;
  display: table;
  -webkit-box-shadow: 0px 5px 15px 0px rgba(62, 65, 159, 0.1);
          box-shadow: 0px 5px 15px 0px rgba(62, 65, 159, 0.1);
}

@media (max-width: 991px) {
  .wpo-pricing-section .pricing-header {
    width: 140px;
    height: 140px;
  }
}

.wpo-pricing-section .pricing-header > div {
  display: table-cell;
  vertical-align: middle;
}

.wpo-pricing-section .pricing-header h3 {
  font-size: 50px;
  font-size: 3.33333rem;
  margin: 0;
}

@media (max-width: 991px) {
  .wpo-pricing-section .pricing-header h3 {
    font-size: 40px;
    font-size: 2.66667rem;
  }
}

.wpo-pricing-section .pricing-header p {
  font-size: 18px;
  font-size: 1.2rem;
  color: #CDB091;
  margin: 0;
}

@media (max-width: 991px) {
  .wpo-pricing-section .pricing-header p {
    font-size: 14px;
    font-size: 0.93333rem;
  }
}

.wpo-pricing-section .pricing-body ul {
  margin-bottom: 50px;
  list-style: none;
}

@media (max-width: 991px) {
  .wpo-pricing-section .pricing-body ul {
    margin-bottom: 40px;
  }
}

@media (max-width: 1199px) {
  .wpo-pricing-section .pricing-body ul li {
    font-size: 14px;
    font-size: 0.93333rem;
  }
}

.wpo-pricing-section .pricing-body ul > li + li {
  margin-top: 12px;
}

.wpo-pricing-section .grid .get-started {
  display: block;
  padding: 13px 0;
  border: 1px solid #f9dcd3;
  border-radius: 5px;
  color: #CDB091;
  font-weight: 500;
}

@media (max-width: 1199px) {
  .wpo-pricing-section .grid .get-started {
    padding: 10px 0;
    margin: 0 25px;
  }
}

.wpo-pricing-section .grid .get-started:hover {
  background: #CDB091;
  color: #fff;
}

.wpo-pricing-section .pricing-grids > .grid:nth-child(2) {
  background: #1E2E3E;
  position: relative;
  background-size: cover;
  z-index: 1;
}

.wpo-pricing-section .pricing-grids > .grid:nth-child(2):before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(../images/shape.png) no-repeat center center;
  content: "";
  z-index: -1;
  border-radius: 5px;
}

@media screen and (min-width: 1200px) {
  .wpo-pricing-section .pricing-grids > .grid:nth-child(2) {
    margin-top: -30px;
  }
}

.wpo-pricing-section .pricing-grids > .grid:nth-child(2) ul li {
  color: #ddd;
}

.wpo-pricing-section .pricing-grids > .grid:nth-child(2) .type {
  background-color: #091620;
}

.wpo-pricing-section .pricing-grids > .grid:nth-child(2) .type h5 {
  color: #fff;
}

.wpo-pricing-section .pricing-grids > .grid:nth-child(2) .pricing-header {
  background: #091620;
}

.wpo-pricing-section .pricing-grids > .grid:nth-child(2) .pricing-header .price {
  color: #fff;
}

.wpo-pricing-section .pricing-grids > .grid:nth-child(2) .get-started {
  background: #CDB091;
  color: #fff;
}

.wpo-pricing-section .pricing-grids > .grid:nth-child(2) .get-started:hover {
  background: #c09c75;
  color: #fff;
}

/*--------------------------------------------------------------
16. wpo-faq-page
--------------------------------------------------------------*/
.wpo-faq-section .accordion {
  border: 1px solid #e1e1e1;
}

.wpo-faq-section .accordion-item {
  border: 0;
  border-bottom: 1px solid #e1e1e1;
}

.wpo-faq-section .accordion-item .accordion-body {
  padding: 30px 20px;
}

.wpo-faq-section .accordion-item .accordion-body p {
  margin-bottom: 0px;
}

.wpo-faq-section .accordion-item button {
  padding: 16px;
  border: 0;
  border-radius: 0;
  padding-left: 0;
  padding-right: 0;
  font-size: 20px;
  color: #fff;
  text-align: left;
  font-family: "Mulish", sans-serif;
  font-weight: 600;
  background: #172533;
  padding: 30px 20px;
}

.wpo-faq-section .accordion-item button::after {
  background: none;
  font-family: "themify";
  content: "\e622";
  font-size: 15px;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  font-weight: 700;
}

.wpo-faq-section .accordion-item button.collapsed {
  color: #373b3e;
  background: #F9F9F9;
}

.wpo-faq-section .accordion-item button.collapsed::after {
  content: "\e61a";
}

.wpo-faq-section .accordion-item button:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
  border-color: #DCDCDC;
}

.wpo-faq-section .accordion-item .accordion-collapse {
  border: 0;
}

.wpo-faq-section .accordion-button {
  background: transparent;
}

.question-area {
  background: #fcfcfc;
  padding-top: 100px;
}

@media (max-width: 991px) {
  .question-area {
    padding-top: 80px;
  }
}

@media (max-width: 767px) {
  .question-area {
    padding-top: 60px;
  }
}

.question-area .wpo-section-title {
  text-align: center;
}

.question-area .wpo-section-title h2 {
  display: inline-block;
}

@media (max-width: 590px) {
  .question-area .wpo-section-title {
    text-align: left;
  }
}

.question-touch {
  max-width: 570px;
  margin: auto;
  -webkit-box-shadow: 0px 5px 15px 0px rgba(68, 68, 68, 0.1);
  box-shadow: 0px 5px 15px 0px rgba(68, 68, 68, 0.1);
  padding: 50px;
  text-align: center;
  padding-top: 60px;
  background: #fff;
}

@media (max-width: 590px) {
  .question-touch {
    padding: 15px;
  }
}

@media (max-width: 991px) {
  .faq-pb {
    margin-top: 15px;
  }
}

.question-touch h2 {
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  margin-top: 0;
  margin-bottom: 35px;
}

.question-touch .half-col {
  width: 100%;
}

.question-touch input,
.question-touch textarea {
  width: 100%;
  height: 50px;
  border: none;
  outline: none;
  background: none;
  border-radius: 0;
  border-bottom: 1px solid #ddd;
  border-top: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  margin-bottom: 22px;
  padding: 0;
}

.question-touch input:focus,
.question-touch textarea:focus {
  outline: none;
  background: none;
  border-radius: 0;
  border-bottom: 1px solid #eeeeee;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.question-touch textarea {
  height: 160px;
}

.question-touch ::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #888;
  font-size: 18px;
}

.question-touch ::-moz-placeholder {
  /* Firefox 19+ */
  color: #888;
  font-size: 18px;
}

.question-touch :-ms-input-placeholder {
  /* IE 10+ */
  color: #888;
  font-size: 18px;
}

.question-touch :-moz-placeholder {
  /* Firefox 18- */
  color: #888;
  font-size: 18px;
}

/*--------------------------------------------------------------
17. wpo-blog-pg-section
--------------------------------------------------------------*/
.wpo-blog-pg-section {
  /*** format-standard ***/
  /*** format-gallery ***/
  /*** format-quote ***/
  /*** format-video ***/
}

.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: 35px 0;
}

@media (max-width: 767px) {
  .wpo-blog-pg-section .entry-meta {
    margin: 25px 0;
  }
}

.wpo-blog-pg-section .entry-meta ul {
  list-style: none;
}

.wpo-blog-pg-section .entry-meta ul li {
  font-weight: 500;
  font-size: 14px;
  font-size: 0.93333rem;
  float: left;
  text-transform: uppercase;
}

.wpo-blog-pg-section .entry-meta ul li a {
  color: #636893;
}

.wpo-blog-pg-section .entry-meta ul li a:hover {
  color: #CDB091;
}

.wpo-blog-pg-section .entry-meta ul li i {
  position: relative;
  margin-right: 3px;
}

.wpo-blog-pg-section .entry-meta ul li i:before {
  font-size: 13px;
}

.wpo-blog-pg-section .entry-meta ul li + li {
  margin-left: 20px;
  padding-left: 20px;
  position: relative;
}

.wpo-blog-pg-section .entry-meta ul li + li:before {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 7px;
  height: 7px;
  content: "";
  background: #CDB091;
  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: 34px;
  font-size: 2.26667rem;
  line-height: 1.2em;
  font-weight: 400;
  margin: -0.27em 0 0.7em;
  font-family: "DM Serif Text", serif;
}

@media (max-width: 991px) {
  .wpo-blog-pg-section .post h3 {
    font-size: 25px;
    font-size: 1.66667rem;
  }
}

@media (max-width: 767px) {
  .wpo-blog-pg-section .post h3 {
    font-size: 22px;
    font-size: 1.46667rem;
  }
}

.wpo-blog-pg-section .post h3 a {
  color: #1E2E3E;
}

.wpo-blog-pg-section .post h3 a:hover {
  color: #CDB091;
}

.wpo-blog-pg-section .post p {
  margin-bottom: 1.5em;
}

@media (max-width: 991px) {
  .wpo-blog-pg-section .post p {
    font-size: 16px;
    font-size: 1.06667rem;
  }
}

.wpo-blog-pg-section .post a.read-more {
  color: #6e6e6e;
  text-transform: capitalize;
  font-size: 16px;
}

.wpo-blog-pg-section .post a.read-more:hover {
  color: #CDB091;
}

.wpo-blog-pg-section .entry-media img {
  width: 100%;
}

.wpo-blog-pg-section .format-standard,
.wpo-blog-pg-section .format-quote {
  background-color: #f5f5f5;
  padding: 25px 35px 45px;
}

@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-standard:before {
  position: absolute;
  right: 20px;
  top: 10px;
  content: "\f123";
  font-family: flaticon_law;
  font-size: 90px;
  line-height: 80px;
  color: #e9e9e9;
}

.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%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.wpo-blog-pg-section .format-gallery .owl-nav [class*=owl-]:hover {
  background: #CDB091;
  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: #CDB091;
  -webkit-transition: all 0.3s;
  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%;
  -webkit-transform: translateY(-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-family: "Flaticon";
  content: "\f120";
  font-size: 250px;
  font-size: 16.66667rem;
  color: #ecf3fb;
  margin-left: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -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: #1E2E3E;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 0.5;
}

.wpo-blog-pg-section .format-video .video-holder:hover:before {
  opacity: 0.8;
}

.wpo-blog-pg-section .format-video .video-holder a {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 63px;
  height: 63px;
  line-height: 70px;
  background: #fff;
  border-radius: 50%;
  z-index: 1;
}

.wpo-blog-pg-section .format-video .video-holder a:after {
  position: absolute;
  left: -12px;
  top: -12px;
  width: 140%;
  height: 140%;
  background: rgba(255, 255, 255, 0.3);
  content: "";
  -webkit-animation: spineer 2s infinite;
  animation: spineer 2s infinite;
  border-radius: 50%;
  z-index: -1;
}

.wpo-blog-pg-section .format-video .video-holder a:before {
  content: "";
  width: 0px;
  height: 0px;
  border-top: 9px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 14px solid #CDB091;
  position: absolute;
  left: 52%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.wpo-blog-pg-section .format-video .video-holder .fi:before {
  font-size: 20px;
  font-size: 1.33333rem;
  color: #CDB091;
}

@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 {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(0.95, 0.95, 0.95);
    transform: scale3d(0.95, 0.95, 0.95);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes save-the-date-pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(0.95, 0.95, 0.95);
    transform: scale3d(0.95, 0.95, 0.95);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.grid-page .pagination-wrapper {
  margin-top: 150px;
}

@media (max-width: 1200px) {
  .grid-page .blog-sidebar {
    padding-left: 0;
    margin-top: 30px;
  }
}

/*--------------------------------------------------------------
18. wpo-blog-single-section
--------------------------------------------------------------*/
.wpo-blog-single-section {
  /*** tag-share ***/
  /*** author-box ***/
  /*** more-posts ***/
  /*** comments area ***/
  /*** comment-respond ***/
}

.wpo-blog-single-section .entry-meta {
  list-style: none;
  overflow: hidden;
  margin: 35px 0;
}

@media (max-width: 767px) {
  .wpo-blog-single-section .entry-meta {
    margin: 25px 0;
  }
}

.wpo-blog-single-section .entry-meta ul {
  list-style: none;
}

.wpo-blog-single-section .entry-meta ul li {
  font-weight: 500;
  font-size: 14px;
  font-size: 0.93333rem;
  float: left;
  text-transform: uppercase;
}

.wpo-blog-single-section .entry-meta ul li a {
  color: #636893;
}

.wpo-blog-single-section .entry-meta ul li a:hover {
  color: #CDB091;
}

.wpo-blog-single-section .entry-meta ul li i {
  position: relative;
  top: 0;
  margin-right: 3px;
}

.wpo-blog-single-section .entry-meta ul li i.fi:before {
  font-size: 13px;
}

.wpo-blog-single-section .entry-meta ul li + li {
  margin-left: 20px;
  padding-left: 20px;
  position: relative;
}

.wpo-blog-single-section .entry-meta ul li + li:before {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 7px;
  height: 7px;
  content: "";
  background: #CDB091;
  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: 12px;
    font-size: 0.8rem;
  }
}

@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 {
  font-size: 35px;
  font-size: 2.33333rem;
  margin: -0.22em 0 0.7em;
  line-height: 1.3em;
  font-family: "DM Serif Text", serif;
}

@media (max-width: 991px) {
  .wpo-blog-single-section .post h2 {
    font-size: 30px;
    font-size: 2rem;
  }
}

@media (max-width: 767px) {
  .wpo-blog-single-section .post h2 {
    font-size: 25px;
    font-size: 1.66667rem;
  }
}

.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;
    font-size: 1.46667rem;
  }
}

@media (max-width: 767px) {
  .wpo-blog-single-section .post h3 {
    font-size: 20px;
    font-size: 1.33333rem;
  }
}

.wpo-blog-single-section .post blockquote {
  background-color: #f5f5f5;
  color: #233d62;
  font-size: 20px;
  line-height: 1.6em;
  padding: 65px;
  margin-top: 60px;
  margin-bottom: 40px;
  border: 0;
  text-align: center;
  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: flaticon_law;
  content: "\f123";
  font-size: 25px;
  font-size: 1.66667rem;
  color: rgba(255, 255, 255, 0.5);
  position: absolute;
  left: 50%;
  top: -30px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  line-height: 60px;
  border: 2px solid #fafbfe;
  background: #fff;
  color: #CDB091;
  border-radius: 50%;
}

.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 {
  border-bottom: 1px solid #ebebeb;
  margin: 75px 0 0;
  padding-bottom: 30px;
  color: #1E2E3E;
}

@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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.wpo-blog-single-section .tag-share .tag > span, .wpo-blog-single-section .tag-share-s2 .tag > span {
  font-family: "DM Serif Text", serif;
  color: #1E2E3E;
  font-weight: 400;
  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;
}

.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: 12px;
  font-size: 0.8rem;
  display: inline-block;
  padding: 5px 18px;
  color: #1E2E3E;
  background: #f5f5f5;
  border-radius: 5px;
  text-transform: uppercase;
}

@media (max-width: 767px) {
  .wpo-blog-single-section .tag-share .tag a, .wpo-blog-single-section .tag-share-s2 .tag a {
    font-size: 13px;
    font-size: 0.86667rem;
  }
}

.wpo-blog-single-section .tag-share .tag a:hover, .wpo-blog-single-section .tag-share-s2 .tag a:hover {
  color: #CDB091;
}

.wpo-blog-single-section .tag-share-s2 {
  margin: 0;
  margin-top: 30px;
  border-bottom: 0;
}

.wpo-blog-single-section .tag-share-s2 .tag a {
  padding: 0;
  font-size: 16px;
  font-size: 1.06667rem;
  text-transform: capitalize;
  background: none;
  text-decoration: underline;
  color: #6e6e6e;
}

.wpo-blog-single-section .author-box {
  margin: 35px 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-family: "DM Serif Text", serif;
  font-size: 24px;
  font-size: 1.6rem;
  font-weight: 400;
  display: inline-block;
  margin-bottom: 10px;
  color: #1E2E3E;
}

.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;
  font-size: 0.86667rem;
  color: #1E2E3E;
}

.wpo-blog-single-section .author-box .social-link a:hover {
  color: #CDB091;
}

.wpo-blog-single-section .more-posts {
  overflow: hidden;
  border: 1px solid #ebebeb;
  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 #ebebeb;
  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 #ebebeb;
  }
}

.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: "\e628";
  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: "\e629";
  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;
  font-size: 0.93333rem;
  color: #6e6e6e;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 2px;
}

.wpo-blog-single-section .more-posts .post-name {
  font-size: 16px;
  font-size: 1.06667rem;
  color: #1E2E3E;
  margin: 0.7em 0 0;
}

@media (max-width: 991px) {
  .wpo-blog-single-section .more-posts .post-name {
    font-size: 16px;
    font-size: 1.06667rem;
  }
}

.wpo-blog-single-section .more-posts a:hover .post-control-link {
  color: #CDB091;
}

.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: 22px;
  font-size: 1.46667rem;
  font-weight: 500;
  margin: 0 0 1em;
  text-transform: uppercase;
  letter-spacing: 3px;
}

@media (max-width: 991px) {
  .wpo-blog-single-section .comments-area .comments-title {
    font-size: 20px;
    font-size: 1.33333rem;
  }
}

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

.wpo-blog-single-section .comments-area .comments-meta h4 {
  font-family: "DM Serif Text", serif;
  font-size: 20px;
  font-size: 1.33333rem;
  color: #1E2E3E;
  font-weight: 400;
  margin: 0 0 1em;
}

.wpo-blog-single-section .comments-area .comments-meta h4 span {
  font-size: 15px;
  font-size: 1rem;
  color: #6e6e6e;
  font-weight: normal;
  text-transform: none;
  display: inline-block;
  padding-left: 5px;
  font-family: "Mulish", sans-serif;
}

@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-family: "DM Serif Text", serif;
  font-size: 13px;
  font-size: 0.86667rem;
  font-weight: 600;
  color: #1E2E3E;
  text-align: center;
  border-radius: 50px;
  display: inline-block;
  font-family: "Mulish", sans-serif;
  text-decoration: underline;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.wpo-blog-single-section .comments-area .comment-reply-link:hover {
  color: #CDB091;
}

.wpo-blog-single-section .comment-respond {
  margin-top: 70px;
}

.wpo-blog-single-section .comment-respond .comment-reply-title {
  font-size: 22px;
  font-size: 1.46667rem;
  margin: 0 0 1.5em;
  text-transform: uppercase;
  letter-spacing: 2px;
}

@media (max-width: 991px) {
  .wpo-blog-single-section .comment-respond .comment-reply-title {
    font-size: 20px;
    font-size: 1.33333rem;
  }
}

.wpo-blog-single-section .comment-respond form input,
.wpo-blog-single-section .comment-respond form textarea {
  background-color: #fff;
  width: 100%;
  height: 55px;
  border: 1px solid #a4adbe;
  padding: 6px 15px;
  margin-bottom: 15px;
  outline: 0;
  border-radius: 30px;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.wpo-blog-single-section .comment-respond form input:focus,
.wpo-blog-single-section .comment-respond form textarea:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  border-color: #CDB091;
}

@media (max-width: 991px) {
  .wpo-blog-single-section .comment-respond form input,
  .wpo-blog-single-section .comment-respond form textarea {
    height: 40px;
  }
}

.wpo-blog-single-section .comment-respond form textarea {
  height: 220px;
  padding: 15px;
}

@media (max-width: 991px) {
  .wpo-blog-single-section .comment-respond form textarea {
    height: 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 {
  font-family: "DM Serif Text", serif;
  max-width: 180px;
  background-color: #1E2E3E;
  color: #fff;
  margin-bottom: 0;
  border: 0;
  outline: 0;
  text-transform: uppercase;
  font-size: 15px;
  letter-spacing: 2px;
  border-radius: 30px;
}

.wpo-blog-single-section .comment-respond .form-submit input:hover {
  background-color: #CDB091;
}

@media screen and (min-width: 1200px) {
  .wpo-blog-single-left-sidebar-section .blog-sidebar {
    padding-right: 45px;
    padding-left: 0;
  }
}

/*--------------------------------------------------------------
19. wpo-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: 35px;
  font-size: 2.33333rem;
  font-weight: 400;
  margin-bottom: 20px;
}

@media (max-width: 575px) {
  .wpo-contact-pg-section .wpo-contact-title h2 {
    font-size: 25px;
    font-size: 1.66667rem;
  }
}

.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;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  padding-left: 25px;
  border: 1px solid #ebebeb;
}

@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: #CDB091;
  background: transparent;
}

.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: 15px;
  font-style: normal;
  color: #9d9c9c;
}

.wpo-contact-pg-section form :-moz-placeholder {
  font-style: 15px;
  font-style: normal;
  color: #9d9c9c;
}

.wpo-contact-pg-section form ::-moz-placeholder {
  font-style: 15px;
  font-style: normal;
  color: #9d9c9c;
}

.wpo-contact-pg-section form :-ms-input-placeholder {
  font-style: 15px;
  font-style: normal;
  color: #9d9c9c;
}

.wpo-contact-pg-section form select {
  display: inline-block;
  color: #a9a9a9;
  cursor: pointer;
  opacity: 1;
  padding: 6px 25px;
  font-size: 15px;
  font-size: 1rem;
  -webkit-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  -moz-appearance: none;
  background: transparent url(../images/select-icon2.png) no-repeat calc(100% - 15px) center;
  position: relative;
}

.wpo-contact-pg-section form select:focus {
  background: transparent url(../images/select-icon2.png) no-repeat calc(100% - 15px) center;
}

.wpo-contact-pg-section form .submit-area {
  text-align: center;
  width: 100%;
  margin-bottom: 10px;
  margin-left: 0;
  margin-top: 20px;
}

@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-family: "Mulish", sans-serif;
  font-size: 16px;
}

.wpo-contact-pg-section form .submit-area .theme-btn: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;
  -webkit-box-shadow: 0px 5px 15px 0px rgba(62, 65, 159, 0.1);
          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 .fi:before {
  font-size: 35px;
}

.wpo-contact-pg-section .office-info .office-info-item .office-info-text h2 {
  font-size: 30px;
  font-weight: 400;
  margin: 20px 0;
}

.wpo-contact-pg-section .office-info .office-info-item .office-info-text p {
  margin-bottom: 0;
}

.wpo-contact-pg-section .wpo-contact-form-area {
  padding: 50px;
  background: #fff;
  -webkit-box-shadow: 0px 1px 15px 0px rgba(62, 65, 159, 0.1);
          box-shadow: 0px 1px 15px 0px rgba(62, 65, 159, 0.1);
  padding-bottom: 0;
  margin-bottom: -125px;
  position: relative;
  z-index: 99;
}

@media (max-width: 767px) {
  .wpo-contact-pg-section .wpo-contact-form-area {
    padding: 30px;
    padding-top: 50px;
  }
}

.wpo-contact-map-section .wpo-contact-map {
  height: 550px;
}

.wpo-contact-map-section iframe {
  width: 100%;
  height: 100%;
  border: 0;
  outline: 0;
}

.wpo-contact-map-section h2.hidden {
  display: none;
}

/*--------------------------------------------------------------
20. wpo-terms-section
--------------------------------------------------------------*/
.wpo-terms-section .wpo-terms-wrap h5 {
  font-size: 30px;
  margin-bottom: 30px;
  margin-top: 40px;
}

.wpo-terms-section .wpo-terms-wrap .wpo-terms-img img {
  width: 100%;
}

.wpo-terms-section .wpo-terms-wrap .wpo-terms-text {
  padding-top: 30px;
}

.wpo-terms-section .wpo-terms-wrap .wpo-terms-text h2 {
  font-size: 40px;
  font-weight: 400;
  margin-bottom: 20px;
}

@media (max-width: 991px) {
  .wpo-terms-section .wpo-terms-wrap .wpo-terms-text h2 {
    font-size: 30px;
  }
}

@media (max-width: 767px) {
  .wpo-terms-section .wpo-terms-wrap .wpo-terms-text h2 {
    font-size: 25px;
  }
}

.wpo-terms-section .wpo-terms-wrap .wpo-terms-text ul {
  list-style: none;
  margin-top: 20px;
  margin-bottom: 40px;
}

.wpo-terms-section .wpo-terms-wrap .wpo-terms-text ul li {
  padding: 10px;
  position: relative;
  padding-left: 20px;
}

.wpo-terms-section .wpo-terms-wrap .wpo-terms-text ul li:before {
  position: absolute;
  left: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  background: #071e93;
  content: "";
  border-radius: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.wpo-terms-section .wpo-terms-wrap .wpo-terms-text .t-sub {
  padding: 20px 0 0;
  margin-bottom: 20px;
}

/*--------------------------------------------------------------
21. error-404-section
--------------------------------------------------------------*/
.error-404-section {
  text-align: center;
}

.error-404-section .error-message {
  margin-top: 70px;
  padding: 0 200px;
}

@media (max-width: 991px) {
  .error-404-section .error-message {
    margin-top: 50px;
    padding: 0 100px;
  }
}

@media (max-width: 767px) {
  .error-404-section .error-message {
    padding: 0;
  }
}

.error-404-section .error-message h3 {
  font-size: 30px;
  font-size: 2rem;
  margin: 0 0 0.8em;
}

.error-404-section .error-message p {
  margin-bottom: 1.8em;
}
/*# sourceMappingURL=style.css.map */