body{
	margin:0;
	padding:0;

	background-color:#ffffff;
}

a{
	text-decoration:none;
}

#wrapper{
	position:relative;
	width:100%;
	height:auto;
}

#wrapper .section{
	position:relative;
	width:100%;
	height:auto;
	padding-bottom:95px;
	overflow: hidden;
}

#wrapper .section .content{
	position: relative;
	display:block;
	width:900px;
	margin-left:auto;
	margin-right:auto;
	height:auto;
	text-align:center;
}

#wrapper .section .content .build{
	opacity:0;
	transform:translate3d(0px,100px,0px);
	transition: all 1s cubic-bezier(0.165, 0.840, 0.440, 1.000);
}

#wrapper .section .content .build:nth-child(1){
	transition-delay: 0.1s;
}

#wrapper .section .content .build:nth-child(2){
	transition-delay: 0.2s;
}

#wrapper .section .content .build:nth-child(3){
	transition-delay: 0.3s;
}

#wrapper .section .content .build:nth-child(4){
	transition-delay: 0.4s;
}

#wrapper .section .content .build:nth-child(5){
	transition-delay: 0.5s;
}

#wrapper .section .content .build:nth-child(6){
	transition-delay: 0.6s;
}

#wrapper .section .content .build:nth-child(7){
	transition-delay: 0.7s;
}

#wrapper .section .content .build:nth-child(8){
	transition-delay: 0.8s;
}

#wrapper .section .content.active .build{
	opacity:1;
	transform:translate3d(0px,0px,0px);
}

#wrapper .section .triangle{
	position:absolute;
	z-index:0;
	width:200vw;
	left:-50vw;
	height:500px;
	top:-380px;
	transform:rotate(-10deg);
	background-color:rgba(255,255,255,0.5);
}

#wrapper #hero.section .triangle{
	top: calc(60vw - 380px);
	background-color:#D7FFF0;
}

#wrapper #how.section .triangle{
	background-color:#FFFEDE;
	transform:rotate(10deg);
}

#wrapper #who.section .triangle{
	background-color:#BEFBFF;
}

#wrapper #what.section .triangle{
	background-color:#FFEFFB;
	transform:rotate(10deg);
}

#wrapper .section h1{
	position:relative;
	display:block;
	width:100%;

	font-family: 'Lato',sans-serif;
	font-style: normal;
	font-weight: bold;
	font-size: 60px;
	text-align: center;

	color: #000000;

	margin-top:60px;
	/*margin-bottom:30px;*/

}

#wrapper .section h2{
	position:relative;
	display:block;
	width:100%;

	font-family: 'Lato',sans-serif;
	font-style: normal;
	font-weight: 600;
	font-size: 24px;
	line-height: 32px;
	text-align: center;
	margin-top:20px;

	color: #101014;

}

#wrapper .section p{
	position:relative;
	width:100%;

	font-family: 'Lato',sans-serif;
	font-style: normal;
	font-weight: normal;
	font-size: 20px;
	line-height: 32px;
	text-align: center;

	color: #101014;

	margin-top:40px;
}


#wrapper .section .section-button{
	position:relative;
	display:inline-block;
	margin-left:auto;
	margin-right:auto;
	width:auto;
	height:40px;
	padding-left:27px;
	padding-right:27px;

	background: #000000;
	border-radius: 20px;

	color:#ffffff;
	line-height:40px;

	font-family: 'Poppins', sans-serif;
	font-style: normal;
	font-weight: 600;
	font-size: 14px;

	color: #FFFFFF;

	margin-top:80px;
}

#wrapper #header{
	position:absolute;
	top:0px;
	left:0px;
	width:100%;
	height:105px;
	z-index:10;
}

#wrapper #header .logo{
	position:absolute;
	top:35px;
	left:60px;
	width:52px;
	height:45px;
	background-image:url(../assets/logo.svg);
}

#wrapper #header .nav{
	position:absolute;
	top:35px;
	width:auto;
	height:40px;
	right:60px;
}

