.maincontent {
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    border: none;
}

.home-intro-wrapper.main-wrapper.content-wrapper {
	flex-flow: row wrap;
}

#svgBG {
	height: 100%;
	max-height: 600px;
}

.video-container {
    position: relative;
    width: 100%; 
    max-width: 800px; 
    overflow: hidden;
    border-radius: 10px; 
	background: #000;
}

.video-container iframe {
	position: relative;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
	border-radius: 10px;
}

.staff-global {
	background: #fdfdfd;
	margin-top: 40px;
}

.staff-wrapper {
    max-width: 1500px;
}

.staff-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    list-style: none;
    margin: 0 auto;
    padding: 0;
}

.staff-item {
    position: relative;
display: flex;
flex-flow: row wrap;
    max-width: 1600px;
    width: 100%;
    width: 100%;
    margin: 20px auto;
padding: 20px;
}

.staff-text,
.staff-image {
flex: 1 450px;
}

.staff-item img {
max-width: 500px;
    width: 100%;
    height: auto;
    transition: filter .6s;
}

.staff-item h3 {
    width: 100%;
    text-align: center;
    padding: 0 15px;
    font-size: 1.45em;
    z-index: 1;
    transition: opacity .6s;
}

.staff-title {
    display: block;
    margin-top: 10px;
    font-size: .65em;
    line-height: 1.3em;
}

/* Responsive 16:9 area that shows a poster before click */
.video-facade {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;      /* modern browsers */
  background: #000;
  overflow: hidden;
  cursor: pointer;
  border-radius: 8px;
}
@supports not (aspect-ratio: 16/9) {
  .video-facade { height: 0; padding-bottom: 56.25%; }
  .video-facade > * { position: absolute; inset: 0; }
}

/* Placeholder layout */
.video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Simple play button */
.play-button {
  position: absolute;
  width: 68px; height: 68px;
  background: rgba(0,0,0,.55);
  border-radius: 50%;
}
.play-button::before {
  content: "";
  position: absolute;
  left: 26px; top: 20px;
  border-style: solid;
  border-width: 14px 0 14px 24px;
  border-color: transparent transparent transparent #fff;
}

/* Ensure injected <video> fills the same box */
.video-facade video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  background: #000;
  border: 0;
  outline: 0;
}