﻿:root {
  --zhusr-font: 'Catamaran', sans-serif;
  --zhusr-font-2: 'Caveat', cursive;
  --zhusr-gray: #737c76;
  --zhusr-gray-rgb: 115, 124, 118;
  --zhusr-primary: #fdc400;
  --zhusr-primary-rgb: 253, 196, 0;
  --zhusr-black: #1e3226;
  --zhusr-black-rgb: 30, 50, 38;
  --zhusr-base: #006940;
  --zhusr-base-rgb: 0, 105, 64;
}
* {
  margin: 0px;
  padding: 0px;
  border: none;
  outline: none;
  font-size: 100%;
}
html, body {
  height: 100%;
}
body {
  color: #545454;
  font-size: 16px;
  line-height: 32px;
  font-weight: 500;
  font-family: var(--zhusr-font);
}
button:focus {
  outline: none;
}
button {
  cursor: pointer;
  border: none;
  background: transparent;
  padding: 0;
}
h1, h2, h3, h4, h5, h6 {
  color: var(--zhusr-black);
  font-weight: 800;
  line-height: 1.25em;
  font-family: var(--zhusr-font);
  margin: 0;
}
h3 {
  font-size: 24px;
  line-height: 36px;
  font-weight: 700;
}
a, a:hover, a:active, a:focus {
  text-decoration: none;
  outline: none;
  border: none;
  transition: .4s;
  -webkit-transition: all .4s ease-in-out;
}
textarea:focus {
  outline: none;
}
*::-moz-selection {
  background: var(--zhusr-black);
  color: #fff;
  text-shadow: none;
}
::-moz-selection {
  background: var(--zhusr-black);
  color: #fff;
  text-shadow: none;
}
::selection {
  background: var(--zhusr-black);
  color: #fff;
  text-shadow: none;
}
*::placeholder {
  color: #555555;
  opacity: 1;
}
*::-moz-placeholder {
  color: #555555;
  opacity: 1;
}
*:-ms-input-placeholder {
  color: #555555;
  opacity: 1;
}
.parallax-scene {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.fancybox-image, .fancybox-spaceball {
  border-radius: 10px;
}
@media (min-width: 1300px) {
  .container {
    max-width: 1300px;
  }
}
img {
  max-width: 100%;
  height: auto;
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .7s;
  transition-property: all;
}
.map-data {
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8em;
  padding: 5px 10px 5px;
}
.map-data a {
  color: #0b59d9;
  display: block;
}
.map-data h6 {
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 5px;
  color: #121212;
}
i {
  font-style: normal;
}
ul, li {
  list-style: none;
  margin: 0;
  padding: 0;
}
ol, li {
  margin: 0;
  padding: 0;
}
.auto-container {
  position: static;
  max-width: 1200px;
  padding: 0px 15px;
  margin: 0 auto;
}
.btn-one {
  position: relative;
  display: inline-block;
  overflow: hidden;
  padding-top: 7px;
  padding-left: 60px;
  padding-bottom: 3px;
  padding-right: 50px;
  background-color: var(--zhusr-primary);
  color: var(--zhusr-black);
  font-size: 20px;
  line-height: 50px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  font-family: var(--zhusr-font);
  z-index: 1;
}
.btn-one:before {
  position: absolute;
  top: 0px;
  left: 0;
  bottom: 0px;
  width: 100%;
  content: "";
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  border-radius: 0px;
  webkit-transition-duration: 800ms;
  transition-duration: 800ms;
  background-color: var(--zhusr-base);
  z-index: 1;
}
.btn-one:hover:before {
  -webkit-transform: translateX(0px);
  transform: translateX(0px);
}
.btn-one .txt {
  position: relative;
  display: flex;
  align-items: center;
  z-index: 2;
}
.btn-one .arrow {
  position: relative;
  top: -2px;
  display: inline-block;
  padding-left: 10px;
  font-size: 16px;
  font-weight: 400;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  z-index: 1;
}
.btn-one:hover, .btn-one:focus {
  color: #ffffff;
}
.btn-two {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  text-transform: uppercase;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}
.btn-two span {
  position: relative;
  top: 3px;
  display: inline-block;
  padding-right: 10px;
  line-height: 15px;
  transform: rotate(180deg);
}
.btn-two span:before {
  position: relative;
  top: 3px;
  display: inline-block;
  color: var(--zhusr-black);
  font-size: 25px;
  font-weight: 400;
  z-index: 1;
}
.btn-two span:after {
  content: "";
  position: absolute;
  top: 0;
  right: 20px;
  bottom: 0;
  width: 20px;
  height: 20px;
  background: #ffffff;
  border-radius: 50%;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}
.btn-two:hover span:after {
  transform: scale(1.1);
}
.btn-two:hover:before {}
.btn-two:hover {
  color: var(--zhusr-base);
}
.checked-box1 {
  position: relative;
  display: block;
  min-height: 40px;
}
.checked-box1 label {
  position: relative;
  display: inline-block;
  padding-left: 50px;
  margin-right: 0px;
  margin-bottom: 0;
  color: #585858;
  font-size: 14px;
  line-height: 22px;
  font-weight: 400;
  cursor: pointer;
  min-height: 40px;
  font-family: var(--zhusr-font);
}
.checked-box1 input[type="checkbox"] {
  display: none;
}
.checked-box1 input[type="checkbox"] + label span {
  position: absolute;
  display: block;
  top: 4px;
  left: 0;
  width: 40px;
  height: 40px;
  vertical-align: middle;
  background-color: #ffffff;
  border: 1px solid #dae5ec;
  cursor: pointer;
  border-radius: 50%;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
.checked-box1 label span:before {
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0;
  right: 0;
  content: "";
  width: 30px;
  height: 30px;
  background: var(--zhusr-primary);
  border-radius: 50%;
  margin: 4px;
  transform: scale(0);
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
.checked-box1 input[type="checkbox"]:checked + label span {
  border-color: #dae5ec;
}
.checked-box1 input[type="checkbox"]:checked + label span:before {
  transform: scale(1.0);
}
.checked-box2 {
  position: relative;
  display: block;
  min-height: 30px;
}
.checked-box2 label {
  position: relative;
  display: inline-block;
  padding-left: 30px;
  margin-right: 0px;
  margin-bottom: 0;
  color: #757575;
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  cursor: pointer;
  min-height: 30px;
  font-family: var(--zhusr-font);
}
.checked-box2 input[type="checkbox"] {
  display: none;
}
.checked-box2 input[type="checkbox"] + label span {
  position: absolute;
  top: 5px;
  left: 0;
  width: 16px;
  height: 16px;
  vertical-align: middle;
  background-color: #f5f5f5;
  border: 1px solid #e5e5e5;
  cursor: pointer;
  border-radius: 3px;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
.checked-box2 label span:before {
  font-family: FontAwesome;
  content: "\f00c";
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0;
  right: 0;
  width: 16px;
  height: 16px;
  margin: 0px;
  color: var(--zhusr-base);
  font-size: 10px;
  line-height: 16px;
  text-align: center;
  opacity: 0;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
.checked-box2 input[type="checkbox"]:checked + label span {
  border-color: #dedede;
}
.checked-box2 input[type="checkbox"]:checked + label span:before {
  opacity: 1;
}
.thm-social-link1 {
  position: relative;
  display: block;
}
.thm-social-link1 ul {
  position: relative;
}
.thm-social-link1 ul li {
  position: relative;
  float: left;
  margin-right: 10px;
}
.thm-social-link1 ul li:last-child {
  margin-right: 0;
}
.thm-social-link1 ul li a {
  position: relative;
  display: block;
  width: 40px;
  height: 40px;
  background: var(--zhusr-base);
  border-radius: 50%;
  border: 2px solid var(--zhusr-base);
  color: var(--zhusr-black);
  font-size: 14px;
  line-height: 36px;
  text-align: center;
  z-index: 1;
  transition: all 500ms ease;
}
.thm-social-link1 ul li a:before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: var(--zhusr-black);
  content: "";
  border-radius: 50%;
  z-index: -1;
  transform: scale(0.0);
  transform-origin: center;
  transform-style: preserve-3d;
  transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
}
.thm-social-link1 ul li a:hover:before {
  transform: scaleX(1.0);
}
.thm-social-link1 ul li a:hover {
  color: #ffffff;
}
.thm-social-link2 {
  position: relative;
  display: block;
}
.thm-social-link2 ul {
  position: relative;
  overflow: hidden;
}
.thm-social-link2 ul li {
  position: relative;
  display: inline-block;
  float: left;
  margin-right: 20px;
}
.thm-social-link2 ul li:last-child {
  margin-right: 0;
}
.thm-social-link2 ul li a {
  position: relative;
  display: block;
  color: #909090;
  font-size: 16px;
  line-height: 30px;
  transition: all 500ms ease;
}
.thm-social-link2 ul li a:hover {
  color: var(--zhusr-primary);
}
.parallax-bg-one {
  background-attachment: fixed;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
}
.parallax-bg-one::before {
  background: rgba(18, 32, 0, 0.90) none repeat scroll 0 0;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}
/*___ owl Nav Dot Style _____*/
.owl-theme .owl-prev span, .owl-theme .owl-next span {}
.owl-nav-style-one {}
.owl-nav-style-one .owl-controls {}
.owl-nav-style-one.owl-theme .owl-stage-outer {
  position: relative;
  display: block;
  padding-top: 0px;
  padding-bottom: 0px;
}
.owl-nav-style-one.owl-theme .owl-nav {
  position: relative;
  display: block;
  line-height: 0;
  z-index: 10;
}
.owl-nav-style-one.owl-theme .owl-nav [class*="owl-"] {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 60px;
  border-radius: 0%;
  margin: 0 0 0 0px;
  padding: 0;
  transition: all 700ms ease 0s;
}
.owl-nav-style-one.owl-theme .owl-nav [class*="owl-"]:before {
  content: "\f149";
  font-family: flaticon !important;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  border: 2px solid #ffffff;
  color: var(--zhusr-base);
  font-size: 18px;
  line-height: 56px;
  font-weight: 600;
  text-align: center;
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
}
.owl-nav-style-one.owl-theme .owl-nav [class*="owl-"]:hover:before {
  border-color: var(--zhusr-base);
}
.owl-nav-style-one.owl-theme .owl-nav [class*="owl-"] span {
  display: none;
}
.owl-nav-style-one.owl-theme .owl-nav .owl-prev {
  transform: rotate(-270deg);
  margin-right: 10px;
}
.owl-nav-style-one.owl-theme .owl-nav .owl-next {
  margin-left: 0px;
  transform: rotate(270deg);
}
.owl-nav-style-one.owl-theme .owl-nav [class*="owl-"]:hover {
  background-color: var(--zhusr-base);
}
.owl-nav-style-one.owl-theme .owl-nav [class*="owl-"]:hover:before {
  color: #ffffff
}
.owl-carousel.owl-dot-style1 .owl-dots {
  position: relative;
  text-align: center;
  line-height: 0;
  margin-top: 30px !important;
  display: block;
}
.owl-carousel.owl-dot-style1 .owl-dots .owl-dot {
  position: relative;
  display: inline-block;
  width: 11px;
  height: 11px;
  background-color: rgba(var(--zhusr-base-rgb), .20);
  border: 0px solid #e0e0e0;
  margin: 0px 5px;
  padding: 0px;
  border-radius: 50%;
  transition: all 100ms linear;
  transition-delay: 0.1s;
}
.owl-carousel.owl-dot-style1 .owl-dots .owl-dot:before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  bottom: -2px;
  right: -2px;
  border-radius: 50%;
  background: var(--zhusr-primary);
  transform: scale(0);
  transition: all 500ms ease;
}
.owl-carousel.owl-dot-style1 .owl-dots .owl-dot.active {
  background: var(--zhusr-primary);
}
.owl-carousel.owl-dot-style1 .owl-dots .owl-dot.active:before {
  transform: scale(1.0);
}
.owl-carousel.owl-dot-style1 .owl-dots .owl-dot span {}
.owl-carousel.owl-dot-style1 .owl-dots .owl-dot.active span {}
@keyframes pulse {
  50% {
    box-shadow: 0 0 0 5px rgba(255, 255, 255, .1), 0 0 0 20px rgba(238, 238, 238, 0.3000);
  }
}
@keyframes pulse2 {
  50% {
    box-shadow: 0 0 0 5px rgba(255, 231, 1, .1), 0 0 0 20px rgba(255, 231, 1, 0.3000);
  }
}
.rating-box {
  position: relative;
  display: block;
  overflow: hidden;
}
.rating-box ul {
  overflow: hidden;
}
.rating-box ul li {
  position: relative;
  display: inline-block;
  float: left;
  margin-right: 5px;
}
.rating-box ul li:last-child {
  margin-right: 0;
}
.rating-box ul li a {
  font-size: 20px;
  font-weight: 400;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}
.zhusr-boxed_wrapper {
  position: relative;
  margin: 0 auto;
  overflow: hidden !important;
  background: #ffffff none repeat scroll 0 0;
  width: 100%;
  min-width: 320px;
}
.styled-pagination {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  padding-top: 10px;
}
.styled-pagination.pdtop0 {
  padding-top: 0;
}
.styled-pagination li {
  position: relative;
  display: inline-block;
  float: none;
  margin-right: 6px;
}
.styled-pagination li:last-child {
  margin-right: 0;
}
.styled-pagination li.prev a {
  transform: rotate(0deg);
}
.styled-pagination li a span:before {
  position: relative;
  top: 6px;
  font-size: 25px;
}
.styled-pagination li.prev a span.left {
  position: relative;
  top: 1px;
}
.styled-pagination li.next a span.right {
  position: relative;
  top: 2px;
}
.styled-pagination li a {
  position: relative;
  display: inline-block;
  width: 55px;
  height: 55px;
  border-radius: 0%;
  background: #f5f5f5;
  border: 1px solid #f5f5f5;
  color: var(--zhusr-black);
  font-size: 18px;
  line-height: 53px;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  transition: all 500ms ease;
  font-family: var(--zhusr-font);
  z-index: 1;
}
.styled-pagination li:hover a, .styled-pagination li.active a {
  color: #ffffff;
  border-color: var(--zhusr-base);
  background: var(--zhusr-base);
}
.styled-pagination li.prev a, .styled-pagination li.next a {
  color: var(--zhusr-base);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}
.styled-pagination li.prev a:hover, .styled-pagination li.next a:hover {
  color: #ffffff;
}
/*=============== Color-Layout =============*/
.switcher {
  position: fixed;
  top: 320px;
  z-index: 99;
}
.switcher .switch_btn {
  position: absolute;
  top: 0px;
  right: -50px;
  z-index: -1;
}
.switcher .switch_btn button {
  width: 50px;
  height: 50px;
  color: #fff;
  line-height: 50px;
  cursor: pointer;
  border-radius: 0;
  margin-left: 0;
  transition: all 500ms ease;
  background: rgba(0, 0, 0, 0.90);
}
.switcher .switch_menu {
  position: absolute;
  width: 220px;
  height: 30px;
  background: transparent;
  display: none;
  top: 0px;
  left: 60px;
  bottom: 0;
  margin: 10px 0;
}
.switcher #styleOptions li {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 30px;
  margin-right: 3px;
}
.switcher #styleOptions li:last-child {
  margin-right: 0;
}
.switcher #styleOptions li a {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  box-shadow: 0 0 0 0px #fff;
}
.switcher #styleOptions li a.blue-color {
  background: #1266e3;
}
.switcher #styleOptions li a.pink-color {
  background: #e70887;
}
.switcher #styleOptions li a.violet-color {
  background: #6936d8;
}
.switcher #styleOptions li a.crimson-color {
  background: #ba0913;
}
.switcher #styleOptions li a.orange-color {
  background: #FFA500;
}
.switcher #styleOptions li a.green-color {
  background: #95c41f;
}
/** Search Pop Up Style **/
.serach-button-style1 {
  position: relative;
  display: block;
}
.serach-button-style1 .search-toggler {
  position: relative;
  display: block;
  width: 70px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 0px;
  color: var(--zhusr-black);
  font-size: 25px;
  line-height: 46px;
  font-weight: 400;
  cursor: pointer;
  border-left: 1px solid rgba(var(--zhusr-base-rgb), .10);
  transition: all 500ms ease;
}
.serach-button-style1 .search-toggler:hover {
  color: var(--zhusr-base);
}
.search-popup {
  position: fixed;
  left: 0;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 99999;
  visibility: hidden;
  opacity: 0;
  overflow: auto;
  background: rgba(0, 0, 0, 0.9);
  -webkit-transform: translateY(101%);
  -ms-transform: translateY(101%);
  transform: translateY(101%);
  transition: all 700ms ease;
  -moz-transition: all 700ms ease;
  -webkit-transition: all 700ms ease;
  -ms-transition: all 700ms ease;
  -o-transition: all 700ms ease;
}
.search-popup.popup-visible {
  -webkit-transform: translateY(0%);
  -ms-transform: translateY(0%);
  transform: translateY(0%);
  visibility: visible;
  opacity: 1;
}
.search-popup .overlay-layer {
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  display: block;
}
.search-popup .close-search {
  position: absolute;
  right: 25px;
  top: 25px;
  font-size: 22px;
  color: #ffffff;
  cursor: pointer;
  background-image: url(../img/icon-cross.png);
  width: 40px;
  height: 40px;
  z-index: 5;
  transition: all 500ms ease;
}
.search-popup .search-form {
  position: relative;
  padding: 0px 15px 0px;
  max-width: 1024px;
  margin: 0 auto;
  margin-top: 150px;
  margin-bottom: 100px;
  opacity: 0;
  -webkit-transform: translateY(50px);
  -ms-transform: translateY(50px);
  transform: translateY(50px);
  z-index: 10;
}
.search-popup.popup-visible .search-form {
  opacity: 1;
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
  transition: all 500ms ease 500ms;
  -moz-transition: all 900ms ease 500ms;
  -webkit-transition: all 900ms ease 500ms;
  -ms-transition: all 900ms ease 500ms;
  -o-transition: all 900ms ease 500ms;
}
.search-popup .search-form .form-group {
  margin-bottom: 30px;
}
.search-popup .search-form fieldset {
  position: relative;
  border-radius: 12px;
}
.search-popup .search-form fieldset input[type="search"] {
  position: relative;
  height: 70px;
  padding: 20px 250px 20px 30px;
  background: #ffffff;
  line-height: 30px;
  font-size: 24px;
  color: #233145;
  border-radius: 7px;
}
.search-popup .search-form fieldset input[type="submit"] {
  position: absolute;
  display: block;
  right: 0px;
  top: 0px;
  text-align: center;
  width: 220px;
  height: 70px;
  padding: 20px 10px 20px 10px;
  color: #ffffff !important;
  line-height: 30px;
  font-size: 20px;
  cursor: pointer;
  text-transform: uppercase;
  border-radius: 0px 7px 7px 0px;
  background: var(--zhusr-base);
}
.search-popup .search-form fieldset input[type="submit"]:hover {
  transform: translateY(0px);
}
.search-popup h3 {
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 20px;
  letter-spacing: 1px;
  text-align: center;
}
.search-popup .recent-searches {
  font-size: 16px;
  color: #ffffff;
  text-align: center;
}
.search-popup .recent-searches li {
  display: inline-block;
  margin: 0px 10px 10px 0px;
}
.search-popup .recent-searches li a {
  display: block;
  line-height: 24px;
  border: 1px solid #ffffff;
  padding: 7px 15px;
  color: #ffffff;
  border-radius: 3px;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.search-popup .recent-searches li a:hover {
  border-color: var(--zhusr-base);
  background-color: var(--zhusr-base);
}
.serach-button-style1--instyle2 {
  margin-left: 0;
  margin-right: 0;
}
.serach-button-style1--instyle2 .search-toggler {
  color: #ffffff;
  border-left: 1px solid rgba(255, 255, 255, 0.20);
}
.serach-button-style1--instyle2 .search-toggler:hover {
  color: var(--zhusr-black);
}
/*________________Preloader_______________ */
.preloader {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 999999999999999;
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url(/svip/biz004/skin/images/icon/preloader.svg);
}
.preloader-close {
  position: fixed;
  z-index: 999999;
  color: #fff;
  padding: 10px 20px;
  cursor: pointer;
  right: 0;
  bottom: 0;
  font-weight: 600;
  background-color: var(--zhusr-black);
}
.loader-wrap {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 999999;
}
.loader-wrap .layer-one {
  position: absolute;
  left: 0%;
  top: 0;
  width: 33.3333%;
  height: 100%;
  overflow: hidden;
}
.loader-wrap .layer-two {
  position: absolute;
  left: 33.3333%;
  top: 0;
  width: 33.3333%;
  height: 100%;
  overflow: hidden;
}
.loader-wrap .layer-three {
  position: absolute;
  left: 66.6666%;
  top: 0;
  width: 33.3333%;
  height: 100%;
  overflow: hidden;
}
.loader-wrap .layer .overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--zhusr-base);
}
/*** Scroll To Top style ***/
.scroll-top {
  position: fixed;
  right: 15px;
  bottom: 20px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #ffffff;
  border: 2px solid #ffffff;
  color: var(--zhusr-base);
  font-size: 20px;
  line-height: 56px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  display: none;
  cursor: pointer;
  transform: rotate(0deg);
  transition: all 200ms linear;
  transition-delay: 0.1s;
  z-index: 999999999;
}
.scroll-top span {}
.scroll-top:after {
  position: absolute;
  content: '';
  top: 100%;
  left: 5%;
  height: 10px;
  width: 90%;
  opacity: 1;
  z-index: -1;
  background: -webkit-radial-gradient(center, ellipse, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 80%);
  background: -webkit-radial-gradient(center ellipse, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 80%);
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 80%);
}
.scroll-top:before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: transparent;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-animation-delay: .9s;
  animation-delay: .9s;
  content: "";
  -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.9);
  -webkit-animation: ripple 3s infinite;
  animation: ripple 3s infinite;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
}
.scroll-top:hover {
  color: #ffffff;
  background-color: var(--zhusr-black);
  border-color: var(--zhusr-black);
}
/* Form validation styles */
input:focus, textarea:focus, select:focus {
  border-color: #43c3ea;
  outline: none;
}
#contact-form input[type="text"].error {
  border-color: red;
}
#contact-form input[type="email"].error {
  border-color: red;
}
#contact-form select.error {
  border-color: red;
}
#contact-form textarea.error {
  border-color: red;
}
/* Overlay styles */
.overlay-style-one {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(218, 60, 34, 0.80);
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .7s;
  transition-property: all;
  opacity: 0;
  z-index: 1;
}
.overlay-style-one .box {
  display: table;
  height: 100%;
  width: 100%;
}
.overlay-style-one .box .content {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
}
.overlay-style-one .box .inner {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
}
.overlay-style-two {
  position: absolute;
  left: 0px;
  bottom: 0px;
  right: 0px;
  top: 0px;
  z-index: 2;
  opacity: 0;
  transition: all 900ms ease;
}
.overlay-style-two:before {
  position: absolute;
  content: '';
  top: 0px;
  left: 0px;
  width: 100%;
  height: 50%;
  display: block;
  opacity: 0;
  text-align: center;
  transform: perspective(400px) rotateX(-90deg);
  transform-origin: top;
  transition: all 0.5s;
  background-color: rgba(18, 18, 18, 0.90);
}
.overlay-style-two:after {
  position: absolute;
  content: '';
  left: 0px;
  bottom: 0px;
  width: 100%;
  height: 50%;
  display: block;
  opacity: 0;
  text-align: center;
  transform: perspective(400px) rotateX(90deg);
  transform-origin: bottom;
  transition: all 0.5s;
  background-color: rgba(18, 18, 18, 0.90);
}
.review-box {
  position: relative;
  display: block;
  overflow: hidden;
  line-height: 16px;
}
.review-box > ul {
  display: block;
  overflow: hidden;
}
.review-box > ul > li {
  display: inline-block;
  float: none;
  margin: 0 1px;
}
.review-box > ul > li:last-child {
  margin-right: 0px;
}
.review-box > ul > li > i {
  position: relative;
  display: inline-block;
  color: #ffa800;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}
.review-box > ul > li:hover > i {
  color: var(--zhusr-gray);
}
/* Update header Style */
@keyframes menu_sticky {
  0% {
    margin-top: -90px;
  }
  50% {
    margin-top: -74px;
  }
  100% {
    margin-top: 0;
  }
}
/*** 
========================================
    Mobile Menu
========================================
***/
.nav-outer .mobile-nav-toggler {
  position: relative;
  display: none;
  float: right;
  cursor: pointer;
  padding: 30px 0;
}
.nav-outer.style1 .mobile-nav-toggler {
  padding: 35px 0 35px;
}
.nav-outer.style2 .mobile-nav-toggler {
  padding: 25px 0;
}
.nav-outer.style3 .mobile-nav-toggler {
  padding: 30px 0;
}
.nav-outer .mobile-nav-toggler .inner {
  position: relative;
  display: block;
  padding: 3px 5px;
  background: var(--zhusr-base);
}
.nav-outer.style2 .mobile-nav-toggler .inner {
  background-color: var(--zhusr-black);
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  max-width: 100%;
  height: 100%;
  padding-right: 30px;
  opacity: 0;
  visibility: hidden;
  z-index: 999999;
}
.mobile-menu .menu-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(9, 16, 32, 0.90);
  -webkit-transform: translateX(101%);
  -ms-transform: translateX(101%);
  transform: translateX(101%);
  transition: all 900ms ease;
  -moz-transition: all 900ms ease;
  -webkit-transition: all 900ms ease;
  -ms-transition: all 900ms ease;
  -o-transition: all 900ms ease;
  z-index: 1;
}
.mobile-menu-visible .mobile-menu .menu-backdrop {
  opacity: 0.70;
  visibility: visible;
  -webkit-transition: all 0.7s ease;
  -moz-transition: all 0.7s ease;
  -ms-transition: all 0.7s ease;
  -o-transition: all 0.7s ease;
  transition: all 0.7s ease;
  -webkit-transform: translateX(0%);
  -ms-transform: translateX(0%);
  transform: translateX(0%);
}
.mobile-menu .mCSB_inside > .mCSB_container {
  margin-right: 5px;
}
.mobile-menu .navbar-collapse {
  display: block !important;
}
.mobile-menu .nav-logo {
  position: relative;
  padding: 30px 25px;
  text-align: left;
}
.mobile-menu .nav-logo a {
  position: relative;
  display: inline-block;
}
.mobile-menu-visible {
  overflow: hidden;
}
.mobile-menu-visible .mobile-menu {
  opacity: 1;
  visibility: visible;
}
.mobile-menu .menu-box {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  max-height: 100%;
  overflow-y: auto;
  background: #000000;
  padding: 0px 0px;
  z-index: 5;
  opacity: 0;
  visibility: hidden;
  border-radius: 0px;
  -webkit-transform: translateX(101%);
  -ms-transform: translateX(101%);
  transform: translateX(101%);
}
.mobile-menu-visible .mobile-menu .menu-box {
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.7s ease;
  -moz-transition: all 0.7s ease;
  -ms-transition: all 0.7s ease;
  -o-transition: all 0.7s ease;
  transition: all 0.7s ease;
  -webkit-transform: translateX(0%);
  -ms-transform: translateX(0%);
  transform: translateX(0%);
}
.mobile-menu .close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  color: #ffffff;
  font-size: 30px;
  line-height: 30px;
  width: 30px;
  text-align: center;
  cursor: pointer;
  z-index: 10;
  -webkit-transition: all 0.9s ease;
  -moz-transition: all 0.9s ease;
  -ms-transition: all 0.9s ease;
  -o-transition: all 0.9s ease;
  transition: all 0.9s ease;
}
.mobile-menu-visible .mobile-menu .close-btn {
  -webkit-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  transform: rotate(360deg);
}
.mobile-menu .close-btn:hover {
  color: var(--zhusr-base);
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.mobile-menu .navigation {
  position: relative;
  display: block;
  width: 100%;
  float: none;
}
.mobile-menu .navigation li {
  position: relative;
  display: block;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}
.mobile-menu .navigation:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}
.mobile-menu .navigation li > ul > li:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}
.mobile-menu .navigation li > a {
  position: relative;
  display: block;
  padding: 10px 25px;
  color: #ffffff;
  font-size: 15px;
  line-height: 24px;
  font-weight: 600;
  text-transform: uppercase;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}
