/* ########## CORE STYLES ########## */

html {min-height: 100%;height: 100%;}

body {
	margin: 0;
	padding: 0;
	font-size: 10px;
	line-height: 1.2em;	
	font-family: 'Fira Sans', sans-serif;
	background: linear-gradient(to right,rgb(237,125,50),rgb(35,31,32));
    background-size: cover;
    background-position: left center;
    background-attachment: fixed;
	color: rgba(35,31,32,1);
	position: relative;
	min-height: 100%;
	height: 100%;
    -webkit-text-size-adjust: 100%;
} 

hr {
	background: rgba(35,31,32,0.1);
	height: 5px;
	border: none;
	margin: 3rem 0 2rem 0;
	padding: 0;
	clear: both;
}

.shell {
	display: table;
	margin: 0 auto;
}

.wrapper {
	margin: 0;
    padding: 0;
	width: 100%;
    max-width: 100%;
	vertical-align: middle;
	position: relative;
	display: table-cell;
	box-sizing: border-box;	
	z-index: 10;
	background: rgb(255,255,255);
	box-shadow: 0 0 50px rgba(0,0,0,1);
}
   
.container {
	max-width: 400px;
}

.disclaimer {
    font-size: 0.8rem;
    line-height: 1.5rem;
    text-align: center;
    padding: 2em 0;

}

.accent-image {
	max-width: 300px;
	margin-top: 3rem;
}

.clear {clear: both;}
a img {border: none;}

a:link, a:visited {color: rgb(35,31,32); text-decoration: none;}
.card a:link, .card a:visited {color: rgb(35,31,32); text-decoration: none;}
.wrapper .inner a:link, .wrapper .inner a:visited {color: rgb(35,31,32); text-decoration: none;}
.wrapper .inner a:hover, .wrapper .inner a:active,
.card a:hover, .card a:active,
a:hover, a:active {color: rgb(237,125,50); text-decoration: underline;}

/* ########## CONTENT STYLES ########## */

.logo {
	opacity: 1;
	width: 100%;
    position: relative;
    z-index: 2;
    max-width: 300px;
    margin: 0 auto;
	display: block;
}

.adjust-image-mnt {
    overflow: hidden;
    position: relative;
}

.adjust-image-mnt img {
    position: absolute;
    left: 0;
    top: 25%;
    width: 110%;
}

/* ########## TYPOGRAPHY STYLES ########## */

h1, h2, h3, h4, h5, h6 {
	padding: 0;
	margin: 0.5em 0 0 0;
	line-height: 1em;
    font-family: 'Fira Sans', sans-serif;
    font-weight: 800;
    font-style: normal;
    color: rgb(35,31,32);
}

h1 {
	font-size: 5em;
}

h2 {
	font-size: 3em;
}

h3 {
	font-size: 2em;
}

h4, h5, h6 {
	font-size: 1.4em;
}

p {
	margin:  0.5em 0;
	padding: 0;
    font-size: 1rem;
    line-height: 1.5em;
}

.text-primary,a.text-primary {
	color: rgb(237,125,50) !important;
}

.text-secondary,a.text-secondary {
	color: rgb(237,125,50) !important;
}

.text-lead {
	font-size: 2.5em;
	line-height: 1.2em;
	font-weight: 200;
	margin: 2rem 0;
}

.text-lead strong {
    font-weight: 700;
}


/* ########## RESPONSIVE STYLES ########## */

@media (min-width: 500px) {
	body {
		background: linear-gradient(to right,rgb(237,125,50),rgb(35,31,32) 75%);
	}
}

@media (min-width: 768px) {

	.shell {
		margin: 0;
		width: 50%;
		overflow: visible;
	}
	.shell:before {
		content: '';
		display: block;
		position: absolute;
		top: 0;
		right: 0;
		height: 50%;
		width: 50%;
		background: url('../images/bg-image-1.jpg') no-repeat;
		background-position: top center;
		background-size: cover;
		z-index: 1;
	}
	.shell:after {
		content: '';
		display: block;
		position: absolute;
		top: 50%;
		right: 0;
		height: 50%;
		width: 50%;
		background: url('../images/bg-image-2.jpg') no-repeat;
		background-position: center;
		background-size: cover;
		z-index: 1;
	}
	.wrapper {
		overflow: visible;
		z-index: 10;
	}
	.wrapper:before {
		content: '';
		display: block;
		position: absolute;
		top: calc(50% - 150px);
		left: 100%;
		width: 100%;
		height: 300px;
		background: url('../images/emblem-accent.svg') no-repeat;
		background-size: contain;
		background-position: center;
		z-index: 1;
	}
}

/* ##### ANIMATIONS ##### */

.defer-display {
    opacity: 0;
}

.stage-1 {
    animation: deferDisplay 500ms both;
    animation-delay: 0.5s;
    opacity: 1;
}

.stage-2 {
    animation: deferDisplay 500ms both;
    animation-delay: 1.5s;
    opacity: 1;
}

.stage-3 {
    animation: deferDisplay 500ms both;
    animation-delay: 2.5s;
    opacity: 1;
}

.stage-4 {
    animation: deferDisplay 1000ms both;
    animation-delay: 4s;
    opacity: 1;
}

@keyframes deferDisplay{
  0% {opacity: 0;}
  100% {opacity: 1;}
}

@keyframes bounce{
  25%{transform: scale(1.15);}
  50%{transform: scale(0.85);}
  75%{transform: scale(1.1);}
  100%{transform: scale(1.0);}
}