/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Utility
# Cards
# Common
# Form
# Navigations
# Animations
# Mobile Nav
# Search Popup
# Page Header
# Google Map
# Client Carousel
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Common
--------------------------------------------------------------*/
:root {
  --qutiiz-font: "DM Sans", sans-serif;
  --qutiiz-font-two: "Barlow Condensed", sans-serif;
  --qutiiz-reey-font: "reeyregular";
  --qutiiz-yellow: #ffc107;
  --qutiiz-navy: #1b1150;
  --qutiiz-gray: #726d7b;
  --qutiiz-gray-rgb: 114, 109, 123;
  --qutiiz-white: #ffffff;
  --qutiiz-white-rgb: 255, 255, 255;
  --qutiiz-black: #04000b;
  --qutiiz-black-rgb: 4, 0, 11;
  --qutiiz-base: #6222cc;
  --qutiiz-base-rgb: 98, 34, 204;
  --qutiiz-bdr-radius: 8px;

}


.page-wrapper {
  position: relative;
  margin: 0 auto;
  width: 100%;
  min-width: 300px;
  overflow: hidden;
}

.container {
  padding-left: 15px;
  padding-right: 15px;
  margin: 0 auto;
}

@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
}

::placeholder {
  color: inherit;
  opacity: 1;
}

.section-separator {
  /*border-color: var(--thm-border);*/
  border-width: 1px;
  margin-top: 0;
  margin-bottom: 0;
}

#particles-js {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-position: 50% 50%;
  opacity: 0.4;
  z-index: -1;
}

.thm-btn {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  -webkit-appearance: none;
  outline: none !important;
  background-color: var(--qutiiz-navy);
  color: var(--qutiiz-white);
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 17px 60px 17px;
  transition: all 0.3s linear;
  overflow: hidden;
  z-index: 1;
  font-family: var(--qutiiz-font-two);
  letter-spacing: 0.1em;
  border-radius: var(--qutiiz-bdr-radius);
}

.thm-btn:hover {
  color: var(--qutiiz-white);
}

.thm-btn:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--qutiiz-black);
  transform: scale(0);
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  border-radius: var(--qutiiz-bdr-radius);
  opacity: 1;
  z-index: -1;
}

.thm-btn:hover:after {
  opacity: 1;
  transform: scale(1);
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
}

.section-title {
  margin-top: -12px;
  margin-bottom: 50px;
}





/*--------------------------------------------------------------
# CTA One
--------------------------------------------------------------*/
.cta-one {
  position: relative;
  display: block;
  padding: 0 0 120px;
  overflow: hidden;
}

.cta-one-shape-1 {
  position: absolute;
  top: -333px;
  right: 50px;
  width: 495px;
  height: 360px;
  background-color: #ffc107;
  mix-blend-mode: screen;
  border-radius: 30px;
  z-index: 1;
  transform: rotate(45deg);
  animation: rectMove 9s linear 0ms infinite;
}

.cta-one-shape-2 {
  position: absolute;
  top: -175px;
  right: -350px;
  width: 495px;
  height: 360px;
  background-color: var(--qutiiz-black);
  mix-blend-mode: soft-light;
  border-radius: 30px;
  transform: rotate(45deg);
  animation: rectMove 9s linear 1000ms infinite;
}

.cta-one-shape-3 {
  position: absolute;
  top: 313px;
  left: -184px;
  width: 495px;
  height: 360px;
  background-color: var(--qutiiz-white);
  mix-blend-mode: soft-light;
  border-radius: 30px;
  z-index: 1;
  transform: rotate(45deg);
  animation: rectMove 9s linear 0ms infinite;
}

.cta-one__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #ffc107;
  border-radius: var(--qutiiz-bdr-radius);
  padding: 90px 80px 90px;
  overflow: hidden;
}

.cta-one__left {
  position: relative;
  display: block;
}

.cta-one__title {
  font-size: 30px;
  color: var(--qutiiz-navy);
  text-transform: uppercase;
  line-height: 40px;

  font-weight: 600;
}

.cta-one__title i {

 
  font-size: 40px;
  /*color: red;*/
}

.cta-one__right {
  position: relative;
  display: block;
}

.cta-one__btn {
  color: var(--qutiiz-black);
  background-color: var(--qutiiz-white);
}

.cta-one__btn:hover {
  background-color: transparent;
}

/*--------------------------------------------------------------
# Site Footer
--------------------------------------------------------------*/
.site-footer {
  position: relative;
  display: block;
  z-index: 1;
}

.site-footer__top {
  position: relative;
  display: block;
  background-color: #000000;
  padding: 51px 0;
}

.site-footer__top-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-footer__top-left {
  position: relative;
  display: flex;
  align-items: center;
}

.site-footer__top-logo {
  position: relative;
  display: inline-block;
}

.site-footer__top-title-box {
  /*margin-left: 100px;*/
}

.site-footer__top-title {
  font-size: 24px;
  color: var(--qutiiz-white);
  text-transform: uppercase;
  line-height: 34px;
}

