/* Typography */
body {
    font-family: 'Poppins', sans-serif;
	font-size: 15px;
	line-height: 28px;
	font-weight: 300;
}
img{
	max-width: 100%;
}
h1,
h2,
h3,
h4,
h5,
h6{
	font-family: 'Poppins', sans-serif;
	color: #333;
	font-weight: 600;
	margin-top: 0;
	margin-bottom: 10px;
	letter-spacing: 1px;
}
/*
* ----------------------------------------------------------------------------------------
* START PRELOADER DESIGN
* ----------------------------------------------------------------------------------------
*/
.preloader {
    background: #fff;
    bottom: 0;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 99999;
}

.status-mes {
    width: 80px;
    height: 80px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -40px 0 0 -40px;
    font-size: 10px;
    text-indent: -12345px;
    border-top: 3px solid rgba(0, 0, 0, 0.08);
    border-right: 3px solid rgba(0, 0, 0, 0.08);
    border-bottom: 3px solid rgba(0, 0, 0, 0.08);
    border-left: 3px solid #00d690 ;
    border-radius: 50%;
    -webkit-animation: spinner 700ms infinite linear;
    animation: spinner 700ms infinite linear;
    z-index: 10000;
}

@-webkit-keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
/*
* ----------------------------------------------------------------------------------------
* END PRELOADER DESIGN
* ----------------------------------------------------------------------------------------
*/

/*
* ----------------------------------------------------------------------------------------
* START HOME DESIGN
* ----------------------------------------------------------------------------------------
*/
#home{
    padding: 100px 0;
    background: #00d690 ;
}
.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 h1{	
    color: #222;
	text-transform: capitalize;
    font-weight: 600;
    font-size: 18px;
    margin: 40px 0 0;
}
.single_demo h1:hover{
	text-decoration: none;
	color: #00d690;
}
/*
* ----------------------------------------------------------------------------------------
* END DEMO DESIGN
* ----------------------------------------------------------------------------------------
*/

/*
* ----------------------------------------------------------------------------------------
* START COPYRIGHT DESIGN
* ----------------------------------------------------------------------------------------
*/
.copyright_area{
    background: #00d690 ;
}
.copy_text{
	padding: 5px 0;
}
.copy_text p{
	color: #fff;
	margin-top: 20px;
	padding-bottom: 2px;
}
/*
* ----------------------------------------------------------------------------------------
* END COPYRIGHT DESIGN
* ----------------------------------------------------------------------------------------
*/