.welcomeContent {
  max-width: 720px;
  margin: 0 auto;
}

p {
  font-size: 20px;
  line-height: 1.5em;
}

.videoBox {
  overflow: hidden;
}

.iframeBox {
  display: none;
}

.playBtnArea {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.playBtn {
  max-width: 20%;
  cursor: pointer;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 0px;
  height: 0;
  overflow: hidden;
  border-radius: 0;
}

.video-container iframe,
.video-container object,
.video-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 0px !important;
  background-color: #000;
}

@media (max-width: 991.98px) {
  p {
    font-size: 18px;
  }
}

@media (max-width: 767.98px) {
  p {
    font-size: 16px;
  }
}

