/*
Template Name : Ureka - Creative Portfolio Template
Author        : Abubakar Siddique
Version       : 1.0

*/

/******************* Typography ******************/
*{
	padding:0;
	margin:0;
}
img{
	border:none;
	outline:none;
	max-width:100%;
}
a,a:active,a:focus,a:hover{
	outline:none;
	text-decoration:none;
}
a{
	-webkit-transition:all 0.35s ease-in-out;
	-moz-transition:all 0.35s ease-in-out;
	-ms-transition:all 0.35s ease-in-out;
	-o-transition:all 0.35s ease-in-out;
	transition:all 0.35s ease-in-out;
	color:#333;
}
a:hover{
	color:#f68000;
}
input:focus,textarea:focus,select:focus{
	outline:none!important;
	box-shadow:none;
}
ul{
	margin:0;
	list-style-type:none;
}
h1{
	font-size:50px;
	color:#fff;
	font-weight:900;
	line-height:normal;
	margin:0 0 15px;
	text-transform:uppercase;
}
h2{
	font-size:22px;
	color:#333;
	font-weight:800;
	line-height:normal;
	margin:0 0 20px;
	position:relative;
	text-transform:uppercase;
}

h3{
	font-size:20px;
	color:#333;
	font-weight:700;
	line-height:normal;
	margin:0 0 15px;
	position:relative;
}
h4{
	font-size:16px;
	color:#333;
	font-weight:400;
	line-height:normal;
	position:relative;
	text-transform:capitalize;
	margin:0;
}
h5{
	font-size:14px;
	color:#333;
	font-weight:400;
	line-height:normal;
	position:relative;
	text-transform:capitalize;
	margin:0;
	font-style:italic;
}
h1 span{
	color:#f68000 ;
}

