/* Fonts */
@font-face {
	font-family: 'Kaushan Script';
	src: url('KaushanScript/KaushanScript-Regular.eot');
	src: local('Kaushan Script'), local('KaushanScript-Regular'),
	url('KaushanScript/KaushanScript-Regular.eot?#iefix') format('embedded-opentype'),
	url('KaushanScript/KaushanScript-Regular.woff') format('woff'),
	url('KaushanScript/KaushanScript-Regular.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'Montserrat Regular';
	src: url('Montserrat/Montserrat-Regular.eot');
	src: url('Montserrat/Montserrat-Regular.eot?#iefix') format('embedded-opentype'),
	url('Montserrat/Montserrat-Regular.woff') format('woff'),
	url('Montserrat/Montserrat-Regular.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'Roboto Regular';
	src: url('Roboto/Roboto-Regular.eot');
	src: url('Roboto/Roboto-Regular.eot?#iefix') format('embedded-opentype'),
	url('Roboto/Roboto-Regular.woff') format('woff'),
	url('Roboto/Roboto-Regular.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'Roboto Light';
	src: url('Roboto/Roboto-Light.eot');
	src: url('Roboto/Roboto-Light.eot?#iefix') format('embedded-opentype'),
	url('Roboto/Roboto-Light.woff') format('woff'),
	url('Roboto/Roboto-Light.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}

body {
	font-family: 'Montserrat', sans-serif;
	font-size: 15px;
	color: #333333;
	line-height: 1.6;
	margin: 0;
}
*,
*:before,
*:after {
	box-sizing: border-box;
}
h1, h2, h3, h4, h5, h6 {
	margin: 0;
}



/* Page */
.page {
	overflow: hidden;
}


/* Container */
.container {
	width: 100%;
	max-width: 1230px;
	padding: 0 15px;
	margin: 0 auto;
}


 /* Intro */
 .intro {
 	width: 100%;
 	height: 100vh;
 	min-height: 820px;
 	background: url("../image/images/intro.jpg") center no-repeat;
 	-webkit-background-size: cover;
 	background-size: cover;
 	display: flex;
 	flex-direction: column;
 	justify-content: center;
 	position: relative;
 }
 .intro__title {
 	font-size: 150px;
 	font-weight: 700;
 	text-transform: uppercase; 
 	color: #ffffff;
 	line-height: 1;
 }
 .intro__title:after {
 	content: "";
 	display: block;
 	width: 60px;
 	height: 3px;
 	background-color: #ffffff;
 	margin: 60px auto 60px;
 }
 .intro__suptitle {
 	margin-bottom: 20px;
 	font-size: 72px;
 	font-weight: 700;
 	color: #ffffff;
 	font-family: 'Kaushan Script';
 }
 .intro__inner {
 	width: 100%;
 	max-width: 880px;
 	margin: 0 auto;
 	text-align: center;
 }


 /* Header */
 .header {
 	width: 100%;
 	padding-top: 30px;
 	position: absolute;
 	top: 0;
 	left: 0;
 	right: 0;
 	z-index: 1000;
 }

.header.fixed {
	padding: 10px 0;
	background-color: #e98383;
	box-shadow: 0 5px 10px rgba(0, 0, 0, .2); 

	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 500;

	transform: translate3d(0, 0, 0);
}
.header.active {
	background-color: #e98383;
}

 .header__inner {
 	display: flex;
 	justify-content: space-between;
 	align-items: center;
 }
 .header__logo {
 	font-size: 30px;
 	font-weight: 700;
 	color: #ffffff;
 }


 /* Nav */
 .nav {
 	text-transform: uppercase;
 	font-size: 14px;
 }
 .nav.active {
 	display: block;
 }
 .nav__link {
 	color: #ffffff;
 	text-decoration: none;
 	transition: color 0.1s linear;
 	display: inline-block;
 	vertical-align: top;
 	margin: 0 15px;
 	position: relative;
 }
 .nav__link:after {
 	content: "";
 	opacity: 0;
 	display: block;
 	width: 100%;
 	height: 3px;
 	position: absolute;
 	background-color: #fce38a;
 	top: 100%;
 	left: 0;
 	z-index: 1;
 	transition: opacity 0.1s linear;
 }
 .nav__link:hover {
 	color: #fce38a;
 }
 .nav__link:hover:after,
 .nav__link.active:after {
 	opacity: 1;
 }
 .nav__link.active {
 	color: #fce38a;
 }


 /* Nav toggle*/
 .nav-toggle {
  	width: 30px;
  	padding: 10px 0;
  	display: none;

  	font-size: 0;
  	color: transparent;

  	border: 0;
  	background: none;
  	cursor: pointer;

  	position: absolute;
  	top: 24px;
  	right: 24px;
  	z-index: 1;
  }
 .nav-toggle:focus {
 	outline: 0;
 }
 .nav-toggle__item {
 	display: block;
 	width: 100%;
 	height: 3px;
 	background-color: #fff;

 	position: absolute;
 	top: 0;
 	right: 0;
 	left: 0;
 	bottom: 0;
 	margin: auto;

 	transition: background .2s linear;
 }
 .nav-toggle__item:before,
 .nav-toggle__item:after {
 	content: "";
 	width: 100%;
 	height: 3px;

 	position: absolute;

 	background-color: #fff;
 	left: 0;
 	z-index: 1;

 	transition: transform .2s linear;
 }
 .nav-toggle.active .nav-toggle__item {
 	background: none;
 }
 .nav-toggle.active .nav-toggle__item:before {
 	transform-origin: left top;
 	transform: rotate(45deg) translate3d(0px, -8px, 0px);
 }
 .nav-toggle.active .nav-toggle__item:after {
 	transform-origin: left bottom;
 	transform: rotate(-45deg) translate3d(0px, 8px, 0px);
 }
  .nav-toggle__item:before {
  	top: -8px;
  }
  .nav-toggle__item:after  {
  	bottom: -8px;
  }




 /* Button */
 .btn {
 	display: inline-block;
 	vertical-align: top;
 	font-weight: 700;
 	padding: 8px 30px;
 	border: 3px solid #ffffff;
 	color: #ffffff;
 	text-transform: uppercase; 
 	font-size: 14px;
 	text-decoration: none;
 	transition: background .1s linear,color .1s linear;
 }
.btn:hover {
	background-color: #ffffff;
	color: #efc788;
}


/* Slider */
.slider {
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 1;
	width: 100%;
}
.slider__inner {
	display: flex;
	justify-content: space-between;
}
.slider__item {
	width: 23%;
	position: relative;
	border-top: 3px solid #fff;
	text-transform: uppercase;
	color: #ffffff;
	font-size: 18px;
	padding: 20px 0;
	border-top: 3px solid #ffffff; 
	opacity: .7;
}
.slider__item.active {
	opacity: 1;
}
.slider__item.active:before {
	content: "";
	display: block;
	width: 70px;
	height: 3px;
	position: absolute;
	top: -3px;
	left: 0;
	z-index: 1;
	background-color: #f38181;
}
.slider__num {
	font-size: 24px;
	font-weight: 700;
}

/* Section */
.section {
	padding: 80px 0;
}
.section--devices {
	margin-bottom: 40px;
	background: url("../image/images/Rectangle.png") center no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
	padding-bottom: 0;
}
.section--gray {
	background-color: #f8f8f8;
}
.section--clients {
	background: url("../image/images/People/Bgclient.png") center no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
	padding-bottom: 0;
}
.section--map {
	background: url("../image/images/Bgmap.png") center no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
	padding: 40px 0;
}
.section__header {
	margin: 0 auto 50px;
	width: 100%;
	max-width: 950px;
	text-align: center;
}
.section__suptitle {
	font-size: 24px;
	font-family: 'Kaushan Script';
	color: #333;
}
.section__title {
	font-size: 30px;
	color: #333;
	font-weight: 700;
	text-transform: uppercase;
}
.section__title:after {
 	content: "";
 	display: block;
 	width: 60px;
 	height: 3px;
 	background-color: #f38181;
 	margin: 40px auto 40px;
}
.section__text {
	font-size: 15px; 
	color: #999;
	font-family: 'Roboto Regular';
}



/* Card */
.card {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 80px -15px 0;
}
.card__inner {
	position: relative;
	background-color: #95e1d3;
}
.card__item {
	width: 33.333333%;
	padding: 0 15px;
}
.card__item:hover .card__img{
	transform: translate3d(-10px, -10px, 0);
}
.card__item:hover .card__img img {
	opacity: .1;
}
.card__item:hover .card__text {
	opacity: 1;
}
.card__img {
	background: linear-gradient(to bottom, #f38181, #fce38a);
	transition: transform .1s linear;
}
.card__img img {
	display: block;
	max-width: 100%;
	height: auto;
	transition: opacity .2s linear;
}
.card__text {
	width: 100%;
	color: #fff;
	text-transform: uppercase;
	font-size: 18px;
	font-weight: 700;
	font-family: 'Roboto Regular';
	text-align: center;
	position: absolute;
	top: 50%;
	left: 0;
	z-index: 2;
	transform: translate3d(0, -50%, 0);
	opacity: 0;
	transition: opacity .2s linear;
}
.card__info {
	margin-top: 20px;
	text-align: center;
}
.card__name {
	text-transform: uppercase;
	color: #333;
	font-size: 14px;
	font-weight: 700;
}
.card__prof {
	font-size: 15px;
	color: #ccc;
	font-family: 'Roboto Regular';
	font-style: italic;
}



/* Statistics */
.statistics {
	background-color: #95e1d3;
}
.stat {
	display: flex;
	flex-wrap: wrap;
}
.stat__item {
	flex: 1 1 0;
	border-left: 1px solid #b5eae0;
	color: #ffffff;
	text-align: center;
	padding: 70px 25px;

}
.stat__item:last-child {
	border-right: 1px solid #b5eae0;
}
.stat__num {
	font-size: 72px;
	font-weight: 700;
	line-height: 1;
	margin-bottom: 10px;
}
.stat__text {
	font-size: 14px;
	text-transform: uppercase;
}


/* Services */
.services {
	display: flex;
	flex-wrap: wrap;
}
.services__item {
	width: 33.33333%;
	padding: 0 35px 40px 85px;
	position: relative;
	margin-bottom: 40px;
}
.services__item--border {
	border-bottom: 1px solid #e5e5e5;
}
.services__icon {
	position: absolute;
	top: 0;
	left: 28px;
	z-index: 1;
}
.services__title {
	margin-bottom: 10px;
	font-size: 14px; 
	text-transform: uppercase;
	color: #333;
}
.services__text {
	font-size: 15px;
	color: #b3b3b3;
	font-family: 'Roboto Regular';
}


/* Devices */
.devices {
	width: 100%;
	max-width: 600px;
	margin: 0 auto;
	position: relative;
}
.devices__item {
	display: block;
	right: 0;
	max-width: 100%;
	height: auto;
}
.devices__item--iphone {
	position: absolute;
	bottom: -55px;
	right: 0;
	z-index: 1;
}


/* We do */
.wedo {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -15px;
}
.wedo__item {
	width: 50%;
	margin-bottom: 10px;
	padding: 0 15px;
}
.wedo__pic {
	display: block;
	max-width: 100%;
	height: auto;
}


/* Accordion */
.accordion__item {
	margin-bottom: 10px;
	border: 1px solid #e5e5e5;
}
.accordion__item.active 
.accordion__content {
	display: block;
}
.accordion__item.active
.accordion__header {
	border-bottom-color:  #e5e5e5;
}
.accordion__item.active
.accordion__header:after {
	transform: translateY(-50%)  rotate(-45deg);
	margin-top: 5px;
}
.accordion__header {
	border-bottom: 1px solid transparent;
	padding: 15px 20px 15px 65px; 
	position: relative;
	cursor: pointer;
}
.accordion__header:after {
	content: "";
	display: block;
	width: 16px;
	height: 16px;
	border-top: 3px solid #ccc;
	border-right: 3px solid #ccc;
	position: absolute;
	top: 50%;
	right: 20px;
	z-index: 1;
	transform: translateY(-50%)  rotate(135deg);
}
.accordion__icon {
	position: absolute;
	top: 50%;
	left: 20px;
	z-index: 1;
	transform: translateY(-50%);
}
.accordion__title {
	text-transform: uppercase;
	font-size: 14px;
	color: #333;
}
.accordion__content {
	font-size: 15px;
	font-family: 'Roboto Light';
	font-style: italic;
	color: #999;
	padding: 15px 20px;
	display: none;
}


/* Reviews */
.reviews {
	position: relative;
}
.reviews .slick-slider {
	padding: 0 110px;
}
.reviews__item {
	min-height: 220px; 
	position: relative;
	padding-left: 255px;
}
.reviews__photo {
	display: block;
	padding: 40px 40px;
	border: 3px solid #95e1d3;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}
.reviews__photo.ellipse {
	position: absolute;
	padding: 0 0;
	border: 1px solid transparent;
	top: 0;
	left: 0;
	z-index: 1;
	border-radius: 50%;
	height: 100%;
}
.reviews__text {
	font-size: 24px;
	font-style: italic;
	font-weight: 300;
	color: #999;
}
.reviews__author {
	font-size: 24px;
 	font-family: 'Kaushan Script';
	color: #333;
}
.reviews__author:before {
	content: "";
 	display: inline-block;
 	vertical-align: middle;
 	margin-right: 10px;
 	width: 60px;
 	height: 3px;
 	background-color: #f38181;
}
.slick-arrow {
	font-size: 0;
	color: transparent;

	border: 0;
	background: none;
	cursor: pointer;


	position: absolute;
	top: 50%;
	z-index: 1;
	transform: translateY(-50%);
}
.slick-arrow:focus {
	outline: 0;
}
.slick-arrow:after {
	content: "";
	display: block;
	width: 16px;
	height: 16px;
	border-top: 3px solid #ccc;
	border-left: 3px solid #ccc;
}
.slick-prev {
	transform: rotate(-45deg);
	left: 0; 
}
.slick-next {
	transform: rotate(135deg);
	right: 0; 
}


/* Social */
.social {
	display: flex;
	justify-content: center;
}
.social__item {
	width: 55px;
	height: 55px;
	padding: 12px 10px;
	background-color: #fce38a;
	border-right: 1px solid #f38181;
	text-decoration: none;
	color: #f38181;
	font-size: 24px;
	line-height: 1;
	transition: background .1s linear, colo .1s linear;
}
.social__item:last-child {
	border-right: 0;
}
.social__item:hover {
	background-color: #f38181;
	color: #fff;
}

/* Logos */
.logos {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 0 -15px;
}
.logos__item {
	padding: 0 15px;
}
.logos__img {
	display: block;
	max-width: 100%;
	height: auto;
}


/* Works */
.works {
	display: flex;
}
.works__col {
	flex: 1 1 0;
}
.works__item {
	position: relative;
	background: linear-gradient(to bottom, #f38181, #fce38a);
}
.works__item:hover .works__image {
	opacity: .1;
}
.works__item:hover .works__info {
	opacity: 1;
}
.works__image {
	transition: opacity .2s linear;
	display: block;
	max-width: 100%;
	height: auto;
}
.works__info {
	width: 100%;
	padding: 0 15px;
	text-align: center;
	color: #fff;
	position: absolute;
	top: 50%;
	left: 0;
	z-index: 1;
	transform: translate3d(0, -50%, 0);
	transition: opacity .2s linear;
	opacity: 0;
}
.works__icon {
	font-size: 30px;
	height: 35px;
	margin-bottom: 15px;
}
.works__title {
	margin-bottom: 5px;
	font-size: 14px;
	text-transform: uppercase;
}
.works__text {
	font-size: 15px;
	font-weight: 300;
	font-style: italic;
}


/* Clients*/
.clients {
	display: flex;
	flex-wrap: wrap;
	margin-top: 70px;
}
.clients__item {
	width: 50%;
	padding: 0 45px 0 175px;
	position: relative;
	margin-bottom: 60px;
}
.clients__image {
	position: absolute;
	top: 0;
	left: 40px;
	z-index: 1;

	border-radius: 50%;
	width: 110px;
	height: 110px;
}
.clients__name {
	font-size: 14px;
	color: #333;
	text-transform: uppercase;
	margin-bottom: 5px;
}
.clients__prof {
	font-size: 15px;
	font-style: italic;
	font-weight: 300;
	font-family: 'Roboto Light';
	color: #4c4c4c;
}
.clients__text {
	color: #999;
	font-family: 'Roboto Light';
	font-size: 15px;
}
.clients__text:before {
 	content: "";
 	display: block;
 	width: 60px;
 	height: 3px;
 	background-color: #f38181;
 	margin: 15px 0;
}


/* Blog */
.blog {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-top: 80px;
}
.blog__header {
	position: relative;
	margin-bottom: 20px;
}
.blog__item {
	width: 32%;

}
.blog__photo {
	display: block;
	width: 100%;
	height: auto;
}
.blog__date {
	padding: 10px 20px;
	position: absolute;
	text-align: center;
	background-color: #95e1d3;
	color: #fff;
	bottom: 10px;
	left: -10px;
	z-index: 1;

	font-size: 15px;
	font-style: italic;
	font-weight: 300;
	font-family: 'Roboto Light';
}
.blog__date-day {
	font-size: 30px;
	font-weight: 700;
	font-style: normal;
	font-family: 'Montserrat';
	line-height: 1;
}

.blog__title {
	margin-bottom: 10px;
	text-transform: uppercase;
	font-size: 14px;
	color: #333;
}
.blog__title a {
	color: inherit;
	text-decoration: none;
}
.blog__title a:hover {
	text-decoration: underline;
}
.blog__text {
	color: #999;
	font-size: 15px;
	font-family: 'Roboto Light';

	margin-top: 20px;
	margin-bottom: 20px;
	padding-bottom: 20px;

	border-bottom: 1px solid #e5e5e5;
}
.blog-stat__item {
	font-size: 15px;
	font-family: 'Roboto Light';
	font-weight: 300;
	color: #999;
	font-style: italic;

	display: inline-block;
	vertical-align: top;
	margin-right: 10px;
}
.blog-stat__item i {
	color: #95e1d3;
}



/* Map */
.map {
	text-align: center;
}
.map__title {
	color: #f38181;
	font-size: 24px;
	font-weight: 700;
	text-transform: uppercase;
}
.map__title:after {
 	content: "";
 	display: block;
 	width: 60px;
 	height: 3px;
 	background-color: #f38181;
 	margin: 15px auto 0;
}

.map__title a {
	color: inherit;
	text-decoration: none;
}
.map__title a:hover {
	text-decoration: underline;
}


/* Footer */
.footer {
	background-color: #f8f8f8;
	padding-top: 65px;
}
.footer__inner {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 0 -15px;
	padding-bottom: 70px;
}
.footer__col {
	padding: 0 15px;
}
.footer__col--first {
	width: 40%;
}
.footer__col--second {
	width: 30%;
}
.footer__col--third {
	width: 22%;
}
.footer__logo {
	font-size: 46px;
	color: #ccc;
	font-weight: bold;
}
.footer__text {
	margin-bottom: 40px;
	margin-top: 40px;
	font-size: 15px;
	font-family: 'Roboto Light';
	color: #999;
}
.footer__social {
	margin-bottom: 25px;
}
.footer__social-header {
	padding-bottom: 15px; 
	font-size: 14px;
	font-weight: 300;
	color: #333;
	border-bottom: 1px solid #e5e5e5;
}
.footer__social-header b {
	font-size: 18px;
	font-weight: 700;
}
.footer__social-content {
	padding-top: 15px;
	font-size: 15px;
	color: #999;
	font-style: italic;
	font-weight: 300;
}
.footer__social-content a {
	display: inline-block;
	vertical-align: middle;
	margin-left: 10px;
	font-size: 18px;
	color: #95e1d3;
}
.footer__title {
	margin: 30px 0;

	text-transform: uppercase;
	font-size: 14px;
	color: #333;
}


/* Subscribe */
.subscribe {
	width: 100%;
	max-width: 380px;
	display: flex;
}
.subscribe__input {
	width: 60%;
	height: 40px;
	padding: 12px;
	line-height: 1.1;

	background-color: #fff;
	border: 1px solid #e5e5e5;
	border-right: 0;

	font-family: 'Roboto Regular';
	font-size: 15px;
	font-style: italic;
	color: #333;
	font-weight: 300;
}
.subscribe__input::placeholder {
	color: #ccc;
}
.subscribe__input:focus {
	outline: 0;
	border-color: #95e1d3;
}
.subscribe__btn {
	width: 40%;
	height: 40px;
	padding: 12px 30px;
	font-weight: 700;
	font-family: 'Montserrat';
	text-transform: uppercase;
	font-size: 14px;
	color: #fff;
	background-color: #95e1d3;
	border: 0;
	cursor: pointer;
	line-height: 1.1;
	transition: background .2s linear;
}
.subscribe__btn:hover {
	background-color: #87c8bc;
}
.subscribe__btn:focus {
	outline: 0;
}



/* Blogs */
.blogs__item {
	display: flex;
	margin-bottom: 30px;
	align-items: center;
}
.blogs__img {
	width: 120px;
	height: 80px;
}
.blogs__content {
	padding-left: 20px;
}
.blogs__title {
	color: #333;
	text-transform: uppercase;
	font-size: 12px;
	line-height: 1.5;
	text-decoration: none;
	display: block;
	margin-bottom: 5px;
}
.blogs__title:hover {
	text-decoration: underline;
}
.blogs__date {
	font-family: 'Roboto Regular';
	font-size: 15px;
	font-style: italic;
	color: #999;
	font-weight: 300;
}


/* Instagram */
.instagram {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.instagram__item {
	width: 33%;
	border-bottom: 1px solid #fff;
}
.instagram__item img {
	display: block;
	max-width: 100%;
	height: auto;
}
.instagram__text {
	font-family: 'Roboto Regular';
	font-size: 13px;
	font-style: italic;
	color: #333;
	font-weight: 300;
	padding-top: 20px;
}

/* Copyright */
.copyright {
	padding: 20px 0;
	border-top: 1px solid #e5e5e5;
	text-align: center;
	color: #333;
	font-size: 14px;
}
.copyright span {
	color: #f38181;
}




@media (max-width: 1230px) {

	/* Intro */
	.intro__suptitle {
		font-size: 52px;
	}
	.intro__title {
		font-size: 120px;
	}

	/* Reviews */
	.reviews__text {
		font-size: 20px;
	}
}

@media (max-width: 990px) {

	/* Intro */
	.intro__suptitle {
		font-size: 32px;
	}
	.intro__title {
		font-size: 80px;
	}

	/* Stat */
	.stat {
		justify-content: center;
	}
	.stat__item {
		flex: none;
		width: 33.33333%;
		padding-top: 30px;
		padding-bottom: 30px;

		border: 0;
	}
	.stat__item:last-child {
		border: 0;
	}

	/* Services */
	.services__item {
		width: 50%;
		padding-bottom: 0;
	}
	.services__item--border {
		border-bottom: 0;
	}

	/* Reviews */
	.reviews .slick-slider {
		padding: 0 60px;
	}
	.reviews__item {
		padding-left: 175px;
	}
	.reviews__photo.ellipse {
		padding-left: 0;
		width: 150px;
		height: 150px;
	}


	/* Clients*/
	.clients {
		max-width: 600px;
		margin: 0 auto;
	}
	.clients__item {
		width: 100%;
		padding-right: 0;
	}
	.clients__item:last-child {
		margin-bottom: 0;
	}

	/* Footer */
	.footer__col--first {
		width: 100%;
	}
	.footer__col--second,
	.footer__col--third {
		width: 50%;
	}


	/* Instagram */
	.instagram {
		justify-content: flex-start;
	}
	.instagram__item {
		width: auto;
		border-right: 1px solid #fff;
	}


}

@media (max-width: 770px) {


	/* Intro */
	.intro {
		min-height: 650px;
	}

	 /* Header */
 	.header {
 		padding: 10px 0;
 	}

	/* Nav */
	.nav {
		display: none;
		width: 100%;
		position: absolute;
		top: 100%;
		left: 0;
		background-color: #e98383; 
	}
	.nav__link {
		display: block;
	}

	/* Nav toggle*/
   .nav-toggle {
  		display: block;
  		margin: 0;
  		padding: 8px 20px;
    }

	/* Section */
	.section {
		padding: 40px 0;
	}
	.section--devices {
		padding-bottom: 0;
	}


	/* Slider */
	.slider__text {
		display: none;
	}
	.slider__item.active:before {
		width: 50%;
	}


	/* Card */
	.card {
		margin-top: 50px;
		justify-content: center;
	}
	.card__item {
		width: 100%;
		max-width: 410px;
		margin-bottom: 30px;
	}
	.card__item:last-child {
		margin-bottom: 0;
	}


	/*services*/
	.services {
		justify-content: center;
	}
	.services__item {
		width: 100%;
		max-width: 400px;
		padding-left: 55px;
		padding-right: 0;
	}
	.services__icon {
		left: 0;
	}

	/* We do*/
	.wedo__pic {
		display: none;
	}
	.wedo__item {
		width: 100%;
	}

	/* Reviews */
	.reviews__item {
		padding-left: 0;
	}
	.reviews__photo {
		position: static;
		margin: 0 auto 20px;
	}
	.reviews__photo.ellipse {
		position: static;
		margin: 0 auto 20px;
	} 
	.reviews__text {
		font-size: 16px;
	}
	.reviews__author {
		font-size: 20px;
	}


	/* Works */
	.works {
		flex-wrap: wrap;
	}
	.works__col {
		flex: none;
		width: 50%;
	}


	/* Blog */
	.blog {
		max-width: 380px;
		margin: 0 auto;
	}
	.blog__item {
		width: 100%;
		margin-bottom: 30px;
	}
	.blog__item:last-child  {
		margin-bottom: 0;
	}


	/* Footer */
	.footer__col {
		width: 100%;
	}
}

@media (max-width: 575px) {

	/* Intro */
	.intro__suptitle {
		font-size: 22px;
	}
	.intro__title {
		font-size: 40px;
	}

	/* Section */
	.section__header {
		margin-bottom: 50px; 
	}
	.section__suptitle {
		font-size: 20px;
	}
	.section__title {
		font-size: 24px;
	}
	.section__title:after {
		margin: 20px auto;
	}

	/* Stat */
	.stat__item {
		width: 100%;
		border-bottom: 1px solid #b5eae0;
	}
	.stat__item:last-child {
		border-bottom: 0;
	}
	.stat__num {
		font-size: 52px;
	}

	/* Devices */
	.devices {
		max-width: 320px;
	}
	.devices__item--iphone {
		max-width: 180px;
		bottom: -50px;
		right: -80px;
	}

	/* Reviews */
	.reviews .slick-slider {
		padding: 0;
	}
	.slick-arrow {
		top: 18%;
	}


	/* Logos */
	.logos {
		flex-wrap: wrap;
		justify-content: center;
	}
	.logos__item {
		width: 100%;
		margin-bottom: 20px;

	}
	.logos__img {
		margin: 0 auto;
	}


	/* Works */
	.works__col {
		width: 100%;
	}


	/* Clients*/
	.clients__image {
		position: static;
	}
	.clients__item {
		padding-left: 0;
		text-align: center;
	}
	.clients__text:before {
		margin: 0 auto;
	}


	/* Blogs */
	.blogs__img {
		width: 80px;
		height: 50px;
	}
	.blogs__title {
		font-size: 10px;
	}
    

    /* Subscribe */
    .subscribe {
    	flex-wrap: wrap;
    	max-width: none;
    }
    .subscribe__input {
    	margin-bottom: 10px;
    	border-right: 1px solid #e5e5e5;
    }
    .subscribe__input,
    .subscribe__btn {
    	width: 100%;
    }

}