.site-footer__top-title a {
  position: relative;
  display: inline-block;
  color: #ffc107;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.site-footer__top-title a:hover {
  color: var(--qutiiz-white);
}

.site-footer__top-title a:before {
  position: absolute;
  bottom: 3px;
  left: 0;
  right: 0;
  content: "";
  background-color: #ffc107;
  height: 1px;
}

.site-footer__top-right-social {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
}

.site-footer__top-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: var(--qutiiz-white);
  font-size: 20px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.site-footer__top-right-social a:hover {
  color: #ffc107;
}

.site-footer__top-right-social a+a {
  margin-left: 25px;
}

.site-footer__middle {
  position: relative;
  display: block;
  background-color: var(--qutiiz-black);
  padding-top: 80px;
  z-index: 1;
}

.site-footer-shape {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.1;
  z-index: -1;
}

.site-footer__middle-inner {
  position: relative;
  display: block;
}

.footer-widget__about {
  position: relative;
  display: block;
}

.footer-widget__title {
  font-size: 20px;
  color: var(--qutiiz-white);
  text-transform: uppercase;
  font-weight: 600;
  line-height: 30px;
  margin-bottom: 23px;
}

.footer-widget__about-text-box {
  position: relative;
  display: block;
  margin-right: -30px;
}

.footer-widget__about-text {
  font-size: 15px;
  font-weight: 500;
  margin: 0;
  line-height: 36px;
}

.footer-widget__about-contact {
  position: relative;
  display: block;
  border-top: 1px solid rgba(var(--qutiiz-white-rgb), 0.1);
  /*margin-top: 20px;*/
  /*padding-top: 18px;*/




}

.footer-widget__about-contact li {
  position: relative;
  display: flex;
  align-items: center;
}

.footer-widget__about-contact li .icon i {
  font-size: 15px;
  color: var(--qutiiz-white);
}

.footer-widget__about-contact li  {
  /*margin-left: 10px;*/
}

