body{
	font-family: 'Open Sans Condensed', arial;
	background-color:white !important;
}
#header-one{
	margin-top: 5px;
}

#features{
	margin-left:50px;
}

.vr-all {
	padding:0px;
	border-right:1px solid #CC0000;
}
.vr-xs {
	padding:0px;
}
.vr-md {
	padding:0px;
}
.hrspacing { padding:0px; }
.hrcolor {
	border-color: #CC0000;
	border-style: solid;
	border-bottom: 1px;
	margin:0px;
	padding:0px;
}
/* remove right vertical rule on small */
@media(min-width:992px){
	.vr-xs {
		border-right:1px solid #CC0000;
	}
	}
#image-box{
	 width:200px;
  height:200px;
  /*border:1px solid red;*/
}
#text-box{
  width:800px;
  height:200px;
  /*border:1px solid blue;*/
}
#kit {
  width: 50%;
  margin: 0 auto;
}

#f1-box{
  width:400px;
  height:80px;
  float: left;
}

#f2-box{
  width:400px;
  height:80px;
  float: left;
  margin-left: 25px;
}

#f3-box{
	width:250px;
	height:80px;
	float: left;
}

 #apply-btn{
 	background-color:#6E295B !important;
	transition: transform .2s; /* Animation */
}

 #apply-btn:hover {
  transform: scale(1.1); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
}
/* Centered text */
.centered {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  color:white;
}


.scroll-left {
 height: 50px;	
 overflow: hidden;
 position: relative;
 background: white;
 color:rgb(32,41,69);;
 font-size:25px;
}
.scroll-left p {
 position: absolute;
 width: 100%;
 height: 100%;
 margin: 0;
 line-height: 50px;
 text-align: center;
 /* Starting position */
 -moz-transform:translateX(100%);
 -webkit-transform:translateX(100%);	
 transform:translateX(100%);
 /* Apply animation to this element */	
 -moz-animation: scroll-left 15s linear infinite;
 -webkit-animation: scroll-left 15s linear infinite;
 animation: scroll-left 15s linear infinite;
}
/* Move it (define the animation) */
@-moz-keyframes scroll-left {
 0%   { -moz-transform: translateX(100%); }
 100% { -moz-transform: translateX(-100%); }
}
@-webkit-keyframes scroll-left {
 0%   { -webkit-transform: translateX(100%); }
 100% { -webkit-transform: translateX(-100%); }
}
@keyframes scroll-left {
 0%   { 
 -moz-transform: translateX(100%); /* Browser bug fix */
 -webkit-transform: translateX(100%); /* Browser bug fix */
 transform: translateX(100%); 		
 }
 100% { 
 -moz-transform: translateX(-100%); /* Browser bug fix */
 -webkit-transform: translateX(-100%); /* Browser bug fix */
 transform: translateX(-100%); 
 }
}



