@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');
html,
body {
	background-color: rgb(33, 22, 51);
	height: 100%;
	margin: 0;
	overflow-x: hidden;
	font-family: 'Raleway', 'Verdana', sans-serif;
	font-size: 16px;
}
img {
	margin-bottom: -4px
}
.header {
	display: table;
	position: fixed;
	width: 100%;
	top: 0;
	right: 0;
	left: 0;
	z-index: 10
}
.header span {
	position: relative;
	display: table-cell;
	vertical-align: middle;
	z-index: 10;
	white-space: nowrap;
	padding: 20px;
	background-color: rgba(0, 0, 0, 0.3)
}
.header span:first-child {
	width: 100%
}
.header div {
	position: absolute;
	z-index: 9;
	backdrop-filter: blur(20px);
	top: 0;
	right: 0;
	bottom: 0;
	left: 0
}
.header span:nth-child(1) a img {
	height: 40px;
	width: auto;
	filter: brightness(0) invert(1);
}
.header span:nth-child(3) a img {
	height: 30px;
	width: auto;
	opacity: .7
}
.header a,
.header a:visited {
	color: white;
	text-decoration: none
}
.header a:hover {
	text-decoration: underline
}
.banner {
	position: relative;
	background-color: white;
	padding-bottom: 40%;
	background-position: bottom;
	background-size: cover;
	overflow: hidden
}
.banner_fix {
	position: absolute;
	height: 1px;
	background-color: white;
	z-index: 1;
	bottom: 0;
	left: 0;
	right: 0;
}
.content {
	background-color: #cccccc;
}
.footer {
	display: table;
	width: 100%;
	color: rgba(255, 255, 255, 0.75);
	font-size: 85%
}
.footer div {
	display: table-cell;
	width: calc(100%/3);
	vertical-align: top;
	padding: 20px;
	box-sizing: border-box
}
.footer div:last-child {
	padding-bottom: 20px
}
.footer div p:first-child {
	margin-top: 0
}
.footer div p:last-child {
	margin-bottom: 0
}
.open_menu img {
	transition: .5s
}
.close_menu img {
	transform: rotate(90deg);
}
nav {
	position: fixed;
	right: -25%;
	bottom: 0;
	top: 79px;
	background-color: rgba(0, 0, 0, 0.8);
	z-index: 10;
	width: 25%;
	height: auto;
	overflow: hidden;
	transition: .5s;
	padding: 20px;
	box-sizing: border-box;
	text-transform: capitalize
}
.nav_open {
	right: 0;
}
nav div {
	overflow-y: scroll;
	height: 100%;
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	padding: 20px;
	box-sizing: border-box;
}
nav a,
nav a:visited {
	color: white;
	text-decoration: none;
	opacity: .5
}
nav a:hover {
	opacity: 1
}
nav ul {
	margin: 0;
	padding: 0;
	list-style: none
}
nav li {
	line-height: 2em
}
.show_sub_menu {
	cursor: default;
	pointer-events: none;
	opacity: 1;
	color: #496B42
}
.tab_menu_item {
	padding-left: 20px
}
.content_text_block {
	padding: 20px;
	box-sizing: border-box;
	max-width: 1024px;
	margin: auto;
}
.content_text_block h1:first-of-type {
	margin-top: 0
}
.image_float_right,
.image_float_left {
	margin-bottom: 20px
}
.image_float_right {
	float: right;
	margin-left: 20px
}
.image_float_left {
	float: left;
	margin-right: 20px
}
.clear_both {
	clear: both
}
.home_images div {
	display: inline-flex;
	width: calc(100%/4);
	box-sizing: border-box;
	aspect-ratio: 1.4;
	background-size: cover;
	background-position: center
}
@media screen and (max-width: 1024px) {
	nav {
		right: -35%;
		width: 35%;
	}
}
@media screen and (max-width: 900px) {
	html,
	body {
		background-color: rgb(33, 29, 38);
		font-size: 14px;
	}
	.header span:nth-child(2) a {
		opacity: 0;
		font-size: 0
	}
	.footer {
		display: block;
		font-size: inherit
	}
	.footer div {
		display: block;
		width: 100%;
		padding-bottom: 0
	}
	nav {
		right: -100%;
		width: 100%;
	}
	.banner {
		padding-bottom: 80%;
	}
	.home_images div {
		width: calc(100%/2);
	}
}