/*--------------------------------------------------------------


/*font-family: 'Poppins', sans-serif; */

:root {
  --thm-font: "Poppins", sans-serif;
  --thm-base: #ffffff;
  --thm-base-rgb: 255, 255, 255;
  --thm-primary: #ffb300;
  --thm-primary-rgb: 234, 19, 14;
  --thm-black: #151515;
  --thm-black-rgb: 21, 21, 21;
  --thm-gray: #868686;
}

body {
  font-family: var(--thm-font);
  color: var(--thm-gray);
  font-size: 18px;
  line-height: 34px;
  font-weight: 500;
}
button:focus {
  outline: none;
}
a:active,
a:hover,
a:focus,
a:visited {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--thm-black);
  margin: 0;
}
ul,
li {
  margin: 0;
  padding: 0;
}

.page-wrapper {
  position: relative;
  margin: 0 auto;
  width: 100%;
  min-width: 300px;
  overflow: hidden;
}

@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
}


.block-title {
  margin-bottom: 47px;
  margin-top: -12px;
}
.block-title h4 {
  position: relative;
  font-size: 16px;
  color: var(--thm-gray);
  text-transform: uppercase;
  line-height: 24px;
  letter-spacing: 0.1em;
  display: inline-block;
}
.block-title h4:before {
  position: absolute;
  bottom: 6px;
  left: 0;
  right: 4px;
  height: 2px;
  content: "";
  background: var(--thm-primary);
}
.block-title h2 {
  font-size: 50px;
  font-weight: 700;
  text-transform: capitalize;
  line-height: 60px;
  margin-top: 3px;
}

.thm-btn {
  display: inline-block;
  vertical-align: middle;
  border: none;
  outline: none;
  background-color: var(--thm-primary);
  font-size: 14px;
  color: #ffffff;
  font-weight: 700;
  padding: 23px 50px;
  border-radius: 0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.thm-btn:hover {
  background-color: var(--thm-black);
  color: #ffffff;
}





/* owl dots style */

.thm__owl-carousel .owl-dots {
  margin-top: 20px;
}

.thm__owl-carousel .owl-dots .owl-dot {
  outline: none;
}

.thm__owl-carousel .owl-dots .owl-dot span {
  margin: 0 2.5px;
  padding: 0;
  width: 14px;
  height: 14px;
  background-color: var(--thm-gray);
  border-radius: 50%;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.thm__owl-carousel .owl-dots .owl-dot:hover span,
.thm__owl-carousel .owl-dots .owl-dot.active span {
  background-color: var(--thm-primary);
}

.thm__owl-carousel.light-dots .owl-dots .owl-dot span {
  background-color: #fff;
}

.thm__owl-carousel.light-dots .owl-dots .owl-dot:hover span,
.thm__owl-carousel.light-dots .owl-dots .owl-dot.active span {
  background-color: var(--thm-primary);
}

.preloader {
  position: fixed;
  background-color: var(--thm-black);
  background-position: center center;
  background-repeat: no-repeat;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999999991;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  text-align: center;
}

.preloader__image {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.scroll-to-top {
  display: inline-block;
  width: 45px;
  height: 45px;
  background: var(--thm-primary);
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 99;
  text-align: center;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  display: none;
  border-radius: 50%;
  transition: all 0.4s ease;
}

.scroll-to-top i {
  color: #ffffff;
  font-size: 18px;
  line-height: 45px;
}

.scroll-to-top:hover {
  background-color: #fff;
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.3);
}

.scroll-to-top:hover i {
  color: var(--thm-black);
}

/* Cursor Style */
.cursor {
  position: absolute;
  background-color: #fff;
  width: 6px;
  height: 6px;
  border-radius: 100%;
  z-index: 1;
  -webkit-transition: 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity,
    0.3s cubic-bezier(0.75, -1.27, 0.3, 2.33) -webkit-transform;
  transition: 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity,
    0.3s cubic-bezier(0.75, -1.27, 0.3, 2.33) -webkit-transform;
  transition: 0.3s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform,
    0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity;
  transition: 0.3s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform,
    0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity,
    0.3s cubic-bezier(0.75, -1.27, 0.3, 2.33) -webkit-transform;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
  z-index: 10000;
  -webkit-transform: scale(1);
  transform: scale(1);
  visibility: hidden;
}

.cursor {
  visibility: visible;
}

.cursor.active {
  opacity: 0.5;
  -webkit-transform: scale(0);
  transform: scale(0);
}

.cursor.hovered {
  opacity: 0.08;
}

.cursor-follower {
  position: absolute;
  background-color: RGBA(255, 255, 255, 0.3);
  width: 50px;
  height: 50px;
  border-radius: 100%;
  z-index: 1;
  -webkit-transition: 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity,
    0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33) -webkit-transform;
  transition: 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity,
    0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33) -webkit-transform;
  transition: 0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform,
    0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity;
  transition: 0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform,
    0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity,
    0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33) -webkit-transform;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
  z-index: 10000;
  visibility: hidden;
}

.cursor-follower {
  visibility: visible;
}

