.clear() {
	display: block;
	clear: both;
	content: '';
}

@red: #ff0000;
@grey: #000;

@easing: cubic-bezier(0, 0, 0.25, 1);

@mm: ~"screen and (max-width: 374px)";
@md: ~"screen and (min-width: 375px) and (max-width: 1024px)";
@m: ~"screen and (max-width: 1024px)";
@d: ~"screen and (min-width: 1025px)";

* {
	font-weight: 400;
}

html, body { height: 100%; }

body {
	line-height: 1.5em;
	background-color: #fff;
}

body, input, button {
	font-family: aktiv-grotesk-extended, sans-serif;
	@media @mm {
		font-size: 13px;
	}
	@media @md {
		font-size: 16px;
	}
	@media @d {
		font-size: 20px;
	}
}

#note {
    position: fixed;
    z-index: 101;
    top: 0;
    left: 0;
    right: 0;
    margin-bottom: 30px;
    background: #000;
    text-align: center;
	color: #fff;
	font-size: 13px;
	line-height: 2;
    overflow: hidden;
    -webkit-box-shadow: 0 0 5px grey;
    -moz-box-shadow:    0 0 5px grey;
    box-shadow:         0 0 5px grey;
}

.not-desktop {
	@media @d {
		display: none !important;
	}
}
.not-mobile {
	@media @m {
		display: none !important;
	}
}

@media @m {
  .android .ios-only,
  .ios .android-only {
    display: none !important;
  }
}

a {
	text-decoration: underline;
}

.pw {
	@media @m {
		padding: 0 30px;
	}
	@media @d {
		width: 1280px;
		margin: 0 auto;
		padding: 0 115px;
	}
}

h1, h2, h3 {
	font-family: "HelveticaNeue";
		html[lang="uk"] &,
		html[lang="ru"] & {
		font-family: inherit;
		font-weight: 900;
	}
}
h1, h2 {
	@media @mm {
		font-size: 27px;
	}
	@media @md {
		font-size: 32px;
	}
	@media @m {
		line-height: 1.1em;
	}
	@media @d {
		font-size: 63px;
		line-height: 1.1em;
	}
}
h3 {
	@media @mm {
		font-size: 27px;
	}
	@media @md {
		font-size: 32px;
	}
	@media @m {
		line-height: 1.2em;
		margin-right: -20px;
	}
	@media @d {
		line-height: 1.2em;
		font-size: 24px;
	}
}
h4 {
	@media @mm {
		font-size: 8px;
	}
	@media @md {
		font-size: 10px;
	}
	@media @d {
		font-size: 18px;
	}
	font-weight: 700;
	text-transform: uppercase;
}

// @keyframes hi1 {		0% { opacity: 0; transform: rotate(-20deg); } 5% { opacity: 1; } 10% { opacity: 1; } 25% { opacity: 0; transform: rotate(50deg) scale(1.2); } 100% { opacity: 0;  }  }
// @keyframes hi2 {		0% { opacity: 0; } 33% { opacity: 0; transform: rotate(-20deg); } 38% { opacity: 1; } 43% { opacity: 1; } 58% { opacity: 0; transform: rotate(50deg) scale(1.2); } 100% { opacity: 0; }  }
// @keyframes hi3 {		0% { opacity: 0; } 66% { opacity: 0; transform: rotate(-20deg); } 71% { opacity: 1; } 76% { opacity: 1; } 91% { opacity: 0; transform: rotate(50deg) scale(1.2); } 100% { opacity: 0; }  }

.clientPage .nav .logo {
	float: left;
}
@media @d {
	.userPage .nav .logo {
		float: left;
	}
}

.nav {
	.logo {
		display: block;
		@media @m {
			width: 113px;
		}
		@media @d {
			width: 138px;
		}
	}
	.menu {
		@media @d {
			font-size: 0;
			float: right;
			a {
				display: inline-block;
				font-weight: 500;
				font-size: 15px;
				line-height: 21px;
			}
			a + * {
				margin-left: 40px;
			}
			span a + a {
				margin-left: 12px;
			}
		}
		.active {
			text-decoration: none;
		}
	}
	.hamburger {
		@media @m {
			display: block;
			width: 30px;
			height: 30px;
			float: right;
			background: url('/images/hamburger.gif') no-repeat center;
			background-size: 28px 15px;
			cursor: pointer;
			margin-top: -6px;
		}
		@media @d {
			display: none;
		}
	}
	a {
		transition: opacity 0.1s @easing;
		&:hover {
			opacity: 0.7;
		}
	}
	&.fixedNav {
		background-color: #fff;
		color: #000;
		z-index: 999;
		width: 100%;
		transition: top 0.3s @easing;
		@media @m {
			position: fixed;
			top: -50px;
			height: 50px;
			overflow: hidden;
			text-align: center;
			box-shadow: 0 0 50px -20px #000;
			transition-property: top, height;
			pointer-events: none;
			.logo {
				float: none;
				margin: 15px 0 0;
			}
			.menu {
				padding: 40px 0 50px;
				a {
					padding: 5px 0;
				}
				span {
					a {
						display: inline-block;
						margin: 0 5px;
					}
				}
			}
			a {
				display: block;
			}
			.hamburger {
				position: absolute;
				right: 30px;
    			top: 15px;
				display: block;
				width: 30px;
				height: 30px;
				background: url('/images/hamburger-b.gif') no-repeat center;
				background-size: 30px;
				cursor: pointer;
			}
		}
		@media @d {
			padding-top: 20px;
			height: 64px;
			position: fixed;
			top: -64px;
			left: 0;
			.close {
				display: none;
			}
		}
	}
	&:after {
		.clear;
	}
}
@media @m {
	body.mobileMenuVisible .nav.fixedNav {
		top: 0;
		height: 200px;
		pointer-events: auto;
		.hamburger {
			background-image: url('/images/hamburger-close.gif');
		}
	}
}
body.scrolled .nav.fixedNav {
	top: 0;
	pointer-events: auto;
}


