.inner-banner {
  position: relative;
  height: 440px;
  text-align: center;
  background-color: #f6f6f6;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.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 #012b7e;
  border-radius: 5px;
  color: #012b7e;
}
.section-body .item {
  display: flex;
  justify-content: space-between;
}
.section-body .content {
  display: flex;
  flex-flow: column;
  /* justify-content: space-around; */
  box-sizing: border-box;
  width: 50%;
  padding-left: calc(50% - 1345px / 2);
  padding-right: 0;
  padding-top: 30px;
  padding-bottom: 20px;
}
.section-body .caption-md {
  width: 80%;
}
.section-body .tab-selector li {
  display: inline-block;
  margin-right: 30px;
  margin-top: 5px;
  height: 40px;
  line-height: 40px;
  font-weight: 600;
  color: #999;
  cursor: pointer;
  transition: all 0.15s;
}
.section-body .tab-selector li.active {
  padding: 0 20px;
  border: 1px solid #012b7e;
  border-radius: 20px;
  color: #333;
}
.section-body .tab-content {
  margin: 50px 30px 30px 0;
}
.section-body .content-item {
  display: none;
  filter: opacity(0);
  visibility: hidden;
  transition: all 0.15s;
}
.section-body .content-item.active {
  display: block;
  filter: opacity(1);
  visibility: visible;
}
.section-body .content-item li {
  display: table;
  margin-top: 10px;
}
.section-body .content-item li:before {
  content: "\e922";
  display: table-cell;
  width: 30px;
  font-size: 1.2em;
  color: #012b7e;
  vertical-align: top;
}
.section-body .button-more {
  display: flex;
  justify-content: space-around;
  place-items: center;
  width: 150px;
  height: 48px;
  border-radius: 5px;
  color: #fff;
  background: #012b7e;
}
.section-body .figure {
  position: relative;
  box-sizing: border-box;
  width: 50%;
  cursor: pointer;
}
.section-body .pcatalog {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  box-sizing: border-box;
  padding: 20px 40px;
  background: rgba(255, 255, 255, 0.9);
  filter: opacity(0);
  transition: filter 0.3s 0.3s ease;
}
.section-body .figure:hover .pcatalog {
  filter: opacity(1);
}
.section-body .pcatalog ul {
  margin-top: 15px;
  white-space: nowrap;
  overflow: hidden;
}
.section-body .pcatalog li {
  display: inline-block;
  box-sizing: border-box;
  width: calc((100% - 200px) / 4);
  padding: 15px;
  margin-right: 40px;
  border: 1px solid #dcdcdc;
  border-radius: 5px;
  white-space: normal;
  text-align: center;
  vertical-align: top;
}
.section-body .pcatalog p {
  margin-top: 10px;
  font-size: 14px;
}
.section-body .item:nth-child(2n + 2) {
  flex-flow: row-reverse;
}
.section-body .item:nth-child(2n + 2) .content {
  padding-left: 30px;
  padding-right: calc(50% - 1345px / 2);
}

/* responsive */
@media (max-width: 1345px) {
  .inner-banner .presentation {
    max-width: 100%;
    width: calc(100% - 30px);
  }
  .section-body .item {
    position: relative;
    padding: 30px 15px;
  }
  .section-body .content {
    width: 100%;
    padding: 0;
  }
  .section-body .item:nth-child(2n + 2) .content {
    padding-left: 0;
  }
  .section-body .tab-selector {
    margin-top: 20px;
    white-space: nowrap;
    overflow: auto;
  }
  .section-body .button-more {
    margin-top: 20px;
  }
  .section-body .figure {
    display: none;
  }
}
@media (max-width: 1024px) {
  .inner-banner h1 {
    font-size: 40px;
    margin-bottom: 0;
  }
  .section-body .button-more {
    width: 120px;
    height: 40px;
  }
}
@media (max-width: 780px) {
  .inner-banner {
    height: 200px;
  }
  .inner-banner h1 {
    font-size: 30px;
  }
  .inner-banner .button-inquiry {
    display: none;
  }
  .section-body .tab-selector {
    font-size: 14px;
  }
  .section-body .tab-selector li {
    height: 35px;
    line-height: 35px;
  }
}
@media (max-width: 600px) {
  .inner-banner p {
    display: none;
  }
}