.mobile-menu .navigation li > a:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 0;
  border-left: 5px solid var(--zhusr-base);
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}
.mobile-menu .navigation li.current > a:before {
  height: 100%;
}
.mobile-menu .navigation li.current > a, .mobile-menu .navigation li > a:hover {
  color: var(--zhusr-base);
}
.mobile-menu .navigation li ul li > a {
  font-size: 15px;
  font-weight: 400;
  margin-left: 20px;
  text-transform: capitalize;
}
.mobile-menu .navigation li.dropdown .dropdown-btn {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 32px;
  height: 32px;
  text-align: center;
  color: #ffffff;
  font-size: 16px;
  line-height: 32px;
  background: rgba(255, 255, 255, 0.10);
  cursor: pointer;
  border-radius: 2px;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 5;
}
.mobile-menu .navigation li.dropdown .dropdown-btn.open {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.mobile-menu .navigation li > ul, .mobile-menu .navigation li > ul > li > ul, .mobile-menu .navigation > li.dropdown > .megamenu {
  display: none;
}
.mobile-menu .social-links {
  position: relative;
  text-align: center;
  padding: 50px 15px;
}
.mobile-menu .social-links li {
  position: relative;
  display: inline-block;
  margin: 0px 1px 10px;
}
.mobile-menu .social-links li a {
  position: relative;
  display: block;
  width: 45px;
  height: 45px;
  border: 1px solid rgba(255, 255, 255, 0.20);
  border-radius: 50%;
  background: var(--zhusr-base);
  color: #ffffff;
  font-size: 16px;
  line-height: 41px;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}
.mobile-menu .social-links li a:hover {
  color: var(--zhusr-base);
  background-color: #ffffff;
}
/** xs sidebar **/
.xs-sidebar-group .xs-overlay {
  left: 0%;
  top: 0;
  position: fixed;
  height: 100%;
  opacity: 0;
  width: 100%;
  visibility: hidden;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  cursor: url(/svip/biz004/skin/images/icon/cross-out.png), pointer;
  z-index: 99999999;
}
.xs-sidebar-group.isActive .xs-overlay {
  opacity: .8;
  visibility: visible;
  transition-delay: 0.3s;
  right: 100%;
  background-color: #000000;
}
.xs-sidebar-widget {
  position: fixed;
  left: -100%;
  top: 0;
  bottom: 0;
  width: 100%;
  max-width: 365px;
  background-color: #2c2c2c;
  overflow: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transition: all 700ms ease 100ms;
  visibility: hidden;
  opacity: 1;
  z-index: 999999999;
}
.xs-sidebar-group.isActive .xs-sidebar-widget {
  opacity: 1;
  visibility: visible;
  left: 0;
  transition: all 500ms ease 800ms;
}
.sidebar-textwidget {
  padding: 70px 30px;
}
.sidebar-widget-container {
  position: relative;
  top: 150px;
  opacity: 0;
  visibility: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transition: all 300ms ease 100ms;
}
.xs-sidebar-group.isActive .sidebar-widget-container {
  top: 0px;
  opacity: 1;
  visibility: visible;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transition: all 700ms ease 1500ms;
}
.xs-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: .8;
  z-index: 0;
  background-color: #000000;
}
.xs-sidebar-group .widget-heading {
  position: absolute;
  top: 0;
  right: 0;
  padding: 25px;
}
.xs-sidebar-group .widget-heading a {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 30px;
  line-height: 26px;
  text-align: center;
  border: 2px solid #fff;
  border-radius: 50%;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}
.xs-sidebar-group .widget-heading a:hover {
  color: var(--zhusr-base);
  border-color: var(--thn-base);
}
.xs-sidebar-group .content-inner .logo {
  position: relative;
  display: block;
  margin-bottom: 30px;
}
.xs-sidebar-group .content-inner .logo a {
  position: relative;
  display: inline-block;
}
.xs-sidebar-group .content-inner h4 {
  position: relative;
  display: block;
  font-size: 20px;
  line-height: 30px;
  color: #fff;
  font-weight: 400;
  text-transform: uppercase;
  padding-bottom: 14px;
  margin-bottom: 30px;
}
.xs-sidebar-group .content-inner h4:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background: var(--zhusr-base);
}
.xs-sidebar-group .content-inner .content-box {
  margin-bottom: 30px;
  padding-right: 15px;
}
.xs-sidebar-group .content-inner .content-box .inner-text {
  position: relative;
  display: block;
  padding-top: 2px;
}
.xs-sidebar-group .content-inner .content-box p {
  color: #b0bcc2;
  margin: 0;
}
.xs-sidebar-group .content-inner .form-inner .form-group {
  position: relative;
  margin-bottom: 20px;
}
.xs-sidebar-group .content-inner .form-inner .form-group:last-child {
  margin-bottom: 0px;
}
.xs-sidebar-group .content-inner .form-inner .form-group input[type='text'], .xs-sidebar-group .content-inner .form-inner .form-group input[type='email'], .xs-sidebar-group .content-inner .form-inner .form-group textarea {
  position: relative;
  display: block;
  width: 100%;
  height: 50px;
  font-size: 15px;
  padding: 10px 20px;
  color: #848484;
  transition: all 500ms ease;
}
.xs-sidebar-group .content-inner .form-inner .form-group button.btn-one {
  color: var(--zhusr-black);
}
.xs-sidebar-group .content-inner .form-inner .form-group .theme-btn-one:hover {}
.xs-sidebar-group .content-inner .form-inner .form-group textarea {
  resize: none;
  height: 120px;
}
.xs-sidebar-group .content-inner .form-inner .form-group input:focus, .xs-sidebar-group .content-inner .form-inner .form-group textarea:focus {
  border-color: #00224f;
}
.sidebar-contact-info {
  position: relative;
  display: block;
  padding-top: 43px;
}
.sidebar-contact-info h3 {}
.sidebar-contact-info ul {
  position: relative;
  display: block;
  padding-bottom: 22px;
}
.sidebar-contact-info ul li {
  position: relative;
  display: block;
  color: #b0bcc2;
  line-height: 30px;
  margin-bottom: 6px;
}
.sidebar-contact-info ul li:last-child {
  margin-bottom: 0;
}
.sidebar-contact-info ul li span {
  position: relative;
  display: inline-block;
  width: 25px;
}
.sidebar-contact-info ul li span:before {
  position: relative;
  display: inline-block;
  color: var(--zhusr-base);
  top: 3px;
}
.sidebar-contact-info ul li a {
  color: #b0b0bd;
}
.xs-sidebar-group .content-inner .thm-social-link1 {
  overflow: hidden;
}
.sec-title {
  position: relative;
  display: block;
  margin-top: -8px;
  padding-bottom: 44px;
}
.sec-title .sub-title {
  position: relative;
  display: block;
  line-height: 0;
  padding-bottom: 9px;
}
.sec-title .sub-title h3 {
  color: var(--zhusr-base);
  font-size: 24px;
  line-height: 34px;
  font-weight: 700;
  font-style: normal;
}
.sec-title h2 {
  font-size: 38px;
  line-height: 1.2em;
  font-weight: 800;
  text-transform: none;
}
.sec-title--style2 {
  position: relative;
}
.sec-title--style2 .sub-title h3 {
  color: var(--zhusr-primary);
}
.sec-title--style2 h2 {
  color: #ffffff;
}
@keyframes slide5 {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -200px 0;
  }
}
@-webkit-keyframes slide5 {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -200px 0;
  }
}
/*** 
=============================================
    Features Style1 Content Css
=============================================
***/
.features-style1-area {
  position: relative;
  display: block;
}
.features-style1__content {
  position: relative;
  display: block;
  z-index: 10;
}
.features-style1__content ul {
  position: relative;
  display: flex;
  background: #ffffff;
  padding: 0 50px;
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
  margin-top: -60px;
  z-index: 10;
}
.features-style1__content ul li {
  position: relative;
  display: block;
  padding: 0 20px;
  padding-top: 54px;
  padding-bottom: 45px;
  max-width: 33.333333%;
  width: 100%;
}
.features-style1__content ul li:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 3px;
  background: var(--zhusr-primary);
  transform: scaleX(0);
  transition: all 500ms linear;
  transition-delay: 0.1s;
}
.features-style1__content ul li:hover:before {
  transform: scaleX(1.0);
}
.single-features-style1 {
  position: relative;
  display: block;
  padding-left: 75px;
}
.single-features-style1 .icon-holder {
  position: absolute;
  top: 0;
  left: 0;
  width: 75px;
  height: 75px;
  padding-top: 10px;
}
.single-features-style1 .icon-holder .box {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  background-color: rgba(var(--zhusr-base-rgb), .10);
  transition: all 500ms ease;
}
.single-features-style1:hover .icon-holder .box {
  background-color: var(--zhusr-primary);
}
.single-features-style1 .icon-holder span:before {
  position: relative;
  display: inline-block;
  color: var(--zhusr-base);
  font-size: 65px;
  line-height: 65px;
  transform: scale(1.0);
  transform-style: preserve-3d;
  transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
}
.single-features-style1:hover .icon-holder span:before {
  color: var(--zhusr-black);
  transform: scale(0.9);
}
.single-features-style1 .text-holder {
  position: relative;
  display: block;
  padding-top: 7px;
  padding-left: 10px;
}
.single-features-style1 .text-holder h3 {
  font-size: 20px;
  line-height: 24px;
  margin: 0 0 14px;
}
.single-features-style1 .text-holder h3 a {
  color: var(--zhusr-black);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}
.single-features-style1 .text-holder h3 a:hover {
  color: var(--zhusr-primary);
}
.single-features-style1 .text-holder p {
  margin: 0;
}
/*** 
=============================================
    Features style2 Area Css
=============================================
***/
.features-style2-area {
  position: relative;
  display: block;
}
.features-style2-area .auto-container {
  max-width: 100%;
  padding: 0;
}
.features-style2-area .row {
  margin-left: 0px;
  margin-right: 0px;
}
.features-style2-area .row [class*=col-] {
  padding-left: 0px;
  padding-right: 0px;
}
.single-features-style2-box {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--zhusr-black);
  padding: 112px 0;
  min-height: 360px;
}
.single-features-style2-box .inner-content {
  position: relative;
  display: block;
  max-width: 585px;
  width: 100%;
  float: right;
  padding-left: 75px;
}
.single-features-style2-box.left .inner-content {
  float: left;
  margin-left: 100px;
}
.single-features-style2-box .inner-content .icon {
  position: absolute;
  top: 25px;
  left: 0;
  padding-top: 10px;
}
.single-features-style2-box .inner-content .icon .box {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.07);
  transition: all 300ms ease 100ms;
}
.single-features-style2-box:hover .inner-content .icon .box {
  background: var(--zhusr-base);
  transform: rotate(90deg);
}
.single-features-style2-box .inner-content .icon span::before {
  position: relative;
  display: inline-block;
  color: var(--zhusr-primary);
  font-size: 65px;
  line-height: 65px;
  transform: scale(1.0);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}
.single-features-style2-box:hover .inner-content .icon span::before {
  transform: scale(0.8);
}
.single-features-style2-box .inner-content .title {
  position: relative;
  display: block;
  padding-left: 20px;
}
.single-features-style2-box .inner-content .title h3 {
  color: #a5b9ad;
  font-size: 24px;
  line-height: 36px;
  font-weight: 700;
  margin-bottom: 4px;
}
.single-features-style2-box .inner-content .title h2 {
  color: #ffffff;
  font-size: 40px;
  line-height: 1.2em;
  font-weight: 700;
}
.single-features-style2-box .img-bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-attachment: scroll;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
/*** 
=============================================
    Features Style3 Area Css
=============================================
***/
.features-style3-area {
  position: relative;
  display: block;
  padding: 120px 0px 120px;
  background: #ffffff;
  z-index: 10;
}
.features-style3__bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-position: center center;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: var(--zhusr-black);
  background-blend-mode: luminosity;
  z-index: -1;
}
.features-style3__bg::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(var(--zhusr-black-rgb), 0.85);
  z-index: -2;
  content: "";
}
.features-style3__content {
  position: relative;
  display: block;
}
.features-style3__content .sec-title {
  padding-bottom: 34px;
}
.features-style3__content .video-btn {
  position: relative;
  display: block;
}
.features-style3__content .video-btn .icon {
  position: relative;
  display: inline-block;
}
.features-style3__content .video-btn .icon .video-popup {
  position: relative;
  display: block;
  width: 100px;
  height: 100px;
  line-height: 100px;
  color: #ffffff;
  font-size: 20px;
  text-align: center;
  background: var(--zhusr-base);
}
.features-style3__content .video-btn .icon .video-popup span:before {
  position: relative;
  top: 3px;
}
.features-style3__list {
  position: relative;
  display: block;
  overflow: hidden;
}
.features-style3__list ul {
  position: relative;
  display: block;
  float: left;
}
.features-style3__list ul.style2 {
  position: relative;
  display: block;
  float: left;
  padding-left: 75px;
}
.features-style3__list ul li {
  position: relative;
  display: block;
  color: #ffffff;
  font-size: 18px;
  line-height: 40px;
  font-weight: 600;
  transition: all 500ms ease;
}
.features-style3__list ul li:hover {
  color: var(--zhusr-primary);
}
.features-style3__list ul li span::before {
  position: relative;
  display: inline-block;
  color: var(--zhusr-primary);
  font-size: 20px;
  padding-right: 13px;
  top: 3px;
}
/*** 
=============================================
    Choose Style1 Area Css
=============================================
***/
.choose-style1-area {
  position: relative;
  display: block;
  margin-bottom: -100px;
  z-index: 10;
}
.choose-style1__title-box {
  position: relative;
  display: block;
  background: var(--zhusr-base);
  padding: 62px 60px 65px;
}
.choose-style1__title-box .sec-title--style2 {
  padding-bottom: 58px;
}
.choose-style1__title-box .sec-title--style2 h2 {
  color: #ffffff;
  font-size: 30px;
  line-height: 40px;
  font-weight: 800;
}
.choose-style1__title-box .btn-box {
  position: relative;
  display: block;
  line-height: 0;
}
.choose-style1__title-box .btn-box a {
  padding-left: 40px;
  padding-right: 40px;
}
.choose-style1__title-box .btn-box a.btn-one:before {
  background-color: var(--zhusr-black);
}
.video-gallery-style2 {
  position: relative;
  width: 100%;
  min-height: 400px;
}
.video-gallery-style2__bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-attachment: scroll;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-color: var(--zhusr-base);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}
.video-gallery-style2 .icon {
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  background: var(--zhusr-primary);
  border-radius: 0%;
  z-index: 2;
}
.video-gallery-style2 .icon .video-popup {
  position: relative;
  display: block;
  font-size: 25px;
  text-align: center;
}
.video-gallery-style2 .icon .video-popup span::before {
  position: relative;
  top: 4px;
  color: var(--zhusr-black);
}
/*** 
=============================================
    Slogan area style
=============================================
***/
.slogan-area {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--zhusr-base);
  padding: 100px 0;
  z-index: 10;
}
.slogan-area .row {
  align-items: center;
}
.phone-number-box2 {
  position: relative;
  display: flex;
  align-items: center;
}
.phone-number-box2 .icon {
  position: relative;
  display: block;
  width: 75px;
  height: 75px;
  background-color: rgb(30, 50, 38);
  border-radius: 50%;
  z-index: 1;
}
.phone-number-box2 .icon span::before {
  position: relative;
  display: block;
  color: var(--zhusr-primary);
  font-size: 25px;
  line-height: 75px;
  text-align: center;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}