section.title {
	@media @m { height: 280px; }
	@media @d { height: 534px; }
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	.pw {
		position: relative;
		height: 100%;
	}
	h2 {
		position: absolute;
		@media @m { bottom: 30px; }
		@media @d { bottom: 75px; white-space: pre-line; }
	}
}

#header {

	&.client {
		background: url('/images/header-bg.jpg') no-repeat;
		background-size: cover;
		color: #fff;
	}

	.formerly {
		float: left;
		font-size: 15px;
		line-height: 28px;
		@media @m { margin-top: 3px; }
		@media @d { margin-left: 25px; }
		img {
			display: inline-block;
			vertical-align: middle;
			height: 26px;
			margin-left: 1px;
		}
	}
	.buttons {
		@media @m {
			position: absolute;
			right: 26px;
			top: 31px;
			img {
				height: 35px;
			}
		}
		@media @d {
			margin-top: 35px;
			img {
				display: block;
				float: left;
				margin-right: 25px;
				height: 40px;
				transition: opacity 0.2s @easing;
				&:hover {
					opacity: 0.7;
				}
			}
		}
	}

	#visual {
		@media @m {
		  img {
		    display: block;
		    transform: none !important;
		    -webkit-transform: none !important;
		    margin: 60px auto 0;
		    width: 215px;
		  }
		}
		@media @d {
		  img {
		    position: absolute;
		    top: 50%;
		    transition: margin 200ms ease;
		    -webkit-transition: margin 200ms ease;
		  }
		  .iphone {
		    margin-top: -230px;
		    right: 220px;
		    width: 240px;
		    z-index: 2;
		    &:hover {
				margin-top: -240px;
			}
		  }
		  .android {
		    right: 103px;
		    width: 240px;
		    margin-top: -260px;
		    z-index: 1;
		    &:hover {
				margin-top: -270px;
			}
		  }
		}
	}

	@media @m {
		padding-top: 28px;
		padding-bottom: 80px;
		background-position: center left 30%;
		.nav .menu {
			display: none;
		}
	}
	@media @d {
		padding-top: 38px;
		height: 100%;
		min-height: 590px;
		position: relative;
		background-position: center;
		.pw {
			position: relative;
			height: 100%;
		}
		.info {
			position: absolute;
		}
		&.client {
			.info {
				bottom: 70px;
			}
		}
		&.user {
			.info {
				top: 50%;
				transform: translateY(-50%);
			}
		}
	}
	.icons img {
		position: absolute;
		display: block;
		transform: translate(-50%,-50%);
	}
	&.client {
		.icons img {
			@media @m {
				left: 70px;
	    		top: 300px;
				width: 70px;
			}
			@media @d {
				left: 50%;
				top: 50%;
				width: 100px;
				margin-left: 270px;
				margin-top: 190px;
			}
		}
	}
	&.user {
		.icons img {
			@media @m {
				left: 50%;
	    		top: 380px;
	    		margin-left: 120px;
				width: 35px;
			}
			@media @d {
				left: 47%;
				top: 50%;
				width: 70px;
				margin-left: 45px;
				margin-top: 120px;
			}
		}
	}
	h1, .description, .link {
		white-space: pre-line;
		opacity: 0;
		transform: translateY(15px);
		transition: all 0.8s @easing;
		transition-property: opacity, transform;
	}
	h1 {
		@media @m { text-shadow: 0 0 60px rgba(0,0,0,.3); margin: 60px 0 150px; }
		@media @d { margin-bottom: 50px; }
	}
	&.user h1 {
		@media @m {
			margin-bottom: 20px;
		}
	}
	.description,
	.link {
		transition-delay: 0.3s;
	}
	@media @d {
		.description, .link {
			display: inline-block;
		}
		.description {
			margin-right: 100px;
		}
	}
	@media @m {
		.description {
			margin-bottom: 30px;
		}
	}
	&.client a {
		transition: opacity 0.1s @easing;
		&:hover {
			opacity: 0.7;
		}
	}
}
body.loaded {
	#header {
		h1, .description, .link {
			opacity: 1;
			transform: translateY(0);
			html[lang="uk"] &,
			html[lang="ru"] & {
				transform: scaleX(1.05) translateY(0);
				transform-origin: left;
			}
		}
	}
}

