section.hero-home-yt {
	height:90vh;
	min-height:600px;
	position:relative;
	display:flex;
	flex-direction:column;
	justify-content:end;
	overflow: hidden;
}

/*.hero-yt-video {
	/*position: absolute;
  	right: 0;
  	bottom: 0;
  	min-width: 100%;
  	min-height: 100%;
  	object-fit: cover;*/

  	 -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -100;
}*/

.hero-yt-video-wrapper {
  position: relative;
  overflow: hidden;
  width: 100vw;
  height: 100vh;
}

.hero-yt-video-wrapper iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 100vh;
  transform: translate(-50%, -50%);
}

@media (min-aspect-ratio: 16/9) {
  .hero-yt-video-wrapper iframe {
    /* height = 100 * (9 / 16) = 56.25 */
    height: 56.25vw;
  }
}
@media (max-aspect-ratio: 16/9) {
  .hero-yt-video-wrapper iframe {
    /* width = 100 / (9 / 16) = 177.777777 */
    width: 177.78vh;
  }
}

.hero-panel {
	margin:0 -2px;
	padding-top: 2px;
	padding-bottom: 2px;
}

.hero-panel-container {
	display: flex;
	flex-direction:column;
	max-width: var(--site-width);
	margin:	auto;
	align-items: flex-start;
	overflow: hidden;
}

.hero-panel-container > img.desktop {
	margin: 0 var(--site-padding);
}

.hero-panel-container > img.mobile {
	width:100%;
}


.hero-panel-cta-wrapper {
	display: flex;
}

.hero-panel-cta-wrapper a:first-child {
	margin-right:1rem;
}

.hero-panel-container h1,
.hero-panel-cta {
	padding: var(--site-padding);
	margin-bottom:0px;
}

.hero-home-flourish {
    z-index: 0;
    display: flex;
    align-items: center;
    position: absolute;
    top: 6rem;
    left: calc(100% - 1rem);
    transform: rotate(90deg);
    transform-origin: top left;
}

.hero-home-flourish span {
    flex: 1 0 auto;
    margin-right: 1rem;
}

@media screen and (min-width:769px) {
	.hero-panel-container {
		flex-direction:row;
		align-items: center;
	}
}

.h6 {
	margin: 0 0 20px 0;
	font-size: 16px;
	line-height: 1;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #ffffff;
	font-weight: 500;
	font-style: normal;
	font-family: Jura;
}