*,
*:before,
*:after {
	box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
}

.page {
	overflow: hidden;
}

hr {
	display: block;
	width: 100%;
	height: 1px;
	margin: 40px 0;

	border: 0;
	background-color: #e5e5e5;
}

body {
	margin: 0;
	font-family: 'Montserrat', sans-serif;

	font-size: 15px;
	line-height: 1.6;
	color: #333;
	/* background-color: rgb(247, 245, 241); */
}

/* Container */
.container {
	width: 100%;
	max-width: 1230px;
	padding: 0 15px;
	margin: 0 auto;
}

/* Intro */
.intro {
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 100%;
	height: 100vh;
	min-height: 820px;
	position: relative;

	background: url(../img/intro.jpg) center no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
}

.intro__inner {
	width: 100%;
	max-width: 880px;
	margin: 0 auto;
	text-align: center;
}

.intro__suptitle {
	margin-bottom: 10px;

	font-size: 52px;
	color: #fff;
	font-family: 'Kaushan Script', cursive;
}

.intro__title {
	color: #fff;
	font-size: 100px;
	font-weight: 700;
	text-transform: uppercase;
	line-height: 1;
}
.intro__title:after {
	content: '';
	display: block;
	width: 60px;
	height: 3px;
	background-color: #fff;
	margin: 30px auto;
}

/* Button */
.btn {
	display: inline-block;
	vertical-align: top;
	padding: 8px 30px;

	border: 3px solid white;

	font-size: 14px;
	font-weight: bold;
	color: #fff;
	text-transform: uppercase;
	text-decoration: none;

	transition: background-color 0.2s linear, coloerr 0.1s linear;
}
.btn:hover {
	background-color: #fff;
	color: #333;
}

/* HEADER */
.header {
	padding-top: 30px;
	width: 100%;

	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	/* ??? */
	z-index: 1000;
}

.header.fixed {
	padding: 10px 0;
	background-color: #eb8b8d;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);

	position: fixed;
	right: 0;
	top: 0;
	left: 0;

	transform: translate3d(0, 0, 0);
}

.header.active {
	background-color: #eb8b8d;
}

.header__inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.header__logo {
	font-size: 30px;
	font-weight: 700;
	color: #fff;
}

/* NAV */
.nav {
	text-transform: uppercase;
	font-size: 14px;
}

.nav.active {
	display: block;
}

.nav__link {
	display: inline-block;
	vertical-align: top;
	margin: 0 15px;
	position: relative;

	color: white;
	text-decoration: none;

	transition: color 0.1s linear;
}

.nav__link:hover {
	color: #fce38a;
}

.nav__link:after {
	content: '';
	display: block;
	width: 100%;
	height: 2px;
	opacity: 0;

	background-color: #fce38a;

	position: absolute;
	top: 100%;
	left: 0;
	z-index: 1;

	transition: opacity 0.1s linear;
}
.nav__link:hover::after {
	opacity: 1;
}

/* 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__item {
	display: block;
	width: 100%;
	height: 3px;

	background-color: #fff;

	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;

	transition: background 0.2s linear;
}

.nav-toggle.active .nav-toggle__item {
	background: none;
}

.nav-toggle__item:before,
.nav-toggle__item:after {
	content: '';
	width: 100%;
	height: 3px;
	background-color: #fff;

	position: absolute;
	left: 0;
	z-index: 1;

	transition: transform 0.2s linear;
}

.nav-toggle__item:before {
	top: -8px;
}
.nav-toggle__item:after {
	bottom: -8px;
}

.nav-toggle.active .nav-toggle__item:before {
	transform-origin: left top;
	transform: rotate(45deg) translateX(-2px);
}
.nav-toggle.active .nav-toggle__item:after {
	transform-origin: left bottom;
	transform: rotate(-45deg) translateX(-3px);
}

/* Slider */

.slider {
	width: 100%;

	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 1;
}

.slider__inner {
	display: flex;
	justify-content: space-between;
}

