﻿/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Utility
# Cards
# Common
# Form
# Navigations
# Animations
# Mobile Nav
# Search Popup
# Page Header
# Google Map
# Client Carousel
# vocational-area
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Common
--------------------------------------------------------------*/
:root {
  --thm-font: 'Roboto', sans-serif;
  --thm-base: #c1161d;
  --thm-reey-font: 'reeyregular';
  --thm-gray: #737373;
  --thm-gray-rgb: 115, 115, 115;
  --thm-primary: #9d9482;
  --thm-primary-rgb: 157, 148, 130;
  --thm-black: #333;
  --thm-black-rgb: 0, 0, 0;
  --thm-1920: 1920;
  --thm-1400: 1400;
  --thm-1200: 1200;
  --thm-900: 900;
}

.row {
  --bs-gutter-x: 1.5rem;
}

.gutter-y-30 {
  --bs-gutter-y: 1.5rem;
}
html {
  font-size: 20px;
}
body {
  font-family: var(--thm-font);
  color: var(--thm-black);
  font-size: 1rem;
  line-height: 1.7rem;
  font-weight: 400;
}

body.locked {
  overflow: hidden;
}

a {
  color: var(--thm-gray);
}

a,
a:hover,
a:focus,
a:visited {
  text-decoration: none;
}

::placeholder {
  color: inherit;
  opacity: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--thm-black);
  margin: 0;
}

dl,
ol,
ul {
  margin-top: 0;
  margin-bottom: 0;
}

::placeholder {
  color: inherit;
  opacity: 1;
}

.page-wrapper {
  position: relative;
  margin: 0 auto;
  width: 100%;
  min-width: 15rem;
  overflow: hidden;
}

.container {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

::placeholder {
  color: inherit;
  opacity: 1;
}

.section-separator {
  border-color: var(--thm-border);
  border-width: 0.05rem;
  margin-top: 0;
  margin-bottom: 0;
}

.thm-btn1 {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  -webkit-appearance: none;
  border: none;
  outline: none !important;
  border: 0.05rem #f0f0f0 solid;
  color: #333;
  font-size: 0.9rem;
  font-weight: normal;
  text-transform: uppercase;
  padding: 0.5rem 3rem;
  transition: 500ms;
  letter-spacing: 0.1em;
}

.thm-btn1:hover {
  background: var(--thm-base);
  color: #fff;
}

.thm-btn {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  -webkit-appearance: none;
  border: none;
  outline: none !important;
  background-color: #f0f0f0;
  color: #333;
  font-size: 1.1rem;
  font-weight: normal;
  text-transform: uppercase;
  padding: 0.925rem 3rem;
  transition: 500ms;
  letter-spacing: 0.1em;
}

.thm-btn:before {
  position: absolute;
  bottom: -0.25rem;
  width: 100%;
  height: 0.05rem;
  left: 0;
  background: #ffffff;
  content: '';
  transition: transform 500ms ease;
  transform-origin: left center;
  transform: scale(1, 1);
}

.thm-btn:hover {
  background: var(--thm-base);
  color: #ffffff;
}

.thm-btn:hover::before {
  transform: scale(0, 1);
  transform-origin: right center;
}

.odometer.odometer-auto-theme,
.odometer.odometer-theme-default {
  font-family: var(--thm-font);
}

.section-title {
  margin-bottom: 2rem;
}

.section-title__tagline {
  position: relative;
  display: inline-block;
  color: var(--thm-black);
  font-size: 1rem;
  font-weight: 400;
  align-items: center;
  line-height: 1.5rem;
  text-transform: uppercase;
  margin-bottom: 0.1rem;
  letter-spacing: 0.05rem;
}

/*.section-title__title::after {
  content: '';
  display: block;
  background-color: #000;
  width: 2rem;
  height: 0.1rem;
  margin: 1rem auto;
  z-index: 1;
}*/

.section-title__title {
  position: relative;
  margin: 0;
  font-weight: 500;
  color: var(--thm-black);
  font-size: 2.5rem;
  line-height: 3rem;
  text-transform: uppercase;
  text-align: center;
}

.bootstrap-select .dropdown-menu {
  padding-top: 0;
  padding-bottom: 0;
  border-radius: 0;
}

.bootstrap-select .dropdown-item.active,
.bootstrap-select .dropdown-item:active {
  background-color: var(--thm-base);
}

.preloader {
  position: fixed;
  background-color: #fff;
  background-position: center center;
  background-repeat: no-repeat;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9991;
  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 */
.scroll-to-top {
  display: inline-block;
  width: 2.25rem;
  height: 2.25rem;
  background: var(--thm-primary);
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  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: 0.9rem;
  line-height: 2.25rem;
}

.scroll-to-top:hover {
  background-color: var(--thm-black);
}

.scroll-to-top:hover i {
  color: #fff;
}

/*--------------------------------------------------------------
# Navigations One
--------------------------------------------------------------*/
.main-header {
  position: relative;
  display: block;
  padding: 0 4rem;
}

.main-header__three-line-icon {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 4rem;
  display: flex;
  align-items: center;
}

.main-header__three-line-icon > a {
}

.main-header__three-line-icon > img {
  width: 1.55rem;
  height: 0.9rem;
}

.main-menu-wrapper {
  position: relative;
  background-color: #ffffff;
}

.main-header__logo {
  position: absolute;
  top: 0;
  left: -14.25rem;
  bottom: 0;
  display: flex;
  align-items: center;
  z-index: 2;
}

.main-header__logo > a {
}

.main-header__logo > a > img {
}

.main-menu-wrapper__top {
  position: relative;
  display: block;
  padding: 0 0rem 0;
  background-color: var(--thm-black);
}

.main-menu-wrapper__top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.1rem 2rem;
}

.main-menu-wrapper__left {
}

.main-menu-wrapper__left-contact-box {
  display: flex;
  align-items: center;
}

.main-menu-wrapper__left-contact-box li {
  display: flex;
  align-items: center;
}

.main-menu-wrapper__left-contact-box li + li {
  margin-left: 2rem;
}

.main-menu-wrapper__left-contact-box li .icon {
}

.main-menu-wrapper__left-contact-box li .icon i {
  font-size: 0.6rem;
  color: var(--thm-primary);
  line-height: 1.7rem;
}

.main-menu-wrapper__left-contact-box li .text {
  margin-left: 0.6rem;
}

.main-menu-wrapper__left-contact-box li .text p {
  font-size: 0.7rem;
  font-weight: 500;
  margin: 0;
}

.main-menu-wrapper__left-contact-box li .text a {
  color: #9d9d9d;
}

.main-menu-wrapper__right {
}

.main-menu-wrapper__right-social {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  padding: 0.6rem 0;
}

.main-menu-wrapper__right-social a {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  font-size: 0.6rem;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu-wrapper__right-social a + a {
  margin-left: 1.5rem;
}

.main-menu-wrapper__right-social a:hover {
  color: var(--thm-primary);
}

.main-menu-wrapper__bottom {
  position: relative;
  display: block;
  padding: 0 0rem 0;
}

.main-menu {
  position: relative;
  z-index: 91;
}

.main-menu__inner {
  display: flex;
  align-items: center;
  position: relative;
}

.main-menu__right {
  margin-left: auto;
  padding-left: 1.5rem;
  display: flex;
  align-items: center;
  position: relative;
}

.main-menu__right:before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  content: '';
  background-color: #e5e5e5;
  width: 0.05rem;
}

@media (max-width: 21.25rem) {
  .main-menu__right {
    padding-left: 0;
  }
}

.main-menu__search {
  font-size: 1.2rem;
  color: var(--thm-black);
  margin-right: 1.5rem;
  transition: all 500ms ease;
}

.main-menu__cart {
  font-size: 1.2rem;
  color: var(--thm-black);
  margin-right: 1.5rem;
  transition: all 500ms ease;
}

.main-menu__search:hover,
.main-menu__cart:hover {
  color: var(--thm-primary);
}

@media (max-width: 59.95rem) {
  .main-menu__search,
  .main-menu__cart {
    margin-right: 1rem;
    font-size: 1rem;
  }
}

@media (max-width: 38.35rem) {
  .main-menu__cart {
    margin-right: 0;
  }
}

.main-menu__read-more-btn {
  font-size: 0.6rem;
  padding: 0.25rem 1.5rem;
}

.main-menu__read-more-btn:before {
  position: absolute;
  bottom: -0.25rem;
  width: 100%;
  height: 0.05rem;
  left: 0;
  background: var(--thm-black);
  content: '';
  transition: transform 500ms ease;
  transform-origin: left center;
  transform: scale(1, 1);
}

.main-menu__read-more-btn:hover::before {
  transform: scale(0, 1);
  transform-origin: right center;
}

.stricky-header.main-menu {
  padding: 0 3rem;
}

.main-menu,
.stricky-header {
  /* after third level no menu */
}

.main-menu .main-menu__list,
.main-menu .main-menu__list ul,
.stricky-header .main-menu__list,
.stricky-header .main-menu__list ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  align-items: center;
  display: none;
}

@media (min-width: 60rem) {
  .main-menu .main-menu__list,
  .main-menu .main-menu__list ul,
  .stricky-header .main-menu__list,
  .stricky-header .main-menu__list ul {
    display: flex;
  }
}

.main-menu .main-menu__list > li,
.stricky-header .main-menu__list > li {
  padding-top: 2.025rem;
  padding-bottom: 2.025rem;
  position: relative;
}

.main-menu .main-menu__list > li > a,
.stricky-header .main-menu__list > li > a {
  font-size: 0.9rem;
  font-weight: normal;
  display: block;
  color: var(--thm-black);
  text-transform: uppercase;
  position: relative;
  transition: all 500ms ease;
  padding: 0 calc(40 / 1920 * 100vw);
  text-align: center;
}
.main-menu .main-menu__list > li > a > span,
.stricky-header .main-menu__list > li > a > span {
  font-size: 0.7rem;
  line-height: 1;
  font-weight: normal;
  display: block;
  width: 100%;
  color: var(--thm-gray);
  text-transform: uppercase;
  position: relative;
  transition: all 500ms ease;
}

.main-menu .main-menu__list > li > a::after,
.stricky-header .main-menu__list > li > a::after {
  content: '';
  display: block;
  position: absolute;
  right: 0;
  top: 0.6rem;
  width: 0.05rem;
  height: 2rem;
  background: #ccc;
}
.main-menu .main-menu__list > li:last-child > a::after,
.stricky-header .main-menu__list > li:last-child > a::after {
  width: 0;
}

.main-menu .main-menu__list > li.current > a,
.main-menu .main-menu__list > li:hover > a,
.stricky-header .main-menu__list > li.current > a,
.stricky-header .main-menu__list > li:hover > a {
  color: var(--thm-black);
}

.main-menu .main-menu__list > li.current > a::before,
.main-menu .main-menu__list > li:hover > a::before,
.stricky-header .main-menu__list > li.current > a::before,
.stricky-header .main-menu__list > li:hover > a::before {
  transform: scale(1, 1);
  transform-origin: right center;
}

.main-menu .main-menu__list li ul,
.stricky-header .main-menu__list li ul {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 11rem;
  background-color: #fff;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  opacity: 0;
  visibility: hidden;
  transition: 500ms ease;
  z-index: 99;
  box-shadow: 0rem 0rem 3.25rem 0rem rgba(0, 0, 0, 0.1);
}

.main-menu .main-menu__list li:hover > ul,
.stricky-header .main-menu__list li:hover > ul {
  opacity: 1;
  visibility: visible;
}

.main-menu .main-menu__list li ul li,
.stricky-header .main-menu__list li ul li {
  flex: 1 1 100%;
  width: 100%;
  position: relative;
}

.main-menu .main-menu__list li ul li + li,
.stricky-header .main-menu__list li ul li + li {
  border-top: 0.05rem solid RGBA(var(--thm-black), 0.1);
}

.main-menu .main-menu__list li ul li a,
.stricky-header .main-menu__list li ul li a {
  font-size: 0.8rem;
  line-height: 1.5rem;
  color: var(--thm-black);
  display: flex;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  transition: 500ms;
}

.main-menu .main-menu__list li ul li:hover > a,
.stricky-header .main-menu__list li ul li:hover > a {
  background-color: var(--thm-primary);
  color: #fff;
}

.main-menu .main-menu__list li ul li > ul,
.stricky-header .main-menu__list li ul li > ul {
  top: 0;
  left: 100%;
}

.main-menu .main-menu__list li ul li > ul.right-align,
.stricky-header .main-menu__list li ul li > ul.right-align {
  top: 0;
  left: auto;
  right: 100%;
}

.main-menu .main-menu__list li ul li > ul ul,
.stricky-header .main-menu__list li ul li > ul ul {
  display: none;
}

.stricky-header {
  position: relative;
  z-index: 991;
  top: 0;
  left: 0;
  background-color: #fff;
  width: 100%;
  visibility: hidden;
  transform: translateY(-120%);
  transition: transform 500ms ease, visibility 500ms ease;
  box-shadow: 0rem 0.5rem 3rem 0rem rgba(0, 0, 0, 0.05);
}

@media (max-width: 59.95rem) {
  .stricky-header {
    display: none !important;
  }
}

.stricky-header.stricky-fixed {
  transform: translateY(0);
  visibility: visible;
}

.stricky-header .main-menu__inner {
  box-shadow: none;
  padding-right: 0;
  max-width: 58.5rem;
  width: 100%;
  margin: 0 auto;
}

.mobile-nav__buttons {
  display: flex;
  margin-left: auto;
  margin-right: 0.5rem;
}

@media (min-width: 60rem) {
  .mobile-nav__buttons {
    display: none;
  }
}

.mobile-nav__buttons a {
  font-size: 1rem;
  color: var(--thm-black);
  cursor: pointer;
}

.mobile-nav__buttons a + a {
  margin-left: 0.5rem;
}

.mobile-nav__buttons a:hover {
  color: var(--thm-base);
}

.main-menu .mobile-nav__toggler {
  font-size: 1rem;
  color: var(--thm-primary);
  cursor: pointer;
  transition: 500ms;
  margin-right: 1rem;
}

.main-menu .mobile-nav__toggler:hover {
  color: var(--thm-base);
}

@media (min-width: 60rem) {
  .main-menu .mobile-nav__toggler {
    display: none;
  }
}

/*--------------------------------------------------------------
# Navigations Two
--------------------------------------------------------------*/
.main-header-two {
  position: relative;
  display: block;
}

.main-menu-wrapper-two-top {
  position: relative;
  display: block;
  padding: 1.75rem 0;
  background-color: var(--thm-black);
}

.main-menu-wrapper-two-top-pattern {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  opacity: 0.1;
  background-repeat: no-repeat;
  background-size: cover;
}

.main-menu-wrapper-two-top__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.main-menu-wrapper-two-top__search-and-cart-icon {
  display: flex;
  align-items: center;
  padding: 0.25rem 0;
}

.main-menu-wrapper-two-top__search {
  font-size: 1.2rem;
  color: #ffffff;
  margin-right: 1.2rem;
  transition: all 500ms ease;
}

.main-menu-wrapper-two-top__search:hover {
  color: var(--thm-primary);
}

.main-menu-wrapper-two-top__cart {
  font-size: 1.2rem;
  color: #ffffff;
  transition: all 500ms ease;
}

.main-menu-wrapper-two-top__cart:hover {
  color: var(--thm-primary);
}

.main-header-two__logo {
}

.main-header-two__logo > a {
}

.main-header-two__logo > a > img {
}

.main-header-two__three-line-icon {
}

.main-header-two__three-line-icon a {
}

.main-menu-wrapper-two-bottom {
  position: relative;
  display: block;
  background-color: #101010;
}

.main-menu-wrapper-two-bottom:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  content: '';
  height: 0.05rem;
  background-color: rgba(255, 255, 255, 0.1);
}

.main-menu-wrapper-two-bottom__inner {
}

.main-menu__two {
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-menu__two .main-menu__inner {
}

.main-menu__two .main-menu__list > li > a,
.stricky-header .main-menu__two .main-menu__list > li > a {
  color: #9d9d9d;
}

.main-menu__two .main-menu__list > li,
.stricky-header.main-menu__two .main-menu__list > li {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.main-menu__two .main-menu__list > li.current > a,
.main-menu__two .main-menu__list > li:hover > a,
.stricky-header .main-menu__two .main-menu__list > li.current > a,
.stricky-header .main-menu__two .main-menu__list > li:hover > a {
  color: #ffffff;
}

.main-menu__two .main-menu__list > li > a::before,
.stricky-header .main-menu__two .main-menu__list > li > a::before {
  background-color: #404040;
}

.main-menu__two .main-menu__list > li,
.stricky-header.main-menu__two .main-menu__list > li {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.stricky-header.main-menu__two .main-menu__inner {
  padding: 0 0;
}

.stricky-header.main-menu__two {
  padding: 0 0;
  background-color: #101010;
}

/*--------------------------------------------------------------
# Navigations Three
--------------------------------------------------------------*/
.main-header-three {
  position: relative;
  left: 0rem;
  top: 0rem;
  width: 100%;
  z-index: 999;
  transition: all 500ms ease;
}

.main-header-three__menu-box {
  position: relative;
  display: block;
}

.main-menu-three {
  background-color: transparent;
}

.main-menu-three__container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.main-menu-three__logo {
  position: relative;
}

.main-menu-three__logo > a {
}

.main-menu-three__logo >a> img {
  width: 200px;
/*max-width: 150px;*/
}

.main-menu-three__inner {
  position: relative;
  display: block;
}

.main-menu-three__right {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu-three__search {
  font-size: 1.2rem;
  color: #ffffff;
  margin-right: 1.75rem;
  transition: all 500ms ease;
}

.main-menu-three__search:hover {
  color: var(--thm-primary);
}

.main-menu-three__cart {
  font-size: 1.2rem;
  color: #ffffff;
}

.main-menu-three__cart:hover {
  color: var(--thm-primary);
}

.main-menu-three .main-menu__list > li,
.stricky-header .main-menu-three .main-menu__list > li {
  padding-top: calc(20 / 1920 * 100vw);
  padding-bottom: calc(30 / 1920 * 100vw);
  position: relative;
}

.main-menu-three .main-menu__list > li > a::before,
.stricky-header .main-menu-three .main-menu__list > li > a::before {
  background-color: #333333;
}

.main-menu-three .main-menu__list > li.current > a,
.main-menu-three .main-menu__list > li:hover > a,
.stricky-header .main-menu-three .main-menu__list > li.current > a,
.stricky-header .main-menu-three .main-menu__list > li:hover > a {
  color: #c1161d;
}

.stricky-header.main-menu-three {
  background-color: var(--thm-black);
}

/*--------------------------------------------------------------
# Animations
--------------------------------------------------------------*/
@keyframes bubbleMover {
  0% {
    -webkit-transform: translateY(0rem) translateX(0) rotate(0);
    transform: translateY(0rem) translateX(0) rotate(0);
  }

  30% {
    -webkit-transform: translateY(1.5rem) translateX(2.5rem) rotate(15deg);
    transform: translateY(1.5rem) translateX(2.5rem) rotate(15deg);
    -webkit-transform-origin: center center;
    transform-origin: center center;
  }

  50% {
    -webkit-transform: translateY(2.5rem) translateX(5rem) rotate(45deg);
    transform: translateY(2.5rem) translateX(5rem) rotate(45deg);
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
  }

  80% {
    -webkit-transform: translateY(1.5rem) translateX(2.5rem) rotate(15deg);
    transform: translateY(1.5rem) translateX(2.5rem) rotate(15deg);
    -webkit-transform-origin: left top;
    transform-origin: left top;
  }

  100% {
    -webkit-transform: translateY(0rem) translateX(0) rotate(0);
    transform: translateY(0rem) translateX(0) rotate(0);
    -webkit-transform-origin: center center;
    transform-origin: center center;
  }
}

@keyframes shapeMover {
  0%,
  100% {
    transform: perspective(20rem) translateY(0) rotate(0deg) translateZ(0rem) translateX(0);
  }

  50% {
    transform: perspective(20rem) rotate(0deg) translateZ(1rem) translateY(1rem) translateX(1rem);
  }
}

@keyframes banner3Shake {
  0% {
    -webkit-transform: rotate3d(0, 1, 0, 0deg);
    transform: rotate3d(0, 1, 0, 0deg);
  }

  30% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }

  60% {
    -webkit-transform: rotate3d(1, 0, 0, 0deg);
    transform: rotate3d(1, 0, 0, 0deg);
  }

  80% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }

  100% {
    -webkit-transform: rotate3d(0, 1, 0, 0deg);
    transform: rotate3d(0, 1, 0, 0deg);
  }
}

@keyframes squareMover {
  0%,
  100% {
    -webkit-transform: translate(0, 0) rotate(0);
    transform: translate(0, 0) rotate(0);
  }

  20%,
  60% {
    -webkit-transform: translate(1rem, 2rem) rotate(180deg);
    transform: translate(1rem, 2rem) rotate(180deg);
  }

  30%,
  80% {
    -webkit-transform: translate(2rem, 3rem) rotate(0deg);
    transform: translate(2rem, 3rem) rotate(0deg);
  }
}

@keyframes treeMove {
  0%,
  100% {
    -webkit-transform: rotate(0deg) translateX(0);
    transform: rotate(0deg) translateX(0);
  }

  25%,
  75% {
    -webkit-transform: rotate(5deg) translateX(0.75rem);
    transform: rotate(5deg) translateX(0.75rem);
  }

  50% {
    -webkit-transform: rotate(10deg) translateX(1.5rem);
    transform: rotate(10deg) translateX(1.5rem);
  }
}

/*--------------------------------------------------------------
#     Zoom Fade Css
--------------------------------------------------------------*/
.zoom-fade {
  animation-name: zoom-fade;
  animation-duration: 5s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;

  -webkit-animation-name: zoom-fade;
  -webkit-animation-duration: 5s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;

  -moz-animation-name: zoom-fade;
  -moz-animation-duration: 5s;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: linear;

  -ms-animation-name: zoom-fade;
  -ms-animation-duration: 5s;
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: linear;

  -o-animation-name: zoom-fade;
  -o-animation-duration: 5s;
  -o-animation-iteration-count: infinite;
  -o-animation-timing-function: linear;
}

@-webkit-keyframes zoom-fade {
  0% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }

  50% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  100% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
}

@keyframes zoom-fade {
  0% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }

  50% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  100% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
}

@keyframes service_hexagon_2 {
  0% {
    -webkit-transform: rotateY(0deg);
    -moz-transform: rotateY(0deg);
    -o-transform: rotateY(0deg);
    transform: rotateY(0deg);
  }

  100% {
    -webkit-transform: rotateY(360deg);
    -moz-transform: rotateY(360deg);
    -o-transform: rotateY(360deg);
    transform: rotateY(360deg);
  }
}

/*--------------------------------------------------------------
# Mobile Nav
--------------------------------------------------------------*/
.mobile-nav__wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  opacity: 0;
  transform: translateX(-50%);
  transform-origin: right center;
  transition: transform 500ms ease-in, opacity 500ms linear, visibility 500ms ease-in;
  z-index: 999;
  visibility: hidden;
}

.mobile-nav__wrapper .container {
  padding-left: 0;
  padding-right: 0;
}

.mobile-nav__wrapper.expanded {
  opacity: 1;
  transform: translateX(0%);
  visibility: visible;
}

.mobile-nav__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #000000;
  opacity: 0.5;
  cursor: pointer;
}

