.header {
  position: relative;
}
.header-bg {
  background: none;
  height: 752px;
  position: relative;
  overflow: hidden;
}
.header-bg .limit-content {
  position: relative;
  z-index: 3;
}
.header-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
}
.video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.video-bg video {
  width: 100%;
  height: 100%;
}
.second-title {
  margin: 0 150px;
}

.list-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-bottom: 120px;
}

.list-box .box-item {
  border-radius: 20px;
  padding: 40px;
  border: 1px solid #d0d5db;
  box-shadow: 0 1.5px 4px -1px rgba(16, 25, 40, 0.07);
  transition: all 0.3s;
}
.list-box .box-item:hover {
  transition: all 0.3s;
  border-color: #00bfa6;
  box-shadow: 0 2px 30px -1px rgba(0, 191, 166, 0.1);
}
.list-box .box-item .title {
  margin-top: 80px;
  color: #162f4b;
  font-size: 40px;
  font-weight: 500;
  line-height: 48px; /* 120% */
  letter-spacing: -1.6px;
  margin-bottom: 14px;
}
.list-box .box-item .second-title{
  color: #3A4E68;
  font-size: 30px;
  font-weight: 400;
  margin: 0 0;
  margin-bottom: 14px;
}
.list-box .box-item .desc {
  color: #738293;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
}