.phone-number-box2 .icon:before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  border-radius: 50%;
  background: var(--zhusr-primary);
  content: "";
  z-index: -1;
  transform: scale(0.0);
  transform-origin: center;
  transform-style: preserve-3d;
  transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
}
.phone-number-box2:hover .icon:before {
  transform: scaleX(1.0);
}
.phone-number-box2:hover .icon span::before {
  color: #fff;
}
.phone-number-box2 .phone {
  position: relative;
  display: block;
  padding-left: 30px;
}
.phone-number-box2 .phone p {
  position: relative;
  display: block;
  top: 5px;
  color: var(--zhusr-primary);
  font-size: 24px;
  line-height: 26px;
  font-weight: 700;
  margin: 0 0 16px;
}
.phone-number-box2 .phone a {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-size: 34px;
  line-height: 40px;
  font-weight: 800;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  font-family: var(--zhusr-font);
}
.phone-number-box2 .phone a:hover {
  color: var(--zhusr-primary);
}
.slogan-text-box {
  position: relative;
  display: block;
}
.slogan-text-box p {
  color: rgba(255, 255, 255, 0.70);
  font-size: 18px;
  line-height: 32px;
  font-weight: 500;
  margin: 0;
}
.slogan-btn-box {
  position: relative;
  display: block;
  line-height: 0;
}
.slogan-btn-box a {
  padding-left: 50px;
  padding-right: 50px;
}
.slogan-btn-box a:before {
  background-color: var(--zhusr-black);
}
/*** 
=============================================
    Google Map Style1 Area Css
=============================================
***/
.google-map-style1-area {
  position: relative;
  display: block;
  background: #ffffff;
  z-index: 10;
}
.google-map-style1-area .auto-container {
  max-width: 100%;
  padding: 0;
}
.home1-page-map-outer {
  position: relative;
  display: block;
  z-index: 10;
}
.home1-page-map-outer .map-canvas {
  position: relative;
  width: 100%;
  height: 550px;
}
/*** 
=============================================
    Working Process Area Css
=============================================
***/
.working-process-area {
  position: relative;
  display: block;
  padding: 100px 0;
  background: #ffffff;
  z-index: 10;
}
.working-process-area.pdtop120 {
  padding-top: 120px;
}
.working-process-area .sec-title {
  padding-bottom: 80px;
}
.working-process__inner {
  position: relative;
  display: block;
  z-index: 1;
}
.working-process__inner .horizontal-line {
  position: absolute;
  top: 90px;
  left: -90px;
  right: -90px;
  height: 1px;
  background: #cad7cf;
}
.working-process__inner .horizontal-line:before {
  content: "";
  position: absolute;
  top: -5px;
  left: 0;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--zhusr-primary);
}
.working-process__inner .horizontal-line:after {
  content: "";
  position: absolute;
  top: -5px;
  right: 0;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--zhusr-primary);
}
.working-process-box {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  counter-reset: count;
}
.single-working-process {
  position: relative;
  display: block;
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%;
  width: 100%;
  text-align: center;
  padding: 0px 30px 0px;
  margin-bottom: 38px;
  z-index: 1;
}
.single-working-process .icon-holder {
  position: relative;
  display: block;
  width: 180px;
  height: 180px;
  margin: 0 auto;
  background-color: var(--zhusr-base);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.single-working-process .icon-holder::after {
  content: "";
  position: absolute;
  top: -36px;
  left: -36px;
  bottom: -36px;
  right: -36px;
  border: 1px solid #cad7cf;
  border-radius: 50%;
  z-index: -2;
}
.single-working-process .icon-holder:before {
  content: "";
  position: absolute;
  left: -36px;
  bottom: -37px;
  right: -36px;
  height: 127px;
  background: #ffffff;
  z-index: -1;
}
.single-working-process:nth-child(2n+2) .icon-holder:before {
  top: -37px;
  bottom: auto;
  height: 128px;
}
.single-working-process .icon-holder span:before {
  position: relative;
  color: #ffffff;
  font-size: 60px;
  line-height: 60px;
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .7s;
  transition-property: all;
  z-index: 5;
}
.single-working-process:hover .icon-holder span:before {
  transform: scale(1.0) rotate(1deg);
}
.single-working-process .counting-box {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 50px;
  background: var(--zhusr-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.single-working-process .counting-box.top {
  left: auto;
  bottom: auto;
  top: 0;
  right: 0;
}
.single-working-process .counting-box:before {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  color: var(--zhusr-black);
  font-size: 20px;
  font-weight: 700;
  counter-increment: count;
  content: "0"counter(count);
  transition: all 100ms linear;
  transition-delay: 0.1s;
  font-family: var(--zhusr-font);
}
.single-working-process .text-holder {
  position: relative;
  display: block;
  padding-top: 70px;
}
.single-working-process .text-holder h3 {
  font-size: 24px;
  line-height: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}
.single-working-process .text-holder p {
  margin: 0;
}
.single-working-process .text-holder .btn-box {
  position: relative;
  display: block;
  padding-top: 15px;
}
.single-working-process .text-holder p {
  margin: 0;
}
/*** 
=============================================
    Industries Details Area Css
=============================================
***/
.industries-details-area {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 100px 0;
  z-index: 10;
}
.industries-details__content {
  position: relative;
  display: block;
}
.industries-details__content .single-service-style2 {
  margin-bottom: 50px;
}
.industries-details__text-box {
  position: relative;
  display: block;
}
.industries-details__text-box .text {
  position: relative;
  display: block;
}
.industries-details__text-box .text h2 {
  font-size: 40px;
  line-height: 50px;
  font-weight: 800;
  margin: 0 0 27px;
}
.industries-details__text-box .text-right-box {
  position: relative;
  display: block;
  padding-top: 77px;
}
.industries-details__text-box .text-right-box ul {
  position: relative;
  display: block;
  padding-top: 17px;
}
.industries-details__text-box .text-right-box ul li {
  position: relative;
  display: block;
  padding-left: 30px;
  color: var(--zhusr-black);
  font-size: 18px;
  font-weight: 600;
  line-height: 26px;
  margin-bottom: 12px;
}
.industries-details__text-box .text-right-box ul li::before {
  font-family: 'icomoon' !important;
  content: "\e90f";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  color: var(--zhusr-primary);
  font-size: 22px;
  font-weight: 400;
}
.industries-details__text-box .text-right-box ul li:last-child {
  margin-bottom: 0;
}
.industries-details__features-box {
  position: relative;
  display: block;
  border-bottom: 1px solid #cad7cf;
  padding-top: 52px;
  padding-bottom: 65px;
}
.industries-details__features-box__single {
  position: relative;
  display: block;
  margin-bottom: 43px;
}
.industries-details__features-box__single .img-holder {
  position: relative;
  display: block;
  overflow: hidden;
}
.industries-details__features-box__single .img-holder img {
  width: 100%;
}
.industries-details__features-box__single .text-holder {
  position: relative;
  display: block;
  padding-top: 42px;
}
.industries-details__features-box__single .text-holder:before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--zhusr-base);
}
.industries-details__features-box__single .text-holder h3 {
  font-size: 24px;
  line-height: 30px;
  font-weight: 800;
  margin: 0 0 9px;
}
.industries-details__features-box__single .text-holder p {
  margin: 0;
}
/*** 
=============================================

    Contact Info Style1 Area Css
=============================================
***/
.contact-info-style1-area {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 100px 0;
  z-index: 10;
}
.contact-info-style1__box {
  position: relative;
  display: block;
}
.contact-form {
  position: relative;
  display: block;
}
.contact-form.max-width {
  max-width: 770px;
  margin: 0 auto;
}
.contact-form form {
  position: relative;
  display: block;
}
.contact-form form .input-box {
  position: relative;
  display: block;
  margin-bottom: 20px;
}
.contact-form form input[type="text"], .contact-form form input[type="email"], .contact-form form textarea {
  position: relative;
  display: block;
  background: #ebf1ed;
  width: 100%;
  height: 62px;
  border: 1px solid #ebf1ed;
  color: #737c76;
  font-size: 14px;
  font-weight: 500;
  font-style: normal;
  padding-left: 30px;
  padding-right: 30px;
  border-radius: 0px;
  transition: all 500ms ease;
  font-family: var(--zhusr-font);
}
.contact-form form textarea {
  height: 155px;
  padding-top: 12px;
  padding-left: 30px;
  padding-right: 30px;
  padding-bottom: 10px;
}
.contact-form form input[type="text"]::-webkit-input-placeholder {
  color: #737c76;
}
.contact-form form input[type="text"]:-moz-placeholder {
  color: #737c76;
}
.contact-form form input[type="text"]::-moz-placeholder {
  color: #737c76;
}
.contact-form form input[type="text"]:-ms-input-placeholder {
  color: #737c76;
}
.contact-form form input[type="email"]::-webkit-input-placeholder {
  color: #737c76;
}
.contact-form form input[type="email"]:-moz-placeholder {
  color: #737c76;
}
.contact-form form input[type="email"]::-moz-placeholder {
  color: #737c76;
}
.contact-form form input[type="email"]:-ms-input-placeholder {
  color: #737c76;
}
.contact-form form textarea::-webkit-input-placeholder {
  color: #737c76;
}
.contact-form form textarea:-moz-placeholder {
  color: #737c76;
}
.contact-form form textarea::-moz-placeholder {
  color: #737c76;
}
.contact-form form textarea:-ms-input-placeholder {
  color: #737c76;
}
.contact-form form .button-box {
  position: relative;
  display: block;
  padding-top: 10px;
}
.contact-form form .button-box button {
  padding-top: 9px;
  padding-bottom: 5px
}
@-webkit-keyframes iliketomoveit {
  0% {
    left: 0px;
  }
  25% {
    left: 400px;
  }
  75% {
    left: 200px;
  }
  100% {
    left: 0px;
  }
}
@keyframes iliketomoveit {
  0% {
    left: 0px;
  }
  25% {
    left: 400px;
  }
  75% {
    left: 200px;
  }
  100% {
    left: 0px;
  }
}
/*** 
=============================================
    Error Page Area Style      
=============================================
***/
.error-page-area {
  position: relative;
  display: block;
  padding: 115px 0 120px;
  background: #ffffff;
  z-index: 10;
}
.error-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.error-content .big-title {
  position: relative;
  display: block;
  z-index: 1;
}
.error-content .big-title h2 {
  color: var(--zhusr-base);
  font-size: 72px;
  line-height: 70px;
  font-weight: 800;
  text-transform: uppercase;
}
.error-content .title {
  position: relative;
  display: block;
  padding-top: 17px;
  padding-bottom: 24px;
}
.error-content .title h2 {
  font-size: 48px;
  line-height: 60px;
  font-weight: 700;
}
.error-content .text {
  position: relative;
  display: block;
  padding-bottom: 29px;
}
.error-content .text p {
  margin: 0;
}
.error-page-search-box {
  position: relative;
  display: block;
  max-width: 570px;
  width: 100%;
  margin: 0 auto;
}
.error-page-search-box form.search-form {
  position: relative;
  display: block;
  width: 100%;
}
.error-page-search-box .search-form input[type="text"] {
  position: relative;
  display: block;
  width: 100%;
  height: 60px;
  border-radius: 0px;
  background: #ffffff;
  border: 1px solid #e5e5e5;
  color: #757575;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: .1em;
  padding-left: 30px;
  padding-right: 60px;
  transition: all 500ms ease 0s;
  font-family: var(--zhusr-font);
}
.error-page-search-box .search-form button {
  position: absolute;
  top: 10px;
  right: 10px;
  bottom: 10px;
  width: 40px;
  height: 40px;
  background: var(--zhusr-base);
  color: #ffffff;
  font-size: 16px;
  line-height: 10px;
  display: block;
  text-align: center;
  border: 0px solid #e1e1e1;
  transition: all 500ms ease 0s;
}
.error-page-search-box .search-form button i {
  font-size: 16px
}
.error-page-search-box .search-form input[type="text"]:focus {
  color: var(--zhusr-black);
  border-color: var(--zhusr-base);
}
.error-page-search-box .search-form input[type="text"]:focus + button, .error-page-search-box .search-form button:hover {
  color: #fff;
}
.error-page-search-box .search-form input::-webkit-input-placeholder {
  color: #757575;
}
.error-page-search-box .search-form input:-moz-placeholder {
  color: #757575;
}
.error-page-search-box .search-form input::-moz-placeholder {
  color: #757575;
}
.error-page-search-box .search-form input:-ms-input-placeholder {
  color: #757575;
}
.error-content .btns-box {
  line-height: 0;
  padding-top: 20px;
}
.error-content .btns-box a {
  padding-left: 40px;
  padding-right: 40px;
}
/*** 
=============================================
    Main Contact Form Area Css
=============================================
***/
.main-contact-form-area {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 120px 0px 120px;
  z-index: 10;
}
.contact-info-box {
  position: relative;
  display: block;
}
.contact-info-box .sec-title {
  padding-bottom: 25px;
  padding-top: 50px;
}
.contact-info-box .text {
  position: relative;
  display: block;
}
.contact-info-box .text p {
  margin: 0px;
}
.contact-info-list {
  position: relative;
  display: block;
  margin-top: 38px;
}
.contact-info-list li {
  position: relative;
  display: block;
  margin-bottom: 60px;
}
.contact-info-list li .icon, .contact-info-list li .text {
  display: table-cell;
  vertical-align: middle;
}
.contact-info-list li .icon {
  position: relative;
  width: 60px;
  height: 60px;
  background: #da940e;
  border-radius: 50%;
  text-align: center;
  color: var(--zhusr-black);
  font-size: 15px;
}
.contact-info-list li .icon span::before {
  position: relative;
  display: block;
  line-height: 60px;
}
.contact-info-list li .text {
  position: relative;
  padding-left: 20px;
}
.contact-info-list li .text p {
  font-size: 14px;
  line-height: 20px;
  margin: 0 0 10px;
}
.contact-info-list li .text h4 {
  font-size: 18px;
  line-height: 20px;
}
.contact-info-list li .text h4 a {
  color: var(--zhusr-black);
}
.contact-info-list li .text h4 a:hover {
  color: var(--zhusr-primary);
}
.contact-form--style2 {
  position: relative;
  display: block;
  max-width: 570px;
  background: #ffffff;
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07), inset 0px 10px 0px 0px rgba(0, 105, 64, 0.004);
  padding: 50px 20px;
}
.contact-form--style2::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: var(--zhusr-base);
  height: 10px;
  content: "";
}
.contact-form--style2 .sec-title {
  padding-bottom: 14px;
}
.contact-form--style2 form .button-box {
  padding-top: 0px;
}
.contact-form--style2 form textarea {
  height: 110px !important;
  padding-top: 20px;
}
.contact-form--style2 form .input-box {
  margin-bottom: 15px;
}
.contact-form--style2 form input[type="text"], .contact-form--style2 form input[type="email"], .contact-form--style2 form textarea {
  height: 52px;
}
/*** 
=============================================
    Google Map Area Css
=============================================
***/
.google-map-area {
  position: relative;
  display: block;
  background: #ffffff;
  z-index: 10;
}
.google-map-area .auto-container {
  max-width: 100%;
  padding: 0;
}
.contact-page-map-outer {
  position: relative;
  display: block;
  z-index: 10;
}
.contact-page-map-outer .map-canvas {
  position: relative;
  width: 100%;
  height: 675px;
}
#ui-datepicker-div.ui-widget-content {
  border: 1px solid #c5c5c5;
  background: #fff none repeat scroll 0 0;
  border: 1px solid #777;
  color: #252525;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  border-radius: 0px;
  width: 270px;
  padding: 5px;
}
#ui-datepicker-div.ui-datepicker .ui-datepicker-header {
  background: var(--zhusr-base);
  border: 2px solid rgba(var(--zhusr-base-rgb), .80);
  border-radius: 0;
  color: #fff;
  font-weight: 700;
  padding: 5px 0;
  position: relative;
}
.ui-datepicker td a {
  color: #000000 !important;
  text-align: center;
  background-image: none !important;
  background: #f5f5f5 !important;
  border: 1px solid #f9f9f9 !important;
}
.ui-state-highlight, .ui-widget-content .ui-state-highlight, .ui-widget-header .ui-state-highlight {
  border: 1px solid var(--zhusr-base) !important;
  background: var(--zhusr-base) !important;
  color: #ffffff !important;
}
.ui-datepicker .ui-datepicker-prev {
  left: 5px;
}
.ui-datepicker .ui-datepicker-prev, .ui-datepicker .ui-datepicker-next {
  border-radius: 30%;
  height: 20px;
  position: absolute;
  top: 7px;
  width: 20px;
  transition: all 500ms ease;
  cursor: pointer;
}
.ui-datepicker .ui-datepicker-next {
  right: 5px;
}
.ui-datepicker .ui-datepicker-prev:hover, .ui-datepicker .ui-datepicker-next:hover {
  top: 7px;
  background: #fff;
  border: none;
}
.ui-datepicker table {
  border-collapse: collapse;
  font-size: 13px;
  margin: 0 0 0.4em;
  width: 100%;
  z-index: 99999999;
}
.ui-datepicker th {
  border: medium none;
  font-weight: 600;
  padding: 2px 3px;
  text-align: center;
}
.ui-datepicker-calendar .ui-state-default:hover, .ui-datepicker-calendar .ui-state-default:active {
  background: #43c3ea;
  color: #fff;
  border-color: #43c3ea;
}
@media only screen and (max-width: 768px) {
  .main-slider .sub-title h3 {
    font-size: 20px;
  }
  .mbxs {
    display: none !important;
  }
  .sec-title h2 {
    font-size: 18px;
  }
  .blog-style1-area .sec-title h2 {
    font-size: 18px;
  }
  .partner-area .sec-title h2 {
    font-size: 18px;
  }
  .single-blog-style1 .text-holder .blog-title {
    font-size: 16px;
  }
  .single-blog-style1 .text-holder .meta-info {
    padding-bottom: 30px;
  }
  .single-blog-style1 .text-holder .blog-title {
    margin-bottom: 0px;
  }
  .footer-bottom .bottom-inner .copyright p {
    font-size: 14px;
  }
  .contact-info-style1-area {
    padding: 60px 0;
  }
  .working-process-area {
    padding: 60px 0;
  }
  .service-style2-area {
    padding: 60px 0;
  }
  .service-style1-area {
    padding: 60px 0;
  }
  .about-style1-area {
    padding: 60px 0;
  }
  .nav-outer.style1 .mobile-nav-toggler {
    padding: 15px 0;
  }
  .main-logo-box {
    width: 70px;
  }
  .partner-area {
    padding-bottom: 60px;
  }
}
.zhusr__filter-button {
  text-align: center;
  padding: 40px 0;
  border-bottom: 1px solid #ddd;
}
.zhusr__filter-button button {
  font-weight: 600;
  padding: 0 25px;
  line-height: 48px;
  color: #000;
  border: 1px solid #ddd;
  box-shadow: 0px 9px 18px rgba(24, 16, 16, 0.05);
  background: none;
  margin: 5px;
  transition: 0.4s;
}
.zhusr__filter-button button:hover {
  background: #2d8160;
  color: #fff;
  border-color: #006940;
}
.zhusr__filter-button .active {
  background: #2d8160;
  color: #fff;
  border-color: #006940;
}
.all__sidebar-item-tag ul {
  padding: 0;
  margin: 0;
}
.all__sidebar-item-tag ul li {
  display: inline-block;
  list-style: none;
}
.all__sidebar-item-tag ul li a {
  transition: 0.4s;
  border: 1px solid #ddd;
  margin: 1px 3px;
  padding: 5px 15px;
  display: inline-block;
  font-weight: 500;
  font-size: 16px;
  line-height: 2;
  border-radius: 4px;
  color: #000;
}
.all__sidebar-item-tag ul li a:hover {
  color: #fff;
  background: #2d8160;
  border-color: #006940;
}
.zhusr_list {
  margin: 30px 0;
  text-align: center;
  font-size: 0;
}
.zhusr_list a {
  display: inline-block;
  font-size: 14px;
  line-height: 35px;
  padding: 0 14px;
  margin: 5px;
  background-color: #f5f5f5;
  border-radius: 3px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.zhusr_list a:hover, .zhusr_list a.active {
  background-color: #dd0000;
  color: #fff;
}
.zhusr_list a {
  font-size: 14px;
  line-height: 40px;
  padding: 0 20px;
}
.zhusr_list_nav {
  text-align: center;
}
.zhusr_list_nav a {
  display: inline-block;
  margin-right: 5px;
  border: 1px #cccccc solid;
  background: #fff;
  text-decoration: none;
  color: #808080;
  font-size: 14px;
  line-height: 40px;
}
.zhusr_list_nav a:hover {
  color: #10853f;
  background: white;
  border: 1px #10853f solid;
}
.zhusr_list_nav a.page-num-current {
  border: none;
  background: #10853f;
  color: #fff;
}
.zhusr_none {
  width: 100%;
  overflow: hidden;
  text-align: center;
  font-weight: bold;
  color: #000;
}
.bottom-box h2 i {
  margin-right: 15px;
}
/*------------------------------------------------------
技术服务请联系
QQ：550988513
微信号：MubanBIZ
by mubanbiz.com
------------------------------------------------------*/
.about-style1-area {
  position: relative;
  display: block;
  padding: 100px 0;
  z-index: 9;
}
.about-style1-area.bg-white {
  background: #ffffff;
}
.about-style1-area .shape1 {
  position: absolute;
  top: -410px;
  right: -450px;
  background-color: rgb(235, 241, 237);
  width: 875px;
  height: 875px;
  border-radius: 50%;
  z-index: -1;
  -webkit-animation: animation1 5s ease-in infinite;
  animation: animation1 5s ease-in infinite;
}
.about-style1__image {
  position: relative;
  display: block;
  max-width: 500px;
  width: 100%;
}
.about-style1__image .text-outer {
  position: absolute;
  top: 10px;
  left: -105px;
  bottom: 0;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  color: rgba(var(--zhusr-base-rgb), .10);
  font-size: 100px;
  font-weight: 200;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  font-family: var(--zhusr-font);
  transform: rotate(0deg) translateX(0%);
  width: max-content;
}
.about-style1__image .border-top {
  position: absolute;
  top: 30px;
  left: 30px;
  right: 30px;
  height: 2px;
  background: #ffffff;
  z-index: 2;
}
.about-style1__image .border-left {
  position: absolute;
  top: 30px;
  left: 30px;
  bottom: 30px;
  width: 2px;
  background: #ffffff;
  z-index: 2;
}
.about-style1__image .border-bottom {
  position: absolute;
  left: 30px;
  bottom: 30px;
  right: 30px;
  height: 2px;
  background: #ffffff;
  z-index: 2;
}
.about-style1__image .border-right {
  position: absolute;
  top: 30px;
  right: 30px;
  bottom: 30px;
  width: 2px;
  background: #ffffff;
  z-index: 2;
}
.about-style1__image ul {
  position: relative;
  display: block;
  margin-left: -5px;
  margin-right: -5px;
}
.about-style1__image ul li {
  position: relative;
  display: block;
  float: left;
  padding: 0 5px;
}
.about-style1__image ul li .img-box {
  position: relative;
  display: block;
  overflow: hidden;
}
.about-style1__image ul li .img-box img {
  width: 100%;
}
.about-style1__image ul li .img-box::before {
  position: absolute;
  top: 0;
  left: -100%;
  display: block;
  content: '';
  width: 30%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, .7) 0%, rgba(255, 255, 255, .6) 100%);
  transform: skewX(5deg);
  z-index: 2;
}
.about-style1__image ul li:hover .img-box::before {
  -webkit-animation: shine 1.6s;
  animation: shine 1.6s;
}
.about-style1__content {
  position: relative;
  display: block;
  margin-left: -30px;
}
.about-style1__content .sec-title {
  padding-bottom: 25px;
}
.about-style1__content .inner-content {
  position: relative;
  display: block;
}
.about-style1__content .inner-content .text {
  position: relative;
  display: block;
  padding-bottom: 8px;
}
.about-style1__content .inner-content .text p {
  font-size: 18px;
  line-height: 34px;
  font-weight: 500;
  margin: 0;
}
.progress-levels {
  position: relative;
  display: block;
}
.progress-box {
  position: relative;
  display: block;
  margin-top: 28px;
}
.progress-box .inner {
  position: relative;
  display: block;
}
.progress-box .inner .top {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  align-items: center;
  padding-bottom: 11px;
}
.progress-box .inner .top .text {
  position: relative;
  color: var(--zhusr-black);
  font-size: 18px;
  line-height: 20px;
  font-weight: 700;
  text-transform: capitalize;
  font-family: var(--zhusr-font)
}
.progress-box .top .skill-percent {
  position: relative;
  display: block;
  line-height: 0;
}
.progress-box .top .count-text {
  position: relative;
  color: var(--zhusr-gray);
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  display: inline-block;
  float: none;
  font-family: var(--zhusr-font);
}
.progress-box .top .percent {
  position: relative;
  color: var(--zhusr-gray);
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  display: inline-block;
  float: none;
  margin-left: -2px;
}
.progress-box .bar {
  position: relative;
  display: block;
}
.progress-box .bar .bar-innner {
  position: relative;
  width: 100%;
  height: 8px;
  background-color: rgba(var(--zhusr-base-rgb), .10);
  border-radius: 10px;
}
.progress-box .bar .bar-fill {
  position: absolute;
  top: 0%;
  left: 0px;
  bottom: 0%;
  width: 0px;
  height: 8px;
  border-radius: 10px;
  transition: all 2000ms ease 300ms;
  background: var(--zhusr-primary);
}
.about-style1__bottom-content {
  position: relative;
  display: block;
  padding-top: 33px;
}
.about-style1__bottom-content .text-box {
  position: relative;
  display: block;
  margin-top: -7px;
}
.about-style1__bottom-content .text-box ul {
  position: relative;
  display: block;
  overflow: hidden;
}
.about-style1__bottom-content .text-box ul li {
  position: relative;
  display: block;
  padding-left: 30px;
  color: var(--zhusr-black);
  font-size: 16px;
  line-height: 30px;
  font-weight: 600;
}
.about-style1__bottom-content .text-box ul li + li {
  margin-top: 8px;
}
.about-style1__bottom-content .text-box ul li:before {
  position: absolute;
  content: "\e926";
  font-family: 'icomoon' !important;
  left: 1px;
  color: var(--zhusr-primary);
  font-size: 16px;
  font-weight: 400;
}
.video-gallery-style1 {
  position: relative;
  max-width: 220px;
  min-height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  float: right;
  width: 100%;
}
.video-gallery-style1__bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-attachment: scroll;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-color: var(--zhusr-black);
  background-blend-mode: multiply;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}