#wrapper #header .nav li{
	position:relative;
	display:inline-block;
	width:auto;
	height:40px;
	line-height:40px;

	font-family: 'Poppins', sans-serif;
	font-style: normal;
	font-weight: 600;
	font-size: 14px;
	text-transform: uppercase;

	margin-left:30px;

	cursor:pointer;

	color: #FFFFFF;
}

#wrapper #header .nav li:hover{
	color: #CCCCCC;
}

#wrapper #header .nav .button{
	position: relative;
	width: auto;
	height: 40px;
	padding-left:27px;
	padding-right:27px;

	background: #FFFFFF;
	border-radius: 20px;
	line-height:40px;

	color:#000000;
}

#wrapper #hero .hero-video{
	position:relative;
	width:100%;
	height:60vw;
	overflow:hidden;
	z-index:2;
}

#wrapper #hero .hero-video video{
	position:absolute;
	top:50%;
	left:50%;
	width:auto;
	height:100%;
	transform:translate(-50%,-50%);
}

#hero{
	background-color:rgba(215,255,240,0.2);
}

#hero .features{
	position:relative;
	width:600px;
	height:auto;
	margin-left:auto;
	margin-right:auto;
	display:flex;
	flex-direction: row;
	justify-content: space-between;
	margin-top:80px;
}

#hero .features .feature{
	position:relative;
	width:155px;
	height:auto;
	padding-top:70px;
	background-repeat: no-repeat;
	background-position:center top;
}

#hero .features .feature-preview{
	background-image:url(../assets/home/preview.svg);
}

#hero .features .feature-look{
	background-image:url(../assets/home/walk.svg);
}

#hero .features .feature-decor{
	background-image:url(../assets/home/sun.svg);
}

#hero .features .feature .title{
	position:relative;
	width:100%;

	font-family: 'Lato',sans-serif;
	font-style: normal;
	font-weight: bold;
	font-size: 24px;
	line-height: 29px;
	text-align: center;

	color: #101014;
}

#hero .features .feature .tagline{
	position:relative;
	width:100%;

	font-family: 'Lato',sans-serif;
	font-style: normal;
	font-weight: bold;
	font-size: 14px;
	line-height: 17px;
	text-align: center;
	text-transform: uppercase;

	color: #101014;
}

#how{
	background-color:rgba(255,254,222,0.2);
}

#how .steps{
	position:relative;
	width:900px;
	height:auto;
	margin-left:auto;
	margin-right:auto;
	display:flex;
	flex-direction: row;
	justify-content: space-between;
	margin-top:80px;
}

#how .steps .step{
	position:relative;
	width:215px;
	height:auto;
	background-repeat: no-repeat;
	background-position:center top;
}

#how .steps .step .title{
	position:relative;

	width:125px;
	height:50px;
	margin-left:auto;
	margin-right:auto;

	font-family: 'Lato',sans-serif;
	font-style: normal;
	font-weight: bold;
	font-size: 14px;
	line-height: 17px;
	text-align: center;

	color: #101014;

}

#how .steps .step .number{
	position:relative;

	width:60px;
	height:60px;
	background-color:#000000;
	border-radius:50%;
	margin-left:auto;
	margin-right:auto;

	font-family: 'Lato',sans-serif;
	font-style: normal;
	font-weight: bold;
	font-size: 36px;
	line-height: 58px;
	text-align: center;
	margin-top:15px;

	color: #FFFEDE;
}

#how .steps .step .thumb{
	position:relative;

	width:215px;
	height:215px;
	background-color:#FFFEDE;
	border-radius:50%;
	margin-left:auto;
	margin-right:auto;
	margin-top:55px;
	background-image: url(../assets/how/step1.png);
	background-repeat: no-repeat;
	background-position:center center;
	background-size:100% auto;
}


#how .steps .step.step2 .thumb{
	background-image: url(../assets/how/step2.png);
}

#how .steps .step.step3 .thumb{
	background-image: url(../assets/how/step3.png);
}

#how .steps .step.step4 .thumb{
	background-image: url(../assets/how/step4.png);
}

