.opener {
	width: 100%;
	display: block;
	position: relative;
	height: 70vh;
	z-index: 6;
	box-shadow: 0 0 8px 0px rgba(0, 0, 0, 0.5);
}

.opener img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: brightness(70%); /* 100% = normal, lower = darker */
	mask-image: radial-gradient(circle, rgba(0, 0, 0, 1) 85%, rgba(0, 0, 0, 0) 100%);
}

.opener .opener_contents {
	position: absolute;
	width: 100%;
	top: 50%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	vertical-align: middle;
}

.opener_contents h2 {
	font-size: 48px;
	font-weight: 600;
	color: #fff;
	letter-spacing: 2px;
}

.opener_contents span.subtitle {
	font-size: 16px;
	font-weight: 400;
	color: #fff;
	letter-spacing: 10px;
}



.container {
	display: flex;
	justify-content: space-between;
	background-color: #111;
	width: 100%;
	padding: 2.5% 0;
}

.row {
	text-align: center;
	width: auto;
	padding: 0 5%;
	margin: auto;
	color: #ccc;
}

.profilePic img {
	aspect-ratio: 9 / 16;
	object-fit: cover;
	border-radius: 5%;
	height: 500px;
	margin-bottom: 16px;
	/*box-shadow: 0 0 600px 0 rgba(255, 255, 255, 0.5);*/
}



.about {
	height: 100%;
	background: #111;
	text-align: center;
	color: white;
}

.bio {
	width: 100%;
}

.bio h1 {
	/*padding: 64px 0 16px;*/
	padding-bottom: 16px;
}

.bio p {
	padding: 32px 0 0;
	font-size: 22px;
	font-weight: 400;
	letter-spacing: 0.5px;
	/*letter-spacing: -0.22px;*/
	line-height: 36px;
}

.description {
	height: 10vh;
}



.tagd {
	width: 100%;
	display: block;
	position: relative;
	height: 70vh;
}

.tagd video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.tagd_contents {
	position: absolute;
	padding: 16px;
	border-radius: 12px;
	top: 50%;
	top: 45%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	vertical-align: middle;
	background-color: rgba(0, 0, 0, 0.5);
	opacity: 0;
	transition: 0.25s ease;
}

/* Only show when parent is hovered */
.tagd:hover .tagd_contents {
    opacity: 1;
}

.tagd_contents span.text {
	font-size: 16px;
	font-weight: 400;
	color: #fff;
}

.tagd_contents h2,
.tagd_contents a {
	font-size: 48px;
	font-weight: 600;
	color: #fff;
	text-decoration: none;
	font-style: normal;
}

.tagd_contents a:hover {
	font-style: italic;
}

