

* {
	margin: 0;
	padding: 0;
}

h1,h2,h3,h4,h5,h6 {
	margin: 0;
}
/*CONTAINER*/
.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
}

/*INTRO*/

.intro {
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 100%;
	height: 100vh;
	background: url(asd.jpg) center no-repeat;
	background-size: cover;
}

.intro__title {
	font-size: 150px;
	font-weight: 700;
	text-transform: uppercase;
	text-align: center;
	line-height: 1;
}

.intro__inner {
	color: #fff;
	width: 100%;
	max-width: 880px;
	text-align: center;
	margin: 0 auto;
}

.intro__title:after {
	content: "";
	height: 3px;
	display: block;
	width: 60px;
	background-color: #fff;
	margin: 60px auto;

}

.intro__suptitle {
	font-size: 72px;
	color: #fff;
	text-align: center;
	margin-bottom: 20px;
}
/*BUTTON*/
.btn {
	display: inline-block;
	vertical-align: top;
	border: 3px solid white;
	padding: 8px 30px;
	color: #fff;
	text-transform: uppercase;
	font-size: 14px;
	font-weight: 900;
	text-decoration: none;
	transition: background .1s linear, color .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__inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.header__logo {
	font-size: 30px;
	font-weight: 700;
	color: white;
}

/*NAV*/

.nav {
	text-transform: uppercase;
	font-size: 14px;

}

.nav__link {
	display: inline-block;
	vertical-align: top;
	margin: 10px;
	color: white;
	text-decoration: none;
	transition: .1s linear;
	position: relative;


}
.nav__link.active {
	color: #fce38a;

}


.nav__link:hover {
	color: #fce38a;

}

.nav__link:after {
	content: "";
	display: block;
	width: 100%;
	height: 3px;
	opacity: 0;
	background-color: #fce38a;
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 1;

	transition: opacity .1s linear;
}

.nav__link:hover:after,.nav__link.active:after {
	opacity: 1;

}

/*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%;
	font-size: 18px;
	color: #fff;
	text-transform: uppercase;
	padding: 20px 0;
	border-top: 3px solid white;
	opacity: 0.4;
}

.slider__item.active {
	opacity: 1;
}

.slider__item.active:before {
	/**/
}

.slider__num {
	font-size: 24px;
	font-weight: 700;
}

/*SECTION*/
.section {
	padding: 80px 0 ;
}

.section--devices {
	padding-bottom: 0;
	background: url(bg_device.jpg) center no-repeat;
	background-size: cover;
	margin-bottom: 40px;
}

.section__header {
	width: 100%;
	max-width: 950px;
	margin: 0 auto 50px;

	text-align: center;
}

.section__suptitle {
	font-size: 24px;
	color: #333;
}

.section__title {
	font-size: 30px;
	font-weight: 700;
	color: #333;
	text-transform: uppercase;
}

.section__title:after {
	content: "";
	display: block;
	width: 60px;
	height: 3px;
	margin: 30px auto;
	background-color: #f38181;
}


.section__text {
	color: #999;
	font-size: 15px;
}

/*About*/
.about {
	display: flex;
	justify-content: space-between;
}

.about__item {
	position: relative;
	width: 380px;
	background-color:  #95e1d3;
}

.about__item:hover .about__text {
	opacity: 1;
}


.about__item:hover .about__img {
	transform: translate3d(-10px, -10px,0);
}


.about__item:hover .about__img img {
	opacity: .1;
	
}

.about__img {
	background: linear-gradient(to bottom,#f38181, #fce38a);

	transition: transform .1s linear;
}

.about__img img {
	display: block;
	transition: opacity .1s linear;
}

.about__text {
	width: 100%;
	opacity: 0;
	position: absolute;
	color: #fff;
	text-transform: uppercase;
	font-weight: 700;
	font-size: 18px;
	text-align: center;
	top:50%;
	left: 0;
	z-index: 2;
	transform: translate3d(0, -50%, 0);
	transition: opacity .2s linear;
}

/*STATISCTICS*/
.statistics {
	background-color: #95e1d3;
}

.stat {
	display: flex;

}

.stat__item {
	padding: 75px 25px;
	text-align: center;
	color: white;
	flex: 1 1 0;
	border-left: 1px solid white; 
}

.stat__count {
	font-size: 72px;
	font-weight: 700;
	line-height: 1;
	margin-bottom: 10px;
}

.stat__text {
	font-size: 14px;
	text-transform: uppercase;
	font-weight: 700;
}

.stat__item:last-child {
	border-right: 1px solid white;
}

/*Service*/
.services {
	display: flex;
}

.services__item {
	flex: 1 1 0;
	padding-left: 70px;
	position: relative;
	padding-right: 20px;
}

.services_icon {
	position: absolute;
	top: 1px;
	left: 30px;
	z-index: 1;
}

.services__title {
	margin-bottom: 10px;
	font-size: 14px;
	text-transform: uppercase;
	color: #333;
}

.services__text {
	font-size: 15px;
	color: #999;
}

hr {
	border: 0;
	background-color: #e5e5e5;
	display: block;
	width: 100%;
	height: 1px;
	margin: 40px 0;
}

/*Devices*/

.devices {
	position: relative;
	width: 600px;
	margin: 0 auto;
}

.devices__item {
	display: block;
}

.devices__item--iphone {
	position: absolute;
	bottom: -40px;
	right: 0;
	z-index: 1;
}

/*WE DO*/

.wedo {
	display: flex;
}

.wedo__item {
	flex: 1 1 0;

}

/*ACCORTION*/
.accordion__item {
	border: 1px solid #e5e5e5;
	margin-bottom: 10px;
}




.accordion__item.active
.accordion__content {
	display: block;
}

.accordion__item.active
.accordion__header:after {
	transform: translateY(-50%)
	rotate(-45deg);
	margin-top: 5px;
}


.accordion__header {
	border-bottom: 1px solid #e5e5e5;
	padding: 24px 20px	24px 65px;
	position: relative;
	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__content {
	padding: 15px 20px;
	font-size: 15px;
	color: #999;
	font-style: italic;
	font-weight: 300;
	display: none;
}
.accordion__title{
	font-size: 14px;
	color: #333;
	text-transform: uppercase;
}
.accordion__icon{
	position: absolute;
	top: 50%;
	left: 20px;
	z-index: 1;
	transform: translateY(-50%);

}