.mobile-nav__content {
  width: 15rem;
  background-color: var(--thm-black);
  z-index: 10;
  position: relative;
  height: 100%;
  overflow-y: auto;
  padding-top: 2rem;
  padding-bottom: 1.5rem;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.mobile-nav__content .thm-btn {
  padding: 0.4rem 0;
  width: 100%;
  text-align: center;
}

.mobile-nav__content .logo-box {
  margin-bottom: 2rem;
  display: flex;
}

.mobile-nav__close {
  position: absolute;
  top: 1.5rem;
  right: 0.75rem;
  font-size: 0.9rem;
  color: var(--thm-text-dark);
  cursor: pointer;
  width: 1rem;
  height: 1rem;
  z-index: 10;
}

.mobile-nav__close::after,
.mobile-nav__close::before {
  content: '';
  width: 1rem;
  height: 0.1rem;
  background-color: #fff;
  transform: rotate(45deg);
  transform-origin: center center;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.mobile-nav__close::after {
  transform-origin: center center;
  transform: rotate(-45deg);
}

.mobile-nav__content .main-menu__list,
.mobile-nav__content .main-menu__list ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.mobile-nav__content .main-menu__list ul {
  display: none;
  border-top: 0.05rem solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__content .main-menu__list li:not(:last-child) {
  border-bottom: 0.05rem solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__content .main-menu__list li a {
  display: flex;
  justify-content: space-between;
  line-height: 1.5rem;
  color: #ffffff;
  font-size: 0.7rem;
  font-family: var(--thm-font);
  font-weight: 500;
  height: 2.3rem;
  align-items: center;
  transition: 500ms;
}

.mobile-nav__content .main-menu__list li a span {
  display: none;
}

.mobile-nav__content .main-menu__list li a.expanded {
  color: #fff;
}

.mobile-nav__content .main-menu__list li a button {
  width: 1.5rem;
  height: 1.5rem;
  background-color: var(--thm-primary);
  border: none;
  outline: none;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transform: rotate(-90deg);
  transition: transform 500ms ease;
}

.mobile-nav__content .main-menu__list li a button.expanded {
  transform: rotate(0deg);
  background-color: #fff;
  color: var(--thm-black);
}

.mobile-nav__content .main-menu__list li.cart-btn span {
  position: relative;
  top: auto;
  right: auto;
  transform: translate(0, 0);
}

.mobile-nav__content .main-menu__list li.cart-btn i {
  font-size: 0.8rem;
}

.mobile-nav__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.mobile-nav__top .main-menu__login a {
  color: var(--thm-text-dark);
}

.mobile-nav__container {
  border-top: 0.05rem solid rgba(255, 255, 255, 0.1);
  border-bottom: 0.05rem solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__social {
  display: flex;
  align-items: center;
}

.mobile-nav__social a {
  font-size: 0.8rem;
  color: var(--thm-primary);
  transition: 500ms;
}

.mobile-nav__social a + a {
  margin-left: 1.5rem;
}

.mobile-nav__social a:hover {
  color: #ffffff;
}

.mobile-nav__contact {
  margin-bottom: 0;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.mobile-nav__contact li {
  color: var(--thm-text-dark);
  font-size: 0.7rem;
  font-weight: 500;
  position: relative;
  display: flex;
  align-items: center;
}

.mobile-nav__contact li + li {
  margin-top: 0.75rem;
}

.mobile-nav__contact li a {
  color: #ffffff;
  transition: 500ms;
}

.mobile-nav__contact li a:hover {
  color: var(--thm-primary);
}

.mobile-nav__contact li > i {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background-color: var(--thm-primary);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 0.55rem;
  margin-right: 0.5rem;
  color: #fff;
}

.mobile-nav__container .main-logo,
.mobile-nav__container .topbar__buttons,
.mobile-nav__container .main-menu__language,
.mobile-nav__container .main-menu__login {
  display: none;
}

/*--------------------------------------------------------------
# sidemenu popup
--------------------------------------------------------------*/

.side-menu__block {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1000;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transform-origin: left center;
  transform-origin: left 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;
}

.side-menu__block.active {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}

.side-menu__block-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: pointer;
}

.side-menu__block-inner {
  position: relative;
  width: 15rem;
  height: 100vh;
  background-color: #fff;
  z-index: 999999;
  overflow-y: auto;
  padding: 1rem 1.5rem;
  position: relative;
  padding-top: 2rem;
}

.side-menu__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 10;
  cursor: pointer;
  width: 1rem;
  height: 1rem;
}

.side-menu__close::after,
.side-menu__close::before {
  content: '';
  width: 1rem;
  height: 0.1rem;
  background-color: var(--thm-black);
  transform: rotate(45deg);
  transform-origin: center center;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.side-menu__close::after {
  transform-origin: center center;
  transform: rotate(-45deg);
}

.side-menu__block__text {
  text-align: center;
}

.side-menu__block__text a {
  color: var(--thm-primary);
}

.side-menu__block__title {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--thm-black);
  margin: 0;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.side-menu__block-line {
  margin: 2rem 0;
  border-color: rgba(27, 24, 26, 0.2);
}

.side-menu__block-about {
  margin-top: 2rem;
}

.side-menu__block-contact__list {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-bottom: 1.5rem;
}

.side-menu__block-contact__list-item {
  color: var(--thm-black);
  font-size: 0.75rem;
  position: relative;
  padding-left: 1.5rem;
}

.side-menu__block-contact__list-item i {
  font-size: 0.85rem;
  color: var(--thm-primary);
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.side-menu__block-contact__list-item + .side-menu__block-contact__list-item {
  margin-top: 0.5rem;
}

.side-menu__block__text-copy {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.side-menu__block__text-copy a {
  color: var(--thm-primary);
}

.side-menu__block-about__text {
  font-size: 0.8rem;
  line-height: 1.889em;
}

.side-menu__block-about__btn {
  width: 100%;
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}

.side-menu__block__text.site-footer__copy-text {
  font-size: 0.8rem;
}

.side-menu__block__text.site-footer__copy-text a {
  color: var(--thm-black);
}

/*--------------------------------------------------------------
# Search Popup
--------------------------------------------------------------*/
.search-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 991;
  padding-left: 1rem;
  padding-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateY(-110%);
  transition: transform 500ms ease, opacity 500ms ease;
}

.search-popup.active {
  transform: translateY(0%);
}

.search-popup__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--thm-black);
  opacity: 0.75;
  cursor: pointer;
}

.search-popup__content {
  width: 100%;
  max-width: 28rem;
}

.search-popup__content form {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  background-color: #fff;
  border-radius: 0rem;
  overflow: hidden;
}

.search-popup__content form input[type='search'],
.search-popup__content form input[type='text'] {
  width: 100%;
  background-color: #fff;
  font-size: 0.8rem;
  border: none;
  outline: none;
  height: 3.3rem;
  padding-left: 1.5rem;
}

.search-popup__content .thm-btn {
  padding: 0;
  width: 3.4rem;
  height: 3.4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: absolute;
  top: 0;
  right: -0.05rem;
  border-radius: 0;
  background-color: var(--thm-primary);
}

.search-popup__content .thm-btn:hover {
  background-color: var(--thm-black);
  color: #fff;
}

.search-popup__content .thm-btn i {
  margin: 0;
}

/*--------------------------------------------------------------
# Slider
--------------------------------------------------------------*/
.main-slider {
/*  height: 41rem;*/
  overflow: hidden;
  position: relative;
}

.main-slider_border {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 14.29%;
  border-right: 0.05rem solid rgba(255, 255, 255, 0.1);
  z-index: 10;
}

.main-slider_border-two {
  left: 14.29%;
}

.main-slider_border-three {
  left: 28.59%;
}

.main-slider_border-four {
  left: 42.88%;
}

.main-slider_border-five {
  left: 57.17%;
}

.main-slider_border-six {
  left: 71.46%;
}

.main-slider .swiper-slide {
  position: relative;
  background-color: var(--thm-black);
}

.main-slider .swiper-slide .container {
  position: relative;
  z-index: 30;
}

.main-slider .image-layer {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-size: cover;
  transform: scale(1);
  transition: transform 7000ms ease;
  z-index: 1;
}

.main-slider .image-layer-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: '';
  background: rgba(var(--thm-black-rgb), 0.7);
  z-index: 2;
}
.main-slider .container {
  height: calc(100vh - 98px);
  padding-bottom: 0;
  padding-top: 0;
}

.main-slider__content {
  position: relative;
  display: block;
}

.main-slider h2 {
  margin: 0;
  color: #fff;
  font-weight: 400;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6rem);
  transition-delay: 1000ms;
  transition: transform 2000ms ease, opacity 2000ms ease;
  font-size: 3rem;
  line-height: 70px;
  text-transform: uppercase;
  font-weight: bold;
}
.main-slider .main-slider__content h2:nth-of-type(2){
  font-size: 1.5rem;
  display: flex;
  align-items: center;
}
.main-slider .main-slider__content h2:nth-of-type(2)::before{
  content: '';
  width: 1rem;
  height: 1rem;
  display: block;
  border: 2px #fff solid;
  border-radius: 50%;
  margin-right: 0.5rem;
}

.main-slider .thm-btn {
  font-size: 0.7rem;
  font-weight: 700;
  background-color: #ffffff;
  color: var(--thm-black);
  opacity: 0;
  transform: translateY(5rem);
  transition-delay: 2500ms;
  transition: transform 2000ms ease, opacity 2000ms ease, color 500ms ease, background 500ms ease;
}

.main-slider .thm-btn:hover {
  background-color: var(--thm-black);
  color: #fff;
}

.main-slider .swiper-slide-active .image-layer {
  transform: scale(1.15);
}

.main-slider .swiper-slide-active .thm-btn,
.main-slider .swiper-slide-active p,
.main-slider .swiper-slide-active h2,
.main-slider .swiper-slide-active p {
  visibility: visible;
  opacity: 1;
  transform: translateY(0) translateX(0);
}
.main-slider__nav {
  width: 100%;
  max-width: 60rem;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 100;
  transform: translateY(-50%) translateX(-50%);
  display: flex;
  align-items: flex-end;
  flex-direction: column;
}

.main-slider__nav .swiper-button-next,
.main-slider__nav .swiper-button-prev {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1.5rem;
  width: 1.5rem;
  z-index: 100;
  font-size: 1rem;
  color: #ffffff;
  opacity: 1;
  margin: 0;
  transition: all 500ms ease;
}

.main-slider__nav .swiper-button-next:hover,
.main-slider__nav .swiper-button-prev:hover {
  color: var(--thm-primary);
}

.main-slider__nav .swiper-button-next::after,
.main-slider__nav .swiper-button-prev::after {
  display: none;
}

.main-slider__nav .swiper-button-prev {
  margin-bottom: 0rem;
}

.main-slider__nav .swiper-button-next .icon-right-arrow {
  position: relative;
  transform: rotate(180deg);
}

#main-slider-pagination {
  z-index: 10;
  bottom: 3rem;
  left: 50%;
  width: 100%;
  max-width: 58.5rem;
  -webkit-transform: translate(-50%, calc(-50% + 4.75rem));
  transform: translate(-50%, calc(0% + 0rem));
  counter-reset: count;
  line-height: 0;
}

#main-slider-pagination .swiper-pagination-bullet {
  width: 1rem;
  height: 1rem;
  border-radius: 0%;
  opacity: 1;
  background-color: transparent;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  border-radius: 50%;
  border: 2px #f1f1f1 solid;
}

#main-slider-pagination .swiper-pagination-bullet + .swiper-pagination-bullet {
  margin-left: 1rem;
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 0rem;
}

#main-slider-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  position: relative;
  border-color: #c1161d;
}

#main-slider-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active:focus,
#main-slider-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active:hover {
  outline: none;
  border: none;
}

/*--------------------------------------------------------------
# Main Slider Two
--------------------------------------------------------------*/
.main-slider-two .container {
  padding-bottom: 12.5rem;
  padding-top: 11.55rem;
}

.main-slider-two .image-layer-overlay {
  background: rgba(var(--thm-black-rgb), 0.6);
}

.main-slider-two .thm-btn {
  background-color: #ffffff;
}

.main-slider-two .thm-btn:hover {
  background: var(--thm-primary);
}

.main-slider__nav-two {
  width: 100%;
  max-width: 60rem;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 100;
  transform: translateY(-50%) translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.main-slider__nav-two .swiper-button-next,
.main-slider__nav-two .swiper-button-prev {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
  z-index: 100;
  width: 1.5rem;
  height: 1.5rem;
  font-size: 1rem;
  color: #ffffff;
  opacity: 1;
  margin: 0;
  text-align: center;
  transition: all 500ms ease;
}

.main-slider__nav-two .swiper-button-next:hover,
.main-slider__nav-two .swiper-button-prev:hover {
  color: var(--thm-primary);
}

.main-slider__nav-two .swiper-button-next::after,
.main-slider__nav-two .swiper-button-prev::after {
  display: none;
}

.main-slider__nav-two .swiper-button-prev {
  margin-bottom: 0rem;
}

.main-slider__nav-two .swiper-button-prev .icon-left-arrow {
  position: relative;
  transform: rotate(180deg);
}

.main-slider-two #main-slider-pagination {
  text-align: center;
  bottom: 5rem;
}

/*--------------------------------------------------------------
# Main Slider Three
--------------------------------------------------------------*/
.main-slider-three {
  position: relative;
  display: block;
  background-color: var(--thm-black);
  padding-bottom: 6rem;
  padding-top: 6rem;
}

.main-slider-three-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.08;
}

.main-slider-three-shape {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 36.25rem;
  height: 34rem;
  opacity: 0.15;
  -webkit-animation-name: shapeMover;
  animation-name: shapeMover;
  -webkit-animation-duration: 20s;
  animation-duration: 20s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-perspective: 20rem;
  perspective: 20rem;
  -webkit-transform-origin: center center;
  transform-origin: center center;
}

.main-slider-three__container {
  position: relative;
  display: block;
  width: 100%;
}

.main-slider-three__left {
  position: relative;
  display: block;
  width: 55%;
  float: left;
}

.main-slider-three__left-carousel {
}

.main-slider-three__left-single {
}

.main-slider-three__left-img {
  overflow: hidden;
  position: relative;
  display: block;
}

.main-slider-three__left-img > img {
  width: 100%;
  transform: scale(1);
  -webkit-transition: all 7000ms linear;
  -moz-transition: all 7000ms linear;
  -ms-transition: all 7000ms linear;
  -o-transition: all 7000ms linear;
  transition: all 7000ms linear;
}

.main-slider-three__left-carousel .active .main-slider-three__left-img > img {
  transform: scale(1.15);
}

.main-slider-three__right {
  position: relative;
  display: block;
  width: 45%;
  float: right;
  padding-left: 5rem;
  padding-top: 4.75rem;
}

.main-slider-three__title {
  font-size: 3rem;
  color: #ffffff;
  font-weight: 700;
  line-height: 3.75rem;
  text-transform: uppercase;
  margin-bottom: 1.7rem;
}

.main-slider-three__text {
  font-size: 1rem;
  color: #9d9d9d;
  font-style: italic;
  margin: 0;
}

.main-slider-three__right-btn {
  background-color: #ffffff;
  color: var(--thm-black);
  margin-top: 2.5rem;
}

/*--------------------------------------------------------------
# Three Boxes
--------------------------------------------------------------*/
.three-boxes {
  position: relative;
  display: block;
  padding: 6rem 0 4.5rem;
}

.three-boxes-shape {
  position: absolute;
  bottom: -6rem;
  height: 100%;
  right: calc(100% - 10.75rem);
  width: 500rem;
  background-color: #f4f4f4;
}

.three-boxes .container {
  position: relative;
}

.three-boxes__single {
  position: relative;
  display: block;
  margin-bottom: 1.5rem;
}

.three-boxes__img-box {
  position: relative;
  display: block;
}

.three-boxes__img {
  position: relative;
  display: block;
  overflow: hidden;
}

.three-boxes__img > img {
  width: 100%;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: opacity 500ms ease, -webkit-transform 500ms ease;
  transition: opacity 500ms ease, -webkit-transform 500ms ease;
  transition: transform 500ms ease, opacity 500ms ease;
  transition: transform 500ms ease, opacity 500ms ease, -webkit-transform 500ms ease;
}

.three-boxes__single:hover .three-boxes__img > img {
  transform: scale(1.05);
}

.three-boxes__img-content {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  right: 1.25rem;
  background: #ffffff;
  padding: 1.75rem 0rem;
  text-align: center;
}

.three-boxes__img-content h3 {
  font-size: 1.2rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.4rem;
  text-transform: uppercase;
}

