body {
	font-family: 'Raleway', sans-serif;
	text-align: center;
}
/* Link Style */
a:link {
    text-decoration: none;
}
img{
	max-width: 100%;
}
/* -- Logo Holder Styles -- */
.banner-wrapper{
	background-image: url(banner_bg.jpg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	padding: 150px 0;
}
.logo-holder{
	background-color: #f9f9f9;
	width: 100%;	
}
.logo-holder h2{
	font-size: 26px;
	font-weight: 700;
	margin-top: 20px;
	margin-bottom: 10px;
	padding: 0;
}
.logo-holder h2 a{
	color: #202020;
	padding-top: 4px;
	padding-bottom: 4px;
	padding-left: 10px;
	padding-right: 10px;
	border: solid 2px #202020;
}
.logo-holder h4{
	color: #202020;
	font-weight: 600;
	padding: 20px 0;
}
.demo-heading h2{
	font-size: 30px;
	font-weight: 700;
	color: #202020;
	text-transform: capitalize;
	text-align: center;
	padding-bottom: 60px;
}
.hero {
	margin: 80px 0;
	text-align: center;
	position: relative;
	z-index: 1;	
}
.hero:after{
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-image: url(demo-shape.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	z-index: -1;
	opacity: 0.3;
	animation: up-down 4s infinite alternate-reverse;
}
@keyframes up-down {
    0%,
    100% {
        transform: translateY(-20px);
    }
    50% {
        transform: translateY(0px);
    }
}
.img-responsive {
	display: inline-block;
}
.btn-primary, .ld, .ct, .bk{
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.btn-primary {
	width: 60%;
	padding: 12px 0;
	font-size: 20px;
	font-weight: 700;
	margin-top: 10px;
	margin-bottom: 10px;
	border: none;
	color: #202020;
	background-image: -webkit-linear-gradient(top, #ffc600, #F2B900);
  	background-image: -moz-linear-gradient(top, #ffc600, #F2B900);
  	background-image: -ms-linear-gradient(top, #ffc600, #F2B900);
 	background-image: -o-linear-gradient(top, #ffc600, #F2B900);
 	background-image: linear-gradient(to bottom, #ffc600, #F2B900);
}
.btn-primary:hover, .btn-primary:active{
	color: #F2B900;
	background-image: -webkit-linear-gradient(top, #202020, #000);
  	background-image: -moz-linear-gradient(top, #202020, #000);
  	background-image: -ms-linear-gradient(top, #202020, #000);
 	background-image: -o-linear-gradient(top, #202020, #000);
 	background-image: linear-gradient(to bottom, #202020, #000);
}
/* Footer */
.footer {	
	background-color: #F2B900;
	color: #202020;
}
.copyright{
	margin-bottom: 0;
	padding: 20px 0 15px 0;
	font-weight: 600;
	
}