.footer-widget__about-contact li  a {
  /*font-size: 15px;*/
  color: #a09baa;
  font-weight: 500;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.footer-widget__about-contact li  a:hover {
  color: var(--qutiiz-white);
}

.footer-widget__about-contact li  p {
  font-size: 15px;
  color: #a09baa;
  font-weight: 500;
  margin: 0;
}

.footer-widget__links {
  position: relative;
  display: block;
  /*margin-left: 70px;*/
  /*margin-right: -6px;*/
}

.footer-widget__links-list {
  position: relative;
  display: block;
}

.footer-widget__links-list li+li {
  margin-top: 6px;
}

.footer-widget__links-list li a {
  position: relative;
  display: inline-block;
  font-size: 15px;
  color: #a09baa;
  font-weight: 500;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.footer-widget__links-list li a:hover {
  color: var(--qutiiz-white);
}

.footer-widget__links-list li a:before {
  position: absolute;
  bottom: 7px;
  left: 0;
  right: 0;
  content: "";
  background-color: var(--qutiiz-white);
  height: 1px;
  transition: transform 500ms ease;
  transform: scale(0, 1);
  transform-origin: left center;
}

.footer-widget__links-list li a:hover:before {
  transform: scale(1, 1);
  transform-origin: right center;
}

.footer-widget__explore {
  position: relative;
  display: block;
  margin-left: 70px;
  margin-right: -5px;
}

.footer-widget__explore-list {
  position: relative;
  display: block;
}

.footer-widget__explore-list li+li {
  margin-top: 6px;
}

.footer-widget__explore-list li a {
  position: relative;
  display: inline-block;
  font-size: 15px;
  color: #a09baa;
  font-weight: 500;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.footer-widget__explore-list li a:hover {
  color: var(--qutiiz-white);
}

.footer-widget__explore-list li a:before {
  position: absolute;
  bottom: 7px;
  left: 0;
  right: 0;
  content: "";
  background-color: var(--qutiiz-white);
  height: 1px;
  transition: transform 500ms ease;
  transform: scale(0, 1);
  transform-origin: left center;
}

.footer-widget__explore-list li a:hover:before {
  transform: scale(1, 1);
  transform-origin: right center;
}

.footer-widget__newsletter {
  position: relative;
  display: block;
  background-color: #000000;
  margin-left: 50px;
  padding: 41px 50px 41px;
  margin-top: 8px;
  border-radius: var(--qutiiz-bdr-radius);
  border: 1px solid rgba(var(--qutiiz-white-rgb), 0.1);
}

.footer-widget__newsletter .footer-widget__title {
  margin-bottom: 0;
}

.footer-widget__newsletter-form {
  position: relative;
  display: block;
}

.footer-widget__newsletter-input-box {
  position: relative;
  display: block;
}

.footer-widget__newsletter-input-box:before {
  position: absolute;
  bottom: 8px;
  left: 0;
  right: 0;
  content: "";
  height: 2px;
  background-color: rgba(var(--qutiiz-white-rgb), 0.2);
  border-radius: 0;
}

.footer-widget__newsletter-input-box input[type="email"] {
  font-size: 15px;
  color: #a09baa;
  font-weight: 500;
  height: 70px;
  width: 100%;
  background: transparent;
  border: none;
  border-radius: 0;
  padding-right: 60px;
  outline: none;
}

.footer-widget__newsletter-btn {
  position: absolute;
  top: 50%;
  right: 0;
  height: 70px;
  width: 60px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  border-radius: 50%;
  background: transparent;
  border: 0;
  transform: translateY(-50%);
  transition: all 500ms ease;
  padding: 0;
}

.footer-widget__newsletter-btn i {
  font-size: 16px;
  color: #ffc107;
}

.footer-widget__newsletter-bottom {
  display: flex;
  align-items: center;
  margin-top: 5px;
}

.footer-widget__newsletter-bottom-icon {
  height: 19px;
  width: 19px;
  border: 1px solid rgba(var(--qutiiz-white-rgb), 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-widget__newsletter-bottom-icon i {
  font-size: 8px;
  color: #95919f;
}

.footer-widget__newsletter-bottom-text {
  margin-left: 10px;
}

.footer-widget__newsletter-bottom-text p {
  font-size: 15px;
  color: #a09baa;
  margin: 0;
  font-weight: 500;
}

.site-footer__bottom {
  position: relative;
  display: block;
}

.site-footer__bottom-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(var(--qutiiz-white-rgb), 0.1);
  padding: 60px 0;
  margin-top: 40px;

}

.site-footer__bottom-left {
  position: relative;
  display: block;
}

.site-footer__bottom-text {
  font-size: 15px;
  color: #a09baa;
  margin: 0;
  font-weight: 500;
}

.site-footer__bottom-text a {
  color: #a09baa;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.site-footer__bottom-text a:hover {
  color: var(--qutiiz-white);
}

.site-footer__bottom-right {
  position: relative;
  display: block;
}

.site-footer__bottom-menu {
  position: relative;
  display: flex;
  align-items: center;
}

.site-footer__bottom-menu li+li {
  margin-left: 24px;
}

.site-footer__bottom-menu li a {
  font-size: 15px;
  color: #a09baa;
  font-weight: 500;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.site-footer__bottom-menu li a:hover {
  color: var(--qutiiz-white);
}


/*--------------------------------------------------------------
## 新   footer
--------------------------------------------------------------*/

.site-footer__middle .row {

  display: flex;
  justify-content: space-between;
  align-items: center;

}

.site-footer__middle .row ul li {

  margin: 10px 0;

}


.site-footer__bottom-left a {

  display: inline-block;

}



/*--------------------------------------------------------------
## Services Page Cta One
--------------------------------------------------------------*/
.services-page-cta-one {
  padding-top: 120px;
}


/***
=============================================
    Cta One Two
=============================================
***/
.cta-one--two {
  position: relative;
  display: block;
  background: #ffc107;
  padding-bottom: 0px;
}

.cta-one--two .cta-one-shape-1 {
  right: 124px;
}

.cta-one--two .cta-one-shape-2 {
  top: -210px;
  right: -185px;
  width: 365px;
  height: 365px;
  border-radius: 0;
  z-index: 2;
}

.cta-one--two .cta-one__inner {
  /*padding: 88px 0px 92px;*/
  padding: 66px 0px 72px;
}


/*--------------------------------------------------------------
# Boxed Version
--------------------------------------------------------------*/

body.boxed-wrapper {
  background-color: #f6f4f9;
}

.boxed-wrapper .page-wrapper {
  max-width: 1530px;
  margin-left: auto;
  margin-right: auto;
  background-color: #fff;
  -webkit-box-shadow: 0px 0px 100px 0px rgba(0, 0, 0, 0.08);
  box-shadow: 0px 0px 100px 0px rgba(0, 0, 0, 0.08);
}



/*  about 闪光图*/

.image-with-light {
  position: relative;
  display: inline-block;
  overflow: hidden;
}

.image-with-light::after {

  content: "";
  position: absolute;
  top: 0;
  left: 0;

  display: block;

  width: 190%;
  height: 0.1%;

  background: linear-gradient(
          -360deg,
          rgba(255, 255, 255, 0) 0%,
          rgba(255, 255, 255, 0.9) 50%,
          rgba(255, 255, 255, 0) 100%
  );

  animation: sweep 2s ease-in infinite;
  transform-origin: right top;
  transform: skewX(-25deg);
  z-index: 1;
}

@keyframes sweep {
  0% {
    transform: translateX(100%) rotate(-45deg);
    opacity: 0.8;
  }
  70% {
    opacity: 1;
  }
  100% {
    transform: translateX(-100%) rotate(-45deg);
    opacity: 0;
  }
}


.divtext:hover {

  background:
          conic-gradient(from 270deg at 10px 40px, #e48011 0%, #e48011 90deg, transparent 90deg, transparent
          360deg),
          conic-gradient(from 270deg at 40px 10px, #e48011 0%, #e48011 90deg, transparent 90deg, transparent
          360deg), rgba(255, 255, 255, .2);


  background-size: 100% 100%;
  background-position: -5px -20px, -20px -5px;
}


