/* Future Section Here */
.future-section .msg1 {
  margin: 16px 0 24px 0;
}

/* Future Section end */

/* map section here */
.map-section {
  background-color: var(--zb-blue1);
}

/* map section end */

/*  talent Section Here  */
.talent-section .talent-item {
  padding: 2.2vw 1.6vw;
  border-radius: 12px;
  height: 100%;
}

.talent-section .talent-item h3 {
  margin-bottom: clamp(12px, 0.9vw, 20px) !important;
}

.talent-section .row:nth-of-type(2) .col-item:nth-child(1) .talent-item {
  background-color: #091F2B;
}

.talent-section .row:nth-of-type(2) .col-item:nth-child(2) .talent-item {
  background-color: #003059;
}

.talent-section .row:nth-of-type(2) .col-item:nth-child(3) .talent-item {
  background-color: #2EA8E5;
}

.talent-section .row:nth-of-type(2) .col-item:nth-child(4) .talent-item {
  background-color: #FF7630;
}

/* talent Section end */

/*  business Section Here  */

.business-section .business-item img {
  width: clamp(100px, 6vw, 120px);
  height: clamp(100px, 6vw, 120px);
  border-radius: 12px;
  background-color: var(--zb-blue3);
}

/* business Section end */

/* life section here */
.life-section .swiper-container {
  width: 100%;
  height: auto;
  padding: 4vw 0;
  margin-left: auto;
  margin-right: auto;
}

.life-section .swiper-wrapper {
  align-items: center;
}

.life-section .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  /* height: 200px; */
  /* Center slide text vertically */
  display: flex;
  justify-content: center;
  align-items: center;
  transition-property: all;
}

.life-section .swiper-slide-visible .swiper-life-item,
.life-section .swiper-slide-next .swiper-life-item {
  padding-left: 8.5vw;
  padding-right: 0;
}

.life-section .swiper-slide-prev .swiper-life-item,
.life-section .swiper-slide-next+.swiper-slide-visible .swiper-life-item {
  padding-left: 0;
  padding-right: 8.5vw;
}

.life-section .swiper-slide-visible.swiper-slide-active {
  padding: 0;
  z-index: 99;
}

.life-section .swiper-slide-visible.swiper-slide-active .swiper-life-item {
  padding: 0;
}

.life-section .swiper-life-item img {
  border-radius: 8px;
}

.swiper-button-next,
.swiper-button-prev {
  opacity: 0;
  ;
}


@media (min-width: 768px) {

  .swiper-button-next,
  .swiper-button-prev {
    opacity: 1;
  }

  .life-section .swiper-slide-visible.swiper-slide-active {
    transform: scale(1.2) !important;
  }

  .life-section .swiper-button-prev,
  .life-section .swiper-button-next {
    background: #818181;
    width: clamp(30px, 3vw, 60px);
    height: clamp(30px, 3vw, 60px);
    border-radius: 50%;
    overflow: hidden;
  }

  .life-section .swiper-button-prev::after,
  .life-section .swiper-button-next::after {
    font-size: clamp(16px, 1.05vw, 24px);
    color: var(--white-color);
  }

  .life-section .swiper-button-prev {
    left: 15.8vw;
  }

  .life-section .swiper-button-next {
    right: 15.8vw;
  }
}

@media (min-width: 992px) {
  .life-section .swiper-button-prev {
    left: 25vw;
  }

  .life-section .swiper-button-next {
    right: 25vw;
  }
}

@media (min-width: 1400px) {
  .life-section .swiper-slide-visible.swiper-slide-active {
    transform: scale(1.5) !important;
  }

  .life-section .swiper-button-prev {
    left: 28.3vw;
  }

  .life-section .swiper-button-next {
    right: 28.3vw;
  }
}


/* life section end */

/*  =========== culture Section Here =========== */
.culture-section {
  background-color: var(--zb-blue1);
}

.culture-section .info {
  margin-top: 50px;
}

.culture-section .info img {
  border-radius: 12px;
}

.service-section .solution {
  position: relative;
  overflow: hidden;
}



.service-section .solution .left .item {
  position: relative;
  z-index: 10;
}

.service-section .solution .right {
  width: 60%;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 8;
  background-image: url("../../assets/images/about/service.jpg");
  background-size: cover;
  background-position: top right;
  background-repeat: no-repeat;
}


.service-section .solution .item-title {
  width: 48%;
  min-width: 564px;
}

.service-section .solution .item.item-content {
  width: 65%;
  min-width: 700px;
  padding-top: clamp(20px, 2.7vw, 60px);
  padding-bottom: clamp(20px, 2.7vw, 60px);
  /* padding-top: 60px;
  padding-bottom: 60px; */
}

.service-section .solution .item .item-info {
  display: flex;
}

.service-section .solution .item:nth-child(1),
.service-section .solution .item:nth-child(5) {
  background-color: #257096;
}

.service-section .solution .item:nth-child(2) {
  background-color: var(--zb-blue1);
}

.service-section .solution .item:nth-child(3) {
  background-color: var(--zb-blue2);
}

.service-section .solution .item:nth-child(4) {
  background-color: var(--zb-blue3);
}

.service-section .solution.solution2 .left {
  float: right;
  display: flex;
  flex-direction: column;
  align-items: end;
  width: 100%;
}

.service-section .solution.solution2 .left .item {
  text-align: right;
  display: flex;
  justify-content: end;
}

.service-section .solution.solution2 .right {
  left: 0;
  right: auto;
  background-image: url("../../assets/images/about/solution.jpg");
}

.service-section .solution.solution3 .right {
  background-image: url("../../assets/images/about/logistics.jpg");
}

/*  =========== culture Section end =========== */