#who{
	background-color:rgba(190,251,255,0.2);
}

#who.section p{
	margin-top:10px;
	margin-bottom:50px;
}

#who .group:before{
	content:"";
	position:absolute;
	top: 10px;
    left: -90px;
    width: 374px;
	height:60px;
	background-image:url(../assets/who/triangle.svg);
	background-repeat: no-repeat;
	z-index:-1;
}


#who .group:after{
	content:"";
	position:absolute;
	top: 0px;
    left: 0px;
    width:100px;
    height:100px;
	background-size: auto 70px;
    background-position: center center;
	background-repeat: no-repeat;
}

#who .group{
	position:relative;
	height:100px;
	width:160px;
	margin-left:auto;
	margin-right:auto;
	padding-left:100px;

	font-family: 'Lato',sans-serif;
	font-style: normal;
	font-weight: 600;
	font-size: 24px;
	line-height: 100px;
	text-align: center;

	color: #101014;

}

#who .group.group-builders:after{
	background-image:url(../assets/who/builders.svg);
}

#who .group.group-designers:after{
	background-image:url(../assets/who/designers.svg);
}

#who .group.group-furniture:after{
	background-image:url(../assets/who/furniture.svg);
}

#who .section-button{
	margin-top:20px !important;
}

#wrapper #what.section{
	background-color:rgba(255,239,251,0.2);
	padding-bottom:200px;
}

.parallax{
	position:relative;
}

#what .output{
	position:relative;
	width:1000px;
	height:auto;
	margin-left:auto;
	margin-right:auto;
}

#what .description a{
	color:#aaaaaa;
	text-decoration:underline;
}

#what .output-content{
	position:relative;
	z-index:10;
	transform: translate3d(0,0,0);
}

#what .output-triangle{
	position:absolute;
	z-index:0;
}

#what .output-vr{
	margin-top:100px;
}

#what .output-vr .output-triangle{
	position:absolute;
	top: -70px;
    left: -50px;
	width:1105px;
	height:206px;
	background-image:url(../assets/what/triangle.svg);
	background-size:100% 100%;
	background-repeat: no-repeat;
}

#what .output-vr .thumb{
	position:relative;
	width:410px;
	height:410px;
}

#what .output-vr .thumb video{
	position:relative;
	width:410px;
	height:410px;
}

#what .output-vr .details{
	position: absolute;
    top: 70px;
    left: 450px;
    width: 410px;
    height: auto;
}

#what .output-web{
	margin-top:-100px;
}

#what .output-web .output-triangle{
	position: absolute;
    top: 30px;
    left: -147px;
    width: 1445px;
    height: 406px;
	transform:scaleX(-1) scaleY(-1);
	background-image:url(../assets/what/triangle.svg);
	background-size:100% 100%;
	background-repeat: no-repeat;
}

#what .output-web .thumb{
	position:relative;
	margin-right:0px;
	margin-left:auto;
	width:760px;
	height:472px;
	overflow:hidden;
	left:140px;
}

#what .output-web .thumb video{
	position:relative;
	width:auto;
	height:100%;
	left:50%;
	transform: translate(-50%,0px);
}

#what .output-web .details{
	position: absolute;
    top: 100px;
    left: 0px;
    width: 410px;
    height: auto;
}

#what .output.output-web .description{
	padding-left:0px;
}

#what .output-videos{
	margin-top:70px;
}

#what .output-videos .output-triangle{
	position: absolute;
    top: -150px;
    left: -147px;
    width: 1445px;
    height: 406px;
	background-image:url(../assets/what/triangle.svg);
	background-size:100% 100%;
	background-repeat: no-repeat;
}

#what .output-videos .thumb{
	position:relative;
	width:760px;
	height:472px;
	left:-130px;
	overflow:hidden;
}

#what .output-videos .thumb video{
	position:relative;
	width:auto;
	height:100%;
	left:50%;
	transform: translate(-50%,0px);
}

