body{
	min-width: 320px;
	font-family: 'helveticareg';
	font-size: 16px;
	color: #1C1C1C;
}
canvas{
	display: block;
	position: absolute;
	top: 0;
	left: 0;
}
.wrapper{
	overflow-x: hidden;
}
.section{
	padding: 40px 0;
}
.container{
	max-width: 960px;
	margin: auto;
	text-align: center;
}
@-webkit-keyframes hide{
	100%{
		opacity: 0;
		visibility: hidden;
		z-index: -1;
	}
}
@keyframes hide{
	100%{
		opacity: 0;
		visibility: hidden;
		z-index: -1;
	}
}
.loader{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: #fff url('../img/preload.gif') no-repeat center center;
	z-index: 100;
}
.loader.hide{
	-webkit-animation: hide 1s;
	animation: hide 1s;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
}
.home{
	display: -webkit-flex;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100vh;
	width: 100vw;
	background-color: #1c1c1c;
}
.home_content{
	display: inline-block;
	padding: 40px;
	outline: 10px solid  #fff;
	color: #fff;
    font-family: 'Gilroyextrabold';
	background-color: #1c1c1c;
}
.home_name{
	font-size: 3em;
	text-transform: uppercase;
}
.home_position{
	font-size: 2em;
}
.section__heading{
	margin-bottom: 30px;
    font-family: 'Gilroyextrabold';
	font-size: 2em;
	text-transform: uppercase;
}
.portfolio{
	-webkit-transition: all .5s;
	transition: all .5s;
}
.portfolio__list{
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 50px;
	-webkit-transition: all .5s;
	transition: all .5s;
}
@-webkit-keyframes slideDown{
	100%{
		height: 200px;
	}
}
@keyframes slideDown{
	100%{
		height: 200px;
	}
}
.portfolio__item{
	width: 32%;
	height: 0;
	margin-right: 2%;
	margin-top: 15px;
	overflow: hidden;
	-webkit-animation: slideDown .5s;
	animation: slideDown .5s;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
}
.portfolio__item:nth-child(3n){
	margin-right: 0;
}
.portfolio__item:nth-child(-n+3){
	margin-top: 0;
}
.portfolio__item:after{
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0; 
	background-color: rgba(30, 30, 30, 0.5);
	content: '';
}
.portfolio__item:hover .portfolio__inner{
	width: 400px;
	height: 240px;
	margin-top: -120px;
	margin-left: -200px;
	opacity: 1;
}
.portfolio__item.done{
	display: none;
}
.portfolio__inner{
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	background-color: rgba(0, 0, 0, 0.5);
	-webkit-transition: all .8s;
	transition: all .8s;
	opacity: 0;
	z-index: 1;
	overflow: hidden;
}
.btn{
	display: inline-block;
	height: 50px;
	padding: 0 20px;
	font-size: 1.2em;
    font-family: 'Gilroyextrabold';
	-webkit-transition: all .5s;
	transition: all .5s;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	cursor: pointer;
}
.btn_more{
	position: absolute;
	top: 50%;
	left: 50%;
	width: 160px;
	line-height: 50px;
	margin-top: -25px;
	margin-left: -80px;
	color: #fff;
	border: 1px solid  #fff;
}
.btn_more:hover{
	background-color: #fff;
	color: inherit;
}
.btn_yet{
	border: 2px solid  transparent;
	background-color: #1C1C1C;
	color: #ffffff;
}
.btn_yet:hover{
	border-color: #1C1C1C;
	background-color: transparent;
	color: #1c1c1c;
}
.contacts{
	margin-top: 20px;
	font-family: 'helveticareg';
}
.contacts__info{
	display: inline-block;
	vertical-align: top;
	margin: 0 10px;
}
.contacts__title{
	margin-bottom: 5px;
	font-size: 1.3em;
}
.contacts__text a{
	font-size: 1em;
	color: inherit;
}
.footer{
	padding: 15px 0;
	background-color: #1c1c1c;
}
.footer p{
	text-align: right;
	color: #fff;
}
.popup{
	position: fixed;
	top: 50px;
	bottom: 50px;
	left: 50px;
	right: 50px;
	background-color: #fff;
	z-index: 100;
}
.popup:before{
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background-color: rgba(0,0,0,.7);
	content: ''
}
.popup.hide{
	display: none;
}
.popup .close{
	position: absolute;
	right: -20px;
	top: -20px;
}
.close{
	color: #fff;
	font-size: 20px;
}
.iframe{
	position: relative;
	width: 100%;
	height: 100%;
	background-color: #fff;
}

@media (max-width: 979px) {
	.container{
		padding-left: 20px;
		padding-right: 20px;
	}
	.footer{
		padding-right: 20px;
	}
}
@media (max-width: 767px) {
	body{
		font-size: 14px;
	}
	.container{
		padding-left: 10px;
		padding-right: 10px;
	}
	.home{
		padding: 150px 0;
	}
	.portfolio__list{
		flex-direction: column;
	}
	.portfolio__row{
		-webkit-flex-direction: column;
		flex-direction: column;
	}
	.portfolio__item{
		width: 100%;
	}
	.portfolio__item:nth-child(n){
		margin-top: 15px;
	}
	.portfolio__item:nth-child(-n+1){
		margin-top: 0;
	}
}
@media (max-width: 599px) {
	.home_content{
		padding-left: 15px;
		padding-right: 15px;
	}
	.home_name{
		font-size: 2.5em;
	}
	.contacts__title{
		font-size: 1.5em;
	}
	.contacts__text{
		font-size: 1.2em;
	}
}