.cursor-follower.active {
  opacity: 0.7;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.cursor-follower.hovered {
  opacity: 0.08;
}

.cursor-follower.close-cursor:before {
  position: absolute;
  content: "";
  height: 25px;
  width: 2px;
  background: #fff;
  left: 48%;
  top: 12px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  display: inline-block;
}

.cursor-follower.close-cursor:after {
  position: absolute;
  content: "";
  height: 25px;
  width: 2px;
  background: #fff;
  right: 48%;
  top: 12px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

/*--------------------------------------------------------------
    Site Header Header one wrap
--------------------------------------------------------------*/
.site-header__header-one-wrap {
  position: relative;
  left: 0px;
  top: 0px;
  width: 100%;
  z-index: 999;
  transition: all 500ms ease;
}
.header_top_one {
  position: relative;
  display: block;
  overflow: hidden;
  background: #151515;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header_top_one_inner {
  position: relative;
  display: block;
}
.header_top_one_inner_left {
  position: relative;
}
.header_social_1 {
  position: relative;
  display: block;
  float: left;
  background: #2d2d2d;
  padding: 1px 30px;
  margin-right: 30px;
}
.header_social_1 ul {
  overflow: hidden;
}
.header_social_1 ul li {
  position: relative;
  display: block;
  float: left;
  line-height: 30px;
  margin-right: 25px;
}
.header_social_1 ul li:last-child {
  margin-right: 0;
}
.header_social_1 ul li a {
  color: #9b9b9b;
  font-size: 12px;
  transition: all 500ms ease;
}
.header_social_1 ul li a i {
  position: relative;
  display: inline-block;
  font-weight: 400;
}
.header_social_1 ul li a:hover {
  color: var(--thm-primary);
}
.header_top_one_inner_left_text {
  position: relative;
  display: block;
  float: left;
}
.header_top_one_inner_left_text p {
  font-size: 12px;
  color: #9b9b9b;
  font-weight: 600;
  margin: 0;
}

.header_top_one_inner_right {
  position: relative;
}
.header_topmenu_1 {
  position: relative;
}
.header_topmenu_1 ul {
  overflow: hidden;
}
.header_topmenu_1 ul li {
  position: relative;
  display: block;
  float: left;
  line-height: 32px;
  margin-right: 30px;
}
.header_topmenu_1 ul li:last-child {
  margin-right: 0;
}
.header_topmenu_1 ul li a {
  color: #9a9a9a;
  font-size: 12px;
  font-weight: 600;
  transition: all 500ms ease;
}
.header_topmenu_1 ul li a:hover {
  color: var(--thm-primary);
}
.header_topmenu_1 ul li a span {
  position: relative;
  display: inline-block;
  padding-right: 11px;
}
.header_topmenu_1 ul li a span:before {
  font-size: 12px;
  color: var(--thm-primary);
}

.main-nav__header-one {
  position: relative;
  display: block;
  background: #0b0b0b;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.header-navigation.one.original {
  position: relative;
}

.main-nav__header-one .container-box {
  position: relative;
  display: block;
}

.main-nav__left {
  position: relative;
  display: block;
}
.main-nav__search {
  position: relative;
  color: var(--thm-black);
  font-size: 25px;
  transition: all 500ms ease;
}
.main-nav__search:hover {
  color: var(--thm-base);
}
.main-nav__left .side-menu__toggler {
  position: relative;
  display: inline-block;
  margin-left: 30px;
  font-size: 20px;
  color: var(--thm-base);
}

.main-nav__left_one {
  position: relative;
  display: block;
}

.logo_one {
  position: relative;
  display: block;
  padding: 35.5px 0;
}
.logo_one a {
  display: inline-block;
}

.main-nav__main-navigation.one {
  position: relative;
  display: block;
}
.main-nav__main-navigation .main-nav__navigation-box {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
}
.main-nav__main-navigation .main-nav__navigation-box,
.main-nav__main-navigation .main-nav__navigation-box ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.main-nav__main-navigation .main-nav__navigation-box > li + li {
  margin-left: 65px;
}
.main-nav__main-navigation .main-nav__navigation-box > li {
  position: relative;
  padding: 35px 0px 36px;
}
.main-nav__main-navigation .main-nav__navigation-box > li > a {
  position: relative;
  display: inline-block;
  padding: 0px 0px;
  color: #9b9b9b;
  font-size: 16px;
  line-height: 30px;
  font-weight: 600;
  text-transform: capitalize;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}
.main-nav__main-navigation .main-nav__navigation-box > li > a:before {
  position: absolute;
  bottom: 8px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--thm-primary);
  content: "";
  transform: scaleX(0.5);
  opacity: 0;
  transition: all 500ms ease;
  z-index: -1;
}
.main-nav__main-navigation .main-nav__navigation-box > li:hover > a,
.main-nav__main-navigation .main-nav__navigation-box > li.current > a,
.main-nav__main-navigation
  .main-nav__navigation-box
  > li.current-menu-item
  > a {
  color: var(--thm-base);
}
.main-nav__main-navigation .main-nav__navigation-box > li:hover > a:before,
.main-nav__main-navigation .main-nav__navigation-box > li.current > a:before,
.main-nav__main-navigation
  .main-nav__navigation-box
  > li.current-menu-item
  > a:before {
  opacity: 1;
  transform: scaleX(1);
}


/* Dropdown menu */
.main-nav__main-navigation .dropdown-btn {
  display: none;
}
.main-nav__main-navigation .main-nav__navigation-box > li ul {
  position: absolute;
  width: 230px;
  background-color: #fff;
  border-top: 0px solid #f7f6f6;
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05),
    -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -webkit-transform-origin: top;
  transform-origin: top;
  visibility: hidden;
  opacity: 0;
  z-index: 991;
  -webkit-transition: opacity 500ms ease, visibility 500ms ease,
    -webkit-transform 500ms ease;
  transition: opacity 500ms ease, visibility 500ms ease,
    -webkit-transform 500ms ease;
  transition: transform 500ms ease, opacity 500ms ease, visibility 500ms ease;
  transition: transform 500ms ease, opacity 500ms ease, visibility 500ms ease,
    -webkit-transform 500ms ease;
}
.main-nav__main-navigation .main-nav__navigation-box > li ul > li {
  position: relative;
}
.main-nav__main-navigation .main-nav__navigation-box > li ul > li + li {
  border-top: 1px solid #f7f6f6;
}
.main-nav__main-navigation .main-nav__navigation-box > li ul > li > a {
  display: block;
  color: var(--thm-black);
  font-size: 15px;
  font-weight: 600;
  word-break: break-all;
  padding-top: 9.5px;
  padding-bottom: 9.5px;
  padding-left: 20px;
  padding-right: 20px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.main-nav__main-navigation .main-nav__navigation-box > li ul > li:hover > a {
  color: var(--thm-primary);
}

/* Second level menu */
.main-nav__main-navigation .main-nav__navigation-box > li > ul {
  top: 100%;
  left: 0;
  -webkit-transform: translateY(30px);
  transform: translateY(30px);

  visibility: hidden;
  opacity: 0;
}
.main-nav__main-navigation .main-nav__navigation-box > li:hover > ul {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  visibility: visible;
  opacity: 1;
}

/* Third level menu */
.main-nav__main-navigation .main-nav__navigation-box > li > ul > li > ul {
  top: 0;
  left: 100%;
  -webkit-transform: translateX(30px);
  transform: translateX(30px);
  visibility: hidden;
  opacity: 0;
}
.main-nav__main-navigation .main-nav__navigation-box > li > ul > li:hover > ul {
  -webkit-transform: translateX(0px);
  transform: translateX(0px);
  visibility: visible;
  opacity: 1;
}

/* After Third level menu */
.main-nav__main-navigation
  .main-nav__navigation-box
  > li
  > ul
  > li
  > ul
  > li
  ul {
  display: none;
}

.main-nav__right_one {
  position: relative;
  display: block;
}

.main-nav__right {
  position: relative;
  display: block;
}
.main-nav__right .icon-search-box {
  position: relative;
  display: block;
  float: right;
  margin-right: 30px;
  padding: 35px 0;
}
.main-nav__right .icon-search-box a {
  color: var(--thm-base);
  font-size: 25px;
}

.main-nav__right .icon_cart_box {
  position: relative;
  display: block;
  float: right;
  margin-right: 30px;
  padding: 29px 0;
}
.main-nav__right .icon_cart_box a {
  color: var(--thm-base);
  font-size: 25px;
}

.header_btn_1 {
  position: relative;
  display: block;
  float: right;
  padding: 27.5px 0;
  margin-left: 40px;
}
.header_btn_1 a {
  position: relative;
  display: inline-block;
  background: var(--thm-primary);
  padding: 0 30px;
  color: #ffffff;
  font-size: 12px;
  line-height: 50px;
  font-weight: 700;
  letter-spacing: 0.1em;
  border-radius: 0;
  text-transform: uppercase;
  transition: all 500ms ease;
}
.header_btn_1 a:hover {
  color: var(--thm-primary);
  background-color: #fff;
}
.header_btn_1 a span:before {
  position: relative;
  display: inline-block;
  padding-right: 7px;
}

/* stricky Menu Css */
.stricked-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999999999999;
  background-color: var(--thm-black);
  box-shadow: 0px 6px 13px 0px rgba(0, 0, 0, 0.06);
  opacity: 0;
  -webkit-transform: translateY(-110%);
  transform: translateY(-110%);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.stricked-menu.stricky-fixed {
  opacity: 1;
  width: 100%;
  margin: 0 auto;
  -webkit-transform: translateY(0%);
  transform: translateY(0%);
}

.stricked-menu .logo_one {
  padding: 23px 0;
}
.stricked-menu .main-nav__main-navigation .main-nav__navigation-box > li {
  position: relative;
  padding: 23px 0px 23px;
}
.stricked-menu .container-box {
  padding-left: 15px;
  padding-right: 15px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.stricked-menu .header_btn_1 {
  padding: 12px 0 13px;
}
.stricked-menu .main-nav__right .icon_cart_box {
  padding: 21px 0 22px;
}
.stricked-menu .main-nav__right .icon-search-box {
  padding: 27px 0 28px;
}

/*--------------------------------------------------------------
# Site Header Header Two Wrap
--------------------------------------------------------------*/
.site-header__header-one-wrap.two {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  margin: 0px;
  z-index: 999999;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}
.header_top_two {
  position: relative;
  display: block;
  padding: 27px 0;
  background: #ffffff;
}
.header_top_two_inner {
}
.header_top_two_inner_left {
}
.header_top_two_inner_left .logo_two {
  position: relative;
  display: block;
  padding: 7px 0 11px;
}

.header_contact_two {
  position: relative;
  display: block;
}
.header_contact_two ul {
  overflow: hidden;
}
.header_contact_two ul li {
  position: relative;
  display: inline-block;
  float: left;
  margin-right: 25px;
}
.header_contact_two ul li:last-child {
  margin-right: 0;
}
.header_contact_two ul li .icon {
  width: 52px;
}
.header_contact_two ul li .icon,
.header_contact_two ul li .text {
  display: table-cell;
  vertical-align: middle;
}
.header_contact_two ul li .icon span {
  height: 52px;
  width: 52px;
  background: #f6f6f6;
  display: inline-block;
  border-radius: 50%;
  text-align: center;
  line-height: 52px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.header_contact_two ul li:hover .icon span {
  background: var(--thm-primary);
}
.header_contact_two ul li .icon span:before {
  color: var(--thm-primary);
  line-height: 30px;
}
.header_contact_two ul li:hover .icon span:before {
  color: #fff;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.header_contact_two ul li .text {
  padding-left: 20px;
}
.header_contact_two ul li .text p {
  font-size: 14px;
  margin: 0;
  line-height: 18px;
}
.header_contact_two ul li .text a {
  font-size: 16px;
  color: var(--thm-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.header_contact_two ul li .text h5 {
  font-size: 16px;
}
.header_contact_two ul li .text a:hover {
  color: var(--thm-primary);
}

.main-nav__header-one.two {
  background: none;
  border: none;
}
.main_nav_header_two_content {
  position: relative;
  display: block;
  background: var(--thm-black);
  padding-left: 40px;
}
.main-nav__main-navigation.two .main-nav__navigation-box > li {
  position: relative;
  padding: 21px 0px 21px;
}
.main-nav__right_one.two .header_btn_1 {
  padding: 0;
}
.main-nav__right_one.two .header_btn_1 a {
  padding: 13px 50px;
}

.stricked-menu .main-nav__right_one.two .header_btn_1 a {
  padding: 15px 50px;
}

/*--------------------------------------------------------------
# Site Header Header three Wrap
--------------------------------------------------------------*/
.site-header__header-one-wrap.three {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  z-index: 999;
  transition: all 500ms ease;
}
.main-nav__header-one.three {
  background: none;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}
.main-nav__left_one.three {
  position: relative;
  display: block;
  width: 70%;
}
.header_contact_two.three {
  padding: 28px 0;
}
.header_contact_two.three ul li .text a {
  color: var(--thm-base);
}
.main-nav__left_one.three .logo_one {
  padding: 37px 0;
  float: left;
  max-width: 335px;
  width: 100%;
  text-align: center;
  border-right: 2px solid rgba(255, 255, 255, 0.1);
  margin-right: 100px;
}
.main-nav__main-navigation.three .main-nav__navigation-box > li {
  position: relative;
  padding: 37px 0px 37px;
}
.main__nav__right_box {
  position: relative;
  display: block;
  width: 30%;
}


.main-nav__right_one.three .header_btn_1 {
  padding: 0;
  margin: 0;
}
.main-nav__right_one.three .header_btn_1 a {
  padding: 29px 60px;
  font-size: 14px;
}

.three.stricked-menu.stricky-fixed {
  opacity: 1;
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  -webkit-transform: translateY(0%);
  transform: translateY(0%);
  box-shadow: none;
}

.stricked-menu .main-nav__main-navigation.three .main-nav__navigation-box > li {
  position: relative;
  padding: 23px 0px 23px;
}



/* stricky Menu Css */
.header_three_wrap .stricked-menu {
  background-color: #ffffff;
}

@media (min-width: 1200px) {
  .main-nav__left .side-menu__toggler {
    display: none;
  }
  .main-nav__main-navigation {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
  }
  .mobile_menu_icon_two .side-menu__toggler {
    display: none;
  }

  .mobile_menu_icon_three .side-menu__toggler {
    display: none;
  }
}

.three.stricked-menu .logo_one {
  display: none;
}

.three.stricked-menu .header_contact_two.three {
  display: none;
}

.three.stricked-menu .main-nav__right_one.three .header_btn_1 a {
  padding: 15px 60px;
}
.three .header_contact_two ul li .icon span {
  background-color: var(--thm-primary);
  transition: all 500ms ease;
}
.three .header_contact_two ul li:hover .icon span {
  background-color: #fff;
}

.three .header_contact_two ul li .icon span::before {
  font-size: 17px;
  color: #fff;
}
.three .header_contact_two ul li:hover .icon span::before {
  color: var(--thm-primary);
}

/*--------------------------------------------------------------
# Main Slider
--------------------------------------------------------------*/

.main-slider {
  overflow: hidden;
  position: relative;
}

.main-slider .swiper-slide {
  position: relative;
  background-color: #151414;
}

.main-slider .image-layer {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  transform-origin: top center;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: -webkit-transform 7000ms ease;
  transition: -webkit-transform 7000ms ease;
  transition: transform 7000ms ease;
  transition: transform 7000ms ease, -webkit-transform 7000ms ease;
}

.main-slider .swiper-slide-inner {
  position: relative;
  display: block;
  text-align: center;
  padding-top: 221px;
  padding-bottom: 230px;
}

.main-slider p {
  position: relative;
  display: inline-block;
  margin: 0;
  font-size: 20px;
  color: var(--thm-base);
  opacity: 0;
  -webkit-transform: translateY(-120px);
  transform: translateY(-120px);
  -webkit-transition-delay: 0;
  transition-delay: 0;
  -webkit-transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease,
    -webkit-transform 2000ms ease;
}
.main-slider p:before {
  position: absolute;
  bottom: 8px;
  left: 4px;
  right: 3px;
  height: 2px;
  background: #ffffff;
  content: "";
}
.main-slider h2 {
  margin: 0;
  margin-top: 27px;
  margin-bottom: 41px;
  color: #fff;
  font-size: 90px;
  line-height: 100px;
  font-weight: 800;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(90px);
  transform: translateY(90px);
  -webkit-transition-delay: 1000ms;
  transition-delay: 1000ms;
  -webkit-transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease,
    -webkit-transform 2000ms ease;
}

.main-slider .thm-btn {
  opacity: 0;
  -webkit-transform: translateY(100px);
  transform: translateY(100px);
  -webkit-transition-delay: 2500ms;
  transition-delay: 2500ms;
  -webkit-transition: opacity 2000ms ease, color 500ms ease,
    background 500ms ease, -webkit-transform 2000ms ease;
  transition: opacity 2000ms ease, color 500ms ease, background 500ms ease,
    -webkit-transform 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease, color 500ms ease,
    background 500ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease, color 500ms ease,
    background 500ms ease, -webkit-transform 2000ms ease;
}
.main-slider .thm-btn:hover {
  background: var(--thm-base);
  color: var(--thm-black);
}
.main-slider .swiper-slide-active .image-layer {
  -webkit-transform: scale(1.15);
  transform: scale(1.15);
}

.main-slider .swiper-slide-active .thm-btn,
.main-slider .swiper-slide-active h2,
.main-slider .swiper-slide-active p {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0) translateX(0);
  transform: translateY(0) translateX(0);
}

#main-slider-pagination {
  z-index: 10;
  width: 100%;
  margin: 0 auto;
  bottom: 50px;
}

#main-slider-pagination .swiper-pagination-bullet {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  opacity: 0.5;
  background-color: #fff;
}

#main-slider-pagination .swiper-pagination-bullet + .swiper-pagination-bullet {
  margin-top: 10px;
}

#main-slider-pagination
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
}

