.basicinfo {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

#bgVideo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  background-color: #fff;
}

.content-wrapper {
  position: relative;
  z-index: 1;
  padding: 20px;
  max-width: 90%;
}

.headline-basic {
  color: #1b1b1b;
  font-size: 3.4rem;
  font-family: "Poppins-Extra-Bold";
  margin-bottom: 20px;
}

.headline-basic span {
  color: #283891;
}

.introbasic {
  color: #1b1b1b;
  font-size: 1.3rem;
  font-family: "Poppins-Regular";
  text-align: left;
}

@media screen and (max-width: 1197px) {
  .headline-basic {
    font-size: 3rem;
  }
}

@media screen and (max-width: 786px) {
  .basicinfo {
    height: auto;
  }
  .headline-basic {
    font-size: 2.7rem;
    text-align: left;
  }

  .introbasic {
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 360px) {
  .headline-basic {
    font-size: 1.5rem;
  }

  .introbasic {
    font-size: 0.9rem;
  }
}