#about {
	.pw {
		padding-top: 310px;
		padding-bottom: 100px;
		position: relative;
		@media @d {
			padding-left: 640px;
		}
		&:after {
			display: block;
			@media @m {
				width: 246px;
				height: 168px;
				top: 75px;
			}
			@media @d {
				width: 489px;
				height: 335px;
				top: 91px;
			}
			content: '';
			background: url('/images/about-1.jpg');
			position: absolute;
			left: 0;
			background-size: contain;
			opacity: 0;
			transform: translateY(15px);
			transition: all 1s @easing;
			transition-property: opacity, transform;
		}
	}
	h2, p {
		white-space: pre-line;
		opacity: 0;
		transform: translateY(15px);
		transition: all 0.5s @easing;
		transition-property: opacity, transform;
	}
	h2 {
		@media @m { margin-bottom: 30px; }
		@media @d { margin-bottom: 55px; }
		transition-delay: 0.2s;
	}
	p {
		transition-delay: 0.4s;
	}
	&.visible {
		.pw:after, h2, p {
			opacity: 1;
			transform: translateY(0);
		}
	}
}

#partners {
	@media @m {
		h2 {
			margin-bottom: 40px;
			max-width: 270px;
		}
	}
	@media @d {
		padding-top: 120px;
		padding-bottom: 130px;
		h2 {
			margin-bottom: 110px;
		}
	}
	.list {
		text-transform: uppercase;
		@media @m {
			font-size: 9px;
			line-height: 16px;
			overflow-x: scroll;
			-webkit-overflow-scrolling: touch;
		}
		@media @d {
			font-size: 12px;
			line-height: 22px;
		}
		.content {
			// width: fit-content;
			white-space: nowrap;
			overflow-x: auto;
			scrollbar-width: none;
			// transition: transform 0.5s @easing;
			// padding: 0 100px;
			padding-top: 12px; // not to hide the top of the hovered anchors
			margin-top: -12px;
			@media @m {
				padding: 15px 30px 50px;
			}
			&::-webkit-scrollbar {
				display: none;
			}
		}
		a {
			vertical-align: top;
			display: inline-block;
			text-decoration: none;
			transition: transform 0.2s @easing;
			& + a {
				@media @m {
					margin-left: 30px;
				}
				@media @d {
					margin-left: 40px;
				}
			}
			img {
				display: block;
				object-fit: cover;
				@media @m {
					width: 110px;
					height: 110px;
				}
				@media @d {
					width: 150px;
					height: 150px;
				}
				margin-bottom: 13px;
				background-color: #000;
			}
			.name {
				// background: url('/images/icon-insta-2.svg') no-repeat;
				@media @m {
					width: 110px;
				}
				@media @d {
					width: 150px;
				}
				white-space: normal;
				@media @m { background-size: 11px auto; background-position: right 2px; }
				@media @d { background-size: 14px auto; background-position: right 3px; }
			}
			p + p {
				margin-top: 1em;
			}
			@media @d {
				&:hover {
					transform: translateY(-10px);
				}
			}
		}
		&:after {
			.clear;
		}
	}
}

#howitworks {
	background-image: url('/images/howitworks-bg.jpg');
}

#steps {
	@media @m {
		text-align: center;
	}
	.pw {
		@media @m {
			padding-top: 50px;
			padding-bottom: 100px;
			& > div + div {
				margin-top: 40px;
			}
			h3 {
				margin-right: 0;
			}
		}
		@media @d {
			padding-left: 640px;
			padding-top: 130px;
			padding-bottom: 200px;
			& > div + div {
				margin-top: 170px;
			}
		}
	}
	img {
		display: block;
		@media @m {
			margin: 30px auto;
			width: 120px;
		}
		@media @d {
			float: left;
			width: 240px;
			margin-left: -410px;
			margin-top: -30px;
		}
	}
	h3 {
		margin-bottom: 40px;
	}
	p {
		@media @m {
			margin: 0 auto;
			max-width: 320px;
		}
		@media @d {
			width: 380px;
		}
	}
}

#wesupport {
	background-image: url('/images/wesupport-bg.jpg');
	color: #fff;
	h2 {
		text-shadow: 0 0 60px rgba(0,0,0,.5);
		@media @m {
			padding-right: 30px;
			white-space: normal;
		}
	}
}

