/* Typography */
body{
    font-family: 'Poppins', sans-serif;
	font-size: 15px;
	line-height: 26px;
	color: #777;
	font-weight: 400;
	
}
img{
	max-width: 100%;
}
h1,
h2,
h3,
h4,
h5,
h6{
	font-family: 'Montserrat', sans-serif;
	color: #222;
	font-weight: 600;
	margin-top: 0;
	margin-bottom: 10px;
	letter-spacing: 1px;
}

/* Start Home */

.bannerbg{
	background-image: url(../img/banner.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	background-attachment: fixed;
	position: relative;
	z-index: 1;
}
.bannerbg:before{
	content: "";
	position: absolute;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0, 0.8);
	z-index: -1;
}
#home {
    padding: 100px 0;
}
.home_content h1 {
    color: #fff;
    font-size: 80px;
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 20px;
}
.home_content h1::after {
    background-image: -webkit-linear-gradient(left, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0));
    background-image: -moz-linear-gradient(left, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0));
    background-image: -ms-linear-gradient(left, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0));
    background-image: -o-linear-gradient(left, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0));
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#000000', GradientType=1);
    position: absolute;
    left: 0;
    right: 0;
    top: 115px;
    height: 1px;
    width: 50%;
    margin: 0 auto;
    content: "";
    bottom: 0;
}

.home_content h3{
    color: #fff;
	margin-bottom: 0;
    font-size: 26px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-top: 40px;
}
/* End Home */



/* Start Demo */
.section_padding {
    padding: 100px 0;
}
.single_demo {
    margin-bottom: 80px;
    box-shadow: 0 8px 40px rgba(0,0,0, 0.1);
    padding: 30px;
}
.single_demo a img{
	height: auto;
	border: 1px solid #ddd;
}
.single_demo h4 {
    margin: 30px 0 0;
    color: #222;
}
.footer{
	padding: 30px 0;
	background: #0cc652;
}
.footer .footer_text p{
	margin: 0;
	color: #fff;
}
/* End Demo */

/*START PRELOADER DESIGN*/
.preloader {
	background:#fff;
    bottom: 0;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 99999;	
}
.spinner {
	width: 50px;
	height: 50px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -25px 0 0 -25px;
	font-size: 10px;
	text-indent: -12345px;
	z-index: 10000;
}

.double-bounce1, .double-bounce2 {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #0cc652;
  opacity: 0.6;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
  position: absolute;
  top: 0;
  left: 0;
  
  -webkit-animation: sk-bounce 2.0s infinite ease-in-out;
  animation: sk-bounce 2.0s infinite ease-in-out;
}

.double-bounce2 {
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s;
}

@-webkit-keyframes sk-bounce {
  0%, 100% { -webkit-transform: scale(0.0) }
  50% { -webkit-transform: scale(1.0) }
}

@keyframes sk-bounce {
  0%, 100% { 
    transform: scale(0.0);
    -webkit-transform: scale(0.0);
  } 50% { 
    transform: scale(1.0);
    -webkit-transform: scale(1.0);
  }
}
/* END PRELOADER DESIGN */