:root {
  --padding100: 100px;
  --padding50: 50px;
  --main-color: #FF5B2E;
  --section-bg: #FCF1E8;
  --section-bg2: #FFF9ED;
}
@media screen and (max-width: 1440px) {
  :root {
    --padding100: 80px;
    --padding50: 45px;
  }
}
@media screen and (max-width: 1200px) {
  :root {
    --padding100: 70px;
    --padding50: 40px;
  }
}
@media screen and (max-width: 768px) {
  :root {
    --padding100: 60px;
    --padding50: 30px;
  }
}
img {
  height: auto;
}
.mod-title {
  text-align: center;
  font-size: 52px;
  font-weight: initial;
  color: #222;
  line-height: 1.4;
  font-family: "Fredoka One";
}
/* 文字行数限制 */
.text-two {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.text-three {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
/* 文字行数限制 end*/
/* 图片限制 */
.img_box img,
.img_box iframe,
.img_box video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.img_box {
  overflow: hidden;
  position: relative;
  display: block;
}
.img_box img {
  transition: all 0.5s;
  object-fit: cover;
}
/* 图片限制 end*/
#carter-edit {
  text-align: left;
}
#carter-edit td,
#carter-edit th {
  border: 1px solid #ddd;
  padding: 8px;
}
#carter-edit p {
  font-size: 18px;
  line-height: 1.75;
  color: #333;
  margin-bottom: 5px;
}
#carter-edit h2,
#carter-edit h3,
#carter-edit h4,
#carter-edit h5,
#carter-edit h6 {
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
  margin-top: 0;
}
#carter-edit h2 {
  font-size: 36px;
  line-height: 1.35;
}
#carter-edit h3 {
  font-size: 30px;
  line-height: 1.45;
}
#carter-edit h4 {
  font-size: 26px;
  line-height: 1.45;
}
#carter-edit h5 {
  font-size: 24px;
  line-height: 1.65;
}
#carter-edit h6 {
  font-size: 20px;
  line-height: 1.65;
}
@media screen and (max-width: 1440px) {
  #carter-edit h2 {
    font-size: 34px;
    line-height: 1.35;
  }
  #carter-edit h3 {
    font-size: 26px;
    line-height: 1.45;
  }
  #carter-edit h4 {
    font-size: 22px;
    line-height: 1.45;
  }
  #carter-edit h5 {
    font-size: 18px;
    line-height: 1.65;
  }
  #carter-edit h6 {
    font-size: 18px;
    line-height: 1.65;
  }
}
@media screen and (max-width: 1200px) {
  #carter-edit p {
    font-size: 16px;
  }
  #carter-edit h2 {
    font-size: 30px;
    line-height: 1.35;
  }
  #carter-edit h3 {
    font-size: 26px;
    line-height: 1.45;
  }
  #carter-edit h4 {
    font-size: 22px;
    line-height: 1.45;
  }
  #carter-edit h5 {
    font-size: 20px;
    line-height: 1.65;
  }
  #carter-edit h6 {
    font-size: 16px;
    line-height: 1.65;
  }
}
/* slick 改造 */
.slick-slider {
  position: relative;
}
.slick-slider .slick-prev,
.slick-slider .slick-next {
  opacity: 0;
  top: 0;
  overflow: hidden;
  visibility: hidden;
  position: absolute;
  z-index: -2;
  top: 50%;
  transform: translateY(-50%);
}
.slick-slider .slick-prev {
  left: 0;
}
.slick-slider .slick-next {
  right: 0;
}
/* dots */
.slick-dots {
  position: static;
  text-align: center;
  margin-top: 30px;
  --wh: 10px;
  --margin-x: 6px;
  --bg: #fff;
}
.slick-dots li {
  display: inline-block;
  width: var(--wh);
  height: var(--wh);
  margin: 0 var(--margin-x);
  border-radius: 50%;
  cursor: pointer;
  background-color: var(--bg);
  transition: all 0.5s;
}
.slick-dots li button {
  color: transparent !important;
  display: none;
}
.slick-dots li.slick-active {
  background-color: var(--main-color);
}
/* slick 改造 end*/
.home-product {
  padding: var(--padding100) 0;
  overflow: hidden;
}
.home-product-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 -15px -24px;
}
.home-product-nav .items {
  min-width: 160px;
  padding: 15px 24px;
  font-size: 18px;
  line-height: 1.65;
  margin: 0 14px 24px;
  border-radius: 10px;
  background-color: #222;
  color: #fff;
  cursor: pointer;
  transition: all 0.5s;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .home-product-nav .items {
    min-width: 120px;
    padding: 15px 24px;
  }
}
.home-product-nav .items:hover,
.home-product-nav .items.active {
  background-color: var(--main-color);
  color: #fff;
}
.home-product-content {
  margin-top: calc(var(--padding50) * 0.8);
  margin-left: auto;
  margin-right: auto;
  width: 1200px;
  max-width: 100%;
}
.home-product-des {
  margin-bottom: 40px;
  text-align: center;
}
@media screen and (max-width: 1200px) {
  .home-product-des {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 768px) {
  .home-product-des {
    margin-bottom: 20px;
  }
}
.home-product-des > div {
  font-size: 18px;
  line-height: 1.7;
}
.home-product-sitem:not(:first-child) {
  display: none;
}
.home-product-slick > .slick-list {
  overflow: initial !important;
}
.home-product-sitem {
  position: relative;
}
.home-product-list {
  margin: 0 -15px;
}
.home-product-list .slick-dots {
  --bg: #ddd;
  margin-top: 25px;
}
.home-product-item {
  width: 33.333333%;
  padding: 10px 15px 15px;
  position: relative;
}
.home-product-arrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: calc(100% + 180px);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  pointer-events: none;
  position: absolute;
}
@media screen and (max-width: 1440px) {
  .home-product-arrow {
    width: calc(100% + 50px);
  }
}
@media screen and (max-width: 768px) {
  .home-product-arrow {
    display: none;
  }
}
.mod-prev,
.mod-next {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #222;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
  transition: all 0.5s;
  cursor: pointer;
}
.mod-prev svg,
.mod-next svg {
  width: 20px;
}
.mod-prev path,
.mod-next path {
  transition: all 0.5s;
}
.mod-prev:hover,
.mod-next:hover {
  background-color: var(--main-color);
}
.mod-prev svg {
  transform: rotate(-180deg);
}
.home-product-item:not(:first-child) {
  display: none;
}
.home-product-link {
  display: flex;
  height: 100%;
  flex-direction: column;
  box-shadow: 0px 2px 10px 2px rgba(21, 44, 88, 0.05);
  border-radius: 20px;
  overflow: hidden;
}
.home-product-link .img_box {
  padding-top: 96.3636363%;
  flex-shrink: 0;
}
.home-product-link .img_box:hover img {
  transform: scale(1.05);
}
.home-product-link .content {
  height: 100%;
  background-color: #fff;
  padding: 35px 15px;
  text-align: center;
}
@media screen and (max-width: 1200px) {
  .home-product-link .content {
    padding: 25px 15px 30px;
  }
}
.home-product-link .content .tits {
  margin-bottom: 10px;
  transition: all 0.5s;
}
.home-product-link .content .tits,
.home-product-link .content .tits a {
  font-size: 20px;
  color: #222;
  line-height: 1.65;
}
.home-product-link .content .texts {
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 20px;
}
.home-product-link .content .links {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  padding: 11px 24px;
  border-radius: 50px;
  border: 2px solid var(--main-color);
  color: var(--main-color);
  line-height: 1.65;
}
.home-product-link .content .tits a:hover {
  color: var(--main-color);
}
.home-product-link .content .links:hover {
  color: #fff;
  background-color: var(--main-color);
}
.page-banner {
  position: relative;
}
.page-banner .slick-dots {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 30px;
  z-index: 6;
}
.page-banner .breadcumb-btn {
  margin-top: 30px;
}
.page-banner-item:not(:first-child) {
  display: none;
}
.page-title {
  margin-bottom: var(--padding50);
  text-align: center;
}
.page-title .titles {
  font-size: 46px;
  font-weight: initial;
  line-height: 1.5;
  font-family: "Fredoka One";
}
@media screen and (max-width: 1440px) {
  .page-title .titles {
    font-size: 42px;
  }
}
@media screen and (max-width: 1200px) {
  .page-title .titles {
    font-size: 38px;
  }
}
@media screen and (max-width: 991px) {
  .page-title .titles {
    font-size: 36px;
  }
}
@media screen and (max-width: 768px) {
  .page-title .titles {
    font-size: 30px;
  }
}
.page-title .texts {
  font-size: 16px;
  line-height: 1.65;
  margin-top: 12px;
}
@media screen and (max-width: 1440px) {
  .page-title .texts {
    margin-top: 10px;
  }
}
.service-main {
  padding: var(--padding100) 0;
}
.service-item:not(:last-child) {
  margin-bottom: 40px;
}
.service-content {
  display: flex;
  padding: 30px;
  background-color: var(--section-bg);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.5s;
  --x: 40px;
}
@media screen and (max-width: 991px) {
  .service-content {
    --x: 20px;
  }
}
@media screen and (max-width: 768px) {
  .service-content {
    --x: 0;
    flex-direction: column !important;
    padding: 20px;
  }
}
.service-content .lefts {
  width: 38%;
}
@media screen and (max-width: 768px) {
  .service-content .lefts {
    width: 100%;
  }
}
.service-content .lefts .img_box {
  padding-top: 96.36363636%;
  height: 100%;
  border-radius: 20px;
}
.service-content .lefts .img_box:hover img {
  transform: scale(1.05);
}
.service-content .rights {
  width: 62%;
  padding: 40px var(--x);
  display: flex;
  justify-content: center;
  align-items: flex-end;
  flex-direction: column;
  text-align: right;
}
@media screen and (max-width: 991px) {
  .service-content .rights {
    padding: 20px var(--x);
  }
}
@media screen and (max-width: 768px) {
  .service-content .rights {
    width: 100%;
    text-align: left;
    align-items: flex-start;
  }
}
.service-content .rights .titles,
.service-content .rights .titles a {
  font-size: 32px;
  font-weight: bold;
  line-height: 1.6;
  color: #333;
  margin-bottom: 0;
  transition: all 0.5s;
}
@media screen and (max-width: 1440px) {
  .service-content .rights .titles,
  .service-content .rights .titles a {
    font-size: 30px;
  }
}
@media screen and (max-width: 991px) {
  .service-content .rights .titles,
  .service-content .rights .titles a {
    font-size: 26px;
  }
}
@media screen and (max-width: 768px) {
  .service-content .rights .titles,
  .service-content .rights .titles a {
    font-size: 24px;
  }
}
.service-content .rights .titles {
  margin-bottom: 0;
}
.service-content .rights .titles:hover,
.service-content .rights .titles a:hover {
  color: var(--main-color);
}
.service-content .rights .texts {
  margin-top: 10px;
  font-size: 18px;
  line-height: 1.65;
  width: 650px;
  max-width: 100%;
}
@media screen and (max-width: 991px) {
  .service-content .rights .texts {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .service-content .rights .texts {
    margin-top: 4px;
  }
}
.service-content .rights .links {
  margin-top: 35px;
  padding: 12px 24px;
  border-radius: 50px;
  color: var(--main-color);
  font-size: 18px;
  font-weight: bold;
  line-height: 1.45;
  border: 2px solid var(--main-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
@media screen and (max-width: 1440px) {
  .service-content .rights .links {
    margin-top: 30px;
  }
}
@media screen and (max-width: 991px) {
  .service-content .rights .links {
    margin-top: 25px;
    font-size: 16px;
  }
}
.service-content .rights .links::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  transition: all 0.5s;
  background-color: var(--main-color);
  width: 0;
  z-index: -1;
}
.service-content .rights .links:hover {
  color: #fff;
}
.service-content .rights .links:hover::after {
  width: 100%;
}
.service-item.reverse-active .service-content {
  flex-direction: row-reverse;
}
.service-item.reverse-active .service-content .rights {
  align-items: flex-start;
  text-align: left;
}
@media screen and (max-width: 1440px) {
  .service-item.reverse-active .service-content .rights {
    padding-left: 0 !important;
  }
}
.service-content:hover {
  box-shadow: 0 3px 12px 2px rgba(0, 0, 0, 0.15);
}
.section-padding {
  padding: var(--padding100) 0;
}
.section-title {
  margin-bottom: var(--padding50);
}
.section-title h2 {
  font-size: 50px;
  line-height: 1.3;
}
@media screen and (max-width: 1440px) {
  .section-title h2 {
    font-size: 44px;
  }
}
@media screen and (max-width: 1200px) {
  .section-title h2 {
    font-size: 38px;
  }
}
@media screen and (max-width: 991px) {
  .section-title h2 {
    font-size: 34px;
  }
}
@media screen and (max-width: 768px) {
  .section-title h2 {
    font-size: 32px;
  }
}
.faq-section {
  background-color: #FFF9ED;
  overflow: hidden;
}
.faq-section .wpo-checkout-area .caupon-wrap:last-child {
  margin-bottom: 0;
}
.faq-section .flexs {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 -25px;
}
@media screen and (max-width: 991px) {
  .faq-section .flexs {
    flex-direction: column;
  }
}
.faq-section .lefts {
  width: 50%;
  padding: 0 25px;
}
@media screen and (max-width: 991px) {
  .faq-section .lefts {
    width: 100%;
    display: none;
  }
}
.faq-section .lefts .img_box {
  padding-top: 81.39534884%;
  border-radius: 20px;
}
.faq-section .rights {
  width: 50%;
  padding: 0 25px;
}
@media screen and (max-width: 991px) {
  .faq-section .rights {
    width: 100%;
  }
}
.wpo-site-footer .about-widget h2 {
  font-size: 40px;
  line-height: 1.5;
  margin-bottom: 40px;
  font-family: initial;
  font-weight: bold;
}
.wpo-contact-pg-section .office-info .office-info-item .office-info-text p a:hover {
  color: var(--main-color);
}
.office-info .office-info-icon .icon {
  font-size: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.office-info .office-info-icon .icon svg {
  width: 42.3529411%;
}
.office-info .office-info-icon .icon path {
  fill: var(--main-color);
}
.wpo-contact-pg-section .office-info .office-info-item .office-info-text h2 {
  font-size: 28px;
}
.wpo-contact-pg-section .wpo-contact-title h2 {
  font-size: 42px;
}
.wpo-contact-pg-section .wpo-contact-title {
  margin-bottom: var(--padding50);
}
.office-forms {
  position: relative;
  z-index: 1;
}
.office-forms .shape-1 {
  left: 0;
}
.office-forms .shape-2 {
  right: 0;
  transform: rotateY(180deg);
}
.office-forms .shape-1,
.office-forms .shape-2 {
  position: absolute;
  width: 120px;
  top: 10px;
  z-index: -1;
}
.office-forms .shape-1 img,
.office-forms .shape-2 img {
  width: 100%;
}
.breadcumb-my h1 {
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  color: inherit;
  margin-bottom: 0;
  font-family: inherit;
}
.wpo-blog-list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px -40px;
}
.wpo-blog-list .post.format-standard-image {
  width: 50%;
  padding: 0 15px;
  margin-bottom: 40px;
}
.wpo-blog-pg-section .entry-meta ul li {
  margin-left: 0px;
  padding-left: 13px;
}
.wpo-blog-pg-section .entry-meta {
  margin: 20px 0 15px;
}
.wpo-blog-pg-section .post h3 {
  font-size: 22px;
  font-weight: 500;
  font-family: initial;
  line-height: 1.55;
  margin-bottom: 10px;
}
.wpo-blog-pg-section .post .entry-text {
  margin-bottom: 18px;
}
.my_sticky {
  top: 130px;
}
.wpo-blog-pg-section {
  overflow: initial;
}
.mod-media {
  display: flex;
  margin-top: 30px;
}
.mod-media li {
  margin-right: 14px;
}
.mod-media a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: var(--main-color);
}
.mod-media a svg {
  width: 46%;
}
.mod-media a:hover {
  background-color: #222;
}
#form-div .flexs {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  #form-div .flexs {
    flex-direction: column;
  }
}
#form-div .lefts,
#form-div .rights {
  width: 50%;
}
@media screen and (max-width: 768px) {
  #form-div .lefts,
  #form-div .rights {
    width: 100%;
  }
}
#form-div .lefts .img_box {
  padding-top: 58.6206896%;
  height: 100%;
}
#form-div .rights {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 60px 120px 75px 80px;
}
@media screen and (max-width: 1440px) {
  #form-div .rights {
    padding: 60px 90px 60px 50px;
  }
}
@media screen and (max-width: 1200px) {
  #form-div .rights {
    padding: 50px 80px 50px 35px;
  }
}
#form-div .rights .section-title {
  margin-bottom: 25px;
}
.related-product {
  padding: var(--padding100) 0;
  overflow: hidden;
}
.related-product .slick-dots {
  --bg: #ddd;
  margin-top: 30px;
}
.related-product-slick {
  position: relative;
  z-index: 1;
}
.related-product-slick .shape-1,
.related-product-slick .shape-2 {
  position: absolute;
  width: 150px;
  z-index: -1;
}
.related-product-slick .shape-1 {
  right: calc(100% + 50px);
  top: 0;
}
.related-product-slick .shape-2 {
  left: calc(100% + 50px);
  bottom: 0;
}
.related-product-slick .shape-1 img,
.related-product-slick .shape-2 img {
  width: 100%;
}
.related-product-list {
  margin: -10px -15px 0;
}
.related-product-item {
  padding: 10px 15px;
}
.related-product-arrow,
.related-product-arrows {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: calc(100% + 170px);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  pointer-events: none;
  position: absolute;
}
@media screen and (max-width: 1440px) {
  .related-product-arrow,
  .related-product-arrows {
    width: calc(100% + 46px);
  }
}
@media screen and (max-width: 1200px) {
  .related-product-arrow,
  .related-product-arrows {
    display: none;
  }
}
.about-section .about-video .video-holder a {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.funfact-section {
  background-color: #fff;
}
.about-history {
  background-color: #2d2d2d;
  position: relative;
  overflow: hidden;
  padding: var(--padding100) 0;
  z-index: 1;
}
.about-history .page-title .titles,
.about-history .page-title .texts {
  color: #fff;
}
.about-history .about-history-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  object-fit: cover;
  z-index: -1;
  opacity: 0.4;
}
.about-history .wpo-section-title h2,
.about-history .wpo-section-title p {
  color: #fff;
}
.about-history .shape1 {
  left: -6.2893081%;
}
.about-history .shape2 {
  right: -6.2893081%;
}
.about-history .shape2,
.about-history .shape1 {
  width: 22.95597%;
  position: absolute;
  top: 25px;
  opacity: 0.05;
}
.about-history .shape2 img,
.about-history .shape1 img {
  width: 100%;
}
.about-history .about-title {
  color: #fff;
}
.history-swiper-content {
  padding: 0 120px;
  width: 100%;
}
@media screen and (max-width: 1200px) {
  .history-swiper-content {
    padding: 0 100px;
  }
}
@media screen and (max-width: 991px) {
  .history-swiper-content {
    padding: 0 80px;
  }
}
@media screen and (max-width: 768px) {
  .history-swiper-content {
    padding: 0 10px;
  }
}
.history-swiper {
  margin-top: 50px;
  overflow: hidden;
}
@media screen and (max-width: 1440px) {
  .history-swiper {
    margin-top: 40px;
  }
}
@media screen and (max-width: 768px) {
  .history-swiper {
    margin-top: 35px;
  }
}
.history-swiper-content .year {
  padding-top: 20px;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.3;
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  top: 0;
}
@media screen and (max-width: 1680px) {
  .history-swiper-content .year {
    font-size: 28px;
  }
}
@media screen and (max-width: 1680px) {
  .history-swiper-content .year {
    padding-top: 0px;
  }
}
.history-swiper-content .year::before {
  content: "";
  position: absolute;
  width: 85px;
  height: 3px;
  background: var(--tg-primary-color);
  display: block;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
}
.history-swiper-content .text {
  margin-top: 20px;
  max-width: 100%;
  width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .history-swiper-content .text {
    margin-top: 10px;
  }
}
.history-swiper-content .text p {
  font-size: 18px;
  color: #fff;
  line-height: 1.7;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .history-swiper-content .text p {
    font-size: 16px;
  }
}
.history-swiper-content .big-year {
  font-size: 180px;
  text-align: center;
  line-height: 1.2;
  margin-top: 10px;
  color: var(--main-color);
  font-weight: 700;
}
@media screen and (max-width: 1680px) {
  .history-swiper-content .big-year {
    font-size: 130px;
  }
}
@media screen and (max-width: 1440px) {
  .history-swiper-content .big-year {
    font-size: 100px;
  }
}
@media screen and (max-width: 1200px) {
  .history-swiper-content .big-year {
    font-size: 80px;
  }
}
@media screen and (max-width: 991px) {
  .history-swiper-content .big-year {
    font-size: 60px;
  }
}
@media screen and (max-width: 768px) {
  .history-swiper-content .big-year {
    font-size: 42px;
  }
}
.history-line {
  position: relative;
  z-index: 1;
  margin-top: 60px;
}
@media screen and (max-width: 1680px) {
  .history-line {
    margin-top: 50px;
  }
}
@media screen and (max-width: 1200px) {
  .history-line {
    margin-top: 20px;
  }
}
.history-line::after {
  content: "";
  position: absolute;
  width: 200vw;
  height: 2px;
  left: 50%;
  transform: translateX(-50%);
  bottom: 20px;
  background-color: #b3b3b3;
}
.history-lineswiper {
  overflow: hidden;
}
.history-lineswiper .years {
  font-size: 30px;
  color: #fff;
  font-weight: 700;
  text-align: center;
  padding: 0 60px 50px;
  cursor: pointer;
}
@media screen and (max-width: 1440px) {
  .history-lineswiper .years {
    font-size: 24px;
    padding: 0 40px 40px;
  }
}
@media screen and (max-width: 1200px) {
  .history-lineswiper .years {
    font-size: 26px;
  }
}
@media screen and (max-width: 991px) {
  .history-lineswiper .years {
    font-size: 24px;
  }
}
.history-lineswiper .years::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  opacity: 0.5;
  background-color: #FF5B2E;
  transition: all 0.5s;
  bottom: 21px;
  left: 50%;
  transform: translateX(-50%) translateY(50%);
}
.history-lineswiper .years::before {
  content: "";
  position: absolute;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: #FF5B2E;
  transition: all 0.5s;
  opacity: 0;
  bottom: 21px;
  left: 50%;
  transform: translateX(-50%) translateY(50%);
}
@media screen and (max-width: 991px) {
  .history-lineswiper .years::before {
    width: 24px;
    height: 24px;
  }
  .history-lineswiper .years::after {
    width: 8px;
    height: 8px;
  }
}
.history-lineswiper .swiper-slide.swiper-slide-active .years {
  color: var(--main-color);
}
.history-lineswiper .swiper-slide.swiper-slide-active .years::after {
  opacity: 1;
}
.history-lineswiper .swiper-slide.swiper-slide-active .years::before {
  opacity: 0.6;
}
.history-lineswiper .swiper-slide {
  width: auto;
}
.about-history-box {
  position: relative;
  z-index: 1;
}
.arrow-mod {
  position: absolute;
  width: calc(100% + 60px);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
  z-index: 10;
}
@media screen and (max-width: 1680px) {
  .arrow-mod {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .arrow-mod {
    display: none;
  }
}
.prev-mod,
.next-mod {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s;
  pointer-events: all;
  cursor: pointer;
}
@media screen and (max-width: 991px) {
  .prev-mod,
  .next-mod {
    width: 42px;
    height: 42px;
  }
}
@media screen and (max-width: 768px) {
  .prev-mod,
  .next-mod {
    width: 38px;
    height: 38px;
  }
}
.prev-mod {
  transform: rotate(180deg);
}
.prev-mod svg,
.next-mod svg {
  width: 22px;
}
@media screen and (max-width: 991px) {
  .prev-mod svg,
  .next-mod svg {
    width: 18px;
  }
}
@media screen and (max-width: 768px) {
  .prev-mod svg,
  .next-mod svg {
    width: 16px;
  }
}
.prev-mod svg path,
.next-mod svg path {
  transition: all 0.5s;
}
.prev-mod:hover,
.next-mod:hover {
  background-color: var(--main-color);
}
.prev-mod:hover svg path,
.next-mod:hover svg path {
  fill: #fff;
}
.about-factory {
  padding: var(--padding100) 0;
  overflow: hidden;
}
.about-factory-slick {
  margin: 0px -15px 0;
}
.about-factory-item {
  padding: 0 15px;
  display: block !important;
}
.about-factory-content .img_box {
  padding-top: 100%;
}
.about-certificates {
  padding: 0 0 var(--padding100);
  overflow: hidden;
}
.about-certificates .slick-dots {
  --bg: #eee;
}
.about-certificates-list {
  margin: 0 -15px;
}
.about-certificates-item {
  padding: 0 15px;
}
.about-certificates-item .contents {
  padding: 20px;
  border-radius: 8px;
  overflow: hidden;
  background-color: var(--section-bg);
}
.about-certificates-item .img_box {
  padding-top: 142.5%;
  border-radius: 8px;
}
.about-feature {
  padding: 70px 0;
}
.about-feature-list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px -40px;
}
.about-feature-items {
  width: 20%;
  padding: 0 15px;
  margin-bottom: 40px;
}
.about-feature-items .shop-categories-unit__icon {
  width: 100px;
  height: 100px;
}
.about-feature-items .shop-categories-unit__icon img {
  width: 100%;
  height: 100%;
}
.about-feature-items .shop-categories-unit__title {
  line-height: 1.2;
}
.about-feature-items .texts {
  margin-top: 15px;
  text-align: center;
  font-size: 18px;
  line-height: 1.75;
  color: #333;
}
.product-grids,
.shop-grids {
  flex-wrap: wrap;
  margin: 0 -15px -30px;
}
.product-grids-item {
  width: 33.33333%;
  padding: 0 15px;
  margin-bottom: 30px;
}
@media screen and (max-width: 991px) {
  .product-grids-item {
    width: 50%;
  }
}
@media screen and (max-width: 768px) {
  .product-grids-item {
    width: 100%;
  }
}
.shop-grids.product-grids-list .product-grids-item {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .shop-grids.product-grids-list .product-grids-item {
    width: 100%;
  }
}
.product-details-text {
  padding-top: 15px;
}
.product-details-lists {
  margin-top: 15px;
  list-style: disc;
}
.slider-nav {
  margin: 0 -8px;
}
.slider-nav .items {
  padding: 0 8px;
  cursor: pointer;
}
.wpo-shop-single-section {
  overflow: hidden;
}
.wpo-shop-single-section .shop-single-slider .slider-for img {
  width: 100%;
}
.shop-single-slider .img_box {
  padding-top: 95.3125%;
}
.shop-single-slider .img_box img {
  transition: none;
}
.prodeta-info-nav {
  display: flex;
  margin-bottom: -10px;
  margin-top: 60px;
  border-bottom: 2px solid #eee;
}
@media screen and (max-width: 768px) {
  .prodeta-info-nav {
    margin-top: 40px;
  }
}
.prodeta-info-nav .items {
  margin-right: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 10px;
  color: #222;
  font-size: 18px;
  transition: all 0.5s;
  cursor: pointer;
  position: relative;
  z-index: 1;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .prodeta-info-nav .items {
    margin-right: 20px;
    padding: 18px 0px;
  }
}
.prodeta-info-nav .items::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -2px;
  background-color: var(--main-color);
  opacity: 1;
  transition: all 0.5s;
  width: 0;
}
.prodeta-info-nav .items:hover,
.prodeta-info-nav .items.active {
  color: var(--main-color);
}
.prodeta-info-nav .items:hover::after,
.prodeta-info-nav .items.active::after {
  width: 100%;
}
.blog-card .content h3 a {
  font-size: 20px;
  font-family: initial;
  color: #333;
  line-height: 1.55;
}
.blog-card .content {
  padding-top: 0;
}
.prodeta-details-slick {
  padding-top: 50px;
}
@media screen and (max-width: 991px) {
  .prodeta-details-slick {
    padding-top: 40px;
  }
}
.prodeta-details-item {
  background-color: var(--section-bg);
  border-radius: 10px;
  padding: 40px 40px;
}
@media screen and (max-width: 991px) {
  .prodeta-details-item {
    padding: 30px 30px;
  }
}
.prodeta-type1 {
  overflow: hidden;
}
.prodeta-type1 .lists li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 -20px 40px;
}
@media screen and (max-width: 768px) {
  .prodeta-type1 .lists li {
    flex-direction: column !important;
    margin: 0 -20px 30px;
  }
}
.prodeta-type1 .lists li:last-child {
  margin-bottom: 0;
}
.prodeta-type1 .lists li.reverse-active {
  flex-direction: row-reverse;
}
.prodeta-type1 .lists .lefts,
.prodeta-type1 .lists .rights {
  width: 50%;
  padding: 0 20px;
}
@media screen and (max-width: 768px) {
  .prodeta-type1 .lists .lefts,
  .prodeta-type1 .lists .rights {
    width: 100%;
  }
}
.prodeta-type1 .lists .img_box {
  padding-top: 62.1951219%;
  border-radius: 10px;
}
.prodeta-type1 .lists .img_box img {
  object-fit: cover;
}
.prodeta-type1 .lists .rights {
  padding: 0 40px;
}
@media screen and (max-width: 1200px) {
  .prodeta-type1 .lists .rights {
    padding: 0 30px;
  }
}
@media screen and (max-width: 991px) {
  .prodeta-type1 .lists .rights {
    padding: 0 20px;
  }
}
.prodeta-type1 .lists .rights .titles {
  font-size: 26px;
  font-weight: bold;
  line-height: 1.3;
  color: #333;
}
@media screen and (max-width: 1440px) {
  .prodeta-type1 .lists .rights .titles {
    font-size: 26px;
  }
}
@media screen and (max-width: 1200px) {
  .prodeta-type1 .lists .rights .titles {
    font-size: 24px;
  }
}
@media screen and (max-width: 991px) {
  .prodeta-type1 .lists .rights .titles {
    font-size: 22px;
  }
}
@media screen and (max-width: 768px) {
  .prodeta-type1 .lists .rights .titles {
    font-size: 18px;
    padding-top: 14px;
    margin-bottom: 3px;
  }
}
.prodeta-type1 .lists .rights .edits {
  margin-top: 15px;
}
@media screen and (max-width: 768px) {
  .prodeta-type1 .lists .rights .edits {
    margin-top: 10px;
  }
}
.prodeta-type1 .lists .rights .edits p {
  margin-bottom: 0;
  font-size: 16px;
  color: #9B9B9B;
  line-height: 1.75;
}
.prodeta-type2 .lists {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px -30px;
}
.prodeta-type2 .lists li {
  width: 25%;
  padding: 0 15px;
  margin-bottom: 30px;
}
@media screen and (max-width: 991px) {
  .prodeta-type2 .lists li {
    width: 50%;
  }
}
@media screen and (max-width: 768px) {
  .prodeta-type2 .lists li {
    width: 100%;
  }
}
.prodeta-type2 .lists .links {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 40px 30px;
  border-radius: 10px;
  background-color: #fff;
  transition: all 0.5s;
  text-align: center;
}
.prodeta-type2 .lists .links img {
  width: 60px;
  margin-bottom: 20px;
}
@media screen and (max-width: 1440px) {
  .prodeta-type2 .lists .links img {
    width: 50px;
  }
}
.prodeta-type2 .lists .links .titles {
  font-size: 24px;
  font-weight: bold;
  color: #333;
  line-height: 1.34;
}
@media screen and (max-width: 1440px) {
  .prodeta-type2 .lists .links .titles {
    font-size: 20px;
    margin-bottom: 0;
  }
}
.prodeta-type2 .lists .links .btns {
  display: inline-block;
  border-radius: 50px;
  padding: 10px 32px;
  background-color: #333;
  transition: all 0.5s;
  color: #fff;
  margin-top: 22px;
  font-size: 16px;
}
@media screen and (max-width: 1440px) {
  .prodeta-type2 .lists .links .btns {
    padding: 10px 26px;
  }
}
.prodeta-type2 .lists .links .btns:hover {
  background-color: var(--main-color);
  transform: translateY(4px);
}
.prodeta-type2 .lists .links:hover {
  box-shadow: 0 5px 20px 5px rgba(0, 0, 0, 0.06);
}
.prodeta-type3 table {
  width: 100%;
}
.prodeta-type3 tr:nth-child(odd) {
  background-color: #fff;
}
.prodeta-type3 td {
  border: 1px solid #ccc;
  padding: 10px 15px;
  color: #444;
  font-size: 16px;
  line-height: 1.65;
  min-width: 100px;
}
.home-service {
  padding: var(--padding100) 0;
}
.home-service-list {
  margin: 0 -120px;
}
@media screen and (max-width: 1680px) {
  .home-service-list {
    margin: 0 -50px;
  }
}
@media screen and (max-width: 1440px) {
  .home-service-list {
    margin: 0 -40px;
  }
}
@media screen and (max-width: 1200px) {
  .home-service-list {
    margin: 0 -20px;
  }
}
.home-service-list .slick-dots {
  --bg: #999;
}
.home-service-item {
  padding: 0 15px;
}
.home-service-content {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  height: 100%;
  position: relative;
  z-index: 1;
  border-radius: 20px;
  overflow: hidden;
}
.home-service-content .img_box {
  padding-top: 96.3636363%;
  width: 100%;
  flex-shrink: 0;
}
.home-service-content .img_box::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 50%;
  width: 100%;
  z-index: 2;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
}
.home-service-content .content {
  padding: 40px 30px;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 3;
}
@media screen and (max-width: 1200px) {
  .home-service-content .content {
    padding: 30px 25px;
  }
}
.home-service-content .content .tits,
.home-service-content .content .tits a {
  font-size: 30px;
  font-weight: bold;
  font-family: initial;
  line-height: 1.65;
  color: #fff;
  transition: all 0.5s;
}
@media screen and (max-width: 1440px) {
  .home-service-content .content .tits,
  .home-service-content .content .tits a {
    font-size: 28px;
  }
}
@media screen and (max-width: 1200px) {
  .home-service-content .content .tits,
  .home-service-content .content .tits a {
    font-size: 26px;
  }
}
.home-service-content .content .tits a:hover {
  color: var(--main-color);
}
.home-service-content .content .tits {
  margin-bottom: 10px;
}
.home-service-content .content .texts,
.home-service-content .content .texts p {
  font-size: 16px;
  line-height: 1.75;
  color: #fff;
}
.home-service-content .content .texts {
  display: none;
}
.home-service-content:hover .img_box img {
  transform: scale(1.06);
}
.home-service-list .slick-slide {
  transform: scale(0.9);
  transition: all 0.5s;
}
@media screen and (max-width: 991px) {
  .home-service-list .slick-slide {
    transform: scale(1);
  }
}
.home-service-list .slick-slide.slick-center {
  transform: scale(1);
}
.home-case {
  padding: var(--padding100) 0;
  overflow: hidden;
}
.home-case-list {
  margin: 0 -20px;
}
.home-case-list .slick-dots {
  --bg: #ddd;
}
.home-case-list .slick-list {
  overflow: initial !important;
}
.home-case-item {
  padding: 0 20px;
}
.home-case-content {
  display: flex;
  overflow: hidden;
  border-radius: 20px;
  background-color: var(--section-bg);
}
@media screen and (max-width: 768px) {
  .home-case-content {
    flex-direction: column;
  }
}
.home-case-content .lefts {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .home-case-content .lefts {
    width: 100%;
  }
}
.home-case-content .lefts .img_box {
  padding-top: 76.3636363%;
  border-radius: 20px;
}
.home-case-content .rights {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 25px 30px;
}
@media screen and (max-width: 768px) {
  .home-case-content .rights {
    width: 100%;
  }
}
.home-case-content .rights .tits,
.home-case-content .rights .tits a {
  font-size: 28px;
  font-weight: bold;
  line-height: 1.5;
  color: #333;
  transition: all 0.5s;
}
@media screen and (max-width: 1440px) {
  .home-case-content .rights .tits,
  .home-case-content .rights .tits a {
    font-size: 26px;
  }
}
@media screen and (max-width: 991px) {
  .home-case-content .rights .tits,
  .home-case-content .rights .tits a {
    font-size: 24px;
  }
}
@media screen and (max-width: 768px) {
  .home-case-content .rights .tits,
  .home-case-content .rights .tits a {
    font-size: 22px;
  }
}
.home-case-content .rights .tits {
  margin-bottom: 0;
}
.home-case-content .rights .tits a:hover {
  color: var(--main-color);
}
.home-case-content .rights .texts {
  margin-top: 6px;
  line-height: 1.75;
  font-size: 16px;
  padding-right: 30px;
}
.home-case-content .rights .links {
  margin-top: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  padding: 12px 25px;
  border-radius: 50px;
  color: #fff;
  font-size: 18px;
  line-height: 1.65;
  background-color: #222;
  transition: all 0.5s;
}
@media screen and (max-width: 1200px) {
  .home-case-content .rights .links {
    margin-top: 30px;
  }
}
@media screen and (max-width: 768px) {
  .home-case-content .rights .links {
    margin-top: 20px;
  }
}
.home-case-content .rights .links:hover {
  background-color: var(--main-color);
}
.case-section .product-grids-item {
  width: 33.33333%;
}
@media screen and (max-width: 991px) {
  .case-section .product-grids-item {
    width: 50%;
  }
}
@media screen and (max-width: 768px) {
  .case-section .product-grids-item {
    width: 100%;
  }
}
.case-section .product-grids-item .home-product-link .content {
  text-align: left;
  padding: 25px 15px 35px;
}
.case-section .product-grids-item .home-product-link .content .tits {
  margin-bottom: 6px;
}
.case-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: -36px;
}
@media screen and (max-width: 1200px) {
  .case-nav {
    margin-top: -20px;
  }
}
.case-nav .items {
  margin: 30px 15px 0;
}
@media screen and (max-width: 1200px) {
  .case-nav .items {
    margin: 20px 10px 0;
  }
}
.case-nav .links {
  padding: 12px 24px;
  background-color: #222;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  transition: all 0.5s;
  line-height: 1.55;
  min-width: 120px;
  border-radius: 10px;
}
.case-nav .items.active .links,
.case-nav .items:hover .links {
  background-color: var(--main-color);
}
.des-text {
  text-align: center;
  margin: 25px auto 0;
  font-size: 16px;
  line-height: 1.75;
}
.case-section .shop-grids {
  margin-top: 40px;
}
.wpo-blog-single-section .post h1 {
  font-size: 40px;
}
.case-details .case-details-title {
  padding-top: 0;
}
.solution-list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px -30px;
}
.solution-list .items {
  width: 50%;
  padding: 0 15px;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .solution-list .items {
    width: 100%;
  }
}
.solution-list .contents {
  display: flex;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.06);
  background-color: var(--section-bg);
  height: 100%;
}
@media screen and (max-width: 991px) {
  .solution-list .contents {
    flex-direction: column;
  }
}
.solution-list .lefts {
  width: 50%;
}
@media screen and (max-width: 991px) {
  .solution-list .lefts {
    width: 100%;
  }
}
.solution-list .lefts .img_box {
  padding-top: 96.3636363%;
  height: 100%;
}
.solution-list .lefts .img_box:hover img {
  transform: scale(1.06);
}
.solution-list .rights {
  width: 50%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 24px 25px;
}
@media screen and (max-width: 1200px) {
  .solution-list .rights {
    padding: 24px 19px;
  }
}
@media screen and (max-width: 991px) {
  .solution-list .rights {
    width: 100%;
  }
}
.solution-list .rights .tits,
.solution-list .rights .tits a {
  font-size: 26px;
  font-weight: bold;
  line-height: 1.65;
  color: #222;
}
@media screen and (max-width: 1200px) {
  .solution-list .rights .tits,
  .solution-list .rights .tits a {
    font-size: 22px;
  }
}
.solution-list .rights .tits {
  margin-bottom: 0;
}
.solution-list .rights .tits a:hover {
  color: var(--main-color);
}
.solution-list .rights .texts {
  font-size: 16px;
  line-height: 1.75;
  margin-top: 6px;
}
.wpo-shop-section .shop-grids {
  margin-bottom: -30px;
}
.home-solution {
  padding: var(--padding100) 0;
}
.home-solution .solution-list .contents {
  background-color: #fff;
}
.about-section-s3 {
  padding: calc(var(--padding100) + 50px) 0 calc(var(--padding100) + 50px);
  overflow: hidden;
}
.about-section-s3 .about-image .image2 .shape {
  display: none;
}
.about-section-s3 .links {
  min-width: 180px;
  padding: 14px 30px;
  background-color: #222;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  line-height: 1.65;
  border-radius: 50px;
  margin-top: 20px;
}
.about-section-s3 .links:hover {
  background-color: var(--main-color);
}
.about-section-s3 .about-image .image1 img {
  border-radius: 7px;
  border: 12px solid #FFF;
  box-shadow: 0px 4px 11px 0px rgba(0, 0, 0, 0.15);
  max-width: 100%;
  max-height: initial;
  width: 100%;
  height: 100%;
}
.about-section-s3 .about-image .image3 {
  display: none;
}
.about-section-s3 .about-image .image1 {
  position: relative;
  z-index: 1;
  border-radius: 7px;
  border: 12px solid #FFF;
  box-shadow: 0px 4px 11px 0px rgba(0, 0, 0, 0.15);
}
.about-section-s3 .about-image .image2 {
  right: -51px;
  bottom: -52px;
  width: 270px;
  z-index: 2;
  border-radius: 7px;
  border: 12px solid #FFF;
  box-shadow: 0px 4px 11px 0px rgba(0, 0, 0, 0.15);
}
.about-section-s3 .about-image .image1 .img_box {
  padding-top: 124.528301%;
}
.about-section-s3 .about-image .image2 .img_box {
  padding-top: 100%;
}
.about-section-s3 .about-image .image2 img {
  width: 100%;
  height: 100%;
  max-width: initial;
  max-height: initial;
  border-radius: 0 !important;
}
.about-section-s3 .about-image .image1 img,
.about-section-s3 .about-image .image2 img {
  border: none !important;
  border-radius: 0 !important;
}
.home-about-video {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--main-color);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s;
  cursor: pointer;
}
@media screen and (max-width: 1440px) {
  .home-about-video {
    width: 70px;
    height: 70px;
  }
}
.home-about-video:hover {
  transform: translate(-50%, -50%) scale(1.06);
}
.home-about-video svg {
  width: 30%;
}
.about-section-s3 .section-title {
  text-align: left;
  margin-bottom: 20px;
}
.home-blog .blog-card .content h3 a {
  font-family: initial;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
}
.home-blog .blog-card .content h3 a:hover {
  color: var(--main-color);
}
.home-blog .blog-card .date li:last-child:before {
  display: none;
}
.home-blog .blog-card .content .texts {
  font-size: 16px;
  color: #666;
  line-height: 1.75;
  margin-top: 10px;
}
.footer-logo {
  display: block;
  width: 200px;
  margin-bottom: 20px;
}
.footer-logo img {
  width: 100%;
}
.wpo-site-footer .about-widget h2 {
  font-size: 34px;
}
.wpo-site-footer .widget-title {
  margin-bottom: 20px;
}
.wpo-site-footer .contact-widget li {
  font-size: 18px;
  line-height: 1.55;
}
.wpo-site-footer .widget-title h3 {
  font-size: 32px;
  line-height: 1.55;
}
.wpo-site-footer .contact-widget li {
  display: flex;
}
.wpo-site-footer .contact-widget li p {
  flex-shrink: 0;
  font-size: 18px;
  line-height: 1.55;
  color: #333;
  margin-bottom: 0;
  margin-right: 5px;
}
.wpo-site-footer .contact-widget li a:hover {
  color: var(--main-color);
}
.wpo-site-footer .contact-widget li:last-child {
  flex-direction: column;
  margin-bottom: 0;
}
.wpo-site-footer .contact-widget li:last-child p {
  margin-bottom: 5px;
}
.office-info-item {
  margin-bottom: 0 !important;
}
.office-info-items {
  margin-bottom: 30px;
}
.wpo-site-footer .social-widget ul li svg,
.wpo-site-footer .social-widget ul li img {
  width: 22px;
}
.wpo-site-footer .social-widget ul li svg path {
  transition: all 0.5s;
}
.wpo-site-footer .social-widget ul li:hover svg path {
  fill: var(--main-color);
}
.wpo-site-header .header-right .search-toggle-btn {
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wpo-site-header .header-right .search-toggle-btn svg,
.wpo-site-header .header-right .search-toggle-btn img {
  width: 26px;
}
.wpo-site-header .header-right .search-toggle-btn svg path,
.wpo-site-header .header-right button svg path {
  transition: all 0.5s;
}
.wpo-site-header .header-right .search-toggle-btn:hover svg path,
.wpo-site-header .header-right button:hover svg path {
  fill: var(--main-color);
}
.wpo-site-header .header-right button {
  display: flex;
  align-items: center;
  justify-content: center;
}
.wpo-site-header .header-right button svg {
  width: 24px;
}
.back-to-top svg {
  width: 18px;
  transform: translateY(-2px);
}
.wpo-blog-pg-section .entry-media.img_box {
  padding-top: 59.5238095%;
}
.wpo-blog-pg-section .entry-media.img_box img {
  width: 100%;
  height: 100%;
}
.wpo-site-footer .wpo-lower-footer .right {
  margin: 0;
}
.wpo-blog-single-section {
  overflow: hidden;
}
.service-section-s2 .col {
  width: 25%;
  padding: 0 15px;
}
.service-section-s2 .wraper {
  padding: 30px 40px;
}
.wpo-checkout-area .coupon label {
  padding-right: 50px !important;
}
.blog-card .date li:last-child:before {
  display: none;
}
.header-controls,
.header-lists {
  width: initial !important;
}
@media screen and (max-width: 1200px) {
  .header-lists {
    width: 0 !important;
    flex: 0;
    padding: 0 !important;
    position: absolute;
  }
  .navbar-expand-lg .navbar-toggler {
    display: block;
  }
  .sr-only {
    opacity: 1;
    display: block !important;
  }
}
.header-flexs {
  justify-content: space-between;
}
@media (max-width: 1200px) {
  .wpo-site-header .mobail-menu button {
    background-color: #FF5B2E;
    width: 40px;
    height: 35px;
    border: 0;
    padding: 5px 10px;
    outline: 0;
    position: relative;
    z-index: 20;
  }
}
@media (max-width: 1200px) {
  .wpo-site-header .mobail-menu button span {
    background-color: #fff;
    width: 20px;
    display: block;
    height: 2px;
    margin-bottom: 5px;
  }
}
@media (max-width: 1200px) {
  .wpo-site-header #navbar {
    background: #000;
    display: block !important;
    width: 300px;
    height: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    position: fixed;
    left: -320px;
    top: 0px;
    z-index: 999999;
    opacity: 0;
    visibility: hidden;
  }
}
@media (max-width: 1200px) {
  .wpo-site-header .navigation {
    padding: 20px 0;
  }
}
@media screen and (max-width: 1680px) {
  .wpo-page-title .wpo-breadcumb-wrap h1,
  .wpo-page-title .wpo-breadcumb-wrap h2 {
    font-size: 50px;
  }
  .theme-btn-s2 {
    padding: 12px 28px;
  }
  .wpo-site-footer .about-widget h2 {
    font-size: 30px;
  }
  .wpo-site-footer .wpo-lower-footer .copyright {
    padding: 0 23px;
  }
  .wpo-site-footer .widget-title h3 {
    font-size: 30px;
  }
  .wpo-site-footer .widget-title {
    margin-bottom: 15px;
  }
  .wpo-blog-single-section .post h1 {
    font-size: 36px;
  }
  .service-section-s2 .wraper {
    width: 90%;
  }
}
@media screen and (max-width: 1440px) {
  .wpo-page-title .wpo-breadcumb-wrap h1,
  .wpo-page-title .wpo-breadcumb-wrap h2 {
    font-size: 44px;
  }
  .blog-sidebar {
    padding-left: 25px;
  }
  .wpo-blog-pg-section .post h3 {
    font-size: 20px;
  }
  .wpo-site-footer .about-widget h2 {
    font-size: 26px;
    width: 400px;
    max-width: 100%;
  }
  .wpo-site-footer .about-widget h2 {
    margin-bottom: 30px;
  }
  .wpo-site-footer .wpo-lower-footer .copyright,
  .wpo-site-footer .wpo-lower-footer .right li a {
    font-size: 18px;
  }
  .wpo-blog-single-section .post h1 {
    font-size: 30px;
  }
  .about-section-s3 .about-image .image1 {
    width: 90%;
  }
  .about-section-s3 .about-image .image2 {
    right: 0px;
    bottom: -52px;
    width: 220px;
  }
  .home-product-link .content .links {
    min-width: 120px;
    padding: 10px 24px;
  }
}
@media screen and (max-width: 1200px) {
  .wpo-contact-pg-section .office-info {
    padding-bottom: 80px;
  }
  .office-forms .shape-1,
  .office-forms .shape-2 {
    width: 100px;
  }
  .wpo-contact-pg-section .wpo-contact-title h2 {
    font-size: 40px;
  }
  .wpo-contact-pg-section .office-info .office-info-item .office-info-icon {
    width: 75px;
    height: 75px;
    line-height: 75px;
  }
  .wpo-contact-pg-section .office-info .office-info-item .office-info-text h2 {
    font-size: 24px;
  }
  .wpo-contact-pg-section .office-info .office-info-item .office-info-text h2 {
    margin: 20px 0 15px;
  }
  .wpo-contact-pg-section .office-info .office-info-item {
    padding: 40px 30px;
  }
  .wpo-contact-pg-section .wpo-contact-title h2 {
    font-size: 36px;
  }
  .wpo-site-footer .about-widget h2 {
    font-size: 22px;
  }
  .footer-logo {
    width: 180px;
  }
  .wpo-site-footer .wpo-upper-footer {
    padding: 60px 0;
  }
  .wpo-site-footer .widget-title h3 {
    font-size: 26px;
  }
  .wpo-blog-pg-section .post h3 {
    font-size: 18px;
  }
  .wpo-blog-single-section .more-posts .previous-post,
  .wpo-blog-single-section .more-posts .next-post {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .wpo-blog-single-section .comment-respond .form-submit input {
    max-width: 150px;
  }
  .about-section-s3 .dog-sidimg {
    width: 220px;
  }
  .funfact-section {
    padding-top: 180px;
  }
  .funfact-section .item {
    padding: 60px 10px;
  }
  .service-section-s2 .wraper {
    padding: 30px 20px;
  }
  .service-section-s2 .col {
    width: 50%;
  }
  .service-section .item h2,
  .service-section-s2 .item h2 {
    margin: 15px 0;
  }
  .service-section .wraper .item,
  .service-section-s2 .wraper .item {
    padding: 20px 0;
  }
}
@media screen and (max-width: 991px) {
  .wpo-site-header .header-right {
    right: -15px;
  }
  .blog-sidebar {
    padding-left: 0px;
  }
  .blog-sidebar {
    margin-top: 60px;
  }
  .wpo-site-footer .wpo-upper-footer .row {
    margin-bottom: -50px;
  }
  .wpo-site-footer .wpo-upper-footer .col {
    min-height: 235px;
    margin-bottom: 50px;
  }
  .blog-details {
    padding-top: 0 !important;
  }
 
  #form-div .rights .section-title {
    text-align: left;
  }
  #form-div .rights {
    align-items: flex-start;
  }
  .wpo-blog-single-section .comment-respond form input {
    height: 52px;
  }
  .about-section-s3 .about-image {
    max-width: 100%;
  }
  .about-section-s3 .about-image {
    margin-top: 0;
    margin-bottom: 50px;
  }
  .about-section-s3 {
    padding: calc(var(--padding100)) 0 calc(var(--padding100));
  }
  .about-section-s3 .links {
    min-width: 160px;
    padding: 14px 30px;
    font-size: 18px;
    margin-top: 15px;
  }
  .blog-section.home-blog .blog-card {
    margin-bottom: 0;
  }
  .blog-section.home-blog .row.blog-wrap {
    margin-bottom: -30px;
  }
  .blog-section.home-blog .row.blog-wrap .col {
    margin-bottom: 30px;
  }
  .wpo-site-header .header-right {
    right: 0px;
  }
}
@media screen and (max-width: 768px) {
  .wpo-contact-pg-section .office-info .office-info-item .office-info-icon {
    width: 70px;
    height: 70px;
    line-height: 70px;
  }
  .office-info-items:last-child {
    margin-bottom: 0;
  }
  .wpo-contact-pg-section .wpo-contact-title h2 {
    font-size: 30px;
    margin-bottom: 16px;
  }
  .wpo-contact-pg-section .wpo-contact-form-area {
    padding: 30px;
    padding-top: 40px;
  }
  .wpo-blog-list .post.format-standard-image {
    width: 100%;
  }
  .wpo-site-footer .wpo-upper-footer .col {
    min-height: 160px;
    margin-bottom: 50px;
  }
  .wpo-blog-single-section .post h1 {
    font-size: 26px;
  }
  .blog-sidebar {
    margin-top: 50px;
  }
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
  #form-div .rights {
    padding: 50px 30px 50px 30px;
  }
  .wpo-page-title .wpo-breadcumb-wrap h1,
  .wpo-page-title .wpo-breadcumb-wrap h2 {
    font-size: 38px;
    margin-bottom: 20px;
  }
  .pf-terms-section .accordion-item button {
    padding: 15px 0;
  }
  .funfact-section {
    padding-top: 10px;
  }
  .service-section-s2 .col {
    width: 100%;
  }
  .service-section-s2 {
    padding-top: 30px;
  }
  .about-section-s3 .about-image {
    margin-bottom: 40px;
  }
  .about-section-s3 .about-image .image1 {
    width: 100%;
  }
  .home-about-video {
    width: 60px;
    height: 60px;
  }
}
.xhl_form {
  overflow: initial !important;
  display: block !important;
}
.xhl_form .usedComp .xhl-controls {
  flex-grow: 1;
}
.xhl_form .usedComp .xhl-controls input {
  width: 100%;
  height: 56px;
  outline: none;
  padding: 0 20px;
  font-size: 18px;
  border: none;
  transform: translateY(-1px);
}
@media screen and (max-width: 768px) {
  .xhl_form .usedComp .xhl-controls input {
    height: 52px;
    font-size: 16px;
  }
}
.xhl_form .usedComp .xhl-control-label {
  font-size: 18px;
  color: #333;
  line-height: 1.65;
  flex-shrink: 0;
  width: 110px;
  text-align: center;
  position: relative;
  z-index: 1;
  font-weight: 500px;
}
@media screen and (max-width: 768px) {
  .xhl_form .usedComp .xhl-control-label {
    font-size: 16px;
  }
}
.xhl_form .usedComp .xhl-control-label::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 20px;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: #dbdbdb;
}
.xhl_form .usedComp {
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  background-color: #fff;
  border-bottom: 1px solid #dbdbdb;
  overflow: hidden;
}
.xhl-footer {
  width: 100%;
  border-radius: 12px;
  text-align: center;
  padding: 10px 20px;
  background-color: var(--main-color);
  color: #fff;
  font-size: 20px;
  line-height: 1.65;
  margin-top: 30px;
  transition: all 0.5s;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .xhl-footer {
    font-size: 18px;
  }
}
.xhl-footer:hover {
  background-color: var(--main-color);
}
.xhl_form {
  padding-top: 0px !important;
}


.slick-consistent .slick-track{
    display: flex;
    flex-wrap: wrap;
}

.slick-consistent .slick-track .slick-slide{
    height: initial !important;
}

.slick-consistent .slick-track .slick-slide>div,
.slick-consistent .slick-track .slick-slide>div>div{
    height: 100%;
}

.home-service-list.none-slick .slick-slide{
    transform: scale(1);
}

.home-blog-list{
    margin-bottom: -30px !important;
}

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

.wpo-blog-single-section .comment-respond .two-columns>p {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.wpo-blog-single-section .comment-respond .two-columns> p > span, 
.wpo-blog-single-section .comment-respond .form-inputs> p >input {
    width: 49%;
    float: left;
}

@media screen and (max-width: 991px) {
  .wpo-blog-single-section .comment-respond .two-columns> p > span,
    .wpo-blog-single-section .comment-respond .form-inputs> p > input {
        width: 100%;
    }
}