#effects {
	@media @m {
		text-align: center;
	}
	.pw {
		@media @m {
			padding-top: 50px;
			padding-bottom: 100px;
			& > div + div {
				margin-top: 40px;
			}
		}
		@media @d {
			padding-top: 120px;
			padding-bottom: 120px;
			& > div:nth-child(2n-1) {
				padding-left: 42px;
				img, video {
					float: right;
					margin-right: -60px;
				}
			}
			& > div:nth-child(2n) {
				padding-left: 524px;
				img, video {
					float: left;
					margin-left: -600px;
				}
			}
			& > div + div {
				margin-top: 220px;
			}
		}
	}
	img, video {
		display: block;
		@media @m {
			margin: 30px auto;
			width: 250px;
		}
		@media @d {
			width: 500px;
			height: 345px;
			margin-top: 30px;
		}
	}
	h2 {
		white-space: pre-line;
		margin-bottom: 40px;
		@media @m {
			margin-right: 0 !important;
		}
	}
	p {
		@media @m {
			margin: 0 auto;
			max-width: 320px;
			& + p {
				margin-top: 15px;
			}
		}
		@media @d {
			width: 380px;
			& + p {
				margin-top: 25px;
			}
		}
	}
	a {
		transition: opacity 0.1s @easing;
		&:hover {
			opacity: 0.7;
		}
	}
}

#weconnect {
	background-image: url('/images/weconnect-bg.jpg');
}

#target {
	.pw {
		background: url('/images/target-bg.jpg') no-repeat;
	}
	@media @m {
		.pw {
			padding-top: 50px;
			padding-bottom: 160px;
			background-size: 220px auto;
			background-position: center bottom;
		}
	}
	@media @d {
		.pw {
			padding-top: 140px;
			padding-bottom: 100px;
			background-size: 440px auto;
			background-position: right 50px top 110px;
		}
		p {
			width: 550px;
		}
	}
	p + p {
		margin-top: 1em;
	}
}

#userActivities {
	padding-top: 100px;
	padding-bottom: 50px;
	h3 {
		white-space: pre-line;
	}
	.gallery {
		width: 100%;
		position: relative;
		@media @m { height: 450px; overflow: hidden; }
		@media @d { height: 700px; }
		a {
			display: block;
			position: absolute;
			left: 50%;
			top: 50%;
			text-decoration: none;
			transform: translate(-50%,-50%);
			& > div {
				transition: transform 0.2s @easing;
			}
			img {
				display: block;
				width: 200px;
				height: 300px;
				background-color: #000;
				margin: 10px 0;
			}
			@media @m {
				span {
					display: none;
				}
			}
			@media @d {
				span {
					display: block;
					text-transform: uppercase;
					font-size: 12px;
					/* &:before { content: '@'; position: relative; top: -1px; left: -1px;} */
				}
				&.insta span {
					padding-left: 24px;
					background: url('/images/icon-insta-2.svg') no-repeat 0 center;
					background-size: 14px auto;
				}
				&.ta span {
					padding-left: 30px;
					background: url('/images/icon-ta.svg') no-repeat left center;
					background-size: 20px auto;
				}
			}
			@media @m {
				&:nth-child(1) { z-index: 3; img { width: 200px; height: 135px; } margin-left: -180px; margin-top: -70px; }
				&:nth-child(2) { display: none; }
				&:nth-child(3) { z-index: 2; img { width: 205px; height: 133px; } margin-left: -87px; margin-top: 46px; }
				&:nth-child(4) { z-index: 1; img { width: 152px; height: 230px; } margin-left: 53px; margin-top: 24px; }
				&:nth-child(5) { z-index: 3; img { width: 135px; height: 205px; } margin-left: 162px; margin-top: -88px; }
				&:nth-child(6) { z-index: 3; img { width: 187px; height: 123px; } margin-left: 164px; margin-top: 129px; }
			}
			@media @d {
				&:nth-child(1) { z-index: 1; img { width: 400px; height: 270px; } margin-left: -690px; margin-top: 100px; }
				&:nth-child(2) { z-index: 2; img { width: 315px; height: 395px; } margin-left: -370px; margin-top: 100px; }
				&:nth-child(3) { z-index: 3; img { width: 410px; height: 275px; } margin-left: -40px; margin-top: -60px; }
				&:nth-child(4) { z-index: 2; img { width: 305px; height: 460px; } margin-left: 230px; margin-top: -105px; }
				&:nth-child(5) { z-index: 3; img { width: 270px; height: 410px; } margin-left: 440px; margin-top: -325px; }
				&:nth-child(6) { z-index: 3; img { width: 375px; height: 255px; } margin-left: 455px; margin-top: 110px; }
				&:hover div {
					transform: translateY(-10px);
				}
			}
		}
	}
}

