.inner-banner {
  position: relative;
  height: 400px;
  color: #fff;
  text-align: center;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.inner-banner .presentation {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 70%;
}
.inner-banner h1 {
  font-family: Montserrat;
  line-height: 1.2;
  font-size: 48px;
  font-weight: 400;
  margin-bottom: 20px;
}
.inner-banner .button-inquiry {
  display: inline-block;
  padding: 15px 30px;
  margin: 40px auto 0 auto;
  border: 1px solid #fff;
  border-radius: 5px;
  color: #fff;
}
.component-video {
  margin-bottom: 0;
}
.component-request {
  margin-top: 0;
}
.section-body {
  padding-top: 50px;
  padding-bottom: 50px;
}
.section-body .items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 120px;
  grid-row-gap: 50px;
  margin-top: 60px;
  text-align: center;
}
.section-body .item {
  display: flex;
  justify-content: space-around;
  place-items: center;
}
.section-body .material {
  width: 180px;
  /* height: 60px; */
  margin-right: 20px;
  filter: grayscale(1);
  vertical-align: middle;
  filter: contrast(0.5);
}
.section-body .item span {
  display: block;
  width: calc(100% - 70px);
  text-align: left;
}

/* responsive */
@media (max-width: 1345px) {
  .inner-banner .presentation {
    max-width: 90%;
    width: 98%;
  }
}
@media (max-width: 1024px) {
  .inner-banner h1 {
    font-size: 30px;
    margin-bottom: 15px;
  }
  .inner-banner .button-inquiry {
    padding: 10px 15px;
    margin-top: 15px;
  }
  .section-body {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .section-body .items {
    grid-column-gap: 15px;
    grid-row-gap: 30px;
    margin-top: 30px;
  }
  .section-body .item {
    flex-wrap: wrap;
  }
  .section-body .item span {
    width: 100%;
    text-align: center;
  }
  .section-body .material {
    display: block;
    margin: 0 auto;
  }
}
@media (max-width: 600px) {
  .section-body .items {
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 15px;
    font-size: 14px;
  }
  .section-body .material {
    width: 50px;
    height: 50px;
  }
}