.three-boxes__img-arrow {
  position: absolute;
  top: -1.7rem;
  right: 0;
  height: 1.7rem;
  width: 1.7rem;
  color: #ffffff;
  background: var(--thm-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 500ms ease;
  transform: scale(0);
}

.three-boxes__img-arrow span {
}

.three-boxes__img-arrow:hover {
  background-color: var(--thm-black);
  color: #fff;
}

.three-boxes__single:hover .three-boxes__img-arrow {
  transform: scale(1);
}

.three-boxes__single-three {
  position: relative;
  display: block;
  padding: 2.3rem 0 2.75rem;
  margin-bottom: 1.5rem;
  z-index: 2;
}

.three-boxes__single-three:before {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  content: '';
  background-color: rgba(var(--thm-black-rgb), 0.85);
  z-index: 1;
}

.three-boxes__single-bg {
  position: absolute;
  filter: grayscale(1);
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
}

.three-boxes__single-three-content {
  position: relative;
  display: block;
  text-align: center;
  z-index: 3;
}

.three-boxes__single-three-content h2 {
  font-size: 1.7rem;
  color: #ffffff;
  font-weight: 500;
  line-height: 2.2rem;
  text-transform: uppercase;
  margin-bottom: 2.55rem;
}

.three-boxes__btn {
  background-color: #ffffff;
  color: var(--thm-black);
}

/*--------------------------------------------------------------
# Welcome One
--------------------------------------------------------------*/
.welcome-one {
  position: relative;
  display: block;
  padding: 3rem 0rem;
}

.welcome-one-shape {
  position: absolute;
  height: 100%;
  bottom: -4.25rem;
  right: calc(100% - 10.75rem);
  width: 500rem;
  background-color: #f4f4f4;
}

.welcome-one-bg {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  background-repeat: no-repeat;
  opacity: 1;
}

.welcome-one .container {
  position: relative;
}

.welcome-one__left {
  position: relative;
  display: block;
  margin-right: 5rem;
}

.welcome-one__left:before {
  position: absolute;
  bottom: -6rem;
  right: calc(100% - 11.5rem);
  width: 0.5rem;
  content: '';
  background-color: var(--thm-black);
  height: 5rem;
}

.welcome-one__img {
  position: relative;
  display: block;
  margin-left: -18.1rem;
}

.welcome-one__img > img {
  width: 100%;
}

.welcome-one__video-btn {
  height: 6.75rem;
  width: 8rem;
  position: absolute;
  bottom: 0;
  left: 1rem;
  background-color: var(--thm-primary);
  color: #ffffff;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 500ms ease;
  z-index: 2;
}

.welcome-one__video-btn:before {
  position: absolute;
  top: -1rem;
  left: -1rem;
  right: -1rem;
  bottom: 0;
  content: '';
  border-top: 1rem solid #f4f4f4;
  border-left: 1rem solid #f4f4f4;
  border-right: 1rem solid #f4f4f4;
}

.welcome-one__video-btn:hover {
  color: var(--thm-primary);
  background: var(--thm-black);
}

.welcome-one__right {
  position: relative;
  display: block;
}

.welcome-one__right .section-title {
  margin-bottom: 1rem;
}

.welcome-one__right-list {
  background: #969494;
  position: relative;
  display: block;
  margin-top: 4.5rem;
  overflow: hidden;
}

.welcome-one__right-list-one {
  position: relative;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  margin-bottom: 0;
  margin-right: 4.3rem;
  width: 100%;
}

.welcome-one__right-list-one li {
  width: 20%;
  text-align: center;
  padding: 3rem 0;
  display: block;
}

.welcome-one__right-list-one li:hover {
  background: #c1161d;
}

.welcome-one__right-list-one li .icon {
  position: relative;
  font-size: 0.5rem;
  color: var(--thm-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  min-height: 3rem;
}

.welcome-one__right-list-one li .icon img {
  height: calc(60 / 1920 * 100vw);
}

.welcome-one__right-list-one li i {
  color: var(--thm-gray);
}

.welcome-one__right-list-one li .text {
  margin-left: 0.9rem;
}

.welcome-one__right-list-one li .text p {
  font-size: 1.2rem;
  color: #fff;
  font-weight: normal;
  margin: 0;
}

.welcome-one__right-list-two {
  margin-right: 0;
}

.welcome-one__bottom-content {
  margin-top: 1.9rem;
  position: relative;
  display: block;
  overflow: hidden;
}

.welcome-one__bottom-content h4 {
  font-size: 1rem;
  color: var(--thm-primary);
  font-weight: 700;
  line-height: 1.5rem;
  margin-bottom: 2.15rem;
}

.welcome-one__bottom-content p {
  margin: 0;
  font-size: 0.8rem /* 16/20 */;
}

.welcome-one__architecure {
  display: flex;
  align-items: center;
  margin-top: 2rem;
}

.welcome-one__architecure-img {
}

.welcome-one__architecure-img > img {
  width: 4rem;
  border-radius: 50%;
  border-style: solid;
  border-width: 0.2rem;
  border-color: rgb(255, 255, 255);
  box-shadow: 0rem 0.5rem 1.5rem 0rem rgba(0, 0, 0, 0.07);
}

.welcome-one__architecure-text {
  margin-left: 1.5rem;
  text-align: center;
}

.welcome-one__architecure-text h2 {
  font-size: 1.5rem;
  font-weight: 400;
  font-family: var(--thm-reey-font);
  line-height: 2rem;
  margin-bottom: 0.4rem;
}

.welcome-one__architecure-text p {
  font-size: 0.7rem;
  font-weight: 500;
  margin: 0;
  text-transform: uppercase;
}

/*--------------------------------------------------------------
# Two Boxes
--------------------------------------------------------------*/
.two-boxes {
  padding: 6rem 0 6rem;
}

.two-boxes__single {
  position: relative;
  display: block;
  margin-bottom: 1.5rem;
}

@media (min-width: 60rem) {
  .two-boxes__single {
    margin-bottom: 0;
  }
}

.two-boxes__single .row {
  --bs-gutter-x: 0rem;
}

.two-boxes__content {
  position: relative;
  display: block;
  background: var(--thm-black);
  padding: 4.025rem 2.4rem;
}

.two-boxes__content h2 {
  font-size: 1.4rem;
  color: #ffffff;
  font-weight: 700;
  line-height: 2rem;
  text-transform: uppercase;
}

.two-boxes__img {
  position: relative;
  display: block;
  overflow: hidden;
}

.two-boxes__img > img {
  width: 100%;
  transition: transform 500ms ease;
  transform: scale(1);
}

.two-boxes__single:hover .two-boxes__img > img {
  transform: scale(1.05);
}

/*--------------------------------------------------------------
# Services One
--------------------------------------------------------------*/
.services-one {
  position: relative;
  display: block;
  background-color: #f4f4f4;
  padding: 6rem 0 4.5rem;
}

.services-one-container {
  position: relative;
  display: block;
  max-width: 72rem;
  width: 100%;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  margin: 0 auto;
}

.services-one .section-title {
  position: relative;
  display: block;
  margin-bottom: 2.35rem;
  z-index: 1;
}

.services-one .row {
  --bs-gutter-x: 0rem;
}

.services-one__single {
  position: relative;
  display: block;
  background-color: rgb(255, 255, 255);
  box-shadow: 0rem 0.5rem 3rem 0rem rgb(0 0 0 / 7%);
  padding: 2.75rem 3rem 2.35rem;
  margin-bottom: 1.5rem;
  transition: all 500ms ease;
}

.services-one__single:hover {
  background-color: var(--thm-black);
}

.services-one__title {
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.services-one__title a {
  color: var(--thm-black);
  transition: all 500ms ease;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0rem 89% / 0rem 0.1rem no-repeat;
}

.services-one__single:hover .services-one__title a {
  color: #ffffff;
}

.services-one__title a:hover {
  background-size: 100% 0.1rem;
}

.services-one__text {
  margin: 0;
  transition: all 500ms ease;
}

.services-one__single:hover .services-one__text {
  color: #ffffff;
}

.services-one__btn {
  font-size: 0.6rem;
  color: var(--thm-black);
  font-weight: 500;
  text-transform: uppercase;
  margin-top: 3.35rem;
  position: relative;
  display: inline-block;
  z-index: 2;
  transition: all 500ms ease;
}

.services-one__btn:hover {
  color: var(--thm-primary);
}

.services-one__single:hover .services-one__btn {
  color: #ffffff;
}

.services-one__single .services-one__btn:hover {
  color: var(--thm-primary);
}

.services-one__btn:before {
  position: absolute;
  bottom: 0.5rem;
  left: 0;
  right: 0;
  content: '';
  background-color: #e5e5e5;
  height: 0.3rem;
  z-index: -1;
  transition: all 500ms ease;
}

.services-one__single:hover .services-one__btn:before {
  background-color: var(--thm-primary);
  opacity: 0.4;
}

.services-one__icon {
  position: absolute;
  right: 2.9rem;
  bottom: 2.6rem;
}

.services-one__icon span {
  font-size: 3.25rem;
  line-height: 3.25rem;
  color: var(--thm-black);
  transition: all 500ms ease;
}

.services-one__single:hover .services-one__icon span {
  color: #ffffff;
}

/*--------------------------------------------------------------
# Project One
--------------------------------------------------------------*/
.project-one {
  position: relative;
  display: block;
  padding: 6rem 0 0;
}

.project-one-container {
  position: relative;
  display: block;
  width: 100%;
}

.project-one .section-title {
  margin-bottom: 2.35rem;
}

.project-one .row {
  --bs-gutter-x: 0.1rem;
}

.project-one__single {
  position: relative;
  display: block;
}

.project-one__img-box {
  position: relative;
  display: block;
}

.project-one__img {
  position: relative;
  display: block;
  overflow: hidden;
}

.project-one__img > img {
  width: 100%;
}

.project-one__hover {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(var(--thm-black-rgb), 0.9);
  transition: opacity 800ms ease, visibility 800ms ease, transform 800ms ease;
  z-index: 1;
  margin: 2rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-115%);
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  padding: 2.5rem;
}

.project-one__single:hover .project-one__hover {
  transform: translateY(0%);
  visibility: visible;
  opacity: 1;
}

.project-one__hover-content {
  position: relative;
}

.project-one__hover .img-popup {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 2rem;
  height: 2rem;
  background-color: var(--thm-primary);
  color: var(--thm-black);
  font-size: 0.9rem;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 500ms ease;
}

.project-one__hover .img-popup:hover {
  background-color: #fff;
  color: var(--thm-black);
}

.project-one__hover-title {
  font-size: 0.7rem;
  color: #9d9d9d;
  font-weight: 500;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  margin: 0;
  z-index: 1;
}

.project-one__hover-title:before {
  position: absolute;
  bottom: 0.5rem;
  right: 0;
  left: 0;
  content: '';
  background-color: #3e3d3d;
  z-index: -1;
  height: 0.3rem;
}

.project-one__hover-name {
  font-size: 1.5rem;
  color: #ffffff;
  line-height: 1.5rem;
  text-transform: uppercase;
}

.project-one__hover-name a {
  color: inherit;
  transition: all 500ms ease;
}

.project-one__hover-name a:hover {
  color: var(--thm-primary);
}

/*--------------------------------------------------------------
# Testimonials One
--------------------------------------------------------------*/
.testimonials-one {
  position: relative;
  display: block;
  padding: 6rem 0 6.75rem;
}

.testimonials-one .section-title {
  margin-bottom: 2.35rem;
}

.testimonials-one__carousel {
}

.testimonials-one__carousel.owl-carousel .owl-stage-outer {
  padding-bottom: 2.5rem;
  overflow: visible;
}

.testimonials-one__carousel.owl-carousel .owl-stage-outer .owl-item {
  opacity: 0;
  transition: all 100ms linear;
  transition-delay: 0.1s;
}

.testimonials-one__carousel.owl-carousel .owl-stage-outer .owl-item.active {
  opacity: 1;
}

.testimonials-one__carousel.owl-carousel .owl-dots {
  counter-reset: count;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -1.5rem !important;
}

.testimonials-one__carousel.owl-carousel .owl-dots .owl-dot {
  position: relative;
  display: block;
  width: 1rem;
  height: 1.5rem;
  border-radius: 0%;
  opacity: 1;
  background-color: transparent;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.testimonials-one__carousel.owl-carousel .owl-dots .owl-dot + .owl-dot {
  margin-left: 1rem;
}

.testimonials-one__carousel.owl-carousel .owl-dots .owl-dot:before {
  position: absolute;
  height: 1.5rem;
  width: 1rem;
  text-align: center;
  color: #000;
  font-size: 0.8rem;
  line-height: 1.5rem;
  font-weight: 500;
  border-bottom: 0.1rem solid var(--thm-black);
  counter-increment: count;
  content: '0' counter(count);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.testimonials-one__carousel.owl-carousel .owl-dot span {
  display: none;
}

.testimonials-one__carousel.owl-carousel .owl-dot.active {
  transform: translateY(-0.5rem);
}

.testimonials-one__carousel.owl-carousel .owl-dot:focus,
.testimonials-one__carousel.owl-carousel .owl-dot.active {
  outline: none;
  border: none;
}

.testimonials-one__box {
  position: relative;
  display: block;
  background: #ffffff;
  padding-right: 1rem;
  padding-bottom: 1rem;
  box-shadow: 0rem 0.5rem 3rem 0rem rgb(0, 0, 0, 0.07);
}

.testimonials-one__box:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 0%;
  opacity: 0;
  background-color: transparent;
  border: 0.05rem solid var(--thm-black);
  content: '';
  -webkit-transition: all 600ms ease;
  -ms-transition: all 600ms ease;
  -o-transition: all 600ms ease;
  -moz-transition: all 600ms ease;
  transition: all 600ms ease;
  z-index: 1;
}

.testimonials-one__box:hover:before {
  height: 100%;
  opacity: 1;
}

.testimonials-one__single {
  position: relative;
  display: block;
  background-color: #f4f4f4;
}

.testimonials-one__content {
  position: relative;
  display: block;
  padding-top: 2.75rem;
  padding-bottom: 3rem;
  padding-left: 3rem;
  padding-right: 3.75rem;
}

.testimonials-one__text {
  font-size: 1rem;
  margin: 0;
  line-height: 1.8rem;
}

.testimonials-one__client-info {
  display: flex;
  align-items: center;
  margin-top: 1.45rem;
}

.testimonials-one__client-img {
}

.testimonials-one__client-img > img {
  width: 2.4rem;
  border-radius: 50%;
}

.testimonials-one__client-details {
  margin-left: 1rem;
}

.testimonials-one__client-name {
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1rem;
  text-transform: uppercase;
}

.testimonials-one__client-title {
  font-size: 0.6rem;
  margin: 0;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1rem;
}

/*--------------------------------------------------------------
# Before After
--------------------------------------------------------------*/
.before-after-sec {
  position: relative;
  display: block;
  z-index: 3;
}

.before-after-content .before-after {
  position: relative;
}

.before-after-content .before-after .twentytwenty-container img {
  width: 100%;
}

.before-after-content .before-after .twentytwenty-horizontal .twentytwenty-before-label:before {
  position: absolute;
  left: -0.5rem;
  top: -0.5rem;
  width: 5rem;
  height: 5rem;
  line-height: 4.5rem;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  margin: 0rem;
  padding: 0rem;
  background: transparent;
  z-index: 1;
  transform: rotate(-45deg);
  text-transform: uppercase;
  display: none;
}

.before-after-content .before-after .twentytwenty-horizontal .twentytwenty-before-label:after {
  position: absolute;
  content: '';
  left: 0rem;
  top: 0rem;
  width: 5rem;
  height: 5rem;
  clip-path: polygon(0% 0%, 100% 0%, 0% 100%, 0% 100%, 0% 0%);
}

.before-after-content .before-after .twentytwenty-horizontal .twentytwenty-after-label:before {
  position: absolute;
  right: 0rem;
  width: 5rem;
  height: 5rem;
  line-height: 7rem;
  text-align: center;
  font-size: 0.8rem;
  background: transparent;
  font-weight: 700;
  color: #fff;
  margin: 0rem;
  padding: 0rem;
  bottom: 0rem;
  transform: rotate(-45deg);
  z-index: 1;
  text-transform: uppercase;
  display: none;
}

.before-after-content .before-after .twentytwenty-horizontal .twentytwenty-after-label:after {
  position: absolute;
  content: '';
  bottom: 0rem;
  right: 0rem;
  width: 5rem;
  height: 5rem;
  line-height: 5rem;
  clip-path: polygon(0% 100%, 100% 0%, 100% 100%, 0% 100%, 0% 0%);
}

.twentytwenty-after-label,
.twentytwenty-before-label {
  opacity: 1 !important;
}

/*--------------------------------------------------------------
# Two Section
--------------------------------------------------------------*/
.two-section {
  position: relative;
  display: block;
  margin-top: -10rem;
}

.two-section-bg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
}

.two-section-bg:before {
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  height: 100%;
  width: 100%;
  background-color: rgba(var(--thm-black-rgb), 0.9);
}

.two-section-bg.jarallax div div {
  filter: grayscale(100%);
}

.progress-section {
  position: relative;
  display: block;
  padding: 15rem 0 4.5rem;
}

.progress-section__left {
  position: relative;
  display: block;
}

.progress-section__left .section-title {
  position: relative;
  display: block;
  margin-bottom: 0;
  z-index: 1;
}

.progress-section__left .section-title__tagline {
  color: #9d9d9d;
}

.progress-section__left .section-title__tagline::before {
  background-color: #444444;
}

.progress-section__left .section-title__title {
  color: #ffffff;
}

.progress-section__right {
}

.progress-section__progress {
  display: flex;
  align-items: center;
}

.progress-section__progress-wrap {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 1rem;
}

@media (min-width: 38.4rem) {
  .progress-section__progress-wrap {
    grid-template-columns: repeat(2, 14rem);
  }
}

.progress-section__progress-box {
  position: relative;
  display: inline-block;
}

.progress-section__progress-box canvas {
  transform: rotate(90deg);
}

.progress-section__progress-box span {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  transform: translateY(-50%) translateX(-50%);
  font-size: 1.3rem;
  font-weight: 300;
  line-height: 1;
  color: #ffffff;
}

.progress-section__progress h3 {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.4rem;
  font-weight: 500;
  color: #ffffff;
  width: 3.5rem;
  margin-left: 1rem;
}

.brand-one {
  position: relative;
  display: block;
  background-color: rgba(255, 255, 255, 0);
  box-shadow: 0rem -0.05rem 0rem 0rem rgb(255, 255, 255, 0.1);
  padding: 5.9rem 0 5.25rem;
}

.brand-one .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.brand-one .swiper-slide img {
  -webkit-transition: 500ms;
  transition: 500ms;
  opacity: 0.2;
  max-width: 100%;
}

.brand-one .swiper-slide img:hover {
  opacity: 0.8;
}

/*--------------------------------------------------------------
# News One
--------------------------------------------------------------*/
.news-one {
  position: relative;
  display: block;
  padding: 3rem 0 4.5rem;
}

.news-one .section-title {
  margin-bottom: 2.35rem;
}

.news-one__single {
  position: relative;
  display: block;
  margin-bottom: 1.5rem;
}

.news-one__img-box {
  position: relative;
  display: block;
}

.news-one-img {
  position: relative;
  display: block;
  overflow: hidden;
}

.news-one-img > img {
  width: 100%;
}

.news-one-img > a {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(192, 42, 51, 0.1);
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.25rem;
  color: #ffffff;
  transition: opacity 500ms ease, visibility 500ms ease, transform 500ms ease;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-30%);
}

.news-one-img > a > span {
  position: relative;
  color: #fff;
}

.news-one-img > a > span::before {
  content: '';
  width: 1rem;
  height: 0.1rem;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 500ms ease;
}

.news-one-img > a > span::after {
  content: '';
  transition: all 500ms ease;
  width: 0.1rem;
  height: 1rem;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.news-one-img > a:hover > span::before,
.news-one-img > a:hover > span::after {
  background-color: #fff;
}

.news-one__single:hover .news-one-img > a {
  visibility: visible;
  transform: translateY(0%);
  opacity: 1;
}

.news-one__date-box {
  position: absolute;
  bottom: -0.5rem;
  right: 1.5rem;
  background: var(--thm-black);
  padding: 0.15rem 1.5rem;
  z-index: 1;
}

.news-one__date-box p {
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #ffffff;
  margin: 0;
  letter-spacing: 0.1em;
}

.news-one__content {
  position: relative;
  display: block;
  text-align: left;
  background-color: rgb(255, 255, 255);
  box-shadow: 0rem 1rem 3rem 0rem rgb(23 39 54 / 10%);
  padding: 1rem;
  transition: all 500ms ease;
}

.news-one__content:before {
  position: absolute;
  bottom: -0.25rem;
  right: 0;
  left: 0;
  width: 0;
  content: '';
  background-color: var(--thm-black);
  height: 0.05rem;
  transition: all 500ms ease;
}

.news-one__single:hover .news-one__content:before {
  width: 100%;
}

.news-one__single:hover .news-one__content {
  background-color: var(--thm-base);
  color: #fff;
}

.news-one__meta {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  margin: 0;
  justify-content: center;
}

.news-one__meta li {
}

.news-one__meta li + li {
  margin-left: 0.75rem;
}

.news-one__meta li a {
  font-size: 0.8rem;
  color: var(--thm-gray);
  transition: all 500ms ease;
}

.news-one__single:hover .news-one__meta li a {
  color: #9d9d9d;
}

.news-one__meta li a i {
  color: var(--thm-primary);
  font-size: 0.7rem;
}
.news-one__time {
  font-size: 0.8rem;
}
.news-one__title {
  font-size: 1.2rem;
  font-weight: normal;
  text-transform: uppercase;
  line-height: 1.2rem;
  height: 3.6rem;
  margin-bottom:0.5rem;
}

.news-one__title a {
  color: var(--thm-black);
  transition: all 500ms ease;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0rem 89% / 0rem 0.1rem no-repeat;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical:
  overflow: hidden;
  text-overflow: ellipsis;
  padding-bottom: 20px;
}

.news-one__single:hover .news-one__title a {
  color: #fff;
}

.news-one__single .news-one__title a:hover {
  background-size: 100% 0.1rem;
}

.news-one__text {
  margin: 0;
  transition: all 500ms ease;
  font-size: 0.8rem;
  color: #666;
  line-height: 1rem;
  min-height: 5rem;
  overflow: hidden;
}

.news-one__single:hover .news-one__text {
  color: #9d9d9d;
}

.news-one__btn {
  position: relative;
  display: inline-block;
  font-size: 1.6rem;
  color: #787878;
  font-weight: 100;
  text-transform: uppercase;
  transition: all 500ms ease;
  z-index: 1;
  margin-top: 2.95rem;
}

.news-one__btn i {
  font-weight: 100;
}

.news-one__btn:hover {
  color: var(--thm-primary);
}

.news-one__single:hover .news-one__btn {
  color: #ffffff;
}

.news-one__single:hover .news-one__btn:before {
  background-color: var(--thm-primary);
  opacity: 0.4;
}

.news-one__single .news-one__btn:hover {
  color: var(--thm-primary);
}

.news-one__page {
  padding-bottom: 2rem;
}

.news-one__more {
  margin-top: 2.5rem;
}

.news-one__single:hover .news-one__text {
  color: #fff;
}

/*--------------------------------------------------------------
#Google Map
--------------------------------------------------------------*/
.google-map {
  position: relative;
  display: block;
}

.google-map__one {
  position: relative;
  display: block;
  border: none;
  height: 27.5rem;
  width: 100%;
}

/*--------------------------------------------------------------
#Site Footer
--------------------------------------------------------------*/
.site-footer {
  background: #141414 url(../images/backgrounds/bg5.png) top center no-repeat;
  position: relative;
  display: block;
  border-top: 0.3rem #cacaca solid;
}

.site-footer__main {
  position: relative;
  display: block;
  padding: 4.7rem 0 4.55rem;
  z-index: 10;
}

.site-footer__main-pattern-bg1 {
  position: absolute;
  border-top: 0.05rem solid rgba(255, 255, 255, 0.1);
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
}

.footer-widget__about {
  position: relative;
  display: block;
  margin-right: 3.75rem;
}

.footer-widget__title {
  font-size: 0.9rem;
  color: #ffffff;
  font-weight: normal;
  line-height: 1.6rem;
  margin-bottom: 1rem;
}

.footer-widget__text {
  font-size: 0.8rem;
  color: #9d9d9d;
  margin: 0;
  font-weight: 500;
}

.footer-widget__contact-list {
  position: relative;
  display: block;
  margin: 0;
  border-top: 0.05rem solid rgba(255, 255, 255, 0.1);
  margin-top: 1.15rem;
  padding-top: 0.95rem;
}

.footer-widget__contact-list li {
  display: flex;
  align-items: center;
}

.footer-widget__contact-list li .icon {
}

.footer-widget__contact-list li .icon i {
  font-size: 0.75rem;
  color: var(--thm-primary);
}

.footer-widget__contact-list li .text {
  margin-left: 0.5rem;
}

.footer-widget__contact-list li .text p {
  font-size: 0.8rem;
  color: #ffffff;
  margin: 0;
  font-weight: normal;
}

.footer-widget__contact-list li .text a {
  color: #ffffff;
}

.footer-widget__links {
  position: relative;
  display: block;
  margin-left: -1.6rem;
}

.footer-widget__links-list {
  margin: 0;
}

.footer-widget__links-list li + li {
  margin-top: 0.25rem;
}

.footer-widget__links-list li a {
  font-size: 0.7rem;
  font-weight: normal;
  color: #9d9d9d;
  transition: all 500ms ease;
}

.footer-widget__links-list li a:hover {
  color: var(--thm-primary);
}

.footer-widget__explore {
  position: relative;
  display: block;
  margin-left: -1.5rem;
}

.footer-widget__explore-list {
  margin: 0;
}

.footer-widget__explore-list li + li {
  margin-top: 0.25rem;
}

.footer-widget__explore-list li a {
  font-size: 0.8rem;
  font-weight: 500;
  color: #9d9d9d;
  transition: all 500ms ease;
}

.footer-widget__explore-list li a:hover {
  color: var(--thm-primary);
}

.footer-widget__newsletter {
  position: relative;
  display: block;
  /* margin-left: -1.5rem; */
}

.footer-widget__newsletter-text {
  font-size: 1.8rem;
  font-weight: 500;
  color: #fff;
  margin: 0;
}

.footer-widget__newsletter-form {
}

.footer-widget__newsletter-input-box {
  position: relative;
  display: block;
  border-bottom: 0.05rem solid #ffffff;
  margin-top: 1.5rem;
}

.footer-widget__newsletter-form input[type='email'] {
  font-size: 0.8rem;
  color: #9d9d9d;
  font-weight: 500;
  height: 3.5rem;
  width: 100%;
  background: transparent;
  border: none;
  border-radius: 0;
  padding-right: 3.5rem;
  outline: none;
}

.footer-widget__newsletter-btn {
  position: absolute;
  top: 0;
  right: 0;
  width: 2.5rem;
  height: 3.5rem;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  background: transparent;
  border: 0;
  transition: all 500ms ease;
  color: #fff;
  transition: all 500ms ease;
}

.footer-widget__newsletter-btn:hover {
  color: var(--thm-primary);
}

.footer-widget__newsletter-btn i {
}

.site-footer__social {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  margin-top: 1rem;
}

.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;
  color: #ffffff;
  font-size: 1.1rem;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  position: relative;
}

.site-footer__social a + a {
  margin-left: 1.8rem;
}

.site-footer__social a:hover {
  color: var(--thm-primary);
}
.site-footer__social a span {
  position: absolute;
  top: -13rem;
  left: -5.5rem;
  right: 0;
  display: none;
  width: 12rem;
  height: 12rem;
}
.site-footer__social a span::after {
  content: '';
  display: block;
  width: 0.6rem;
  height: 0.6rem;
  border-left: 0.6rem solid transparent;
  border-right: 0.6rem solid transparent;
  border-top: 0.6rem solid #fff;
  margin: 0 auto;
}
.site-footer__social a span img {
  display: block;
  width: 12rem;
  height: 12rem;
}
.site-footer__social a:hover span {
  display: block;
}

.site-footer-bottom {
  position: relative;
  display: block;
  padding: 1rem 0;
  /* background-color: var(--thm-black); */
  border-top: 0.05rem #333333 solid;
}

.site-footer-bottom__inner {
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-footer-bottom__left {
}

.site-footer-bottom__left p {
  font-size: 0.8rem;
  color: #9d9d9d;
  font-weight: normal;
  margin: 0;
}

.site-footer-bottom__left p a {
  color: #9d9d9d;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.site-footer-bottom__left a:hover {
  color: #ffffff;
}

.site-footer-bottom__menu {
  margin: 0;
}

.site-footer-bottom__menu li {
  position: relative;
  display: inline-block;
}

.site-footer-bottom__menu li + li {
  margin-left: 1.3rem;
}

.site-footer-bottom__menu li a {
  color: #9d9d9d;
  font-size: 0.8rem;
  font-weight: 500;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.site-footer-bottom__menu li a:hover {
  color: var(--thm-primary);
}

/*--------------------------------------------------------------
# Steps
--------------------------------------------------------------*/
.steps {
  position: relative;
  display: block;
  margin-top: -3rem;
  z-index: 2;
  counter-reset: stepsCount;
}

.steps__inner {
  position: relative;
  display: block;
}

.steps__inner .row {
  --bs-gutter-x: 0rem;
}

.steps__single {
  display: flex;
  align-items: center;
  background-color: rgb(255, 255, 255);
  box-shadow: 0rem 0.5rem 3rem 0rem rgb(0 0 0 / 10%);
  justify-content: center;
  line-height: 0;
  padding: 2.175rem 0;
  counter-increment: stepsCount;
}

.steps__icon {
  position: relative;
}

.steps__icon span {
  font-size: 3.25rem;
  color: var(--thm-black);
  line-height: 3.25rem;
}

.steps__count {
  position: absolute;
  top: -0.25rem;
  right: -0.4rem;
  height: 1.6rem;
  width: 1.6rem;
  background-color: var(--thm-black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 500ms ease;
}

.steps__count::before {
  font-size: 0.7rem;
  color: #ffffff;
  font-weight: 500;
  margin: 0;
  content: counters(stepsCount, '.', decimal-leading-zero);
  transition: all 500ms ease;
}

.steps__single:hover .steps__count {
  background-color: var(--thm-primary);
  color: #fff;
}

.steps__text {
  margin-left: 1.25rem;
}

.steps__text h4 {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5rem;
  text-transform: uppercase;
}

/*--------------------------------------------------------------
# CTA One
--------------------------------------------------------------*/
.cta-one {
  position: relative;
  display: block;
  background-color: var(--thm-primary);
  padding: 8.5rem 0 4.25rem;
  margin-top: -4.6rem;
}

.cta-one-pattern {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.1;
}

.cta-one__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cta-one__content {
  position: relative;
  display: block;
}

.cta-one__text {
  font-size: 1.8rem;
  color: #ffffff;
  line-height: 2.3rem;
  font-weight: 500;
}

.cta-one__btn-box {
}

.cta-one__btn:hover {
  background-color: #ffffff;
  color: var(--thm-black);
}

.cta-one__btn-box .thm-btn:before {
  background: var(--thm-black);
}

/*--------------------------------------------------------------
# Welcome Two
--------------------------------------------------------------*/
.welcome-two {
  position: relative;
  display: block;
  padding: 6rem 0 5.15rem;
}

.welcome-two-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 34.45rem;
  width: 25.45rem;
  opacity: 0.15;
  z-index: -1;
  -webkit-animation-name: shapeMover;
  animation-name: shapeMover;
  -webkit-animation-duration: 15s;
  animation-duration: 15s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-perspective: 5rem;
  perspective: 5rem;
  -webkit-transform-origin: center center;
  transform-origin: center center;
}

.welcome-two__left {
  position: relative;
  display: block;
  margin-right: 3rem;
}

.welcome-two__img {
  position: relative;
  display: block;
}

.welcome-two__img > img {
  width: 100%;
  border-radius: 50%;
}

.welcome-two__img-shape-1 {
  position: absolute;
  top: 6rem;
  left: -2.05rem;
  height: 4.75rem;
  width: 4.75rem;
  background-color: var(--thm-black);
  border-radius: 50%;
  -webkit-animation-name: shapeMover;
  animation-name: shapeMover;
  -webkit-animation-duration: 10s;
  animation-duration: 10s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-perspective: 5rem;
  perspective: 5rem;
  -webkit-transform-origin: center center;
  transform-origin: center center;
}

.welcome-two__img-shape-2 {
  position: absolute;
  bottom: -3rem;
  right: 2.85rem;
  height: 9rem;
  width: 9rem;
  background-color: var(--thm-primary);
  border-radius: 50%;
  z-index: -1;
  animation-name: shapeMover;
  -webkit-animation-duration: 10s;
  animation-duration: 10s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-perspective: 5rem;
  perspective: 5rem;
  -webkit-transform-origin: center center;
  transform-origin: center center;
}

.welcome-two__right {
  position: relative;
  display: block;
}

.welcome-two__right .section-title {
  margin-bottom: 1.9rem;
}

.welcome-two__text {
  margin: 0;
}

.welcome-two__icon-box {
  margin-top: 2.45rem;
}

.welcome-two__icon-box-img {
  position: relative;
  display: block;
  margin-right: 2rem;
}

.welcome-two__icon-box-img > img {
  width: 100%;
}

.welcome-two__icon-list-box {
  position: relative;
  display: block;
  margin-left: -2rem;
}

.welcome-two__icon-list {
  margin: 0;
}

.welcome-two__icon-list li {
  display: flex;
  border-bottom: 0.05rem solid #e5e5e5;
  padding-bottom: 1.2rem;
  margin-bottom: 1.45rem;
}

.welcome-two__icon-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0rem;
  margin-bottom: 0rem;
}

.welcome-two__icon-list li .icon {
}

.welcome-two__icon-list li .icon span {
  font-size: 3.25rem;
  color: var(--thm-primary);
  line-height: 3.25rem;
  transform: scale(1);
  display: block;
  transition: transform 500ms ease;
}

.welcome-two__icon-list li:hover .icon span {
  transform: scale(0.8);
}

.welcome-two__icon-list li .text-box {
  margin-left: 1.5rem;
}

.welcome-two__icon-list li .text-box p {
  margin: 0;
}

/*--------------------------------------------------------------
# Services Two
--------------------------------------------------------------*/
.services-two {
  position: relative;
  display: block;
  background-color: #f4f4f4;
  padding: 6rem 0 4.5rem;
}

.services-two .section-title {
  margin-bottom: 2.35rem;
  position: relative;
  display: block;
  z-index: 5;
}

.services-two__top-text-box {
}

.services-two__top-text {
}

.services-two__single {
  position: relative;
  display: block;
  background-color: rgb(255, 255, 255);
  box-shadow: 0rem 0.5rem 3rem 0rem rgb(0, 0, 0, 0.07);
  padding: 3rem 3rem 2.5rem;
  margin-bottom: 1.5rem;
  transition: all 500ms ease;
}

.services-two__single:hover {
  background-color: var(--thm-black);
}

.services-two__single-bg {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  height: 17rem;
  opacity: 0;
  transition: all 500ms ease;
}

.services-two__single:hover .services-two__single-bg {
  opacity: 0.2;
}

.services-two__icon {
}

.services-two__icon span {
  font-size: 3.25rem;
  color: var(--thm-black);
  line-height: 3.25rem;
  transition: all 500ms ease;
}

.services-two__single:hover .services-two__icon span {
  color: #ffffff;
}

.services-two__title {
  position: relative;
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.7rem;
  margin-top: 1.25rem;
  margin-bottom: 1.05rem;
  transition: all 500ms ease;
}

.services-two__title a {
  color: var(--thm-black);
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0rem 89% / 0rem 0.1rem no-repeat;
  transition: all 500ms ease;
}

.services-two__title a:hover {
  background-size: 100% 0.1rem;
}

.services-two__single:hover .services-two__title a {
  color: #ffffff;
}

.services-two__text-2 {
  margin: 0;
  transition: all 500ms ease;
}

.services-two__single:hover .services-two__text-2 {
  color: #9d9d9d;
}

.services-two__btn {
  margin-top: 1.85rem;
}

.services-two__single:hover .services-two__btn {
  color: #ffffff;
}

.services-two__btn:before {
  transition: all 500ms ease;
}

.services-two__single:hover .services-two__btn:hover {
  color: var(--thm-primary);
}

.services-two__single:hover .services-two__btn:before {
  background-color: #333333;
}

/*--------------------------------------------------------------
# Project Two
--------------------------------------------------------------*/
.project-two {
  position: relative;
  display: block;
  padding: 6rem 0 0;
}

.project-two__container {
  position: relative;
  display: block;
  width: 100%;
}

.project-two .section-title {
  margin-bottom: 2.35rem;
}

.project-two .row {
  --bs-gutter-x: 0rem;
}

.project-two__single {
  position: relative;
  display: block;
}

.project-two__img {
  position: relative;
  display: block;
  overflow: hidden;
}

.project-two__img:before {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  content: '';
  background-color: rgba(var(--thm-black-rgb), 0.3);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

.project-two__single:hover .project-two__img:before {
  background-color: rgba(var(--thm-black-rgb), 0.1);
}

.project-two__img > img {
  width: 100%;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: opacity 500ms ease, -webkit-transform 500ms ease;
  transition: opacity 500ms ease, -webkit-transform 500ms ease;
  transition: transform 500ms ease, opacity 500ms ease;
  transition: transform 500ms ease, opacity 500ms ease, -webkit-transform 500ms ease;
}

.project-two__single:hover .project-two__img > img {
  transform: scale(1.05);
}

.project-two__architect {
  position: absolute;
  bottom: 2.5rem;
  left: 0;
  padding: 2.2rem 4.5rem 2.15rem 2.5rem;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  transform: scaleY(0);
  z-index: 1;
}

.project-two__single:hover .project-two__architect {
  transform: scaleY(1);
}

.project-two__architect:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: '';
  background-color: rgba(var(--thm-black-rgb), 0.9);
  z-index: -1;
}

.project-two__architect p {
  font-size: 0.7rem;
  color: #9d9d9d;
  margin: 0;
  text-transform: uppercase;
  font-weight: 500;
  line-height: 1.2rem;
  position: relative;
  display: inline-block;
  z-index: 1;
}

.project-two__architect p:before {
  position: absolute;
  bottom: 0.25rem;
  left: 0;
  right: 0;
  height: 0.3rem;
  content: '';
  background-color: #353536;
  z-index: -1;
}

.project-two__architect h3 {
  font-size: 1.5rem;
  color: #ffffff;
  font-weight: 400;
  line-height: 1.75rem;
  text-transform: uppercase;
}

.project-two__architect h3 a {
  color: inherit;
  transition: all 500ms ease;
}

.project-two__architect h3 a:hover {
  color: var(--thm-primary);
}

/*--------------------------------------------------------------
# Counter One
--------------------------------------------------------------*/
.counters-one {
  position: relative;
  display: block;
  background-color: var(--thm-black);
}

.counters-one-martopminus {
  margin-top: -0.2rem;
}

.counters-one-pattern {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.1;
}

.counters-one__box {
  position: relative;
  display: block;
  margin: 0;
  padding: 0;
  padding: 6rem 0 5.35rem;
}

.counter-one__single {
  position: relative;
  display: inline-block;
  max-width: 14.2rem;
  width: 100%;
  text-align: center;
}

.counter-one__single:before {
  position: absolute;
  top: 0rem;
  left: 0;
  bottom: 0.65rem;
  content: '';
  width: 0.05rem;
  background-color: rgb(255, 255, 255, 0.2);
}

.counter-one__single:first-child:before {
  display: none;
}

.counter-one__icon {
  position: relative;
  display: block;
  padding-bottom: 0.95rem;
}

.counter-one__icon span {
  font-size: 3.25rem;
  color: #ffffff;
  line-height: 3.25rem;
}

.counter-one__single h3 {
  color: var(--thm-primary);
  font-size: 2rem;
  color: #ffffff;
  font-weight: 400;
  line-height: 2.5rem;
}

.counter-one__text {
  font-size: 0.7rem;
  font-weight: 500;
  color: #9d9d9d;
  text-transform: uppercase;
  margin: 0;
  letter-spacing: 0.1em;
}

.counter-one__single .odometer-formatting-mark {
  display: none;
}

/*--------------------------------------------------------------
# Pricing One
--------------------------------------------------------------*/
.pricing-one {
  position: relative;
  display: block;
  padding: 6rem 0 6rem;
}

.pricing-one .section-title {
  margin-bottom: 2.35rem;
}

.pricing-one__content {
  position: relative;
  display: block;
  margin-left: 3.5rem;
  padding-top: 0.5rem;
}

.pricing-one__text {
  margin: 0;
}

.pricing-one__left {
}

.pricing-one__points {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 0;
}

.pricing-one__points li {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--thm-black);
  background-color: #f4f4f4;
  padding: 0.65rem 2rem;
}

.pricing-one__points li + li {
  margin-left: 1rem;
}

.pricing-one__points li span {
  color: var(--thm-primary);
  margin-right: 0.3rem;
}

.pricing-one__checks-list {
  position: relative;
  display: block;
  margin-bottom: 0;
  padding-top: 3rem;
}

.pricing-one__checks-list li {
  position: relative;
  display: block;
  padding-left: 4.35rem;
}

.pricing-one__checks-list li + li {
  margin-top: 2.25rem;
}

.pricing-one__checks-icon {
  position: absolute;
  top: 0.25rem;
  left: 0;
  height: 2.85rem;
  width: 2.85rem;
  background-color: var(--thm-black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(0deg);
  transition: transform 500ms ease, background 500ms ease, color 500ms ease;
}

.pricing-one__checks-list li:hover .pricing-one__checks-icon {
  background-color: var(--thm-primary);
  color: #fff;
  transform: rotate(360deg);
}

.pricing-one__checks-icon i {
  color: #ffffff;
}

.pricing-one__checks-text-box {
}

.pricing-one__checks-title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5rem;
  margin-bottom: 1.1rem;
  text-transform: uppercase;
}

.pricing-one__checks-text {
  font-size: 0.8rem;
  margin: 0;
  max-width: 20.7rem;
}

.pricing-one__right {
}

.pricing-one__table {
  position: relative;
  display: block;
  overflow: hidden;
  max-width: 18.5rem;
  background-color: #111111;
  width: 100%;
  text-align: center;
  padding: 2.75rem 3rem 3.25rem;
}

.pricing-one__rate-box {
}

.pricing-one__rate-box h2 {
  font-size: 2.3rem;
  color: #ffffff;
  font-weight: 400;
}

.pricing-one__rate-box span {
  font-size: 0.6rem;
}

.pricing-one__rate-box .pricing-one__dolar {
  font-size: 1.5rem;
  position: relative;
  top: -0.75rem;
}

.pricing-one__details-box {
  border-top: 0.05rem solid rgba(255, 255, 255, 0.2);
  border-bottom: 0.05rem solid rgba(255, 255, 255, 0.2);
  padding: 1.6rem 0 1.4rem;
  margin: 1.4rem 0 2rem;
}

.pricing-one__details-title {
  font-size: 1rem;
  color: #ffffff;
  line-height: 1.5rem;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 1.6rem;
}

.pricing-one__details-box ul {
  margin-bottom: 0;
}

.pricing-one__details-box ul li {
  font-size: 0.8rem;
  color: #9d9d9d;
  font-weight: 500;
}

.pricing-one__details-box ul li + li {
  margin-top: 0.3rem;
}

.pricing-one__btn-box {
}

.pricing-one__btn {
  background-color: #ffffff;
  color: var(--thm-black);
}

.tab-btn-box1 .tab-btns {
  position: relative;
  display: inline-block;
  padding: 0;
  margin-top: 1.5rem;
}

.tab-btn-box1 .tab-btns:before {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  height: 3rem;
  width: 7.5rem;
  content: '';
  border-radius: 1.5rem;
  background: #fff;
  -webkit-box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.2);
  box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.2);
}