#idea {
	color: #fff;
	overflow: hidden;
	background-color: @grey;
	position: relative;
	h2 {
		white-space: pre-line;
		&:before {
			display: block;
			height: 30px;
			// background: url('/images/bloomberg-logo.svg') no-repeat left;
			background-size: contain;
			content: '';
			margin-bottom: 40px;
		}
	}
	&:before {
		display: block;
		content: '';
		position: absolute;
		background: @grey url('/images/idea.jpg') no-repeat;
		background-size: cover;
		z-index: 1;
	}
	@media @m {
		padding-top: 50px;
		padding-bottom: 70px;
		img {
			display: none;
		}
		h2 {
			position: relative;
			z-index: 2;
			height: 240px;
		}
		&:before {
			height: 240px;
			width: 100%;
			background-position: center;
			left: 0;
			top: 0;
		}
		p + p {
			margin-top: 1em;
		}
	}
	@media @d {
		padding-top: 50px;
		padding-bottom: 110px;
		&:before {
			bottom: 0;
			left: 50%;
			margin-left: -525px;
			width: 370px;
			height: 380px;
			background-position: bottom;
		}
		h2 {
			margin-bottom: 70px;
		}
		p {
			width: 410px;
			float: left;
			margin-top: 60px;
			margin-left: 535px;
		}
		p + p {
			margin-top: 3em;
		}
		&:after {
			.clear;
		}
		a {
			transition: opacity 0.1s @easing;
			&:hover {
				opacity: 0.7;
			}
		}
	}
}

#mission {
	.pw {
		@media @m {
			padding-top: 60px;
			padding-bottom: 60px;
			position: relative;
			h2 {
				margin-bottom: 40px;
			}
			.img {
				width: 135px;
				height: 195px;
				margin: 40px auto 0;
				overflow: hidden;
				position: relative;
				img {
					position: absolute;
					&.mask { left: 0; top: 0; width: 135px; z-index: 2; }
					&.image { left: -43px; top: -10px; height: 280px; z-index: 1; }
				}
			}
			&:after {
				.clear;
			}
		}
		@media @d {
			padding-top: 160px;
			padding-bottom: 160px;
			position: relative;
			h2 {
				margin-bottom: 110px;
			}
			.img {
				position: absolute;
				top: 160px;
				right: 210px;
				width: 270px;
				height: 390px;
				overflow: hidden;
				img {
					position: absolute;
					left: 0;
					top: 0;
					transition: transform 0.3s @easing;
					&.mask { width: 270px; z-index: 2; }
					&.image { height: 455px; z-index: 1; }
				}
			}
			p {
				width: 585px;
				margin-left: 45px;
			}
			&:after {
				.clear;
			}
		}
	}
	h2 {
		white-space: pre-line;
	}
}

#reviews {
	background-color: #fff;
	@media @m {
		padding-top: 30px;
	}
	@media @d {
		padding-top: 70px;
		padding-bottom: 150px;
	}
	h2 {
		color: #000;
		white-space: pre-line;
	}
	.list {
		@media @m {
			overflow-y: auto;
			overflow-x: scroll;
			-webkit-overflow-scrolling: touch;
		}
		@media @d {
			padding-top: 40px;
		}
		.content {
			width: fit-content;
			white-space: nowrap;
			transition: transform 0.5s @easing;
			@media @m {
				padding: 30px 10px 30px 30px;
			}
			& > div {
				white-space: normal;
				display: inline-block;
				box-shadow: 0 0 44px 0 rgba(0,0,0,.2);
				text-align: center;
				@media @m {
					width: 260px;
					height: 240px;
					margin-right: 15px;
					padding: 30px 20px 0;
				}
				@media @d {
					width: 430px;
					height: 400px;
					margin-right: 20px;
					padding: 80px 30px 0;
				}
				.name {
					text-transform: uppercase;
					font-weight: 700;
					@media @m {
						font-size: 11px;
						margin-bottom: 10px;
					}
					@media @d {
						font-size: 18px;
						margin-bottom: 30px;
					}
				}
				.position {
					text-transform: uppercase;
					font-weight: 700;
					@media @m {
						font-size: 6px;
						line-height: 7px;
						margin-bottom: 20px;
					}
					@media @d {
						font-size: 10px;
						line-height: 1.2em;
						margin-bottom: 30px;
					}
				}
				.text {
					line-height: 1.5em;
					@media @m {
						font-size: 12px;
						margin-bottom: 10px;
					}
					@media @d {
						font-size: 16px;
						margin-bottom: 30px;
					}
				}
				img {
					display: block;
					margin: 0 auto;
					@media @m {
						width: 55px;
					}
					@media @d {
						width: 100px;
					}
				}
			}
		}
	}
	&:after {
		.clear;
	}
}

