/*JOMOTO CSS*/
/* fonts */
@import url('https://fonts.googleapis.com/css?family=Raleway');
@import url('https://fonts.googleapis.com/css?family=Oswald');

/* disable ligatures */
* {
font-variant-ligatures: none;
}

/* GLOBAL SYTLES */


h1 a:visited{
	color:white;
}

h1 {
	color: white;
	font-size: 40px;
	text-transform: uppercase;
	margin-top: 40px;
}

h2 {
	font-size: 18px;
	text-transform: uppercase;
	font-weight: 200;
	color: rgb(256, 130, 80);
}

h3 {
	font-size: 12px;
	letter-spacing: 4px;
	font-weight: 200;
	color: lightblue;
	/* text-indent: 20px; /*DEACTIVATE IF FLOAT DISABLED */
}

a {
	text-decoration: none;
	color: rgb(256, 130, 80); /*theme-orange*/
}

a:visited{
	color: rgb(256, 130, 80);
}

a:hover{
	color: white;
}

a:active {
	color: rgb(256, 130, 80);
}

.main_nav {
	display: inline-block;
	word-spacing: 0px;
	background-color: rgb(30, 40, 60);
	padding: 5px;
}

.footer_nav {
	display: inline-block;
	word-spacing: 10px;
	background-color: rgb(30, 40, 60);
	padding: 5px;
}

footer {
	margin-bottom: 60px;
}

/*
Font shorthand example:
font: italic small-caps normal 13px/150% Arial, Helvetica, sans-serif;
*/

html, body {
	margin: 0;
	padding: 0;
	height: 100%;
	width: 100%;
	color: lightgrey;
	font: normal 10px/1.5em 'Raleway', Arial, sans-serif;
	letter-spacing: 2px;
}

body {
	background-color: rgb(20, 30, 40);
}

img {
	max-width: 100%;
	height: auto;
}

.partner_logo {
	max-width: 250px;
	height:	auto;

}

.dropcap:first-letter {
    float: left;
    font-size: 45px;
    line-height: 1;
    font-weight: bold;
    margin-top: 3px;
    margin-right: 6px;
}

.button {
	background-color: #328eff;
	/* jomoto logo blue = 328eff */
	border: none;
	color: coral;
	padding: 8px 15px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 10px;
}

.container {
	max-width: 80%;
	margin: auto; 
}

.container_logo {
	padding-top: 200px;
}

.span {
	max-width: 70%;
	margin-top: 40px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 40px;
}


p {
	font-size: 120%;
	letter-spacing: 2px;
}

.box {
	margin-bottom: 40px;
	/*
	float: left;
	width: 33.3%;
	padding: 20px;
	box-sizing: border-box;
	padding-left: 0;
	*/
}

/* USED FOR CLEARING FLOATS */
.clr{
	clear: both;
}

/* END GLOBAL STYLES */

.splash_logo {
	max-width: 200px
}

/* splash */
.intro {
	height: 100%;
	width: 100%;
	margin: auto;
	background-image: url(../img/splash_blue.jpg);
	display: table;
	top: 0;
	background-size: cover;
}

.intro .inner {
	display: table-cell;
	vertical-align: middle;
	width: 100%
	max-width: none; 
}

.content {
	max-width: 500px;
	margin: 0 auto;
	text-align: left;
	background-color: rgba(0, 0, 0, .75);
	padding: 20px;
}


#animate {
	 background: url('../img/logo_f2.svg');
	width: 400px;
	height: 104px;
 	margin: 2% auto;
}

/* ANIMATION LOOP
#animate {
  width: 400px;
  height: 104px;
  margin: 2% auto;
  background: url('../img/logo_f2.svg') left center;
  animation: play .2s steps(2) infinite;
}

@keyframes play {
    100% { background-position: 800px; }
}
*/
/*
h1{
text-transform: lowercase;
font-family: 'Raleway', sans-serif;
font-size: 50px;
letter-spacing: 5px;
color:#f9f3f4;
}
*/

#tag{
	margin-top: 5px;
	margin-bottom: 20px;
	font-family: 'Raleway', sans-serif;
	font-weight: 200;
	font-size: 15px;
	letter-spacing: 4px;
	/* orange = rgb(222, 72, 46);*/
	color: lightgrey;
	text-align: center;
}

#s_nav{
	font-size: 10px;
	font-family: 'arial', sans-serif;
	color: white;
	text-align: center;
	letter-spacing: 2px;
}

/* hover STATE */
#s_nav:hover{
	color: rgb(222, 72, 46);
}

/* active STATE */
#s_nav:active{
	color: white;
}

.copyright {
	max-width: 200px;
	padding: 10px;
	margin: auto;
}

.contact_text {
	text-align: left;
}

.contact_links {
	font-weight: 600;
}

/* end splash */

/* mobile */
/* ON HOLD
@media screen and (max-width: 760px) {
	.content h1 {
		font-size: 200%;
	}

	#s_nav {
		font-size: 10px;
	}

}