.banner-slider-nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.banner-slider-button-next {
  position: relative;
  width: 65px;
  height: 65px;
  line-height: 25px;
  border-radius: 50%;
  text-align: center;
  color: #fff;
  cursor: pointer;
  z-index: 9;
  margin-right: 100px;
  font-size: 25px;
  border: 2px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.3;
  transition: 0.5s;
}

.banner-slider-button-prev {
  position: relative;
  width: 65px;
  height: 65px;
  line-height: 25px;
  border-radius: 50%;
  text-align: center;
  color: #ffff;
  cursor: pointer;
  z-index: 9;
  margin-left: 100px;
  font-size: 25px;
  border: 2px solid #fff;
  transform: rotate(-180deg);
  opacity: 0.3;
  transition: 0.5s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-slider-button-prev,
.banner-slider-button-next:focus {
  outline: none;
}
.banner-slider-button-prev:hover,
.banner-slider-button-next:hover {
  opacity: 1;
}

/*--------------------------------------------------------------
# Main Slider Two
--------------------------------------------------------------*/

.main-slider.two .swiper-slide-inner {
  text-align: left;
  padding: 306px 0 245px;
}

.main-slider.two h2 {
  margin: 0;
  margin-top: 27px;
  margin-bottom: 41px;
  color: #fff;
  font-size: 70px;
  line-height: 80px;
  font-weight: 800;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(90px);
  transform: translateY(90px);
  -webkit-transition-delay: 1000ms;
  transition-delay: 1000ms;
  -webkit-transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease,
    -webkit-transform 2000ms ease;
}
.main-slider.two h2 span {
  color: var(--thm-primary);
}
.main-slider.two .thm-btn {
  opacity: 0;
  -webkit-transform: translateY(100px);
  transform: translateY(100px);
  -webkit-transition-delay: 2500ms;
  transition-delay: 2500ms;
  -webkit-transition: opacity 2000ms ease, color 500ms ease,
    background 500ms ease, -webkit-transform 2000ms ease;
  transition: opacity 2000ms ease, color 500ms ease, background 500ms ease,
    -webkit-transform 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease, color 500ms ease,
    background 500ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease, color 500ms ease,
    background 500ms ease, -webkit-transform 2000ms ease;
}
.main-slider.two .thm-btn:hover {
  background: var(--thm-base);
  color: var(--thm-black);
}
.main-slider.two .swiper-slide-active .image-layer {
  -webkit-transform: scale(1.15);
  transform: scale(1.15);
}

.main-slider.two .swiper-slide-active .thm-btn,
.main-slider.two .swiper-slide-active h2 {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0) translateX(0);
  transform: translateY(0) translateX(0);
}

.main-slider.two #main-slider-pagination {
  z-index: 10;
  width: auto;
  margin: 0;
  bottom: 186px;
}

.main-slider.two #main-slider-pagination .swiper-pagination-bullet {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  opacity: 0.5;
  background-color: #fff;
  margin: 0 4px;
}

.main-slider.two
  #main-slider-pagination
  .swiper-pagination-bullet
  + .swiper-pagination-bullet {
  margin-top: 10px;
}

.main-slider.two
  #main-slider-pagination
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
}

.main-slider.two .banner-slider-nav {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  width: 100%;
  max-width: 1170px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  z-index: 91;
  right: auto;
  bottom: auto;
}

