#questions {
  background-color: #fff;
  transform: translateY(-30px);
  padding-top: 80px;
  padding-bottom: 120px;
}
@media (max-width: 991px) {
  #questions {
    padding-top: 15%;
    padding-bottom: 5%;
  }
}
#questions .inner {
  padding: 0 48px;
}
@media (max-width: 991px) {
  #questions .inner {
    padding: 0 6%;
  }
}
#questions .inner .head {
  text-align: center;
}
#questions .inner .head .title {
  font-size: 48px;
}
@media (max-width: 991px) {
  #questions .inner .head .title {
    font-size: 24px;
  }
}
#questions .inner .head .sub {
  font-size: 16px;
}
@media (max-width: 991px) {
  #questions .inner .head .sub {
    font-size: 14px;
  }
}
#questions .inner .main {
  width: 100%;
  margin: 0 auto;
  margin-top: 50px;
}
#questions .inner .main .list {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 991px) {
  #questions .inner .main .list {
    flex-direction: column;
  }
}
#questions .inner .main .list li {
  width: 33%;
  min-height: 380px;
  transition: all 0.5s ease 0s;
  color: #fff;
  position: relative;
}
@media (max-width: 991px) {
  #questions .inner .main .list li {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    min-height: 300px;
  }
}
#questions .inner .main .list li .img-wrap {
  width: 180px;
  height: 180px;
  margin: 0 auto;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #285B9F;
  display: flex;
  align-items: center;
  justify-content: center;
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  position: relative;
  transition: all 0.5s ease 0s;
}
#questions .inner .main .list li .img-wrap:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  left: 0;
  top: 0;
}
#questions .inner .main .list li .img-wrap p {
  color: #fff;
  font-size: 24px;
  position: relative;
  z-index: 2;
}
@media (max-width: 991px) {
  #questions .inner .main .list li .img-wrap p {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  #questions .inner .main .list li .img-wrap {
    width: 110px;
    height: 110px;
    flex-shrink: 0;
  }
}
#questions .inner .main .list li .text {
  text-align: center;
  width: 100%;
  padding: 0 20%;
}
@media (max-width: 991px) {
  #questions .inner .main .list li .text {
    margin-top: 0;
    text-align: center;
    padding: 40px 12px;
  }
}
#questions .inner .main .list li .text .p1 {
  margin-bottom: 20px;
  font-weight: 400;
  font-size: 32px;
}
@media (max-width: 991px) {
  #questions .inner .main .list li .text .p1 {
    font-size: 24px;
    margin-bottom: 10px;
  }
}
#questions .inner .main .list li .text .p2 {
  color: #fff;
  padding-bottom: 30px;
}
@media (max-width: 991px) {
  #questions .inner .main .list li .text .p2 {
    font-size: 14px;
  }
}
#questions .inner .main .list li .box {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 3;
  padding-top: 15%;
}
#questions .inner .main .list li .watermark {
  position: absolute;
  font-size: 160px;
  opacity: 0.1;
  left: 12px;
  font-weight: bold;
  line-height: 200px;
  transition: all 0.5s ease 0s;
}
#questions .inner .main .list li .watermark.left {
  top: 0;
}
#questions .inner .main .list li .watermark.right {
  bottom: 0;
}
@media (max-width: 991px) {
  #questions .inner .main .list li .watermark {
    line-height: 1.1;
    font-size: 120px;
  }
}
#questions .inner .main .list li:after {
  background: linear-gradient(135deg, #484848 0%, #000000 100%);
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.7;
  z-index: 1;
  transition: all 0.5s ease 0s;
}
@media (max-width: 991px) {
  #questions .inner .main .list li:after {
    opacity: 0;
  }
}
#questions .inner .main .list li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background: var(--back-image);
  background-size: cover;
  background-repeat: no-repeat;
  transition: all 0.5s ease 0s;
}
#questions .inner .main .list li:hover:after {
  background-color: #285B9F;
  opacity: 0;
}
#questions .inner .main .list li:hover .watermark {
  opacity: 0;
}
#team {
  padding: 120px;
}
@media (max-width: 991px) {
  #team {
    padding: 20% 3%;
  }
}
#team .inner .title {
  font-size: 48px;
  text-align: center;
}
@media (max-width: 991px) {
  #team .inner .title {
    font-size: 28px;
  }
}
#team .inner .main {
  max-width: 980px;
  width: 100%;
  margin: 0 auto;
  margin-top: 64px;
}
#team .inner .main .about {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 991px) {
  #team .inner .main .about {
    flex-direction: column;
  }
}
#team .inner .main .about .text-wrap {
  width: 48%;
}
@media (max-width: 991px) {
  #team .inner .main .about .text-wrap {
    width: 100%;
    margin-bottom: 20px;
  }
}
#team .inner .main .about .img-wrap {
  width: 48%;
  height: 380px;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
  transition: all 0.5s ease 0s;
}
@media (max-width: 991px) {
  #team .inner .main .about .img-wrap {
    width: 100%;
    height: 250px;
  }
}
#team .inner .main .about .img-wrap:hover {
  background-size: 114%;
}
#team .inner .main .icons {
  display: flex;
  justify-content: space-evenly;
  margin-top: 80px;
  margin-bottom: 60px;
}
@media (max-width: 991px) {
  #team .inner .main .icons {
    flex-wrap: wrap;
    /*justify-content: center;*/
    margin-top: 30px;
    margin-bottom: 60px;
  }
}
@media (max-width: 991px) {
  #team .inner .main .icons li {
    width: 30%;
    flex-shrink: 0;
    margin-bottom: 15px;
  }
}
#team .inner .main .icons li .icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
}
#team .inner .main .icons li .icon img {
  width: 100%;
}
@media (max-width: 991px) {
  #team .inner .main .icons li .icon {
    margin: 0 auto;
  }
}
#team .inner .main .icons li .text {
  text-align: center;
  margin-top: 10px;
  font-weight: 400;
}
@media (max-width: 991px) {
  #team .inner .main .icons li .text {
    margin-top: 6px;
    font-size: 16px;
  }
}
#team .inner .main .btn {
  width: 200px;
  height: 56px;
  background: linear-gradient(135deg, #313131 0%, #000000 100%);
  border-radius: 56px;
  opacity: 1;
  color: #d5971f;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  transition: all 0.5s ease;
}
#team .inner .main .btn i {
  font-size: 26px;
  margin-right: 8px;
  transform: translateY(2px);
}
#team .inner .main .btn:hover {
  /*color: #ffbf5a;*/
}
#case {
  padding-bottom: 180px;
}
@media (max-width: 991px) {
  #case {
    padding-bottom: 80px;
  }
}
#case .inner .head {
  text-align: center;
}
#case .inner .head .title {
  font-size: 48px;
  text-align: center;
}
@media (max-width: 991px) {
  #case .inner .head .title {
    font-size: 28px;
  }
}
#case .inner .head .sub {
  font-size: 16px;
  color: #3D3D3D;
}
@media (max-width: 991px) {
  #case .inner .head .sub {
    font-size: 16px;
  }
}
#case .inner .main {
  margin-top: 64px;
}
@media (max-width: 991px) {
  #case .inner .main {
    margin-top: 50px;
  }
}
#case .inner .main .list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 991px) {
  #case .inner .main .list {
    width: 100%;
    max-width: 100%;
    flex-direction: column;
    align-items: center;
  }
}
#case .inner .main .list li {
  width: 36%;
  margin-top: 40px;
  background-color: #fff;
  position: relative;
}
@media (max-width: 991px) {
  #case .inner .main .list li {
    width: 100%;
    max-width: 450px;
    margin-top: 30px;
  }
}
#case .inner .main .list li .img-wrap {
  width: 100%;
  padding-top: 10%;
}
#case .inner .main .list li .img-wrap img {
  margin: 0 auto;
  width: 70px;
}
#case .inner .main .list li .img-wrap .text {
  color: #000;
  font-size: 32px;
  text-align: center;
  font-weight: 400;
}
#case .inner .main .list li .text-wrap {
  padding: 30px 40px 36px;
}
@media (max-width: 991px) {
  #case .inner .main .list li .text-wrap {
    padding: 10% 4%;
  }
}
#case .inner .main .list li .text-wrap .p1 {
  color: #BC7F11;
  font-size: 32px;
  text-align: center;
  margin-bottom: 20px;
  font-weight: 400;
}
#case .inner .main .list li .text-wrap .p2 {
  color: #3D3D3D;
  position: relative;
  padding: 30px;
}
@media (max-width: 991px) {
  #case .inner .main .list li .text-wrap .p2 {
    padding: 10% 4%;
  }
}
#case .inner .main .list li .text-wrap .p2:before {
  content: "";
  background-image: url("/static/img/dh1-1.png");
  background-repeat: no-repeat;
  background-size: 100%;
  width: 20px;
  height: 20px;
  position: absolute;
  left: 0;
  top: 0;
}
#case .inner .main .list li .text-wrap .p2:after {
  content: "";
  background-image: url("/static/img/dh2-2.png");
  background-repeat: no-repeat;
  background-size: 100%;
  width: 20px;
  height: 20px;
  position: absolute;
  right: 0;
  bottom: 0;
}
#case .inner .main .list li .text-wrap .p3 {
  text-align: right;
  margin-top: 20px;
}
#case .inner .main .list li .case-btn {
  width: 200px;
  height: 48px;
  background: #000;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #d5971f;
  position: relative;
  z-index: 2;
  margin: 0 auto;
  margin-bottom: 40px;
}
#case .inner .main .list li .case-btn i {
  font-size: 16px;
  transform: translateX(0);
  transition: transform 0.25s ease;
  margin-left: 10px;
}
#case .inner .main .list li .case-btn:hover i {
  transform: translateX(10px);
}
@media (max-width: 991px) {
  #case .inner .main .list li .case-btn {
    width: 200px;
    height: 40px;
    margin: 0 auto;
    margin-top: 30px;
    margin-bottom: 30px;
  }
}
#case .inner .main .list li:nth-child(even) {
  margin-left: 2vw;
}
@media (max-width: 991px) {
  #case .inner .main .list li:nth-child(even) {
    margin-left: 0;
  }
}
#case .inner .main .list li:hover .img-wrap {
  background-size: 114%;
}
#case .inner .main .list li .seal {
  position: absolute;
  bottom: 0;
  right: 0;
  opacity: 0.1;
  width: 300px;
}
#case .inner .main .list li .seal img {
  width: 100%;
}
/*# sourceMappingURL=index.css.map */