.tab-btn-box1 .tab-btns li {
  position: relative;
  display: inline-block;
  min-width: 8rem;
  text-align: right;
  font-size: 0.9rem;
  padding: 0.5rem 4.5rem 0.5rem 0rem;
  line-height: 2rem;
  font-weight: 700;
  color: #000000;
  cursor: pointer;
  transition: all 500ms ease;
}

.tab-btn-box1 .tab-btns li.active-btn {
  color: #9d9482;
}

.tab-btn-box1 .tab-btns li:last-child {
  padding-right: 0;
  padding-left: 4.5rem;
  text-align: left;
}

.tab-btn-box1 .tab-btns li.active-btn:before {
  right: 0.75rem;
}

.tab-btn-box1 .tab-btns li:before {
  position: absolute;
  top: 0.25rem;
  height: 2.5rem;
  width: 2.5rem;
  background: #000000;
  border-radius: 1.5rem;
  content: '';
  right: -3.35rem;
  -webkit-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.tab-btn-box1 .tab-btns li:last-child:before {
  display: none;
}

.pricing-one__table-box {
  position: relative;
  display: block;
}

.pricing-one__table-box-single {
  position: relative;
  max-width: 18.5rem;
  width: 100%;
}

.pricing-one__table-box .pr-content .pr-tab {
  position: absolute;
  left: 0rem;
  top: 0rem;
  opacity: 1;
  z-index: 1;
  transition: all 0.7s ease;
  -moz-transition: all 0.7s ease;
  -webkit-transition: all 0.7s ease;
  -ms-transition: all 0.7s ease;
  -o-transition: all 0.7s ease;
  transform: scale(0.81, 0.81) translateX(15.5rem);
}

.pricing-one__table-box .pr-content .pr-tab.active-tab {
  position: relative;
  z-index: 5;
  -webkit-transform: scale(1) translateX(0);
  -ms-transform: scale(1) translateX(0);
  -o-transform: scale(1) translateX(0);
  -moz-transform: scale(1) translateX(0);
  transform: scale(1) translateX(0);
  width: 18.5rem;
}

.pricing-one__table-box .pr-content .pr-tab.active-tab .pricing-one__table {
  background-color: #000000;
}

/*--------------------------------------------------------------
# Trust Experts
--------------------------------------------------------------*/
.trust-experts {
  position: relative;
  display: block;
  padding: 5.3rem 0 6rem;
}

.trust-experts-bg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
}

.trust-experts-bg:before {
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  height: 100%;
  width: 100%;
  background-color: rgba(var(--thm-black-rgb), 0.85);
}

.trust-experts-bg.jarallax div div {
  filter: grayscale(100%);
}

.trust-experts__inner {
  position: relative;
  display: block;
  text-align: center;
}

.trust-experts__text {
  font-size: 3rem;
  color: #ffffff;
  text-transform: uppercase;
  line-height: 3.6rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.trust-experts__btn {
  background-color: #ffffff;
  color: var(--thm-black);
}

/*--------------------------------------------------------------
# They Trusted
--------------------------------------------------------------*/
.they-trusted {
  position: relative;
  display: block;
  background-color: #f4f4f4;
  padding: 6rem 0 6rem;
}

.they-trusted__left {
  position: relative;
  display: block;
  margin-right: 4.25rem;
}

.they-trusted__left .section-title {
  margin-bottom: 1.9rem;
  position: relative;
  display: block;
  z-index: 5;
}

.they-trusted__text {
  margin: 0;
}

.they-trusted__list {
  position: relative;
  display: block;
  margin-top: 1.8rem;
  margin-bottom: 2.55rem;
}

.they-trusted__list li {
  display: flex;
  align-items: center;
}

.they-trusted__list li + li {
  margin-top: 0.35rem;
}

.they-trusted__list li .icon {
}

.they-trusted__list li .icon span {
  font-size: 1rem;
  color: var(--thm-primary);
}

.they-trusted__list li .text {
  margin-left: 0.65rem;
}

.they-trusted__list li .text p {
  margin: 0;
}

.they-trusted__projects-complete {
  display: flex;
  align-items: center;
}

.they-trusted__projects-complete-img {
  position: relative;
  display: block;
  padding-left: 1rem;
}

.they-trusted__projects-complete-img:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0rem;
  width: 0.5rem;
  content: '';
  background-color: var(--thm-primary);
}

.they-trusted__projects-complete-img > img {
  width: 7.75rem;
}

.they-trusted__projects-complete-count-box {
  margin-left: 2rem;
}

.they-trusted__projects-complete-count-box h3 {
  font-size: 2rem;
  font-weight: 400;
  line-height: 2.5rem;
}

.they-trusted__projects-complete-text {
  font-size: 1rem;
  margin: 0;
  line-height: 1.5rem;
}

.they-trusted__brand {
}

.they-trusted__brand-single {
  position: relative;
  text-align: center;
  margin-bottom: 1.5rem;
  z-index: 1;
}

.they-trusted__brand-prattern {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1.5rem;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0;
  transition: all 500ms ease;
}

.they-trusted__brand-single:hover .they-trusted__brand-prattern {
  opacity: 0.8;
}

.they-trusted__brand-single:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ffffff;
  content: '';
  transition: all 500ms ease;
  z-index: -1;
}

.they-trusted__brand-single:hover:before {
  background-color: var(--thm-black);
}

.they-trusted__brand-single:after {
  position: absolute;
  bottom: -0.25rem;
  right: 0;
  left: 0;
  width: 0;
  height: 0.05rem;
  content: '';
  background-color: var(--thm-black);
  transition: all 500ms ease;
}

.they-trusted__brand-single:hover:after {
  width: 100%;
}

.they-trusted__brand-main-img {
  opacity: 1;
  transition: all 500ms ease;
}

.they-trusted__brand-single:hover .they-trusted__brand-main-img {
  opacity: 0;
}

.they-trusted__brand-main-img > a {
}

.they-trusted__brand-main-img > a > img {
  width: 100%;
  opacity: 0.5;
}

.they-trusted__brand-overly {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  transition: all 500ms ease;
}

.they-trusted__brand-single:hover .they-trusted__brand-overly {
  opacity: 1;
}

.they-trusted__brand-overly > a {
}

.they-trusted__brand-overly > a > img {
  width: 100%;
}

.they-trusted__brand-single-mb-0 {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Three Boxes Two
--------------------------------------------------------------*/
.three-boxes-two {
  position: relative;
  display: block;
  background-color: #f4f4f4;
  padding: 0 0 7.75rem;
}

.three-boxes-two__single {
  position: relative;
  display: block;
  margin-bottom: 1.5rem;
}

.three-boxes-two__single:before {
  position: absolute;
  bottom: -0.25rem;
  left: 0;
  right: 0;
  height: 0.05rem;
  width: 0;
  content: '';
  background-color: var(--thm-black);
  transition: all 500ms ease;
}

.three-boxes-two__single:hover:before {
  width: 100%;
}

.three-boxes-two__single-pattern {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1.5rem;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0;
  transition: all 500ms ease;
}

.three-boxes-two__single:hover .three-boxes-two__single-pattern {
  opacity: 0.8;
}

.three-boxes-two__img {
  position: relative;
  display: block;
}

.three-boxes-two__img > img {
  width: 100%;
}

.three-boxes-two__content {
  position: relative;
  display: block;
  text-align: left;
  background-color: rgb(255, 255, 255);
  box-shadow: 0rem 0.5rem 3rem 0rem rgb(0 0 0 / 7%);
  padding: 2.7rem 3rem 2.35rem;
  transition: all 500ms ease;
}

.three-boxes-two__single:hover .three-boxes-two__content {
  background-color: var(--thm-black);
}

.three-boxes-two__title {
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.5rem;
  margin-bottom: 1.25rem;
  transition: all 500ms ease;
}

.three-boxes-two__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0rem 89% / 0rem 0.1rem no-repeat;
  transition: all 500ms ease;
}

.three-boxes-two__title a:hover {
  background-size: 100% 0.1rem;
}

.three-boxes-two__single:hover .three-boxes-two__title {
  color: #ffffff;
}

.three-boxes-two__text {
  margin: 0;
  transition: all 500ms ease;
}

.three-boxes-two__single:hover .three-boxes-two__text {
  color: #9d9d9d;
}

.three-boxes-two__btn {
  position: relative;
  display: inline-block;
  font-size: 0.6rem;
  color: var(--thm-black);
  font-weight: 500;
  text-transform: uppercase;
  z-index: 2;
  transition: all 500ms ease;
  margin-top: 0.75rem;
}

.three-boxes-two__btn:before {
  position: absolute;
  bottom: 0.5rem;
  left: 0;
  right: 0;
  content: '';
  background-color: #e5e5e5;
  height: 0.3rem;
  transition: all 500ms ease;
  z-index: -1;
}

.three-boxes-two__btn:hover {
  color: var(--thm-primary);
}

.three-boxes-two__single:hover .three-boxes-two__btn {
  color: #ffffff;
}

.three-boxes-two__single .three-boxes-two__btn:hover {
  color: var(--thm-primary);
}

.three-boxes-two__single:hover .three-boxes-two__btn:before {
  background-color: var(--thm-primary);
  opacity: 0.4;
}

/*--------------------------------------------------------------
# Welcome Three
--------------------------------------------------------------*/
.welcome-three {
  position: relative;
  display: block;
}

.welcome-three-bg {
  position: absolute;
  bottom: -12.5rem;
  right: 0;
  height: 27.75rem;
  width: 27.2rem;
  opacity: 0.15;
}

.welcome-three__left {
  position: relative;
  display: block;
}

.welcome-three__left:before {
  position: absolute;
  top: 6rem;
  left: -4.5rem;
  bottom: 20rem;
  width: 0.1rem;
  background-color: var(--thm-primary);
  content: '';
}

.welcome-three__img {
  position: relative;
  display: block;
  margin-top: -2.95rem;
}

.welcome-three__img > img {
  width: 100%;
}

.welcome-three__small-img {
  position: absolute;
  bottom: 0;
  left: -4.5rem;
}

.welcome-three__small-img > img {
  max-width: 16rem;
  width: 100%;
}

.welcome-three__right {
  position: relative;
  display: block;
  margin-left: 3.35rem;
  padding-top: 5rem;
}

.welcome-three__right .section-title {
  margin-bottom: 1.9rem;
}

.welcome-three__text {
  margin: 0;
}

.welcome-three__progress {
  position: relative;
  display: block;
  width: 100%;
  padding-top: 2.15rem;
}

.welcome-three__progress-single {
  position: relative;
  display: block;
  margin-bottom: 1.2rem;
}

.welcome-three__progress-title {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.3rem;
  margin-bottom: 0.35rem;
}

.welcome-three__progress .bar {
  position: relative;
  width: 100%;
  height: 0.1rem;
  background: #f4f4f4;
  border-radius: 0rem;
  margin-bottom: 0.3rem;
}

.welcome-three__progress .bar-inner {
  position: relative;
  display: block;
  width: 0rem;
  height: 0.1rem;
  border-radius: 0;
  background: var(--thm-black);
  -webkit-transition: all 1500ms ease;
  -ms-transition: all 1500ms ease;
  -o-transition: all 1500ms ease;
  -moz-transition: all 1500ms ease;
  transition: all 1500ms ease;
}

.welcome-three__progress .count-text {
  position: absolute;
  right: 0;
  bottom: 0;
  color: var(--thm-gray);
  font-size: 0.8rem;
  text-align: center;
  font-weight: 400;
  opacity: 0;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  transition: all 500ms ease;
}

.welcome-three__progress .bar-inner.counted .count-text {
  opacity: 1;
}

.welcome-three__progress .count-text:after {
  content: '';
  position: absolute;
  left: 1.45rem;
  top: 1.35rem;
  height: 0.7rem;
  width: 0.05rem;
  background-color: var(--thm-black);
  transform: rotate(20deg);
}

.welcome-three__architecure {
  margin-top: 3rem;
}

/*--------------------------------------------------------------
# Question Answers
--------------------------------------------------------------*/
.question-answers {
  position: relative;
  display: block;
  background-color: #f4f4f4;
}

.question-answers:before {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4.75rem;
  content: '';
  background-color: #ffffff;
}

.question-answers__left {
  position: relative;
  display: block;
  padding-top: 6rem;
}

.question-answers__left .section-title {
  position: relative;
  display: block;
  margin-bottom: 1.9rem;
  z-index: 2;
}

.question-answers__text {
  margin: 0;
}

.question-answers__faq {
  position: relative;
  display: block;
  background-color: rgb(255, 255, 255);
  box-shadow: 0rem 0rem 1.5rem 0rem rgb(0 0 0 / 7%);
  border-bottom: 0;
  padding: 0 1.5rem 0;
  margin-top: 2.45rem;
}

