.inner-banner {
  position: relative;
  height: 600px;
  color: #fff;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  text-align: center;
}
.inner-banner .presentation {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1345px;
  line-height: 1.5;
}
.inner-banner h1 {
  font-family: Montserrat;
  line-height: 1.2;
  font-size: 36px;
  font-weight: 400;
  margin-bottom: 20px;
}
.inner-banner ul {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  font-weight: 600;
}
.inner-banner li {
  padding: 0 30px;
}
.inner-banner li:before {
  display: flex;
  place-items: center;
  justify-content: space-around;
  box-sizing: border-box;
  width: 124px;
  height: 124px;
  border: 1px solid #fff;
  border-radius: 50%;
  margin: 0 auto 20px auto;
  font-size: 3em;
  transition: all 0.3s;
}
.inner-banner li:nth-child(1):before {
  content: "\e941";
}
.inner-banner li:nth-child(2):before {
  content: "\e927";
}
.inner-banner li:nth-child(3):before {
  content: "\e915";
}
.inner-banner li:nth-child(4):before {
  content: "\e914";
}
.inner-banner li:nth-child(5):before {
  content: "\e913";
}
.inner-banner li:hover:before {
  border: none;
  background: linear-gradient(135deg, #8cabe7, #4968a7);
}
.intelligent {
  margin-top: 50px;
}
.intelligent .items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 25px;
  margin-top: 20px;
}
.intelligent .item {
  background: #f9f9f9;
}
.intelligent .content {
  padding: 40px 30px;
  line-height: 1.5;
}
.intelligent h3 {
  margin-bottom: 20px;
  color: #012b7f;
}
.intelligent li {
  display: table;
  margin-top: 10px;
}
.intelligent li::before {
  content: "\e922";
  display: table-cell;
  width: 30px;
  font-size: 1.2em;
  color: #012b7e;
  vertical-align: top;
}
.commitment {
  margin-top: 60px;
  background: url(../img/service-commitment.png) no-repeat center bottom;
}
.commitment .items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 80px;
  padding: 50px 0;
  text-align: center;
}
.commitment i {
  font-family: Montserrat;
  font-size: 110px;
  font-style: normal;
  font-weight: 600;
  line-height: 1;
  padding-left: 20%;
  transition: all 0.3s;
}
.commitment sup {
  display: inline-block;
  padding: 4px 10px;
  line-height: 1;
  color: #fff;
  vertical-align: top;
  background: #333;
  transition: all 0.3s;
}
.commitment p {
  margin-top: 20px;
}
.commitment .item:hover i {
  color: #012b7f;
}
.commitment .item:hover sup {
  background: #012b7f;
}

/* responsive */
@media (max-width: 1345px) {
  .inner-banner .presentation {
    width: calc(100% - 30px);
    left: 15px;
    right: 15px;
    transform: translateY(-50%);
  }
}
@media (max-width: 1024px) {
  .inner-banner ul {
    display: block;
    margin-top: 30px;
    white-space: nowrap;
    overflow: auto;
  }
  .inner-banner li {
    display: inline-block;
    width: 150px;
    padding: 0;
    white-space: normal;
    vertical-align: top;
  }
  .inner-banner li:before {
    width: 100px;
    height: 100px;
  }
  .intelligent .items {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .intelligent .content {
    padding: 15px;
  }
  .commitment .items {
    grid-template-columns: 1fr 1fr;
    grid-gap: 15px;
  }
  .commitment i {
    font-size: 60px;
    padding-left: 0;
  }
  .commitment sup {
    padding: 2px 8px;
  }
  .commitment p {
    margin-top: 15px;
    font-size: 14px;
    line-height: 1.2;
  }
}