p{
	font-size:16px;
	margin:0 0 35px;
	color:#333;
	font-weight:400;
	line-height:26px;
}
.btn{
	font-size:13px;
	text-transform:uppercase;
	font-weight:600;
	width:auto;
	line-height:42px;
	padding:0 25px;
	display:inline-block;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	-webkit-transition:all 0.35s ease-in-out;
	-moz-transition:all 0.35s ease-in-out;
	-ms-transition:all 0.35s ease-in-out;
	-o-transition:all 0.35s ease-in-out;
	transition:all 0.35s ease-in-out;
	position:relative;
}
.btn::before{
	content: "";
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	background: rgba(255,255,255,0.2);
	-webkit-transform: scaleY(0);
	transform: scaleY(0);
	-webkit-transform-origin: 100% 50%;
	transform-origin: 100% 50%;
	-webkit-transition-property: transform;
	transition-property: transform;
	-webkit-transition-duration: 0.5s;
	transition-duration: 0.5s;
	-webkit-transition-timing-function: ease-out;
	transition-timing-function: ease-out;
}
.btn-primary.disabled:focus,
.btn.btn-primary{
	background:#f68000 ;
	color:#fff;
	border:2px solid #f68000;
	opacity:1;
}
.btn.btn-primary:hover:before, 
.btn.btn-primary:focus:before{
	-webkit-transform: scaleY(1);
	transform: scaleY(1);
	-webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
	transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

.btn.btn-default{
	border:2px solid #f68000 ;
	background:none;
	color:#f68000 ;
}
.btn.btn-default:hover{
	background:#f68000 ;
	border-color:#f68000 ;
	color:#fff;
}
.btn.btn-primary:hover{
	background:none ;
	border-color:#f68000 ;
	color:#f68000;
}
a + a {
    margin-left: 20px;
}

/****************************** General *****************************/
body {
    font-family: 'Raleway', sans-serif;
    color: #333;
    background: #fff;
    font-size: 16px;
	line-height:26px;
	position:relative;
	overflow-x:hidden;
}
body, html { 
	height: 100%;
}
.container{
	width:100%;
	max-width:1170px;
}
/*==================== Pre Loader ======================*/
.preloader{
	position:fixed;
	top:0;
	left:0;
	right:0;
	bottom:0;
	background:#ffffff;
	z-index:13000;
	height:100%;
}
.preloader_image{
	width:130px;
	height:130px;
	position:absolute;
	left:50%;
	top:50%;
	-webkit-transform:translate(-50%,-50%);
	-moz-transform:translate(-50%,-50%);
	-ms-transform:translate(-50%,-50%);
	transform:translate(-50%,-50%);
}
.sk-double-bounce {
	width: 40px;
	height: 40px;
	position: relative;
	margin: 40px auto;
}
.sk-double-bounce .sk-child {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background-color: #000;
	opacity: 0.6;
	position: absolute;
	top: 0;
	left: 0;
	-webkit-animation: sk-doubleBounce 2s infinite ease-in-out;
	animation: sk-doubleBounce 2s infinite ease-in-out; 
}
.sk-double-bounce .sk-double-bounce2 {
	-webkit-animation-delay: -1.0s;
	animation-delay: -1.0s; 
}

@-webkit-keyframes sk-doubleBounce {
	0%, 100% {
		-webkit-transform: scale(0);
		transform: scale(0); 
	}
	50% {
		-webkit-transform: scale(1);
		transform: scale(1); 
	} 
}

@keyframes sk-doubleBounce {
	0%, 100% {
		-webkit-transform: scale(0);
		transform: scale(0); 
	}
	50% {
		-webkit-transform: scale(1);
		transform: scale(1); 
	} 
}

/*======================= Content =========================*/
.content{
	width:100%;
	float:left;
	height:auto;
	padding:50px 0 50px;
}
.header{
	width:100%;
	float:left;
	height:auto;
	padding:100px 0;
	background:url(img/bg.jpg) no-repeat center center;
	-webkit-background-size:cover;
	-moz-background-size:cover;
	-ms-background-size:cover;
	background-size:cover;
	background-attachment:fixed;
	position:relative;
}
.header::before{
	width:100%;
	height:100%;
	position:absolute;
	left:0;
	top:0;
	content:'';
	background:rgba(0,0,0,0.5);
}
.header p{
	color:#fff;
}
.demo-block {
    width: 100%;
    padding: 50px 50px 0;
    display: block;
    margin: 0 auto;
}
.demo {
    width: 100%;
    float: left;
    height: auto;
    margin: 0px 0px 50px;
	-webkit-transition:all 0.3s ease-in-out;
	-moz-transition:all 0.3s ease-in-out;
	-ms-transition:all 0.3s ease-in-out;
	transition:all 0.3s ease-in-out;
}
.demo:hover{
	-webkit-transform:translateY(-20px);
	-ms-transform:translateY(-20px);
	-moz-transform:translateY(-20px);
	transform:translateY(-20px);
}
.thumb{
	width:100%;
	float:left;
	height:auto;
}
.thumb img{
	width:100%;
	height:auto;
}
.demo-info{
	width: 100%;
    float: left;
    height: auto;
	padding:20px 20px 30px;
	background:#f5f5f5;
}
.footer{
	width:100%;
	float:left;
	height:auto;
	background:#050505;
	position:relative;
	padding:20px 0;
}
.footer p{
	margin:0;
	font-size:14px;
	color:#fff;
}

/*=================== Responsive Design ==================*/

@media only screen and (max-width: 479px){

}

@media only screen and (min-width: 480px) and (max-width:639px) {

}
@media only screen and (max-width: 639px){


}

@media only screen and (min-width: 640px) and (max-width:767px) {
}

@media only screen and (max-width: 767px){
.demo-block{
	padding:0;
}

}

@media only screen and (min-width: 768px) and (max-width:991px) {
.demo-block{
	padding:0;
}
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
}

@media only screen and (min-width: 1200px){

}
@media only screen and (min-width: 1200px) and (max-width: 1330px) {

}