*{
    -ms-overflow-style: none;  // IE 10+
    overflow: -moz-scrollbars-none;  // Firefox
}

*::-webkit-scrollbar {
    display: none; // Safari and Chrome
}


html, body{
	width: 100vw;
	height: 100vh;
	overflow: hidden;
	font-family: "San Francisco", "Helvetica", "Arial", sans-serif;
	color: white;
	margin: 0;
	padding: 0;
}

body{
	background: #CCC url('./images/banners/homeScreen/Homepage_Hero_Large_Retina.jpg');
	background-size: cover;
}

img{
	max-width: 100%;
	width: auto;
}

.pageView{
	overflow-y: scroll;
	box-sizing: border-box;
	margin: 20px;
}

h1.pageTitle{
	text-align: center;
	font-weight: 500;
	font-size: 60px;
}

#bgblur{
	position: absolute;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: rgba(0,0,0,.5);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	z-index: 0;
}

.tabView{
	width: auto;
	margin: 40px auto;
	display: inline-block;
	position: relative;
	padding: 0;
	left: 50%;
	transform: translateX(-50%);
}

.tabView.segmented{
	background: rgba(0,0,0,.5);
	border-radius: 40px;
	position: relative;
}

.tabView.segmented .tabItem{
	display: inline-block;
	border-radius: 40px;
	border: transparent 1px solid;
	color: rgba(255,255,255,.7);
	padding: 20px 35px;
	font-size: 28px;
	cursor: default;
	z-index: 2;
	position: relative;
	font-weight: 700;
}

.tabView.segmented .tabItem.selected{
	background: rgba(0,0,0,0);
	color: #232323;
}

.tabView.segmented .highlight{
	border-radius: 35px;
	padding: 0 35px;
	font-size: 22px;
	display: block;
	position: absolute;
	background: white;
	content: "";
	top: 4px;
	height: 64px;
	z-index: 0;
	box-shadow: 0 0 10px rgba(0,0,0,.5);
}

#pageViews{
	position: relative;
}



.hstack{
	display: flex;
	flex-direction: row;
	justify-content: center;
}

.hstack > div{
	padding: 24px;
}

.hstack > .image{
	width: 700px;
	height: 0;
	padding-bottom: 30%;
	overflow: hidden;
}

.hstack > .content{
	min-width: 600;
}


.vstack{
	display: flex;
	flex-direction: column;
	justify-content: center;
}


ul.list{
	margin: 0;
	padding: 0;
	position: relative;
}

ul.list li{
	display: block;
	color: white;
	border-radius: 40px;
	border: transparent 1px solid;
	padding: 20px 20px;
	margin: 0;
	font-size: 32px;
	cursor: default;
	z-index: 2;
	position: relative;
}

ul.list li.selected{
	background: rgba(0,0,0,0);
	color: #232323;
	padding-left: 6px;
}

ul.list  .highlight{
	border-radius: 10px;
	padding: 20px 20px;
	font-size: 32px;
	display: block;
	position: absolute;
	background: rgba(255,255,255,.75);
	content: "";
	top: 0;
	height: 40px;
	z-index: 0;
	width: 100%;
}


.grid{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	width: 80%;
	margin: 0 auto;
	position: relative;
	overflow: scroll;
    height: 65vh;
}

.grid .gridItem{
	width: 33%;
	padding: 32px;
	box-sizing: border-box;
}

.grid .gridItem .image{
	height: 260px;
	overflow: hidden;
}

.grid .gridItem .image img{
	position: relative;
	top: -50px;
}

.grid .gridItem .label,
.grid .gridItem .info{
	font-size: 32px;
}

.grid .highlight{
	border-radius: 10px;
	padding: 0;
	font-size: 32px;
	display: block;
	position: absolute;
	background: rgba(255,255,255,.75);
	content: "";
	z-index: 0;
}