/* 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: 'Poppins', sans-serif;
	color: #ff651c;
	font-weight: 600;
	margin-top: 0;
	margin-bottom: 10px;
	letter-spacing: 1px;
}
/* Start Home */
#home{
	background-image: url(../img/banner.jpg);
	background-attachment: fixed;
	background-size: cover;
	background-position: center center;
	padding: 15% 0;
	width: 100%;
	position: relative;
	z-index: 1;
}
#home:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
	background-color: rgba(7,10,50,0.6);
    z-index: -1;
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
	top: 0;
}
.home_content{   
    width: 60%;
    margin: 0 auto;
    padding: 60px 0;
}
.home_content h1 {
    color: #ff651c;
    font-size: 80px;
}
.home_content h3 {
    color: #fff;
    margin-bottom: 0;
    font-size: 30px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-top: 30px;
}

/* End Home */



/* Start Demo */
.section_padding {
    padding: 100px 0;
}
.pb_20{
	padding-bottom: 20px;
}
.pb_70{
	padding-bottom: 70px;
}
.heading_title {
    border: 5px solid rgba(0,0,0, 0.04);
    font-size: 22px;
    font-weight: 700;
    margin: auto auto 80px;
    padding: 15px;
    text-transform: uppercase;
    width: 350px;
}
.single_demo {
    margin-bottom: 80px;
    -webkit-box-shadow: 0 5px 23px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 5px 23px rgba(0, 0, 0, 0.1);
    padding: 20px 20px;
}
.single_demo h4 {
    margin: 30px 0;
    color: #333;
}
.single_demo h4:hover{
	color: #ff651c;
}
.footer{
	padding: 50px 0;
	background: #222;
}
.footer .footer_text p {
    margin: 0;
    font-size: 18px;
    color: #fff;
}
/* End Demo */

/* Start page-features */
.page-single-feature {
    background-color: #fff;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    height: 100px;
    margin: 0 20px 50px;
    padding: 30px 20px;
}
.page-single-feature .dsp-tc {
    vertical-align: middle;
    text-align: left;
}
.icon {
    padding-right: 15px;
}

.icon>img {
    height: 40px;
    width: 40px;
}
.text>h5 {
    font-weight: 500;
    margin: 0;
    text-transform: capitalize;
    font-size: 18px;
    color: #222;
}
.section-padding {
    padding-top: 20px;
}


.preview-page .cta-inner>h2 {
    color: #fff;
}
.dsp-tc{
    display: table-cell; 
}

.preview-page #footer-bottom {
    background-color: #262832;
    border-top: 1px solid #20222b;
}

/* End page-features */

/* 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: #ff651c ;
  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;
}
.dark_preloader .double-bounce1, .double-bounce2 {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #ff651c;
  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 */