.videowithfeature {
  position: relative;
  width: 100%;
  height: 70vh;
  overflow: hidden;
}

.videowithfeature video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  z-index: -1;
}

.videowithfeature .video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

.videowithfeature .video-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 1;
  text-align: center;
}

.videowithfeature .download-app-link {
  border-radius: 8px;
  padding: 0.5rem 1.2rem;
  background: white;
  color: #004125;
  text-decoration: none;
  display: inline-block;
  font-size: 12px;
}
.videowithfeature .download-app-link:hover {
  background: #47ee40;
}

.videowithfeature .download-app-link img {
  width: 19px;
  padding: 0.2rem;
}

.fea_card_container {
  width: 70%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.fea_card {
  display: flex;
  padding: 14px 34px;
  border-radius: 18px;
  background: rgba(32, 32, 32, 0.6);
  margin: 10px;
  width: 35%;
  backdrop-filter: blur(15px);
  box-shadow: 0px 0px 13px 0px rgba(255, 255, 255, 0.1882352941) inset;
}

.fea_card p {
  text-align: left;
  color: #F4F4F4;
  margin: 0.2rem;
}

.fea_card p span {
  font-weight: 600;
  color: #fff;
}

.fea_card img {
  width: 28px;
  height: 28px;
}

@media (max-width: 768px) {
  .videowithfeature {
    height: 70vh;
  }
  .fea_card_container {
    width: 90%;
  }
  .fea_card {
    width: 100%;
    justify-content: center;
  }
}
