@charset "utf-8";

/* CSS Document */

@import "index.css";
@import "page-header.css";

/*----------------------------------------------
# Base Style
----------------------------------------------*/

:root {
  --bs-base: rgba(12, 31, 56, 1.0);
  --bs-base-10: rgba(12, 31, 56, 0.1);
  --bs-base-50: rgba(12, 31, 56, 0.5);
  --bs-base-75: rgba(12, 31, 56, 0.75);
  --bs-bright: rgba(253, 126, 20, 1.0);
  --bs-bright-75: rgba(253, 126, 20, 0.75);
  --bs-radius: 0.125rem;
  --bs-white-10: rgba(255, 255, 255, 0.5);
  --bs-white-50: rgba(255, 255, 255, 0.5);
  --bs-white-75: rgba(255, 255, 255, 0.75);
}
.text-base {
  color: var(--bs-base);
}
.text-bright {
  color: var(--bs-bright);
}
.text-white a {
  color: var(--bs-white);
}
.ratio>* {
  object-fit: cover;
}
a {
  color: var(--bs-base);
  text-decoration: none;
}
a:hover {
  color: var(--bs-orange);
}
.fs-title {
  font-size: 1.125rem;
  font-weight: 700;
}
.fs-sm, .fs-sm a {
  font-size: 0.9rem;
}
.bg-fill {
  background-color: var(--bs-light);
}
.bg-fill-py {
  padding: 1rem 0;
}
.bg-base {
  background-color: var(--bs-base);
}
.bg-bright {
  background-color: rgba(var(--bs-bright-rgb), 1)!important;
}
.bg-bright-10 {
  background-color: rgba(var(--bs-bright-rgb), 0.10)!important;
}
.bg-base {
  background-color: rgba(var(--bs-base-rgb), 1)!important;
}
.bg-base-10 {
  background-color: rgba(var(--bs-base-rgb), 0.10)!important;
}
.btn-outline-orange {
  color: var(--bs-orange);
  border-color: var(--bs-orange);
}
.btn-outline-orange:hover {
  color: var(--bs-white);
  background-color: var(--bs-orange);
  border-color: var(--bs-orange);
}
.border-bright {
  border-color: var(--bs-bright)!important;
}

/*Line Overflow*/

.line-clamp, .line-clamp li, .line-clamp1, .line-clamp2, .line-clamp3, .line-clamp4, .line-clamp-auto, .line-clamp-auto li {
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  display: -webkit-box;
}
.line-clamp, .line-clamp li, .line-clamp-auto, .line-clamp-auto li .line-clamp1 {
  -webkit-line-clamp: 1;
}
.line-clamp2 {
  -webkit-line-clamp: 2;
}
.line-clamp3 {
  -webkit-line-clamp: 3;
}
.line-clamp4 {
  -webkit-line-clamp: 4;
}

/*----------------------------------------------
# Windows Loads
----------------------------------------------*/

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #1e1e1e;
  z-index: 22222222;
  opacity: 1;
  visibility: visible;
}
#preloader.loaded {
  display: none;
  opacity: 0;
  visibility: hidden;
}
#loader {
  display: block;
  position: relative;
  left: 50%;
  top: 50%;
  width: 150px;
  height: 150px;
  margin: -75px 0 0 -75px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #fff;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}
#loader:before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #f08923;
  -webkit-animation: spin 3s linear infinite;
  animation: spin 3s linear infinite;
}
#loader:after {
  content: "";
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #fff;
  -webkit-animation: spin 1.5s linear infinite;
  animation: spin 1.5s linear infinite;
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/*----------------------------------------------
# Header
----------------------------------------------*/

.header {
  position: relative;
  background:#000;
}
.stricky-header {
  position: fixed;
  z-index: 990;
  top: 0;
  left: 0;
  width: 100%;
  visibility: hidden;
  transform: translateY(-120%);
  transition: transform 500ms ease, visibility 500ms ease;
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
}
.stricked-menu {
  background-color: var(--bs-dark);
}
.stricky-header.stricky-fixed {
  transform: translateY(0);
  visibility: visible;
}
.main-menu {
  z-index: 980;
  width:1320px;
  margin:0 auto;
  height: 96px;
  background-color: #000;
}
.main-menu::after {
  content: '';
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  position: absolute;
  left: 0;
  bottom: 0;
}
.main-menu .logo, .stricked-menu .logo {
  width: 300px;
  padding: 1rem 1rem 1rem 0;
  position: relative;
}
.main-menu .logo a, .stricked-menu .logo a {
  display: block;
  width: 160;
  height: 55px;
  background: url("../images/logo.png") no-repeat center center;
  /*background-size: cover;*/
  text-indent: -9999px;
margin-right:80px;
}
.main-menu .logo::after, .stricked-menu .logo::after {
  content: '';
  width: 1px;
  height: 75%;
  background: rgba(255, 255, 255, 0.25);
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%)
}
.stricked-menu .menu-list {
  padding-left: 2rem;
  margin: 0;
}

/* Menu List Dropdown*/

