:root {
	-ms-overflow-style: none;
	scrollbar-width: none;
}

::-webkit-scrollbar {
	display: none;
}

body {
	background-color: #6a6a6a;
	color: rgb(255, 255, 255);
	margin: 0;
	cursor: default;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
	margin-top: 24px;
}

footer {
	margin: 0 auto 12px auto;
}

.footer-text {
	width: 100%;
	text-align: center;
}

#g-scrollbar {
	position: fixed;
	top: 24px;
	bottom: 30px;
	right: 16px;
	width: 8px;
}

#g-scrollhandle {
	position: absolute;
	width: 100%;
	height: 30px;
	top: 0;
	background-color: #0be1cc;
	border-radius: 6px;
	display: none;
	box-shadow: 0 0 8px #444;
}

h1 {
	margin: 0;
	color: #fff;
	text-shadow: 0 0 4px #333;
}

h2 {
	margin: 0;
	color: #0be1cc;
}

h3 {
	color: #fff;
	margin: 0;
	font-size: 1.5rem;
	font-weight: 500;
}

a {
	text-decoration: none;
}
.g-page-title {
	color: #dcdcdc;
	margin-bottom: 30px;
}

.g-page-subtitle {
	white-space: nowrap;
	color: #fff;
	margin-bottom: 8px
}

.g-credits {
	text-align: right;
}

.g-credits>h3 {
	display: inline-block;
	margin-right: 10px;
	vertical-align: middle;
	letter-spacing: 0.3rem;
}

.g-credits>img {
	display: inline-block;
	vertical-align: middle;
}
.g-fine-text {
	color:#d6d6d6;
	font-size: 0.9rem;
}
.g-separator {
	color: #0be1cc;
	border-style: solid;
	border-width: 1px;
	margin: 0 0.5rem;
}

.g-cover {
	box-shadow: 4px 4px 12px 0px rgba(20, 20, 20, 0.5);
	max-width: 100%;
}

.g-nav a {
	color: #d6d6d6;
}

.g-nava:visited {
	color: #d6d6d6;
}

.g-nav a:hover {
	color: #ebebeb;
}

.g-sidebar {
	position: fixed;
	z-index: 1;
	top: 24px;
	left: 0;
	overflow-x: hidden;
	text-align: right;
}

.g-nav {
	margin-top: 30px;
}

.g-nav ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
}

.g-nav ul li {
	margin-bottom: 6px;
	font-weight: 600;
}

.g-active>a {
	color: #0ff4df;
}

.g-content {
	width: 70%;
	margin: 0 auto;
	max-width: 1080px;
}

.g-paragraph {
	margin-bottom: 50px;
}

.g-list {
	padding-left: 1rem;
}

.g-list li {
	margin-bottom: 8px;
}

.g-section {
	margin-bottom: 100px;
	position: relative;
}

.g-section-background {
	position: absolute;
	z-index: -1;
	top: 6px;
	bottom: 6px;
	left: 45px;
	right: 45px;
	background-color: #0be1cc;
}

.g-btn {
	display: block;
	margin-top: 20px;
	text-align: center;
	border-style: solid;
	border-width: 1px;
	border-radius: 6px;
	border-color: #0be1cc;
	color: #fff;
	padding: 10px;
	width: 50%;
	box-sizing: border-box;
}

.g-btn:visited {
	color: #fff;
}

.g-split {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
}

.g-section:nth-of-type(2n-1) .g-split {
	flex-direction: row-reverse;
}

.g-section:nth-of-type(2n-1) .g-split-text {
	margin: 0 45px 0 0;
}

.g-split-text {
	padding: 20px;
	width: 65%;
	border-radius: 6px;
	background-color: #5a5a5a;
	box-shadow: 0 0 8px #333;
	margin: 0 0 0 45px;
	box-sizing: border-box;
}

.g-split-image {
	width: 35%;
	transition: 0.4s ease-out;
}