.main-slider.two .banner-slider-button-next {
  position: relative;
  width: 65px;
  height: 65px;
  line-height: 25px;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  cursor: pointer;
  z-index: 9;
  margin-right: 0;
  font-size: 25px;
  border: 2px solid #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
  opacity: 0.3;
}

.main-slider.two .banner-slider-button-prev {
  position: relative;
  width: 65px;
  height: 65px;
  line-height: 25px;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  cursor: pointer;
  z-index: 9;
  margin-left: 0;
  font-size: 25px;
  border: 2px solid #ffffff;
  transform: rotate(-180deg);
  opacity: 0.3;
  transition: 0.5s;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.main-slider.two .banner-slider-button-prev,
.main-slider.two .banner-slider-button-next:focus {
  outline: none;
}
.main-slider.two .banner-slider-button-prev:hover,
.main-slider.two .banner-slider-button-next:hover {
  opacity: 1;
}

/*--------------------------------------------------------------
# Main Slider Three
--------------------------------------------------------------*/

.main-slider.main-slider-three .swiper-slide-inner {
  padding: 350px 0 250px;
}

/*--------------------------------------------------------------
# Search Popup
--------------------------------------------------------------*/

.search-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1000;
  -webkit-transform: scale(1, 0);
  transform: scale(1, 0);
  -webkit-transform-origin: bottom center;
  transform-origin: bottom center;
  -webkit-transition: -webkit-transform 0.7s ease;
  transition: -webkit-transform 0.7s ease;
  transition: transform 0.7s ease;
  transition: transform 0.7s ease, -webkit-transform 0.7s ease;
}

.search-popup.active {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}

.search-popup__overlay {
  width: 100%;
  height: 100%;
  background-color: #000;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  opacity: 0.7;
  cursor: none;
}

.search-popup__inner {
  position: absolute;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
}

.search-popup__form {
  position: relative;
  z-index: 9991;
  width: 100%;
  padding: 15px;
  max-width: 600px;
  position: relative;
}

.search-popup__form input {
  background-color: transparent;
  border: none;
  outline: none;
  width: 100%;
  height: 60px;
  color: var(--thm-black);
  font-size: 18px;
  background-color: white;
  padding-left: 30px;
}

.search-popup__form input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: var(--thm-black);
}

.search-popup__form input::-moz-placeholder {
  /* Firefox 19+ */
  color: var(--thm-black);
}

.search-popup__form input:-ms-input-placeholder {
  /* IE 10+ */
  color: var(--thm-black);
}

.search-popup__form input:-moz-placeholder {
  /* Firefox 18- */
  color: var(--thm-black);
}

.search-popup__form button[type="submit"] {
  border: none;
  outline: none;
  width: 60px;
  height: 60px;
  color: #fff;
  background-color: var(--thm-black);
  cursor: pointer;
  position: absolute;
  top: 50%;
  right: 15px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.search-popup__form button[type="submit"]:hover {
  background-color: var(--thm-black);
  color: var(--thm-base);
}

/*--------------------------------------------------------------
# MobileNav
--------------------------------------------------------------*/

.mobile-nav__wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transform-origin: left center;
  transform-origin: left center;
  -webkit-transition: -webkit-transform 500ms ease;
  transition: -webkit-transform 500ms ease;
  transition: transform 500ms ease;
  transition: transform 500ms ease, -webkit-transform 500ms ease;
  z-index: 9999999;
}

.mobile-nav__wrapper .container {
  padding-left: 0;
  padding-right: 0;
}

.mobile-nav__wrapper.expanded {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}

.mobile-nav__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--thm-black);
  opacity: 0.8;
  cursor: pointer;
}

.mobile-nav__content {
  width: 300px;
  background-color: var(--thm-black);
  z-index: 10;
  position: relative;
  height: 100%;
  overflow-y: auto;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 15px;
  padding-right: 15px;
}

.mobile-nav__content .thm-btn {
  padding: 8px 0;
  width: 100%;
  text-align: center;
}

.mobile-nav__content .logo-box {
  margin-bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.mobile-nav__close {
  position: absolute;
  top: 20px;
  right: 15px;
  font-size: 18px;
  color: #fff;
  cursor: pointer;
}

.mobile-nav__content .main-nav__navigation-box,
.mobile-nav__content .main-nav__navigation-box ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  width: 100%;
  float: none !important;
}

.mobile-nav__content .main-nav__navigation-box ul {
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__content .main-nav__navigation-box ul li a {
  padding-left: 1em;
}

.mobile-nav__content .main-nav__navigation-box li:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__content .main-nav__navigation-box li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  line-height: 30px;
  color: #fff;
  font-size: 15px;
  font-family: var(--thm-font);
  font-weight: 500;
  height: 46px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: 500ms;
  transition: 500ms;
}

.mobile-nav__content .main-nav__navigation-box li a.open {
  color: var(--thm-primary);
}

.mobile-nav__content .main-nav__navigation-box li a button {
  width: 30px;
  height: 30px;
  background-color: var(--thm-primary);
  border: none;
  outline: none;
  color: #fff;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  -webkit-transition: -webkit-transform 500ms ease;
  transition: -webkit-transform 500ms ease;
  transition: transform 500ms ease;
  transition: transform 500ms ease, -webkit-transform 500ms ease;
}

.mobile-nav__content .main-nav__navigation-box li a button.open {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  background-color: #fff;
  color: var(--thm-black);
}

.mobile-nav__content .main-nav__navigation-box li.cart-btn span {
  position: relative;
  top: auto;
  right: auto;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

.mobile-nav__content .main-nav__navigation-box li.cart-btn i {
  font-size: 16px;
}

.mobile-nav__contact .main-nav__right_one {
  display: none;
}
.mobile-nav__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 30px;
}

