.banner {
  margin-top: 0px;
  margin-bottom: 0px;
  padding: 150px 0px 150px 0px;
  background-image: url('/static/image/banner.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.container-inner {
  width: 50%;
  background-color: rgba(16, 110, 234, 0.5);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  padding: 30px 56px 48px 56px;
  border-radius: 0;
}
.container-inner .title {
  margin-top: 0px;
  margin-bottom: 30px;
  padding: 24px 0px 0px 0px;
}
.container-inner .title p {
  text-align: left;
  font-size: 40px;
  line-height: 58px;
  font-family: var(--theme-title-font);
}
.container-inner .desc {
  margin-top: 0px;
  margin-bottom: 48px;
  padding: 0px 0px 0px 0px;
}
.container-inner .desc p {
  text-align: left;
  font-size: 18px;
  line-height: 30px;
}
.container-inner .button {
  margin-top: calc(0px / 2);
  margin-bottom: calc(0px / 2);
  margin-left: calc(0px / 2);
  margin-right: calc(0px / 2);
  border-radius: 0px;
  display: inline-block;
  background-color: #FFFFFF;
  font-size: 16px;
  padding: 13px 35px;
}
.container-inner .button a {
  color: #106EEA;
  border-color: #106EEA;
  line-height: 20px;
}
.container-inner .button .ri-btn-icon::after {
  content: "\ea6c";
  margin-left: 8px;
}
.sec-title {
  color: var(--theme-black-color);
  margin: 50px 0px;
  text-align: center;
}
.sec-title .sec-title-wrap {
  align-items: center;
  display: inline-flex;
  flex-direction: column-reverse;
}
.sec-title .sec-title-wrap h2 {
  line-height: 1.34;
  font-size: 24px;
  font-weight: var(--theme-title-font-weight);
  margin: 0;
}
.sec-title .sec-title-wrap span {
  color: var(--theme-color);
  font-size: max(15px, .45em);
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 8px;
  margin-top: 0;
  opacity: 1;
  position: relative;
  vertical-align: top;
}

.sec-title .sec-title-wrap span:after, .sec-title .sec-title-wrap span:before {
  background-color: var(--theme-color);
  content: "";
  height: 2px;
  opacity: .95;
  position: absolute;
  right: calc(100% + 16px);
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
}
.sec-title .sec-title-wrap span:after {
  left: calc(100% + 16px);
  right: 0;
}
.service-list {
  color: var(--theme-black-color);
  list-style: none;
  margin: calc(var(--theme-gutter) / -2);
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: var(--theme-gutter);
  width: 100%;
  margin-bottom: 30px;
}
.service-item-wrap {
    background-color: #fff;
    border: 1px solid var(--theme-line-color);
    border-radius: var(--theme-border-radius-l);
    color: inherit;
    height: 100%;
    overflow: hidden;
    transition: all .2s ease-out;
}
.service-item img {
  height: auto;
  max-width: 100%;
  transition: all .2s ease-out;
  width: 100%;
}
.service-item-title {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
  margin: 0;
  padding: 15px 15px 10px;
}
.service-item-desc {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  opacity: .8;
  padding: 0 15px 15px;
}
.service, .choose {
  background-color: #f8faff;
}
.choose {
  padding-bottom: 30px;
}

#carousel {
	position: relative;
	width: 100%;
	margin: 0 auto
}

#carousel .swiper {
	padding-top: 20px;
	padding-bottom: 40px;
}
#carousel .swiper-wrapper{

}
#carousel  .swiper-slide {
	background: #fff;
	box-shadow: 0 8px 20px #ddd;
}
#carousel  .swiper-slide img{
	display:block;
	width: 100%;
}
#carousel  .swiper-slide p {
	line-height: 58px;
	padding-top: 0;
	text-align: center;
	color: #636363;
	margin: 0;
  font-size: 15px;
}

#carousel .swiper-pagination {
	width: 100%;
	bottom: 20px;
}

#carousel .swiper-pagination-bullets .swiper-pagination-bullet {
	margin: 0 5px;
	background-color: #e8f5ff;
	width: 20px;
	height: 10px;
	opacity: 1;
	border-radius: 5px;
}

#carousel .swiper-pagination-bullets .swiper-pagination-bullet-active {
	background-color: #3eb2f3;
	width: 35px;
}

#carousel .swiper-button-prev {
	left: 10px;
	width: 45px;
	height: 45px;
	background: url(/static/image/button_icon.png) no-repeat;
	background-position: 0 0;
	background-size: 100%;
}

#carousel .swiper-button-prev:hover {
	background-position: 0 -46px;
	background-size: 100%
}

#carousel .swiper-button-next {
	right: 10px;
	width: 45px;
	height: 45px;
	background: url(/static/image/button_icon.png) no-repeat;
	background-position: 0 -93px;
	background-size: 100%;
}

#carousel .swiper-button-next:hover {
	background-position: 0 -139px;
	background-size: 100%
}
#carousel .swiper-button-prev::after,#carousel .swiper-button-next::after{
	content: '';
}
.feature-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: var(--theme-gutter);
}
.fea-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.fea-item .fea-icon {
  align-items: center;
  border: 2px solid var(--theme-color);
  border-radius: 50%;
  color: var(--theme-color);
  display: inline-flex;
  font-size: 48px;
  height: 100px;
  justify-content: center;
  line-height: 96px;
  text-align: center;
  width: 100px;
}
.fea-item .fea-icon.icon1 {
  color: #7ED1F2;
  border-color: #7ED1F2;
}
.fea-item .fea-icon.icon2 {
  color: #B48BFF;
  border-color: #B48BFF;
}
.fea-item .fea-icon.icon3 {
  color: #708DF9;
  border-color: #708DF9;
}
.fea-item-title {
  font-size: 18px;
  margin-bottom: 0;
  margin-top: 30px;
}
.fea-item-desc {
  color: var(--theme-black-color);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  margin-top: 20px;
  opacity: .8;
}

@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  50% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  50% {
    opacity: 1;
  }
}
.animate__zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

@-webkit-keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}

@media (max-width: 1000px) {
  .container-inner {
    width: calc(100% - var(--theme-gutter) * );
    padding: 0px 30px 20px 30px;
  }
  .container-inner .title {
    margin-bottom: 20px;
    padding: 14px 0px 0px 0px;
  }
  .container-inner .title p {
    font-size: 25px;
    line-height: 30px;
  }
  .banner {
    padding: 50px 0px 50px 0px;
  }
  .sec-title {
    margin: 30px 0px;
  }
  .service-list {
    grid-template-columns: repeat(2, 1fr);
    grid-gap:var(--theme-gutter);
  }
  .feature-wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}