.video-gallery-style1:hover .video-gallery-style1__bg {
  opacity: 0.70;
}
.video-gallery-style1 .icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: var(--zhusr-base);
  border-radius: 50%;
  z-index: 2;
}
.video-gallery-style1 .icon:before {
  position: absolute;
  content: '';
  top: -5px;
  left: -5px;
  bottom: -5px;
  right: -5px;
  border: 1px solid rgba(255, 255, 255, 0.40);
  border-radius: 50%;
  z-index: -1;
}
.video-gallery-style1 .icon:before {
  -webkit-box-shadow: 0 0 0 0 rgba(0, 10, 20, .20);
  box-shadow: 0 0 0 0 rgba(0, 10, 20, .30);
  -webkit-animation: ripple 3s infinite;
  animation: ripple 3s infinite
}
.video-gallery-style1 .icon:after {
  position: absolute;
  content: '';
  top: 0px;
  left: 0px;
  bottom: 0px;
  right: 0px;
  border: 0px dashed rgba(255, 255, 255, 0.40);
  border-radius: 50%;
  z-index: -1;
  -webkit-box-shadow: 0 0 0 0 rgba(0, 10, 20, .70);
  box-shadow: 0 0 0 0 rgba(0, 10, 20, .70);
  -webkit-animation: ripple 6s infinite;
  animation: ripple 6s infinite
}
.video-gallery-style1 .icon .video-popup {
  position: relative;
  display: block;
  color: #ffffff;
  font-size: 15px;
  text-align: center;
}
.video-gallery-style1 .icon .video-popup span::before {
  position: relative;
  top: 2px;
  color: #ffffff;
}
/*** 
=============================================
    About Style2 Area Css   
=============================================
***/
.about-style2-area {
  position: relative;
  display: block;
  padding: 0px 0px 120px;
  z-index: 1;
}
.about-style2-area .container {
  position: relative;
}
.about-style2-area .container::before {
  position: absolute;
  top: 0px;
  left: 215px;
  bottom: -120px;
  right: -100000px;
  background: #ebf1ed;
  content: "";
  z-index: -1;
}
.about-style2__image {
  position: relative;
  display: block;
}
.about-style2__image::before {
  position: absolute;
  left: 160px;
  bottom: -120px;
  width: 10px;
  height: 90px;
  background: var(--zhusr-base);
  content: "";
}
.about-style2__image-inner {
  position: relative;
  display: block;
  overflow: hidden;
}
.about-style2__image-inner img {
  width: 100%;
  transition: all 500ms linear;
  transition-delay: 0.2s;
}
.about-style2__image:hover .about-style2__image-inner img {
  transform: scale(1.1) rotate(0deg);
  transition: all 500ms linear;
  transition-delay: 0.1s;
}
.about-style2__image-inner::before {
  position: absolute;
  top: 0;
  left: -100%;
  display: block;
  content: '';
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, .7) 0%, rgba(255, 255, 255, .3) 100%);
  transform: skewX(25deg);
  z-index: 2;
}
.about-style2__image:hover .about-style2__image-inner::before {
  -webkit-animation: shine 1.9s;
  animation: shine 1.9s;
}
.about-style2__content {
  position: relative;
  display: block;
  padding-left: 70px;
}
.about-style2__content .sec-title {
  padding-bottom: 24px;
}
.about-style2__content .inner-content {
  position: relative;
  display: block;
}
.about-style2__content .inner-content .text {
  position: relative;
  display: block;
}
.about-style2__content .inner-content .text p {
  color: var(--zhusr-base);
  font-size: 20px;
  line-height: 36px;
  font-weight: 600;
  margin: 0px;
}
.about-style2__content-list {
  position: relative;
  display: block;
  margin-top: 28px;
}
.about-style2__content-list ul {
  position: relative;
  display: block;
}
.about-style2__content-list ul li {
  position: relative;
  display: block;
  line-height: 36px;
}
.about-style2__content-list ul li p {
  font-size: 18px;
  margin: 0px;
}
.about-style2__content-list ul li p span {
  position: relative;
  display: inline-block;
  color: var(--zhusr-primary);
  font-size: 20px;
  line-height: 20px;
  top: 3px;
  padding-right: 6px;
}
.about-style2__content .author-box {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 50px;
  margin-left: 5px;
}
.about-style2__content .author-box .img-box {
  position: relative;
  display: block;
  width: 70px;
  height: 70px;
  border-radius: 50%;
}
.about-style2__content .author-box .img-box::before {
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border: 1px solid var(--zhusr-primary);
  border-radius: 50%;
  content: "";
}
.about-style2__content .author-box .img-box img {
  width: 100%;
  border-radius: 50%;
}
.about-style2__content .author-box .title {
  position: relative;
  display: block;
  padding-left: 30px;
}
.about-style2__content .author-box .title h2 {
  font-size: 24px;
  line-height: 26px;
  font-weight: 700;
}
.about-style2__content .author-box .title span {
  color: var(--zhusr-base);
  font-size: 20px;
  line-height: 26px;
  font-weight: 700;
}
/*** 
=============================================
    About Style2 Area Css   
=============================================
***/
.about-style3-area {
  position: relative;
  display: block;
  overflow: hidden;
  background: #ffffff;
  padding-top: 120px;
  padding-bottom: 5px;
  z-index: 10;
}
.about-style3-area .shape1 {
  position: absolute;
  top: -260px;
  right: -450px;
  background-color: rgb(235, 241, 237);
  width: 875px;
  height: 875px;
  border-radius: 50%;
  z-index: -1;
}
.about-style3__img-box {
  position: relative;
  display: block;
  max-width: 545px;
  width: 100%;
  padding-right: 30px;
}
.about-style3__img-box .inner {
  position: relative;
  display: block;
}
.about-style3__img-box .inner img {
  width: 100%;
}
.about-style3-experience {
  position: absolute;
  top: 60px;
  right: 0px;
  bottom: 60px;
  width: 70px;
  text-align: center;
  background-color: var(--zhusr-base);
}
.about-style3-experience p {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transform: rotate(90deg) translateX(0%);
  transform-origin: 0 0;
  width: max-content;
  margin: 90px 50px;
}
.about-style3-experience p span {
  color: var(--zhusr-primary);
}
.about-style3__content {
  position: relative;
  display: block;
  margin-left: -50px;
}
.about-style3__content .sec-title {
  padding-bottom: 34px;
}
.about-style3__content ul {
  position: relative;
  display: block;
  overflow: hidden;
}
.about-style3__content ul li {
  position: relative;
  display: block;
  float: left;
  width: 50%;
  float: left;
  border-right: 1px solid #cad7cf;
}
.about-style3__content ul li:last-child {
  border-right: none;
  padding-left: 50px;
}
.about-style3__content ul li span:before {
  position: relative;
  display: inline-block;
  left: 1px;
  color: var(--zhusr-primary);
  font-size: 20px;
  line-height: 20px;
}
.about-style3__content ul li h3 {
  color: var(--zhusr-base);
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
  margin: 5px 0 8px;
}
.about-style3__content ul li p {
  margin: 0;
}
.about-style3__content .text {
  position: relative;
  display: block;
  padding-top: 29px;
}
.about-style3__content .text p {
  margin: 0;
}
.about-style3__content .author-box {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 43px;
  margin-left: 5px;
}
.about-style3__content .author-box .img-box {
  position: relative;
  display: block;
  width: 70px;
  height: 70px;
  border-radius: 50%;
}
.about-style3__content .author-box .img-box::before {
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border: 1px solid var(--zhusr-primary);
  border-radius: 50%;
  content: "";
}
.about-style3__content .author-box .img-box img {
  width: 100%;
  border-radius: 50%;
}
.about-style3__content .author-box .title {
  position: relative;
  display: block;
  padding-left: 30px;
}
.about-style3__content .author-box .title h2 {
  font-size: 24px;
  line-height: 26px;
  font-weight: 700;
}
.about-style3__content .author-box .title span {
  color: var(--zhusr-base);
  font-size: 20px;
  line-height: 26px;
  font-weight: 700;
}
/*------------------------------------------------------
技术服务请联系
QQ：550988513
微信号：MubanBIZ
by mubanbiz.com
------------------------------------------------------*/
.main-slider {
  position: relative;
  display: block;
  z-index: 10;
}
.main-slider.style1 {
  position: relative;
  display: block;
  background-color: #ffffff;
  background-attachment: scroll;
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: cover;
}
.main-slider .slide {
  position: relative;
  display: block;
  overflow: hidden;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.main-slider .slide .image-layer {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 6000ms linear;
  -moz-transition: all 6000ms linear;
  -ms-transition: all 6000ms linear;
  -o-transition: all 6000ms linear;
  transition: all 6000ms linear;
  z-index: 1;
}
.main-slider .active .slide .image-layer {
  -webkit-transform: scale(1.15);
  -ms-transform: scale(1.15);
  transform: scale(1.15);
}
.main-slider .slide .image-layer:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--zhusr-black);
  opacity: 0.3;
  z-index: -1;
}
.main-slider .content {
  position: relative;
  z-index: 11;
}
.main-slider .auto-container {
  position: relative;
}
.main-slider .active .slide .image-layer {
  -webkit-transform: scale(1.5);
  -ms-transform: scale(1.5);
  transform: scale(1.5);
}
.main-slider .slide {
  position: relative;
  display: block;
  padding-top: 198px;
  padding-bottom: 265px;
}
.main-slider .content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
.main-slider .sub-title {
  position: relative;
  display: block;
  opacity: 0;
  -webkit-transform: perspective(400px) rotateY(0deg) translateY(-80px);
  -ms-transform: perspective(400px) rotateY(0deg) translateY(-80px);
  transform: perspective(400px) rotateY(0deg) translateY(-80px);
  -webkit-transform-origin: bottom;
  -ms-transform-origin: bottom;
  transform-origin: bottom;
  -webkit-transition: all 1500ms ease;
  -moz-transition: all 1500ms ease;
  -ms-transition: all 1500ms ease;
  -o-transition: all 1500ms ease;
  transition: all 1500ms ease;
  z-index: 10;
}
.main-slider .active .sub-title {
  opacity: 1;
  -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
  -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
  transform: perspective(400px) rotateY(0deg) translateY(0px);
  -webkit-transition-delay: 1500ms;
  -moz-transition-delay: 1500ms;
  -ms-transition-delay: 1500ms;
  -o-transition-delay: 1500ms;
  transition-delay: 1500ms;
}
.main-slider .sub-title h3 {
  color: var(--zhusr-primary);
  font-size: 26px;
  line-height: 34px;
  font-weight: 700;
  text-transform: none;
}
.main-slider .content .big-title {
  position: relative;
  display: block;
  margin-top: 22px;
  opacity: 0;
  -webkit-transform: perspective(400px) rotateY(20deg) translateY(80px);
  -ms-transform: perspective(400px) rotateY(20deg) translateY(80px);
  transform: perspective(400px) rotateY(20deg) translateY(80px);
  -webkit-transform-origin: bottom;
  -ms-transform-origin: bottom;
  transform-origin: bottom;
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 1000ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
  z-index: 10;
}
.main-slider .active .content .big-title {
  opacity: 1;
  -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
  -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
  transform: perspective(400px) rotateY(0deg) translateY(0px);
  -webkit-transition-delay: 1000ms;
  -moz-transition-delay: 1000ms;
  -ms-transition-delay: 1000ms;
  -o-transition-delay: 1000ms;
  transition-delay: 1000ms;
}
.main-slider .content .big-title h2 {
  color: #ffffff;
  font-size: 40px;
  line-height: 1.1em;
  font-weight: 800;
  text-transform: none;
}
.main-slider .content .big-title h1 {
  color: #ffffff;
  font-size: 30px;
  line-height: 1.1em;
  font-weight: 600;
  text-transform: none;
}
.main-slider .content .big-title h2 span {
  position: relative;
  display: inline-block;
  color: var(--zhusr-primary);
}
.main-slider .content .big-title h2 span:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 2px;
  background: var(--zhusr-primary);
}
.main-slider .content .btns-box {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
  line-height: 0;
  margin-top: 39px;
  opacity: 0;
  -webkit-transform: perspective(400px) rotateY(0deg) translateY(80px);
  -ms-transform: perspective(400px) rotateY(0deg) translateY(80px);
  transform: perspective(400px) rotateY(0deg) translateY(80px);
  -webkit-transform-origin: bottom;
  -ms-transform-origin: bottom;
  transform-origin: bottom;
  -webkit-transition: all 1500ms ease;
  -moz-transition: all 1500ms ease;
  -ms-transition: all 1500ms ease;
  -o-transition: all 1500ms ease;
  transition: all 1500ms ease;
  z-index: 10;
}
.main-slider .active .content .btns-box {
  opacity: 1;
  -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
  -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
  transform: perspective(400px) rotateY(0deg) translateY(0px);
  -webkit-transition-delay: 2500ms;
  -moz-transition-delay: 2500ms;
  -ms-transition-delay: 2500ms;
  -o-transition-delay: 2500ms;
  transition-delay: 2500ms;
}
.main-slider .content .btns-box a {
  padding-left: 50px;
  padding-right: 50px;
}
/*=== Main Slider Nav Style=========*/
.main-slider .owl-theme .owl-nav {
  position: absolute;
  top: 50%;
  left: 0px;
  right: 0px;
  line-height: 0;
  height: 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  opacity: 0;
  transform: scaleX(1.0) translateX(0px);
  max-width: 1250px;
  width: 100%;
  margin: 0 auto;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  height: 150px;
  transition: all 500ms ease;
}
.main-slider:hover .owl-theme .owl-nav {
  opacity: 1;
  transform: scaleX(1.0) translateY(-50%);
}
.main-slider .owl-theme .owl-nav .owl-prev, .main-slider .owl-theme .owl-nav .owl-next {
  position: relative;
  display: block;
  height: 70px;
  width: 70px;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, .20);
  border-radius: 50%;
  text-align: center;
  color: rgba(255, 255, 255, .20);
  font-size: 25px;
  line-height: 66px;
  font-weight: 100;
  opacity: 1;
  margin: 0;
  padding: 0;
  transform: translateY(0px);
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
.main-slider .owl-theme .owl-prev span, .main-slider .owl-theme .owl-next span {
  display: block;
}
.main-slider .owl-theme .owl-prev span:before {
  transition: all 100ms ease;
}
.main-slider .owl-theme .owl-nav .owl-prev {
  transform: rotate(180deg);
}
.main-slider .owl-theme .owl-nav .owl-next {
  transform: rotate(0deg);
}
.main-slider .owl-theme .owl-nav .owl-prev:hover, .main-slider .owl-theme .owl-nav .owl-next:hover {
  color: rgba(255, 255, 255, 1.0);
  border-color: rgba(255, 255, 255, 1.0);
}
.banner-carousel .owl-dots {
  display: block;
}
/*===== Main Slider Dot Style ====*/
.main-slider .banner-carousel.owl-carousel .owl-dots {
  position: absolute;
  top: 0;
  right: 70px;
  bottom: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  opacity: 0;
  transform: scaleX(1.0) translateX(0px);
  -webkit-transition: all 1500ms ease;
  -moz-transition: all 1500ms ease;
  -ms-transition: all 1500ms ease;
  -o-transition: all 1500ms ease;
  transition: all 1500ms ease;
  display: none;
}
.main-slider .banner-carousel.owl-carousel .owl-dots:before {
  content: "";
  position: absolute;
  top: auto;
  left: 6px;
  bottom: auto;
  width: 3px;
  height: 95px;
  background: #262626;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.main-slider:hover .banner-carousel.owl-carousel .owl-dots {
  opacity: 1;
  transform: scaleX(1.0) translateX(0px);
}
.main-slider .banner-carousel.owl-carousel button.owl-dot {
  position: relative;
  display: block;
  width: 15px;
  height: 15px;
  background: #262626;
  float: none;
  border-radius: 50%;
  margin: 20px 0px;
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
  z-index: 1;
}
.main-slider .banner-carousel.owl-carousel button.owl-dot.active:before {
  transform: scaleX(1.0);
}
.main-slider .banner-carousel.owl-carousel button.owl-dot.active {
  background-image: -moz-linear-gradient(0deg, rgb(128, 183, 87) 0%, rgb(147, 188, 48) 40%, rgb(165, 193, 9) 100%);
  background-image: -webkit-linear-gradient(0deg, rgb(128, 183, 87) 0%, rgb(147, 188, 48) 40%, rgb(165, 193, 9) 100%);
  background-image: -ms-linear-gradient(0deg, rgb(128, 183, 87) 0%, rgb(147, 188, 48) 40%, rgb(165, 193, 9) 100%);
}
/*** 
=====================================================
	Main Slider style2 Css
=====================================================
***/
.main-slider.style2 {
  position: relative;
  display: block;
  background-color: #ffffff;
  padding-left: 200px;
}
.main-slider.style2 .slide {
  position: relative;
  display: block;
  padding-top: 198px;
  padding-bottom: 205px;
}
.main-slider.style2 .slide:after {
  position: absolute;
  top: 0;
  left: 0px;
  bottom: 0;
  right: 0;
  content: "";
  background: rgb(30, 50, 38);
  background: linear-gradient(90deg, rgba(30, 50, 38, 1) 0%, rgba(30, 50, 38, 1) 0%, rgba(7, 62, 156, 0.011642156862745057) 44%, rgba(0, 212, 255, 0) 45%);
  z-index: 1;
}
/*------------------------------------------------------
技术服务请联系
QQ：550988513
微信号：MubanBIZ
by mubanbiz.com
------------------------------------------------------*/
.blog-style1-area {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 60px 0;
  z-index: 9;
}
.blog-style1-area.pdb80 {
  padding-bottom: 80px;
}
.blog-style1-area .gray-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: #ebf1ed;
  min-height: 545px;
  z-index: -1;
}
.single-blog-style1 {
  position: relative;
  display: block;
}
.zhusr-news-list {
  border-bottom: 1px solid #ddd;
  margin-bottom: 40px;
  padding-bottom: 15px;
  box-shadow: 0 0 8px rgba(0, 0, 0, .1);
  padding-top: 15px;
}
.zhusr-news-list:hover {
  box-shadow: 0 0 8px rgba(0, 0, 0, .5);
  -webkit-transition: all 0.5s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.single-blog-style1__inner {
  position: relative;
  display: block;
  padding-left: 300px;
}
.single-blog-style1 .img-holder {
  position: absolute;
  top: 0;
  left: 0;
  width: 300px;
}
.single-blog-style1 .img-holder .inner {
  position: relative;
  display: block;
  overflow: hidden;
  background-color: var(--zhusr-black);
}
.single-blog-style1:hover .img-holder .inner::before {
  -webkit-animation: circle .95s;
  animation: circle .95s;
  opacity: 1.0;
}
.single-blog-style1 .img-holder img {
  width: 100%;
  transform: scale(1.0);
  transition: all 0.3s ease-in-out 0.1s opacity .2s ease-in;
}
.single-blog-style1:hover .img-holder img {
  opacity: 0.70;
  transform: scale(1.1) rotate(1deg);
}
.single-blog-style1 .img-holder .date-box {
  position: absolute;
  bottom: 0px;
  right: 0px;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgb(253 196 0 / 60%);
  text-align: center;
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
  z-index: 5;
}
.single-blog-style1 .img-holder .date-box h6 {
  color: var(--zhusr-black);
  font-size: 20px;
  line-height: 20px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: var(--zhusr-font);
}
.single-blog-style1 .img-holder .date-box h6 span {
  font-size: 14px;
}
.single-blog-style1 .text-holder {
  position: relative;
  display: block;
  border-left: none;
  padding: 15px;
}
.single-blog-style1 .text-holder .meta-info {
  position: relative;
  display: flex;
  align-items: center;
  padding-bottom: 12px;
}
.single-blog-style1 .text-holder .meta-info li {
  position: relative;
  display: block;
  color: #737c76;
  font-size: 14px;
  line-height: 22px;
  font-weight: 600;
  margin-right: 15px
}
.single-blog-style1 .text-holder .meta-info li:last-child {
  margin-bottom: 0;
}
.single-blog-style1 .text-holder .meta-info li i {
  position: relative;
  display: inline-block;
  padding-right: 5px;
  color: var(--zhusr-base);
}
.single-blog-style1 .text-holder .meta-info li a {
  color: var(--zhusr-gray);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}
.single-blog-style1 .text-holder .meta-info li a:hover {
  color: var(--zhusr-primary);
}
.single-blog-style1 .text-holder .blog-title {
  font-size: 18px;
  line-height: 2;
  font-weight: 600;
}
.single-blog-style1 .text-holder .blog-title a {
  color: var(--zhusr-black);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}
.single-blog-style1:hover .text-holder .blog-title a {
  color: var(--zhusr-primary);
}
.single-blog-style1 .text-holder .text {
  position: relative;
  display: block;
}
.single-blog-style1 .text-holder .text p {
  margin: 0;
}
.single-blog-style1--instyle2 .single-blog-style1__inner {
  padding-left: 0px;
  min-height: auto;
}
.single-blog-style1--instyle2 .img-holder {
  position: relative;
  width: 100%;
}
.single-blog-style1--instyle2 .text-holder {
  border: 1px solid #cad7cf;
  border-left: 1px solid #cad7cf;
  padding: 15px;
}
.single-blog-style1--instyle2 .text-holder .text-inner {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
}
.single-blog-style1--instyle2 .text-holder .meta-info {
  display: flex;
  align-items: center;
}
.single-blog-style1--instyle2 .text-holder .meta-info li {
  margin-bottom: 0;
}
.single-blog-style1--instyle2 .text-holder .meta-info li + li {
  margin-left: 15px;
}
/*** 
=============================================
    Blog Page One Css
=============================================
***/
.blog-page-one {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 60px 0 60px;
  z-index: 10;
}
/*** 
=============================================
    Blog Page Two Css
=============================================
***/
.blog-page-two {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 100px 0;
  z-index: 10;
}
/*** 
=============================================
    Blog Page Three Css
=============================================
***/
.blog-page-three {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 100px 0;
  z-index: 10;
}
.blog-content-box {
  position: relative;
  display: block;
}
.single-blog-style1--instyle3 {
  margin-bottom: 50px;
}
.single-blog-style1--instyle3 .single-blog-style1__inner {
  padding-left: 0px;
  min-height: auto;
}
.single-blog-style1--instyle3 .img-holder {
  position: relative;
  width: 100%;
}
.single-blog-style1--instyle3 .text-holder {
  border: none;
  padding: 36px 0px 0px;
}
.single-blog-style1--instyle3 .text-holder .meta-info {
  display: flex;
  align-items: center;
}
.single-blog-style1--instyle3 .text-holder .meta-info li {
  margin-bottom: 0;
}
.single-blog-style1--instyle3 .text-holder .meta-info li + li {
  margin-left: 15px;
}
.single-blog-style1--instyle3 .text-holder .blog-title {
  font-size: 30px;
  line-height: 40px;
  font-weight: 700;
  margin: 0 0 19px;
}
.single-blog-style1--instyle3 .text-holder .btn-box {
  position: relative;
  display: block;
  line-height: 0;
  padding-top: 28px;
}
/*** 
=============================================
    Sidebar Css
=============================================
***/
.thm-sidebar-box {
  position: relative;
  display: block;
  max-width: 370px;
  width: 100%;
}
.single-sidebar-box {
  position: relative;
  display: block;
  padding: 50px 50px 50px;
  background-color: rgba(var(--zhusr-base-rgb), .10);
  margin-top: 30px;
}
.sidebar-search-box {
  position: relative;
  display: block;
  background: var(--zhusr-primary);
  padding: 20px 30px;
}
.sidebar-search-box form.search-form {
  position: relative;
  display: block;
  width: 100%;
}
.sidebar-search-box .search-form input[type="text"] {
  position: relative;
  display: block;
  width: 100%;
  height: 50px;
  background-color: transparent;
  border: 1px solid transparent;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  padding-left: 20px;
  padding-right: 60px;
  border-radius: 0px;
  font-family: var(--zhusr-font);
  transition: all 500ms ease 0s;
}
.sidebar-search-box .search-form button {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  width: 55px;
  height: 50px;
  color: var(--zhusr-black);
  font-size: 16px;
  line-height: 50px;
  background: rgba(var(--zhusr-black-rgb), 0.05);
  text-align: center;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
  border: 0px solid #e7e7e8;
  transition: all 500ms ease 0s;
}
.sidebar-search-box .search-form button i {
  position: relative;
  top: 0px;
}
.sidebar-search-box .search-form input[type="text"]:focus {
  color: var(--zhusr-black);
  background-color: rgba(255, 255, 255, 0.20);
}
.sidebar-search-box .search-form input[type="text"]:focus + button, .sidebar-search-box .search-form button:hover {
  color: #fff;
  background-color: var(--zhusr-black);
}
.sidebar-search-box .search-form input::-webkit-input-placeholder {
  color: var(--zhusr-black);
}
.sidebar-search-box .search-form input:-moz-placeholder {
  color: var(--zhusr-black);
}
.sidebar-search-box .search-form input::-moz-placeholder {
  color: var(--zhusr-black);
}
.sidebar-search-box .search-form input:-ms-input-placeholder {
  color: var(--zhusr-black);
}
.sidebar-title {
  position: relative;
  display: block;
  top: -2px;
  padding-bottom: 22px;
}
.sidebar-title h3 {
  position: relative;
  color: var(--zhusr-black);
  font-size: 20px;
  line-height: 22px;
  font-weight: 700;
  text-align: center;
}
.sidebar-blog-post {
  position: relative;
  display: block;
}
.sidebar-blog-post ul {
  position: relative;
  display: block;
}
.sidebar-blog-post ul li {
  position: relative;
  display: block;
  margin-bottom: 35px;
}
.sidebar-blog-post ul li:last-child {
  margin-bottom: 0;
}
.sidebar-blog-post ul li .inner {
  position: relative;
  display: block;
  padding-left: 70px;
}
.sidebar-blog-post ul li .img-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 70px;
  height: 70px;
  overflow: hidden;
}
.sidebar-blog-post ul li .img-box img {
  width: 100%;
}
.sidebar-blog-post ul li .img-box .overlay-content {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: rgba(var(--zhusr-base-rgb), .80);
  border-radius: 0%;
  opacity: 0;
  transform: perspective(0px) scale(0);
  transform-origin: center;
  transition: all 0.5s ease-in-out 0s;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  z-index: 2;
}
.sidebar-blog-post ul li:hover .img-box .overlay-content {
  opacity: 1;
  transform: perspective(400px) scale(1.0);
  transition: all 0.3s ease-in-out 0.3s;
}
.sidebar-blog-post ul li .img-box .overlay-content a {
  color: #ffffff;
  font-size: 14px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}
.sidebar-blog-post ul li .title-box {
  position: relative;
  display: block;
  padding-left: 20px;
  min-height: 70px;
}
.sidebar-blog-post ul li .title-box .admin {
  position: relative;
  top: -2px;
  color: var(--zhusr-gray);
  font-size: 14px;
  line-height: 14px;
  font-weight: 600;
}
.sidebar-blog-post ul li .title-box .admin span:before {
  position: relative;
  display: inline-block;
  color: var(--zhusr-base);
  padding-right: 3px;
  font-weight: 700;
  top: 2px;
}
.sidebar-blog-post ul li .title-box h4 {
  font-size: 16px;
  line-height: 22px;
  font-weight: 600;
  margin: 9px 0 0;
}
.sidebar-blog-post ul li .title-box h4 a {
  color: var(--zhusr-black);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}
.sidebar-blog-post ul li .title-box h4 a:hover {
  color: var(--zhusr-primary);
}
.sidebar-categories-box {
  position: relative;
  display: block;
  overflow: hidden;
}
.sidebar-categories-box li {
  position: relative;
  display: block;
  margin-bottom: 10px;
}
.sidebar-categories-box li:last-child {
  margin-bottom: 0;
}
.sidebar-categories-box li a {
  position: relative;
  display: block;
  overflow: hidden;
  color: var(--zhusr-gray);
  font-size: 16px;
  font-weight: 700;
  line-height: 40px;
  text-transform: capitalize;
  font-family: var(--zhusr-font);
  letter-spacing: 0.0em;
  transition: all 500ms linear;
  transition-delay: 0.1s;
  z-index: 1;
}
.sidebar-categories-box li a:hover {
  padding-left: 20px;
}
.sidebar-categories-box li a:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0px;
  background: #ffffff;
  transform: perspective(400px) scaleX(0);
  transform-origin: center;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  z-index: -1;
}
.sidebar-categories-box li a:hover:after {
  transform: perspective(400px) scaleX(1.0);
}
.sidebar-categories-box li:hover a {
  color: var(--zhusr-black);
}
.sidebar-categories-box li a:before {
  font-family: 'icomoon' !important;
  content: "\e92d";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  font-size: 14px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}
.sidebar-categories-box li:hover a:before {
  right: 10px;
}
.popular-tag-box {
  position: relative;
  display: block;
}
.single-sidebar-box .popular-tag {
  position: relative;
  display: block;
  overflow: hidden;
  margin-left: -5px;
  margin-right: -5px;
}
.single-sidebar-box .popular-tag li {
  position: relative;
  display: block;
  float: left;
  margin: 0 5px 10px;
}
.single-sidebar-box .popular-tag li a {
  position: relative;
  display: block;
  padding: 10px 21px 8px;
  background: #ffffff;
  color: var(--zhusr-black);
  font-size: 12px;
  line-height: 22px;
  font-weight: 800;
  text-transform: uppercase;
  transition: all 500ms ease;
  font-family: var(--zhusr-font);
}
.single-sidebar-box .popular-tag li:hover a {
  color: #ffffff;
  border-color: var(--zhusr-primary);
  background-color: var(--zhusr-primary);
}
/*** 
=============================================
    Blog Details Css
=============================================
***/
.blog-details-page {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 100px 0;
  z-index: 10;
}
.blog-details-content {
  position: relative;
  display: block;
}
.blog-details-content .single-blog-style1 {
  margin: 0;
}
.blog-details-content .single-blog-style1 .text-holder .text p + P {
  margin-top: 29px;
}
.tag-social-share-box {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
  padding-top: 40px;
  margin-bottom: 30px;
  border-top: 1px solid #d4dcdb;
}
.tag-box {
  position: relative;
  display: block;
}
.tag-box .title {
  width: 65px;
}
.tag-box .title, .tag-box .tag-list {
  display: table-cell;
  vertical-align: middle;
}
.tag-box .title h3 {
  color: var(--zhusr-black);
  font-size: 20px;
  line-height: 24px;
  font-weight: 700;
}
.tag-box .tag-list li {
  position: relative;
  display: inline-block;
  float: left;
  margin-right: 10px;
}
.tag-box .tag-list li:last-child {
  margin-right: 0;
}
.tag-box .tag-list li a {
  position: relative;
  display: block;
  padding: 6px 20px 4px;
  background: var(--zhusr-primary);
  color: var(--zhusr-black);
  font-size: 12px;
  line-height: 30px;
  font-weight: 800;
  text-transform: uppercase;
  font-family: var(--zhusr-font);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}