.header .menu-list>li {
  list-style: none;
  display: inline-block;
  height: 5rem;
  line-height: 3rem;
  padding: 1rem 0;
  margin-top:10px;
}
.header .menu-list>li+li {
  margin-left: 2rem;
}
.header .menu-list>li>a {
  display: flex;
  align-items: center;
  color: var(--bs-white);
  position: relative;
  transition: all 500ms ease;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  text-decoration: none;
}
.header .menu-list>li>a::before {
  content:"";
  height: 1px;
  border-radius: 0px;
  background-color: var(--bs-orange);
  position: absolute;
  bottom: 3px;
  left: 0;
  right: 0;
  transition: transform 500ms ease;
  transform: scale(0, 1);
  transform-origin: left center;
  z-index: 1;
}
.header .menu-list>li:hover>a::before {
  transform: scale(1, 1);
  transform-origin: right center;
}
.header .menu-list>li.dropdown>a {
  display: flex;
  align-items: center;
}
.header .menu-list>li.dropdown>a:after {
  font-family: "YaHei";
  content: url(/skin/images/xia.jpg);
  font-weight: 900;
  font-size: 12px;
  transition: transform 500ms ease;
  z-index: 1;
  margin-left: 8px;
}
.header .menu-list>li ul {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 12rem;
  background-color: #fff;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  opacity: 0;
  visibility: hidden;
  transition: 500ms ease;
  z-index: 999;
  box-shadow: 0px 0px 65px 0px rgba(0, 0, 0, 0.1);
  border-radius: 0.15rem;
  padding: 0!important;
}
.header .menu-list li:hover>ul {
  opacity: 1;
  visibility: visible;
}
.header .menu-list li ul li {
  list-style: none;
  flex: 1 1 100%;
  width: 100%;
  position: relative;
}
.header .menu-list li ul li+li {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.header .menu-list li ul li a {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .1em;
  line-height: 30px;
  color: var(--oslim-black);
  text-transform: uppercase;
  display: flex;
  padding: 0.75rem 1.5rem;
  transition: 500ms;
  text-decoration: none;
}
.header .menu-list li ul li:hover>a {
  background-color: var(--bs-orange);
  color: var(--bs-white);
}
.header .menu-list li ul>li:first-child>a {
  border-top-left-radius: 0.15rem;
  border-top-right-radius: 0.15rem;
}
.header .menu-list li ul>li:last-child>a {
  border-bottom-left-radius: 0.15rem;
  border-bottom-right-radius: 0.15rem;
}
.header .menu-list li ul li>ul {
  top: 0;
  left: 100%;
}
.header .menu-list li ul li>ul.right-align {
  top: 0;
  left: auto;
  right: 100%;
}
.header .menu-list li ul li>ul ul {
  display: none;
}
@media (max-width:1199.98px) {
  .sticky-header__content .menu-list, .main-menu .menu-list {
    display: none;
  }
}


.header-phone {display: block;}
@media (max-width:767.98px) {
  .header-phone {display: none;}
}
.header-phone .header-phone::before {content:url(/skin/images/dianhua.png); ; font-family: YaHei; font-weight: 900; width: 2.4rem; height: 4rem; display: block; position: absolute; left:-3rem; top:50%; transform: translateY(-50%); font-size: 2.4rem; color: var(--bs-bright);}
/*--------------------------------------------------------------
# Mobile Nav
--------------------------------------------------------------*/

.mobile-nav__wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999999;
  transform: translateX(-100%);
  -webkit-transform-origin: left center;
  transform-origin: left center;
  transition: transform 500ms ease 500ms, visibility 500ms ease 500ms;
  visibility: hidden;
}
.mobile-nav__wrapper .container {
  padding-left: 0;
  padding-right: 0;
}
.mobile-nav__wrapper.expanded {
  opacity: 1;
  transform: translateX(0%);
  visibility: visible;
  transition: transform 500ms ease 0ms, visibility 500ms ease 0ms;
}
.mobile-nav__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.5;
  cursor: pointer;
}
.mobile-nav__content {
  width: 300px;
  background-color: var(--bs-dark);
  z-index: 10;
  position: relative;
  height: 100%;
  overflow-y: auto;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 15px;
  padding-right: 15px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-100%);
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms;
}
.mobile-nav__wrapper.expanded .mobile-nav__content {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, transform 500ms ease 500ms;
}
.mobile-nav__content .oslim-btn {
  padding: 8px 0;
  width: 100%;
  text-align: center;
}
.mobile-nav__content .logo-box {
  margin-bottom: 40px;
  display: flex;
}
.mobile-nav__close {
  position: absolute;
  top: 20px;
  right: 15px;
  font-size: 18px;
  color: var(--bs-white);
  cursor: pointer;
}
.mobile-nav__content .menu-list, .mobile-nav__content .menu-list ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.mobile-nav__content .menu-list li {
  display: block;
}
.mobile-nav__content .menu-list ul {
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 1);
}
.mobile-nav__content .menu-list li:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.mobile-nav__content .menu-list li a {
  display: flex;
  justify-content: space-between;
  line-height: 30px;
  color: #ffffff;
  font-size: 14px;
  font-family: YaHei;
  font-weight: 600;
  align-items: center;
  transition: 500ms;
  padding-top: 10px;
  padding-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: .1em;
  text-decoration: none;
}
.mobile-nav__content .menu-list li ul {
  margin-left: 10px;
}
.mobile-nav__content .menu-list li a.expanded {
  color: var(--bs-warning);
}
.mobile-nav__content .menu-list li a button {
  width: 30px;
  height: 30px;
  background-color: var(--bs-warning);
  border: none;
  border-radius: 50%;
  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 .menu-list li a button.expanded {
  transform: rotate(0deg);
  background-color: #fff;
  color: var(--bs-dark);
}
.mobile-nav__content .menu-list li.cart-btn span {
  position: relative;
  top: auto;
  right: auto;
  transform: translate(0, 0);
}
.mobile-nav__content .menu-list li.cart-btn i {
  font-size: 16px;
}
.mobile-nav__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}
.mobile-nav__top .main-menu__login a {
  color: var(--bs-white);
}
.mobile-nav__container {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.mobile-nav__social {
  display: flex;
  align-items: center;
}
.mobile-nav__social a {
  font-size: 16px;
  color: var(--bs-white);
  transition: 500ms;
}
.mobile-nav__social a+a {
  margin-left: 30px;
}
.mobile-nav__social a:hover {
  color: var(--bs-warning);
}
.mobile-nav__contact {
  margin-bottom: 0;
  margin-top: 20px;
  margin-bottom: 20px;
}
.mobile-nav__contact li {
  color: var(--oslim-text-dark);
  font-size: 14px;
  font-weight: 500;
  position: relative;
  display: flex;
  align-items: center;
}
.mobile-nav__contact li+li {
  margin-top: 15px;
}
.mobile-nav__contact li a {
  color: #ffffff;
  transition: 500ms;
}
.mobile-nav__contact li a:hover {
  color: var(--bs-warning);
}
.mobile-nav__contact li>i {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--bs-warning);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 11px;
  margin-right: 10px;
  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;
}

/*--------------------------------------------------------------
# Search Popup
--------------------------------------------------------------*/

.search-box, .mobile-nav {
  position: relative;
  height: 102px;
  width: 2.5rem;
}
.search-box .search-btn, .mobile-nav .mobile-nav-btn {
  width: 2rem;
  height: 2rem;
  border-radius: 0.125rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 500ms ease;
  color:#fff;
}
.search-box:hover .search-btn, .mobile-nav:hover .mobile-nav-btn {
  opacity: 1;
}
.search-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  padding-left: 20px;
  padding-right: 20px;
  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(--bs-dark);
  opacity: 0.75;
  cursor: pointer;
}
.search-popup__content {
  width: 100%;
  max-width: 560px;
}
.search-popup__content form {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  background-color: #fff;
  border-radius: 0.15rem;
  overflow: hidden;
}
.search-popup__content form input[type="search"], .search-popup__content form input[type="text"] {
  width: 100%;
  background-color: #fff;
  font-size: 16px;
  border: none;
  outline: none;
  height: 66px;
  padding-left: 30px;
}
.search-popup__content .thm-btn {
  padding: 0;
  width: 68px;
  height: 68px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: absolute;
  top: 0;
  right: -1px;
  border-radius: 0;
  background-color: var(--bs-warning);
  border: 0;
}
.search-popup__content .thm-btn:hover {
  background-color: var(--bs-dark);
}
.search-popup__content .thm-btn i {
  margin: 0;
}

/*----------------------------------------------
# Title Style
----------------------------------------------*/