#what .output-videos .details{
	position: absolute;
    top: 100px;
    left: 665px;
    width: 410px;
    height: auto;
}

#what .output-images{
	margin-top:-100px;
}

#what .output-images .output-triangle{
	position: absolute;
    top: -150px;
    left: -200px;
    width: 1245px;
    height: 406px;
	transform:scaleX(-1) scaleY(1);
	background-image:url(../assets/what/triangle.svg);
	background-size:100% 100%;
	background-repeat: no-repeat;
}

#what .output-images .thumb{
	position:relative;
	width:710px;
	height:410px;
	margin-right:0px;
	margin-left:auto;
	overflow:hidden;
	background-color:#ffffff;
}

#what .output-images .thumb img{
	position:absolute;
	top:0px;
	width:auto;
	height:100%;
	left:50%;
	transform: translate(-50%,0px);
	opacity:0;
}

#what .output-images .details{
	position: absolute;
    top: 90px;
    left: 0px;
    width: 410px;
    height: auto;
}

#what .output.output-images .description{
	padding-left:0px;
}

#what .output .title{
	position:relative;

	font-family: 'Lato',sans-serif;
	font-style: normal;
	font-weight: bold;
	font-size: 48px;
	line-height: 58px;
	text-align: left;
	text-transform: uppercase;

	color: #101014;

	margin-bottom:55px;
}

#what .output .description{
	position:relative;

	font-family: 'Lato',sans-serif;
	font-style: normal;
	font-weight: normal;
	width:276px;
	font-size: 20px;
	line-height: 32px;
	text-align: left;

	color: #101014;
}

.footer{
	position:relative;
	font-family:'Lato',sans-serif;
	font-size:12px;
	color:rgba(0,0,0,0.7);
	padding:20px;
	text-align:center;
}

@media only screen and (max-width: 960px) {
	#wrapper #header .nav li{
		display:none;
	}

	#wrapper #header .nav li:last-child{
		display:block;
	}

	#wrapper #header .nav {
	    position: absolute;
	    top: 15px;
	    width: auto;
	    height: 40px;
	    right: 40px;
	}

	#wrapper #header .logo {
	    position: absolute;
	    top: 25px;
	    left: 40px;
	}

	#wrapper .section .content{
		width:500px
	}

	#wrapper .section h1{
		font-size:50px;
		margin-bottom:20px;
	}

	#wrapper .section h2{
		font-size:20px;
		margin-top:0px;
		margin-bottom:0px;
	}

	#wrapper .section p{
		font-size: 16px;
	    line-height: 25px;
	    margin-top:30px;
	}

	#hero .features{
		width:100%;
	}

	#hero .features .feature{
		padding-top:60px;
	}

	#hero .features .feature .title{
		font-size:18px;
	}

	#hero .features .feature .tagline{
		font-size:12px;
	}

	#how .steps{
		width:100%;
		flex-wrap: wrap;
	}

	#how .steps .step{
		/*width:125px;*/
		margin-bottom:100px;
	}

	#how .steps .step .thumb{
		margin-top:25px;
	}

	#wrapper #how.section{
		padding-bottom:5px;
	}

	#what .output{
		width:600px;
		left:-50px;
	}

	#what .output-vr .thumb{
		left:-90px;
	}

	#what .output-vr .details{
		left:310px;
	}

	#what .output .title{
		font-size:40px;
		margin-bottom:25px;
	}

	#what .output .description{
		font-size: 16px;
	    line-height: 22px;
	}

	#what .output-vr .thumb,#what .output-vr .thumb video{
		width:370px;
		height:370px;
	}
	#what .output-web .thumb {
	    position: relative;
	    margin-right: 0px;
	    margin-left: auto;
	    width: 510px;
	    height: 332px;
	    overflow: hidden;
	    left: 190px;
	}

	#what .output-web .details{
		left:-30px;
		top:60px;
	}

	#what .output-videos .thumb{
		width: 500px;
	    height: 272px;
	    left: -160px;
	}

	#what .output-videos .details {
	    position: absolute;
	    top: 40px;
	    left: 365px;
	    width: 410px;
	    height: auto;
	}

	#what .output-images .thumb {
	    position: relative;
	    width: 450px;
	    height: 220px;
	    margin-right: 0px;
	    margin-left: auto;
	    overflow: hidden;
	    background-color: #ffffff;
	    left: 110px;
	}

	#what .output-images .details {
	    position: absolute;
	    top: 0px;
	    left: -30px;
	    width: 410px;
	    height: auto;
	}

	#what .output-web {
	    margin-top: -40px;
	}

	#what .output-images {
	    margin-top: -30px;
	}
}