.tag-social-share-box .post-social-share {
  position: relative;
  display: block;
}
.post-social-share-links {
  position: relative;
  display: block;
}
.post-social-share-links ul {
  position: relative;
  display: block;
}
.post-social-share-links ul li {
  position: relative;
  display: inline-block;
  float: left;
  margin-right: 10px;
}
.post-social-share-links ul li:last-child {
  margin-right: 0;
}
.post-social-share-links ul li a {
  position: relative;
  display: block;
  width: 45px;
  height: 45px;
  background: var(--zhusr-base);
  border-radius: 50%;
  color: #ffffff;
  font-size: 14px;
  line-height: 45px;
  text-align: center;
  transition: all 500ms ease;
  z-index: 1;
}
.post-social-share-links ul li a:before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: var(--zhusr-primary);
  content: "";
  border-radius: 50%;
  z-index: -1;
  transform: scale(0.0);
  transform-origin: center;
  transform-style: preserve-3d;
  transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
}
.post-social-share-links ul li a:hover:before {
  transform: scaleX(1.0);
}
.post-social-share-links ul li a:hover {
  color: #ffffff;
}
.blog-details-author {
  position: relative;
  display: block;
  background-color: rgba(var(--zhusr-base-rgb), .10);
  padding: 60px 60px 60px;
}
.blog-details-author .inner-box {
  position: relative;
  display: block;
}
.blog-details-author .inner-box .img-box {
  width: 170px;
}
.blog-details-author .inner-box .img-box img {
  width: 100%;
}
.blog-details-author .inner-box .img-box, .blog-details-author .inner-box .text {
  display: table-cell;
  vertical-align: middle;
}
.blog-details-author .inner-box .text {
  position: relative;
  padding-left: 40px;
}
.blog-details-author .inner-box .text h3 {
  color: var(--zhusr-black);
  font-size: 24px;
  line-height: 30px;
  font-weight: 800;
  margin-bottom: 24px;
}
.blog-details-author .inner-box .text p {
  margin: 0;
}
/*** ===== comments Box Css ====***/
.comment-box {
  position: relative;
  display: block;
  overflow: hidden;
  padding-top: 78px;
}
.comment-box .inner-title {
  position: relative;
  display: block;
  padding-bottom: 32px;
}
.comment-box .inner-title h2 {
  font-size: 30px;
  line-height: 30px;
  font-weight: 800;
}
.comment-box .outer-box {
  position: relative;
  display: block;
}
.comment-box .single-comment {
  position: relative;
  display: block;
  border-bottom: 1px solid rgba(var(--zhusr-base-rgb), .10);
  padding-bottom: 50px;
  margin-bottom: 40px;
}
.comment-box .single-comment-box {
  position: relative;
  display: block;
  padding-left: 140px;
  min-height: 140px;
}
.comment-box .single-comment-box .img-holder {
  position: absolute;
  left: 0;
  top: 11px;
  width: 140px;
  height: 140px;
  overflow: hidden;
}
.comment-box .single-comment-box .img-holder img {
  width: 100%;
}
.comment-box .single-comment-box .text-holder {
  position: relative;
  display: block;
  padding-left: 40px;
  min-height: 140px;
}
.comment-box .single-comment-box .text-holder .top {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.comment-box .single-comment-box .text-holder .top .name {
  position: relative;
  display: block;
}
.comment-box .single-comment-box .text-holder .top .name h3 {
  color: var(--zhusr-black);
  font-size: 20px;
  line-height: 24px;
  font-weight: 700;
}
.comment-box .single-comment-box .text-holder .top .reply {
  position: relative;
  display: block;
  top: 11px;
}
.comment-box .single-comment-box .text-holder .top .reply a {
  position: relative;
  display: inline-block;
  background: var(--zhusr-base);
  padding: 12px 20px 8px;
  color: #ffffff;
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: var(--zhusr-font);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}
.comment-box .single-comment-box .text-holder .top .reply a:hover {
  color: #ffffff;
  background-color: var(--zhusr-black);
}
.comment-box .single-comment-box .text-holder .text {
  position: relative;
  display: block;
  padding-top: 15px;
}
.comment-box .single-comment-box .text-holder .text p {
  margin: 0;
}
.add-comment-box {
  position: relative;
  display: block;
  margin-top: 38px;
}
.add-comment-box .inner-title {
  position: relative;
  display: block;
  padding-bottom: 43px;
}
.add-comment-box .inner-title h2 {
  font-size: 30px;
  line-height: 30px;
  font-weight: 800;
}
.add-comment-box #add-comment-form {
  position: relative;
  display: block;
}
.add-comment-box #add-comment-form .input-box {
  position: relative;
  display: block;
  margin-bottom: 20px;
}
.add-comment-box #add-comment-form input[type="text"], .add-comment-box #add-comment-form input[type="email"], .add-comment-box #add-comment-form textarea {
  position: relative;
  display: block;
  background-color: rgba(var(--zhusr-base-rgb), .10);
  border: 0px solid #edf3f2;
  width: 100%;
  height: 70px;
  color: var(--zhusr-gray);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  text-transform: none;
  padding: 0 30px;
  transition: all 500ms ease;
  font-family: var(--zhusr-font);
}
.add-comment-box #add-comment-form textarea {
  height: 170px;
  padding: 15px 30px;
}
.add-comment-box #add-comment-form input[type="text"]:focus {
  border-color: var(--zhusr-base);
}
.add-comment-box #add-comment-form input[type="email"]:focus {
  border-color: var(--zhusr-base);
}
.add-comment-box #add-comment-form textarea:focus {
  border-color: var(--zhusr-base);
}
.add-comment-box #add-comment-form .button-box {
  position: relative;
  display: block;
  padding-top: 0px;
  line-height: 0;
}
.add-comment-box #add-comment-form .button-box button {
  padding-left: 50px;
  padding-right: 50px;
}
.zhusr-news-list .single-blog-style1 .text a {
  color: #7c7c7c;
}
.order-box-2 {
  border: 1px solid #ddd;
  padding: 30px 0 0px;
}
/*------------------------------------------------------
技术服务请联系
QQ：550988513
微信号：MubanBIZ
by mubanbiz.com
------------------------------------------------------*/
.breadcrumb-area {
  position: relative;
  display: block;
  overflow: hidden;
  z-index: 10;
}
.breadcrumb-area-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-attachment: scroll;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
}
.breadcrumb-area-bg:before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: var(--zhusr-black);
  opacity: 0.50;
  content: "";
  z-index: -1;
}
.breadcrumb-area .inner-content {
  position: relative;
  display: block;
  padding: 120px 0;
  text-align: center;
  z-index: 10;
}
.breadcrumb-menu {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.breadcrumb-menu ul {
  position: relative;
  display: flex;
  align-items: center;
}
.breadcrumb-menu ul li {
  position: relative;
  float: none;
  color: var(--zhusr-primary);
  font-size: 20px;
  line-height: 26px;
  font-weight: 700;
  text-transform: capitalize;
  padding-right: 18px;
  margin-right: 13px;
}
.breadcrumb-menu ul li:last-child {
  padding-right: 0;
  margin-right: 0;
}
.breadcrumb-menu ul li:before {
  content: "";
  position: absolute;
  top: 2px;
  right: 0;
  bottom: 2px;
  width: 1px;
  background: var(--zhusr-primary);
  transform: rotate(25deg);
}
.breadcrumb-menu ul li:last-child:before {
  display: none;
}
.breadcrumb-menu ul li a {
  color: var(--zhusr-primary);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}
.breadcrumb-menu ul li:hover a, .breadcrumb-menu ul li.active {
  color: var(--zhusr-base);
}
.breadcrumb-area .title {
  position: relative;
  display: block;
  overflow: hidden;
}
.breadcrumb-area .title h2 {
  color: #ffffff;
  font-size: 50px;
  line-height: 1.05em;
  font-weight: 800;
  text-transform: capitalize;
}
/*------------------------------------------------------
技术服务请联系
QQ：550988513
微信号：MubanBIZ
by mubanbiz.com
------------------------------------------------------*/
.location-info-area {
  position: relative;
  display: block;
  background: #f5f5f5;
  padding: 100px 0;
  z-index: 10;
}
.single-location-info-box {
  position: relative;
  display: block;
  margin-bottom: 40px;
}
.single-location-info-box .img-holder {
  position: relative;
  display: block;
}
.single-location-info-box .img-holder .inner {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 10px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  z-index: 1;
}
.single-location-info-box .img-holder .inner:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  background: var(--zhusr-black);
  transform: scale(1.0);
  transform-origin: bottom;
  transform-style: preserve-3d;
  transition: all 500ms ease 100ms;
  z-index: 2;
}
.single-location-info-box .img-holder .inner img {
  width: 100%;
  transform: scale(1.0);
  transition: all 700ms ease;
}
.single-location-info-box:hover .img-holder .inner:before {
  opacity: 0.80;
  transform: scale(1.0);
}
.single-location-info-box .img-holder .flag {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 70px;
  height: 40px;
  overflow: hidden;
  border-radius: 7px;
  z-index: 2;
}
.single-location-info-box .img-holder .flag img {
  width: 100%;
}
.single-location-info-box .title-holder {
  position: relative;
  display: block;
  background: #ffffff;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.06);
  padding: 25px 30px 39px;
  z-index: 1;
}
.single-location-info-box .title-holder h3 {
  font-size: 24px;
  line-height: 30px;
  font-weight: 500;
  margin: 0 0 13px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}
.single-location-info-box .title-holder ul {
  position: relative;
  display: block;
}
.single-location-info-box .title-holder ul li {
  position: relative;
  display: block;
  padding-left: 100px;
  margin-bottom: 14px;
}
.single-location-info-box .title-holder ul li:last-child {
  margin-bottom: 0;
}
.single-location-info-box .title-holder ul li .inner-title {
  position: absolute;
  top: 4px;
  left: 0;
}
.single-location-info-box .title-holder ul li .inner-title h5 {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
}
.single-location-info-box .title-holder ul li .inner-text {
  position: relative;
  display: block;
}
.single-location-info-box .title-holder ul li .inner-text p {
  margin: 0;
}
.single-location-info-box .title-holder ul li .inner-text p a {
  color: var(--zhusr-gray);
  transition: all 500ms ease;
}
.single-location-info-box .title-holder ul li .inner-text p a:hover {
  color: var(--zhusr-base);
}
.single-location-info-box .title-holder ul li .inner-text .social-links {
  position: relative;
  display: block;
}
.single-location-info-box .title-holder ul li .inner-text .social-links a {
  position: relative;
  display: inline-block;
  color: var(--zhusr-gray);
  font-size: 18px;
  transition: all 500ms ease;
}
.single-location-info-box .title-holder ul li .inner-text .social-links a + a {
  margin-left: 15px;
}
.single-location-info-box .title-holder ul li .inner-text .social-links a:hover {
  color: var(--zhusr-base);
}
/*------------------------------------------------------
技术服务请联系
QQ：550988513
微信号：MubanBIZ
by mubanbiz.com
------------------------------------------------------*/
.fact-counter-area {
  position: relative;
  display: block;
  background: #f5f6f7;
  padding: 100px 0;
  z-index: 2;
}
.fact-counter-area-bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-attachment: scroll;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  background-color: var(--zhusr-black);
  background-blend-mode: luminosity;
  z-index: -1;
}
.fact-counter-area-bg:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: var(--zhusr-black);
  opacity: 0.95;
}
.fact-counter-box {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.single-fact-counter {
  position: relative;
  display: block;
  max-width: 25%;
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
}
.single-fact-counter:before {
  content: "";
  position: absolute;
  top: 10px;
  right: 0;
  bottom: 8px;
  width: 1px;
  background: #ffffff;
  opacity: 0.10;
}
.single-fact-counter:last-child:before {
  display: none;
}
.single-fact-counter .inner {
  position: relative;
  display: block;
}
.single-fact-counter .count-box {
  position: relative;
  color: #ffffff;
  font-size: 70px;
  line-height: 60px;
  font-weight: 800;
  font-family: var(--zhusr-font);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}
.single-fact-counter .count-box span {
  position: relative;
  display: inline-block;
}
.single-fact-counter .count-box .plus {
  position: relative;
  top: -3px;
  display: inline-block;
  font-size: 40px;
  font-weight: 700;
  line-height: 40px;
  margin-left: -11px;
  color: #fdc400;
}
.single-fact-counter .count-box .k {
  position: relative;
  display: inline-block;
  margin-left: -12px;
  font-weight: 700;
}
.single-fact-counter .title {
  position: relative;
  display: block;
  padding-top: 11px;
}
.single-fact-counter .title h3 {
  color: var(--zhusr-primary);
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
  text-transform: capitalize;
  font-family: var(--zhusr-font);
  margin: 0 0 24px;
}
.single-fact-counter .title p {
  color: #a5b9ad;
  margin: 0;
}
/*------------------------------------------------------
技术服务请联系
QQ：550988513
微信号：MubanBIZ
by mubanbiz.com
------------------------------------------------------*/
.faq-page-one {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 100px 0;
  z-index: 10;
}
.faq-style1__content {
  position: relative;
  display: block;
  padding-top: 60px;
}
.accordion-box {
  position: relative;
  display: block;
}
.accordion-box .block {
  position: relative;
  display: block;
  margin-bottom: 20px;
  transition: all 500ms ease;
}
.accordion-box .block:last-child {
  margin-bottom: 0px;
}
.accordion-box .block .acc-content.current {
  display: block;
}
.accordion-box .block .acc-btn {
  position: relative;
  display: block;
  cursor: pointer;
  transition: all 500ms ease;
  background: #ebf1ed;
  padding-top: 19px;
  padding-left: 40px;
  padding-bottom: 19px;
  padding-right: 40px;
  border: 1px solid #ebf1ed;
}
.accordion-box .block .acc-btn.active {
  background: #ffffff;
}
.accordion-box .block .acc-btn h3 {
  color: var(--zhusr-black);
  font-size: 18px;
  line-height: 30px;
  font-weight: 700;
  transition: all 500ms ease;
}
.accordion-box .block .acc-btn.active h3 {
  color: var(--zhusr-base);
}
.accordion-box .block .acc-btn .icon-outer {
  position: absolute;
  top: 50%;
  right: 40px;
  width: 15px;
  height: 15px;
  color: var(--zhusr-base);
  font-size: 12px;
  text-align: right;
  line-height: 15px;
  font-weight: 700;
  cursor: pointer;
  transform: translateY(-50%) rotate(0deg);
  transition: all 500ms ease;
  z-index: 1;
}
.accordion-box .block .acc-btn.active .icon-outer {
  color: var(--zhusr-primary);
  transform: translateY(-50%) rotate(360deg);
}
.accordion-box .block .acc-btn .icon-outer i:before {
  font-weight: 700;
}
.accordion-box .block .acc-btn.active .icon-outer i:before {
  position: relative;
  font-size: 12px;
  font-family: 'icomoon' !important;
  font-weight: 700;
  margin: 0px;
  content: "\e928";
}
.accordion-box .block .acc-content {
  position: relative;
  display: none;
  padding-top: 31px;
  padding-left: 40px;
  padding-bottom: 28px;
  padding-right: 30px;
  border: 1px solid #ebf1ed;
  border-top: none;
}
.accordion-box .block .acc-content p {
  margin: 0;
}
.faq-style1-content {
  position: relative;
  display: block;
}
.faq-form-box {
  position: relative;
  display: block;
  width: 100%;
  box-shadow: 0px 0px 40px 0px rgb(0 0 0 / 10%);
  padding: 56px 40px 58px;
  z-index: 1;
}
.faq-form-box .top-title {
  position: relative;
  display: block;
  padding-bottom: 28px;
}
.faq-form-box .top-title h3 {
  font-size: 24px;
  line-height: 30px;
  font-weight: 700;
  margin: 0 0 12px;
}
.faq-form-box .top-title p {
  margin: 0;
}
.faq-form-box form {
  position: relative;
  display: block;
}
.faq-form-box form .input-box {
  position: relative;
  display: block;
  margin-bottom: 20px;
}
.faq-form-box form input[type="text"], .faq-form-box form input[type="email"], .faq-form-box form textarea {
  position: relative;
  display: block;
  background: #ebf1ed;
  width: 100%;
  height: 60px;
  border: 1px solid #ebf1ed;
  color: #737c76;
  font-size: 14px;
  font-weight: 500;
  font-style: normal;
  padding-left: 30px;
  padding-right: 30px;
  border-radius: 0px;
  transition: all 500ms ease;
  font-family: var(--zhusr-font);
}
.faq-form-box form textarea {
  height: 102px;
  padding-top: 15px;
  padding-left: 30px;
  padding-right: 30px;
}
.faq-form-box form input[type="text"]:focus {
  color: #737c76;
  border-color: var(--zhusr-primary);
}
.faq-form-box form input[type="email"]:focus {
  color: #737c76;
  border-color: var(--zhusr-primary);
}
.faq-form-box form textarea:focus {
  color: #737c76;
  border-color: var(--zhusr-primary);
}
.faq-form-box form input[type="text"]::-webkit-input-placeholder {
  color: #737c76;
}
.faq-form-box form input[type="text"]:-moz-placeholder {
  color: #737c76;
}
.faq-form-box form input[type="text"]::-moz-placeholder {
  color: #737c76;
}
.faq-form-box form input[type="text"]:-ms-input-placeholder {
  color: #737c76;
}
.faq-form-box form input[type="email"]::-webkit-input-placeholder {
  color: #737c76;
}
.faq-form-box form input[type="email"]:-moz-placeholder {
  color: #737c76;
}
.faq-form-box form input[type="email"]::-moz-placeholder {
  color: #737c76;
}
.faq-form-box form input[type="email"]:-ms-input-placeholder {
  color: #737c76;
}
.faq-form-box form textarea::-webkit-input-placeholder {
  color: #737c76;
}
.faq-form-box form textarea:-moz-placeholder {
  color: #737c76;
}
.faq-form-box form textarea::-moz-placeholder {
  color: #737c76;
}
.faq-form-box form textarea:-ms-input-placeholder {
  color: #737c76;
}
.faq-form-box form .button-box {
  position: relative;
  display: block;
}
.faq-form-box form .button-box button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.faq-form-box .bottom-box {
  position: relative;
  display: block;
  padding-top: 22px;
  text-align: center;
}
.faq-form-box .bottom-box p {
  margin: 0;
}
.faq-form-box .bottom-box p span {
  color: var(--zhusr-base);
}
/*------------------------------------------------------
技术服务请联系
QQ：550988513
微信号：MubanBIZ
by mubanbiz.com
------------------------------------------------------*/
.bottom-parallax {
  position: relative;
  z-index: 999;
}
.bottom-parallax .footer-area {
  left: 0px;
  bottom: 0px;
  right: 0px;
}
.parallax-visible .bottom-parallax {
  opacity: 1;
  z-index: 1;
}
.footer-area {
  position: relative;
  display: block;
  background: var(--zhusr-black);
  z-index: 10;
}
.footer-area-bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  max-width: 755px;
  width: 100%;
  background-attachment: scroll;
  background-repeat: no-repeat;
  background-position: top right;
  background-size: cover;
  background-color: var(--zhusr-black);
  background-blend-mode: luminosity;
}
.footer-area-bg:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 0.95;
  background-color: var(--zhusr-black);
  transform: scale(1.0);
  transform-origin: bottom;
  transform-style: preserve-3d;
  transition: all 500ms ease 100ms;
}
.footer-top {
  position: relative;
  display: block;
  padding-top: 60px;
}
.subscribe-content-box {
  position: relative;
  display: block;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.2);
  padding: 31px 60px 31px;
}
.subscribe-title {
  position: relative;
  display: flex;
  align-items: center;
}
.subscribe-title .icon {
  position: relative;
  display: block;
  width: 80px;
}
.subscribe-title .icon span:before {
  position: relative;
  display: inline-block;
  color: var(--zhusr-primary);
  font-size: 60px;
  line-height: 60px;
}
.subscribe-title .inner-title {
  position: relative;
  display: block;
}
.subscribe-title .inner-title h3 {
  color: #ffffff;
  font-size: 20px;
  line-height: 30px;
  font-weight: 800;
}
.subscribe-box {
  position: relative;
  display: block;
  width: 100%;
}
.subscribe-form {
  position: relative;
  display: block;
  width: 100%;
}
.subscribe-form input[type="email"] {
  position: relative;
  display: block;
  padding-left: 0px;
  padding-right: 70px;
  width: 100%;
  height: 50px;
  background: transparent;
  border: none;
  border-bottom: 2px solid rgba(255, 255, 255, 0.10);
  color: #a5b9ad;
  font-size: 16px;
  font-weight: 500;
  font-style: normal;
  transition: all 500ms ease;
  font-family: var(--zhusr-font);
}
.subscribe-form input::-webkit-input-placeholder {
  color: #a5b9ad;
}
.subscribe-form input:-moz-placeholder {
  color: #a5b9ad;
}
.subscribe-form input::-moz-placeholder {
  color: #a5b9ad;
}
.subscribe-form input:-ms-input-placeholder {
  color: #a5b9ad;
}
.subscribe-form button {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  width: 50px;
  line-height: 50px;
  text-align: center;
  color: var(--zhusr-base);
  background: transparent;
  padding: 0;
  font-size: 25px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer {
  position: relative;
  display: block;
  overflow: hidden;
  padding-top: 100px;
  padding-bottom: 60px;
  z-index: 9;
}
.single-footer-widget {
  position: relative;
  display: block;
}
.single-footer-widget.margin-left40 {
  margin-left: 40px;
}
.single-footer-widget .title {
  position: relative;
  display: block;
  margin-top: -3px;
}
.single-footer-widget .title h3 {
  color: #ffffff;
  font-size: 20px;
  line-height: 24px;
  font-weight: 800;
  text-transform: capitalize;
}
.single-footer-widget .our-company-info {
  position: relative;
  display: block;
  max-width: 300px;
  width: 100%;
  padding-top: 22px;
}
.single-footer-widget .our-company-info .text-box {
  position: relative;
  display: block;
  padding-bottom: 26px;
}
.single-footer-widget .our-company-info .text-box p {
  color: #a5b9ad;
  font-size: 16px;
  line-height: 36px;
  font-weight: 500;
  margin: 0;
}
.footer-social-link {
  position: relative;
  display: block;
}
.footer-social-link ul {
  position: relative;
  display: block;
}
.footer-social-link ul li {
  position: relative;
  float: left;
  margin-right: 10px;
}
.footer-social-link ul li:last-child {
  margin-right: 0;
}
.footer-social-link ul li a {
  position: relative;
  display: block;
  height: 50px;
  width: 50px;
  background: var(--zhusr-base);
  border-radius: 50%;
  color: #ffffff;
  font-size: 15px;
  text-align: center;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  z-index: 1;
}
.footer-social-link ul li a i::before {
  position: relative;
  display: inline-block;
  line-height: 50px;
}
.footer-social-link ul li a:before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: var(--zhusr-primary);
  content: "";
  border-radius: 50%;
  z-index: -1;
  transform: scale(0.0);
  transform-origin: center;
  transform-style: preserve-3d;
  transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
}
.footer-social-link ul li:hover a:before {
  transform: scaleX(1.0);
}
.footer-social-link ul li:hover a {
  color: #ffffff;
}
.footer-widget-links {
  position: relative;
  display: block;
  overflow: hidden;
  padding-top: 27px;
}
.footer-widget-links ul {
  position: relative;
  display: block;
  overflow: hidden;
}
.footer-widget-links ul li {
  position: relative;
  display: block;
  line-height: 26px;
  margin-bottom: 15px;
}
.footer-widget-links ul li:last-child {
  margin-bottom: 0;
}
.footer-widget-links ul li a {
  position: relative;
  display: inline-block;
  color: #a5b9ad;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--zhusr-font);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}
.footer-widget-links ul li a:hover {
  color: #ffffff;
}
.footer-widget-links ul li a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 1px;
  transform: perspective(400px) scaleX(0);
  transform-origin: center;
  transition: all 300ms linear;
  transition-delay: 0.2s;
  background: var(--zhusr-primary);
  z-index: 1;
}
.footer-widget-links ul li a:hover:before {
  transform: perspective(400px) scaleX(1.0);
}
.single-footer-widget--contact-info-box {
  position: relative;
  display: block;
  max-width: 270px;
  width: 100%;
  float: right;
}
.footer-widget-contact-info {
  position: relative;
  display: block;
  padding-top: 27px;
}
.footer-widget-contact-info ul {
  position: relative;
  display: block;
}
.footer-widget-contact-info ul li {
  position: relative;
  display: block;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 17px;
  padding-bottom: 16px;
}
.footer-widget-contact-info ul li:last-child {
  margin-bottom: 0;
  padding-bottom: 0px;
  border-bottom: none;
}
.footer-widget-contact-info ul li .inner {
  position: relative;
  display: block;
}
.footer-widget-contact-info ul li i {
  top: 0;
  left: 1px;
  color: var(--zhusr-primary);
  font-size: 18px;
  margin-right: 15px;
}
.footer-widget-contact-info ul li .inner .icon.phone {
  top: 2px;
}
.footer-widget-contact-info ul li .inner .icon.mapmarker {
  top: 2px;
  font-size: 18px;
}
.footer-widget-contact-info ul li .inner .text {
  position: relative;
  display: block;
}
.footer-widget-contact-info ul li .inner .text p {
  color: #a5b9ad;
  line-height: 26px;
  margin: 0;
}
.footer-widget-contact-info ul li .inner .text p a {
  color: #a5b9ad;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}
.footer-widget-contact-info ul li .inner .text p a:hover {
  color: var(--zhusr-primary);
}
.footer-bottom {
  position: relative;
  display: block;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}
.footer-bottom .bottom-inner {
  position: relative;
  display: block;
  text-align: center;
  padding: 5px 0;
}
.footer-bottom .bottom-inner .copyright {
  position: relative;
  display: block;
}
.footer-bottom .bottom-inner .copyright p {
  color: #a5b9ad;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--zhusr-font);
  margin: 0;
}
.footer-bottom .bottom-inner .copyright p a {
  color: var(--zhusr-primary);
}
.main-header {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  margin: 0px;
  z-index: 999;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}
.sticky-header {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  padding: 0px 0px;
  background: rgba(255, 255, 255, 0.98);
  opacity: 0;
  visibility: hidden;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  z-index: 0;
}
.fixed-header .sticky-header {
  visibility: visible;
  -ms-animation-name: fadeInDown;
  -moz-animation-name: fadeInDown;
  -op-animation-name: fadeInDown;
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
  -ms-animation-duration: 500ms;
  -moz-animation-duration: 500ms;
  -op-animation-duration: 500ms;
  -webkit-animation-duration: 500ms;
  animation-duration: 500ms;
  -ms-animation-timing-function: linear;
  -moz-animation-timing-function: linear;
  -op-animation-timing-function: linear;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -ms-animation-iteration-count: 1;
  -moz-animation-iteration-count: 1;
  -op-animation-iteration-count: 1;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  box-shadow: 0 0 10px rgba(0, 0, 0, .1);
  opacity: 1;
  z-index: 999999;
}
.sticky-header .logo {
  position: relative;
  display: block;
  padding: 10px 0;
}
.sticky-header .logo a {
  position: relative;
  display: inline-block;
}
.sticky-header .main-menu .navigation > li {
  margin-right: 35px;
}
.sticky-header .main-menu .navigation > li > a {
  color: var(--zhusr-black);
  padding: 20px 0;
}
.sticky-header .main-menu .navigation > li:hover > a, .sticky-header .main-menu .navigation > li.current > a {
  color: var(--zhusr-base);
}
.sticky-header .main-menu .navigation > li > a span:before {
  display: none;
}
.sticky-header .main-menu .navigation > li > a:before {
  display: none;
}
.sticky-header .main-menu.style6 .navigation > li > a {
  color: var(--zhusr-black);
  padding: 38px 0px 38px;
}
.main-menu .navigation.scroll-nav > li:hover > a, .main-menu .navigation.scroll-nav > li.current > a {
  color: var(--zhusr-base);
}
.header-style-one {
  position: relative;
}
.header-top {
  position: relative;
  display: block;
  background: var(--zhusr-black);
  z-index: 1;
}
.header-top .auto-container {
  max-width: 100%;
  padding: 0px 80px;
  padding-right: 0;
}
.header-top .outer-box {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.header-contact-info-style1 {
  position: relative;
  display: block;
}
.header-contact-info-style1 ul {
  position: relative;
  display: block;
  overflow: hidden;
}
.header-contact-info-style1 ul li {
  position: relative;
  display: flex;
  align-items: center;
  float: left;
  margin-right: 30px;
}
.header-contact-info-style1 ul li:last-child {
  margin-right: 0;
}
.header-contact-info-style1 ul li .icon {
  position: relative;
  display: block;
  width: 25px;
  line-height: 20px;
}
.header-contact-info-style1 ul li .icon span:before {
  position: relative;
  top: 1px;
  color: var(--zhusr-primary);
  font-size: 16px;
  transition: all 500ms ease;
}
.header-contact-info-style1 ul li:hover .icon span:before {
  color: #ffffff;
}
.header-contact-info-style1 ul li .text {
  position: relative;
  display: block;
}
.header-contact-info-style1 ul li .text p {
  color: #a5b9ad;
  font-size: 14px;
  line-height: 24px;
  font-weight: 600;
  margin: 0;
}
.header-contact-info-style1 ul li .text p a {
  color: #a5b9ad;
}
.header-contact-info-style1 ul li .text p a:hover {
  color: #ffffff;
}
.header-top__right {
  position: relative;
  display: block;
}
.header-button-style1 {
  position: relative;
  display: block;
  line-height: 0;
}
.header {
  position: relative;
  display: block;
  background: #ffffff;
  z-index: 1;
}
.header .auto-container {
  max-width: 100%;
  padding: 0px 0px;
  padding-right: 50px;
}
.header .outer-box {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.header-left {
  position: relative;
  display: flex;
  align-items: center;
}
.main-logo-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 265px;
  height: 90px;
}
.main-logo-box a {
  position: relative;
  display: inline-block;
}
.header-social-link {
  position: relative;
  display: block;
  margin-left: 80px;
}
.header-social-link ul {}
.header-social-link ul li {
  position: relative;
  display: block;
  float: left;
  margin-right: 10px;
}
.header-social-link ul li:last-child {
  margin-right: 0;
}
.header-social-link ul li a {
  position: relative;
  display: block;
  height: 40px;
  width: 40px;
  background-color: rgba(var(--zhusr-base-rgb), .10);
  border-radius: 50%;
  color: var(--zhusr-black);
  font-size: 16px;
  font-weight: 600;
  line-height: 44px;
  text-align: center;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  z-index: 1;
}
.header-social-link ul li a:before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: var(--zhusr-base);
  content: "";
  border-radius: 50%;
  z-index: -1;
  transform: scale(0.0);
  transform-origin: center;
  transform-style: preserve-3d;
  transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
}
.header-social-link ul li:hover a:before {
  transform: scaleX(1.0);
}
.header-social-link ul li:hover a {
  color: #ffffff;
}
.main-menu.style1 {}
.main-menu {
  position: relative;
  display: block;
  float: left;
}
.main-menu .navbar-collapse {
  padding: 0px;
  display: block !important;
}
.main-menu .navigation {
  position: inherit;
  display: block;
}
.main-menu .navigation > li {
  position: inherit;
  display: inline-block;
  float: left;
  margin-right: 40px;
}
.main-menu .navigation > li:last-child {
  margin-right: 0;
}
.main-menu .navigation > li > a {
  position: relative;
  display: flex;
  align-items: center;
  padding: 20px 0;
  color: #000;
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
  text-transform: capitalize;
  transition: all 500ms ease;
  font-family: var(--zhusr-font);
  opacity: 1;
  z-index: 1;
}
.main-menu .navigation > li > a span {
  position: relative;
  display: block;
  line-height: 20px;
  padding: 10px 15px;
  z-index: 1;
}
.main-menu .navigation > li > a span:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: var(--zhusr-base);
  z-index: -1;
  transform: scaleY(0.0);
  transform-origin: center;
  transform-style: preserve-3d;
  transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
}
.main-menu .navigation > li:hover > a span:before, .main-menu .navigation > li.current > a span:before {
  transform: scaleY(1.0);
}
.main-menu .navigation > li:hover > a, .main-menu .navigation > li.current > a {
  color: #ffffff;
}
.main-menu .navigation > li.dropdown > a {}
.main-menu .navigation > li.dropdown > a:after {
  position: absolute;
  right: 0px;
  font-family: Fontawesome;
  content: "\f107";
  font-size: 16px;
  font-weight: 600;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  z-index: 1;
  display: none;
}
.main-menu .navigation > li.dropdown:hover > a:after, .main-menu .navigation > li.dropdown.current > a:after {
  transform: rotate(180deg);
}
.main-menu .navigation > li > ul {
  position: absolute;
  top: 100%;
  left: inherit;
  width: 270px;
  padding: 0px 0;
  opacity: 0;
  visibility: hidden;
  border-radius: 0px;
  -moz-transform: translateY(30px);
  -webkit-transform: translateY(30px);
  -ms-transform: translateY(30px);
  -o-transform: translateY(30px);
  transform: translateY(30px);
  transition: all 100ms ease;
  z-index: 100;
}
.main-menu .navigation > li > ul:before {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  content: '';
  background-color: var(--zhusr-base);
  border-radius: 0px;
  z-index: -1;
}
.main-menu .navigation > li > ul:after {
  position: absolute;
  top: -3px;
  left: 0px;
  right: 0;
  height: 3px;
  content: '';
  background: var(--zhusr-primary);
  border-radius: 0px;
  z-index: -1;
}
.main-menu .navigation > li.dropdown:hover > ul {
  opacity: 1;
  visibility: visible;
  -moz-transform: translateY(0);
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
}
.main-menu .navigation > li > ul > li {
  position: relative;
  display: block;
  padding: 0 0px;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(5px);
  transform: translateY(5px);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}