.title-base {
  width: 100%;
}
.title-base .title-h {
  padding-left: 1.5rem;
  position: relative;
}
.title-base .title-h::before {
  content: '';
  width: 0.5rem;
  height: 0.5rem;
  background-color: var(--bs-bright);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.after-line {
  padding: 0.5rem 0;
  position: relative;
}
.after-line::after {
  content: '';
  width: 100%;
  height: 0.1rem;
  border-radius: 50rem;
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
}
.after-line-base.after-line::after {
  background-color: var(--bs-base);
}
.after-line-bright.after-line::after {
  background-color: var(--bs-bright);
}

/*----------------------------------------------
# Swiper Slide
----------------------------------------------*/

.swiper-banner-fill {
  width: 100%;

}
.swiper-banner-fill .image-layer {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  transform: scale(1);
  opacity: 1;
  background-color: var(--bs-dark);
  transition: transform 7000ms ease, opacity 1500ms ease-in;
  z-index: 10;
  /*去图片颜色*/
  /*background-blend-mode: luminosity;*/
}
.swiper-banner-fill .text-layer {
  position: relative;
  display: block;
  z-index: 20;
  padding: 0 80px;
  left: 0;
  top: 0;
}
.swiper-banner-fill .text-layer h2 {
  margin: 0;
  color: var(--bs-white);
  font-weight: 900;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4rem);
  transition-delay: 1000ms;
  transition: transform 2000ms ease, opacity 2000ms ease;
  font-size: 3.5rem;
  line-height: 4rem;
}
.swiper-banner-fill .text-layer p {
  margin-bottom: 3rem;
  color: var(--bs-white);
  font-weight: 900;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-3rem);
  transition-delay: 1000ms;
  transition: transform 2000ms ease, opacity 2000ms ease;
  font-size: 1.5rem;
  line-height: 3rem;
}
.swiper-banner-fill .slide-btn {
  opacity: 0;
  transform: translateY(100px);
  transition-delay: 2500ms;
  transition: transform 2000ms ease, opacity 2000ms ease, color 500ms ease, background 500ms ease;
}
.swiper-banner-fill .swiper-slide-active .slide-btn, .swiper-banner-fill .swiper-slide-active h2, .swiper-banner-fill .swiper-slide-active .text-layer p {
  visibility: visible;
  opacity: 1;
  transform: translateY(0) translateX(0);
}
.swiper-banner-fill .nav-two {
  width: 100%;
  max-width: 1600px;
  padding-left: 15px;
  padding-right: 15px;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 100;
  transform: translateY(-50%) translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.swiper-banner-fill .swiper-button-next, .swiper-banner-fill .swiper-button-prev {
  width: 60px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  color: var(--bs-dark);
  background-color: var(--bs-white);
  border-radius: 20px;
  opacity: 0.35;
  margin: 0;
  text-align: center;
  transition: all 500ms ease;
}
.swiper-banner-fill .swiper-button-next:hover, .swiper-banner-fill .swiper-button-prev:hover {
  opacity: 1;
}
.swiper-banner-fill .swiper-button-next::after, .swiper-banner-fill .swiper-button-prev::after {
  display: none;
}
.swiper-banner-fill .swiper-button-prev {
  margin-bottom: 10px;
}
.swiper-banner-fill .swiper-button-prev .icon-left-arrow {
  position: relative;
  transform: rotate(180deg);
}
.swiper-banner-fill .swiper-pagination-bullet {
  background-color: var(--bs-orange);
  width: 1.5rem;
  height: 0.5rem;
  border-radius: 50rem;
}

/*----------------------------------------------
# Slide Btn Style
----------------------------------------------*/

.slide-btn {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  -webkit-appearance: none;
  outline: none !important;
  background-color: var(--bs-orange);
  color: var(--bs-white);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  padding: 20px 60px 16px;
  transition: all 0.3s linear;
  overflow: hidden;
  letter-spacing: 0.1em;
  border-radius: 5px;
  z-index: 1;
}
.slide-btn:hover {
  color: var(--bs-light);
  background-color: transparent;
}
.slide-btn::before {
  position: absolute;
  content: '';
  background-color: rgba(255, 255, 255, 0.5);
  width: 0%;
  height: 100%;
  left: 0px;
  top: 0px;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
  z-index: -1;
  transition: all 500ms ease;
}
.slide-btn::after {
  position: absolute;
  content: '';
  background-color: rgba(255, 255, 255, 0.5);
  width: 0%;
  height: 100%;
  right: 0px;
  top: 0px;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  z-index: -1;
  transition: all 500ms ease;
}
.slide-btn:hover::before, .slide-btn:hover::after {
  width: 50%;
}
:root {
  --bs-vw: 100vw;
  --bs-vh: calc(var(--bs-vw) / 4 * 3);
}
.swiper-banner-fill .text-layer {
  height: 100vh;
}
@media (max-width:991.98px) {
  .swiper-banner-fill .nav-two {
    display: none;
  }
  .swiper-banner-fill .text-layer h2 {
    font-size: calc(1.275rem + 1vw) !important;
    line-height: 3rem;
  }
  .swiper-banner-fill .text-layer p {
    font-size: calc(1rem + 0.5vw) !important;
    margin-bottom: 1rem;
    height: 2.4rem;
    line-height: 1.2rem;
  }
  .slide-btn {
    padding: 10px 20px 8px;
  }
}
@media (max-width:767.98px) {
  .swiper-banner-fill .text-layer {
    height: var(--bs-vh);
    padding: 0;
  }
  .swiper-banner-fill .text-layer h2 {
    font-size: calc(1rem + 0.5vw) !important;
    line-height: 1.5rem;
  }
  .swiper-banner-fill .text-layer p {
    font-size: calc(0.9rem + 0.25vw) !important;
    margin-bottom: 1rem;
    height: 2.4rem;
    line-height: 1.2rem;
  }
  .swiper-banner-fill .text-layer .slide-btn {
    display: none;
  }
}

/*----------------------------------------------
# Card Over Bottom
----------------------------------------------*/

.card-over-bottom .card-title, .card-over-bottom .card-title a {
  color: var(--bs-white);
}
.card-over-bottom .card-title a:hover {
  color: rgba(255, 255, 255, 0.75);
}
.card-over-bottom .card-img-overlay {
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 75%, rgba(0, 0, 0, 0.8) 100%);
  bottom: 0!important;
  top: auto!important;
  transition: all 0.5s;
}
.card-over-bottom:hover .card-img-overlay {
  transform: translateY(0)
}
.card-spic .card-spic-date {
  background: var(--bs-gray-200);
  width: 5rem;
  height: 5rem;
  float: left;
  padding: 1rem;
}
.card-spic p {
  margin: 0;
}
.card-spic .card-spic-date .date-d {
  font-size: 1.75rem;
  color: var(--bs-gray-600);
  font-weight: 700;
  height: 2rem;
  line-height: 2rem;
  text-align: center;
  position: relative;
}
.card-spic .card-spic-date .date-d::after {
  content: '';
  width: 100%;
  height: 1px;
  background: var(--bs-gray-500);
  position: absolute;
  left: 0;
  bottom: 0;
}
.card-spic .card-spic-date .date-y {
  color: var(--bs-gray-600);
  height: 1.5rem;
  line-height: 1.5rem;
  text-align: center;
}
.card-spic:hover .card-spic-date {
  background: var(--bs-bright);
}
.card-spic:hover .date-d, .card-spic:hover .date-y {
  color: var(--bs-white);
}
.card-spic:hover .date-d::after {
  background: var(--bs-white);
  opacity: 0.35
}
.card-spic .card-spic-body .card-spic-title {
  height: 1.5rem;
  line-height: 1.5rem;
}
.card-spic .card-spic-body .card-spic-title a {
  color: var(--bs-base);
}
.card-spic .card-spic-body .card-spic-title a:hover {
  color: var(--bs-bright);
}
.card-spic .card-spic-body .card-spic-text {
  height: 3rem;
  line-height: 1.5rem;
}

/*----------------------------------------------
# Yous Switch
----------------------------------------------*/