.slider__item {
	width: 23%;
	padding: 20px 0;
	position: relative;

	border-top: 3px solid #fff;
	opacity: 0.7;

	font-size: 18px;
	color: #fff;
	text-transform: uppercase;
}
.slider__item.active {
	opacity: 1;
}
.slider__item.active:before {
	content: '';
	display: block;
	width: 70px;
	height: 3px;

	background-color: #f38181;

	position: absolute;
	top: -3px;
	left: 0;
	z-index: 1;
}

.slider__num {
	font-size: 24px;
	font-weight: 700;
}

/* Section */

.section {
	padding: 80px 0;
}
.section:last-child {
	padding: 0;
}

.section--devices {
	background: url('../img/devices-bg.jpg') center no-repeat;
	background-size: cover;
	-webkit-background-size: cover;
	padding-bottom: 0;
	margin-bottom: 40px;
}

.section__header {
	width: 100%;
	max-width: 900px;
	margin: 0 auto 50px;

	text-align: center;
}

.section__suptitle {
	font-family: 'Kaushan Script', cursive;
	font-size: 24px;
	color: #333;
}

.section__title {
	font-size: 30px;
	font-weight: 700;
	color: #333;
	text-transform: uppercase;
}
.section__title:after {
	content: '';
	display: block;
	height: 2px;
	width: 60px;
	background-color: #f38181;
	margin: 30px auto;

	top: 0;
}

.section__text {
	font-size: 15px;
	color: #999;
}

