/* Typography */
body {
    font-family: 'Open Sans', 'Helvetica', 'Arial', sans-serif;
	font-size: 15px;
	line-height: 28px;
	font-weight: 300;
}
img{
	max-width: 100%;
}
h1,
h2,
h3,
h4,
h5,
h6{
	font-family: 'Raleway', sans-serif;
	color: #333;
	font-weight: 600;
	margin-top: 0;
	margin-bottom: 10px;
	letter-spacing: 1px;
}

/*
* ----------------------------------------------------------------------------------------
* START PRELOADER DESIGN
* ----------------------------------------------------------------------------------------
*/
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    background: #fff;
    z-index: 9999;
    height: 100%;
    width: 100%;
}
.loader_wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -90px 0 0 -150px;
}
.loader{
    width: 300px;
    height: 100px;
    margin: 40px auto;
    position: relative;
}
.loader .loader-inner{
    width: 100px;
    height: 100px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: loading-5 2s infinite alternate;
}
.loader .loader-inner div{
    width: 100%;
    height: 100%;
    background: #000;
    position: absolute;
    top: 0;
    left: 0;
}
.loader .box-1{
    clip-path: polygon(0% 0%, 0% 100%, 50% 50%);
    animation: loading-1 2s infinite alternate;
}
.loader .box-2{
    clip-path: polygon(0% 0%, 100% 0%, 50% 50%);
    animation: loading-2 2s infinite alternate;
}
.loader .box-3{
    clip-path: polygon(100% 0%, 100% 100%, 50% 50%);
    animation: loading-3 2s infinite alternate;
}
.loader .box-4{
    clip-path: polygon(100% 100%, 0% 100%, 50% 50%);
    animation: loading-4 2s infinite alternate;
}
@keyframes loading-1{
    0%,10%{
        background: #000;
        -webkit-clip-path: polygon(0% 0%, 0% 100%, 50% 50%);
        clip-path: polygon(0% 0%, 0% 100%, 50% 50%);
    }
    90%,100%{
        background: #000;
        -webkit-clip-path: polygon(0% 100%, 25% 100%, 12.5% 0%);
        clip-path: polygon(0% 100%, 25% 100%, 12.5% 0%);
    }
}
@keyframes loading-2{
    0%,10%{
        background: #000;
        -webkit-clip-path: polygon(0% 0%, 100% 0%, 50% 50%);
        clip-path: polygon(0% 0%, 100% 0%, 50% 50%);
    }
    90%,100%{
        background: #000;
        -webkit-clip-path: polygon(25% 0%, 50% 0%, 37.5% 100%);
        clip-path: polygon(25% 0%, 50% 0%, 37.5% 100%);
    }
}
@keyframes loading-3{
    0%,10%{
        background: #000;
        -webkit-clip-path: polygon(100% 0%, 100% 100%, 50% 50%);
        clip-path: polygon(100% 0%, 100% 100%, 50% 50%);
    }
    90%,100%{
        background: #000;
        -webkit-clip-path: polygon(62.5% 0%, 75% 100%, 50% 100%);
        clip-path: polygon(62.5% 0%, 75% 100%, 50% 100%);
    }
}
@keyframes loading-4{
    0%,10%{
        background: #000;
        -webkit-clip-path: polygon(100% 100%, 0% 100%, 50% 50%);
        clip-path: polygon(100% 100%, 0% 100%, 50% 50%);
    }
    90%,100%{
        background: #000;
        -webkit-clip-path: polygon(100% 0%, 87.5% 100%, 75% 0%);
        clip-path: polygon(100% 0%, 87.5% 100%, 75% 0%);
    }
}
@keyframes loading-5{
    0%,10%{
        width: 100px;
        height: 100px;
    }
    90%,100%{
        width: 250px;
        height: 60px;
    }
}
/*
* ----------------------------------------------------------------------------------------
* END PRELOADER DESIGN
* ----------------------------------------------------------------------------------------
*/



/*
* ----------------------------------------------------------------------------------------
* START HOME DESIGN
* ----------------------------------------------------------------------------------------
*/
#home{
    padding: 100px 0;
    background: #000;
}
.single_slide_item h1{
	color: #fff;
    font-size: 55px;
    letter-spacing: 2px;
}
.single_slide_item h3 {
    color: #fff;
    margin-bottom: 0;
    font-size: 30px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-top: 40px;
}
/*
* ----------------------------------------------------------------------------------------
* END HOME DESIGN
* ----------------------------------------------------------------------------------------
*/



/*
* ----------------------------------------------------------------------------------------
* START DEMO DESIGN
* ----------------------------------------------------------------------------------------
*/
.section_padding {
    padding: 100px 0 30px;
}
.single_demo{
    margin-bottom: 60px;
}
.single_demo img{
    max-width: 100%;
	opacity: 1;
    box-shadow: 0 8px 40px rgba(0,0,0, 0.1);
	transition: all 0.4s;
}
.single_demo img:hover{
	opacity: 0.7;
    transform: translateY(-10px);
}
.single_demo h4 {
    color: #222;
	text-transform: uppercase;
    font-weight: 600;
    font-size: 18px;
    margin: 40px 0 0;
}
/*
* ----------------------------------------------------------------------------------------
* END DEMO DESIGN
* ----------------------------------------------------------------------------------------
*/



/*
* ----------------------------------------------------------------------------------------
* START COPYRIGHT DESIGN
* ----------------------------------------------------------------------------------------
*/
.copyright_area {
    background: #141414;
}
.copy_text{
	padding: 5px 0;
}
.copy_text p{
	color: #fff;
	margin-top: 20px;
	padding-bottom: 2px;
}

/*
* ----------------------------------------------------------------------------------------
* END COPYRIGHT DESIGN
* ----------------------------------------------------------------------------------------
*/