
/*============ Media ============*/

/*Burger*/
.burger{
    display: none;
    padding: 9px 2px;

    background: none;
    border: 0;
    outline: none;
    cursor: pointer;
}

.burger__item{
	display: block;
	width: 30px;
	height: 3px;

	background-color: #fff;

	font-size: 0;
	color: transparent;

	position: relative;
}

.burger__item:before,
.burger__item:after{
	content: '';
	height: 100%;

	background-color: #fff;

	position: absolute;
	left: 0;
	z-index: 1;
}

.burger__item:before{
	top: -8px;
	width: 20px;
}

.burger__item:after{
	bottom: -8px;
	width: 25px;
}

@media (max-width: 1300px){
	/*Works*/
	.works__item{
		width: 50%;
	}
}

/*------Tablets------*/
@media (max-width: 991px) {

	/*Nav*/
	.nav{
		display: none;

		width: 100%;
		flex-direction: column;
		
		background-color: #00b7c2;
		text-align: right;

		position: absolute;
		top: 100%;
		right: 0;
	}

	.nav.show{
		display: flex;
	}

	.nav__link{
		padding: 9px 15px;
	}

	/*Burger*/
	.burger{
		display: block;
	}

	/*Intro*/
	.intro__title{
		font-size: 48px;

	}
	
	/*Features*/
	.features__item{
		width: 50%;
	}

	/*Team*/
	.team__item{
		width: 50%;

		text-align: center;
	}

	.team__photo{
		margin-left: auto;
		margin-right: auto;
	}

	/*Social*/
	.social{
		justify-content: center;
	}
	
	/*Reviews*/
	.reviews__photo{
		width: 100%;
		margin: 15px 0 40px;
		overflow: hidden;
	}

	.reviews__content{
		width: 100%;
		padding-left: 0;
		padding-bottom: 40px;
	}
}

/*------Mobile------*/
@media (max-width: 767px) {

	/*Intro*/
	.intro{
		height: auto;
		padding-top: 130px;
		padding-bottom: 30px;
	}

	.intro__title{
		font-size: 30px;
	}

	.intro__subtitle{
		margin-bottom: 30px;

		font-size: 16px;
	}

	/*Features*/
	.features{
		margin: 60px 0;
	}

	.features__item{
		width: 100%;
		padding-left: 0;
		padding-right: 0;
	}

	/*Works*/
	.works__item{
		width: 100%;
		height: 300px;
	}

	/*Team*/
	.team{
		margin: 60px 0 30px;
	}
	.team__item{
		width: 100%;
	}

	/*Reviews*/
	.reviews__text{
		font-size: 25px;
	}
	
	/*Download*/
	.download{
		margin: 50px 0;
	}
	
	.download__title{
		font-size: 24px;
	}

	/*Btn*/
	.btn--long{
		min-width: 260px;
	}

	/*Footer*/
	.footer__inner{
		padding: 30px 0;
	}

	.footer__block{
		width: 100%;
		padding-left: 0;
		padding-right: 0;

		margin-bottom: 30px;
	}

	.footer__block:last-child{
		margin-bottom: 0;
	}
}

@media (max-width: 414px){
	/*Reviews*/
	.reviews__img{
		right: -100px;
	}
}