.faq-one-accrodion .accrodion {
  position: relative;
  display: block;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.faq-one-accrodion .accrodion-title {
  position: relative;
  display: block;
  cursor: pointer;
  padding: 1.1rem 0rem 1.1rem;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  border-bottom: 0rem solid #e5e5e5;
}

.faq-one-accrodion .accrodion-title h4 {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.4rem;
  color: var(--thm-black);
  text-transform: uppercase;
  position: relative;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.faq-one-accrodion .accrodion + .accrodion {
  border-top: 0.05rem solid #e5e5e5;
}

/* .faq-one-accrodion .accrodion.active .accrodion-title {
    border-bottom: .05rem solid #e5e5e5;
} */

.faq-one-accrodion .accrodion.active .accrodion-title h4 {
  color: var(--thm-black);
}

.faq-one-accrodion .accrodion-title h4::before {
  content: '\f067';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  font-size: 0.6rem;
  color: var(--thm-black);
  position: absolute;
  top: 50%;
  right: 0;
  height: 1.75rem;
  width: 1.75rem;
  border-radius: 50%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.faq-one-accrodion .accrodion.active .accrodion-title h4::before {
  content: '\f068';
  color: var(--thm-black);
  height: 1.75rem;
  width: 1.75rem;
  border-radius: 50%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.faq-one-accrodion .accrodion-content {
  position: relative;
  padding: 1rem 0rem 0.9rem;
  border-bottom: 0rem solid #e5e5e5;
  border-top: 0.05rem solid #e5e5e5;
}

.faq-one-accrodion .accrodion.active .accrodion-content {
}

.faq-one-accrodion .accrodion.last-chiled.active .accrodion-content {
  border-bottom: 0rem solid transparent;
}

.faq-one-accrodion .accrodion-content p {
  margin: 0;
  font-size: 0.8rem;
}

.question-answers__btn-and-text {
  display: flex;
  align-items: center;
  margin-top: 7.25rem;
}

.question-answers__btn-box {
}

.question-answers__btn {
  padding: 0.2rem 1.5rem;
  font-size: 0.6rem;
}

.question-answers__btn:before {
  background: var(--thm-black);
}

.question-answers__text-box {
  margin-left: 1.5rem;
}

.question-answers__text-box-2 {
  margin: 0;
}

.question-answers__right {
  position: relative;
  display: block;
  margin-left: 3.5rem;
}

.question-answers__right-img {
  position: relative;
  display: block;
  margin-right: -18.1rem;
}

.question-answers__right-img > img {
  width: 100%;
}

/*--------------------------------------------------------------
# How We Works
--------------------------------------------------------------*/
.how-we-works {
  position: relative;
  display: block;
  padding: 6rem 0 3.95rem;
}

.how-we-works .section-title {
  margin-bottom: 2.35rem;
}

.how-we-works__single-list {
  position: relative;
  display: flex;
  align-items: center;
  counter-reset: count;
}

.how-we-works__single {
  position: relative;
  display: block;
  text-align: center;
  margin-bottom: 1.5rem;
  max-width: 19.5rem;
  width: 100%;
  padding: 0 0.75rem;
}

.how-we-works__icon-box {
  position: relative;
  display: block;
}

.how-we-works__icon {
  position: relative;
  height: 9.25rem;
  width: 9.25rem;
  background-color: #f4f4f4;
  border-radius: 50%;
  font-size: 3.25rem;
  color: var(--thm-black);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  transition: all 500ms ease;
}

.how-we-works__single:hover .how-we-works__icon {
  background-color: var(--thm-primary);
  color: #ffffff;
}

.how-we-works__icon span {
}

.how-we-works__count {
  height: 3.35rem;
  width: 3.35rem;
  background-color: var(--thm-black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  right: -0.5rem;
  margin: 0 auto;
}

.how-we-works__count:before {
  position: absolute;
  height: 3.35rem;
  width: 3.35rem;
  text-align: center;
  color: #ffffff;
  font-size: 0.8rem;
  line-height: 3.35rem;
  border-radius: 50%;
  font-weight: 500;
  counter-increment: count;
  content: '0' counter(count);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.how-we-works__title {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.7rem;
  color: var(--thm-black);
  text-transform: uppercase;
  margin-top: 2.35rem;
  margin-bottom: 1.4rem;
}

.how-we-works__text {
  margin: 0;
}

/*--------------------------------------------------------------
# Testimonials Two
--------------------------------------------------------------*/
.testimonials-two {
  position: relative;
  display: block;
  padding: 6rem 0 20.5rem;
}

.testimonials-two-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-repeat: no-repeat;
}

.testimonials-two-bg:before {
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  height: 100%;
  width: 100%;
  background-color: rgba(var(--thm-black-rgb), 0.9);
}

.testimonials-two-bg.jarallax div div {
  filter: grayscale(100%);
}

.testimonials-two__carousel {
}

.testimonials-two__inner-single {
  position: relative;
  display: flex;
  border-bottom: 0.05rem solid rgba(255, 255, 255, 0.1);
  padding-bottom: 5.55rem;
}

.testimonials-two__client-info-box {
  position: relative;
}

.testimonials-two__client-info {
  width: 4rem;
}

.testimonials-two__client-img {
  position: relative;
}

.testimonials-two__client-info,
.testimonials-two__client-name-box {
  display: table-cell;
  vertical-align: middle;
}

.testimonials-two__client-img > img {
  width: 4rem;
  border-radius: 50%;
}

.testimonials-two__quote-icon {
  position: absolute;
  top: 50%;
  right: -0.75rem;
  height: 1.5rem;
  width: 1.5rem;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
}

.testimonials-two__quote-icon > img {
  width: 0.5rem !important;
}

.testimonials-two__client-name-box {
  padding-left: 1.75rem;
}

.testimonials-two__client-name {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.5rem;
  color: #ffffff;
}

.testimonials-two__client-title {
  font-size: 0.6rem;
  color: #9d9d9d;
  font-weight: 500;
  margin: 0;
  line-height: 1.1rem;
  text-transform: uppercase;
}

.testimonials-two__text-box {
  max-width: 42.5rem;
  position: relative;
  width: 100%;
  margin-left: 3rem;
  margin-top: -0.6rem;
}

.testimonials-two__text {
  font-size: 1.2rem;
  margin: 0;
  line-height: 2.2rem;
  color: #ffffff;
}

/*--------------------------------------------------------------
# Team One
--------------------------------------------------------------*/
.team-one {
  position: relative;
  display: block;
  overflow: hidden;
  margin-top: -14.5rem;
  padding-bottom: 3.95rem;
}

.team-one .section-title {
  margin-bottom: 2.35rem;
  position: relative;
  display: block;
  z-index: 5;
}

.team-one .section-title__tagline {
  color: #9d9d9d;
}

.team-one .section-title__tagline:before {
  background-color: #474747;
}

.team-one .section-title__title {
  color: #ffffff;
}

.team-one__single {
  position: relative;
  display: block;
  text-align: center;
  margin-bottom: 1.5rem;
}

.team-one__img-box {
  position: relative;
  display: block;
}

.team-one__img {
  position: relative;
  display: block;
  overflow: hidden;
  background-color: #ffffff;
  padding: 1rem;
}

/*.team-one__img:before {
  position: absolute;
  top: 1rem;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  content: '';
  background-color: rgba(var(--thm-black-rgb), 0);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  transform: scaleY(0);
  z-index: 1;
}

.team-one__single:hover .team-one__img:before {
  transform: scaleY(1);
}

.team-one__img:after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 0%;
  opacity: 0;
  background-color: transparent;
  border: 0.05rem solid var(--thm-black);
  content: '';
  -webkit-transition: all 600ms ease;
  -ms-transition: all 600ms ease;
  -o-transition: all 600ms ease;
  -moz-transition: all 600ms ease;
  transition: all 600ms ease;
}

.team-one__single:hover .team-one__img:after {
  height: 100%;
  opacity: 1;
}*/

.team-one__img > img {
  width: 100%;
  transition: transform 500ms ease;
  transform: scale(1);
}

.team-one__single:hover .team-one__img > img {
}

.team-one__social {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  transform: scaleX(0);
  z-index: 2;
}

.team-one__single:hover .team-one__social {
  transform: scaleX(1);
}

.team-one__social a {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  font-size: 0.9rem;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.team-one__social a + a {
  margin-left: 1.5rem;
}

.team-one__social a:hover {
  color: var(--thm-primary);
}

.team-one__content {
  position: relative;
  display: block;
  margin-top: 1.25rem;
}

.team-one__name {
  font-size: 1.1rem;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1.4rem;
}

.team-one__title {
  font-size: 0.7rem;
  margin: 0;
  text-transform: uppercase;
  line-height: 1.5rem;
}

/*--------------------------------------------------------------
# Insuring
--------------------------------------------------------------*/
.insuring {
  position: relative;
  display: block;
  padding: 0 0 6rem;
}

.insuring__left {
  position: relative;
  display: block;
  margin-right: -5rem;
}

.insuring__img {
  position: relative;
  display: block;
}

.insuring__img > img {
  width: 100%;
}

.insuring__right {
  position: relative;
  display: block;
  margin-top: 3rem;
  margin-left: -5rem;
}

.insuring__your-future-box {
  position: relative;
  display: block;
  background-color: rgb(255, 255, 255);
  box-shadow: 0rem 0.5rem 3rem 0rem rgb(0 0 0 / 7%);
  padding: 5rem 5.25rem 3.8rem;
}

.insuring__right .section-title {
  position: relative;
  display: block;
  margin-bottom: 1.9rem;
  z-index: 5;
}

.insuring__text {
  margin: 0;
}

.insuring__counter-list-box {
  position: relative;
  display: block;
  margin-top: 1.9rem;
}

.insuring__counter-list {
}

.insuring__counter-list li {
  position: relative;
  display: inline-block;
}

.insuring__counter-list li:before {
  position: absolute;
  top: 0.55rem;
  bottom: 1.2rem;
  left: -3.7rem;
  width: 0.05rem;
  content: '';
  background-color: #e5e5e5;
}

.insuring__counter-list li:first-child:before {
  display: none;
}

.insuring__counter-list li + li {
  margin-left: 7.25rem;
}

.insuring__counter-list li h2 {
  font-size: 2rem;
  font-weight: 400;
  line-height: 2.5rem !important;
}

.insuring__counter-list-text {
  font-size: 0.7rem;
  font-weight: 500;
  line-height: 1.2rem;
  text-transform: uppercase;
}

/*--------------------------------------------------------------
# Brand Three
--------------------------------------------------------------*/
.brand-three {
  position: relative;
  display: block;
  background-color: #f4f4f4;
  padding: 5.9rem 0 5.95rem;
}

.brand-three .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.brand-three .swiper-slide img {
  -webkit-transition: 500ms;
  transition: 500ms;
  opacity: 0.3;
  max-width: 100%;
}

.brand-three .swiper-slide img:hover {
  opacity: 0.7;
}

/*--------------------------------------------------------------
# Page Header
--------------------------------------------------------------*/
.page-header {
  position: relative;
  display: block;
  padding: 10rem 0 10rem;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.page-header:before {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  content: '';
  background: rgba(var(--thm-black-rgb), 0.5);
  z-index: 1;
}

.page-header-border {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 14.29%;
  border-right: 0.05rem solid rgba(255, 255, 255, 0.1);
  z-index: 1;
}

.page-header-border-two {
  left: 14.29%;
}

.page-header-border-three {
  left: 28.59%;
}

.page-header-border-four {
  left: 42.88%;
}

.page-header-border-five {
  left: 57.17%;
}

.page-header-border-six {
  left: 71.46%;
}

.page-header__inner {
  position: relative;
  display: block;
  text-align: center;
  z-index: 3;
}

.page-header__inner h2 {
  font-size: 3rem;
  color: #ffffff;
  line-height: 3.5rem;
  font-weight: 400;
  text-transform: uppercase;
}

.thm-breadcrumb {
  padding-top: 0.15rem;
}

.thm-breadcrumb li {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.thm-breadcrumb li + li {
  margin-left: 0.4rem;
}

.thm-breadcrumb li a {
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.thm-breadcrumb li a:hover {
  color: var(--thm-primary);
}

.thm-breadcrumb li span {
}
.page-header__inner .thm-breadcrumb{
  display: none!important;
}
/*--------------------------------------------------------------
# News Details
--------------------------------------------------------------*/
.news-details {
  position: relative;
  display: block;
  padding: 3rem 0;
}

.news-details__left {
  position: relative;
  display: block;
  background: #fff;
  padding: 4rem;
}

.news-details__img {
  position: relative;
  display: block;
}

.news-details__img > img {
  width: 100%;
}

.news-details__date-box {
  position: absolute;
  bottom: -0.5rem;
  right: 1.5rem;
  background: var(--thm-black);
  padding: 0.15rem 1.5rem;
  z-index: 1;
}

.news-details__date-box p {
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #ffffff;
  margin: 0;
  letter-spacing: 0.1em;
}

.news-details__content {
  position: relative;
  display: block;
  margin-top: 1.45rem;
}

.news-details__meta {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  margin: 0;
}

.news-details__meta li {
}

.news-details__meta li + li {
  margin-left: 0.75rem;
}

.news-details__meta li a {
  font-size: 0.8rem;
  color: var(--thm-gray);
  transition: all 500ms ease;
}

.news-details__meta li a i {
  color: var(--thm-primary);
  font-size: 0.7rem;
}

.news-details__title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 2rem;
  text-transform: uppercase;
  margin-bottom: 2rem;
  border-left: 0.3rem solid var(--thm-base);
  text-align: center;
}

.news-details__text-one {
  font-size: 0.8rem;
  font-weight: 500;
  margin: 0;
  padding-bottom: 1.65rem;
}

.news-details__text-two {
  font-size: 0.8rem;
  font-weight: 500;
  margin: 0;
  padding-bottom: 1.65rem;
}

.news-details__text-three {
  font-size: 0.8rem;
  font-weight: 500;
  margin: 0;
}

.news-details__bottom {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  justify-content: space-between;
  flex-wrap: wrap;
  border-top: 0.05rem solid #e5e5e5;
  padding: 1.5rem 0 1.5rem;
  margin-top: 2.75rem;
}

.news-details__bottom p {
  margin: 0;
}

.news-details__tags {
}

.news-details__tags span {
  color: var(--thm-black);
  font-weight: 700;
  text-transform: uppercase;
}

.news-details__tags a {
  color: var(--thm-gray);
  font-size: 0.8rem;
  font-weight: 500;
}

.news-details__social-list {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
}

.news-details__social-list a {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  text-align: center;
  color: var(--thm-black);
  font-size: 0.9rem;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.news-details__social-list a + a {
  margin-left: 1.5rem;
}

.news-details__social-list a:hover {
  color: var(--thm-primary);
}

/* author */

.author-one {
  background-color: #f4f4f4;
  padding: 3rem 3rem 3rem;
  display: -webkit-box;
  display: flex;
  margin-bottom: 2.7rem;
}

.author-one__image {
}

.author-one__image img {
}

.author-one__content {
  margin-left: 2rem;
  margin-top: -0.4rem;
}

.author-one__content h3 {
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  padding-bottom: 0.7rem;
}

.author-one__content p {
  font-size: 0.8rem;
  font-weight: 500;
  margin: 0;
  margin-top: 0.65rem;
}

/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/

.comment-one__title,
.comment-form__title {
  margin: 0;
  color: var(--thm-black);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 2.55rem;
  text-transform: uppercase;
}

.comment-one__single {
  display: -webkit-box;
  display: flex;
  border-bottom: 0.05rem solid #e5e5e5;
  padding-bottom: 3rem;
  margin-bottom: 3rem;
}

.comment-one__content {
  position: relative;
  margin-left: 2.25rem;
}

.comment-one__content h3 {
  margin: 0;
  font-size: 1rem;
  color: var(--thm-black);
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.comment-one__content p {
  font-weight: 500;
  font-size: 0.8rem;
  margin: 0;
}

.comment-one__btn {
  font-size: 0.6rem;
  color: #ffffff;
  line-height: 2rem;
  padding: 0.1rem 1rem;
  font-weight: 700;
  position: absolute;
  top: 0;
  right: 0;
}

.comment-one__btn:before {
  background-color: var(--thm-black);
}

.comment-one__btn:hover {
  background: var(--thm-primary);
}

.comment-one__image img {
  border-radius: 50%;
}

.comment-form .comment-form__title {
  margin-top: -0.3rem;
}

.comment-one__form .row {
  --bs-gutter-x: 1rem;
}

.comment-form__input-box input[type='text'],
.comment-form__input-box input[type='email'] {
  height: 3.35rem;
  width: 100%;
  border: none;
  background: #f4f4f4;
  padding: 0 1.5rem;
  margin-bottom: 1rem;
  border-radius: 0rem;
  outline: none;
  font-size: 0.7rem;
  color: var(--thm-gray);
  font-weight: 500;
}

.comment-form__input-box textarea {
  font-size: 0.7rem;
  color: var(--thm-gray);
  height: 9.5rem;
  width: 100%;
  background: #f4f4f4;
  padding: 1rem 2rem 1.5rem;
  border: none;
  border-radius: 0rem;
  outline: none;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.comment-form__btn:before {
  background-color: var(--thm-black);
}

.comment-form__btn:hover {
  background: var(--thm-primary);
}

/*--------------------------------------------------------------
# Sidebar
--------------------------------------------------------------*/

@media (max-width: 49.55rem) {
  .sidebar {
    margin-top: 2.5rem;
  }
}

.sidebar__single + .sidebar__single {
  margin-top: 1.5rem;
}

.sidebar__title {
  margin: 0;
  font-size: 1rem;
  margin-bottom: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
}

.sidebar__title.clr-white {
  color: #ffffff;
  padding-bottom: 0.15rem;
}

.sidebar__search {
  background-color: var(--thm-black);
  padding: 2.25rem 2.5rem 2.5rem;
}

.sidebar__search-form {
  position: relative;
}

.sidebar__search-form input[type='search'] {
  display: block;
  border: none;
  outline: none;
  background-color: #ffffff;
  color: var(--thm-gray);
  font-size: 0.8rem;
  font-weight: 400;
  padding-left: 1.5rem;
  height: 3.9rem;
  border-radius: 0rem;
  width: 100%;
  padding-right: 3.5rem;
}

.sidebar__search-form ::-webkit-input-placeholder {
  color: var(--thm-gray);
  opacity: 1;
}

.sidebar__search-form ::-moz-placeholder {
  color: var(--thm-gray);
  opacity: 1;
}

.sidebar__search-form :-ms-input-placeholder {
  color: var(--thm-gray);
  opacity: 1;
}

.sidebar__search-form ::-ms-input-placeholder {
  color: var(--thm-gray);
  opacity: 1;
}

.sidebar__search-form ::placeholder {
  color: var(--thm-gray);
  opacity: 1;
}

.sidebar__search-form :-ms-input-placeholder {
  color: var(--thm-gray);
}

.sidebar__search-form ::-ms-input-placeholder {
  color: var(--thm-gray);
}

.sidebar__search-form button[type='submit'] {
  background-color: transparent;
  color: var(--thm-primary);
  font-size: 1rem;
  position: absolute;
  top: 0;
  right: 0rem;
  bottom: 0;
  width: 3.5rem;
  outline: none;
  border: none;
}

.sidebar__post {
  position: relative;
  display: block;
  padding: 2.25rem 1.5rem 1rem;
  background-color: #f4f4f4;
}

.sidebar__post .sidebar__title {
  padding-left: 1rem;
  margin-bottom: 0.25rem;
}

.sidebar__post-list {
  margin: 0;
}

.sidebar__post-list li {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.7rem;
  padding-bottom: 0.75rem;
  background-color: transparent;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.sidebar__post-list li:hover {
  background-color: #ffffff;
  box-shadow: 0rem 0.5rem 3rem 0rem rgba(0, 0, 0, 0.05);
}

.sidebar__post-list li + li {
  margin-top: 0.55rem;
}

.sidebar__post-image {
  margin-right: 1rem;
}

.sidebar__post-image > img {
  width: 3.5rem;
  border-radius: 0rem;
}

.sidebar__post-content h3 {
  color: var(--thm-black);
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.4rem;
  font-weight: 400;
}

.sidebar__post-content .sidebar__post-content_meta {
  color: var(--thm-gray);
  font-size: 0.7rem;
  display: block;
  font-weight: 400;
}

.sidebar__post-content .sidebar__post-content_meta i {
  margin-right: 0.25rem;
  color: var(--thm-primary);
}

.sidebar__post-content h3 {
  text-transform: unset;
}

.sidebar__post-content h3 a {
  color: var(--thm-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  text-transform: uppercase;
  font-weight: 500;
}

.sidebar__post-content h3 a:hover {
  color: var(--thm-primary);
}

.sidebar__category {
  position: relative;
  display: block;
  background: #f4f4f4;
  padding: 2.3rem 1.5rem 1.7rem;
}

.sidebar__category .sidebar__title {
  padding-left: 1rem;
  margin-bottom: 0.55rem;
}

.sidebar__category-list {
  margin: 0;
}

.sidebar__category-list li + li {
  margin-top: 0.15rem;
}

.sidebar__category-list li a {
  color: var(--thm-gray);
  font-size: 0.8rem;
  position: relative;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  display: block;
  background: none;
  padding: 0.25rem 1rem;
  border-radius: 0rem;
}

.sidebar__category-list li a:hover {
  background-color: rgb(255, 255, 255);
  box-shadow: 0rem 0.5rem 3rem 0rem rgb(0, 0, 0, 0.05);
  color: var(--thm-black);
}

.sidebar__category-list li a span {
  position: absolute;
  top: 50%;
  right: 0.75rem;
  transform: translateY(-50%);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  color: var(--thm-black);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  opacity: 0;
}

.sidebar__category-list li a:hover span {
  opacity: 1;
}

/*--------------------------------------------------------------
# Services Details
--------------------------------------------------------------*/
.services-details {
  position: relative;
  display: block;
  padding: 6rem 0 6rem;
}

.services-details__sidebar {
  position: relative;
  display: block;
}

.services-details__services-list-box {
  position: relative;
  display: block;
}

.services-details__services-list {
  position: relative;
  display: block;
}

.services-details__services-list li {
  position: relative;
  display: block;
}

.services-details__services-list li + li {
  margin-top: 0.5rem;
}

.services-details__services-list li a {
  position: relative;
  font-size: 0.8rem;
  color: var(--thm-black);
  font-weight: 700;
  display: block;
  background-color: #f4f4f4;
  text-transform: uppercase;
  padding: 1.025rem 2rem;
  transition: all 500ms ease;
}

.services-details__services-list li:hover a {
  background-color: var(--thm-black);
  color: #ffffff;
}

.services-details__services-list li span {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 2rem;
  display: flex;
  align-items: center;
  transition: all 500ms ease;
  font-size: 1rem;
}

.services-details__services-list li:hover span {
  color: var(--thm-primary);
}

.services-details__help-box {
  position: relative;
  display: block;
  text-align: center;
  padding: 2.65rem 3rem 3.25rem;
  margin-top: 1.5rem;
}

.services-details__help-box:before {
  position: absolute;
  bottom: -0.25rem;
  left: 0;
  right: 0;
  content: '';
  height: 0.05rem;
  background-color: var(--thm-black);
}

.services-details__help-box-bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  filter: grayscale(100%);
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
}

.services-details__help-box-bg-overly {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(var(--thm-black-rgb), 0.85);
  z-index: -1;
}

.services-details__help-box-title {
  font-size: 1.1rem;
  color: #ffffff;
  text-transform: uppercase;
  line-height: 1.6rem;
  font-weight: 700;
  margin-bottom: 1.65rem;
}

.services-details__help-box-text {
  font-size: 0.8rem;
  font-weight: 500;
  margin: 0;
  color: #9d9d9d;
  line-height: 1.5rem;
  margin-bottom: 1.1rem;
}

.services-details__phone {
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 700;
  display: block;
  transition: all 500ms ease;
}

.services-details__phone:hover {
  color: var(--thm-primary);
}

.services-details__help-box-btn {
  background-color: #ffffff;
  color: var(--thm-black);
  padding: 0.25rem 1.5rem;
  font-size: 0.6rem;
  margin-top: 1.05rem;
}

.services-details__right {
  position: relative;
  display: block;
}

.services-details__img {
  position: relative;
  display: block;
}

.services-details__img > img {
  width: 100%;
}

.services-details__content {
  position: relative;
  display: block;
  margin-top: 1.5rem;
  margin-bottom: 2.45rem;
}

.services-details__title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 2.5rem;
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.services-details__text-1 {
  margin: 0;
  padding-bottom: 1.8rem;
}

.services-details__text-2 {
  margin: 0;
}

.services-details__designing-box {
  display: flex;
}

.services-details__designing-list-box {
  position: relative;
  margin-top: -0.4rem;
}

.services-details__designing-list-box-title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 2rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.services-details__designing-list {
}

.services-details__designing-list li {
  position: relative;
  display: flex;
  align-items: center;
}

.services-details__designing-list li + li {
  margin-top: 0.15rem;
}

.services-details__designing-list li .icon {
  position: relative;
  transform: rotate(70deg);
  font-size: 0.5rem;
  color: var(--thm-primary);
}

.services-details__designing-list li .icon i {
  color: var(--thm-primary);
}

.services-details__designing-list li .text {
  margin-left: 1rem;
}

.services-details__designing-list li .text p {
  margin: 0;
  font-size: 0.8rem;
  color: var(--thm-black);
  font-weight: 500;
}

.services-details__designing-img {
  margin-left: 3rem;
}

.services-details__designing-img > img {
  width: 100%;
}

.services-details__faq {
  position: relative;
  display: block;
  padding: 0 1.5rem;
  margin-top: 3rem;
  background-color: rgb(255, 255, 255);
  box-shadow: 0rem 0rem 1.5rem 0rem rgb(0, 0, 0, 0.07);
}

/*insuring-page*/
.insuring-page {
  padding-top: 6rem;
}

/*three-boxes-two-page*/
.three-boxes-two-page {
  padding-top: 6rem;
  padding-bottom: 4.5rem;
}

/*--------------------------------------------------------------
# About Company
--------------------------------------------------------------*/
.about-company {
  background: url(../images/about/7.png) center center no-repeat;
  position: relative;
  display: block;
  padding: 3.5rem 0 3.5rem;
}

.about-company__img {
  position: relative;
  display: block;
}

.about-company__img > img {
  width: 100%;
}

.about-company__trusted-by {
  position: absolute;
  top: 3rem;
  left: -3.5rem;
  height: 8.5rem;
  width: 8.5rem;
  background-color: rgb(255, 255, 255);
  box-shadow: 0rem 0.25rem 1.5rem 0rem rgb(0 0 0 / 10%);
  text-align: center;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.about-company__trusted-by:before {
  position: absolute;
  bottom: -0.25rem;
  right: 2.35rem;
  height: 0.5rem;
  width: 1.05rem;
  content: '';
  background-image: url(../images/resources/about-company__trusted-by-shape.png);
  background-repeat: no-repeat;
  transform: rotate(-17deg);
}

.about-company__trusted-by p {
  font-size: 0.7rem;
  font-weight: 500;
  margin: 0;
  text-transform: uppercase;
  line-height: 1.25rem;
}

.about-company__trusted-by span {
  font-size: 2rem;
  color: var(--thm-black);
  font-weight: 400;
}

.about-company__right {
  position: relative;
  display: block;
  margin-left: 1rem;
}

.about-company__right .about-company__title .about-company__title-title {
  font-size: 1.6rem;
  color: calc(--thm-black);
}

.about-company__right .about-company__title .about-company__title-title::after {
  content: '';
  display: block;
  width: 2rem;
  height: 0.1rem;
  background: var(--thm-base);
  margin: 1rem 0;
}

.page-class {
  background: #f0f0f0;
  width: 100%;
  padding: 0.5rem 0;
  overflow: hidden;
}
.about-company__points {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
}

.about-company__points li {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--thm-black);
  background-color: #f0f0f0;
  padding: 0.65rem 2rem;
}

.about-company__points > span {
  color: #ccc;
  display: block;
  margin: 0 2rem;
  font-size: 0.8rem;
}
.about-company__points > span:last-child {
  display: none;
}

.about-company__points li a {
  display: flex;
  align-items: center;
}

.about-company__points li span {
  color: var(--thm-primary);
  margin-right: 0.3rem;
}
.about-company__points li.active,
.about-company__points li:hover {
  background: #c02a33;
}
.about-company__points li.active a span img,
.about-company__points li:hover a span img {
  filter: grayscale(1000%) brightness(1000%);
}
.about-company__points li.active a,
.about-company__points li:hover a {
  color: #fff !important;
}

.about-company__progress {
  position: relative;
  display: block;
  margin-top: 2.2rem;
}

.about-company__progress-title {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.3rem;
  margin-bottom: 0.35rem;
}

.about-company__progress .bar {
  position: relative;
  width: 100%;
  height: 0.1rem;
  background: #f4f4f4;
  border-radius: 0rem;
  margin-bottom: 0.3rem;
}

.about-company__progress .bar-inner {
  position: relative;
  display: block;
  width: 0rem;
  height: 0.1rem;
  border-radius: 0;
  background: var(--thm-black);
  -webkit-transition: all 1500ms ease;
  -ms-transition: all 1500ms ease;
  -o-transition: all 1500ms ease;
  -moz-transition: all 1500ms ease;
  transition: all 1500ms ease;
}

.about-company__progress .count-text {
  position: absolute;
  right: 0;
  bottom: 0;
  color: var(--thm-gray);
  font-size: 0.8rem;
  text-align: center;
  font-weight: 400;
  opacity: 0;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  transition: all 500ms ease;
}

.about-company__progress .bar-inner.counted .count-text {
  opacity: 1;
}

.about-company__progress .count-text:after {
  content: '';
  position: absolute;
  left: 1.45rem;
  top: 1.35rem;
  height: 0.7rem;
  width: 0.05rem;
  background-color: var(--thm-black);
  transform: rotate(20deg);
}

.about-company__icon-and-text {
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 1.7rem;
  padding-bottom: 1.75rem;
}

.about-company__icon {
}

.about-company__icon span {
  font-size: 3rem;
  color: var(--thm-primary);
  line-height: 3rem;
}

.about-company__text-box {
  margin-left: 1.5rem;
}

.about-company__text {
  margin: 0;
}

.about-company__text-2 {
  margin: 0;
  font-size: 0.9rem;
}

.about-company__btn {
  font-size: 0.6rem;
  padding: 0.25rem 1.5rem;
  margin-top: 1.95rem;
}

.about-company__btn:before {
  background-color: var(--thm-black);
}

/*about-page-team*/
.about-page-team {
  position: relative;
  display: block;
  padding-top: 6rem;
  margin-top: 0;
}

.about-page-team:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  content: '';
  height: 20.5rem;
  background-color: #f4f4f4;
  z-index: -1;
}

.about-page-team .section-title {
}

.about-page-team .section-title__tagline {
  color: var(--thm-gray);
}

.about-page-team .section-title__tagline:before {
  background-color: #e5e5e5;
}

.about-page-team .section-title__title {
  color: var(--thm-black);
}

/*two-boxes-about*/
.two-boxes-about {
  padding-top: 0;
  padding-bottom: 0;
}

/*--------------------------------------------------------------
# culture
--------------------------------------------------------------*/
.about-culture {
  background: url(../images/about/9.png) right bottom no-repeat;
  background-size: cover;
  width: 100%;
  overflow: hidden;
}

.about-culture__right {
  padding: 4rem 0 4rem 5rem;
  height: 100%;
}
.about-culture__right .title {
  position: relative;
  text-align: left;
  height: 6rem;
}
.about-culture__right .title h4 {
  position: relative;
  z-index: 100;
  font-size: 3.05rem;
  color: #333;
  line-height: 5.2rem;
  padding-left: 2.5rem;
}
.about-culture__right .title p {
  display: block;
  font-size: 5.5rem;
  line-height: 5.5rem;
  color: rgba(51, 51, 51, 0.1);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  text-align: left;
  text-transform: uppercase;
  z-index: 1;
}
.about-culture__right .text dl {
  display: flex;
  align-items: center;
}
.about-culture__right .text dl:not(:last-child) {
  margin-bottom: 2rem;
}
.about-culture__right .text dl dt {
  margin-right: 3rem;
  flex: 0 0 4rem;
  text-align: center;
}
.about-culture__right .text dl dt img {
  height: 2.25rem;
}
.about-culture__right .text dl dd {
  margin-bottom: 0;
}
.about-culture__right .text dl dd h4 {
  font-size: 1.1rem;
  color: var(--thm-black);
}
.about-culture__right .text dl dd p {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# about adv
--------------------------------------------------------------*/
.about-adv {
  width: 100%;
  padding: 3rem /* 100/20 */ 0;
  overflow: hidden;
}
.about-adv-title {
  position: relative;
  text-align: center;
  height: 6rem;
  margin-bottom: 2rem;
}
.about-adv-title h4 {
  position: relative;
  z-index: 100;
  font-size: 3.05rem;
  color: #333;
  line-height: 5.2rem;
}
.about-adv-title p {
  display: block;
  font-size: 5.5rem;
  line-height: 5.5rem;
  color: rgba(51, 51, 51, 0.1);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  text-align: center;
  text-transform: uppercase;
  z-index: 1;
}
.about-adv-single {
  border: 0.05rem #b7b6b6 solid;
  height: 100%;
  padding: 2rem 0 1rem;
}
.about-adv__num {
  font-size: 3.9rem /* 78/20 */;
  line-height: 5rem;
  font-weight: bold;
  text-align: center;
  font-style: italic;
}
.about-adv__text h4 {
  font-size: 1.3rem /* 26/20 */;
  line-height: 1.5rem;
  text-align: center;
  margin-top: 1rem;
}
.about-adv__text h4::after {
  content: '';
  display: block;
  width: 1.5rem /* 30/20 */;
  background: var(--thm-base);
  height: 0.05rem;
  margin: 1.5rem auto;
}
.about-adv__text p {
  font-size: 1rem /* 26/20 */;
  line-height: 1.5;
  text-align: center;
  padding: 0 1rem;
}
.about-adv-single:hover {
  border-color: var(--thm-base);
}
.about-adv-single:hover .about-adv__num {
  color: var(--thm-base);
}

/*--------------------------------------------------------------
# about dev
--------------------------------------------------------------*/
.about-dev {
  background: url(../images/about/14.png) center center no-repeat;
  width: 100%;
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
}
.about-dev-title h2 {
  font-size: 3.05rem /* 61/20 */;
  font-weight: 400;
}
.about-dev-title p {
  font-size: 2rem;
  color: #dcdcdd;
  text-transform: uppercase;
  margin: 01rem 0;
  font-weight: bold;
}
.about-dev-title span {
  width: 2rem;
  height: 0.2rem;
  background: var(--thm-base);
  display: block;
}
.about-dev__box {
  background: #fff;
  box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.05);
  margin: 2rem 2rem 0;
  padding: 2rem;
}
.about-dev__single {
  text-align: center;
}
.about-dev__single span {
  display: block;
  width: 100%;
  position: relative;
  height: 3rem;
  margin: 1rem 0;
}
.about-dev__single span i {
  display: block;
  width: 0.5rem;
  height: 0.5rem;
  background: var(--thm-base);
  border-radius: 50%;
  margin: 0 auto;
  position: relative;
  top: calc(50% - 0.25rem);
  z-index: 100;
}
.about-dev__single span::before {
  content: '';
  display: block;
  width: 100%;
  height: 0.05rem;
  background: #e5e5e5;
  position: absolute;
  top: 1.5rem;
  left: 0;
  right: 0;
}
.about-dev__single span::after {
  content: '';
  display: block;
  width: 0.05rem;
  height: 3rem;
  background: #e5e5e5;
  position: absolute;
  top: 0;
  left: calc(50% - 0.05rem);
}
.about-dev__single h2 {
  font-size: 1.2rem /* 24/20 */;
  color: #666;
}
.about-dev__content {
  border-right: 0.05rem #e5e5e5 solid;
  width: 99%;
  padding: 0 9%;
  margin: 0 auto;
}
.about-dev__text {
  font-size: 0.9rem /* 18/20 */;
  color: #333;
  line-height: 1.5;
  margin-bottom: 2rem;
}
.about-dev__carousel .owl-nav button.owl-prev,
.about-dev__carousel .owl-nav button.owl-next {
  width: 3rem /* 30/20 */;
  height: 3rem;
  background: var(--thm-base);
  color: #fff;
  position: absolute;
  top: calc(50% - 2rem);
}
.about-dev__carousel .owl-nav button.owl-prev {
  left: -4rem;
}
.about-dev__carousel .owl-nav button.owl-next {
  right: -4rem;
}

/*--------------------------------------------------------------
# about logo
--------------------------------------------------------------*/
.about-logo {
  width: 100%;
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
}
.about-logo-title {
  width: 100%;
  text-align: center;
}
.about-logo-title h2 {
  font-size: 3rem;
  font-weight: 500;
  margin-bottom: 1rem;
}
.about-logo-title p {
  font-size: 1.1rem /* 22/20 */;
  color: #999;
}
.about-logo__box {
  height: 100%;
  text-align: center;
  border: 0.05rem #e5e5e5 solid;
  padding: 2rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-logo__box:hover {
/*  border-color: var(--thm-base);*/
}
.about-logo__box img {
  transition: all 0.3s;
}
.about-logo__box:hover img {
  transform: scale(1.05);
}

/*--------------------------------------------------------------
# about car adv
--------------------------------------------------------------*/
.about-caradv {
  background: url(../images/about/17.png) top center no-repeat;
  width: 100%;
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}
.about-caradv-title {
  position: relative;
  text-align: center;
  height: 6rem;
  margin-bottom: 2rem;
}
.about-caradv-title h2 {
  position: relative;
  z-index: 100;
  font-size: 3.05rem;
  color: #333;
  line-height: 5.2rem;
}
.about-caradv-title p {
  display: block;
  font-size: 5.5rem;
  line-height: 5.5rem;
  color: rgba(51, 51, 51, 0.1);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  text-align: center;
  text-transform: uppercase;
  z-index: 1;
}
.about-caradv__single {
  display: flex;
}
.about-caradv__single dt {
  flex: 0 2rem;
  min-width: 2rem;
}
.about-caradv__single dt img {
  width: 1.3rem /* 26/20 */;
}
.about-caradv__single dd {
  font-size: 1.1rem /* 22/20 */;
}

/*--------------------------------------------------------------
# about prese
--------------------------------------------------------------*/
.about-prese {
  width: 100%;
  padding: 3.5rem 0;
  position: relative;
  overflow: hidden;
}
.about-prese-title {
  position: relative;
  text-align: center;
  height: 6rem;
  margin-bottom: 2rem;
}
.about-prese-title h2 {
  position: relative;
  z-index: 100;
  font-size: 3.05rem;
  color: #333;
  line-height: 5.2rem;
}
.about-prese-title p {
  display: block;
  font-size: 5.5rem;
  line-height: 5.5rem;
  color: rgba(51, 51, 51, 0.1);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  text-align: center;
  text-transform: uppercase;
  z-index: 1;
}
.about-prese__carousel .owl-nav button.owl-prev,
.about-prese__carousel .owl-nav button.owl-next {
  width: 2rem /* 30/20 */;
  height: 2rem;
  border-radius: 50%;
  color: #e5e5e5;
  border: 0.1rem #e5e5e5 solid;
  position: absolute;
  top: calc(50% - 2rem);
}
.about-prese__carousel .owl-nav button.owl-prev {
  left: -4rem;
}
.about-prese__carousel .owl-nav button.owl-next {
  right: -4rem;
}
.about-prese__carousel .owl-nav button.owl-prev:hover,
.about-prese__carousel .owl-nav button.owl-next:hover {
  color: var(--thm-base);
  border-color: var(--thm-base);
  background: none;
}

/*--------------------------------------------------------------
# about boss
--------------------------------------------------------------*/
.about-boss {
  background: url(../images/about/20.png) top center no-repeat;
  background-size: cover;
  width: 100%;
  padding: 3rem 0;
  overflow: hidden;
}
.about-boss__left h2 {
  font-size: 2.7rem /* 54/20 */;
  font-weight: 500;
}
.about-boss__left p {
  font-size: 0.9rem /* 18/20 */;
  font-weight: bold;
  text-transform: uppercase;
}
.about-boss__right > h2 {
  font-size: 1.5rem /* 30/20 */;
}
.about-boss__right > p {
  font-size: 0.8rem; /* 16/20 */
}
.about-boss__right > .about-boss__text {
  font-size: 1.1rem; /* 22/20 */
}
.about-boss__right > .about-boss__text p {
  display: flex;
}
.about-boss__right > .about-boss__text p::before {
  content: '';
  min-width: 0.5rem;
  width: 0.5rem;
  height: 0.5rem;
  display: block;
  border-radius: 50%;
  background: var(--thm-base);
  margin-top: 0.6rem;
  margin-right: 0.5rem;
}

/*--------------------------------------------------------------
# about develop
--------------------------------------------------------------*/
.about-develop {
  background: url(../images/about/lcbbg.png) top center no-repeat;
  background-size: cover;
  width: 100%;
  padding: 3rem 0;
  overflow: hidden;
}
.about-develop__icons {
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  background: rgba(160, 160, 160, 0.14);
  text-align: center;
  line-height: 2.8rem;
  color: #b8b8b8;
  font-size: 1.6rem;
  margin-left: 3.25rem;
  position: relative;
  z-index: 100;
}
.about-develop__icons i.fa {
  font-weight: 600;
  color: #b8b8b8;
}
.about-develop__right {
  position: relative;
}
.about-develop__right::before {
  content: '';
  display: block;
  width: 0.05rem;
  height: calc(100% - 5.6rem);
  background: #b8b8b8;
  position: absolute;
  top: 2.8rem;
  left: 4.6rem;
}
.about-develop__right dl {
  display: flex;
  margin-top: 2rem;
}
.about-develop__right dl dt {
  display: flex;
  align-items: center;
}
.about-develop__right dl dt h2 {
  font-size: 1.1rem;
  color: #333;
  flex: 0 5rem;
  width: 5rem;
}
.about-develop__right dl dt span {
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  background: rgba(184, 184, 184, 0.28);
  border-radius: 50%;
  position: relative;
  margin: 0 1rem;
}
.about-develop__right dl dt span::after {
  content: '';
  display: block;
  width: 0.85rem;
  height: 0.85rem;
  background: #b8b8b8;
  border-radius: 50%;
  position: absolute;
  top: 0.2rem;
  left: 0.2rem;
  /* margin: 0.125rem; */
}
.about-develop__right dl dd {
  background: #ebecec;
  font-size: 1.1rem;
  margin: 0;
  padding: 1rem;
  border-radius: 0.5rem;
}
.about-develop__right dl:hover dt h2 {
  color: var(--thm-base);
}
.about-develop__right dl:hover dt span {
  background: rgb(193, 22, 27, 0.4);
}
.about-develop__right dl:hover dt span::after {
  background: var(--thm-base);
}
#developimg {
  border: 3px solid #ccc;
  padding: 1rem;
}
.about-develop-title {
  margin-bottom: 3rem;
}
.about-develop-title h2 {
  font-size: 1.6rem;
}
.about-develop-title p {
  font-size: 1.1rem;
}

/*--------------------------------------------------------------
# about honor
--------------------------------------------------------------*/
.about-honor {
  width: 100%;
  padding: 3rem 0 0;
  position: relative;
  overflow: hidden;
}
.about-honor-title {
  position: relative;
  text-align: center;
  height: 6rem;
  margin-bottom: 2rem;
}
.about-honor-title h2 {
  position: relative;
  z-index: 100;
  font-size: 3.05rem;
  color: #333;
  line-height: 5.2rem;
}
.about-honor-title p {
  margin: 0;
  display: block;
  font-size: 5.5rem;
  line-height: 5.5rem;
  color: rgba(51, 51, 51, 0.1);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  text-align: center;
  text-transform: uppercase;
  z-index: 1;
}
/*--------------------------------------------------------------
# Productive
--------------------------------------------------------------*/
.productive {
  position: relative;
  display: block;
  padding: 6rem 0 6rem;
}

.productive__left {
  position: relative;
  display: block;
}

.productive__img {
  position: relative;
  display: block;
}

.productive__img > img {
  width: 100%;
}

.productive__right {
  position: relative;
  display: block;
  margin-left: 3.5rem;
}

.productive__right .section-title {
  margin-bottom: 2.35rem;
}

.productive__points {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 0;
  padding-bottom: 2.1rem;
}

.productive__points li {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--thm-black);
  background-color: #f4f4f4;
  padding: 0.65rem 2rem;
}

.productive__points li + li {
  margin-left: 1rem;
}

.productive__points li span {
  color: var(--thm-primary);
  margin-right: 0.3rem;
}

.productive__text {
  margin: 0;
}

/*--------------------------------------------------------------
# Benefits
--------------------------------------------------------------*/
.benefits {
  position: relative;
  display: block;
  padding: 0 0 6rem;
}

.benefits__left {
  position: relative;
  display: block;
  margin-right: 4.5rem;
}

.benefits__left .section-title {
  margin-bottom: 1.95rem;
}

.benefits__checks-box {
}

.benefits__checks-list {
}

.benefits__checks-list li {
  position: relative;
  display: block;
  padding-left: 4.5rem;
}

.benefits__checks-list li .icon {
  height: 3rem;
  width: 3rem;
  background-color: var(--thm-black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  position: absolute;
  top: 0.4rem;
  left: 0;
}

.benefits__checks-list li + li {
  margin-top: 1.9rem;
}

.benefits__checks-list li span {
}

.benefits__checks-list li .content {
}

.benefits__checks-list li .content h3 {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.5rem;
  margin-bottom: 1.15rem;
}

.benefits__checks-list li .content p {
  margin: 0;
}

.benefits__right {
  position: relative;
  display: block;
}

.benefits__img {
  position: relative;
  display: block;
}

.benefits__img > img {
  width: 100%;
}

/*Our Mission Page Testimonial*/

.our-mission-page-testimonial {
  padding-bottom: 0;
}

.our-mission-page-testimonial .testimonials-two__inner-single {
  border-bottom: 0;
}

/*Team Page*/
.team-page {
  margin-top: 0;
  padding-top: 2rem;
  padding-bottom: 4.5rem;
}

.team-page .team-one__single {
  margin-bottom: 0.95rem;
}

.team-page .team-one__img {
  background-color: rgb(255, 255, 255);
  box-shadow: 0rem 0rem 1.5rem 0rem rgba(0, 0, 0, 0.05);
/*  border: 0.05rem #b5b5b5 solid;*/
  height: 16.5rem;
  overflow: hidden;
}
.team-page .team-one__img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.team-one__single:hover .team-one__img {
  border: 0;
}
/*Portfolio Page*/
.portfolio-page {
  padding-bottom: 4.5rem;
}

.portfolio-page .row {
  --bs-gutter-x: 1.5rem;
}

.portfolio-page .project-one__single {
  margin-bottom: 1.5rem;
}

.portfolio-page .project-one__hover {
  margin: 1.5rem;
}

.portfolio-page .project-one__hover {
  padding: 2rem;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  position: relative;
  display: block;
  padding: 6rem 0 0;
}

.portfolio-details__img {
  position: relative;
  display: block;
}

.portfolio-details__img img {
  width: 100%;
}

.portfolio-details__info {
  display: block;
  background-color: var(--thm-black);
  padding: 2.65rem 0rem;
  text-align: center;
  position: absolute;
  bottom: -2rem;
  left: 2rem;
  right: 2rem;
}

.portfolio-details__info-list {
}

.portfolio-details__info-list li {
  position: relative;
  display: inline-block;
  font-weight: 500;
  color: #ffffff;
  text-transform: uppercase;
}

.portfolio-details__info-list li + li {
  margin-left: 4.5rem;
}

.portfolio-details__social {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  padding: 0.475rem 0;
}

.portfolio-details__social a {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  font-size: 0.75rem;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.portfolio-details__social a + a {
  margin-left: 1rem;
}

.portfolio-details__social a:hover {
  color: var(--thm-primary);
}

.portfolio-details__content {
  position: relative;
  display: block;
  margin-top: 4.25rem;
  border-bottom: 0.05rem solid #e5e5e5;
  padding-bottom: 5.45rem;
}

.portfolio-details__title {
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 2.5rem;
  margin-bottom: 1.7rem;
}

.portfolio-details__text-1 {
  margin: 0;
}

.portfolio-details__list {
  position: relative;
  display: block;
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

.portfolio-details__list li {
  display: flex;
  align-items: center;
}

.portfolio-details__list li + li {
  margin-top: 0.45rem;
}

.portfolio-details__list li .icon {
}

.portfolio-details__list li .icon span {
  color: var(--thm-primary);
}

.portfolio-details__list li .text-box {
  margin-left: 1rem;
}

.portfolio-details__list li .text-box p {
  color: var(--thm-black);
  font-weight: 500;
  margin: 0;
}

.portfolio-details__text-2 {
  margin: 0;
}

/*Portfolio Details Page Project*/
.portfolio-details-page-project {
  padding-bottom: 4.5rem;
}

.portfolio-details-page-project .row {
  --bs-gutter-x: 1.5rem;
}

.portfolio-details-page-project .project-one__single {
  margin-bottom: 1.5rem;
}

.portfolio-details-page-project .project-one__hover {
  padding: 1.5rem;
}

/*--------------------------------------------------------------
# Contact Page
--------------------------------------------------------------*/
.contact-page {
  position: relative;
  display: block;
  padding: 0 0 3rem;
}

.contact-page__title {
}

.contact-page__title .section-title {
  margin-bottom: 2.35rem;
}

.contact-page__top-text-box {
}

.contact-page__top-text {
  margin: 0;
}

.contact-page__left {
}

.contact-page__form {
}

.contact-page__form .row {
  --bs-gutter-x: 1rem;
}

.contact-page__input-box input[type='text'],
.contact-page__input-box input[type='file'],
.contact-page__input-box input[type='email'],
.contact-page__input-box select {
  height: 3.35rem;
  width: 100%;
  border: none;
  background: #f4f4f4;
  padding: 0 1.5rem;
  margin-bottom: 1rem;
  border-radius: 0rem;
  outline: none;
  font-size: 0.7rem;
  color: var(--thm-gray);
  font-weight: 500;
}

.contact-page__input-box textarea {
  font-size: 0.7rem;
  color: var(--thm-gray);
  height: 9.5rem;
  width: 100%;
  background: #f4f4f4;
  padding: 1rem 2rem 1.5rem;
  border: none;
  border-radius: 0rem;
  outline: none;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.contact-page__btn:before {
  background-color: var(--thm-black);
}

.contact-page__btn:hover {
  background: var(--thm-primary);
}

.contact-page__details {
  position: relative;
  display: block;
  background-color: var(--thm-black);
  padding: 2.6rem 3rem 3rem;
}

.contact-page__details-shape {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 17.25rem;
  opacity: 0.2;
  background-repeat: no-repeat;
  background-size: cover;
}

.contact-page__details-text {
  position: relative;
  font-size: 0.8rem;
  color: #9d9d9d;
  margin: 0;
  font-weight: 500;
  line-height: 1.5rem;
}

.contact-page__details-contact-info {
  position: relative;
  display: block;
  border-top: 0.05rem solid rgba(255, 255, 255, 0.2);
  border-bottom: 0.05rem solid rgba(255, 255, 255, 0.2);
  padding-top: 1.45rem;
  padding-bottom: 1.75rem;
  margin-top: 1.5rem;
  margin-bottom: 2rem;
}

.contact-page__details-contact-list {
}

.contact-page__details-contact-list li {
  display: flex;
  align-items: center;
}

.contact-page__details-contact-list li .icon {
}

.contact-page__details-contact-list li .icon i {
  font-size: 0.75rem;
  color: var(--thm-primary);
}

.contact-page__details-contact-list li .text {
  margin-left: 0.5rem;
}

.contact-page__details-contact-list li .text p {
  font-size: 0.8rem;
  color: #ffffff;
  margin: 0;
  font-weight: 500;
}

.contact-page__details-contact-list li .text p a {
  color: #ffffff;
}

.contact-page__details-social {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  z-index: 2;
}

.contact-page__details-social a {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  font-size: 1rem;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 2;
}

.contact-page__details-social a + a {
  margin-left: 1.5rem;
}

.contact-page__details-social a:hover {
  color: var(--thm-primary);
}

/*--------------------------------------------------------------
# Contact Page Google Map
--------------------------------------------------------------*/
.contact-page-google-map {
  position: relative;
  display: block;
}

.contact-page-google-map__one {
  position: relative;
  display: block;
  border: none;
  height: 27.5rem;
  width: 100%;
}
.contact-map__content {
  position: absolute;
  top: 2rem;
  left: 2rem;
  background: rgba(192, 42, 51, 0.5) url(../images/backgrounds/bg6.png);
  color: #fff;
  padding: 1rem;
}
.contact-map__content h3,
.contact-map__content h4 {
  color: #fff;
  font-size: 1.5rem;
}
.contact-map__content p {
  font-size: 1rem;
}
.contact-area {
  width: 100%;
  padding: 3rem 0 2.5rem;
  overflow: hidden;
}
.contact-area-title {
  position: relative;
  text-align: center;
  height: 6rem;
  margin-bottom: 2rem;
}
.contact-area-title h4 {
  position: relative;
  z-index: 100;
  font-size: 3.05rem;
  color: #333;
  line-height: 5.2rem;
}
.contact-area-title p {
  display: block;
  font-size: 5.5rem;
  line-height: 5.5rem;
  color: rgba(51, 51, 51, 0.1);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  text-align: center;
  text-transform: uppercase;
  z-index: 1;
}
.contact-area__box {
  text-align: center;
}
.contact-area__box h2 {
  font-size: 1.2rem;
  margin: 1.5rem 0;
}
.contact-area__box a {
  background: none;
  border: 0.05rem var(--thm-base) solid;
  padding: 0.5rem 2rem;
  border-radius: 4rem;
  font-size: 1rem;
  color: var(--thm-base);
}

/*--------------------------------------------------------------
# vocational-area
--------------------------------------------------------------*/
.vocational-area {
  width: 100%;
  background: url(../images/backgrounds/bg3.png) top center no-repeat;
  background-size: cover;
  padding: 0rem 0;
  overflow: hidden;
}
.vocational-area__one {
  width: 100%;
  overflow: hidden;
}
.vocational-area__one-right {
  background: #4e555b;
  padding: 2rem;
  height: 100%;
}
.vocational-area__one-right .title {
  position: relative;
  text-align: center;
  margin: 3rem 0;
}
.vocational-area__one-right .title h2 {
  font-size: 2.1rem;
  color: #fff;
}
.vocational-area__one-right .title p {
  font-size: 5.5rem;
  color: rgba(255, 255, 255, 0.06);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  text-align: center;
}
.vocational-area__one-right .text {
  font-size: 0.9rem;
  color: #fff;
  line-height: 1.7rem;
}
.vocational-area__two {
  background: url(../images/backgrounds/bg2.png) top center no-repeat;
  background-size: cover;
  width: 100%;
  overflow: hidden;
}
.vocational-area__two-box {
  text-align: center;
  padding: 2rem 0;
}
.vocational-area__two-box span {
  font-size: 0.8rem;
  color: var(--thm-black);
}
.vocational-area__two-box span i,
.vocational-area__two-box span i span {
  font-size: 3rem;
  font-style: normal;
  color: var(--thm-base);
}
.vocational-area__two-box span i {
  margin-right: 0.5rem;
}
.vocational-area__two-box p {
  font-size: 1rem;
  color: var(--thm-black);
}
.vocational-area__one-left{
  height: 100%;
  overflow: hidden;
}
.vocational-area__one-left img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/*.vocational-area__two-box p::before {
  content: '';
  display: block;
  width: 1.5rem;
  height: 0.1rem;
  background: var(--thm-black);
  margin: calc(45 / 1920 * 100vw) auto;
}*/

/*--------------------------------------------------------------
# news-area
--------------------------------------------------------------*/
.news-area {
  width: 100%;
  background: url(../images/backgrounds/bg4.jpg) top center no-repeat;
  background-size: cover;
  padding: 5rem 0;
  overflow: hidden;
}
.news-area .news-area__title {
  position: relative;
  margin: 0 0 5rem;
  height: 6rem;
}
.news-area .news-area__title .news-area__title__title {
  font-size: 1.75rem;
  color: #000;
  position: relative;
  padding-top: 2rem;
  z-index: 100;
}
.news-area .news-area__title .news-area__title__tagline {
  display: block;
  font-size: 5.5rem;
  line-height: 5.5rem;
  color: rgba(233, 233, 233, 0.86);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  text-transform: uppercase;
}
.news-area__class a {
  font-size: 1.1rem;
  color: var(--thm-black);
  margin-bottom: 2.5rem;
}
.news-area__class a.active,
.news-area__class a:hover {
  color: var(--thm-base);
  text-decoration: underline;
}
.news-area__list {
  position: relative;
  width: 100%;
  background: #fff;
  box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.1);
  margin-bottom: -0.05rem;
  overflow: hidden;
}
.news-area__list-text {
  display: flex;
  background: #fff;
  padding: 2rem 0;
}
.news-area__list-text .time {
  font-size: 1.1rem;
  color: var(--thm-black);
  text-align: center;
  width: calc(87 / 1920 * 100vw);
}
.news-area__list-text .time span {
  font-size: 1.1rem;
  color: #9a9a9a;
  display: block;
}
.news-area__list-text .text {
  width: calc(340 / 1920 * 100vw);
  position: relative;
  padding-left: 1rem;
}
.news-area__list-text .text::before {
  content: '';
  display: block;
  width: 0.05rem;
  height: 70%;
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
}
.news-area__list-text .text a:nth-of-type(1) {
  font-size: 1rem;
  color: #000;
  font-weight: bold;
  line-height: 1.3rem;
}
.news-area__list-text .text p {
  font-size: 0.8rem;
  color: #666;
  line-height: 1.1rem;
}
.news-area__list-text .text a:nth-of-type(2) {
  color: var(--thm-base);
  font-size: 0.8rem /* 16/20 */;
}
.news-area__list:nth-of-type(2) .col-md-5 {
  order: 2;
}
.news-area__list-img {
  position: relative;
  height: 13rem;
  overflow: hidden;
}
.news-area__list-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news-area__list-img::after {
  content: '';
  display: block;
  border-top: 1.25rem solid transparent;
  border-bottom: 1.25rem solid transparent;
  border-left: 1.25rem solid #fff;
  position: absolute;
  top: calc(50% - 1.25rem);
  left: 0;
}
.news-area__list:nth-of-type(2) .news-area__list-img::after {
  border-top: 1.25rem solid transparent;
  border-bottom: 1.25rem solid transparent;
  border-right: 1.25rem solid #fff;
  border-left: 0;
  left: calc(100% - 1.25rem);
}

/*--------------------------------------------------------------
# news video
--------------------------------------------------------------*/
.news-video {
  background: #fff;
  width: 100%;
  position: relative;
  padding: 4rem 0;
  overflow: hidden;
}
.news-video .container {
  position: relative;
}
.news-video__single {
  width: 100%;
  column-count: 3;
  column-gap: 1.5rem;
}
.news-video__box {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.news-video__img a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
.news-video__img a img {
  display: block;
  width: 100%;
  transition: all 0.3s ease;
}
.news-video__img a span {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 3rem;
}
.news-video__title {
  margin: 1rem 0 2rem 0;
}
.news-video__title a {
  font-size: 1.25rem;
  color: #333;
  display: block;
  margin-bottom: 0rem;
}
.news-video__title span {
  font-size: 0.8rem;
}
.news-video__box:hover .news-video__img a img {
  transform: scale(1.05);
}
.news-video__box:hover .news-video__img a span,
.news-video__box:hover .news-video__title a {
  color: var(--thm-base);
}
@media (max-width: 60rem) {
  .news-video__single {
    column-count: 3;
  }
}

@media (max-width: 42.5rem) {
  .news-video__single {
    column-count: 2;
  }
}

@media (max-width: 30rem) {
  .news-video__single {
    column-count: 1;
  }
}

/*--------------------------------------------------------------
# join area
--------------------------------------------------------------*/
.join-area {
  width: 100%;
  padding: 4rem 0;
  overflow: hidden;
}
.join-area-title h2 {
  font-size: 1.5rem;
  color: #000;
  font-weight: normal;
}
.join-area-title h2 i {
  color: var(--thm-base);
  margin-right: 0.5rem;
}
.join-area-title form {
  background: #f8f8f8;
  border-radius: 1.5rem;
  padding: 0.5rem;
}
.join-area-title form button {
  background: none;
  border: 0;
  color: #b3b3b3;
  font-weight: 400;
}
.join-area-title form input {
  border: 0;
  background: none;
  color: #b3b3b3;
  width: calc(100% - 2.6rem);
}
.join-area__left {
/*  border: 0.05rem #e3e3e3 solid;*/
}
.join-area__left a {
  display: block;
  text-align: center;
  font-size: 1.1rem;
  line-height: 3rem;
  cursor: pointer;
}
.join-area__left a:hover,
.join-area__left a.hover {
  background: var(--thm-base);
  color: #fff;
}
.join-area__right ul li {
  list-style-type: none;
/*  border: 0.05rem #e3e3e3 solid;*/
  margin-bottom: 1.2rem;
  padding: 2rem;
}
.join-area__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.5rem;
}
.join-area__title span {
  color: var(--thm-base);
}
.join-area__content {
  display: flex;
  flex-wrap: wrap;
}
.join-area__content span {
  font-size: 1.1rem;
  color: #666;
  width: 50%;
  flex: 0 0 50%;
  margin-top: 1rem;
}
.join-area__content a {
  flex: 0 0 50%;
  display: inline-block;
  font-size: 1.1rem;
  color: var(--thm-base);
  margin-top: 1rem;
  text-align: right;
  text-decoration: underline;
}
.join-area__content span:nth-of-type(2) {
  text-align: right;
}
.join-area__right ul li:hover {
  background: #f6f4f4;
}
.join-detail-title h2 {
  font-size: 1.5rem;
  color: #000;
  font-weight: normal;
}
.join-detail-title h2 i {
  color: var(--thm-base);
  margin-right: 0.5rem;
}
.join-detail-title h4 {
  font-size: 1.15rem;
  color: #666;
  font-weight: normal;
}

.join-detail-title span {
  font-size: 1.1rem;
  color: #333;
  font-weight: normal;
  display: block;
  padding: 0.5rem 0;
}
.text-right {
  text-align: right;
}
.join-detail-title .time span {
  font-size: 0.9rem;
  color: #666;
}
.join-detail-title h4 span {
  display: inline;
  font-size: 1.8rem;
  color: var(--thm-base);
  font-weight: normal;
}
.join-detail__title {
  background: #f1f1f1;
  padding: 1rem 2rem;
  color: var(--thm-base);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
.join-detail__content {
  font-size: 1.1rem;
  color: #333;
  line-height: 2.1rem;
  margin-bottom: 2rem;
}
.join-detail__contact p {
  font-size: 1.1rem;
  color: #333;
}
.join-detail__btn {
  font-size: 1.1rem;
  background: var(--thm-base);
  padding: 0.5rem 2rem;
  border-radius: 4rem;
  color: #fff;
  margin: 2rem auto;
}

/*--------------------------------------------------------------
# car club
--------------------------------------------------------------*/
.car-club {
  width: 100%;
  padding: 2rem 0 0;
  overflow: hidden;
}
.car-club-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.car-club-title h2 {
  font-size: 1.6rem;
  color: #000;
}
.car-club-title a {
  font-size: 0.8rem;
  color: var(--thm-base);
}
.car-club__box {
  position: relative;
  border-radius: 6px;
  transition: all 0.3s ease;
  overflow: hidden;
}
.car-club__a {
  display: block;
  position: relative;
}
.car-club__a img {
  display: block;
  width: 100%;
  transition: all 0.3s ease;
}
.car-club__text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-left: 2rem;
  color: #fff;
}
.car-club__text h4 {
  font-size: 1.2rem;
  color: #fff;
}
.car-club__text p {
  font-size: 1rem;
}
.car-club__box:hover {
/*  box-shadow: 0 0 1rem rgba(248, 44, 44, 0.2);*/
}
.car-club__box:hover .car-club__text {
  background: rgba(0, 0, 0, 0.26);
}
.car-club__box:hover .car-club__a img {
  transform: scale(1.05);
}
.car-club__events {
  width: 100%;
  overflow: hidden;
}
.car-club__events a,
.car-club__events img {
  display: block;
  width: 100%;
  border-radius: 6px;
}
.car-club__events img {
  transition: all 0.3s ease;
}
.car-club__events p {
  font-size: 0.9rem;
  color: #000;
  text-align: center;
  margin-top: 0.5rem;
  line-height: 1.5;
}
.car-club__events p span {
  color: var(--thm-base);
}

.car-club__events:hover img {
  transform: scale(1.05);
}

/*--------------------------------------------------------------
# car service
--------------------------------------------------------------*/
.car-service {
  width: 100%;
  padding: 3rem 0;
  overflow: hidden;
}
.car-service-title {
  font-size: 2.7rem;
  line-height: 1.5;
  text-align: center;
}
.car-service__box {
  text-align: center;
  position: relative;
  padding: 0 2rem;
}
.car-service__box::after {
  content: '';
  display: block;
  width: 0.05rem;
  height: 100%;
  background: #e5e5e5;
  position: absolute;
  top: 0;
  right: 0;
}
.car-service__box span {
  background: rgba(192, 42, 51, 0.06);
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1rem auto;
}
.car-service__box span img {
  display: block;
  height: 3.3rem;
}
.car-service__box h6 {
  font-size: 1.2rem;
  color: #333;
}
.car-service__box p {
  font-size: 1rem;
  color: #666;
  font-weight: 200;
  width: 70%;
  margin: 0 auto;
}
.car-service .row .col-md-3:nth-of-type(4) .car-service__box::after {
  width: 0;
}
.car-service__box:hover span {
  background: rgba(192, 42, 51, 0.16);
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1rem auto;
}

/*--------------------------------------------------------------
# car service map
--------------------------------------------------------------*/
.car-smap {
  width: 100%;
  padding: 0 0 3rem 0;
  overflow: hidden;
}
.car-smap__left{
  width: 100%;
  height: 100%;
  border-radius: 1rem;
  overflow: hidden;
}
.car-smap__left img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.car-smap__right {
  height: 100%;
  background: #f1f1f1;
  padding: 3rem;
  border-radius: 1rem
}
.car-smap__text {
  font-size: 1.1rem;
  line-height: 1.8rem;
  color: #000;
  margin-bottom: 1rem;
}
.car-smap__icon {
  margin-top: 2rem;
}
.car-smap__icon ul li {
  list-style-type: none;
}
.car-smap__icon ul li p {
  font-size: 1rem;
  margin-top: 0.5rem;
}
.car-smap__icon:hover {
}
.car-smap__more {
  background: var(--thm-base);
  color: #fff;
  padding: 0.8rem 3rem;
  border-radius: 4rem;
  display: inline-block;
  border: 0.1rem solid var(--thm-base);
  transition: all 0.3s ease;
}
.car-smap__more:hover {
  border-color: var(--thm-base);
  background: none;
  color: var(--thm-base);
}

/*--------------------------------------------------------------
# car service map
--------------------------------------------------------------*/
.car-huodong {
  width: 100%;
  padding: 0 0 3rem 0;
  overflow: hidden;
}
.car-huodong__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 1rem 0;
  padding: 0 1rem;
}
.car-huodong__content .title a {
  font-size: 1.6rem;
  color: #000000;
  display: block;
  margin-bottom: 0.5rem;
}
.car-huodong__content .title span {
  font-size: 1.1rem;
  color: #999999;
  display: block;
}
.car-huodong__content .status {
  background: url(../images/service/10.png);
  width: 4.85rem;
  height: 2rem;
  line-height: 2rem;
  color: #fff;
  text-align: center;
}
.car-huodong__content .statusing {
  background: url(../images/service/on.png);
  width: 4.85rem;
  height: 2rem;
  line-height: 2rem;
  color: #fff;
  text-align: center;
}
.car-huodong__box p {
  padding: 0 1rem;
  color: #999999;
  font-size: 1.2rem;
}
.car-huodong__box p i {
  margin-right: 0.5rem;
}
.car-huodong__box > a {
  display: block;
  width: 100%;
  height: 15rem;
  overflow: hidden;
}
.car-huodong__box > a > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}
.car-huodong__box {
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.car-huodong__box:hover {
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.3);
}
.car-huodong__box:hover > a > img {
  transform: scale(1.05);
}
.car-huodong__box:hover a {
  color: var(--thm-base);
}

/*--------------------------------------------------------------
# car rqcode
--------------------------------------------------------------*/
.car-rqcode {
  background: url(../images/service/12.jpg) bottom no-repeat;
  width: 100%;
  padding: 0 0 4rem;
  overflow: hidden;
}
.car-rqcode__content h2 {
  font-size: 3rem;
  color: #fff;
}
.car-rqcode__content h4 {
  font-size: 2rem;
  color: #fff;
}
.car-rqcode__text {
  width: 80%;
  padding: 2% 5%;
  background: #fff;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 2rem;
}
.car-rqcode__text p {
  font-size: 1.8rem;
  line-height: 1.5;
  margin: 0;
}
.shouji{
  margin-left: -4rem;
}
.erweima{
  
  position: absolute;
  top: -2rem;
  left: 0;
  width: 100%;
  display: none;
  margin: 0 auto;
  overflow: hidden;
}

.erweima img{
  background-color: #fff;
  display: block;
  box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.1);
  width: 12rem;
  height: 12rem;
  object-fit: cover;
  margin: 0 auto;
  border-radius: 0.5rem;
}
/*--------------------------------------------------------------
# car service map
--------------------------------------------------------------*/
.car-mapsite {
  position: relative;
}
.car-mapsite .container {
  position: relative;
}
.mark-map {
  color: var(--thm-base);
  font-size: 2rem;
  position: absolute;
  z-index: 100;
  display: inline-block;
  box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.07);
  -webkit-animation: pulse 2s infinite;
  animation: pulse 2s infinite;
}
.maplist {
  background: var(--thm-base);
  color: #fff;
  width: 20rem;
  height: 29rem;
  padding: 1rem;
  font-size: 0.9rem;
  position: absolute;
  right: 0;
  top: -29.5rem;
  overflow-y: scroll;
}
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }

  50% {
    -webkit-transform: translate(0, 0.4rem);
    transform: translate(0, 0.4rem);
  }

  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }

  50% {
    -webkit-transform: translate(0, 0.4rem);
    transform: translate(0, 0.4rem);
  }

  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}

.maplist h6 {
  color: #fff;
}
.shanghai {
  top: -18rem;
  left: 46rem;
}
.anhui {
  top: -17.8rem;
  left: 43rem;
}
.hunan {
  top: -14rem;
  left: 39.5rem;
}
.fujian {
  top: -12.5rem;
  left: 43.5rem;
}
.guangdong {
  top: -10.5rem;
  left: 40rem;
}
.car-map__count {
  width: 10rem;
  position: absolute;
  top: -30rem;
}
.car-map__count table {
  background: #eaeaea;
  border: 0.05rem #fff solid;
  text-align: center;
}
.car-map__count table thead {
  background: var(--thm-base);
  color: #fff;
  font-weight: normal;
}
.car-map__count table thead th {
  font-weight: normal;
  font-size: 1rem;
  line-height: 2;
  border-left: 0.05rem #fff solid;
}
.car-map__count table td {
  width: 5rem;
  text-align: center;
  font-size: 0.8rem;
  border: 0.05rem #fff solid;
}

/*--------------------------------------------------------------
# car other map
--------------------------------------------------------------*/
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  border-radius: 3px;
  background: rgba(0,0,0,0.06);
  webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.08);
}
/* 滚动条滑块 */
::-webkit-scrollbar-thumb {
  border-radius: 3px;
  background: rgba(0,0,0,0.12);
  -webkit-box-shadow: inset 0 0 10px rgba(0,0,0,0.2);
}
.car-other {
  width: 100%;
  padding: 4rem 0 0;
  overflow: hidden;
}
.car-other-title span {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #fff;
  background: var(--thm-base);
  padding: 0.5rem 2rem;
  border-radius: 0.5rem;
  font-weight: 400;
  width: 200px;
}
.car-other__single{
  
}
.car-other__box {
  height: 100%;
  box-shadow: 0 0 10px rgba(193, 22, 29, 0.1);
  border-radius: 5px;
  padding: 1rem;
  
}
.car-other__box h4 {
  font-size: 1.2rem;
  color: #333;
  font-weight: normal;
}
.car-other__box h6 {
  font-size: 1rem;
  color: #666;
  font-weight: normal;
  margin: 0.5rem 0;
}
.car-other__box p {
  font-size: 0.8rem;
  color: #999;
}
.car-other__box:hover{
  background: var(--thm-base);
}
.car-other__box:hover *{
  color: #fff!important;
}
.dis {
  display: none;
}

.about-honor-class .active {
  background: var(--thm-base);
  color: #fff;
}

/*分页相关*/
.pagelist ul {
  text-align: center;
  margin: 1rem 0;
}
.pagelist li {
  display: inline-block;
  margin: 0 0.1rem;
}
.pagelist li a {
  color: #666;
  display: inline-block;
  border: 0.05rem solid #ddd;
  padding: 0.3rem 0.75rem;
}
.pagelist li a:hover {
  border-color: var(--thm-base);
  background: var(--thm-base);
  color: #fff;
}
.pagelist li.active a {
  border-color: var(--thm-base);
  background: var(--thm-base);
  color: #fff;
}
img{
  max-width: 100%;
}
/*招聘弹出框*/
.job-popup {
  width: 32rem;
  padding: 1rem;
  font: 0.9rem 'microsoft yahei', arial, sans-serif;
  color: #555;
  overflow: hidden;
  position: relative;
}
.job-popup dl {
  float: left;
  margin: 0.2rem 0;
  position: relative;
  width: 100%;
  min-height: 2rem;
  overflow: hidden;
}
.job-popup dl dt,
.job-popup dl dd {
  float: left;
}
.job-popup dl dt {
  width: 4rem;
  text-align: right;
  line-height: 1.8rem;
}
.job-popup dl dd {
  width: 20rem;
  margin-left: 0.5rem;
  line-height: 1.8rem;
}
.job-popup dl dd input {
  padding: 0 0.2rem;
  height: 1.8rem;
  width: 20rem;
  display: inline-block;
  border: 0.05rem solid #d9d9d9;
  border-radius: 0.2rem;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.job-popup dl dd select {
  padding: 0 0.2rem;
  border: 0.05rem solid #d9d9d9;
  height: 1.8rem;
  width: 20rem;
  border-radius: 0.2rem;
}
.job-popup dl dd textarea {
  padding: 0.2rem;
  border: 0.05rem solid #d9d9d9;
  line-height: 1rem;
  width: 20rem;
  height: 5rem;
  border-radius: 0.2rem;
}
.job-popup dl dd input:focus {
  border: 0.05rem solid #97cdf5;
  outline: 0;
  -webkit-box-shadow: 0 0 0.1rem rgba(191, 189, 189, 1);
  box-shadow: 0 0 0.1rem rgba(191, 189, 189, 1);
}
.job-popup dl dd .bt {
  border: 0;
  padding: 0.4rem 1rem;
  background-color: #0e90d2;
  border-radius: 0.2rem;
  color: #fff;
}
.job-popup dl dd .bt:focus {
  border: 0.05rem solid #97cdf5;
  outline: 0;
  -webkit-box-shadow: 0 0 0.1rem rgba(191, 189, 189, 1);
  box-shadow: 0 0 0.1rem rgba(191, 189, 189, 1);
}
.job-popup .tit {
  line-height: 3rem;
  text-align: center;
  font-size: 1.4rem;
  font-weight: bold;
  height: 3rem;
}

#bg {
  display: none;
  position: fixed;
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
  background-color: black;
  z-index: 1001;
  -moz-opacity: 0.7;
  opacity: 0.7;
  filter: alpha(opacity=70);
}
#show {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  margin-top: -17.5rem;
  margin-left: -16rem;
  width: 32rem;
  height: auto;
  background: #fff;
  z-index: 1002;
  overflow: hidden;
}
#show #btnclose {
  cursor: pointer;
  width: 1.1rem;
  height: 1.1rem;
  line-height: 1rem;
  position: absolute;
  right: 1.75rem;
  top: 0.5rem;
  font-size: 1.2rem;
  border: 0rem;
  background: #fff;
}
.footer-club h2{
  font-size: 1.65rem;
}

.footer-club h2::after{
  content: '';
  display:block;
  width: 5rem;
  height: 1px;
  background: var(--thm-base);
  margin: 0.5rem 0;
}
.footer-club p{
  font-size: 0.8rem;
  margin-bottom: 0;
}

.citylist tbody tr.active td,
.citylist tbody tr:hover td{
  background: #c1161d;
}
.citylist tbody tr.active td,
.citylist tbody tr.active td a,
.citylist tbody tr:hover td,
.citylist tbody tr:hover td a{
  color: #fff;
}

.banner_img_box {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.banner_img_box .banner_img {
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transform: scale(1.2);
}

.banner_img_box .banner_m {
    display: none;
}

.banner_img_box .banner_text_img_box {
    width: 76.979%;
    position: absolute;
    left: 50%;
    top: 22%;
    transform: translateX(-50%);
    color: #fff;
    display: none;
}

.banner_img_box .banner_text_img_box .ind_banner_text_title {
    font-size: .72rem;
    font-weight: 700;
    line-height: 1.458;
}

/*.banner_img_box .banner_text_img_box .ind_banner_text_title .ind_ban_text_two font:nth-last-child(1), .banner_img_box .banner_text_img_box .ind_banner_text_title .ind_ban_text_two font:nth-last-child(2), .banner_img_box .banner_text_img_box .ind_banner_text_title .ind_ban_text_two font:nth-last-child(3) {*/
/*color: #d70c18;*/
/*}*/

.banner_img_box .banner_text_img_box .ind_banner_text_title span {
    color: #d70c18;
}

.banner_img_box .banner_text_img_box .ind_banner_text_title span font {
    font-family: 'BrownStd-Bold';
}

.banner_img_box .banner_text_img_box .ind_banner_name {
    line-height: 1;
    margin-top: .75rem;
    font-size: 0;
    color: #fff;
    display: block;
}

.banner_img_box .banner_text_img_box .ind_banner_name:hover > div {
    color: #d70c18;
}

.banner_img_box .banner_text_img_box .ind_banner_name:hover > span {
    border: 0.05rem solid #d70c18;
}

.banner_img_box .banner_text_img_box .ind_banner_name > div {
    display: inline-block;
    vertical-align: middle;
    font-size: .3rem;
    transition: all .3s ease;
}

.banner_img_box .banner_text_img_box .ind_banner_name > span {
    display: inline-block;
    vertical-align: middle;
    border-radius: 100%;
    border: 0.05rem solid #fff;
    width: .3rem;
    height: .3rem;
    margin-right: .2rem;
    transition: all .3s ease;
}

.banner_img_box video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.ind_banner_box .active .banner_img_box {
    transform: scale(1);
    transition: all 0s ease;
}

.ind_banner_box .active .banner_img_box .banner_img {
    transform: scale(1);
    transition: all 3s ease;
}

.ind_banner_box .active .banner_img_box .banner_text_img_box {
    display: block;
}

.ind_banner_box .swiper-pagination {
    color: rgba(255, 255, 255, 0.2);
    font-size: .16rem;
    font-family: 'Conv_Gotham-Black';
}

.ind_banner_box .swiper-pagination .on {
    color: white;
}

.ind_banner_box .swiper-pagination .ban_pag_sty {
    display: inline-block;
    vertical-align: middle;
    height: 2px;
    width: .7rem;
    margin: 0 .08rem;
    background-color: #fff;
}

.ind_bottom_box {
    color: #fff;
    position: absolute;
    left: 0;
    bottom: 8.333vh;
    text-align: center;
    font-size: 0;
    width: 100%;
    z-index: 1;
}

.ind_bottom_box > div {
    display: inline-block;
    vertical-align: middle;
    margin: 0 0.08rem;
    font-size: .16rem;
}

.ind_bottom_box > div:first-child {
    margin-left: 0;
}

.ind_bottom_box > div:last-child {
    margin-right: 0;
}

.ind_bottom_box .swiper-pagination {
    position: relative;
    width: auto;
    bottom: 0;
}

.ind_bottom_box .ind_hint {
    font-family: 'Conv_Gotham-Black';
}

.ind_bottom_box .ind_hint_icon {
    border: 2px solid #fff;
    height: 26px;
    width: 16px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    position: relative;
    padding: 4px 0;
}

.ind_bottom_box .ind_hint_icon > div {
    height: 6px;
    width: 2px;
    background-color: #fff;
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    margin-left: -1px;
    animation: gun0 1s ease infinite;
}

.ind_body .ind_src2 {
    position: relative;
    display: none;
}

.ind_body .ind_src2 .ind_show_nav_boc {
    position: absolute;
    width: 83.3%;
    left: 8.35%;
    bottom: 7.3vh;
    border-bottom: 1px solid #d70c18;
    display: flex;
    z-index: 1;
    overflow: hidden;
}

.ind_body .ind_src2 .ind_show_nav_boc .blur_box {
    position: absolute;
    width: 100vw;
    height: 100vh;
    left: -8.35vw;
    bottom: -7.3vh;
    z-index: -1;
    padding: 0;
    pointer-events: none;
}

.ind_body .ind_src2 .ind_show_nav_boc .blur_box > div {
    display: none;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: blur(5px);
    transform: scale(1.2);
}

.ind_body .ind_src2 .ind_show_nav_boc .blur_box > div.on {
    display: block;
    animation: scale 2s ease forwards;
}

.ind_body .ind_src2 .ind_show_nav_boc > div {
    width: 25%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    transition: all .3s ease;
    padding: .26rem 0;
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.1);
    position: relative;
}


.ind_body .ind_src2 .ind_show_nav_boc > div::after {
    content: '';
    display: block;
    right: 0;
    top: 25%;
    height: 50%;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.2);
    position: absolute;
}

.ind_body .ind_src2 .ind_show_nav_boc > div:last-child::after {
    display: none;
}

.ind_body .ind_src2 .ind_show_nav_boc > div:hover, .ind_body .ind_src2 .ind_show_nav_boc > div.on {
    background-color: #d70c18;
}

.ind_body .ind_src2 .ind_show_nav_boc > div i {
    font-size: .66rem;
    line-height: 1;
}

.ind_body .ind_src2 .ind_show_nav_boc > div .ind_show_tab_name {
    padding-left: .3rem;
    text-align: left;
}

.ind_body .ind_src2 .ind_show_nav_boc > div .ind_show_tab_name > div {
    font-size: .2rem;
    line-height: 1.5;
}

.ind_body .ind_src2 .ind_show_nav_boc > div .ind_show_tab_name small {
    font-family: 'BrownStd-Regular';
    font-size: .14rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.8;
}

@keyframes scale {
    0% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes gun0 {
    0% {
        top: 6px;
    }
    50% {
        top: 14px;
    }
    100% {
        top: 6px;
    }
}
.qrcode{
  position: absolute;
  background-color: #fff;
  width: 13.5rem;
  height: 13.5rem;
  top: -13.5rem;
  right: -2rem;
  padding: 0.5rem;
  display: none;
  box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.1);
}
.qrcode img{
  width: 100%;
  height: 100%;
}

.car-other__box >p > span:nth-of-type(3):hover .qrcode{
  display: block;
}


#talent #r1 .wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
#talent #r1 .wrap .col {
  width: 50%;
}
#talent #r1 .wrap .col:nth-of-type(1) .title {
  overflow: hidden;
  position: relative;
  height: 180px;
  line-height: 180px;
  margin-bottom: 3vw;
}
#talent #r1 .wrap .col:nth-of-type(1) .title h3 {
  display: inline-block;
  margin-right: 20px;
  position: relative;
  z-index: 10;
  opacity: 0;
}
#talent #r1 .wrap .col:nth-of-type(1) .title small {
  position: relative;
  z-index: 10;
  display: inline-block;
  opacity: 0;
}
#talent #r1 .wrap .col:nth-of-type(1) .title:after {
  content: attr(data-num);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  z-index: 5;
  font-size: 8rem;
  font-weight: bold;
  height: 180px;
  line-height: 180px;
  left: -50px;
  color: #eee;
}
#talent #r1 .wrap .col:nth-of-type(2) {
  margin-top: 70px;
  padding-bottom: 36%;
  padding-left: 6vw;
  position: relative;
}
#talent #r1 .wrap .col:nth-of-type(2) .pic {
  width: 44vw;
  left: 6vw;
  position: absolute;
  max-width: 44vw;
}
#talent #r2 .wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 4vw;
}
#talent #r2 .wrap .col {
  width: 50%;
}
#talent #r2 .wrap .col:nth-of-type(1) {
  padding-left: 6vw;
  position: relative;
  padding-bottom: 40%;
}
#talent #r2 .wrap .col:nth-of-type(1) .pic {
  width: 50vw;
  right: 0;
  position: absolute;
  max-width: 50vw;
}
#talent #r2 .wrap .col:nth-of-type(2) {
  padding-left: 6vw;
}
#talent #r2 .wrap .col:nth-of-type(2) .title {
  overflow: hidden;
  position: relative;
  height: 180px;
  padding-top: 90px;
}
#talent #r2 .wrap .col:nth-of-type(2) .title h3 {
  display: inline-block;
  margin-right: 20px;
  position: relative;
  z-index: 10;
  opacity: 0;
}
#talent #r2 .wrap .col:nth-of-type(2) .title small {
  position: relative;
  z-index: 10;
  display: inline-block;
  opacity: 0;
}
#talent #r2 .wrap .col:nth-of-type(2) .title:after {
  content: attr(data-num);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  z-index: 5;
  font-size: 1.8rem;
  height: 180px;
  line-height: 180px;
  left: -50px;
  color: #eee;
}
#talent #r2 .wrap .col:nth-of-type(2) .line {
  width: 50vw;
  transform: translateX(-4vw);
  -webkit-transform: translateX(-4vw);
  -moz-transform: translateX(-4vw);
  -o-transform: translateX(-4vw);
  -ms-transform: translateX(-4vw);
  background-color: #d70c18;
  margin-bottom: 0.3rem;
  margin-top: 0.3rem;
}
#talent #r2 .other > ul {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
}
#talent #r2 .other > ul > li {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  border: 1px solid #d70c18;
  padding: 2%;
  text-align: center;
  margin: 4vw 0;
}
#talent #r2 .other > p {
  padding: 4vw 0;
}
#talent #r3 {
  background-color: #f7f7f7;
  position: relative;
  overflow: hidden;
  padding: 6vw 0;
}
#talent #r3 .bg-c {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
}
#talent #r3 .con {
  position: relative;
  z-index: 10;
}
#talent #r3 .con .wrap .title {
  overflow: hidden;
  position: relative;
  height: 180px;
  padding-top: 90px;
}
#talent #r3 .con .wrap .title h3 {
  display: inline-block;
  margin-right: 20px;
  position: relative;
  z-index: 10;
  opacity: 0;
}
#talent #r3 .con .wrap .title small {
  position: relative;
  z-index: 10;
  display: inline-block;
  opacity: 0;
}
#talent #r3 .con .wrap .title:after {
  content: attr(data-num);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  z-index: 5;
  font-size: 1.8rem;
  height: 180px;
  line-height: 180px;
  left: -50px;
  color: #c8c8c8;
}
#talent #r3 .con .wrap .title > p {
  color: #474747;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  padding-top: 90px;
  left: 40%;
  width: 50%;
}
#talent #r3 .con > img {
  margin-top: 5vw;
}
#talent #r4 .con .wrap .title {
  overflow: hidden;
  position: relative;
  height: 180px;
  padding-top: 90px;
  margin-bottom: 5vw;
}
#talent #r4 .con .wrap .title h3 {
  display: inline-block;
  margin-right: 20px;
  position: relative;
  z-index: 10;
  opacity: 0;
}
#talent #r4 .con .wrap .title small {
  position: relative;
  z-index: 10;
  opacity: 0;
}
#talent #r4 .con .wrap .title:after {
  content: attr(data-num);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  z-index: 5;
  font-size: 1.8rem;
  height: 180px;
  line-height: 180px;
  left: -50px;
  color: #d9d9d9;
}
#talent #r4 .con .wrap .box {
  padding: 5% 6%;
  box-shadow: 0 10px 40px -3px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