.main-menu .navigation > li:hover > ul > li {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.main-menu .navigation > li > ul > li:nth-child(2n+1) {
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}
.main-menu .navigation > li > ul > li:nth-child(2n+2) {
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}
.main-menu .navigation > li > ul > li:nth-child(2n+3) {
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}
.main-menu .navigation > li > ul > li:nth-child(2n+4) {
  -webkit-transition-delay: 0.4s;
  transition-delay: 0.4s;
}
.main-menu .navigation > li > ul > li:nth-child(2n+5) {
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
}
.main-menu .navigation > li > ul > li:nth-child(2n+6) {
  -webkit-transition-delay: 0.6s;
  transition-delay: 0.6s;
}
.main-menu .navigation > li > ul > li:nth-child(2n+7) {
  -webkit-transition-delay: 0.7s;
  transition-delay: 0.7s;
}
.main-menu .navigation > li > ul > li:nth-child(2n+8) {
  -webkit-transition-delay: 0.8s;
  transition-delay: 0.8s;
}
.main-menu .navigation > li > ul > li:nth-child(2n+9) {
  -webkit-transition-delay: 0.9s;
  transition-delay: 0.9s;
}
.main-menu .navigation > li > ul > li > a {
  position: relative;
  display: block;
  border-bottom: 1px dashed rgba(255, 255, 255, .20);
  padding: 15px 0px 15px;
  padding-left: 30px;
  padding-right: 10px;
  color: #ffffff;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  text-align: left;
  text-transform: capitalize;
  transition: all 500ms ease;
  letter-spacing: normal;
  font-family: var(--zhusr-font);
  z-index: 1;
}
.main-menu .navigation > li > ul > li:last-child > a {
  border: none;
}
.main-menu .navigation > li > ul > li > a:before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0px;
  right: 0;
  bottom: -1px;
  background-color: var(--zhusr-black);
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transform-origin: right center;
  transform-origin: right center;
  z-index: -1;
}
.main-menu .navigation > li > ul > li:hover > a:before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transform-origin: left center;
  transform-origin: left center;
}
.main-menu .navigation > li > ul > li > a:after {
  content: "";
  position: absolute;
  top: 15px;
  left: 30px;
  bottom: 15px;
  border-left: 5px solid #ffffff;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  transform: scaleY(0);
  transition: all 500ms ease;
}
.main-menu .navigation > li > ul > li:hover > a:after {
  transform: scaleY(1.0);
}
.main-menu .navigation > li > ul > li:hover > a {
  color: #ffffff;
  padding-left: 50px;
}
.main-menu .navigation > li > ul > li.dropdown {}
.main-menu .navigation > li > ul > li.dropdown:after {
  position: absolute;
  top: 0px;
  right: 30px;
  bottom: 0;
  font-family: FontAwesome;
  content: "\f105";
  color: #ffffff;
  font-size: 18px;
  font-weight: 400;
  margin: 13px 0;
  text-align: right;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  z-index: 5;
}
.main-menu .navigation > li > ul > li.dropdown:hover:after {
  color: #ffffff;
}
.main-menu .navigation > li > ul > li > ul {
  position: absolute;
  top: 0%;
  left: 100%;
  width: 260px;
  padding: 0px 0;
  display: none;
  border-left: 0px solid transparent;
  padding-left: 10px;
  border-radius: 0px;
  -moz-transform: translateY(30px);
  -webkit-transform: translateY(30px);
  -ms-transform: translateY(30px);
  -o-transform: translateY(30px);
  transform: translateY(30px);
  transition: all 100ms ease;
  z-index: 100;
}
.main-menu .navigation > li > ul > li > ul:before {
  position: absolute;
  top: 0px;
  left: 10px;
  right: 0;
  height: 100%;
  content: '';
  background-color: var(--zhusr-base);
  border-radius: 0px;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  z-index: -1;
}
.main-menu .navigation li > ul > li.dropdown:hover ul {
  opacity: 1;
  visibility: visible;
  -moz-transform: translateY(0);
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
}
.main-menu .navigation > li > ul > li > ul > li {
  position: relative;
  display: block;
  padding: 0px;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(5px);
  transform: translateY(5px);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}
.main-menu .navigation > li > ul > li:hover > ul > li {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.main-menu .navigation > li > ul > li > ul > li:nth-child(2n+1) {
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}
.main-menu .navigation > li > ul > li > ul > li:nth-child(2n+2) {
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}
.main-menu .navigation > li > ul > li > ul > li:nth-child(2n+3) {
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}
.main-menu .navigation > li > ul > li > ul > li:nth-child(2n+4) {
  -webkit-transition-delay: 0.4s;
  transition-delay: 0.4s;
}
.main-menu .navigation > li > ul > li > ul > li:nth-child(2n+5) {
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
}
.main-menu .navigation > li > ul > li > ul > li > a {
  position: relative;
  display: block;
  border-bottom: 1px dashed rgba(255, 255, 255, .20);
  padding: 15px 0px 15px;
  padding-left: 30px;
  padding-right: 10px;
  color: #ffffff;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  text-align: left;
  text-transform: capitalize;
  transition: all 500ms ease;
  letter-spacing: normal;
  font-family: var(--zhusr-font);
  z-index: 1;
}
.main-menu .navigation > li > ul > li > ul > li:last-child > a {
  border: none;
}
.main-menu .navigation > li > ul > li > ul > li > a:before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0px;
  right: 0;
  bottom: -1px;
  background-color: var(--zhusr-black);
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transform-origin: right center;
  transform-origin: right center;
  z-index: -1;
}
.main-menu .navigation > li > ul > li > ul > li:hover > a:before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transform-origin: left center;
  transform-origin: left center;
}
.main-menu .navigation > li > ul > li > ul > li > a:after {
  content: "";
  position: absolute;
  top: 15px;
  left: 30px;
  bottom: 15px;
  border-left: 5px solid #ffffff;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  transform: scaleY(0);
  transition: all 500ms ease;
}
.main-menu .navigation > li > ul > li > ul > li:hover > a:after {
  transform: scaleX(1.0);
}
.main-menu .navigation > li > ul > li > ul > li:hover > a {
  color: #ffffff;
  padding-left: 50px;
}
/** Megamenu Style **/
.main-menu .navigation > li > .megamenu {
  position: absolute;
  top: 100%;
  left: -50px;
  right: -50px;
  padding: 20px 0;
  padding-right: 40px;
  opacity: 0;
  visibility: hidden;
  border-radius: 0px;
  border-top: 3px solid var(--zhusr-primary);
  -moz-transform: translateY(30px);
  -webkit-transform: translateY(30px);
  -ms-transform: translateY(30px);
  -o-transform: translateY(30px);
  transform: translateY(30px);
  transition: all 100ms ease;
  z-index: 100;
}
.main-menu .navigation > li > .megamenu:after {
  content: "";
  position: absolute;
  top: 40px;
  left: 50%;
  bottom: 40px;
  width: 1px;
  background: #ffffff;
  opacity: 0.10;
}
.main-menu .navigation > li > .megamenu .row {
  margin-right: 0px;
  margin-left: 0px;
}
.main-menu .navigation > li > .megamenu .row [class*=col-] {
  padding-left: 0px;
  padding-right: 0px;
}
.main-menu .navigation > li > .megamenu:before {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  content: '';
  background-color: var(--zhusr-base);
  border-radius: 0px;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  z-index: -1;
}
.main-menu .navigation > li.dropdown:hover .megamenu {
  opacity: 1;
  margin-top: -3px;
  visibility: visible;
  -moz-transform: translateY(0);
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
}
.main-menu .navigation > li > .megamenu li {
  position: relative;
  display: block;
  padding: 0 40px;
  padding-right: 0;
  width: 100%;
  opacity: 1;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}
.main-menu .navigation > li:hover .megamenu li {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
/*****
.main-menu .navigation> li> .megamenu li:nth-child(2n+1) {
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
}
.main-menu .navigation> li> .megamenu li:nth-child(2n+2) {
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
}
.main-menu .navigation> li> .megamenu li:nth-child(2n+3) {
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
}
.main-menu .navigation> li> .megamenu li:nth-child(2n+4) {
    -webkit-transition-delay: 0.4s;
    transition-delay: 0.4s;
}
.main-menu .navigation> li> .megamenu li:nth-child(2n+5) {
    -webkit-transition-delay: 0.5s;
    transition-delay: 0.5s;
}

.main-menu .navigation> li> .megamenu li:nth-child(2n+6) {
    -webkit-transition-delay: 0.6s;
    transition-delay: 0.6s;
}
.main-menu .navigation> li> .megamenu li:nth-child(2n+7) {
    -webkit-transition-delay: 0.7s;
    transition-delay: 0.7s;
}
.main-menu .navigation> li> .megamenu li:nth-child(2n+8) {
    -webkit-transition-delay: 0.8s;
    transition-delay: 0.8s;
}
.main-menu .navigation> li> .megamenu li:nth-child(2n+9) {
    -webkit-transition-delay: 0.9s;
    transition-delay: 0.9s;
}
.main-menu .navigation> li> .megamenu li:nth-child(2n+10) {
    -webkit-transition-delay: 0.10s;
    transition-delay: 0.10s;
}
****/
.main-menu .navigation > li > .megamenu li > a {
  position: relative;
  display: block;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.20);
  padding: 15px 0px 15px;
  color: #ffffff;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  text-align: left;
  text-transform: capitalize;
  transition: all 500ms ease;
  letter-spacing: 0.03em;
  font-family: var(--zhusr-font);
}
.main-menu .navigation > li > .megamenu li:last-child a {
  border: none;
}
.main-menu .navigation > li > .megamenu li > a:before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0px;
  right: 0;
  bottom: -1px;
  background-color: var(--zhusr-black);
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transform-origin: right center;
  transform-origin: right center;
  z-index: -1;
}
.main-menu .navigation > li > .megamenu li:hover > a:before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transform-origin: left center;
  transform-origin: left center;
}
.main-menu .navigation > li > .megamenu li:hover > a {
  color: #ffffff;
  padding-left: 40px;
}
.main-menu .navigation > li > .megamenu li > a:after {
  content: "";
  position: absolute;
  top: 15px;
  left: 20px;
  bottom: 15px;
  border-left: 5px solid #ffffff;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  transform: scaleY(0);
  transition: all 500ms ease;
}
.main-menu .navigation > li > .megamenu li:hover > a:after {
  transform: scaleX(1.0);
}
.main-menu .navigation li.dropdown .megamenu li h4 {
  font-weight: 500;
  padding: 3px 0px;
  color: #fff;
}
.main-menu .navbar-collapse > ul li.dropdown .dropdown-btn {
  position: absolute;
  right: 0px;
  top: 0;
  width: 50px;
  height: 42px;
  border-left: 1px solid #04102a;
  text-align: center;
  font-size: 16px;
  line-height: 42px;
  color: #ffffff;
  cursor: pointer;
  display: none;
  z-index: 5;
}
.header-right {
  position: relative;
  display: flex;
  align-items: center;
}
.phone-number-box1 {
  position: relative;
  display: flex;
  align-items: center;
  margin-right: 50px;
}
.phone-number-box1 .icon {
  position: relative;
  display: block;
  width: 60px;
  height: 60px;
  background-color: rgba(var(--zhusr-base-rgb), .10);
  border-radius: 50%;
  z-index: 1;
}
.phone-number-box1 .icon:before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  border-radius: 50%;
  background: var(--zhusr-black);
  content: "";
  z-index: -1;
  transform: scale(0.0);
  transform-origin: center;
  transform-style: preserve-3d;
  transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
}
.phone-number-box1:hover .icon:before {
  transform: scaleX(1.0);
}
.phone-number-box1 .icon span::before {
  position: relative;
  display: block;
  color: var(--zhusr-base);
  font-size: 25px;
  line-height: 60px;
  text-align: center;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}
.phone-number-box1:hover .icon span::before {
  color: #fff;
}
.phone-number-box1 .phone {
  position: relative;
  display: block;
  padding-left: 20px;
}
.phone-number-box1 .phone p {
  position: relative;
  display: block;
  top: 5px;
  font-size: 14px;
  line-height: 16px;
  font-weight: 500;
  margin: 0 0 3px;
}
.phone-number-box1 .phone a {
  position: relative;
  display: inline-block;
  color: var(--zhusr-black);
  font-size: 16px;
  line-height: 16px;
  font-weight: 700;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}