.g-split-image-shift {
	transform: translateX(45px);
}

.g-section:nth-of-type(2n-1) .g-split-image-shift {
	transform: translateX(-45px);
}

.g-image {
	height: 100%;
	width: 100%;
	object-fit: cover;
	border-style: solid;
	box-shadow: 0 0 8px #333;
	border-radius: 6px;
	box-sizing: border-box;
}

.g-image-story {
	margin: 10px 0;
	width: 50%;
}

.g-split-image .g-portrait {
	width: 100%;
	height: 100%;
	object-fit: cover;
	box-sizing: border-box;
	border-style: solid;
	box-shadow: 0 0 8px #333;
	border-radius: 50%;
}

.g-center-wrap {
	width: 100%;
	text-align: center;
}

#menu_btn {
	display: none;
}

@media only screen and (max-width: 768px) {
	body {
		margin: 0;
	}
	.g-separator {
		margin: 0.1rem 0;
	}
	.g-page-title {
		margin-bottom: 15px;
		text-align: center;
	}
	.g-page-title span {
		display: block;
	}
	.g-credits {
		text-align: center;
	}
	.g-credits>h3 {
		font-size: 1.3rem;
	}
	.g-credits>img {
		max-width: 200px;
	}
	.g-fine-text {
		text-align: center;
		font-size: 0.8rem;
	}
	#g-scrollbar {
		width: 4px;
		right: 2px;
	}
	.g-content {
		width: calc(100% - 28px);
	}
	.g-btn {
		width: 100%;
	}
	.g-paragraph {
		margin-bottom: 30px;
	}
	.g-split-image {
		width: 100%;
		margin-bottom: 20px;
		text-align: center;
	}
	.g-split-text {
		width: 100%;
	}
	.g-split-image .g-image {
		width: 100%;
		height: 260px;
		object-fit: cover;
	}
	.g-split-image-shift {
		transform: translate(0px, 45px) !important;
	}
	.g-split-image .g-portrait {
		height: 260px;
		width: auto;
	}
	.g-image-story {
		margin: 10px 0;
		width: 100%;
	}
	.g-section {
		margin-bottom: 60px;
	}
	.g-section-background {
		width: auto;
		left: 6px;
		right: 6px;
		top: 45px;
		bottom: 45px;
	}
	.g-section .g-split {
		flex-direction: column !important;
	}
	.g-section .g-split .g-split-text {
		margin: 0 !important;
	}
	.g-sidebar {
		background-color: #5a5a5a;
		position: static;
		width: 100%;
		max-width: 1080px;
		margin-bottom: 30px;
		padding: 0 14px;
		box-sizing: border-box;
		text-align: left;
		box-shadow: 0 0 8px #333;
	}
	.g-nav {
		margin: 0;
		display: none;
		text-align: center;
	}
	.g-nav ul li {
		font-size: 1.2rem;
	}
	.g-nav ul li a {
		display: block;
		padding: 6px;
		width: 100%;
	}
	#menu_btn {
		display: inline-block;
	}
	#g-menu {
		position: relative;
		padding: 16px 0;
	}
	.g-menu-btn {
		position: absolute;
		top: 50%;
		right: 0;
		transform: translateY(-50%);
		display: inline-block;
		cursor: pointer;
	}
	.bar1, .bar2, .bar3 {
		width: 35px;
		height: 5px;
		background-color: #fff;
		margin: 6px 0;
		transition: 0.4s;
	}
	/* Rotate first bar */
	.change .bar1 {
		-webkit-transform: rotate(-45deg) translate(-9px, 6px);
		transform: rotate(-45deg) translate(-9px, 6px);
	}
	/* Fade out the second bar */
	.change .bar2 {
		opacity: 0;
	}
	/* Rotate last bar */
	.change .bar3 {
		-webkit-transform: rotate(45deg) translate(-8px, -8px);
		transform: rotate(45deg) translate(-8px, -8px);
	}
}