.overview{
	font-family: "IBM Plex Sans", Arial, sans-serif;
}

.overview_top{
	text-align: center;
	padding: 50px 30px 36px;
}
.overview_top .logo{
	max-width: 170px;
	display: inline-block;
	margin-top: 10px;
	margin-bottom: 20px;
}


.tabs_wrapper{
	height: calc(100vh - 50px);
	display: flex;
	flex-direction: column;
}
.tabs_wrapper .tabs{
	flex: 0 0 auto;
}
.tabs_content{
	flex: 1 1 auto;
}
.tabs_item,
.tabs_item embed{
	width: 100%;
	height: 100%;
}

.tabs{
	display: flex;
	justify-content: center;
}
.tabs a{
	display: block;
	position: relative;
	padding: 8px 16px 12px;
	cursor: pointer;
	overflow: hidden;
	font-size: 17px;
}
.tabs a::after{
	content: "";
	position: absolute;
	bottom: -4px;
	height: 4px;
	left: 15px;
	right: 15px;
	border-radius: 4px 4px 0 0;
	transition: all 200ms;
}
.tabs a:hover::after,
.tabs a:focus::after{
	background: #ccc;
	bottom: 0;
}
.tabs a.selected{
	color: #6600FF;
	font-weight: 500;
}
.tabs a.selected::after{
	background: #6600FF;
	bottom: 0;
}


/* Video */
.overview video{
	max-width: 100%;
	max-height: 70vh;
	border: solid 1px #eee;
	margin-top: 10px;
}