* {
	box-sizing: border-box;
}

html {
	height: 100%;
}

body {
	margin: 0;
	background: #FFFFFF;
	font-family: 'Outfit', sans-serif;
}

a {
	text-decoration: none;
	cursor: pointer;
}

::selection {
	background: #001AFF;
	color: #FFFFFF;
}

/* -------------------- NAVIGATION -------------------- */

nav {
	height: 5vw;
	width: 100%;
/* */
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: center;
	align-content: stretch;
/* */
	border-bottom: 1px solid #EEEEEE;
}

#logo {
	display: block;
	margin-left: 1vw;
	height: 3vw;
	width: 3vw;
/* */
	color: transparent;
/* */
	background: url(../img/logo.svg) center center no-repeat;
	background-size: contain;
}

#topnav {
	display: inline-block;
	height: 5vw;
}

#topnav a {
	height: 5vw;
	padding: 0 1vw;
/* */
	font-weight: 300;
	font-size: 1vw;
	line-height: 5vw;
	color: #555555;
}

#topnav a:hover {
	color: #000000;
}

#topsub {
	height: 5vw;
	width: 30%;
/* */
	text-align: right;
}

#submit-ref {
	display: inline-block;
	margin: 1.25vw 1.5vw 0 0;
	padding: 0 1vw;
	height: 2.5vw;
/* */
	font-weight: 500;
	font-size: 1vw;
	line-height: 2.5vw;
	color: #FFFFFF;
/* */
	background: #001AFF;
	border-radius: 0.5vw;
}

#submit-ref:hover {
	padding: 0 1.5vw;
	background: #00014D;
	transition: padding 2s, background-color 2s;
}

/* -------------------- FOOTER -------------------- */

footer {
	display: block;
	padding: 4vw;
	width: 100%;
/* */
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: center;
	align-content: stretch;
/* */
	background: linear-gradient(120deg,#00014D 0%, #00014D 68%, #F6F6F6 68%, #F6F6F6 100%);
}

#logotype {
	display: block;
	height: 7vw;
	width: 22vw;
/* */
	color: transparent;
/* */
	background: url(../img/logotype.svg) center center no-repeat;
	background-size: contain;
}

#lefty p {
	margin: 3vw 0 0 0;
/* */
	text-transform: uppercase;
	font-family: 'Roboto', monospace;
	font-weight: 200;
	font-size: 0.6vw;
	line-height: 1;
	color: #AAAAAA;
}

#lefty p a {
	color: #FFFFFF;
}

#righty {
	margin-right: 2vw;
}

#rebellious {
	display: block;
	height: 8vw;
	width: 17vw;
/* */
	color: transparent;
/* */
	background: url(../img/rebel.svg) center center no-repeat;
	background-size: contain;
}

#righty p {
	margin: 1vw 0 0 0;
/* */
	text-align: right;
	font-weight: 500;
	font-size: 1.2vw;
	line-height: 1;
	color: #CCCCCC;
}

/* -------------------- MEDIA -------------------- */

@media only screen and (max-width: 1032px) {

}

@media only screen and (max-width: 744px) and (orientation: portrait) {



}