#advantages {
	@media @m {
		padding-top: 60px;
		padding-bottom: 60px;
		h3 {
			margin-bottom: 50px;
		}
	}
	@media @d {
		padding-top: 0px;
		padding-bottom: 105px;
		h3 {
			white-space: pre-line;
			float: left;
			width: 525px;
			height: 240px;
		}
	}
	.pw {
		background: url('/images/advantages.png') no-repeat;
		@media @m {
			background-position: right 70px bottom 90px;
			background-size: 105px auto;
		}
		@media @d {
			background-position: 120px 210px;
			background-size: 150px auto;
		}
	}
	.list:after {
		.clear;
	}
	p {
		text-transform: uppercase;
		font-weight: 700;
		float: left;
		@media @mm {
			width: 120px;
			font-size: 8px;
			line-height: 15px;
		}
		@media @md {
			width: 150px;
			font-size: 10px;
			line-height: 18px;
		}
		@media @m {
			height: 70px;
			&:nth-of-type(2n) { margin-right: -30px; }
			&:nth-of-type(2n-1) { margin-right: 20px; }
		}
		@media @d {
			font-size: 12px;
			line-height: 20px;
			padding-top: 8px;
			height: 120px;
			width: 210px;
			&:nth-of-type(1),
			&:nth-of-type(3),
			&:nth-of-type(5),
			&:nth-of-type(6) {
				margin-right: 60px;
			}
			&:nth-of-type(5) {
				margin-left: 255px;
			}
		}
	}
	a {
		display: block;
		margin-top: 70px;
		text-align: center;
		@media @m {
			height: 50px;
			line-height: 50px;
			font-size: 11px;
		}
		@media @d {
			height: 62px;
			line-height: 62px;
			font-size: 18px;
		}
		background-color: @red;
		color: #fff;
		text-decoration: none;
		font-weight: 700;
		text-transform: uppercase;
		transition: background 0.2s @easing;
		&:hover {
			background-color: #000;
		}
	}
	&:after {
		.clear;
	}
}

#fenomena {
	background-color: @grey;
	color: #fff;
	@media @m {
		padding-top: 55px;
	}
	@media @d {
		padding-top: 100px;
	}
	h2 {
		white-space: pre-line;
	}
	.list {
		& > div {
			@media @m {
				padding-left: 100px;
				margin-top: 35px;
				&:first-child {
					margin-top: 60px;
				}
			}
			@media @d {
				margin-top: 80px;
				&:nth-child(2n-1) {
					padding-left: 590px;
				}
				&:nth-child(2n) {
					padding-left: 230px;
				}
			}
			.image {
				background-size: cover;
				background-color: #000;
				border-radius: 100%;
				float: left;
				@media @m {
					width: 75px;
					height: 75px;
					margin-left: -105px;
				}
				@media @d {
					width: 145px;
					height: 145px;
					margin-left: -210px;
					margin-top: -10px;
				}
			}
			.text {
				line-height: 1.5em;
				@media @mm {
					font-size: 13px;
				}
				@media @md {
					font-size: 16px;
				}
				@media @m {
					margin-bottom: 10px;
				}
				@media @d {
					font-size: 16px;
					width: 350px;
					padding-bottom: 40px;
				}
			}
			.author {
				@media @m {
					font-size: 9px;
				}
				@media @d {
					font-size: 18px;
				}
				font-weight: 700;
				text-transform: uppercase;
			}
		}
	}
}

#persona {
	background-color: @grey;
	color: #fff;
	.pw {
		position: relative;
		@media @m {
			padding-top: 40px;
			padding-bottom: 210px;
		}
		@media @d {
			padding-top: 150px;
			padding-bottom: 190px;
		}
	}
	.name {
		font-size: 10px;
		text-transform: uppercase;
		font-weight: 700;
	}
	h2 {
		white-space: pre-line;
		position: relative;
		z-index: 1;
		@media @m {
			margin-top: 30px;
		}
		@media @d {
			margin-left: 520px;
			margin-top: -24px;
			margin-right: -70px;
		}
	}
	.video {
		display: block;
		position: absolute;
		bottom: 0;
		z-index: 0;
		@media @m {
			left: 0;
			width: 100%;
			height: 220px;
		}
		@media @d {
			left: 115px;
			width: 590px;
			height: 350px;
		}
		background: url('/images/persona.jpg') no-repeat center;
		background-size: cover;
		cursor: pointer;
		&:after {
			display: block;
			@media @m {
				width: 80px;
				height: 80px;
				line-height: 80px;
				font-size: 8px;
			}
			@media @d {
				width: 120px;
				height: 120px;
				line-height: 120px;
				font-size: 13px;
				transition: all 0.2s @easing;
			}
			position: absolute;
			left: 50%;
			top: 50%;
			transform: translate(-50%, -50%);
			border-radius: 100%;
			border: 1px solid #fff;
			text-align: center;
			content: 'PLAY';
			text-transform: uppercase;
			font-weight: 700;
		}
		@media @d {
			&:hover:after {
				background-color: #ffffff;
				color: #000;
			}
		}
	}
}