#talent #r4 .con .wrap .box .col:nth-of-type(1) {
  width: 60%;
  padding-right: 5%;
}
#talent #r4 .con .wrap .box .col:nth-of-type(1) .items .list {
  display: none;
}
#talent #r4 .con .wrap .box .col:nth-of-type(1) .items .list h4 {
  margin-bottom: 0.3rem;
}
#talent #r4 .con .wrap .box .col:nth-of-type(1) .items .list h4 > small {
  color: #9d9d9d;
  font-weight: normal;
  display: inline-block;
  margin-left: 20px;
}
#talent #r4 .con .wrap .box .col:nth-of-type(1) .items .list .msg {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
}
#talent #r4 .con .wrap .box .col:nth-of-type(1) .items .list .msg > li {
  margin-bottom: 0.2rem;
}
#talent #r4 .con .wrap .box .col:nth-of-type(1) .items .list .msg > li small {
  color: #9d9d9d;
}
#talent #r4 .con .wrap .box .col:nth-of-type(1) .items .list .msg > li span {
  display: block;
  margin-top: 5px;
}
#talent #r4 .con .wrap .box .col:nth-of-type(1) .items .list .msg > li:nth-of-type(1) {
  width: 30%;
}
#talent #r4 .con .wrap .box .col:nth-of-type(1) .items .list .msg > li:nth-of-type(2) {
  width: 70%;
}
#talent #r4 .con .wrap .box .col:nth-of-type(1) .items .list .msg > li:nth-of-type(3) {
  width: 100%;
}
#talent #r4 .con .wrap .box .col:nth-of-type(1) .items .list.on {
  display: block;
}
#talent #r4 .con .wrap .box .col:nth-of-type(1) .pager {
  margin-top: 3vw;
}
#talent #r4 .con .wrap .box .col:nth-of-type(1) .pager > a {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  line-height: 10px;
  text-align: center;
  background-color: #000;
  opacity: 0.1;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  margin: 10px 30px 10px 0;
  display: inline-block;
}
#talent #r4 .con .wrap .box .col:nth-of-type(1) .pager > a.on {
  background-color: #d70c18;
  opacity: 1;
}
#talent #r4 .con .wrap .box .col:nth-of-type(2) {
  width: 40%;
  position: relative;
}
#talent #r4 .con .wrap .box .col:nth-of-type(2) .photo {
  width: 80%;
  position: absolute;
  max-width: 380px;
  padding-bottom: 112%;
  right: 0;
  top: -9vw;
  box-shadow: 0 10px 27px rgba(0, 0, 0, 0.1);
}
#talent #r4 .con .wrap .box .col:nth-of-type(2) .photo .pic {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
}
#talent #r4 .con .wrap .box .col:nth-of-type(2) .photo .pic.on {
  opacity: 1;
}