.phone-number-box1 .phone a:hover {
  color: var(--zhusr-primary);
}
/*==============================================
    Main Header Style2 Css        
===============================================*/
.header-style-two {
  position: relative;
}
.header-style2 {
  position: relative;
  display: block;
  background: #ffffff;
  z-index: 1;
}
.header-style2 .auto-container {
  max-width: 100%;
  padding: 0px;
  padding-left: 200px;
}
.header-style2 .outer-box {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  z-index: 1;
}
.header-style2 .outer-box::before {
  position: absolute;
  top: 0px;
  left: 367px;
  bottom: 0px;
  right: -100000px;
  background: #ebf1ed;
  content: "";
  z-index: -1;
}
.header-style2__left {
  position: relative;
  display: flex;
  align-items: center;
}
.main-logo-box-style2 {
  position: relative;
  display: block;
  margin-right: 120px;
}
.main-logo-box-style2 a {
  position: relative;
  display: inline-block;
}
.header-style2__middle {
  position: relative;
  display: block;
}
.header-style2__middle .main-menu .navigation > li > a {
  padding: 63px 0px 64px;
}
.header-style2__right {
  position: relative;
  display: block;
  padding-right: 50px;
}
/** template rtl css **/
.page_direction {
  display: block;
}
.rtl {
  direction: rtl;
  text-align: right;
}
.ltr {
  direction: ltr;
}
.demo-rtl {
  position: fixed;
  top: 260px;
  left: 0;
  z-index: 9999;
}
button.rtl {
  background: rgba(0, 0, 0, 0.90);
  display: block;
  text-indent: inherit;
  font-size: 12px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  font-weight: 700;
  margin: 0px;
  color: #fff !important;
}
.demo-ltr {
  position: fixed;
  top: 260px;
  left: auto;
  right: 0;
  z-index: 9999;
}
button.ltr {
  background: rgba(0, 0, 0, 0.90);
  display: block;
  text-indent: inherit;
  font-size: 12px;
  font-weight: 700;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  margin: 0px;
  color: #fff !important;
}
.zhusr-boxed_wrapper.ltr .demo-rtl {
  display: block;
}
.zhusr-boxed_wrapper.ltr .demo-ltr {
  display: none;
}
.zhusr-boxed_wrapper.rtl .demo-rtl {
  display: none;
}
.zhusr-boxed_wrapper.rtl .demo-ltr {
  display: block;
}
.rtl .pull-left {
  float: right;
}
.rtl .pull-right {
  float: left;
}
.rtl .float-left {
  float: right !important;
}
.rtl .float-right {
  float: left !important;
}
.rtl .checked-box2 label {
  padding-left: 0px;
  padding-right: 30px;
}
.rtl .checked-box2 input[type="checkbox"] + label span {
  left: auto;
  right: 0;
}
.rtl .main-menu {
  float: right;
}
.rtl .main-menu .navigation > li {
  float: right;
}
.rtl .main-menu .navigation > li:first-child {
  margin-right: 0px;
}
.rtl .main-menu .navigation > li:last-child {
  margin-right: 40px;
}
.rtl .main-menu .navigation > li > ul {
  left: auto;
  right: inherit;
}
.rtl .main-menu .navigation > li > ul > li > a {
  text-align: right;
  padding-left: 10px;
  padding-right: 30px;
}
.rtl .main-menu .navigation > li > ul > li > a:before {
  display: block;
  -webkit-transform-origin: left center;
  transform-origin: left center;
  -webkit-transform: scale(1, 0);
  transform: scale(1, 0);
}
.rtl .main-menu .navigation > li > ul > li > a:after {
  display: none;
}
.rtl .main-menu .navigation > li.dropdown > a:after {
  display: none;
}
.rtl .main-menu .navigation > li > ul > li > ul > li a:before {
  display: block;
  -webkit-transform-origin: left center;
  transform-origin: left center;
  -webkit-transform: scale(1, 0);
  transform: scale(1, 0);
}
.rtl .main-menu .navigation > li > ul > li.dropdown > a:after {
  display: none;
}
.rtl .main-menu .navigation > li > ul > li > ul {
  left: auto;
  right: 100%;
}
.rtl .main-menu .navigation > li > ul > li > ul > li > a {
  text-align: right;
  padding-left: 10px;
  padding-right: 30px;
}
.rtl .main-menu .navigation > li > ul > li > ul > li > a:after {
  display: none;
}
.rtl .sticky-header .main-menu .navigation > li {
  float: right;
}
/** Sub Menu **/
.rtl .main-menu .navigation > li > ul > li.dropdown:after {
  left: 30px;
  right: auto;
  transform: rotate(180deg);
}
/***  Mega menu **/
.rtl .main-menu .navigation > li > .megamenu li > a {
  text-align: right;
  padding-right: 10px;
}
.rtl .main-menu .navigation > li > .megamenu li > a:after {
  display: none;
}
.rtl .main-menu .navigation > li > .megamenu li:hover > a:before {
  -webkit-transform-origin: right center;
  transform-origin: right center;
}
.rtl .mobile-menu {
  text-align: right;
}
.rtl .mobile-menu .nav-logo {
  text-align: right;
}
.rtl .mobile-menu .navigation li > a:before {
  left: inherit;
  right: 0px;
}
.rtl .mobile-menu .navigation li.dropdown .dropdown-btn {
  right: inherit;
  left: 6px;
  transform: rotate(90deg);
}
.rtl .mobile-menu .navigation li.dropdown .dropdown-btn.open {
  transform: rotate(0deg);
}
.rtl .scroll-top {
  left: 20px;
  right: auto;
}
.rtl .switcher .switch_btn {
  top: 0px;
  right: 0px;
}
.rtl .switcher .switch_menu {
  left: -285px;
}
.rtl .rtl-carousel {
  direction: ltr;
  text-align: right;
}
.rtl .banner-carousel {
  direction: ltr;
  text-align: right;
}
.rtl .testimonial-carousel-12 {
  direction: ltr;
  text-align: right;
}
.rtl .text-right-rtl {
  text-align: right;
}
/*________________All Home Page Css_______________ */
.rtl .header-top .auto-container {
  padding: 0px 80px;
  padding-right: auto;
  padding-left: 0;
}
.rtl .phone-number-box1 {
  margin-right: 0px;
  margin-left: 50px;
}
.rtl .phone-number-box1 .phone {
  padding-left: 0px;
  padding-right: 20px;
}
.rtl .main-logo-box {
  float: right;
}
.rtl .header-social-link {
  margin-left: 0px;
  margin-right: 80px;
}
.rtl .header .auto-container {
  padding-right: 0px;
  padding-left: 50px;
}
.rtl .serach-button-style1 .search-toggler {
  border-left: 0px solid;
  border-right: 1px solid rgba(var(--zhusr-base-rgb), .10);
}
.rtl .btn-one .arrow {
  display: none;
}
.rtl .main-slider .owl-theme .owl-nav {
  align-items: flex-start;
}
.rtl .single-features-style1 {
  padding-left: 0px;
  padding-right: 75px;
}
.rtl .single-features-style1 .icon-holder {
  left: auto;
  right: 0;
}
.rtl .single-features-style1 .text-holder {
  padding-left: 0px;
  padding-right: 10px;
}
.rtl .about-style1__image .text-outer {
  display: none;
}
.rtl .about-style1__bottom-content .text-box ul li {
  padding-left: 0px;
  padding-right: 30px;
}
.rtl .about-style1__bottom-content .text-box ul li:before {
  left: auto;
  right: 1px;
}
.rtl .video-gallery-style1 {
  float: left;
}
.rtl .single-features-style2-box .inner-content {
  float: left;
  padding-left: 0;
  padding-right: 75px;
}
.rtl .single-features-style2-box .inner-content .icon {
  left: auto;
  right: 0;
}
.rtl .single-features-style2-box .inner-content .title {
  padding-left: 0px;
  padding-right: 20px;
}
.rtl .phone-number-box2 .phone {
  padding-left: 0px;
  padding-right: 30px;
}
.rtl .footer-widget-contact-info ul li .inner {
  padding-left: 0px;
  padding-right: 35px;
}
.rtl .footer-widget-contact-info ul li .inner .icon {
  left: auto;
  right: 1px;
}
.rtl .footer-social-link ul li {
  float: right;
  margin-right: 0px;
  margin-left: 10px;
}
.rtl .footer-social-link ul li:last-child {
  margin-left: 0;
}
.rtl .single-service-style1 .btn-box a {
  transform: rotate(180deg);
}
.rtl .single-blog-style1 .text-holder .meta-info li i {
  padding-right: 0;
  float: right;
  padding-left: 10px;
}
.rtl .single-features-style2-box.left .inner-content {
  float: left;
  margin-left: 0px;
}
.rtl .single-fact-counter:first-child {
  padding-left: 40px;
  padding-right: 0;
}
.rtl .single-fact-counter:first-child:before {
  display: none;
}
.rtl .single-fact-counter:last-child {
  padding-right: 0;
}
.rtl .order-11 {
  -ms-flex-order: 1;
  order: 1;
}
.rtl .order-22 {
  -ms-flex-order: 2;
  order: 2;
}
.rtl .testimonial-style1__conent-box .img-box {
  float: right;
}
.rtl .testimonial-style1__conent-box .img-box .quote-icon {
  left: -20px;
  right: auto;
}
.rtl #testimonials-style1__carousel-pagination {
  left: 0;
  right: auto;
  bottom: 24px;
  justify-content: center;
  align-items: center;
}
.rtl #testimonials-style1__carousel-pagination .swiper-pagination-bullet + .swiper-pagination-bullet {
  margin-left: 0px;
  margin-right: 10px;
}
.rtl .header-style2 .auto-container {
  padding-left: 0px;
  padding-right: 200px;
}
.rtl .header-style2 .outer-box::before {
  right: 367px;
  left: -100000px;
}
.rtl .main-logo-box-style2 {
  margin-right: 0px;
  margin-left: 120px;
}
.rtl .header-style2__right {
  padding-left: 50px;
  padding-right: 0px;
}
.rtl .main-slider.style2 {
  padding-left: 0px;
  padding-right: 200px;
}
.rtl .service-style3-area .container::before {
  right: 215px;
  left: -100000px;
}
.rtl .about-style2-area .container::before {
  right: 215px;
  left: -100000px;
}
.rtl .features-style3__list ul li span::before {
  padding-right: 13px;
  padding-left: 0px;
  transform: rotate(180deg);
}
.rtl .single-blog-style1--instyle2 .text-holder .meta-info {
  justify-content: flex-end;
  flex-direction: row-reverse;
  align-items: flex-end;
  float: right;
}
.rtl .about-style2__content {
  padding-left: 0px;
  padding-right: 70px;
}
.rtl .about-style2__content-list ul li p span {
  padding-right: 6px;
  padding-left: 0;
  transform: rotate(180deg);
}
.rtl .about-style2__content .author-box .title {
  padding-left: 0px;
  padding-right: 30px;
}
/*** 
=============================================
    Inner Page Css
=============================================
***/
.rtl .about-style3-experience {
  display: none;
}
.rtl .about-style3__img-box {
  max-width: 545px;
  width: 100%;
  padding-right: 0px;
}
.rtl .about-style3__content ul li:first-child {
  padding-left: 0px;
}
.rtl .about-style3__content ul li:first-child {
  padding-left: 0px;
  padding-right: 50px;
}
.rtl .about-style3__content .author-box .title {
  padding-left: 0px;
  padding-right: 30px;
}
.rtl .about-style3__content ul li span:before {
  left: 0px;
}
.rtl .breadcrumb-menu ul li {
  padding-right: 0px;
  margin-right: 0px;
  padding-left: 18px;
  margin-left: 15px;
}
.rtl .breadcrumb-menu ul li:last-child {
  padding-right: 0px;
  margin-right: 0px;
  padding-left: 0px;
  margin-left: 0px;
}
.rtl .breadcrumb-menu ul li:before {
  left: 0;
  right: auto;
}
.rtl .accordion-box .block .acc-btn .icon-outer {
  left: 30px;
  right: auto;
}
.rtl .view-all-service .service-pages li a span {
  float: left;
  transform: rotate(180deg);
}
.rtl .service-details__content .text-box2 .text-box2-single h4 span::before {
  padding-left: 7px;
  padding-right: 0px;
}
.rtl .service-details__content .text-box4 .content-box ul li h4 span::before {
  padding-right: 7px;
  transform: rotate(180deg);
}
.rtl .industries-details__text-box .text-right-box ul li {
  padding-left: 0px;
  padding-right: 30px;
}
.rtl .industries-details__text-box .text-right-box ul li::before {
  left: auto;
  right: 0;
  transform: rotate(180deg);
}
.rtl .single-service-style2 .img-holder .icon-box {
  top: 0px;
  right: 0px;
}
.rtl .styled-pagination li.arrow.next {
  transform: rotate(180deg);
}
.rtl .styled-pagination li.arrow.prev {
  transform: rotate(180deg);
}
.rtl .styled-pagination li:last-child {
  margin-right: 6px;
}
.rtl .sidebar-blog-post ul li .inner {
  padding-left: 0px;
  padding-right: 70px;
}
.rtl .sidebar-blog-post ul li .img-box {
  left: auto;
  right: 0;
}
.rtl .sidebar-blog-post ul li .title-box {
  padding-left: 0px;
  padding-right: 20px;
}
.rtl .sidebar-blog-post ul li .title-box .admin span:before {
  padding-right: 0px;
  padding-left: 3px;
}
.rtl .sidebar-categories-box li a:before {
  display: none;
}
.rtl .sidebar-categories-box li a:hover {
  padding-left: 0px;
  padding-right: 20px;
}
.rtl .single-sidebar-box .popular-tag li {
  float: right;
}
.rtl .single-blog-style1 .text-holder .meta-info li:last-child {
  margin-left: 0px;
  margin-right: 10px;
}
.rtl .blog-details-author .inner-box .text {
  padding-left: 0px;
  padding-right: 40px;
}
.rtl .comment-box .single-comment-box {
  padding-left: 0px;
  padding-right: 140px;
}
.rtl .comment-box .single-comment-box .img-holder {
  left: auto;
  right: 0;
}
.rtl .comment-box .single-comment-box .text-holder {
  padding-left: 0px;
  padding-right: 40px;
}
.rtl .contact-info-list li .text {
  padding-left: 0px;
  padding-right: 20px;
}
.rtl .btn-one:before {
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
}
.rtl .progress-box .bar .bar-fill {
  left: auto;
  right: 0;
}
/*** 
=============================================
    RTL Page Responsive Css
=============================================
***/
@media only screen and (min-width: 1200px) and (max-width: 1400px) {
  .rtl .main-logo-box-style2 {
    margin-right: 0px;
    margin-left: 60px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1300px) {
  .rtl .phone-number-box1 {
    display: none;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .rtl .single-footer-widget--contact-info-box {
    float: right;
  }
  .rtl .testimonial-style1__conent-box .text-box {
    padding-top: 110px;
  }
  .rtl #testimonials-style1__thumb {
    left: -30px;
    right: 0;
    top: 0px;
  }
  .rtl .header-style2 .auto-container {
    padding-left: 0px;
    padding-right: 100px;
  }
  .rtl .header-style2 .outer-box::before {
    right: 300px;
    left: -100000px;
  }
  .rtl .main-slider.style2 {
    padding-left: 0px;
    padding-right: 100px;
  }
  .rtl .about-style2__content {
    padding-left: 0px;
    padding-right: 0px;
  }
  .rtl .features-style3__list ul {
    float: right;
  }
  .rtl .features-style3__list ul.style2 {
    float: right;
    padding-left: 0;
    padding-right: 50px;
  }
}
@media only screen and (max-width: 991px) and (min-width: 768px) {
  .rtl .single-footer-widget--contact-info-box {
    float: right;
  }
  .rtl .testimonial-style1__conent-box .text-box {
    padding-top: 110px;
  }
  .rtl #testimonials-style1__thumb {
    left: -30px;
    right: 0;
    top: 0px;
  }
  .rtl .header-style2 .auto-container {
    padding-left: 20px;
    padding-right: 20px;
  }
  .rtl .header-style2 .outer-box::before {
    right: -100000px;
    left: -100000px;
  }
  .rtl .main-slider.style2 {
    padding-left: 0px;
    padding-right: 0px;
  }
  .rtl .about-style2__content {
    padding-left: 0px;
    padding-right: 0px;
  }
  .rtl .about-style2-area .container::before {
    right: -100000px;
    left: -100000px;
  }
  .rtl .features-style3__list ul {
    float: right;
  }
  .rtl .features-style3__list ul.style2 {
    float: right;
    padding-left: 0;
    padding-right: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .rtl .single-features-style1 {
    padding-left: 0px;
    padding-right: 0px;
  }
  .rtl .single-features-style1 .text-holder {
    padding-left: 0px;
    padding-right: 0px;
  }
  .rtl .video-gallery-style1 {
    float: right;
  }
  .rtl .single-features-style2-box {
    padding: 112px 0px;
    min-height: 360px;
  }
  .rtl .single-features-style2-box .inner-content .icon {
    left: auto;
    right: 10px;
  }
  .rtl .single-footer-widget--contact-info-box {
    float: right;
  }
  .rtl .testimonial-style1__conent-box .text-box {
    padding-top: 110px;
  }
  .rtl #testimonials-style1__thumb {
    left: -30px;
    right: 0;
    top: 0px;
  }
  .rtl .header-style2 .auto-container {
    padding-left: 20px;
    padding-right: 20px;
  }
  .rtl .header-style2 .outer-box::before {
    right: -100000px;
    left: -100000px;
  }
  .rtl .main-logo-box-style2 {
    margin-right: 0px;
    margin-left: 0px;
  }
  .rtl .main-slider.style2 {
    padding-left: 0px;
    padding-right: 0px;
  }
  .rtl .about-style2__content {
    padding-left: 0px;
    padding-right: 0px;
  }
  .rtl .about-style2-area .container::before {
    right: -100000px;
    left: -100000px;
  }
  .rtl .service-style3-area .container::before {
    right: -100000px;
    left: -100000px;
  }
  .rtl .single-fact-counter:first-child {
    padding-left: 0px;
    padding-right: 0;
  }
  .rtl .header .auto-container {
    padding-right: 0px;
    padding-left: 20px;
  }
  .rtl .about-style3__content ul li:first-child {
    padding-left: 0px;
    padding-right: 0px;
  }
  .rtl .about-style3__content ul li span:before {
    left: 0px;
  }
  .rtl .blog-details-author .inner-box .text {
    padding-left: 0px;
    padding-right: 0px;
  }
  .rtl .comment-box .single-comment-box {
    padding-left: 0px;
    padding-right: 0px;
  }
  .rtl .comment-box .single-comment-box .text-holder {
    padding-left: 0px;
    padding-right: 0px;
  }
}
/*** 
=============================================
    service Style1 Area Css
=============================================
***/
.service-style1-area {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 60px 0;
  z-index: 10;
}
.service-style1__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 490px;
  background-attachment: scroll;
  background-repeat: no-repeat;
  background-position: top center;
  background-repeat: no-repeat;
  background-color: var(--zhusr-base);
  background-blend-mode: luminosity;
  z-index: -1;
}
.service-style1__bg:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: var(--zhusr-base);
  opacity: 0.95;
}
.service-style1__top {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding-bottom: 44px;
}
.service-style1__top-title {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  max-width: 900px;
  width: 100%;
}
.service-style1__top-title .sec-title {
  padding: 0;
}
.service-style1__top-title .text {
  position: relative;
  display: block;
  max-width: 370px;
  width: 100%;
}
.service-style1__top-title .text p {
  color: rgba(255, 255, 255, 0.70);
  font-weight: 600;
  margin: 0;
}
.service-style1__top-button {
  position: relative;
  display: block;
  line-height: 0;
}
.single-service-style1 {
  position: relative;
  display: block;
  padding-bottom: 72px;
}
.single-service-style1:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 72px;
  right: 0;
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
}
.single-service-style1 .inner {
  position: relative;
  display: block;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(var(--zhusr-base-rgb), .10);
  padding: 60px 15px;
  transition: all 500ms ease;
  z-index: 2;
}
.single-service-style1:hover .inner {
  border-color: var(--zhusr-primary);
}
.single-service-style1 .inner:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  background: var(--zhusr-primary);
  transform: perspective(400px) rotateY(90deg);
  transform-origin: left;
  transform-style: preserve-3d;
  transition: all 500ms linear;
  transition-delay: 0.1s;
}
.single-service-style1:hover .inner:before {
  opacity: 1;
  transform: perspective(400px) rotateY(0deg);
  transition: all 500ms linear;
  transition-delay: 0.1s;
}
.single-service-style1:hover .inner:before {
  opacity: 1.0;
  height: 100%;
  transform: scale(1.0);
  transition: all 800ms linear;
  transition-delay: 0.1s;
}
.single-service-style1 .inner .round-box {
  position: absolute;
  top: -105px;
  right: -105px;
  width: 215px;
  height: 215px;
  background: var(--zhusr-black);
  opacity: 0.10;
  border-radius: 50%;
  z-index: 1;
}
.single-service-style1 .icon {
  position: relative;
  display: block;
  margin-bottom: 17px;
  z-index: 2;
  text-align: center;
}
.single-service-style1 .icon span:before {
  position: relative;
  display: inline-block;
  color: var(--zhusr-base);
  font-size: 65px;
  line-height: 65px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}
.single-service-style1:hover .icon span:before {
  color: var(--zhusr-black);
  transform: scale(1.1);
  transform-style: preserve-3d;
  transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
}
.single-service-style1 .text {
  position: relative;
  display: block;
  z-index: 2;
}
.single-service-style1 .text h3 {
  font-size: 24px;
  line-height: 30px;
  margin: 0 0 22px;
  text-align: center;
}
.single-service-style1 .text p {
  margin: 0;
  transition: all 500ms ease;
}
.single-service-style1:hover .text p {
  color: var(--zhusr-black);
}
.single-service-style1 .btn-box {
  position: relative;
  float: right;
  margin-top: -32px;
  margin-right: 50px;
  z-index: 5;
}
.single-service-style1 .btn-box a {
  position: relative;
  display: block;
  width: 64px;
  height: 64px;
  background: #ffffff;
  border-radius: 50%;
  border: 2px solid rgba(var(--zhusr-base-rgb), .10);
  color: var(--zhusr-gray);
  font-size: 24px;
  line-height: 68px;
  text-align: center;
  z-index: 1;
}
.single-service-style1 .btn-box a:hover {
  color: #ffffff;
}
.single-service-style1 .btn-box a:before {
  position: absolute;
  top: -2px;
  left: -2px;
  bottom: -2px;
  right: -2px;
  background: var(--zhusr-black);
  content: "";
  border-radius: 50%;
  z-index: -1;
  transform: scale(0.0);
  transform-origin: center;
  transform-style: preserve-3d;
  transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
}
.single-service-style1 .btn-box a:hover:before {
  transform: scale(1.0);
}
/*** 
=============================================
    service Style2 Area Css
=============================================
***/
.service-style2-area {
  position: relative;
  display: block;
  padding: 60px 0;
  background: #ffffff;
  z-index: 10;
}
.service-style2-area .gray-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 390px;
  background: #ebf1ed;
  z-index: -1;
}
.single-service-style2 {
  position: relative;
  display: block;
  margin-bottom: 40px;
}
.single-service-style2 .img-holder {
  position: relative;
  display: block;
  overflow: hidden;
}
.single-service-style2:hover .img-holder:before {
  transform: scale(1.0);
}
.single-service-style2 .img-holder .icon-box {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 100px;
  height: 100px;
  line-height: 100px;
  text-align: center;
  color: #ffffff;
  font-size: 60px;
  background: var(--zhusr-base);
  transition: all 500ms ease;
  z-index: 2;
}
.single-service-style2:hover .img-holder .icon-box {
  color: var(--zhusr-black);
}
.single-service-style2 .img-holder .icon-box:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: var(--zhusr-primary);
  z-index: 1;
  transform: scale(0.0);
  transform-origin: top;
  transform-style: preserve-3d;
  transition: all 500ms ease 100ms;
  z-index: -1;
}
.single-service-style2:hover .img-holder .icon-box:before {
  transform: scale(1.0);
}
.single-service-style2 .img-holder img {
  width: 100%;
}
.single-service-style2 .text-holder {
  position: relative;
  display: block;
  border: 1px solid #cad7cf;
  border-top: none;
  padding: 15px;
  box-shadow: 0 0 8px rgba(0, 0, 0, .3);
}
.single-service-style2:hover .text-holder {
  box-shadow: 0 0 18px rgba(0, 0, 0, .5);
}
.single-service-style2 .text-holder h3 {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.single-service-style2 .text-holder h3 a {
  color: var(--zhusr-black);
  font-weight: bold;
}
.single-service-style2 .text-holder h3 a:hover {
  color: var(--zhusr-base);
}
.single-service-style2:hover .text-holder h3 a {
  color: var(--zhusr-base);
}
.single-service-style2 .text-holder p {
  font-size: 18px;
  line-height: 34px;
  margin: 0;
}
/*** 
=============================================
    service Style3 Area Css
=============================================
***/
.service-style3-area {
  position: relative;
  display: block;
  padding: 100px 0;
  background: #ffffff;
  z-index: 10;
}
.service-style3-area .container {
  position: relative;
}
.service-style3-area .container::before {
  position: absolute;
  top: -120px;
  left: 215px;
  bottom: -80px;
  right: -100000px;
  background: #ebf1ed;
  content: "";
  z-index: -1;
}
.service-style3__top {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding-bottom: 44px;
}
.service-style3__top .sec-title {
  position: relative;
  display: block;
  padding: 0;
}
.service-style3__top .text {
  position: relative;
  top: -4px;
  display: block;
  max-width: 370px;
  width: 100%;
}
.service-style3__top .text p {
  margin: 0;
}
.service-style3-area .single-service-style1 {
  padding: 0;
  margin-bottom: 40px;
}
.service-style3-area .single-service-style1:before {
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
.service-style3-area .single-service-style1 .text h3 {
  margin: 0;
}
.service-style3-area .single-service-style1 .inner {
  padding: 48px 40px 40px;
}
.service-style3-area .single-service-style1 .inner .round-box {
  transform: scale(0);
  transition: all 300ms linear;
  transition-delay: 0.1s;
}
.service-style3-area .single-service-style1:hover .inner .round-box {
  transform: scale(1.0);
}
/*** 
=============================================
    Service Details Area Css
=============================================
***/
.service-details-area {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 120px 0px 120px;
  z-index: 10;
}
.service-details__sidebar {
  position: relative;
  display: block;
  max-width: 370px;
  width: 100%;
}
.view-all-service {
  position: relative;
  display: block;
}
.view-all-service .service-pages {
  position: relative;
  display: block;
}
.view-all-service .service-pages li {
  position: relative;
  display: block;
  margin-bottom: 10px;
}
.view-all-service .service-pages li:last-child {
  margin-bottom: 0px;
}
.view-all-service .service-pages li a {
  position: relative;
  display: block;
  background: #ebf1ed;
  padding: 0px 40px 0px;
  color: var(--zhusr-black);
  font-size: 16px;
  font-weight: 700;
  line-height: 60px;
  font-family: var(--zhusr-font);
  transition: all 200ms linear;
  transition-delay: 0.1s;
  z-index: 1;
}
.view-all-service .service-pages li a span {
  position: relative;
  display: block;
  color: #cbd7cf;
  font-size: 20px;
  font-weight: 700;
  float: right;
  line-height: 60px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}
.view-all-service .service-pages li.active a span, .view-all-service .service-pages li:hover a span {
  color: var(--zhusr-black);
}
.view-all-service .service-pages li a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: var(--zhusr-primary);
  transform: perspective(400px) scaleY(0);
  transform-origin: center;
  transition: all 300ms linear;
  transition-delay: 0.1s;
  z-index: -1;
}
.view-all-service .service-pages li:hover a::before, .view-all-service .service-pages li.active a::before {
  transform: perspective(400px) scaleY(1.0);
}
.service-details-contact-info {
  position: relative;
  display: block;
  background: var(--zhusr-base);
  padding: 50px 20px;
}
.service-details-contact-info .top-box {
  position: relative;
  display: block;
  margin-bottom: 20px;
}
.service-details-contact-info .top-box .icon {
  position: relative;
  display: block;
  width: 80px;
  height: 80px;
  background: var(--zhusr-primary);
  border-radius: 50%;
  text-align: center;
  color: var(--zhusr-black);
  font-size: 25px;
  margin: 0 auto 25px;
}
.service-details-contact-info .top-box .icon span::before {
  position: relative;
  display: inline-block;
  line-height: 80px;
}
.service-details-contact-info .top-box h2 {
  color: #ffffff;
  font-size: 30px;
  line-height: 40px;
  font-weight: 700;
}
.service-details-contact-info .bottom-box {
  position: relative;
  display: block;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  text-align: left;
}
.service-details-contact-info .bottom-box p {
  color: #fdc400;
  font-size: 28px;
  line-height: 26px;
  font-weight: 600;
  margin: 0;
}
.service-details-contact-info .bottom-box h2 {
  font-size: 18px;
  line-height: 26px;
  font-weight: 400;
  margin-top: 11px;
  color: #fff;
}
.service-details-contact-info .bottom-box h2 a {
  color: #ffffff;
}
.service-details-contact-info .bottom-box h2 a:hover {
  color: var(--zhusr-primary);
}
.service-details__content {
  position: relative;
  display: block;
}
.service-details__content .img-box1 {
  position: relative;
  display: block;
  overflow: hidden;
}
.service-details__content .img-box1::after {
  position: absolute;
  top: 0;
  left: -100%;
  content: '';
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
  transform: skewX(-25deg);
  z-index: 2;
}
.service-details__content .img-box1:hover::after {
  -webkit-animation: shine 1.5s;
  animation: shine 1.5s;
}
@-webkit-keyframes shine {
  100% {
    left: 125%;
  }
}
@keyframes shine {
  100% {
    left: 125%;
  }
}
.service-details__content .img-box1 img {
  width: 100%;
}
.service-details__content .text-box1 {
  position: relative;
  display: block;
  margin-top: 15px;
}
.service-details__content .text-box1 h2 {
  font-size: 34px;
  line-height: 44px;
  font-weight: 800;
  margin-bottom: 17px;
}
.service-details__content .text-box1 p {
  font-size: 16px;
  line-height: 1.8;
  margin: 10px 0;
  color: #565656;
}
.service-details__content .text-box2 {
  position: relative;
  display: block;
  margin-top: 48px;
  margin-bottom: 50px;
}
.service-details__content .text-box2 .text-box2-single {
  position: relative;
  display: block;
  border: 1px solid #cad7cf;
  padding: 21px 30px 17px;
}
.service-details__content .text-box2 .text-box2-single h4 {
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
}
.service-details__content .text-box2 .text-box2-single h4 span::before {
  position: relative;
  display: inline-block;
  color: var(--zhusr-primary);
  font-size: 20px;
  top: 2px;
  padding-right: 7px;
}
.service-details__content .text-box3 {
  position: relative;
  display: block;
}
.service-details__content .text-box3 p {
  font-size: 18px;
  line-height: 34px;
  margin: 0;
}
.service-details__content .text-box4 {
  position: relative;
  display: block;
  margin-top: 48px;
}
.service-details__content .text-box4 .img-box {
  position: relative;
  display: block;
}
.service-details__content .text-box4 .img-box img {
  width: 100%;
}
.service-details__content .text-box4 .content-box {
  position: relative;
  display: block;
  margin-top: -7px;
}
.service-details__content .text-box4 .content-box h2 {
  font-size: 30px;
  line-height: 40px;
  font-weight: 800;
  margin-bottom: 20px;
}
.service-details__content .text-box4 .content-box p {
  font-size: 20px;
  line-height: 34px;
  margin: 0;
}
.service-details__content .text-box4 .content-box ul {
  position: relative;
  display: block;
  margin-top: 33px;
}
.service-details__content .text-box4 .content-box ul li {
  position: relative;
  display: block;
  margin-bottom: 18px;
}
.service-details__content .text-box4 .content-box ul li:last-child {
  margin-bottom: 0;
}
.service-details__content .text-box4 .content-box ul li h4 {
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
}
.service-details__content .text-box4 .content-box ul li h4 span::before {
  position: relative;
  display: inline-block;
  color: var(--zhusr-primary);
  font-size: 20px;
  top: 2px;
  padding-right: 7px;
}
/*------------------------------------------------------
技术服务请联系
QQ：550988513
微信号：MubanBIZ
by mubanbiz.com
------------------------------------------------------*/
.team-style1-area {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 100px 0;
  z-index: 10;
}
.team-style1-area.pd120 {
  padding-bottom: 120px;
}
.single-team-style1 {
  position: relative;
  display: block;
  margin-bottom: 40px;
}
.single-team-style1 .img-holder {
  position: relative;
  display: block;
  padding-bottom: 110px;
}
.single-team-style1 .img-holder .inner {
  position: relative;
  display: block;
  overflow: hidden;
  background-color: var(--zhusr-base);
  z-index: 1;
}
.single-team-style1 .img-holder .inner img {
  width: 100%;
  transition: all 500ms linear;
  transition-delay: 0.2s;
}
.single-team-style1:hover .img-holder .inner img {
  transform: scale(1.1) rotate(0deg);
  opacity: 0.20;
  transition: all 500ms linear;
  transition-delay: 0.1s;
}
.single-team-style1 .title-holder {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 25px 0 25px;
}
.single-team-style1 .title-holder h2 {
  font-size: 24px;
  line-height: 30px;
  font-weight: 700;
}
.single-team-style1 .title-holder h2 a {
  color: var(--zhusr-black);
}
.single-team-style1 .title-holder h2 a:hover {
  color: var(--zhusr-primary);
}
.single-team-style1 .title-holder h3 {
  color: var(--zhusr-base);
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
}
.single-team-style1 .title-holder .overlay-title {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  background: #ffffff;
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
  padding: 26px 0px 30px;
  z-index: 2;
  transform: perspective(400px) rotateX(90deg);
  transform-origin: center;
  transition: all 500ms linear;
  transition-delay: 0.1s;
}
.single-team-style1:hover .title-holder .overlay-title, .single-team-style1.active .title-holder .overlay-title {
  opacity: 1;
  transform: perspective(400px) rotateY(0deg);
  transition: all 300ms linear;
  transition-delay: 0.1s;
}
.single-team-style1 .title-holder .overlay-title .social-links {
  position: relative;
  display: block;
  margin-top: 12px;
}
.single-team-style1 .title-holder .overlay-title .social-links li {
  position: relative;
  display: inline-block;
  margin-right: 6px;
}
.single-team-style1 .title-holder .overlay-title .social-links li:last-child {
  margin-right: 0px;
}
.single-team-style1 .title-holder .overlay-title .social-links li a {
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  background: #ebf1ed;
  border-radius: 50%;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  z-index: 1;
}
.single-team-style1 .title-holder .overlay-title .social-links li a:before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: var(--zhusr-base);
  content: "";
  border-radius: 50%;
  z-index: -1;
  transform: scale(0.0);
  transform-origin: center;
  transform-style: preserve-3d;
  transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
}
.single-team-style1 .title-holder .overlay-title .social-links li a:hover::before {
  transform: scaleX(1.0);
}
.single-team-style1 .title-holder .overlay-title .social-links li a i::before {
  color: var(--zhusr-black);
  font-size: 15px;
  line-height: 50px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}