@media only screen and (max-width: 500px) {
	#hero .features{
		margin-top:60px;
	}

	#wrapper .section .section-button{
		margin-top:60px;
	}

	#wrapper .section{
		padding-bottom:75px;
	}

	#how .steps{
		margin-top:60px;
	}

	#how .steps .step{
		margin-bottom:60px;
	}

	#who .section-button{
		margin-top:10px !important;
	}

	#wrapper .section .content{
		width:300px
	}

	#wrapper .section h1{
		font-size:34px;
		margin-bottom:15px;
	}

	#wrapper .section h2{
		font-size:16px;
		margin-top:0px;
		margin-bottom:0px;
	}

	#wrapper .section p{
		font-size: 13px;
	    line-height: 20px;
	    margin-top:25px;
	}

	#hero .features .feature .title {
	    font-size: 14px;
	}

	#hero .features .feature .tagline {
	    font-size: 8px;
	}

	#how .steps{
		justify-content:center;
	}

	#who .group{
		height:80px;
		padding-left:80px;
		font-size:20px;
	}

	#who .group:after {
	    background-size: auto 50px;
	}

	.parallax{
		transform:translate3d(0,0,0) !important;
	}

	#what .output-triangle{
		background-image:url(../assets/what/triangle2.svg) !important;
	}

	#what .output-vr .output-triangle{
		top: 150px;
	    left: -240px;
	    width: 600px;
	    height: 200px;
	}

	#what .output-web .output-triangle{
		top: 53px;
	    left: -240px;
	    width: 600px;
	    height: 200px;
	}

	#what .output-videos .output-triangle{
		top: 19px;
	    left: -240px;
	    width: 600px;
	    height: 200px;
	}

	#what .output-images .output-triangle{
		top: -3px;
	    left: -240px;
	    width: 600px;
	    height: 200px;
	}

	.output-triangle{
		/*display:none;*/
	}

	#what .output{
		width:300px;
		left:50%;
		margin-left:-150px;
		margin-top:60px;
	}

	#what .output .details{
		position:relative;
		left:0px;
		top:0px;
		width:300px;
	}

	#what .output .thumb{
		width:300px;
		height:auto;
		position:relative;
		top:0px;
		left:0px;
	}

	#what .output .title {
	    font-size: 30px;
	    margin-bottom: 15px;
	    margin-top: 10px;
	    line-height:35px;
	}


	#what .output .thumb video{
		width:300px;
		height:auto;
	}


	#what .output .thumb img:first-child{
		position:relative;
	}

	#what .output .thumb img{
		width:300px;
		height:auto;
	}

	#wrapper #what.section{
		padding-bottom:100px;
	}

	#wrapper #hero .hero-video{
		height:110vw;
		background-color:#ffffff;
	}

	#wrapper #hero.section .triangle{
		top: calc(110vw - 380px);
	}

	#wrapper #header .nav {
	    position: absolute;
	    top: 0px;
	    width: auto;
	    height: 40px;
	    right: 20px;
	}

	#wrapper #header .logo {
	    position: absolute;
	    top: 10px;
	    left: 20px;
	    background-size: 80% 80%;
	    background-repeat: no-repeat;
	}

	#wrapper #header .nav li{
		font-size:12px;
		line-height:30px;
		height:30px;
	}

	#wrapper #header .nav .button{
		padding-left:20px;
		padding-right:20px;
		height:30px;
		line-height:30px;
	}
}