#mobbanner{
  display: none!important;
}

.section-area{
  padding: 3rem 0;
}
.linian-title {
  position: relative;
  text-align: center;
  height: 6rem;
  margin-bottom: 2rem;
}
.linian-title h4 {
  position: relative;
  z-index: 100;
  font-size: 2.1rem;
  color: #333;
  line-height: 3.2rem;
}
.linian-title p {
  display: block;
  font-size: 1.7rem;
  line-height: 3.5rem;
  color: rgba(177, 176, 176, 0.26);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  text-align: center;
  text-transform: uppercase;
  z-index: 1;
}
.linian-title h6{
  font-size: 1rem;
  color: #666;
  margin-top: 0.5rem;
  font-weight: normal;
}
.linian-one_left-text{
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  background: #eeeeee;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.linian-one_left-text h6{
  font-size: 1rem;
  color: #333;
  font-weight: normal;
  text-align: center;
}
.linian-one_left-text p{
  font-size: 0.8rem;
  color: #666;
  margin: 0;
  text-align: center;
  line-height: 1.5;
}
.linian-one_left-text.red{
  background: #cc0033;
}
.linian-one_left-text.red h6{
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
}

.linian-two__list{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.linian-two__list .linian-two__box{
  border: 3px #3b3838 solid;
  font-size: 1rem;
  text-align: center;
  color: #333;
  width: 18%;
  margin-bottom: 2%;
  padding: 2% 0;
  position: relative;
}
.linian-two__list .linian-two__box::before{
  content: '';
  width: 3.4rem;
  height: 0.85rem;
  display: block;
  position: absolute;
  top: -0.425rem;
  left: 1rem;
  z-index: 100;
  background:#3b3838;
}
.linian-two__list .linian-two__box:nth-of-type(odd){
  border-color: #cc0033;
}
.linian-two__list .linian-two__box:nth-of-type(odd)::before{
  background:#cc0033;
}

.linian-three__list{
  height: 100%;
  padding: 2rem 1rem;
  text-align: center;
  border:1px #cc0033 solid;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.linian-three__list span{
  position: absolute;
  top: -0.5rem;
  left: calc(50% - 1rem);
  right: 0;
  display: block;
  width: 0;
  height: 0;
  border-left: 1rem solid transparent;
  border-right: 1rem solid transparent;
  border-top: 1rem solid #cc0033;
}
.linian-three__list h2{
  font-size: 1rem;
}
.linian-three__list h2::after{
  content: '';
  width: 1.3rem;
  height: 3px;
  background: #cc0033;
  display: block;
  margin: 1rem auto;
}
.linian-three__list p{
  font-size: .8rem;
  margin: 0;
  line-height: 1.5;
}
.linian-three__list:hover{
  background: #cc0033;
}
.linian-three__list:hover *{
  color: #fff;
}

.linian-three__list:hover h2::after{
  background: #fff;
}
.linian-three__list:hover span{ 
  border-top: 1rem solid #fff;
}
.linian-four__title{
  background: #cc0033;
  color: #fff;
  padding: 1rem 0;
  font-size: 1.3rem;
  text-align: center;
  border-radius: 1rem;
  margin-bottom: 2rem;
}

.linian-four__list{
  background: #e5e5e5;
  border-radius: 0.5rem;
  font-size: 0.9rem;
  color: #666;
  padding: 0.5rem 0;
  text-align: center;
  margin-top: .5rem;
}
.linian-four__list.red{
  background: #cc0033;
  color: #fff;
}
.linian-four__text:nth-of-type(1){
  margin-top: 5.5rem;
}
.linian-four__text:nth-of-type(2){
  margin-top: 4rem;
}
.linian-four__text:nth-of-type(3){
  margin-top: 2rem;
}
.rencai-prese__carousel .owl-nav button.owl-prev,
.rencai-prese__carousel .owl-nav button.owl-next {
  width: 2rem /* 30/20 */;
  height: 2rem;
  border-radius: 50%;
  color: #e5e5e5;
  border: 0.1rem #e5e5e5 solid;
  position: absolute;
  top: calc(50% - 2rem);
}
.rencai-prese__carousel .owl-nav button.owl-prev {
  left: -4rem;
}
.rencai-prese__carousel .owl-nav button.owl-next {
  right: -4rem;
}
.rencai-prese__carousel .owl-nav button.owl-prev:hover,
.rencai-prese__carousel .owl-nav button.owl-next:hover {
  color: var(--thm-base);
  border-color: var(--thm-base);
  background: none;
}
.linian-five__user h2{
  font-size: 2.1rem;
  color: #333;
  font-weight: normal;
  margin-bottom: 2rem;
}
.linian-five__user h2 span{
  font-size: 1.1rem;
  color: #666;
}
.linian-five__info{
  display: flex;
  flex-wrap: wrap;
}
.linian-five__text{
  margin-bottom: 1rem;
}
.linian-five__text span{
  font-size: 1.1rem;
  color: #666;
  display: block;
  margin-bottom: 0.5rem;
}
.linian-five__text p{
  font-size: 1.3rem;
  color: #333;
}
.linian-five__text:nth-of-type(1),
.linian-five__text:nth-of-type(2){
  flex: 0 0 50%;
}

.linian-five__info .linian-five__text:nth-of-type(3) p{
  font-size: 1rem;
}

.language a img{
  margin-right: 3px;
}
.language a{
  margin-right: 8px;
}






