#system {
	.pw {
		background: url('/images/system.png') no-repeat;
		@media @m {
			padding-top: 120px;
			padding-bottom: 55px;
			background-position: right 50px top 40px;
			background-size: 60px auto;
			.list {
				margin-right: -10px;
			}
			h3 {
				margin-bottom: 45px;
			}
		}
		@media @d {
			padding-top: 130px;
			padding-bottom: 105px;
			background-position: 120px 380px;
			background-size: 100px auto;
		}
	}
	.list:after {
		.clear;
	}
	h3 {
		white-space: pre-line;
		@media @d {
			margin-top: 20px;
			float: left;
			width: 445px;
			height: 400px;
		}
	}
	p {
		text-transform: uppercase;
		font-weight: 700;
		float: left;
		text-decoration: line-through;
		@media @mm {
			width: 105px;
			font-size: 8px;
			line-height: 15px;
		}
		@media @md {
			width: 130px;
			font-size: 10px;
			line-height: 18px;
		}
		@media @m {
			margin-right: 30px;
			margin-bottom: 25px;
			vertical-align: top;
			&:nth-of-type(2) { width: 90px; }
		}
		@media @d {
			padding-top: 8px;
			height: 140px;
			font-size: 12px;
			line-height: 20px;
			width: 255px;
			&:nth-of-type(2) { width: 180px; }
			padding-top: 25px;
			padding-left: 80px;
			background: no-repeat 2px top;
			background-size: 60px 80px;
			&:nth-of-type(1) { background-image: url('/images/system-4.png'); }
			&:nth-of-type(2) { background-image: url('/images/system-2.png'); }
			&:nth-of-type(3) { background-image: url('/images/system-6.png'); }
			&:nth-of-type(4) { background-image: url('/images/system-3.png'); }
			&:nth-of-type(5) { background-image: url('/images/system-5.png'); }
			&:nth-of-type(6) { background-image: url('/images/system-1.png'); }
		}
	}
	&:after {
		.clear;
	}
}

#more {
	@media @m {
		padding-top: 55px;
		padding-bottom: 55px;
		h2 {
			margin-bottom: 40px;
		}
	}
	@media @d {
		padding-top: 130px;
		padding-bottom: 120px;
		.columns {
			.column {
				float: left;
				&:first-child {
					width: 570px;
				}
			}
			&:after {
				.clear;
			}
		}
		h2 {
			margin-bottom: 90px;
		}
	}
	background-color: @grey;
	color: #fff;
	h2 {
		white-space: pre-line;
	}
	.team {
		font-size: 0;
		@media @m {
			margin: 40px -5px 30px;
		}
		@media @d {
			margin: 55px 0 83px -5px;
		}
		div {
			@media @m {
				width: 75px;
				height: 75px;
				& + div {
					margin-left: 10px;
				}
			}
			@media @d {
				width: 135px;
				height: 135px;
				& + div {
					margin-left: 20px;
				}
			}
			background-color: #000;
			background-size: cover;
			border-radius: 100%;
			display: inline-block;
		}
	}
	@media @d {
		.text {
			width: 390px;
			float: left;
			margin-left: 42px;
			margin-right: 140px;
		}
	}
	.contact {
		@media @m {
			font-size: 10px;
			line-height: 18px;
		}
		@media @d {
			float: left;
			font-size: 18px;
			line-height: 26px;
		}
		font-weight: 700;
		text-transform: uppercase;
		a {
			font-weight: 700;
			text-decoration: none;
			&:hover {
				text-decoration: underline;
			}
		}
	}
	&:after {
		.clear;
	}
}

