html, body {
	min-height: 100%;
	margin: 0;
	padding: 0
}

* {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
} 

@-webkit-keyframes rotating /* Safari and Chrome */ {
  from {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rotating {
  from {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}


body {
	font-family: 'Open Sans', sans-serif;
	background: url('../img/redesign/bg-foxy.jpg') center center no-repeat;
	background-size: cover;
	text-align: center;
	font-size: 100%;
	line-height: 100%;
}

#overlay {
	width: 100%;
	height: 100%;
	background: rgba(246,82,38,0.85);
	position: fixed;
	left: 0;
	top: 0;
	z-index: 0
}

body.done #overlay {
	background: rgba(54,56,69,0.8);
}

#holder {
  width: 100%;
	position: relative;
	z-index: 1;
	position: fixed;
	left: 50%;
	top: 50%;
	transform: translateX(-50%) translateY(-50%);
	text-align: center;
	padding: 0px 30px;

}

#holder_ins {
  width: 100%;
  display: inline-block;
  max-width: 1000px
}

#logo {
	width: 100%;
	max-width: 240px;
	height: auto;
	margin-top: 55px;
	display: inline-block;
	border: 0;
	z-index: 1;
	position: relative
}

#text {
	width: 100%;
	color: #fff;
	font-size: 2.7em;
	line-height: 1.6em;
	font-weight: 300;
	display: inline-block;
}

#wheels {
	margin-top: 70px;
	display: inline-block;
	border: 0
}

#wheels div {
  display: inline-block
}

#wheels .wheel1 {     
  float: left;
	margin-top: 60px;
	display: inline-block;
  border: 0;
  -webkit-animation: rotating 6s linear infinite;
  animation: rotating 6s linear infinite;
}

#wheels .wheel2 {
  float: left;
	display: inline-block;
  border: 0;
  -webkit-animation: rotating 6s linear infinite;
  animation: rotating 6s linear infinite;
}

.btn {
  width: auto;
  height: 100px;
  line-height: 40px;
  padding: 30px 20px;
  background: rgb(240,77,49);
  color: #fff;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  font-weight: 600;
  border-radius: 5px;
  font-size: 1.3em;
  margin-top: 160px;
  transition: 300ms linear
} 

.btn:hover {
  background: #c0392b 
}

.btn br {
  display: none
}



@media screen and (max-height: 850px) {

  #text {
  	font-size: 2.4em;
  	margin-top: 70px
  }
  
  #wheels {
  	margin-top: 70px
  }
  
  .btn {
  	margin-top: 80px
  }
  
  #holder {
  	position: relative;
  	left: auto;
  	top: auto;
  	transform: none
  }
  
}

@media screen and (max-width: 1400px) {

  #text {
  	font-size: 2.4em;
  }

}
@media screen and (max-width: 991px) {

  #logo {
  	margin-top: 40px;
  	max-width: 200px
  }
  
  #text {
  	font-size: 2.1em;
  	margin-top: 70px
  }
  
  #wheels .wheel1 {
    width: 180px;
    height: 180px;
    margin-top: 40px
  }
  
  #wheels .wheel2 {
    width: 130px;
    height: 130px
  }

}
@media screen and (max-width: 480px) {

  #text {
  	font-size: 1.7em;
  	margin-top: 50px
  }
  
  #wheels {
  	max-width: 90%;
  	height: auto;
  	margin-top: 50px
  }
  
  #wheels .wheel1 {
    width: 120px;
    height: 120px;
    margin-top: 40px
  }
  
  #wheels .wheel2 {
    width: 87px;
    height: 87px
  }
  
  .btn br {
    display: inline-block
  }

  .btn {
    line-height: 30px;
    padding: 20px 30px;
    font-size: 1.1em
  }
  
}