/* ABOUT */
.card {
	margin: 80px -15px 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.card__item {
	width: 33.33333%;
	padding: 0 15px;
	max-width: 410px;
}

.card__info {
	margin-top: 15px;

	text-align: center;
}
.card__name {
	text-transform: uppercase;
	color: #333;
	font-size: 14px;
	margin-bottom: 5px;
}
.card__prof {
	color: #999;
	font-size: 15px;
	font-style: italic;
}

.card__inner {
	background-color: #95e1d3;
	position: relative;
}

.card__inner:hover .card__img {
	transform: translate3d(-8px, -8px, 0);
}

.card__inner:hover .card__img img {
	opacity: 0.1;
}

.card__inner:hover .card__text {
	opacity: 1;
}

.card__img {
	background: linear-gradient(to bottom, #f38181, #fce38a);
	transition: transform 0.2s linear;
}

.card__img img {
	transition: opacity 0.1s linear;
	display: block;
	max-width: 100%;
	height: auto;
}

.card__text {
	width: 100%;
	font-size: 18px;
	color: #fff;
	text-transform: uppercase;
	font-weight: 700;
	text-align: center;
	opacity: 0;

	position: absolute;
	top: 50%;
	left: 0;
	z-index: 2;
	transform: translate3d(0, -50%, 0);

	transition: opacity 0.1s linear;
}

/* STATISTICS */
.statistics {
	background-color: #95e1d3;
}

.stat {
	display: flex;
	flex-wrap: wrap;
}
.stat__item {
	flex: 1 1 0;
	padding: 70px 25px;

	border-left: 1px solid #b5eae0;
	text-align: center;
	color: #fff;
}

.stat__item:last-child {
	border-right: 1px solid #b5eae0;
}
.stat__count {
	margin-bottom: 10px;
	font-size: 72px;
	font-weight: 700;

	line-height: 1;
}
.stat__text {
	font-size: 14px;
	text-transform: uppercase;
}

/* SERVICES */
.services {
	display: flex;
	flex-wrap: wrap;
}

.services__item {
	width: 33.3333%;

	padding: 0 35px 40px 85px;
	position: relative;
	margin-bottom: 40px;
}

.services__item--border {
	border-bottom: 1px solid #e5e5e5;
}

.services__icon {
	position: absolute;
	top: 5px;
	left: 28px;
	z-index: 1;
}

.services__title {
	color: #333;
	font-size: 14px;
	text-transform: uppercase;
	margin-bottom: 10px;
}

.service__text {
	font-size: 15px;
	color: #999;
}

/* DEVICES */

.devices {
	width: 100%;
	max-width: 600px;
	margin: 0 auto;
	position: relative;
}

.devices__item {
	display: block;
	max-width: 100%;
	height: auto;
}

.devices__item--iphone {
	position: absolute;
	bottom: -80px;
	right: 0;
	z-index: 1;
}

/* We Do */
.wedo {
	display: flex;
	margin: 0 -15px;
	flex-wrap: wrap;
}

.wedo__item {
	width: 50%;
	padding: 0 15px;
}

.wedo__image {
	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 {
	padding: 15px 20px 15px 65px;
	position: relative;
	border-bottom: 1px solid transparent;
	cursor: pointer;
}

.accordion__header:after {
	content: '';
	display: block;
	width: 16px;
	height: 16px;

	border-top: 2px solid #ccc;
	border-right: 2px solid #ccc;

	position: absolute;
	top: 50%;
	right: 20px;
	z-index: 1;
	transform: translateY(-50%) rotate(135deg);
}

.accordion__icon {
	position: absolute;
	top: 50%;
	left: 15px;
	z-index: 1;
	transform: translateY(-50%);
}

.accordion__title {
	font-size: 14px;
	color: #333;
	text-transform: uppercase;
}

.accordion__content {
	display: none;
	padding: 15px 20px;

	font-size: 15px;
	color: #999;
	font-style: italic;
	font-weight: 300;
}

/* Reviews */
.section--gray {
	background-color: #f8f8f8;
}
.reviews {
	padding: 0 110px;
	position: relative;
}

.reviews .slick-slider {
	padding: 0 110px;
}

.reviews__item {
	padding-left: 205px;
	position: relative;
	min-height: 210px;
}

.reviews__photo {
	display: block;
	width: 210px;
	height: 170px;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	border: 3px solid #95e1d3;
	border-radius: 20%;
}

.reviews__text {
	margin-bottom: 15px;
	font-size: 24px;
	font-style: italic;
	font-weight: 300;
	color: #999;
}

.reviews__author {
	font-size: 24px;
	color: #333;
	font-family: 'Kaushan Script', cursive;
}

.reviews__author:before {
	content: '';
	display: inline-block;
	vertical-align: middle;
	width: 60px;
	height: 3px;
	margin-right: 20px;

	background-color: #f38181;
}

.slick-arrow {
	font-size: 0;
	color: transparent;
	display: block;

	border: 0;
	background: none;

	position: absolute;
	top: 50%;
	z-index: 1;
	transform: translateY(-50%);
	cursor: pointer;
}

.slick-arrow:focus {
	outline: 0;
}

.slick-arrow:after {
	content: '';
	display: block;
	width: 16px;
	height: 16px;

	border-top: 2px solid #ccc;
	border-left: 2px solid #ccc;

	top: 50%;
	right: 20px;
	z-index: 1;
}

.slick-prev {
	left: 0;
	transform: rotate(-45deg);
}

.slick-next {
	right: 0;
	transform: rotate(135deg);
}

/* Who we are */

.social {
	display: flex;
	justify-content: center;
}

.social__item {
	width: 55px;
	height: 55px;
	font-size: 25px;
	text-decoration: none;
	color: #f38181;
	background-color: #fce38a;
	border-right: 1px solid #f38181;
	padding: 10px;

	transition: font-size 0.1s linear;
	transition: background-color 0.3s linear;
}
.social__item:last-child {
	border-right: 0;
}
.social__item:hover {
	font-size: 27px;
	color: #fff;
	background-color: #f38181;
}
.social__item:active {
	font-size: 25px;
	background-color: #eb4848;
}

/* LOGOS SECTION */

.logos {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 0 -15px;
}

.logos__item {
	padding: 0 15px;
}

.logos__image {
	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__img {
	opacity: 0.1;
	transform: matrix3d(8px, 8px, 0);
}

.works__img {
	max-width: 100%;
	height: auto;

	transition: opacity 0.2s linear;
	display: block;
}

.works__item:hover .works__info {
	opacity: 1;
}

.works__info {
	opacity: 0;

	color: #fff;
	text-align: center;
	width: 100%;
	position: absolute;
	top: 50%;
	left: 0;

	padding: 0 15px;
	transform: translate3d(0, -50%, 0);
	transition: opacity 0.2s linear;
}

.works__title {
	text-transform: uppercase;
	font-size: 14px;
	margin-bottom: 5px;
}

.works__text {
	font-size: 15px;
	font-weight: 300;
	font-style: italic;
}

/* SECTION QUOTE */
.photo--circle {
	border: 0;
	padding-right: 40px;
}

.text--quote {
	padding-left: 40px;
}

.author--quote {
	padding-left: 25px;
}

/* HAPPY CLIENTS */
.section--clients {
	background: url(../img/clients-bg.jpg) center no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
}

.clients {
	display: flex;
	flex-wrap: wrap;
	margin-top: 70px;
}

.clients__item {
	width: 50%;
	padding: 0 45px 0 175px;
	position: relative;
	margin-bottom: 60px;
}

.clients__img {
	width: 110px;
	height: 110px;
	border-radius: 50%;
	position: absolute;
	top: 0;
	left: 40px;
	z-index: 1;
}
.clients__name {
	margin-bottom: 5px;
	font-size: 14px;
	color: #333;
	text-transform: uppercase;
}

.clients__prof {
	color: #333;
	font-size: 15px;
	font-style: italic;
	font-weight: 300;
}

.clients__text:before {
	content: '';
	display: block;
	width: 60px;
	height: 3px;
	background-color: #f38181;
	margin: 15px;
}
.clients__text {
	font-size: 15px;
	color: #999;
}

/* BLOG */
.blog {
	flex-wrap: wrap;
	display: flex;
	justify-content: space-between;
}

.blog__item {
	width: 31%;
}

.blog__header {
	position: relative;
	margin-bottom: 15px;
}
.blog__photo {
	display: block;
	max-width: 100%;
	height: auto;
}
.blog__date {
	background-color: #95e1d3;
	color: #fff;

	padding: 15px;
	position: absolute;
	left: -10px;
	bottom: 10px;
	z-index: 1;

	text-align: center;
}

.blog__date-day {
	line-height: 1;
	font-size: 30px;
	font-weight: 799;
}

.blog__date-month {
	box-sizing: 15px;
	font-style: italic;
	font-weight: 300;
}

.blog__title {
	font-size: 14px;
	color: #333;
	text-transform: uppercase;
	margin-bottom: 10px;
}

.blog__title a {
	color: inherit;
	text-decoration: none;
}
.blog__title a:hover {
	text-decoration: underline;
	color: #bababa;
}

.blog__text {
	font-size: 15px;
	color: #999;
	margin-bottom: 10px;
}

.blog__footer {
	color: #999;
	font-size: 15px;
	font-weight: 300;
	font-style: italic;

	padding-top: 14px;
	border-top: 1px solid #e5e5e5;
}

.blog__stat--item {
	display: inline-block;
	vertical-align: top;
	margin-right: 10px;
}

.fa-eye,
.fa-comment {
	color: #95e1d3;
}

/* MAP SECTION */
.section--map {
	background: url(../img/map-bg.jpg) center no-repeat;
	margin-top: 100px;
	padding: 80px 0;
}

.map {
	text-align: center;
}

.map__title {
	font-size: 28px;
	color: #f38181;
	font-weight: 700;
	line-height: 1.1;
	position: relative;
}

.map__title:after {
	content: '';
	display: block;
	height: 2px;
	width: 60px;
	background-color: #f38181;
	margin: 20px auto 0;

	top: 0;
}

.fa-location-dot {
	position: absolute;
	left: 49%;
	top: -35px;
	z-index: 1;
	transition: font-size 0.2s linear;
	transition: text-shadow 0.2s linear;
}

.map__title a {
	color: transparent;
	text-decoration: none;
	color: #f38181;

	transition: letter-spacing 0.3s linear;
	transition: text-shadow 0.2s linear;
}
.map__title a:hover {
	letter-spacing: 1px;
	color: #eb4848;
	text-shadow: 1px 1px 10px #f38181;
}
.fa-location-dot:hover {
	font-size: 30px;
	text-shadow: 1px 1px 5px #eb4848;
}

/* FOOTER */
footer {
	padding-top: 65px;

	color: #f8f8f8;
}

.footer__inner {
	padding-bottom: 65px;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin: 0 -15px;
}

.footer__col {
	color: #333;
	padding: 0 15px;
}
.footer__col--first {
	width: 40%;
}

.footer__col--second {
	width: 29%;
}

.footer__col--third {
	width: 22%;
}

.footer__logo {
	margin-bottom: 30px;

	color: #ccc;
	font-size: 42px;
	font-weight: 700;
}

.footer__text {
	margin-bottom: 30px;

	font-size: 15px;
	color: #999;
}

.footer__social {
	margin-bottom: 25px;
}

.footer__social--header {
	font-size: 14px;
	color: #333;

	padding-bottom: 15px;

	border-bottom: 1px solid #e5e5e5;
}

.footer__social--header b {
	font-size: 18px;
}

.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;

	color: #95e1d3;
	font-size: 22px;
}

.footer__title {
	margin: 30px 0;

	text-transform: uppercase;
	font-size: 14px;
	color: #333;
	margin-bottom: 30px;
}

/* SUBSCRIBE BLOCK */
.subscribe {
	width: 100%;
	max-width: 380px;
	display: flex;
}

.subscribe__input {
	width: 60%;
	height: 40px;
	background: #fff;
	border: 1px solid #e7e7e7;
	border-right: 0;
	padding: 12px;
	line-height: 1.1;

	font-family: 'Monserrat', sans-serif;
	font-size: 15px;
	font-style: italic;
	color: #333;
	font-weight: 300;

	transition: border-color 0.1s linear;
	transition: box-shadow 0.2s linear;
}
.subscribe__input::placeholder {
	color: #ccc;
}
.subscribe__input:hover::placeholder {
	color: #9c9c9c;
}
.subscribe__input:focus {
	outline: 0;
	border-color: #95e1d3;
	box-shadow: 1px 1px 10px;
}

.subscribe__button {
	width: 40%;
	height: 40px;
	padding: 12px 30px;

	cursor: pointer;
	background-color: #95e1d3;
	border: none;
	font-family: 'Monserrat', sans-serif;
	line-height: 1.1;
	font-size: 14px;
	font-weight: 700;
	color: #fff;
	text-transform: uppercase;

	transition: background-color 0.2s linear;
	transition: box-shadow 0.2s linear;
}
.subscribe__button:hover {
	background-color: #16584c;
	box-shadow: 1px 1px 10px #95e1d3;
}
.subscribe__button:focus {
	background-color: #002e25;
}

/* BLOGS */

.blogs__item {
	display: flex;
	align-items: center;
	margin-bottom: 30px;
}

.blogs__img {
	height: 80px;
	width: 120px;
}

.blogs__content {
	padding-left: 20px;
}

.blogs__title {
	color: #333;
	font-size: 12px;
	text-transform: uppercase;
	text-decoration: none;
	line-height: 1.5;

	display: block;
	margin-bottom: 5px;
}
.blogs__title:hover {
	text-decoration: underline;
}

.blogs__date {
	font-size: 13px;
	font-style: italic;
	font-weight: 300;
	color: #999;
}
/* INSTAGRAM FOOTER */
.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;
}

.more__photos a {
	color: #333;
	font-size: 14px;
	margin-top: 20px;
	text-decoration: none;
	display: block;
}
.more__photos a:hover {
	text-decoration: underline;
}

/* COPYRIGHT */
.copyright {
	width: 100%;
	font-size: 14px;
	color: #333;
	border-top: 1px solid #e5e5e5;

	padding: 30px;
	text-align: center;
	background: linear-gradient(to left, #fce38a, #f38181);
}
.copyright span {
	color: #eb4848;
	font-weight: 700;
}

/* ADAPTIVE */
@media (max-width: 1230px) {
	/* INTRO */
	.intro__suptitle {
		font-size: 52px;
	}
	.intro__title {
		font-size: 100px;
	}

	/* REVIEWS */
	.reviews__text {
		font-size: 20px;
	}
}
@media (max-width: 990px) {
	/* INTRO */
	.intro__suptitle {
		font-size: 32px;
	}
	.intro__title {
		font-size: 80px;
	}

	/* STATISTIC */
	.stat {
		justify-content: center;
	}
	.stat__item {
		flex: none;
		width: 33.3333%;
		padding-top: 30px;
		padding-bottom: 30px;

		border: 0;
	}
	.stat__item:last-child {
		border-right: 0;
	}

	/* SERVICES */
	.services__item {
		width: 50%;
		padding-bottom: 0;
	}
	.services__item--border {
		border-bottom: 0;
	}

	/* REVIEWS */
	.reviews .slick-slider {
		padding: 0 60px;
	}

	.reviews__photo {
		width: 150px;
		height: 150px;
	}
	.photo--circle {
		height: 100px;
	}

	.reviews__item {
		padding-left: 170px;
	}

	/* HAPPY 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: 550px;
	}

	/* .intro__suptitle {
		font-size: 28px;
	}
	.intro__title {
		font-size: 50px;
	}

	.intro__title:after {
		margin: 15px auto;
	}

	.btn {
		padding: 3px 10px;
		font-size: 12px;
	} */

	/* HEADER */
	.header {
		padding: 10px 0;
	}

	/* NAV */

	.nav {
		display: none;
		width: 100%;

		position: absolute;
		top: 60px;
		left: 0;

		background-color: #eb8b8d;
	}

	.nav__link {
		display: block;
		margin: 0;
		padding: 8px 20px;
	}

	/* TOGGLE */
	.nav-toggle {
		display: block;
	}

	/* CARD */
	.card {
		margin-top: 50px;
		justify-content: center;
	}
	.card__item {
		width: 100%;
		margin-bottom: 30px;
	}
	.card__item:last-child {
		margin-bottom: 0;
	}

	/* SECTION*/
	.section {
		padding: 40px 0;
	}

	.section--devices {
		padding-bottom: 0;
	}

	/* SLIDER */
	.slider__text {
		display: none;
	}

	.slider__item.active:before {
		width: 50%;
	}

	/* SERVICES */
	.services {
		justify-content: center;
	}

	.services__item {
		width: 100%;
		max-width: 400px;
		padding-left: 75px;
		padding-right: 0;
	}
	.services__icon {
		left: 0;
	}

	/* WEDO */
	.wedo__image {
		display: none;
	}

	.wedo__item {
		width: 100%;
	}

	/* REVIEWS */
	.reviews__item {
		padding-left: 0;
	}

	.reviews__photo {
		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 {
		margin: 0 auto;
		max-width: 380px;
	}

	.blog__item {
		width: 100%;
		margin-bottom: 30px;
	}
	.blog__item:last-child {
		margin-bottom: 0;
	}
	.section--map {
		margin-top: 0;
	}

	/* FOOTER */
	.footer__col--second,
	.footer__col--third {
		width: 100%;
	}

	/* COPYRIGHT */
	.copyright {
		font-size: 12px;
	}
}

@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;
	}

	/* STATISTIC */
	.stat__item {
		width: 100%;
		border-bottom: 1px solid #fff;
	}
	.stat__item:last-child {
		border-bottom: 0;
	}

	.stat__count {
		font-size: 52px;
	}

	/* DEVICES */
	.devices {
		max-width: 320px;
	}
	.devices__item--iphone {
		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: 50%;
		margin-bottom: 20px;
	}

	.logos__image {
		margin: 0 auto;
	}

	/* WORKS */
	.works__col {
		width: 100%;
	}

	.works__title {
		font-size: 20px;
	}

	.works__text {
		font-size: 20px;
	}

	/* HAPPY CLIENTS */
	.clients__img {
		position: static;
	}
	.clients__item {
		padding-left: 0;
		text-align: center;
	}

	.clients__text:before {
		margin: 15px auto;
	}

	/* SUBSCRIBE */
	.subscribe {
		flex-wrap: wrap;
		max-width: none;
	}
	.subscribe__input {
		margin-bottom: 10px;
		width: 100%;
		border-right: 1px solid #e7e7e7;
	}
	.subscribe__button {
		width: 100%;
	}

	/* BLOGS FOOTER */
	.blogs__img {
		width: 80px;
		height: 50px;
	}

	.blogs__title {
		font-size: 10px;
	}

	/* COPYRIGHT */
	.copyright {
		font-size: 10px;
	}
}