.mobile-nav__language {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.mobile-nav__language img {
  border-radius: 50%;
  margin-right: 10px;
}

.mobile-nav__language
  .bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(.input-group-btn) {
  width: 70px;
}

.mobile-nav__language .bootstrap-select > .dropdown-toggle {
  padding: 0;
  background-color: transparent;
  border-radius: 0;
  border: none;
  outline: none;
  color: #fff;
}

.mobile-nav__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.mobile-nav__social a {
  font-size: 16px;
  color: #fff;
  -webkit-transition: 500ms;
  transition: 500ms;
}

.mobile-nav__social a + a {
  margin-left: 10px;
}

.mobile-nav__social a:hover {
  color: var(--thm-primary);
}

.mobile-nav__contact {
  margin-bottom: 0;
  margin-top: 20px;
  margin-bottom: 20px;
}

.mobile-nav__contact li {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.mobile-nav__contact li + li {
  margin-top: 15px;
}

.mobile-nav__contact li a {
  color: inherit;
  -webkit-transition: 500ms;
  transition: 500ms;
}

.mobile-nav__contact li a:hover {
  color: var(--thm-primary);
}

.mobile-nav__contact li > i {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--thm-primary);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  font-size: 14px;
  margin-right: 10px;
  color: #fff;
}
.mobile-nav__contact li > i::before {
  font-size: inherit;
}

/*--------------------------------------------------------------
# CTA One
--------------------------------------------------------------*/
.cta_one {
  position: relative;
  display: block;
  background: var(--thm-primary);
  padding: 80px 0;
}
.cta_one_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cta_one_left_text h3 {
  font-size: 40px;
  color: var(--thm-base);
  font-weight: 700;
  line-height: 50px;
}

.cta_one_right_btn .thm-btn {
  background: var(--thm-black);
}
.cta_one_right_btn .thm-btn:hover {
  color: var(--thm-primary);
  background: var(--thm-base);
}

/*--------------------------------------------------------------
# Welcome One
--------------------------------------------------------------*/
.welcome_one {
  position: relative;
  display: block;
  padding: 120px 0 120px;
  overflow: hidden;
}
.welcome_one_shape_bg {
  position: absolute;
  right: 0;
  bottom: -125px;
  background-repeat: no-repeat;
  width: 673px;
  height: 760px;
}
.welcome_one_left {
  position: relative;
  display: block;
  margin-right: 146px;
  margin-left: -120px;
}
.welcome_one_left_image {
  position: relative;
  display: block;
}
.welcome_one_left_image img {
  width: 100%;
}
.welcome_one_left_image:before {
  position: absolute;
  top: 40px;
  left: -40px;
  content: "";
  background: var(--thm-primary);
  width: 280px;
  height: 100%;
  z-index: -1;
}

.counter_one {
  position: absolute;
  top: 50%;
  right: -80px;
  transform: translateY(-50%);
}
.counter_one_single {
  position: relative;
  display: block;
  text-align: center;
  background: #ffffff;
  box-shadow: 0px 0px 30px 0px rgb(0, 0, 0, 0.1);
  border-bottom: 1px solid #e5e5e5;
  padding: 53px 40px 48px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.counter_one_single:last-child {
  border-bottom: none;
}
.counter_one_single:hover {
  background: #f6f6f6;
}
.counter_one_single h2 {
  color: var(--thm-primary);
  font-size: 30px;
  line-height: 40px;
  margin-bottom: 5px;
}
.counter_one_single p {
  font-size: 16px;
  margin: 0;
}
.counter_one_single .counter_one_experience {
}
.counter_one_single .counter_one_experience h2 {
  display: inline-block;
}
.counter_one_single .counter_one_experience span {
  display: inline-block;
  font-size: 30px;
  line-height: 40px;
  position: relative;
  top: -3px;
}

.welcome_one_right_content .block-title {
  margin-bottom: 38px;
}

.welcome_one_right_first_text {
  font-size: 20px;
  color: var(--thm-primary);
  font-style: italic;
  font-weight: 400;
  line-height: 36px;
  margin: 0;
}
.welcome_one_right_second_text {
  margin: 0;
  padding-top: 40px;
  padding-bottom: 38px;
}

.welcome_one_right_content ul li + li {
  margin-top: 14px;
}
.welcome_one_right_content ul li i {
  height: 17px;
  width: 17px;
  background: var(--thm-primary);
  border-radius: 50%;
  font-size: 10px;
  line-height: 17px;
  text-align: center;
  color: #ffffff;
  margin-right: 15px;
}

.welcome_one_signature_box {
  position: relative;
  display: block;
  margin-top: 68px;
  z-index: 1;
}
.welcome_one_signature_bg {
  position: absolute;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
  width: 223px;
  height: 72px;
  z-index: -1;
}
.aboutus { width: 50%; height: 80px; line-height: 80px; text-align: center; font-weight: bold; background-color: var(--thm-primary);
  margin: 0;
  font-size: 1.5em;
  color: var(--thm-primary);
  text-transform: uppercase;
}
.aboutus a {  color:#fff;}
.aboutus:hover { background-color: #000;}

/*--------------------------------------------------------------
# Our Services One
--------------------------------------------------------------*/
.our_services_one {
  position: relative;
  display: block;
  padding: 120px 0 90px;
}
.our_services_one:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 380px;
  content: "";
  background: #f6f6f6;
  z-index: -1;
}
.our_services_one .block-title {
}
.our_services_one_single {
  position: relative;
  display: block;
  margin-bottom: 55px;
  background: #ffffff;
  z-index: 2;
}
.our_services_one_single:hover:before {
  width: 100%;
  background: var(--thm-primary);
}
.our_services_one_single:before {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  background: #e4e4e4;
  height: 2px;
  width: 0;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.our_services_one_image {
  position: relative;
  display: block;
}
.our_services_one_image:before {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  content: "";
  background: rgba(11, 11, 11, 0.5);
  transform: scale(1, 0);
  transition: transform 500ms ease;
  transform-origin: top center;
}
.our_services_one_single:hover .our_services_one_image:before {
  transform: scale(1, 1);
  transform-origin: bottom center;
}
.our_services_one_image img {
  width: 100%;
}
.our_services_icon {
  height: 100px;
  width: 100px;
  background: var(--thm-primary);
  color: var(--thm-base);
  text-align: center;
  display: flex;
  align-items: center;
  position: absolute;
  bottom: -40px;
  right: 30px;
  justify-content: center;
}

.our_services_icon span:before {
  font-size: 65px;
  line-height: 100px;
}
.our_services_one_content {
  padding: 43px 50px 53px;
  border-left: 2px solid #e4e4e4;
  border-right: 2px solid #e4e4e4;
  border-bottom: 2px solid #e4e4e4;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.our_services_one_single:hover .our_services_one_content {
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.1);
}

.our_services_one_content h3 {
  font-size: 22px;
  font-weight: 700;
  line-height: 32px;
  margin-bottom: 35px;
}
.our_services_one_content h3 a {
  color: inherit;
  transition: all 500ms ease;
}
.our_services_one_content h3 a:hover {
  color: var(--thm-primary);
}
.our_services_one_content p {
  font-size: 16px;
  line-height: 30px;
  margin: 0;
}
.services_one_arrow_icon {
  height: 60px;
  width: 60px;
  border: 2px solid #e4e4e4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  background: #ffffff;
  position: absolute;
  left: 50px;
  bottom: -25px;
  color: #e4e4e4;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.our_services_one_single:hover .services_one_arrow_icon {
  color: var(--thm-primary);
  border: 2px solid var(--thm-primary);
}

/*--------------------------------------------------------------
# Inspiring Solutuions One
--------------------------------------------------------------*/
.inspiring_solutuions_one {
  position: relative;
  display: block;
  padding: 120px 0 113px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
}
.inspiring_solutuions_one .image-layer {
  filter: grayscale(100%);
}

.inspiring_solutuions_one:before {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  content: "";
  background: rgba(21, 21, 21, 0.8);
}
.inspiring_solutuions_one:after {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  background: var(--thm-base);
  height: 385px;
}
.inspiring_solutuions_one_left {
  position: relative;
  display: block;
  z-index: 2;
}

.inspiring_solutuions_one_left .block-title h4 {
  color: #ffffff;
}
.inspiring_solutuions_one_left .block-title h2 {
  color: #ffffff;
}
.inspiring_solutuions_one_btn {
  margin-bottom: 175px;
}


.inspiring_solutuions_one_left_bottom {
  display: flex;
  align-items: center;
  margin-top: 50px;
}

.inspiring_solutuions_one_left_bottom_text {
  margin-left: 30px;
}

.inspiring_solutuions_one_left_bottom_text ul li {
  position: relative;
  display: block;
  padding-left: 30px;
}
.inspiring_solutuions_one_left_bottom_text ul li + li {
  margin-top: 12px;
}
.inspiring_solutuions_one_left_bottom_text ul li .icon_box {
  position: absolute;
  top: 0;
  left: 0;
}
.inspiring_solutuions_one_left_bottom_text ul li .icon_box span {
  color: var(--thm-primary);
  transition: color 500ms ease, transform 500ms ease;
}
.inspiring_solutuions_one_left_bottom_text ul li:hover .icon_box span {
  color: var(--thm-black);
}


.inspiring_solutuions_one_left_bottom_text ul li .content p {
  margin: 0;
  font-size: 16px;
}

.inspiring_solutuions_one_right {
  position: relative;
  display: block;
  z-index: 2;
}
.inspiring_solutuions_one_video_box {
  float: right;
  position: relative;
  display: block;
}
.inspiring_solutuions_one_video_box .video-one__btn {
  height: 150px;
  width: 150px;
  background: var(--thm-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--thm-base);
  font-size: 30px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.inspiring_solutuions_one_video_box .video-one__btn:hover {
  background: var(--thm-black);
  color: #ffffff;
}

.inspiring_solutuions_one_right_skills {
  position: relative;
  display: block;
  float: left;
  background: #ffffff;
  padding: 60px 70px 45px;
  box-shadow: 0px 10px 60px 0px rgb(0, 0, 0, 0.1);
}

.inspiring_solutuions_one_right_skills .text {
  padding-bottom: 28px;
}

.inspiring_solutuions_one_right_skills .check {
  background: #f6f6f6;
  padding: 18px 30px;
  margin: 0px 0 40px;
}
.inspiring_solutuions_one_right_skills .check li {
  color: var(--thm-black);
}
.inspiring_solutuions_one_right_skills .check li i {
  height: 20px;
  width: 20px;
  background: var(--thm-primary);
  border-radius: 50%;
  font-size: 13px;
  line-height: 20px;
  text-align: center;
  color: #ffffff;
  margin-right: 18px;
  position: relative;
  top: -3px;
}

.progress-levels {
  position: relative;
  display: block;
}



/*--------------------------------------------------------------
# Brand One
--------------------------------------------------------------*/
.brand-one {
  position: relative;
  display: block;
  padding-top: 118px;
  padding-bottom: 119px;
  background: #f6f6f6;
}
.brand-one__carousel img {
  opacity: 0.3;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.brand-one__carousel img:hover {
  opacity: 0.6;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
}

/*--------------------------------------------------------------
# Our Projects One
--------------------------------------------------------------*/
.our_projects_one {
  position: relative;
  display: block;
  padding: 120px 0 90px;
}
.project-filter.style1 {
  position: relative;
  display: block;
  text-align: center;
  margin-top: 28px;
  float: right;
}
.project-filter.style1 li {
  position: relative;
  display: inline-block;
  vertical-align: middle;
}

.project-filter.style1 li .filter-text {
  position: relative;
  color: var(--thm-gray);
  font-size: 18px;
  font-weight: 500;
  display: block;
  cursor: pointer;
  transition: all 0.4s ease;
}
.project-filter.style1 li .filter-text:before {
  position: absolute;
  bottom: 9px;
  left: 0;
  right: 0;
  content: "";
  background: var(--thm-primary);
  height: 2px;
  opacity: 0;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.project-filter.style1 li .filter-text:hover:before,
.project-filter.style1 li.active .filter-text:before {
  opacity: 1;
}

.project-filter.style1 li:hover .filter-text,
.project-filter.style1 li.active .filter-text {
  color: var(--thm-black);
}
.project-filter.style1 li .count {
  color: var(--thm-black);
  font-size: 11px;
  line-height: 26px;
  font-weight: 500;
  display: inline-block;
  padding: 0 0;
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  position: relative;
  top: -8px;
}

.project-filter.style1 li:hover .count,
.project-filter.style1 li.active .count {
  opacity: 1;
}

.project-filter.style1 li + li {
  margin-left: 15px;
}

.our_projects_one_single {
  position: relative;
  display: block;
  margin-bottom: 30px;
}
.our_projects_one_image {
  position: relative;
  display: block;
}
.our_projects_one_image:before {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  content: "";
  background: rgba(255, 179, 0, 0.5);
  transform: scaleX(0);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.our_projects_one_single:hover .our_projects_one_image:before {
  transform: scaleX(1);
}
.our_projects_one_image img {
  width: 100%;
}
.our_projects_one_icon {
  height: 70px;
  width: 70px;
  position: absolute;
  top: 50px;
  right: 50px;
  background: var(--thm-base);
  border-radius: 50%;
  display: flex;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  transform: scale(0);
  justify-content: center;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.our_projects_one_icon span:before {
  color: var(--thm-black);
  font-size: 25px;
  margin: 0;
}
.our_projects_one_icon:hover {
  background: var(--thm-black);
}
.our_projects_one_icon:hover span:before {
  color: var(--thm-base);
}
.our_projects_one_single:hover .our_projects_one_icon {
  transform: scale(1);
}
.our_projects_one_text {
  position: absolute;
  left: 50px;
  bottom: 50px;
  transform: translate3d(0px, 118px, 0px);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.our_projects_one_single:hover .our_projects_one_text {
  transform: translate3d(0px, 0px, 0px);
}
.our_projects_one_text h4 {
  font-size: 30px;
  color: var(--thm-base);
  font-weight: 700;
}


#testimonials-one-pagination {
  z-index: 10;
  position: relative;
  text-align: left;
  margin-top: -20px;
}

@media (max-width: 1490px) {
  #testimonials-one-pagination {
    top: -50px;
  }
}

#testimonials-one-pagination .swiper-pagination-bullet {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  opacity: 0.5;
  background-color: #fff;
  margin: 0 2.5px;
}

#testimonials-one-pagination
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
}

@media (max-width: 1490px) {
  .testimonails_one .col-xl-4 {
    flex: 0 0 100%;
    max-width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
  }
  .testimonails_one .block-title {
    max-width: 60%;
  }
}




/*--------------------------------------------------------------
# Blog One
--------------------------------------------------------------*/
.blog_one {
  position: relative;
  display: block;
  padding: 120px 0 90px;
}
.blog_one.blog-page {
  padding-bottom: 120px;
}
.blog_one .block-title {
}
.blog_one_single {
  position: relative;
  display: block;
  margin-bottom: 30px;
}
.blog_one_single:before {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  background: var(--thm-primary);
  height: 2px;
  z-index: 1;
  transform: scaleX(0);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.blog_one_single:hover:before {
  transform: scaleX(1);
}

.blog_one_con { width: 100%; height: auto; margin: auto; list-style: none; padding: 0; overflow: hidden; margin-bottom: 30px;}
.blog_one_con li { width: 30%; float: left; list-style:none;  margin-right: 3.33%; border-bottom: 1px #DCD6D7 solid; padding-top: 35px; padding-bottom: 15px;}
.blog_one_img { width: 100%;}
.blog_one_tit { width: 100%; height: 70px; text-align: center; line-height: 70px; overflow: hidden; white-space: nowrap; text-overflow: ellipsis;}
.blog_one_tit a { font-weight:  bold; color:#989494;}
.blog_one_tit a:hover {color: #ffb300;}

.blog-one__meta {
  margin: 0;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  margin-bottom: 17px;
}

.blog-one__meta li + li {
  margin-left: 10px;
}
.blog-one__meta li a {
  font-size: 14px;
  color: var(--thm-gray);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.blog-one__meta li a i {
  color: var(--thm-primary);
  padding-right: 3px;
}
.blog-one__meta li a:hover {
  color: var(--thm-black);
}


.blog-page__load-more {
  margin-top: 30px;
}



/*--------------------------------------------------------------
# Site Footer
--------------------------------------------------------------*/
.site-footer {
  position: relative;
  display: block;
  background: #151515;
  padding: 127px 0 102px;
  background-repeat: no-repeat;
  background-position: center center;
}

.site-footer:before {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  content: "";
  background: rgba(21, 21, 21, 0.96);
}


.footer-widget_about_text__box {
  padding-top: 36px;
  padding-bottom: 18px;
}
.footer-widget_about_text__box p {
  color: #9b9b9b;
  font-size: 15px;
  margin: 0;
  line-height: 30px;
}


.footer-widget__about ul li {
  position: relative;
  display: block;
  padding-left: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 6px;
  margin-bottom: 8px;
}
.footer-widget__about ul li:last-child {
  border-bottom: none;
  padding-bottom: none;
  margin-bottom: none;
}
.footer-widget__about ul li .footer-widget_about_icon {
  position: absolute;
  top: 0;
  left: 0;
}
.footer-widget__about ul li .footer-widget_about_icon span:before {
  color: var(--thm-primary);
  font-size: 15px;
  line-height: 25px;
}
.footer-widget__about ul li .footer-widget_about_text {
}
.footer-widget__about ul li .footer-widget_about_text a {
  font-size: 14px;
  color: var(--thm-base);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.footer-widget__about ul li .footer-widget_about_text a:hover {
  color: var(--thm-primary);
}
.footer-widget__title {
  margin-bottom: 28px;
}
.footer-widget__title h3 {
  font-size: 20px;
  color: var(--thm-base);
  font-weight: 700;
  line-height: 30px;
}

.footer-widget__explore {
  position: relative;
  display: block;
  overflow: hidden;
  margin-left: 10px;
}
.footer-widget__explore_list {
  position: relative;
  display: block;
  float: left;
  margin-top: -3px;
}
.footer-widget__explore_list li + li {
  margin-top: 6px;
}
.footer-widget__explore_list li a {
  position: relative;
  font-size: 15px;
  color: #9b9b9b;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.footer-widget__explore_list li a:hover {
  color: var(--thm-base);
}
.footer-widget__explore_list li a:before {
  position: absolute;
  bottom: 3px;
  left: 0;
  right: 0;
  height: 2px;
  content: "";
  background: var(--thm-primary);
  transform: scaleX(0);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.footer-widget__explore_list li a:hover:before {
  transform: scaleX(1);
}
.footer-widget__explore_list_two {
  position: relative;
  display: block;
  float: left;
  margin-left: 48px;
  margin-top: -3px;
}
.footer-widget__explore_list_two li + li {
  margin-top: 6px;
}
.footer-widget__explore_list_two li a {
  position: relative;
  font-size: 15px;
  color: #9b9b9b;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.footer-widget__explore_list_two li a:hover {
  color: var(--thm-base);
}
.footer-widget__explore_list_two li a:before {
  position: absolute;
  bottom: 3px;
  left: 0;
  right: 0;
  height: 2px;
  content: "";
  transform: scaleX(0);
  background: var(--thm-primary);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.footer-widget__explore_list_two li a:hover:before {
  transform: scaleX(1);
}
.footer-widget__latest_news {
  margin-left: 7px;
}


.footer-widget__latest_news_list li {
  position: relative;
  display: block;
  padding-left: 85px;
}
.footer-widget__latest_news_list li + li {
  margin-top: 40px;
}
.footer-widget__latest_news_list li .footer-widget__latest_news_image {
  position: absolute;
  top: 9px;
  left: 0;
}

.footer-widget__latest_news_list li .footer-widget__latest_news_content h4 {
  font-size: 12px;
  color: var(--thm-primary);
  font-weight:bold;
  line-height: 30px;
}

.footer-widget__latest_news_list li .footer-widget__latest_news_content p {
  font-size: 15px;
  margin: 0;
  line-height: 26px;
}
.footer-widget__latest_news_list li .footer-widget__latest_news_content p a {
  color: var(--thm-base);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.footer-widget__latest_news_list
  li
  .footer-widget__latest_news_content
  p
  a:hover {
  color: var(--thm-primary);
}

.footer-widget__newsletter_text p {
  font-size: 15px;
  color: #9b9b9b;
  margin: 0;
  line-height: 30px;
}
.footer_input-box {
  position: relative;
  display: block;
  margin-top: 14px;
  border-bottom: 4px solid var(--thm-primary);
  padding-bottom: 5px;
}

.footer_input-box input[type="Email"] {
  font-size: 15px;
  color: #9b9b9b;
  height: 70px;
  width: 100%;
  background: transparent;
  border: none;
  border-radius: 0;
  padding-right: 70px;
}
.footer_input-box .button {
  position: absolute;
  top: 50%;
  right: 0;
  height: 40px;
  width: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: #ffffff;
  border: 0;
  transform: translateY(-50%);
  transition: all 500ms ease;
}
.footer_input-box .button:hover {
  background-color: var(--thm-primary);
}
.footer_input-box .button span:before {
  color: var(--thm-black);
  font-size: 15px;
  transition: all 500ms ease;
}
.footer_input-box .button:hover span:before {
  color: #fff;
}

.footer_input-box input[type="email"]:focus {
  outline: none;
}
.footer_input-box input[type="email"]::-webkit-input-placeholder {
  color: #b4b8c3;
}
.footer_input-box input[type="email"]:-moz-placeholder {
  color: #b4b8c3;
}
.footer_input-box input[type="email"]::-moz-placeholder {
  color: #b4b8c3;
}
.footer_input-box input[type="email"]:-ms-input-placeholder {
  color: #b4b8c3;
}

.mc-form__response {
  color: #fff;
  font-size: 14px;
}
.mc-form__response a {
  color: var(--thm-primary);
}

/*--------------------------------------------------------------
# Site Footer Bottom
--------------------------------------------------------------*/
.site-footer_bottom {
  position: relative;
  display: block;
  background: #0b0b0b;
  border-top: 1px solid #2d2d2d;
  padding: 22.5px 0;
}
.site-footer_bottom .container {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  justify-content: space-between;
}

.site-footer_bottom_copyright p {
  font-size: 15px;
  color: #9b9b9b;
  margin: 0;
}
.site-footer_bottom_copyright a {
  color: #9b9b9b;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.site-footer_bottom_copyright a:hover {
  color: var(--thm-primary);
}
.site-footer__social {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
}
.site-footer__social a {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  text-align: center;
  width: 40px;
  height: 40px;
  background-color: var(--thm-base);
  color: var(--thm-black);
  font-size: 15px;
  border-radius: 50%;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.site-footer__social a + a {
  margin-left: 10px;
}
.site-footer__social a:hover {
  background: var(--thm-primary);
  color: var(--thm-base);
}



/*--------------------------------------------------------------
#  Page Header
--------------------------------------------------------------*/
.page-header {
  position: relative;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-position: center center;
  overflow: hidden;
  padding: 120px 0 115px;
  background-size: cover; margin-bottom: 50px;
}

.page-header .container {
  position: relative;
  text-align: center;
}
.page-header h2 {
  color: #ffffff;
  font-size: 70px;
  font-weight: 800;
  margin: 0;
  line-height: 80px;
}
.thm-breadcrumb {
  margin-bottom: 12px;
}
.thm-breadcrumb li + li {
  margin-left: 15px;
}
.thm-breadcrumb li {
  position: relative;
  display: inline-block;
}
.thm-breadcrumb li:before {
  position: absolute;
  top: 6px;
  right: -13px;
  height: 21px;
  width: 3px;
  content: "";
  background: var(--thm-primary);
  transform: rotate(10deg);
}
.thm-breadcrumb li:last-child:before {
  display: none;
}
.thm-breadcrumb li a,
.thm-breadcrumb li span {
  font-size: 20px;
  color: #fff;
  font-weight: bold;
  display: inline-block;
  line-height: 30px;
}


/*--------------------------------------------------------------
#  xiangqingneirong
--------------------------------------------------------------*/
.pro_content1 { width: 63.2%; height: auto; margin: auto;  border-bottom: 1px dashed #D5D5D5; overflow: hidden; padding-bottom: 50px; margin-bottom: 50px;}
.pro_content { width: 63.2%; height: auto; margin: auto; overflow: hidden; margin-bottom: 50px;}

.pro_content_Z { width: 100%; height: auto; margin: auto; overflow: hidden; }
.pro_content_l { width: 40%; height: auto; float: left;}

 .TB_ZT_IMG {
            width: 100%;
            height: 500px;
            object-fit: cover;
            border: 1px solid #ddd; border-radius: 10px;
        }

        .TB_ZT_XIMG {
            margin-top: 10px;
        }

        .TB_ZT_XIMG_1 {
            width: 58px;
            height: 58px;
            margin-right: 4px;
            border: 2px solid transparent;border-radius: 10px;
            cursor: pointer;
            object-fit: cover;
        }

        .thumbnail.active {
            border-color: #FF4400;
        }

.pro_content_r { width: 56%; height: auto; float: right; }
.pro_content_r_tit { width:100%; height: auto; line-height: 40px; padding-bottom: 20px; font-size: 1.6em; font-weight: bold; color: #000000; border-bottom: 0.1em #ffb300 solid;}
.pro_content_con { width:95%; height: auto; margin: auto; font-size: 15px; line-height: 26px; margin-top: 30px;}

.pro_content_con1 { width:100%; height: auto; line-height: 26px; font-size: 15px; padding-bottom: 30px; margin-top: 30px;}

.pro_line { width: 20%; height: 60px; line-height: 60px; margin: auto; background-color: #ffb300; color: #fff; text-align: center; font-weight: bold;}
.re_con { width: 100%; grid-template-columns: repeat(3, 1fr); grp:20px; height: auto; overflow: hidden; margin-top: 30px;}
.re_con li { width: 30%; float: left; list-style:none;  margin-right: 3.33%; border-bottom: 1px #DCD6D7 dashed; padding-top: 35px; padding-bottom: 20px;}

.re_con_img { width: 100%; height: 265px;}
.re_con_tit { width: 100%; height: 40px; line-height: 40px; text-align: center; margin-top: 10px; overflow: hidden; white-space: nowrap; text-overflow: ellipsis;}
.re_con_tit a { color: #333030;}
.re_con_tit a:hover { color: #ffb300}





/*--------------------------------------------------------------
#  common
--------------------------------------------------------------*/
.pro_content_ab { width: 100%; height: auto; border-bottom: 1px dashed #DCD6D7; padding-bottom: 50px; margin-bottom: 50px; overflow: hidden;}
.pro_content_ab_l { width: 60%; float: left; }
.pro_content_ab_l_con { width: 100%; height: auto; overflow: hidden; margin-top: 15px;}
.pro_content_ab_l_con li { width: 100%; line-height: 30px; font-size: 0.9em; overflow: hidden; margin-top: 15px;}
.pro_content_ab_l_con li:before { content: "◉"; color: #ffb300; padding-right: 10px; font-size: 1.2em; }

.pro_content_ab_r { width: 38%; float: right;}

.pro_content_ca { width: 100%; height: auto; overflow: hidden; margin-top: 15px;}
.pro_content_ca li { width: 100%; line-height: 30px; font-size: 0.9em; overflow: hidden; margin-top: 15px;}
.pro_content_ca li:before { content: "◉"; color: #ffb300; padding-right: 10px; font-size: 1.2em; }



/*--------------------------------------------------------------
#  daleidanye
--------------------------------------------------------------*/

.pro_da_l { width: 33%; height: auto; overflow: hidden; float: left;}
.pro_search { width: 100%; height: 50px; }

/* searchTxt */
.searchBtn button,.searchTxt .searchMenu .searchSelected{background-image:url(../imgs/searchbg.png);background-repeat:no-repeat;}

.searchTxt{float:left;width:75%;height:42px;border:2px solid #d3d3d3;border-right:0;position:relative;z-index:20;background:#fff;}
 
.searchTxtHover{float:left;width:75%;height:42px;border:2px solid #d3d3d3;border-right:0;position:relative;z-index:20;background:#fff;}
 
.searchTxt .searchMenu{float:left;}
.searchTxt .searchMenu .searchSelected{color:#a8a8a8;cursor:pointer;font-size:14px;font-weight:bold;height:42px;line-height:42px;width:7%;background-position:0px -54px;}
.searchTxt .searchMenu .searchOpen{ background-position:0px -104px;}
 
.searchTxt input{float:left;border:0;background:#fff;color:#333;font:14px/22px Arial, Helvetica, sans-serif; width:221px; line-height: 30px; margin:0;outline:medium none;padding:4px;}

.searchBtn{float:left;}
.searchBtn button{background-position:0px 0px;border:0;color:#fff;cursor:pointer;float:left;font-size:16px;height:42px;text-indent:-9999px;width:86px;}

.pro_list_list { width: 100%; height: auto; overflow: hidden;}

.pro_list_list_tit { width: 100%; height: 70px; line-height: 70px; color: #868686; font-size: 1.3em; font-weight: bold; background-image: linear-gradient(to right, #ffb300 12%, transparent 12%);
  background-position: bottom;
  background-size: 100% 5px; /* 控制边框高度 */
  background-repeat: no-repeat;}

.pro_list_list_con { width: 100%; height: auto; margin-top: 20PX; overflow: hidden;}
.pro_list_list_con li { width: 98%; height: 40px; line-height: 40px; border-bottom: 1px dashed #DCD6D7; font-size: 0.9em; margin-left: 1%; overflow: hidden; white-space: nowrap; text-overflow: ellipsis;}
.pro_list_list_con li a { color: #868686;}
.pro_list_list_con li a:hover { color: #ffb300;}

.pro_list_list_con1 { width: 100%; height: auto; margin-top: 20px; overflow: hidden;}
.pro_list_list_con1 li { width: 98%; height: auto; margin-top: 15px; margin-left: 1%; overflow: hidden; }

.pro_list_list_con1_img { width: 20%; height: 80px; float: left;}
.pro_list_list_con1_tit { width: 75%; height: auto; float: right; font-size: 0.9em; overflow: hidden;}
.pro_list_list_con1_tit1 { width: 100%; line-height: 30px; overflow: hidden; white-space: nowrap; text-overflow: ellipsis;}
.pro_list_list_con1_tit1 a { color: #868686;}
.pro_list_list_con1_tit1 a:hover { color: #ffb300;} 


.pro_time { height: 26px; line-height: 26px; margin-top: 3px;}

.pro_da_r{ width: 65%; float: right; margin-top: 40px; overflow: hidden;}
.pro_da_tit { width: 100%; height: 49px; line-height: 49px; font-size: 1.1em; font-weight: bold; overflow: hidden;} 

.pro_da_tit_s { width: 100%; height: 50px; margin: auto; margin-top: 20px; margin-bottom: 20px; overflow: hidden;}
.pro_da_tit_s_l { width: 10%; height: 45px; line-height: 45px; font-size: 16px; font-weight: bold; float: left;}
.pro_da_tit_s_r { width: 89%; height: 45px; float: right;}
.pro_da_tit_s_r li { width: 40px; height: 40px; line-height: 40px; text-align: center; list-style: none; font-size: 18px; font-weight: bold; float: left; margin-right: 15px;}
.pro_da_tit_s_r li a { color: #ffffff; }
.F_B { width: 40px; height: 40px; background-color: #4267b3; border-radius:8px 8px 8px 8px;}
.L_N { width: 40px; height: 40px; background-color: #0e76a8; border-radius:8px 8px 8px 8px;}
.T_w { width: 40px; height: 40px; background-color: #000000; border-radius:8px 8px 8px 8px;}
.ins_i { width: 40px; height: 40px;}
.ins_i img { width: 40px; height: 40px;}
.tum_i{ width: 40px; height: 40px; background-color: #34526f; border-radius:8px 8px 8px 8px;}

.red_i { width: 40px; height: 40px;}
.red_i img { width: 40px; height: 40px;}
.bl_i { width: 40px; height: 40px;}
.bl_i img { width: 40px; height: 40px;}
.fli_i { width: 40px; height: 40px;}
.fli_i img { width: 40px; height: 40px;}
.PT_i { width: 40px; height: 40px;}
.PT_i img { width: 40px; height: 40px;}
.bf_i { width: 40px; height: 40px;}
.bf_i img { width: 40px; height: 40px;}
.aps_i { width: 40px; height: 40px;}
.aps_i img { width: 40px; height: 40px;}


.pro_da_con { width: 100%; height: auto; font-size: 0.9em;  line-height: 26px; padding-bottom: 50px; border-bottom: 1px dashed #DCD6D7; margin-bottom: 50px; overflow: hidden;} 
.pro_da_con a { font-weight: bold; color: #34526f;}
.pro_da_con a:hover { color: #ffb300;}



/*--------------------------------------------------------------
#  News
--------------------------------------------------------------*/
.News_con { width: 100%; height: auto; margin-top: 20px; overflow: hidden;}
.News_con li { width: 100%; height: auto; border-bottom: 1px dashed #DCD6D7; padding-bottom: 20px; margin-bottom: 20px; overflow: hidden;}
.News_con_img { width: 200px; height: 130px; float: left;}
.News_con_r { width: 70%; height: auto; float: right;}
.News_con_r_tit { width: 100%; height: 30px; line-height: 30px; font-size: 1em; font-weight: bold; margin-top: 8px; overflow: hidden; white-space: nowrap; text-overflow: ellipsis;}
.News_con_r_tit a { color: #868686;}
.News_con_r_tit a:hover { color: #ffb300;}
.News_con_r_con { width: 100%; height: auto; line-height: 26px; font-size: 0.85em; margin-top: 3px;}


/*--------------------------------------------------------------
#  solution
--------------------------------------------------------------*/
.pro_sl { width: 100%; height: auto; overflow: hidden;}
.pro_sl_tit { width: 100%; height: 40px; line-height: 40px; overflow: hidden; white-space: nowrap; text-overflow: ellipsis;}
.pro_sl_tit { width: 100%; height: 50px; line-height: 50px; margin-bottom: 20px; background-image: linear-gradient(to right, #ffb300 6%, transparent 6%);
  background-position: bottom;
  background-size: 100% 5px; /* 控制边框高度 */
  background-repeat: no-repeat; overflow: hidden; white-space: nowrap; text-overflow: ellipsis;}

.pro_sl_con { width: 100%; height: auto; line-height: 25px; font-size: 0.9em;} 

.pro_sl1 { width: 100%; height: auto; border-bottom: 1px #DCD6D7 dashed; padding-bottom: 40px; overflow: hidden;}
.pro_sl_con1 { width: 100%; height: auto; line-height: 25px;} 
.pro_sl_con1_l { width: 45%; height: auto; float: left; overflow: hidden;}
.pro_sl_con1_l_tit { width: 100%; height:auto; line-height: 50px; font-size: 0.9em; overflow: hidden; }

  /* 轮播容器样式 */
        .carousel-container {
            width: 100%;
            height: 450px;
            position: relative;
            overflow: hidden;
            display: inline-block;
        }

        /* 图片列表样式 */
        .carousel-slide {
            display: flex;
            width: 100%;
            height: 100%;
            transition: transform 0.5s ease-in-out;
        }

        /* 单个图片样式 */
        .carousel-slide img {
            min-width: 100%; border-radius: 8px;
            height: 100%;
            object-fit: cover;
        }

        /* 导航按钮样式 */
        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0,0,0,0.5);
            color: white;
            padding: 10px;
            border: none;
            cursor: pointer;
        }

        .prev { left: 0; }
        .next { right: 0; }

        /* 指示器样式 */
        .indicators {
            position: absolute;
            bottom: 10px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 5px;
        }

        .indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255,255,255,0.5);
            cursor: pointer;
        }

        .indicator.active {
            background: white;
        }



.pro_sl_con1_r1 { width: 51%; height: auto; margin-top: 150px; overflow: hidden; float: right; line-height: 25px; font-size: 0.9em;}

.pro_sl2 { width: 100%; height: auto; border-bottom: 1px #DCD6D7 dashed; padding-top: 30px; padding-bottom: 30px; overflow: hidden;}
.pro_sl_con1_l2 { width: 51%; height: auto; margin-top: 130px; overflow: hidden; float: left; line-height: 25px; font-size: 0.9em;}
.pro_sl_con1_r2 { width: 45%; height: auto; float: right; overflow: hidden;}

.pro_sl3 { width: 100%; height: auto; border-bottom: 1px #DCD6D7 dashed; padding-top: 30px; padding-bottom: 30px; overflow: hidden;}

.pro_sl_con1_r3 { width: 51%; height: auto; margin-top: 130px; overflow: hidden; float: right; line-height: 25px; font-size: 0.9em;}
.pro_sl_con1_l3 { width: 51%; height: auto; margin-top: 80px; overflow: hidden; float: left; line-height: 25px; font-size: 0.9em;}

/*--------------------------------------------------------------
#  Our Projects Page
--------------------------------------------------------------*/
.our_projects_one.our_projects_page {
  padding-top: 110px;
}
.our_projects_one.our_projects_page .project-filter.style1 {
  float: none;
  margin-bottom: 51px;
  margin-top: 0;
}


/*--------------------------------------------------------------
# Page
--------------------------------------------------------------*/
.dede_pages{ width: 80%; height: 30px; font-size: 0.9em  margin: auto; overflow: hidden; margin-top: 20px;
}

.dede_pages li { height: 30px; line-height: 30px;
	float:left;
	margin-right:10px;
	list-style: none;
}
.dede_pages li a{
	float:left;
	padding:2px 4px 2px;
	color:#555;
	display:block;
}
.dede_pages li a:hover{
	color:#690;
	text-decoration:none;
	padding:2px 4px 2px;
}
.dede_pages li.thisclass,
.dede_pages li.thisclass a,.pagebox  li.thisclass a:hover{
	background-color:#F8F8F8;
	padding:2px 4px 2px;
	font-weight:bold;
}
.dede_pages .pageinfo{
	line-height:21px;
	padding:12px 10px 12px 16px;
	color:#999;
}
.dede_pages .pageinfo strong{
	color:#555;
	font-weight:normal;
	margin:0px 2px;
}