.single-team-style1 .title-holder .overlay-title .social-links li a:hover i::before {
  color: #ffffff;
}
/*** 
=============================================
    Team Page Css
=============================================
***/
.team-page {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 100px 0;
  z-index: 10;
}
.team-element-page2 .single-team-style1 .title-holder {
  background: var(--zhusr-primary);
}
.team-style1-carousel.owl-carousel .owl-stage-outer {
  overflow: visible;
}
.team-style1-carousel.owl-carousel .owl-stage-outer .owl-item {
  opacity: 0;
  -webkit-transform: perspective(400px) rotateX(90deg) scaleY(0.5);
  -ms-transform: perspective(400px) rotateX(90deg) scaleY(0.5);
  transform: perspective(400px) rotateX(90deg) scaleY(0.5);
  -webkit-transform-origin: bottom;
  -ms-transform-origin: bottom;
  transform-origin: bottom;
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .5s;
  transition-property: all;
}
.team-style1-carousel.owl-carousel .owl-stage-outer .owl-item.active {
  opacity: 1;
  -webkit-transform: perspective(400px) rotateX(0deg) scaleY(1.0);
  -ms-transform: perspective(400px) rotateX(0deg) scaleY(1.0);
  transform: perspective(400px) rotateX(0deg) scaleY(1.0);
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .3s;
  transition-property: all;
}
/*------------------------------------------------------
技术服务请联系
QQ：550988513
微信号：MubanBIZ
by mubanbiz.com
------------------------------------------------------*/
.testimonial-style1-area {
  position: relative;
  display: block;
  overflow: hidden;
  background: #ffffff;
  padding-bottom: 96px;
  z-index: 10;
}
.testimonial-style1-area.pdtop120 {
  padding-top: 120px;
}
.testimonial-style1__content {
  position: relative;
  display: block;
}
.testimonials-style1__main-content {
  position: relative;
  display: block;
}
.testimonial-style1__conent-box {
  position: relative;
  display: block;
}
.testimonial-style1__conent-box .img-box {
  position: relative;
  display: block;
  width: 170px;
}
.testimonial-style1__conent-box .img-box .inner {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 50%;
}
.testimonial-style1__conent-box .img-box img {
  width: 100%;
  border-radius: 50%;
}
.testimonial-style1__conent-box .img-box .quote-icon {
  position: absolute;
  top: 0;
  right: -20px;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.testimonial-style1__conent-box .img-box .quote-icon span:before {
  position: relative;
  display: block;
  width: 40px;
  height: 40px;
  background: var(--zhusr-primary);
  border-radius: 50%;
  color: var(--zhusr-black);
  font-size: 12px;
  line-height: 40px;
  text-align: center;
}
.testimonial-style1__conent-box .text-box {
  position: relative;
  display: block;
  top: -12px;
}
.testimonial-style1__conent-box .text-box h2 {
  color: var(--zhusr-black);
  font-size: 34px;
  line-height: 54px;
  font-weight: 400;
}
.testimonial-style1__conent-box .text-box .client-info {
  position: relative;
  display: block;
  padding-top: 30px;
}
.testimonial-style1__conent-box .text-box .client-info h3 {
  color: var(--zhusr-base);
  font-size: 20px;
  line-height: 22px;
  font-weight: 700;
  margin: 0 0 0px;
}
.testimonial-style1__conent-box .text-box .client-info span {
  font-size: 16px;
  font-weight: 500;
}
#testimonials-style1__thumb {
  position: absolute;
  max-width: 230px;
  margin: 0;
  left: -30px;
  right: 0;
  top: 190px;
  overflow: hidden;
}
#testimonials-style1__thumb .swiper-slide.swiper-slide-active {
  position: relative;
  display: block;
  width: 70px;
  height: 70px;
  opacity: 1.0;
}
#testimonials-style1__thumb .swiper-slide.swiper-slide-thumb-active {
  opacity: 1.0;
}
.testimonial-style1__img-holder {
  position: relative;
  display: block;
  width: 70px;
  height: 70px;
  overflow: hidden;
  border-radius: 50%;
  cursor: pointer;
}
#testimonials-style1__carousel-pagination {
  position: absolute;
  right: 0;
  bottom: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
#testimonials-style1__carousel-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: var(--zhusr-black);
  opacity: 1;
  border: 0;
  transition: all 500ms ease;
  margin: 0;
  display: block;
}
#testimonials-style1__carousel-pagination .swiper-pagination-bullet + .swiper-pagination-bullet {
  margin-left: 10px;
}
#testimonials-style1__carousel-pagination .swiper-pagination-bullet-active {
  background-color: var(--zhusr-primary);
}
/*** 
=============================================
   Testimonial Style2 Area Css
=============================================
***/
.testimonial-style2-area {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 120px 0px 120px;
  z-index: 11;
}
.testimonial-style2-area .shape1 {
  position: absolute;
  top: 665px;
  right: 0;
}
.testimonial-style2__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 665px;
  background-attachment: scroll;
  background-repeat: no-repeat;
  background-position: top center;
  background-color: var(--zhusr-base);
  background-blend-mode: luminosity;
  z-index: -1;
}
.testimonial-style2__bg:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: var(--zhusr-base);
  opacity: 0.95;
}
.testimonial-style2__single {
  position: relative;
  display: block;
}
.testimonial-style2__single .img-holder {
  position: relative;
  display: block;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 30px;
  background-color: var(--zhusr-base);
}
.testimonial-style2__single .img-holder img {
  width: 100%;
  transition: all 500ms linear;
  transition-delay: 0.2s;
}
.testimonial-style2__single:hover .img-holder img {
  transform: scale(1.1) rotate(2deg);
  opacity: 0.20;
  transition: all 500ms linear;
  transition-delay: 0.1s;
}
.testimonial-style2__single .text-holder {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 40px 40px 40px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}
.testimonial-style2__single .text-holder::before {
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  width: 60px;
  margin: 0 auto;
  border-bottom: 20px solid #ffffff;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  content: "";
}
.testimonial-style2__single .text-holder p {
  font-size: 20px;
  line-height: 36px;
  margin: 0;
}
.testimonial-style2__single .text-holder .client-info {
  position: relative;
  display: block;
  margin-top: 30px;
}
.testimonial-style2__single .text-holder .client-info h3 {
  color: var(--zhusr-base);
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
  font-family: var(--zhusr-font);
}
.testimonial-style2__single .text-holder .client-info span {
  color: var(--zhusr-primary);
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
}
.testimonial-style2__inner-content {
  position: relative;
  display: block;
  overflow: hidden;
}
.testimonial-style2__carousel.owl-carousel {
  position: relative;
  display: block;
  max-width: 370px;
  width: 100%;
  margin: 0 auto;
}
.testimonial-style2__carousel.owl-carousel .owl-stage-outer {
  padding-bottom: 50px;
  overflow: visible;
}
.testimonial-style2__carousel.owl-carousel .owl-stage-outer .owl-item {
  transition: all 500ms linear;
  transition-delay: 0.1s;
}
.testimonial-style2__carousel.owl-carousel .owl-stage-outer .owl-item.active {
  opacity: 1;
}
.testimonial-style2__carousel.owl-carousel .owl-stage-outer .owl-item.active .testimonial-style2__single .text-holder {
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
  transition: all 700ms ease 500ms;
}
.testimonial-style2__carousel.owl-carousel.owl-dot-style1 .owl-dots {
  top: -2px;
}
/*** 
=============================================
   Testimonial Page Css
=============================================
***/
.testimonial-page {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 120px 0 60px;
  z-index: 10;
}
.testimonial-page .testimonial-style2__single {
  margin-bottom: 60px;
}
.testimonial-page .testimonial-style2__single .text-holder {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 40px 40px 40px;
  box-shadow: 0px 10px 60px 0px rgb(0 0 0 / 7%);
}
.testimonial-page .testimonial-style2__single .text-holder::before {
  border-bottom: 20px solid #e9ebea;
}
/*------------------------------------------------------
技术服务请联系
QQ：550988513
微信号：MubanBIZ
by mubanbiz.com
------------------------------------------------------*/
.partner-area {
  position: relative;
  display: block;
  background: #ffffff;
  padding-bottom: 120px;
  z-index: 10;
}
.partner-area.pdtop120 {
  padding-top: 120px;
}
.brand-content {
  position: relative;
  display: block;
}
.brand-content .inner {
  position: relative;
  display: block;
}
.partner-box {
  position: relative;
  display: block;
}
.partner-box li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.single-partner-logo-box {
  position: relative;
  display: block;
  text-align: center;
  border: 1px solid rgba(var(--zhusr-base-rgb), .10);
  z-index: 1;
}
.single-partner-logo-box:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  border: 1px solid rgba(var(--zhusr-base-rgb), .50);
  transform: perspective(400px) scaleX(0);
  transform-origin: center;
  transition: all 500ms linear;
  transition-delay: 0.5s;
  z-index: -1;
}
.single-partner-logo-box:hover:before {
  transform: perspective(400px) scaleX(1.0);
}
.single-partner-logo-box a {
  position: relative;
  display: inline-block;
  overflow: hidden;
  padding: 15px 0;
}
.single-partner-logo-box a img {
  opacity: 0.20;
  width: auto;
  transition: all 0.2s ease-in-out 0.1s;
}
.single-partner-logo-box:hover a img {
  opacity: .60;
  transition: all 0.8s ease-in-out 0.1s;
}
.partner-carousel.owl-carousel.owl-dot-style1 .owl-dots {
  display: none;
}
/*** 
=============================================
    Partner Area Style2 Css
=============================================
***/
.partner-area--style2 {
  background: var(--zhusr-primary);
  padding-top: 120px;
  padding-bottom: 120px;
}
.partner-area--style2.gray-bg {
  background: #ebf1ed;
}
.partner-area--style2 .single-partner-logo-box:before {
  border: 1px solid #222222;
}
.partner-area--style2 .single-partner-logo-box a {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 15px 0;
}
.partner-area--style2 .single-partner-logo-box a img {
  width: auto;
}
.zhusr-nr {
  box-shadow: 0 0 8px rgba(0, 0, 0, .1);
  padding: 15px;
}
.zhusr-nr .text-box1 h2 {
  text-align: center;
  font-size: 22px;
  margin-bottom: 5px;
}
.zhusr-next-bx {
  border-top: 1px solid #ddd;
  padding-bottom: 20px;
  padding-top: 20px;
  margin-top: 30px;
}
.zhusr-nr .meta-info {
  position: relative;
  display: flex;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid #ddd;
  margin-bottom: 15px;
}
.zhusr-nr .meta-info {
  position: relative;
  display: block;
  color: #737c76;
  font-size: 14px;
  line-height: 22px;
  font-weight: 600;
  text-align: center
}
.zhusr-nr .meta-info i {
  position: relative;
  display: inline-block;
  padding-right: 5px;
  color: var(--zhusr-base);
}
.zhusr-nr .meta-info a {
  color: var(--zhusr-gray);
  transition: all 200ms linear;
  transition-delay: 0.1s;
  padding-right: 15px;
}
.zhusr-nr .meta-info a:hover {
  color: var(--zhusr-primary);
}
.single-service-style2 .blog-title {
  font-size: 18px;
  line-height: 2;
  font-weight: 600;
  text-align: center;
}
.single-service-style2 .blog-title a {
  color: var(--zhusr-black);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}
.single-service-style2 .blog-title a:hover {
  color: var(--zhusr-primary);
}
.single-service-style2 .text-inner {
  border: 1px solid #cad7cf;
  border-left: 1px solid #cad7cf;
  padding: 5px;
}
.inner-content .title h2 {
  margin-bottom: 30px;
}
.inner-content .breadcrumb-menu {
  color: #fff;
}
.inner-content .breadcrumb-menu a {
  color: #fff;
  margin: 0 5px;
}
.zhusr-bt-yc h3 {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.zhusr-index-case h3 {
  text-align: center;
}
.zhusr-side {
  position: fixed;
  width: 78px;
  right: 0;
  top: 50%;
  margin-top: -200px;
  z-index: 100;
  border: 1px solid #e0e0e0;
  background: #fff;
  border-bottom: 0
}
.zhusr-side ul {
  padding: 0px;
  margin: 0px;
}
.zhusr-side ul li {
  width: 78px;
  height: 78px;
  float: left;
  position: relative;
  border-bottom: 1px solid #e0e0e0;
  color: #333;
  font-size: 14px;
  line-height: 38px;
  text-align: center;
  transition: all .3s;
  cursor: pointer;
  list-style: none;
}
.zhusr-side ul li:hover {
  background: #006940;
  color: #fff
}
.zhusr-side ul li:hover a {
  color: #fff
}
.zhusr-side ul li i {
  height: 25px;
  margin-bottom: 1px;
  display: block;
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: auto 25px;
  margin-top: 14px;
  transition: all .3s;
  color: #006940;
}
.zhusr-side ul li:hover i {
  color: #fff;
  -webkit-transition: all 0.5s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.zhusr-side ul li .zhusr-sidebox {
  position: absolute;
  width: 78px;
  height: 78px;
  top: 0;
  right: 0;
  transition: all .3s;
  overflow: hidden
}
.zhusr-side ul li.zhusr-sidetop {
  background: #006940;
  color: #fff
}
.zhusr-side ul li.zhusr-sidetop:hover {
  opacity: .8;
  filter: Alpha(opacity=80)
}
.zhusr-side ul li.zhusr-sideewm .ewBox.son {
  width: 238px;
  display: none;
  color: #363636;
  text-align: center;
  padding: 15px;
  position: absolute;
  left: -240px;
  top: 0;
  background-repeat: no-repeat;
  background-position: center center;
  border: 1px solid #e0e0e0
}
.zhusr-side ul li.zhusr-sideetel .zhusr-telBox.son {
  width: 240px;
  height: 237px;
  display: none;
  color: #fff;
  text-align: left;
  position: absolute;
  left: -240px;
  top: -79px;
  background: #006940
}
.zhusr-side ul li.zhusr-sideetel .zhusr-telBox dd {
  display: block;
  height: 120px;
  overflow: hidden;
  padding-left: 50px;
  line-height: 24px;
  font-size: 18px
}
.zhusr-side ul li.zhusr-sideetel .zhusr-telBox dd span {
  display: block;
  line-height: 28px;
  height: 28px;
  overflow: hidden;
  margin-top: 32px;
  font-size: 18px
}
.zhusr-side ul li.zhusr-sideetel .zhusr-telBox dd.zhusr-bgs1 {
  background-color: #28a745;
}
.zhusr-side ul li:hover .son {
  display: block !important;
  animation: fadein 1s
}
.zhusr-side li i {
  font-size: 22px;
}
.zhusr-side a {
  color: #000;
}
.zhusr-img-big {
  position: relative;
  overflow: hidden;
}
.zhusr-img-big img {
  transition: 1s;
  -webkit-transition: 1s;
  -moz-transition: 1s;
  -ms-transition: 1s;
  -o-transition: 1s;
  vertical-align: middle
}
.zhusr-img-big img:hover {
  transform: scale(1.08);
  -webkit-transform: scale(1.08);
  -moz-transform: scale(1.08);
  -ms-transform: scale(1.08);
  -o-transform: scale(1.08);
}
.zhusr-sideewm .son p {
  margin-bottom: 0px;
}
@media only screen and (min-width: 769px) {
  .pcbxs {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  .zhusr-m-ft-h {
    display: block;
    width: 100%;
    height: 70px;
  }
}
#zhusr-m-contact {
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 888;
  height: 70px;
  left: 0;
}
#zhusr-m-contact .list {
  width: 100%;
  max-width: 640px;
  min-width: 320px;
  margin: 0 auto;
  background: #006940;
}
#zhusr-m-contact .list li {
  float: left;
  width: 25%;
  text-align: center;
}
#zhusr-m-contact .list i {
  color: #fff;
  font-size: 18px;
}
#zhusr-m-contact .list a {
  display: block;
  height: 70px;
  font-size: 16px;
  padding-top: 7px;
}
#zhusr-m-contact .list a span {
  text-align: center;
  color: #fff;
  display: block;
  font-size: 14px;
}
#zhusr-m-contact .list a s {
  margin-left: auto;
  margin-right: auto;
  width: 0.31rem;
  height: 0.32rem;
  display: block;
  margin-bottom: .12rem;
  background-position: -.76rem -.2rem;
}
#zhusr-m-contact .list li:nth-child(2) s {
  background-position: -.0rem -.2rem;
}
#zhusr-m-contact .list li:nth-child(3) s {
  background-position: -.38rem -.2rem;
}
#zhusr-m-contact .list li:nth-child(4) s {
  background-position: -1.2rem -.2rem;
  width: .34rem;
  height: .34rem;
}
#zhusr-m-contact .list li:hover {
  background-color: #28a745;
}
#zhusr-weixin-nr {
  width: 100%;
  height: 100%;
  max-width: 640px;
  min-width: 320px;
  position: fixed;
  top: 0;
  z-index: 1000;
  display: none;
  background: rgba(0, 0, 0, .6);
}
#zhusr-weixin-nr .nrdf {
  margin: auto;
  position: absolute;
  top: 20%;
  left: 0;
  right: 0;
  width: 80%;
  height: 60%;
  padding: 15px;
  padding-top: 60px;
  margin-top: 25px;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.8);
  box-shadow: 0px 2px 6px #777;
  -webkit-box-shadow: 0px 2px 6px #777;
  -moz-box-shadow: 0px 2px 6px #777;
  border-radius: 10px;
}
#zhusr-weixin-nr img {
  width: 200px;
  height: 200px;
  display: block;
  margin: 0 auto;
  margin-bottom: 30px;
}
#zhusr-weixin-nr p {
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 10px;
}
#zhusr-weixin-nr i {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 20px;
  height: 20px;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  color: #fff;
  font-weight: bold;
  font-style: normal;
  background: #006940;
  border-radius: 50px;
  cursor: pointer;
}
#zhusr-weixin-nr span {
  display: inline-block;
  padding: 3px 15px;
  ;
  line-height: 2;
  background-color: #006940;
  color: #fff;
  border-radius: 10px;
  cursor: pointer;
}
#weixin {
  position: fixed;
  top: 50%;
  margin-top: 25px;
  z-index: 9999999;
  font-size: 14px;
  color: #fff;
  width: 90%;
  right: 5%;
  line-height: 2.5;
  text-align: center;
  background: rgba(0, 0, 0, 0.8);
  border: 2px solid #333;
  border-radius: 0.1rem;
  display: none;
}
.zhusr-nyban img {
  width: 100%;
}
.about-style1-area {
  padding: 100px 0;
}
.dowebok {
  margin: 0 auto;
}
.swiper-container {
  margin: 0 auto;
  overflow: visible;
}
.swiper-container:hover .swiper-button-next, .swiper-container:hover .swiper-button-prev {
  display: block;
}
.swiper-slide {
  position: relative;
  opacity: 0 !important;
}
.swiper-slide img {
  width: 100%;
}
.swiper-slide-active {
  opacity: 1 !important;
}
.swiper-slide .ren {
  position: absolute;
  left: 0;
  top: 0;
  width: 1436px;
  height: 840px;
}
.swiper-button-next, .swiper-button-prev {
  display: none;
  width: 40px;
  height: 68px;
  background-size: contain;
}
.swiper-button-next {
  right: 100px;
  background-image: url(/skin/img/next.png);
}
.swiper-button-prev {
  left: 100px;
  background-image: url(/skin/img/prev.png);
}
.swiper-container-horizontal .swiper-pagination-bullets {
  bottom: 40px;
}
.swiper-pagination-bullet {
  width: 70px;
  height: 4px;
  margin: 0 10px !important;
  padding: 6px 0;
  border-radius: 0;
  background-color: transparent;
  opacity: 1;
}
.swiper-pagination-bullet:after {
  content: "";
  display: block;
  height: 4px;
  background-color: #69dbae;
  opacity: 1;
}
.swiper-pagination-bullet:hover:after, .swiper-pagination-bullet-active:after {
  background-color: #056e45;
}