* {
	box-sizing: border-box;
}

body {
	background: #da4526; /* Old browsers */
	background: -moz-radial-gradient(center, ellipse cover,  #da4526 0%, #d81f27 32%, #990613 100%); /* FF3.6-15 */
	background: -webkit-radial-gradient(center, ellipse cover,  #da4526 0%,#d81f27 32%,#990613 100%); /* Chrome10-25,Safari5.1-6 */
	background: radial-gradient(ellipse at center,  #da4526 0%,#d81f27 32%,#990613 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#da4526', endColorstr='#990613',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
	font-family: "adelle-sans",sans-serif;
	font-weight: bold;
}

.slide-container {
	display: table;
	width: 100%;
	height: 100%;
	transform-style: preserve-3d;
  transition: all 1.0s linear;
}

.slide {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

.logo-slide {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	transition: all .5s ease-in-out;
	z-index: 999;
}

.slide-container.animate .logo-slide {
	opacity: 0;
	z-index: -1;
}

.logo-container, .lead-container {
	display: table;
	width: 100%;
	height: 100%;
	text-align: center;
	/*background: #da4526; /* Old browsers */
	background: -moz-radial-gradient(center, ellipse cover,  #da4526 0%, #d81f27 32%, #990613 100%); /* FF3.6-15 */
	background: -webkit-radial-gradient(center, ellipse cover,  #da4526 0%,#d81f27 32%,#990613 100%); /* Chrome10-25,Safari5.1-6 */
	background: radial-gradient(ellipse at center,  #da4526 0%,#d81f27 32%,#990613 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#da4526', endColorstr='#990613',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */*/
}

.logo-wrap, .lead-wrap {
	display: table-cell;
	vertical-align: middle;
	padding: 75px 200px;
}

.lead {
	opacity: 0;
	color: #f3e9d9;
	z-index: -1;
}

.start-button {
	background-color: rgba(255,255,255,1.0); 
  color: #A2040C;
  padding: 20px 50px;
  font-weight: bold;
  font-size: 1.3em;
  border-radius: 2px;
  border: 2px solid #fff;
  transition: .25s linear;
}

.start-button:hover {
	color: #A2040C;
  font-weight: bold;
  box-shadow: 3px 3px 0 #A2040C; 
}

.start-wrap {
	opacity: 0;
	z-index: -1;
	padding: 50px 0;
}

.slide-container.animate .lead , .slide-container.animate .start-wrap {
	opacity: 1;
	z-index: 999;
	transition: all .5s ease-in;
	transition-delay: .65s;
}

.lead-slide {
	overflow: hidden;
}

.lead.animate {
	opacity: 1;
}

.landing-logo {
	opacity: 1;
	transition: all 1s linear;
}

.landing-logo.animate {
	opacity: 0;
}

.landing-logo.moved {
	opacity: 1;
}

.landing-logo-small {
	position: absolute;
	bottom: -150px;
	right: 20px;
	width: 200px;
	transition: .4s ease-out;
	transition-delay: .65s;
}

.slide-container.animate .landing-logo-small {
	bottom: 20px;
}

.logo-wrap img {
	width: 100%;
	max-width: 767px;
}

.spinner {
  margin: 30px auto 0;
  width: 70px;
  text-align: center;
}

.spinner > div {
  width: 18px;
  height: 18px;
  background-color: #fff;

  border-radius: 100%;
  display: inline-block;
  -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.spinner .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

.spinner .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}

@-webkit-keyframes sk-bouncedelay {
  0%, 80%, 100% { -webkit-transform: scale(0) }
  40% { -webkit-transform: scale(1.0) }
}

@keyframes sk-bouncedelay {
  0%, 80%, 100% { 
    -webkit-transform: scale(0);
    transform: scale(0);
  } 40% { 
    -webkit-transform: scale(1.0);
    transform: scale(1.0);
  }
}

@media screen and (max-width: 640px) {
	.logo-wrap, .lead-wrap {
		padding-left: 30px;
		padding-right: 30px;
	}

	.lead-slide {
		position: fixed;
		overflow-y: scroll;
	}

	.lead-container {
		background: none;
	}

	.lead {
		font-size: 16px;
		margin-top: 160px;
    padding: 0 50px;
	}

	.logo-wrap {
		padding: 0 50px;
	}

	.lead-wrap {
		display: initial;
		padding-top: 160px;
	}

	.landing-logo-small {
		right: initial;
		left: 50%;
		top: -200px;
		bottom: initial;
		margin-left: -100px;
	}

	.slide-container.animate .landing-logo-small {
		top: 40px;
	}
}

@media only screen 
and (min-device-width : 375px) 
and (max-device-width : 667px) 
and (orientation : landscape) {
	.lead-wrap {
		padding: 0 50px;
	}

	.lead {
		font-size: 16px;
	}

	.landing-logo-small {
		width: 150px;
	}

	.slide-container.animate .landing-logo-small {
		bottom: 40px;
	}

}