@import url('https://fonts.googleapis.com/css?family=Roboto+Slab:400,700');
@import url('https://fonts.googleapis.com/css?family=Lato:400,900');

/* 
font-family: 'Roboto Slab', serif; 
font-family: 'Lato', sans-serif;
*/

/* 

colors 

yellow / orange = #ffe1a7;
orange / red = #ec8857;
mint green = #bfdec3;
black = #444444;
white = #ffffff;

*/

/* Font and Body Set */
h1, h2, a, button {
    font-family: 'Roboto Slab', serif; 
    color: #444444;
}

.total h2 {
    font-size: 36px;
}

p {
    font-family: 'Lato', sans-serif;
    color: #444444;
}

body {
    width: 1280px;
    margin: auto;
}


/* Navigation, Scrolling Banner, and Side Bar */
nav {
	margin-top: -25px;
    position: fixed;
}

.logo {
    background: #bfdec3;
    margin-top: -250px;
    width: 250px;
    height: 250px;
    border-radius: 150px;
    float: left;
}

.logo img {
    margin: 25px;
}

.menu {
	background: #ec8857;
    margin: 0 0 0 130px;
	width: 1110px;
	height: 50px;
	float: left;
}

.menu li {
	display: inline;
	margin: 15px 100px 5px -40px;
	float: right;
}

.menu li a {
	color: #444;
    font-family: 'Roboto Slab', serif;
	text-align: center;
	text-decoration: none;
	font-size: 18px;
	transition: color 0.5s ease-in-out;
}

.banner {
    width: 1150px;
    height: 200px;
    margin-left: 130px;
}

.side-bar {
    background: #ffe1a7;
    width: 50px;
    height: 100vh;
    margin: -100px 100px 0 100px;
}


/* Content */
#content {
    padding: 250px 0 0 250px;
    margin: 25px;
    text-align: center;
	position: relative;
}

#content h1 {
    font-size: 30px
}

#content button {
    color: #ec8857;
    background: #bfdec3;
    margin: 0 0 25px 0;
    padding: 5px;
    border-radius: 10px;
    font-size: 24px;
}

#content p {
    width: 600px;
    margin: auto;
}

.restart {
    float: left;
}

.next {
    float: right;
}

.steps1, .steps2, .steps3, .steps4, .steps5, .steps6, .steps7, .total  {
    display: none;
}


/* Replace Checkbox with Image */

input {
    display: none;
  }
   
input:checked + label {
    background: #bfdec3;
    border-radius: 15px;
    display: inline-block; 
    }





/* Carousel */

#container {
    width: 1150px;
    overflow: hidden;
    margin: 50px auto;
    background: #fff;
    z-index: -1;
    position: relative;
}

#carousel {
	height: 200px;
	width: 1500px;
}

#first {
	-webkit-animation: bannermove 30s linear infinite;
	   -moz-animation: bannermove 30s linear infinite;
	    -ms-animation: bannermove 30s linear infinite;
	     -o-animation: bannermove 30s linear infinite;
	        animation: bannermove 30s linear infinite;
}
 
@keyframes "bannermove" {
 0% {
    margin-left: -1000px;
 }
 100% {
    margin-left: 0px;
 }
 
}
 
@-moz-keyframes bannermove {
 0% {
   margin-left: -1000px;
 }
 100% {
   margin-left: 0px;
 }
 
}
 
@-webkit-keyframes "bannermove" {
 0% {
   margin-left: -1000px;
 }
 100% {
   margin-left: 0px;
 }
 
}
 
@-ms-keyframes "bannermove" {
 0% {
   margin-left: -1000px;
 }
 100% {
   margin-left: 0px;
 }
 
}
 
@-o-keyframes "bannermove" {
 0% {
   margin-left: -1000px;
 }
 100% {
   margin-left: 0px;
 }
 
}




















