﻿body {
color: #000;
font-family: 'Open Sans', sans-serif;
}

.bold {
	color: #fff;
	font-size: 1.75rem;
	font-weight: 600;
	text-transform: uppercase;
	text-shadow: 1px -1px .3px #000;
}


section {
width: 100%;
height: 100vh;
}

section.sec1 {
position: relative;
overflow: hidden;
background: url(../bg1.jpg);
background-attachment: fixed;
background-size: cover;
background-repeat: no-repeat;
}

section.sec1:before {
content: '';
position: absolute;
top: 100%;
left: -50%;
width: 100%;
height: 100%;
background: #fff;
transform-origin: right;
transform: skewY(8deg);
}

section.sec1:after {
content: '';
position: absolute;
top: 100%;
right: -50%;
width: 100%;
height: 100%;
background: #fff;
transform-origin: left;
transform: skewY(-8deg);
}

section.sec1 h1 {
	color: #fff;
	text-shadow: 2px 2px 3px #000;
	margin-top: 1rem;
}

section.sec3 {
	position: relative;
	overflow: hidden;
	background: url(../14144.jpg);
	background-attachment: fixed;
	background-size: cover;
	background-repeat: no-repeat;
	padding: 70px 0;
}

section.sec3:before {
content: '';
position: absolute;
bottom: 100%;
left: 0;
width: 100%;
height: 100%;
background: #fff;
transform-origin: left;
transform: skewY(4deg);
}

section.sec2 {
	background: #fff;
height: auto;
padding: 70px 0;
box-sizing: border-box;
}

section.sec2 .h1 {
margin: 50px 0 20px;
padding: 0;
font-family: sans-serif;
color: #262626;
font-size: 3rem;
}

section.sec2 p {
margin: 0;
padding: 0;
font-family: sans-serif;
color: #262626;
font-size: 1rem;
}



/* ====*/
section {
	position: relative;
	height: 100vh;
	display: flex;
	/*background: #000;*/
}

section .screen {
	position: relative;
	flex-grow: 2;
	display: flex;
	justify-content: flex-end;
	align-items: flex-end;
	overflow: hidden;
	transition: 1s;
}

section:hover .screen {
	opacity: .12;
}

section .screen:hover {
	flex-grow: 5;
	opacity: 1;
}
section .screen:nth-child(1) {
	background: url(../saving.jpg);
	background-repeat: no-repeat;
	background-position: center;
}
section .screen:nth-child(2) {
	background: url(../install.jpg);
	background-repeat: no-repeat;
	background-position: center;
}
section .screen:nth-child(3) {
	background: url(../finishing.jpg);
	background-repeat: no-repeat;
	background-position: center;
}
section .screen .content {
	position: absolute;
	width: 400px;
	height: auto;
	background: rgba(255,255,255,.9);
	padding: 40px;
	box-sizing: border-box;
	transform: translateX(100%);
	transition: 0.5s;
	text-align: justify;
}
section .screen:hover .content {
	transform: translateX(0);
	transition-delay: .7s;
}
section .screen .content h2 {
	color: #ed363a;
	font-size: 2.3rem;
	font-weight: 600;
	text-transform: uppercase;
}
section .screen .content p {
	text-transform: uppercase;
	font-size: 1rem;
	font-weight: 300;
}


/* warranty */
section.warranty {
	background: #ed363a;
	border-bottom: 2px solid #fff;
	border-top: 2px solid #fff;
	height: 150px;
	justify-content: center;
	align-items: center;
	margin: 0 0 20px;
	
}

section.warranty p {
	animation: animate 3s ease-out infinite;
	background: linear-gradient(90deg, #fff, #fff, #fff);
	background-repeat: no-repeat;
	background-size: 80%;
	font-family: 'Roboto', sans-serif;
	font-size: 2rem;
	font-weight: 900;
	letter-spacing: .1rem;
	overflow: hidden;
	position: relative;
	text-transform: uppercase;
	-webkit-background-clip: text;
	-webkit-text-fill-color: rgba(255,255,255,0);
}
@keyframes animate {
	0% {
		background-position: -500%;
	}
	100% {
		background-position: 500%;
	}
}


.stellar {
	background-attachment: fixed;
	background-position: 50% 0;
	background-repeat: no-repeat;
	height: 450px;
	position: relative;
	padding: 100px 0;
}
.lamp {
	background-image: url(../lamp.jpg);
}

.imvid {
	margin: 10px 0 2rem;
}
.imvid a {
	color: #000;
	font-size: .9rem;
	font-weight: 600;
}

.play {
	cursor: pointer;
	position: relative;
	display: inline-block;
	
	
}
.play:before {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	font-family: "FontAwesome";
	font-weight: 400;
	content: "\f16a";
	font-size: 50px;
	color: #fff;
	opacity: .7;
	text-shadow: 0px 0px 30px rgba(0, 0, 0, 0.5);
}
.play:hover:before {
		color: #f00;
	opacity: .85;
	}

footer {
	background: #686868;
	border-top: 2px solid #939393;
	color: #fff;
	font-weight: 600;
	padding: 1.8rem 0;
}
footer p {
	font-size: 1.2rem;
}
footer a {
	color: #fff;
	border-bottom: 1px dashed #fff;
}
footer a:hover {
	color: #fff;
	text-decoration: none;
	border-bottom-style: solid;
}