#join {
	@media @m {
		padding-top: 55px;
		padding-bottom: 70px;
		h3 {
			margin-bottom: 43px;
		}
	}
	@media @d {
		padding-top: 140px;
		padding-bottom: 130px;
		h3 {
			margin-bottom: 120px;
		}
	}
	input {
		display: block;
		width: 100%;
		border-radius: 0;
		@media @m {
			height: 40px;
			& + input {
				margin-top: 20px;
			}
		}
		@media @d {
			height: 50px;
			transition: border-color 0.2s @easing;
			& + input {
				margin-top: 40px;
			}
			&:hover {
				border-color: @grey;
			}
		}
		border: 0;
		border-bottom: 1px solid #000;
	}
	input + h4 {
		@media @m {
			margin-top: 45px;
			margin-bottom: 33px;
		}
		@media @d {
			margin-top: 140px;
			margin-bottom: 110px;
		}
	}
	h4 {
		margin-bottom: 30px;
	}
	.note {
		line-height: 1.5em;
		@media @mm {
			font-size: 13px;
		}
		@media @md {
			font-size: 16px;
		}
		@media @d {
			font-size: 16px;
			float: right;
			width: 520px;
			padding-right: 70px;
			margin-top: -138px;
		}
	}
	.week {
		@media @m {
			text-align: center;
			margin: 50px -10px 30px;
		}
		@media @d {
			margin-bottom: 70px;
		}
		.day {
			position: relative;
			@media @m {
				display: inline-block;
				width: 110px;
				height: 110px;
				margin: 10px;
			}
			@media @d {
				float: left;
				width: 125px;
				height: 125px;
				& + .day {
					margin-left: 25px;
				}
			}
			.day-preview {
				position: absolute;
				z-index: 0;
				left: 0;
				top: 0;
				width: 100%;
				height: 100%;
				border: 1px solid #000;
				border-radius: 100%;
				text-align: center;
				opacity: 1;
				@media @m {
					padding-top: 30px;
				}
				@media @d {
					padding-top: 38px;
					transition: all 0.2s @easing;
					transition-property: border-color, color;
				}
				p {
					font-size: 12px;
					line-height: 23px;
					text-transform: uppercase;
					font-weight: 700;
				}
				&.set {
					border-color: #aaa;
					color: #aaa;
				}
			}
			select {
				-webkit-appearance: menulist-button;
				appearance: menulist-button;
				position: absolute;
				opacity: 0;
				left: 0;
				top: 0;
				z-index: 1;
				width: 100%;
				line-height: 125px;
				height: 100%;
				cursor: pointer;
			}
			@media @d {
				&:hover .day-preview {
					border-color: @red;
					color: @red;
				}
			}
		}
		&:after {
			.clear;
		}
	}
	label {
		display: none;
		/*display: block;*/
		padding-left: 30px;
		@media @mm {
			font-size: 13px;
		}
		@media @md {
			font-size: 16px;
		}
		@media @d {
			font-size: 16px;
		}
		line-height: 1.5em;
		cursor: pointer;
		input {
			display: none;
		}
		span {
			display: block;
			float: left;
			margin-left: -30px;
			margin-top: 3px;
			border: 1px solid #000;
			height: 18px;
			width: 18px;
			border-radius: 100%;
			transition: border-color 0.2s @easing;
			&:after {
				display: block;
				content: '';
				width: 10px;
				height: 10px;
				margin: 3px;
				border-radius: 100%;
				background-color: #fff;
				transition: background-color 0.4s @easing;
			}
		}
		&:hover span {
			border-color: @red;
		}
		input:checked + span:after {
			background-color: @grey;
		}
	}
	button {
		display: block;
		border: 0;
		width: 100%;
		cursor: pointer;
		text-align: center;
		@media @m {
			height: 50px;
			line-height: 50px;
			font-size: 11px;
			margin-top: 75px;
		}
		@media @d {
			height: 62px;
			line-height: 62px;
			font-size: 18px;
			margin-top: 40px;
		}
		background-color: @red;
		color: #fff;
		text-decoration: none;
		font-weight: 700;
		text-transform: uppercase;
		transition: background 0.2s @easing;
		&:hover {
			background-color: #000;
		}
	}
	&:after {
		.clear;
	}
}




#footer {
	background-color: @grey;
	@media @m {
		padding: 30px 30px 90px;
	}
	@media @d {
		padding: 40px 40px 115px;
		a {
			transition: opacity 0.1s @easing;
			&:hover {
				opacity: 0.7;
			}
		}
	}
	.links {
		color: #fff;
		font-size: 16px;
		.payments {
			margin-top: 35px;
		}
		img {
			height: 40px;
			&.payment-visa {
				// margin: 10px 10px 10px 0;
				margin: 10px;
				height: 20px;
			}
		}
		@media @mm {
			font-size: 13px;
		}
		@media @md {
			font-size: 16px;
		}
		@media @m {
			margin-bottom: 75px;
			margin-right: -30px;
			& > div:first-child {
				padding: 10px 0;
			}
			& > div:last-child a,
			& > div:last-child span {
				display: block;
				padding: 10px 0;
			}
			img {
				display: block;
				margin-left: -12px;
				&.payment-visa {
					margin-left: 0px;
				}
			}
		}
		@media @d {
			margin-bottom: 190px;
			padding: 0 30px;
			font-size: 16px;
			& > div:first-child {
				float: left;
			}
			& > div:last-child {
				float: right;
				.payments {
					text-align: right;
				}
				.payment-maestro {
					margin-right: -12px;
				}
				a + a,
				a + span {
					margin-left: 35px;
				}
			}
		}
		&:after {
			.clear;
		}
	}
	img.logo {
		display: block;
		width: 100%;
		@media @d {
			opacity: 0;
			transform: translateY(50px);
			transition: all 1s @easing;
			transition-property: opacity, transform;
		}
	}
	@media @d {
		&.visible {
			img.logo {
				opacity: 1;
				transform: translateY(0);
			}
		}
	}
}


#video {
	width: 100%;
	height: 100%;
	position: fixed;
	left: 0;
	top: 100%;
	background-color: rgba(255,255,255,0.8);
	z-index: 999;
	padding: 7%;
	transition: top 800ms ease;
	-webkit-transition: top 800ms ease;
	iframe {
		width: 100%;
		height: 100%;
		position: relative;
		z-index: 3;
	}
	.close {
		display: block;
		position: absolute;
		width: 100%;
		height: 100%;
		left: 0;
		top: 0;
		z-index: 1;
		cursor: pointer;
	}
	&:target {
		top: 0;
	}
}

#joinForm {
	button.sending {
		background-color: #ccc;
		cursor: wait;
	}
}

.grecaptcha-badge {
	display: none !important;
}
