.hero-video {
  width: 100vw;
  height: 450px;
  overflow: hidden;
  position: relative;
  max-width: 100%;
}
.hero-video .background-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw;
  min-height: 100vh;
  min-width: 177.78vh;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.text-section {
  padding: 20px;
  text-align: right;
}
.text-section ul {
  list-style: none;
  padding: 0;
}
.text-section ul li {
  margin-bottom: 10px;
}

.carousel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  overflow: auto;
}
.carousel .slide {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 150px;
}
.carousel .slide img {
  width: 100%;
  height: auto;
}

.business-lovers {
  text-align: center;
  margin-top: 30px;
}
.business-lovers h2 {
  font-size: 24px;
  margin-bottom: 20px;
}
.business-lovers .lover-box {
  display: inline-block;
  margin: 10px;
}
.business-lovers .lover-box img {
  width: 100px;
  height: auto;
}
.business-lovers .lover-box p {
  margin-top: 5px;
}

#ability-section {
  background: #fbfbfb;
  margin-top: -2px;
  padding: 25px;
}
#ability-section .grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr 20px 1fr;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: right;
  width: 100%;
}
#ability-section .grid-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 8px;
}
#ability-section .icon {
  width: 50px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-left: 15px;
}
#ability-section .icon svg {
  width: 100%;
  height: 100%;
  stroke: #333;
}
#ability-section .text h3 {
  font-size: 18px;
  margin: 0;
  color: #222;
  font-weight: bold;
}
#ability-section .text p {
  font-size: 14px;
  color: #666;
}