@media (min-width:992px) {
  .nav-active .nav-link {
    position: relative;
    padding: 1rem 2rem;
    border-left: 5px solid var(--bs-gray-100);
    color: var(--bs-dark);
  }
  .nav-active .nav-link.active {
    border-left: 5px solid var(--bs-orange);
    color: var(--bs-orange);
    background-color: var(--bs-gray-100);
  }
  .nav-active .nav-link::after {
    content: '';
    width: 1rem;
    height: 1rem;
    border: 2px solid var(--bs-gray-300);
    background-color: var(--bs-white);
    border-radius: 50%;
    display: block;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateX(.5rem) translateY(-.5rem)
  }
  .nav-active .active.nav-link::after {
    border: 2px solid var(--bs-orange);
    background-color: var(--bs-orange);
  }
  .super .nav-active {
    width: 10rem;
    margin-right: 1.5rem;
    border-right: 1px solid var(--bs-gray-300)
  }
}
@media (max-width:991.98px) {
  .super .d-flex {
    flex-direction: column;
  }
  .super .flex-column {
    flex-direction: row!important;
  }
  .super .nav-active {
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--bs-orange);
  }
  .super .nav-active .nav-link {
    width: 25%;
    margin: 0;
    padding: 1rem 0;
    text-align: center;
    color: var(--bs-dark);
  }
  .super .nav-active .nav-link.active {
    background-color: var(--bs-orange);
    color: var(--bs-white);
  }
}

/*----------------------------------------------
# Owl-Carousel
----------------------------------------------*/

.owl-btn-end {
  position: relative;
}
.owl-btn-end .owl-nav {
  position: absolute;
  top: -3rem;
  right: 0;
  height: 2rem;
}
.owl-btn-end .owl-nav .owl-prev, .owl-btn-end .owl-nav .owl-next {
  width: 2rem;
  height: 2rem;
  margin-left: 0.125rem;
  background: var(--bs-orange)!important;
  border-radius: 0.25rem;
  display: inline-block;
  opacity: 0.75;
  transition: opacity 0.5s ease-in-out;
  -webkit-transition: opacity 0.3s ease-in-out;
}
.owl-btn-end .owl-nav .owl-prev span, .owl-btn-end .owl-nav .owl-next span {
  color: var(--bs-white);
  font-size: 1.5rem;
  line-height: 2rem;
}
.owl-btn-end .owl-nav .owl-prev:hover, .owl-btn-end .owl-nav .owl-next:hover {
  opacity: 1;
}
.owl-mycase .item .card-img {
  overflow: hidden;
}
.owl-mycase .item .card-img img {
  transition: all linear .5s;
}
.owl-mycase .item:hover .card-img img {
  transform: scale(1.05, 1.05);
  -webkit-transform: scale(1.05, 1.05);
}
.owl-mycase .item .card-body {
  background-color: rgba(var(--bs-dark-rgb), var(--bs-bg-opacity));
  position: absolute;
  left: 0;
  top: calc(100% - 2.8rem);
  transition: all 0.3s ease-in-out;
}
.owl-mycase .item .card:hover .card-body {
  transform: translateY(calc(-100% + 2.8rem));
  visibility: visible;
}
.owl-mycase .owl-nav {
  width: calc(100% + 8rem);
  position: absolute;
  left: -4rem;
  top: 50%;
  height: 3rem;
  transform: translateY(-50%);
  z-index: -1;
}
.owl-mycase .owl-nav .owl-prev, .owl-mycase .owl-nav .owl-next {
  width: 3rem;
  height: 3rem;
  border-radius: 50rem;
  font-size: 2rem!important;
  line-height: 3rem;
  background: var(--bs-orange)!important;
  color: var(--bs-white)!important;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  opacity: 0;
  transform: scale(0, 0)
}
.owl-mycase .owl-nav .owl-next {
  float: right;
}
.owl-mycase:hover .owl-nav .owl-prev, .owl-mycase:hover .owl-nav .owl-next {
  visibility: visible;
  opacity: 1;
  transform: scale(1, 1)
}
@media (max-width: 1199.98px) {
  .owl-mycase .owl-nav {
    display: none;
  }
}

/**Owl Honor**/
.owl-honor .owl-dots {padding: 2rem 0 0; display: flex; justify-content: center;}
.owl-honor .owl-dots button span {width:2rem; height: 0.5rem; background-color: var(--bs-base); display: block; border-radius: 50rem; margin: 0 0.25rem; opacity: 0.5;}
.owl-honor .owl-dots button.active span {opacity: 1;}
@media (max-width: 991.98px) {
  .owl-honor .owl-dots button span {width: 0.5rem; height: 0.5rem; border-radius: 100%;}
}
/*----------------------------------------------
# About Us
----------------------------------------------*/

