/*general*/
h1, h2, h3, h4, h5, h6 {
	padding: 0;
	margin: 0;
}

/*section*/
.section {
	padding: 80px 0;
}

.section-title {
	text-align: center;
}

.section-title.second {
	margin-top: 50px;
}

.section-title {
	margin-bottom: 50px;
}

.section-title h3 {
	font-weight: bold;	
	font-size: 30px;
	margin-bottom: 15px;
}

.section-title .line {
	background-color: #333;
	width: 75px;
	height: 2px;
	margin: 0 auto;
}

.section-title .line2 {
	background-color: #333;
	width: 30px;
	height: 3px;
	margin: 0 auto;
	margin-top: 5px;
	display: none;
}

/*animation*/
.fast {
    -vendor-animation-duration: 1s;
    -vendor-animation-delay: 0s;
    animation-delay: 0s;
    animation-duration: 1s;
}
.slow {
    -vendor-animation-duration: 3s;
    -vendor-animation-delay: 1s;
    animation-delay: 1s;
    animation-duration: 2s;
}
.reallyslow {
    -vendor-animation-duration: 6s;
    -vendor-animation-delay: 3s;
    animation-delay: 3s;
    animation-duration: 6s;
}

/*header*/
.home-intro {
	background: linear-gradient(
		rgba(48, 44, 44, 0.6),
		rgba(48, 44, 44, 0.6)
		),
	 url(../img/bg-header.jpeg);
	background-size: cover;
	background-attachment: fixed;
}

.home-intro .content {
	text-align: center;
	padding: 217px 30px;
}

.home-intro .content-image {
	margin-bottom: 8px;
}

.home-intro .content-text h2 {
	margin-bottom: 14px;
	font-size: 50px;
	font-weight: bold;
	color: #fff
}

.home-intro .content-text h3 {
	font-size: 28px;
	margin-bottom: 80px;
	color: #eee;
}

.home-intro .content-text .button1 {
	border-radius: 0;
	border: 0;
	padding: 10px 20px;
	margin: 20px 10px 0;
	color: #fff;
	background: #ff1e1e;
	font-weight: 600;
}

.home-intro .content-text .button2 {
	border-radius: 0;
	background: orange;
	border: 0;
	padding: 10px 20px;
	margin: 20px 10px 0;
	color: #fff;
	background: #222;
	font-weight: 600;
}

/*demo*/
.demo .content-image {
	padding: 20px;
	text-align: center;
	top: 0;
	transition: .5s;
}

.demo .content-image .link {
	color: #333;
	text-align: center;
	font-size: 16px;
	font-weight: bold;
	margin-top: 20px;
	display: block;
}

.demo .content-image img {
	width: 100%;
	box-shadow: 0px 6px 30px rgba(115, 128, 157, 0.25);
	border-radius: 12px;
	transition: all .3s ease;
}

.demo .content-image img:hover {
	transform: translateY(-15px);
	box-shadow: 0px 15px 30px rgba(115, 128, 157, 0.25);
}

.demo .dark-demo .content-image img {
	width: 100%;
	box-shadow: 0px 6px 30px rgba(115, 128, 157, 0.30);
	transition: all .3s ease;
	border-radius: 12px;
}

.demo .dark-demo .content-image img:hover {
	transform: translateY(-10px);
	box-shadow: 0px 15px 30px rgba(115, 128, 157, 0.25);
}

/*footer*/
/*footer*/
a:hover {
	text-decoration: none;
}

.button1:hover, .button2:hover{
	opacity: 0.8;
}

.footer {
	background: #f5f5f5;
	padding: 80px 0;
	text-align: center;
}

.footer .content-image img {
	width: 60px;
	height: 60px;
}

.footer .content-text h2 {
	color: #333;
	font-weight: bold;
	margin-top: 10px;
	margin-bottom: 5px;
}

.footer .content-text h3 {
	color: #888;
	font-size: 20px;
}

.footer .content-text .button1 {
	background: #333;
	padding: 10px 20px;
	color: #fff;
	display: inline-block;
	margin-top: 30px;
}