body {
	background: #222;
	color: #fff;
	margin: 0;
	overflow: overlay;
	overflow-x: hidden;
}

body::-webkit-scrollbar {
	width: 10px;
}

body::-webkit-scrollbar-track {
	background: #fff1;
}

body::-webkit-scrollbar-thumb {
	background-color: #0076ffaa;
}


.background {
	width: 100vw;
	height: 100vh;
	position: fixed;
	left: 0;
	top: 0;
	z-index: -20;
}

.bg_vid {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: -20;
	object-fit: cover;
}

.bg_dim {
	background: #000d;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: -10;
}


.index_grid {
	display: grid;
	position: absolute;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	grid-template-columns: 1fr 1fr;
}

a.index_cell.contact {}

a.index_cell.logo {
	justify-content: center;
	align-items: center;
}

a.index_cell {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-direction: column;
	text-decoration: none;
	color: #fff;
	padding: 20px 40px;
	overflow: hidden;
	position: relative;
	transition: .4s;
}

a.index_cell:nth-last-child(1):nth-child(2n-1) {
	grid-column: 1/3;
}

span.function {
	font-size: 3rem;
	font-family: Raleway;
	font-weight: 700;
	color: #fff8;
	text-transform: uppercase;
}

.custom-logo-link {
	max-width: 80vw;
}

a.index_cell h2 {
	font-size: 4rem;
	font-family: Raleway;
	font-weight: 700;
	margin: 0;
	line-height: 5rem;
	transform-origin: left bottom;
	transition: .4s;
}

a.index_cell svg {
	position: absolute;
	left: -140px;
	bottom: -35%;
	/* width: 100%; */
	height: 130%;
	z-index: -1;
	opacity: .2;
	transition: .4s;
}

.bgcolor {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: .2;
	z-index: -2;
	transition: .4s;
}

a.index_cell:hover {
	margin: 20px;
	transition: .4s;
}

a.index_cell:hover .bgcolor {
	opacity: .3;
	transition: .4s;
}

a.index_cell:hover svg {
	opacity: .4;
	filter: brightness(0);
	transform: rotate(3deg);
	transition: .4s;
}




.index_handler {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	align-content: center;
	flex-wrap: nowrap;
	width: 100vw;
	height: 100vh;
	gap: 5vw;
	position: absolute;
	left: 0;
	top: 0;
}

.table_handler {
	overflow: auto;
}

div.menu {
	display: flex;
	flex-direction: row;
	gap: 10px;
}

div.menu li {
	display: contents;
}

div.menu li a {
	color: #fff;
	font-family: Raleway;
	text-decoration: none;
	font-weight: 600;
	font-size: 1.2rem;
	padding: 10px 20px;
	background: #00a2ff70;
	border: 2px solid #00a2ffaa;
	border-radius: 1rem;
	text-align: center;
	transition: .2s ease;
}

div.menu li a:hover {
	background: #00a2ffba;
	transform: scale(1.03);
	transition: .2s ease;
}

.tablepress tfoot th,
.tablepress thead th {
	background: #00aaff23;
}

.tablepress .even td {
	background: #fff1;
}

.tablepress .odd td {
	background: #fff2;
}

.tablepress tbody td,
.tablepress tfoot th {
	border-color: #fff3;
}

.tablepress .row-hover tr:hover td {
	background: #00aaff55;
}


/* MAIN */
header.site-header {
	padding: 20px 30px;
	background: #0047b3;
	display: flex;
	align-items: center;
	justify-content: center;
}


header.site-header div.head_width {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	width: 100%;
	max-width: 1700px;
}

div.site-branding,
a.custom-logo-link {
	display: contents;
}

a.custom-logo-link img {
	height: 40px;
	width: auto;
}

nav#site-navigation {
	text-align: right;
}

.main-navigation ul {
	gap: 15px;
	justify-content: flex-end;
	align-items: center;
}

.main-navigation a {
	color: #fff;
	font-family: Raleway;
	font-weight: 600;
	transition: .2s;
}

.main-navigation a:hover {
	color: #fffa;
	font-family: Raleway;
	transition: .2s;
}

.current-menu-item a {
	font-weight: 800;
	color: #fff;
}

tablepress-1_wrapper {
	max-width: 100vw;
	overflow: auto;
}

header.entry-header {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0px 30px;
	min-height: 20vh;
	overflow: hidden;
}

.info-handler {
	display: flex;
	flex-direction: column;
	height: 40vh;
	width: 100%;
	max-width: 1700px;
	padding: 30px 0;
	align-items: flex-start;
	justify-content: flex-end;
}


span.content-type {
	font-size: 2rem;
	color: #fffa;
	font-family: Raleway;
	text-transform: uppercase;
	font-weight: 800;
	margin-bottom: -10px;
	position: absolute;
	top: 30px;
}

.info-handler svg {
	position: absolute;
	left: -10%;
	bottom: -30%;
	height: 120%;
	opacity: .1;
	transform: rotate(3deg);
	z-index: -1;
}

header.entry-header h1.entry-title {
	margin: 0;
	font-size: 3.2rem;
	font-family: Raleway;
	font-weight: 700;
}

.post-thumbnail {
	display: contents;
	overflow: hidden;
}

.post-thumbnail img {
	position: absolute;
	left: 0;
	top: 0;
	height: 40vh;
	overflow: hidden;
	object-fit: cover;
	z-index: -4;
}

.info-handler:before {
	content: '';
	display: block;
	position: absolute;
	background: radial-gradient(at bottom left, var(--type-grad-color), transparent 40%), #000a;
	width: 100%;
	height: 40vh;
	top: 0;
	left: 0;
	z-index: -3;
}

article {
	width: 100%;
	max-width: 1700px;
	margin: auto;
}

div.site-info {
	padding: 20px 30px;
	margin-top: 20px;
	background: #333;
}

.dataTables_info {
	display: none;
}

.dataTables_wrapper {
	margin-left: calc(-100vw / 2 + 100% / 2);
	margin-right: calc(-100vw / 2 + 100% / 2);
}

.tablepress * {
	color: #fff !important;
}