/* HTML & BODY */
html{
	height: 100%;
}
html body{
	min-height: 100%;
	height: 0;
	display: flex;
	flex-direction: column;
}
/* END HTML & BODY */

/* HEADER */
header {
    background-color: black;
    /*position: sticky;*/
    top: 0;
    width: 100%;
    z-index: 9999;
	font-family: Arial, Helvetica, sans-serif;
}
/*
.sticky-header {
	position:fixed;
}*/
.elite-sticky-header {
    opacity: 0.9;
}
.logo {
    margin: 14px 0;
}
.logo:hover {
	text-decoration: none;
	opacity: 0.9;
}
@media (min-width: 960px) {
	.logo {
		margin: 10px 0;
	}
}
.logo img{
	max-width: 120px;
	width: auto;
}
@media (min-width: 960px) {
	.logo img{
		max-width: 256px;
	}
}
/*@media (min-width: 576px) {
	.logo img{
		max-height: 68px;
	}
}
@media (min-width: 768px) {
	.logo img{
		max-height: 76px;
	}
}*/
.header .btn:not(.nav-mobile-btn) {
    background-color: #d3d3d3;
    color: #000000;
    border-radius: 4px;
    border: none;
    border-width: 1px;
    padding: 8px 12px;
    font-size: 17px;
    font-weight: 700;
    line-height: normal;
	transition: all .15s ease-in-out;
}
.header .btn:not(.nav-mobile-btn):hover {
	text-decoration: none;
	opacity: 0.9;
}
@media (max-width: 959px) {
	.header .btn:not(.nav-mobile-btn) {
		margin-right: 20px;
	}
}
@media (min-width: 960px) {
	.header .btn:not(.nav-mobile-btn) {
		margin-left: 20px;
		font-size: 15px;
	}
	.header.container {
		max-width: 1170px;
	}
	.header > .row > * {
		margin: 8px 0;
	}
}
.nav-links ul,
.nav-mobile ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}
.nav-links ul {
    display: flex;
    flex-direction: row;
}
.nav-links ul li:not(:first-child) {
    margin-left: 25px;
}
.nav-links ul li a {
	font-size: 15px;
	color: #ffffff;
}
.nav-links ul li:hover a {
	text-decoration: none;
	color: #0366d6;
}
@media (max-width: 959px) {
	.nav-links {
		display: none;
	}
}
.btn.nav-mobile-btn {
    padding: 10px 15px;
    border-radius: 3px;
    border: 1px solid #ffffff;
    background-color: transparent;
}
@media (min-width: 960px) {
	.btn.nav-mobile-btn {
		display: none;
	}
}
.nav-mobile-btn-bar {
	transition: all .1s ease;
    position: relative;
    display: block;
    background-color: white;
    border-radius: 2px;
    width: 15px;
    height: 2px;
}
.nav-mobile-btn-bar:nth-child(2) {
    margin: 3px 0;
}
.nav-mobile {
    position: absolute;
    z-index: 99999;
    top: 0;
    left: 0;
    bottom: 0;
	right: 0;
	visibility: hidden;
	transition: visibility .5s;
}
.nav-mobile.nav-mobile-show {
	visibility: visible;
}
.nav-mobile-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,.5);
    z-index: 100000;
	visibility: hidden;
}
.nav-mobile.nav-mobile-show .nav-mobile-overlay {
	visibility: visible;
}
.nav-mobile-container {
	z-index: 100001;
	position: absolute;
    background-color: #000000;
	top: 0;
	left: 0;
	width: 100%;
	max-width: 360px;
    height: 100vh;
	box-shadow: 0 0 10px 0 rgba(0,0,0,.4);
    transform: translate3d(-100%,0,0);
    transition: transform .5s cubic-bezier(.79,.14,.15,.86);
}
.nav-mobile.nav-mobile-show .nav-mobile-container {
    transform: translate3d(0,0,0);
}
.nav-mobile-container > * {
    display: block;
}
.nav-mobile-links {
    padding: calc(1.2em + 4px) 15px;
    font-size: 17px;
    display: flex;
    flex-direction: column;
}
.nav-mobile-btn-close-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    z-index: 999910;
    padding: 8px 10px;
}
.nav-mobile-container .btn.nav-mobile-btn-close {
    border-color: #404248;
}
.nav-mobile-container .nav-mobile-btn-close .nav-mobile-btn-bar {
    background-color: #404248;
}
.nav-mobile-btn-close .nav-mobile-btn-bar:nth-child(2) {
    opacity: 0;
}
.nav-mobile-btn-close .nav-mobile-btn-bar:first-child {
    transform: rotate(45deg);
    top: 5px;
}
.nav-mobile-btn-close .nav-mobile-btn-bar:last-child {
    transform: rotate(-45deg);
    bottom: 5px;
}
.nav-mobile-links {
	transition: transform .3s,opacity .3s;
    transform: translateY(45px);
    opacity: 0;
}
.nav-mobile.nav-mobile-show .nav-mobile-links {
	opacity: 1;
	transform: translateY(0);
}
.nav-mobile-links ul li {
    padding: 3px 0;
}
.nav-mobile-links ul li a {
    text-transform: uppercase;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.9em;
    font-weight: 500;
	color: #ffffff;
    line-height: 1.6em;
	letter-spacing: 0px;
    height: 25px;
    padding: 3px 0;
    display: block;
}
.nav-mobile-links ul li:hover a {
	color: #0366d6;
}
/* END HEADER */

/* CONTENT */
header + .container {
	padding: 2rem 0;
	flex: 1 0 auto;
	height: auto;
}
/* END CONTENT */

/* FOOTER */
footer {
    background-color: black;
	flex-shrink: 0;
}
.footer-bottom {
	font-size: 14px;
}
/* END FOOTER */