.why-choose ul.accordion {
  margin-left: 0px;
}
.why-choose .section-heading {
  text-align: center;
  margin-bottom: 70px;
}
.why-choose ul.accordion {
  width: 100%;
  padding-left: 0px;
  margin-top: 30px;
}
@media (min-width: 992px) {
  .why-choose ul.accordion {
    margin-top: 0px;
    padding-left: 0px;
  }
}
.why-choose ul.accordion li {
  position: relative;
  margin-bottom: 15px;
  border-bottom: 1px solid #eee;
  padding-bottom: 15px;
  list-style: none;
}
.why-choose ul.accordion li:last-child {
  margin-bottom: 0px;
  border-bottom: none;
}
.why-choose ul.accordion li p {
  display: none;
  margin-top: 0px !important;
  margin-bottom: 0px;
  padding: 15px 0px 10px 0px;
  border-top: none;
}
.why-choose ul.accordion a {
  cursor: pointer;
  font-size: 18px;
  text-transform: capitalize;
  font-weight: 700;
  color: #2c2c2c;
  text-indent: 15px;
  -webkiter-select: none;
  -mozer-select: none;
  -mser-select: none;
  user-select: none;
}
.why-choose ul.accordion a:after {
  width: 8px;
  height: 8px;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  position: absolute;
  right: 5px;
  content: " ";
  top: 10px;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.why-choose ul.accordion p em {
  font-style: normal;
  color: #000;
}
.why-choose ul.accordion a.active:after {
  top: 7px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  border-color: #f08923;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.why-choose ul.accordion a.active {
  color: #f08923;
}
@media (min-width:992px) {
  .right-image {
    text-align: right;
    position: absolute;
    left: 1rem;
    right: 0;
    top: 0;
    bottom: 1rem;
  }
  .right-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
.right-image .ab-txt {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 0;
  top: auto;
  text-align: left;
  background-color: rgba(0, 0, 0, 0.25);
  padding: 1.5rem;
  border-radius: var(--bs-radius);
  max-height: 75%;
  overflow: hidden;
}

/*----------------------------------------------
# 
----------------------------------------------*/

.mx-title h2 {
  color: var(--bs-orange);
}

/*----------------------------------------------
# Art Grid
----------------------------------------------*/

.art-grid-fst-img {
  height: calc(100% - 15px);
  background-repeat: no-repeat;
  position: relative;
  background-size: cover;
  background-position: center center;
  overflow: hidden;
  min-height: 200px;
  border-radius: 0.5rem;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.art-grid-fst-img::before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border-radius: .5rem;
  background: -o-linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 44.79%, rgba(0, 0, 0, 0.35) 63.54%, #000000 100%);
  background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 44.79%, rgba(0, 0, 0, 0.35) 63.54%, #000000 100%);
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), color-stop(44.79%, rgba(0, 0, 0, 0)), color-stop(63.54%, rgba(0, 0, 0, 0.35)), to(#000000));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 44.79%, rgba(0, 0, 0, 0.35) 63.54%, #000000 100%);
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.art-grid-fst-img:hover::after {
  background: -o-linear-gradient(top, rgba(18, 18, 19, 0) 0%, #000 100%);
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(18, 18, 19, 0)), to(#000));
  background: linear-gradient(180deg, rgba(18, 18, 19, 0) 0%, #000 100%);
}
.entry-title-orange, .entry-title-orange a {
  color: var(--bs-white);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.entry-title-orange a:hover {
  color: var(--bs-orange);
}
.art-grid-fst-img .post {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 1rem;
  width: 100%;
  z-index: 1;
}
.art-media {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}
.art-grid-list .art-box-bg {
  background: var(--bs-white);
  margin-bottom: 1rem;
  padding: 1rem;
  border-radius: 0.5rem;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1);
}
.art-grid-list .art-media {
  position: relative;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-bottom: 0;
  margin-right: 20px;
  width: 100px;
}
.art-grid-list .art-media .group-img {
  position: relative;
  width: 100%;
}
.art-grid-list .art-media .group-img::before {
  display: block;
  padding-top: 75%;
  content: "";
}
.art-grid-list .art-media .group-img img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  object-fit: cover;
}
.art-grid-list .art-box-bg:hover .group-img img {
  transform: scale(1.15, 1.15)
}

/*----------------------------------------------
# Tab Style
----------------------------------------------*/

.tab-title {
  width: 100%;
  height: 2.4rem;
}
.tab-title .title-link {
  height: 2.5rem;
  line-height: 2.4rem;
  padding: 0 1rem;
  border-radius: 50rem;
}
.tab-title .title-link.active {
  background-color: var(--bs-orange);
}
.tab-title .title-link {
  color: var(--bs-base);
}
.tab-title .title-link:hover {
  color: var(--bs-orange);
}
.tab-title .title-link.active {
  color: var(--bs-white);
}

/*----------------------------------------------
# Footer
----------------------------------------------*/

.footer {
  background-color: var(--bs-base);
  color: var(--bs-white);
}
.footer .fot-title {
  font-size: 1rem;
  font-weight: 700;
  position: relative;
  height: 3rem;
  line-height: 3rem;
  padding-bottom: 1rem;
}
.footer .fot-title::after {
  content: '';
  width: 2rem;
  height: 0.25rem;
  background-color: var(--bs-orange);
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  border-radius: 50rem;
}
.footer .fot-text {
  font-size: 0.9rem;
}
.fot-list {
  width: 100%;
  list-style: none;
  display: flex;
  flex-flow: column;
  padding-left: 1rem;
}
.fot-list .fot-item {
  height: 1.5rem;
  line-height: 1.5rem;
  color: var(--bs-white-75);
  position: relative
}
.fot-list .fot-item::before {
  content: '•';
  color: var(--bs-white-75);
  position: absolute;
  left: -1rem;
  top: 0;
}
.fot-list .fot-item a, .copyr a {
  color: var(--bs-white-75);
}
.fot-list .fot-item a:hover, .copyr a:hover {
  color: var(--bs-orange);
}
.footer .copyr {
  height: 4rem;
  line-height: 4rem;
  background: rgba(5, 25, 45, 1.0);
  overflow: hidden;
}
@media (max-width:991.98px) {
  .fot-list {
    padding: 0;
  }
  .fot-list .fot-item::before {
    display: none;
  }
  .footer .fot-title, .fot-list .fot-item {
    text-align: center;
  }
  .footer .fot-title::after {
    left: 50%;
    transform: translateX(-50%)
  }
  .footer .copyr .company {
    display: block;
    text-align: center;
  }
}

/*----------------------------------------------
# Pro Part
----------------------------------------------*/

.pro-part .card {
  border: none;
  transition: all 0.5s ease;
}
.pro-part .card:hover {
  box-shadow: 0 0 0.75rem rgba(0, 0, 0, 0.25)
}
.pro-part .card .card-footer {
  font-size: 0.9rem!important;
}
.pro-part .card-img {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  position: relative;
  display: block;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  overflow: hidden;
  z-index: 1;
}
.pro-part .card-img img {
  max-width: 100%;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .7s;
  transition-property: all;
}
.pro-part .card:hover .card-img:before {
  transform: scaleY(1.0);
}
.pro-nav .btn.active {
  background: var(--bs-bright);
  color: var(--bs-white);
}

/*----------------------------------------------
# Pro Page
----------------------------------------------*/

.pro-title {
  width: 100%;
  height: 15rem;
  overflow: hidden;
  position: relative;
}
.pro-title .title-img {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
}
.pro-title .title-img .ratio-img {
  width: 100%;
  height: 100%;
  position: relative;
}
.pro-title .title-img .ratio-img img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  object-fit: cover;
  filter: blur(5px);
  -webkit-filter: blur(5px);
}
.pro-title .title-img-overlay {
  width: 100%;
  height: 100%;
  padding: 1rem;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  background-color: var(--bs-base-50);
}
.pro-title .title-img-body {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.pro-body h2 {
  height: 3rem;
  line-height: 3rem;
  font-size: 1.25rem;
  font-weight: 700;
  position: relative;
}
.pro-body h2::before {
  content: '';
  width: 100%;
  height: 0.1rem;
  border-radius: 50rem;
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  background: var(--bs-bright);
  /* fallback for old browsers */
  background: -webkit-linear-gradient(to left, var(--bs-base), var(--bs-bright));
  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to left, var(--bs-base), var(--bs-bright));
  /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}
.pro-body h3 {
  height: 2rem;
  line-height: 2rem;
  font-size: 1rem;
  font-weight: 700;
  position: relative;
}
.pro-body h3::before {
  content: '';
  width: 4rem;
  height: 0.1rem;
  border-radius: 50rem;
  background-color: var(--bs-base);
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
}
.pro-body ol {
  background-color: var(--bs-gray-200);
  padding: 1rem 2rem;
  border-radius: 0.25rem;
}
.page-prev a {
  transition: all 0.3s;
}

/*----------------------------------------------
# Grid
----------------------------------------------*/

.spic-grid .media {
  position: relative;
  width: 100%;
}
.spic-grid .media::before {
  display: block;
  padding-top: var(--bs-media-vh);
  content: "";
}
.spic-grid .media img {
  position: absolute;
  top: 0;
  left: 0;
  max-width: 100%;
  object-fit: cover;
}
.spic-grid .media-1x1 {
  --bs-media-vh: 100%;
}
.spic-grid .media-4x3 {
  --bs-media-vh: 75%;
}
.spic-grid .media-16x9 {
  --bs-media-vh: 56.25%;
}
.spic-grid {
  width: 100%;
  padding: 0;
}
.spic-grid, .spic-grid-item {
  list-style: none;
}
.spic-grid .spic-grid-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
}
.spic-grid .spic-grid-item:nth-child(n+2) {
  margin-top: 1.5rem;
}
.spic-grid .grid-media {
  width: 200px;
  flex: 0 0 auto;
  margin-right: 1rem;
  border-radius: 0.25rem;
  overflow: hidden!important;
}
.spic-grid .spic-grid-item .grid-media img {
  transform: scale(1, 1);
  transition: all 0.3s ease-in-out;
  opacity: 1;
}
.spic-grid .spic-grid-item:hover .grid-media img {
  transform: scale(1.1, 1.1);
  opacity: 0.75
}
@media (max-width: 767.98px) {
  .spic-grid .grid-media {
    width: 120px;
  }
  .spic-grid .grid-title {
    font-size: 1rem!important;
  }
  .spic-grid .grid-title.line-clamp-auto {
    -webkit-line-clamp: 2;
  }
  .spic-grid .grid-text {
    display: none;
  }
}

/*----------------------------------------------
# Side Part
----------------------------------------------*/

.side-nav {
  width: 100%;
  overflow: hidden;
}
.side-nav, .side-nav ul {
  margin: 0;
  padding: 0;
}
.side-nav li {
  height: 3.4rem;
  line-height: 3.4rem;
  background: rgba(var(--bs-bright-rgb), 0.1);
}
.side-nav li+li {
  margin-top: 0.5rem;
}
.side-nav li a {
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
  transition: all 0.5s ease;
}
.side-nav li a::before {
  content: '\f178';
  font-family: 'YaHei';
  font-weight: 900;
  width: 3rem;
  height: 2rem;
  line-height: 2rem;
  text-align: center;
  background: var(--bs-white);
  border-radius: 50rem;
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.5s ease;
}
.side-nav li.active a {
  color: var(--bs-bright);
}
.side-nav li a:hover::before, .side-nav li.active a::before {
  background-color: var(--bs-bright);
  color: var(--bs-white);
}
.sticky {
  transform: translateY(0);
  transition: transform 0.5s;
}
.sticky-side.sticky {
  transform: translateY(6rem);
}
.service-details__need-help {
  position: relative;
  display: block;
  padding: 57px 55px 50px;
  margin-top: 30px;
  text-align: center;
  z-index: 1;
  background-color: var(--bs-bright);
  border-radius: var(--oslim-bdr-radius);
  overflow: hidden;
}
.service-details__need-help-shape-1 {
  position: absolute;
  top: -295px;
  left: -21px;
  width: 230px;
  height: 495px;
  background-color: var(--bs-base);
  mix-blend-mode: soft-light;
  border-radius: 150px;
  transform: rotate(-40deg);
}
.service-details__need-help-shape-2 {
  position: absolute;
  bottom: -135px;
  right: -141px;
  width: 178px;
  height: 380px;
  background-color: var(--bs-white);
  mix-blend-mode: soft-light;
  border-radius: 150px;
  transform: rotate(-40deg);
}
.service-details__need-help-icon {
  height: 73px;
  width: 73px;
  background-color: var(--bs-white);
  color: var(--bs-base);
  font-size: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 0;
  transition: all 500ms ease;
}
.service-details__need-help-icon:hover {
  background-color: var(--bs-base);
  color: var(--bs-white);
}
.service-details__need-help-title {
  font-size: 38px;
  color: var(--bs-white);
  line-height: 40px;
  margin-bottom: 21px;
  font-weight: 700;
}
.service-details__need-help-contact {
  position: relative;
  display: block;
  margin-top: 21px;
}
.service-details__need-help-contact p {
  font-size: 14px;
  color: var(--bs-white);
  margin: 0;
  line-height: 32px;
  font-weight: 600;
  opacity: .7;
}
.service-details__need-help-contact a {
  font-size: 30px;
  color: var(--bs-white);
  font-weight: 600;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.service-details__need-help-contact a:hover {
  color: var(--bs-base);
}
.service-details__right {
  position: relative;
  display: block;
}
.service-details__img {
  position: relative;
  display: block;
}
.service-details__img img {
  width: 100%;
  border-radius: var(--oslim-bdr-radius);
}
.service-details__content {
  position: relative;
  display: block;
  margin-top: 39px;
}
.service-details__title-box {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 28px;
}
.service-details__title-icon {
  position: relative;
  display: flex;
  align-items: center;
}
.service-details__title-icon:before {
  position: absolute;
  top: 0;
  bottom: 0;
  right: -30px;
  width: 1px;
  content: "";
  background-color: #dcdce0;
}
.service-details__title-icon span {
  position: relative;
  display: inline-block;
  font-size: 62px;
  color: var(--bs-bright);
}
.service-details__title {
  font-size: 34px;
  font-weight: 800;
  line-height: 44px;
  margin-left: 60px;
}
.service-details__text-1 {
  margin: 0;
  padding-bottom: 35px;
}
.service-details__text-2 {
  margin: 0;
}
.service-details__two-icons {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 43px 0 38px;
}
.service-details__two-icon-single {
  position: relative;
  display: block;
  max-width: 360px;
  width: 100%;
  padding-left: 90px;
  float: left;
}
.service-details__two-icon-single+.service-details__two-icon-single {
  margin-left: 40px;
}
.service-details__two-icon {
  height: 40px;
  width: 60px;
  background-color: var(--bs-bright);
  font-size: 16px;
  color: var(--bs-white);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 15px;
  left: 0;
}
.service-details__two-icon span {
  position: relative;
  display: inline-block;
}
.service-details__two-icon-content {
  font-size: 20px;
  color: var(--bs-base);
  font-weight: 700;
  line-height: 36px;
  margin: 0;
}
.service-details__text-3 {
  margin: 0;
  padding-bottom: 53px;
}
.service-details__how-help {
  position: relative;
  display: block;
}
.service-details__how-help-single {
  position: relative;
  display: block;
}
.service-details__how-help-img {
  position: relative;
  display: block;
}
.service-details__how-help-img img {
  width: 100%;
  border-radius: var(--oslim-bdr-radius);
}
.service-details__how-help-content {
  position: relative;
  display: block;
}
.service-details__how-help-text-1 {
  font-size: 26px;
  color: var(--bs-base);
  font-weight: 700;
  margin: 0;
  line-height: 38px;
  padding-top: 42px;
}
.service-details__how-help-text-2 {
  font-size: 20px;
  margin: 0;
  padding-top: 42px;
  padding-bottom: 33px;
}
.service-details__how-help-points {
  position: relative;
  display: block;
}
.service-details__how-help-points li {
  position: relative;
  display: flex;
  align-items: center;
}
.service-details__how-help-points li+li {
  margin-top: 5px;
}
.service-details__how-help-points li .icon {
  height: 15px;
  width: 15px;
  background-color: var(--bs-bright);
  color: var(--bs-white);
  font-size: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.service-details__how-help-points li .text {
  margin-left: 12px;
}
.service-details__how-help-points li .text p {
  color: var(--bs-base);
  font-weight: 600;
  margin: 0;
}
.service-details__faq {
  position: relative;
  display: block;
  margin-top: 51px;
}

/*----------------------------------------------
# 
----------------------------------------------*/

.icon-dot {
  display: inline-block;
  position: relative;
  line-height: 1;
}
.icon-dot::before {
  content: '·';
  font-weight: 900;
  font-size: 1rem;
}
.btn-class-name {
  position: relative;
  display: inline-block;
  font-weight: normal;
  line-height: 1.2;
  color: var(--bs-base);
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.btn-class-name-bright {
  color: var(--bs-white);
  background-color: var(--bs-bright);
}
.btn-class-name-bright:hover {
  color: var(--bs-gray-200);
  background-color: var(--bs-bright-75);
}
.btn-class-sm {
  padding: 0.125rem 0.5rem;
}
.owl-isgood .card .card-title {
  transform: translateY(2rem);
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s;
}
.owl-isgood .card:hover .card-title {
  transform: translateY(1rem);
  visibility: visible;
  opacity: 1;
}
.owl-isgood .card .card-img-overlay::before {
  content: '';
  width: 100%;
  height: 100%;
  background-color: var(--bs-base-75);
  transform: scale(1, 0);
  visibility: hidden;
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  transition: all 0.3s ease-in-out;
}
.owl-isgood .card:hover .card-img-overlay::before {
  transform: scale(1, 1);
  visibility: visible;
  opacity: 1;
}
.owl-isgood .owl-nav {
  width: 100%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-1rem);
  display: flex;
  justify-content: space-between;
  height: 0;
}
.owl-isgood .owl-nav .owl-prev, .owl-isgood .owl-nav .owl-next {
  position: relative;
  width: 2rem;
  height: 2rem;
  border-radius: 100%;
  background-color: var(--bs-base-75)!important;
  display: inline-block;
  color: var(--bs-white)!important;
  transition: all 0.3s ease-in-out;
}
.owl-isgood .owl-nav .owl-prev:hover, .owl-isgood .owl-nav .owl-next:hover {
  box-shadow: 0 0 0.5rem var(--bs-base);
  background-color: var(--bs-base)!important;
}
.owl-isgood .owl-nav .owl-prev span, .owl-isgood .owl-nav .owl-next span {
  font-size: 1.5rem!important;
  display: block;
  line-height: 1;
}
.owl-isgood .owl-nav .owl-prev {
  transform: translateX(calc(-100% - 0.5rem))
}
.owl-isgood .owl-nav .owl-next {
  transform: translateX(calc(100% + 0.5rem))
}
@media (max-width:575.98px) {
  .owl-isgood .owl-nav .owl-prev, .owl-isgood .owl-nav .owl-next {
    opacity: 0.75;
    box-shadow: 0 0 0.25rem var(--bs-white);
  }
  .owl-isgood .owl-nav .owl-prev {
    transform: translateX(0.5rem)
  }
  .owl-isgood .owl-nav .owl-next {
    transform: translateX(-0.5rem)
  }
}
.side-img-auto {
  width: 100%;
  height: 100%;
  min-height: 20rem;
  border-radius: 0.25rem;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  overflow: hidden;
}
.side-img-auto::before {
  content: '';
  width: 100%;
  height: 100%;
  background-color: var(--bs-base-50);
  display: block;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s;
}
.side-img-auto .side-img-body {
  background-color: var(--bs-base-75);
  position: absolute;
  left: 0;
  bottom: 0;
  transform: translateY(3rem);
  transition: transform 0.35s ease-in-out;
  -webkit-transition: transform 0.35s ease-in-out;
}
.side-img-auto:hover::before {
  visibility: visible;
  opacity: 1;
}
.side-img-auto:hover .side-img-body {
  transform: translateY(0);
}
.cover-scale img {
  transform: scale(1, 1);
  transition: transform 0.35s ease-in-out;
  -webkit-transition: transform 0.35s ease-in-out;
}
.cover-scale:hover img {
  transform: scale(1.1, 1.1);
}
.cover-opacity img {
  opacity: 1;
  transition: opacity 0.35s ease-in-out;
  -webkit-transition: opacity 0.35s ease-in-out;
}
.cover-opacity:hover img {
  opacity: 0.75;
}
.txts-grid {
  list-style-type: square;
  color: var(--bs-secondary)
}
.tag-links a {
  margin-right: 0.5rem;
}

/*----------------------------------------------
# List Style
----------------------------------------------*/

.list-item {
  display: flex;
}
.list-item .list-media {
  flex: 0 0 auto;
}
.list-item+.list-item {
  margin-top: 1.5rem;
}
.list-item.sepaline+.list-item.sepaline {
  padding-top: 1.5rem;
  border-top: 1px solid var(--bs-gray-200);
}

/**List Spic**/

.list-spic, .list-spic-sm {
  width: 100%;
}
.list-spic .list-item .list-media {
  width: 12.5rem;
  margin-right: 1.5rem;
}
.list-spic .list-item .list-tags, .list-spic .list-item .list-tags a {
  color: var(--bs-secondary);
}
.list-spic .list-item .list-tags a:hover {
  color: var(--bs-bright);
}
.list-spic-sm .list-item .list-media {
  width: 6.25rem;
  margin-right: 1rem;
}
.list-spic-sm .list-item+.list-item {
  margin-top: 1rem;
}
@media (max-width:767.98px) {
  .list-spic .list-item .list-media {
    width: 7.5rem;
  }
  .list-spic .list-item .list-title.line-clamp {
    -webkit-line-clamp: 2!important;
  }
  .list-spic .list-item .list-text, .list-spic .list-item .list-tags, .list-spic .list-item .list-info span:nth-child(n+2) {
    display: none;
  }
}

/**List Txt**/

.list-txt .list-item {
  display: -webkit-box!important;
}
.list-txt .list-item+.list-item {
  margin-top: 0.5rem;
}
.list-txt .list-item .icon::before {
  background-color: var(--bs-gray-500)!important;
}
.list-txt .list-item:hover .icon::before {
  background-color: var(--bs-bright)!important;
}

/**List Txt**/

.list-tags {
  width: 100%;
  overflow: hidden;
}
.list-tags .list-body {
  margin: 0 -0.25rem;
  width: calc(100% + 0.5rem);
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}
.list-tags .list-item {
  padding: 0.25rem 0.5rem;
  margin: 0.25rem;
  border: 1px dashed var(--bs-gray-200);
  font-size: 0.875rem;
}
.list-tags .list-item:hover {
  background-color: var(--bs-light);
}

/**Ratio2**/

.rat {
  position: relative;
  width: 100%;
}
.rat::before {
  display: block;
  padding-top: var(--bs-aspect-rat);
  content: "";
}
.rat img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.rat-1x1 {
  --bs-aspect-rat: 100%;
}
.rat-4x3 {
  --bs-aspect-rat: 75%;
}
.rat-3x4 {
  --bs-aspect-rat: 133.33333%;
}
.rat-16x9 {
  --bs-aspect-rat: 56.25%;
}

/*----------------------------------------------
# Icon
----------------------------------------------*/

.icon {
  position: relative;
  height: 100%;
  line-height: 1;
}
.icon::before {
  content: '';
  position: absolute;
  width: 0.75rem;
  height: 0.75rem;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--bs-base);
  display: block;
}
.icon-sm.icon::before {
  width: 0.375rem!important;
  height: 0.375rem!important;
}
.icon-circle.icon::before {
  border-radius: 100%;
}
.icon-line.icon::before {
  width: 0.25rem;
  height: 100%;
  border-radius: 50rem;
}
.icon-bright.icon::before {
  background-color: var(--bs-bright)!important;
}
.opacity-scale img {
  opacity: 1;
  transform: scale(1, 1);
  transition: all 0.35s ease-in-out;
  -webkit-transition: all 0.35s ease-in-out;
}
.opacity-scale:hover img {
  opacity: 0.75;
  transform: scale(1.05, 1.05)
}
.opacity-scale.shadow:hover img {box-shadow: 0 0 0.5rem rgba(var(--bs-black-rgb),0.35)!important;}

.class-links li {
  display: inline-block;
}
.class-links .link-item a {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  border: 1px dashed var(--bs-gray-500);
  display: block;
}
.class-links .link-item.active a, .class-links .link-item:hover a {
  background-color: var(--bs-base);
  color: var(--bs-white);
  border-color: transparent;
}
.news-body h2 {
  font-size: 1.25rem;
  padding-left: 1.5rem;
  font-weight: 600;
  position: relative;
  margin-top:15px;
  margin-bottom:15px;
}
.news-body h2::before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0.75rem;
  height: 0.75rem;
  background-color: var(--bs-bright);
  display: block;
  content: '';
}
.news-body h3 {
  font-size: 1.1rem;
  padding-left: 1rem;
  position: relative;
}
.news-body h3::before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0.375rem;
  height: 0.375rem;
  background-color: var(--bs-base);
  display: block;
  content: '';
}
.news-body img {
  max-width: 100%;
}

/**Page List**/

.pagelist {
  margin: 0 -1.5rem;
  padding: 1rem 0.5rem;
  background: var(--bs-ff);
}
.pagelist a {
  color: var(--bs-secondary);
}
@media (min-width:768px) {
  .pagelist li:nth-child(1) {
    border-right: 1px solid var(--bs-e);
  }
}

/*----------------------------------------------
# 
----------------------------------------------*/
.ban-body {
  position: relative;
  background-color: var(--bs-gray-300);
  display: block;
  height:347px;
}
.ban-body .ban-img {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.ban-body .ban-txt {
  position: relative;
  text-align: center;
}
.ban-body .sitemap {
  font-size: 0.875rem;
  position: absolute;
  left: 50%;
  bottom: 0;
  padding: 0.5rem 1rem;
  transform: translate(-50%, -3rem);
  border: 1px solid rgba(167, 167, 170, 1);
  color: rgba(167, 167, 170, 1);
}
.ban-body .sitemap a {
  color: rgba(167, 167, 170, 1);
}
.ban-body .sitemap a:hover {
  color: var(--bs-white);
}
.ca-grid {
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
}
.ca-grid .ca-img, .ca-grid .ca-body {
  width: 100%;
  position: relative;
}
.ca-grid .ca-body .title-class {
  position: absolute;
  width: 5rem;
  height: 5rem;
  background-color: var(--bs-white);
  border: 1px solid var(--bs-light);
  box-shadow: 0 0 0.375rem rgba(0, 0, 0, 0.1);
  left: 50%;
  top: 0;
  transform: translate(-50%, -2.5rem);
  border-radius: 100%;
}
@media (min-width:1400px) {
  .ca-grid .ca-img, .ca-grid .ca-body {
    width: 50%;
  }
  .ca-grid .ca-body .title-class {
    left: 0;
    top: 50%;
    transform: translate(-2.5rem, -50%);
  }
}
.ttm-social-links-wrapper ul li a {
  display: block;
  font-size: 14px;
  width: 35px;
  height: 35px;
  text-align: center;
  line-height: 35px;
  color: inherit;
  border-radius: 0;
  margin-right: 0;
  background-color: rgba(24, 35, 3, 1.00);
  color: rgba(255, 255, 255, 1.00);
}
.ttm-social-links-wrapper {
  display: block;
  clear: both;
}
ul.social-icons {
  margin: 0;
  padding: 0;
}
.social-icons li {
  display: inline-block;
  border: none;
  z-index: 1;
  position: relative;
}
.footer .social-icons li>a {
  display: block;
  height: 33px;
  width: 33px;
  line-height: 35px;
  font-size: 13px;
  color: rgba(255, 255, 255, 1);
  border-color: transparent;
  background-color: #232227;
  border-width: 0;
  transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -webkit-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
}
.social-icons.circle li>a {
  border-width: 1px;
  border-style: solid;
  height: 33px;
  width: 33px;
  line-height: 33px;
  text-align: center;
  display: block;
  background-color: #232227;
  font-size: 13px;
}
.social-icons li {
  margin: 0 2px;
}
.social-icons li:last-child {
  margin-right: 0px;
}
.social-icons li a {
  display: block;
  min-width: 26px;
  text-align: center;
  font-size: 16px;
}
.social-icons.circle li>a {
  border-width: 1px;
  border-color: transparent;
  height: 40px;
  width: 40px;
  line-height: 33px;
  text-align: center;
  display: block;
  background-color: #232227;
  font-size: 13px;
}
.owl-casemore .card-img-overlay {
  left: 0;
  bottom: 0;
  top: auto;
  background-color: rgba(var(--bs-black-rgb), var(--bs-bg-opacity));
  transition: all 0.5s;
}
.owl-casemore .card .card-img-overlay {
  --bs-bg-opacity: 0.3;
  transform: translateY(2.5rem);
}
.owl-casemore .card:hover .card-img-overlay {
  --bs-bg-opacity: 1;
  transform: translateY(0);
}
.owl-casemore .card .more-icon {
  visibility: hidden;
  opacity: 0;
  transform: translate(-50%, calc(-50% + 0.5rem));
  transition: transform 0.5s ease-in, opacity 0.3s ease-in;
}
.owl-casemore .card:hover .more-icon {
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, -50%);
}
.owl-casemore .card .card-text {
  margin: 0;
  transform: translateY(0.5rem);
  visibility: hidden;
  opacity: 0;
  transition: all 0.35s;
}
.owl-casemore .card:hover .card-text {
  transform: translateY(0);
  visibility: visible;
  opacity: 1;
}
.owl-casemore .card-img-overlay .card-title a {
  color: var(--bs-white);
  transition: all 0.35s;
}
.owl-casemore .card-img-overlay .card-title a:hover {
  color: var(--bs-bright);
}
.owl-casemore .owl-nav {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, calc(100% + 2rem));
}
.owl-casemore .owl-nav button {
  width: 4rem;
  height: 2rem;
  background-color: transparent;
  transition: all 0.35s;
  border-radius: 50rem;
  border: 1px solid var(--bs-white)!important;
  text-align: center;
  margin: 0 0.25rem;
}
.owl-casemore .owl-nav button:hover {
  background-color: var(--bs-white)!important;
  cursor: pointer;
}
.owl-casemore .owl-nav span {
  color: var(--bs-white);
  line-height: 1.75rem;
  font-size: 1.5rem!important;
}
.owl-casemore .owl-nav button:hover span {
  color: var(--bs-base);
}
.mt_5 {
  margin-top: -3rem!important;
}
.case-num {
  padding: 9rem 0 3rem;
  position: relative;
}
.inside {
  text-align: center;
}
.vertical_sep>[class*='col-'] {
  position: relative;
}
.vertical_sep>[class*='col-']:not(:last-child):before {
  display: inline-block;
  height: 6rem;
  top: 5px;
  right: 0px;
  background-color: rgba(var(--bs-white-rgb), 0.2);
  position: absolute;
  content: "";
  width: 2px;
}
.inside h4 {
  color: #fff;
  display: inline-block;
  margin-bottom: 0px;
  font-size: 40px;
  line-height: 40px;
  font-weight: 600;
  margin-top: 0;
  margin-block-start: 1rem;
  margin-block-end: 1rem;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
}
.inside h4 span {
  display: inline-block;
  margin-bottom: 0px;
  font-size: 50px;
  line-height: 40px;
}
.inside sub {
  opacity: 1;
  font-size: 35px;
  font-weight: 600;
  bottom: 0;
  margin-left: 2px;
  position: relative;
  line-height: 0;
  vertical-align: baseline;
}
.inside h3 {
  font-size: 20px;
  line-height: 25px;
  color: rgba(255, 255, 255, .7);
}



/*----------------------------------------------
# 
----------------------------------------------*/


/*----------------------------------------------
# 
----------------------------------------------*/