/* HOME: Vertical Sroller */
.vertical-scroller {
    position: relative;
    width: 650px;
    height: 115px;
    margin: 0 auto;
  }
  .v-window {
    overflow: hidden;
    position: relative;
    height: 115px;
    margin: 0 auto;
    width: 100%;
  }
  #vertical_scroller {
    height: 10000px;
    position: relative;
  }
  .scroll-item {
    height: 115px;
    width: 100%;
    position: absolute;
    top: 0;
    text-align: center;
  }
  .scroll-item:last-child {
    height: 115px;
    width: 100%;
    position: absolute;
    top: 115px;
  }
.scroll-item .line {
    width: 0;
    border-bottom: 1px solid;
    margin: 18px auto 0 auto;
    transition-delay: 1s;
    transition: ease-in width .5s ;
}
.scroll-item.transitioned .line {
    width: 188px;
}

/* HOME: CAROUSEL */
.carousel {
	justify-content: flex-start;
	overflow: hidden;
  padding: 0 0 20px 0;
	position: relative;
	width: 300px;
    margin: 0 auto;
}

.carousel > .container {
	display: flex;
	flex-direction: row;
    align-content: space-between;
    gap: 0 30px;
	transform: translate3d(0, 0, 0);
	transition: transform 600ms;
}

.carousel > nav {
    bottom: 0;
    left: 0;
    position: absolute;
    text-align: center;
    width: 300px;
    z-index: 1;
}

.carousel > nav a {
	color: #fff;
	font-size: 14px;
	opacity: .2;
	text-decoration: none;
}

.carousel > nav a:hover {
	opacity: .5;
}

.carousel > nav a.current {
	opacity: 1;
}

.carousel .slide {
	flex-shrink: 0;
	line-height: 1.4;
	text-align: center;
	width: 300px;
}

.carousel .video-wrap {
	overflow:hidden;
	height:200px;
	width:200px;
	min-width: 200px;
	overflow: hidden;
	border-radius:100px;
	position:relative;
  margin: 0 auto;
	-webkit-transform: translateZ(0);
}

.carousel .video-wrap video {
	position:relative;
	z-index:unset;
	left:-100px;
}

.carousel .slide h3 {
	color: #D9B681;
	padding: 15px 0 8px 0;
	font-size: 20px;
}

.carousel .slide p {
	font-size: 14px;
}

.main-content section.yt-video-section {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  padding-top: 50px;
}

.main-content section.yt-video-section h2 {
  max-width: 300px;
  color: #D9B681;
}
.main-content section#home {
  margin-bottom: 0;
}

#yt_video_iframe_wrapper {
  position: absolute;
  width: 80%;
  height: 75%;
  top: 0;
  left: 10%;
  z-index: 10001;
}
#close_video_iframe {
  position: absolute;
  right: -30px;
  cursor: pointer;
}