/* Reset */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
	-webkit-font-smoothing: antialiased;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

.alert {
	margin-bottom: 35px;
}

.alert ul {
	padding-left: 25px;
}

.alert ul li {
	list-style: square;
	line-height: 25px;
}

.alert p {
	font-weight: bold;
	text-transform: uppercase;
	text-align: center;
}

/* Style */

body {
	padding-top: 112px;
	font-family: "Roboto", sans-serif;
}

#header {
	padding: 20px 0;
	background: #fff;
	position: fixed;
	width: 100%;
	top: 0;
	z-index: 2;
}

#header.headroom--not-top {
	box-shadow: 1px 0 1px rgba(0, 0, 0, .1);
	padding: 15px 0;
}

#header.headroom--not-top .inner {
	height: 60px;
}

#header.headroom {
	will-change: transform;
	-webkit-transition: transform 200ms linear;
	-moz-transition: transform 200ms linear;
	-ms-transition: transform 200ms linear;
	-o-transition: transform 200ms linear;
	transition: transform 200ms linear;
}

#header.headroom--pinned {
	transform: translateY(0%);
	-moz-transform: translateY(0%);
	-webkit-transform: translateY(0%);
}

#header.headroom--unpinned {
	transform: translateY(-100%);
	-moz-transform: translateY(-100%);
	-webkit-transform: translateY(-100%);
}

#header .inner {
	max-width: 940px;
	width: 90%;
	margin: 0 auto;
	height: 72px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}

#header .inner #open-menu {
	display: none;
}

#header .inner .logo {
	display: block;
	height: 100%;
	width: auto;
}

#header .inner .logo img {
	display: block;
	height: 100%;
	width: auto;
}

#header .inner nav ul {
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

#header .inner nav ul li {
	margin-left: 30px;
}

#header .inner nav ul li#switch-language {
	display: flex;
	align-items: center;
}

#header .inner nav ul li#switch-language:after {
	content: "arrow_drop_down";
	font-family: "Material Icons";
	font-size: 18px;
	display: inline;
	float: right;
}

#header .inner nav ul li#switch-language select {
	background: transparent;
	border: none;
	-webkit-appearance: none;
	appearance: none;
	text-decoration: none;
	color: #262626;
	display: block;
	font-size: 14px;
	text-transform: uppercase;
	font-weight: bold;
	cursor: pointer;
}

#header .inner nav ul li#switch-language select:focus {
	outline: none;
}

#header .inner nav ul li a {
	text-decoration: none;
	color: #262626;
	display: block;
	font-size: 14px;
	text-transform: uppercase;
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
	font-weight: bold;
}

#header .inner nav ul li a:hover,
#header .inner nav ul li.active a {
	color: #D91B5D;
}

#header .inner nav ul li a.background {
	padding: 0 20px;
	height: 35px;
	line-height: 35px;
	border-radius: 35px;
	-moz-border-radius: 35px;
	-webkit-border-radius: 35px;
	background: #D91B5D;
	color: #fff;
}

#header .inner nav ul li a.background:hover {
	background: #262626;
}

/* Hero */

#hero {
	position: relative;
	z-index: 1;
}

#hero .inner {
	max-width: 940px;
	width: 90%;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	position: relative;
}

#hero .inner .description {
	padding: 80px 0;
	width: calc(100% - 320px);
	max-width: 530px;
}

#hero .inner .description h1 {
	font-family: "Montserrat";
	font-weight: bold;
	font-size: 55px;
	color: #D91B5D;
	letter-spacing: -1.8px;
	line-height: 60px;
	margin-bottom: 20px;
}

#hero .inner .description h2 {
	font-family: "Roboto", sans-serif;
	font-size: 25px;
	color: #262626;
	line-height: 35px;
	margin-bottom: 30px;
}

#hero .inner .description .group {
	display: flex;
	background: #fefefe;
	box-shadow: 0 0 32px 0 rgba(0, 0, 0, .1);
	width: 300px;
	height: 50px;
	border-radius: 8px;
	-moz-border-radius: 8px;
	-webkit-border-radius: 8px;
	overflow: hidden;
}

#hero .inner .description .group a {
	flex: 0 0 50%;
	line-height: 50px;
	text-decoration: none;
	font-weight: bold;
	text-align: center;
	color: #585A65;
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}

#hero .inner .description .group a i {
	font-weight: normal;
	margin-right: 6px;
}

#hero .inner .description .group a:hover {
	background: #e2e2e2;
}

#hero .inner .description .group a:first-of-type {
	border-right: 1px solid #E2E2E2;
}

#hero .inner .description .group a:last-of-type {
}

#hero .inner .preview {
	width: 275px;
	height: auto;
	display: block;
}

#hero .inner .background {
	width: 475px;
	height: 475px;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%) translateY(50%);
	-moz-transform: translateX(-50%) translateY(50%);
	-webkit-transform: translateX(-50%) translateY(50%);
	background-image: url('../images/landing/mark.png');
	background-size: contain;
	background-position: center center;
	background-repeat: no-repeat;
	opacity: .075;
	z-index: -1;
}

/* How To */

#how-to {
	margin-top: -100px;
	background-color: #D91B5D;
	background-image: url('../images/landing/pattern.png');
	background-size: 75%;
	background-repeat: repeat;
	-webkit-clip-path: polygon(100% 0, 100% 100%, 50% calc(100% - 100px), 0% 100%, 0 0, 50% 100px);
	clip-path: polygon(100% 0, 100% 100%, 50% calc(100% - 100px), 0% 100%, 0 0, 50% 100px);
	padding: 100px 0 150px;
}

#how-to .inner {
	max-width: 940px;
	width: 90%;
	margin: 0 auto;
	padding: 95px 0 0;
	color: #fff;
}

#how-to .inner h2 {
	text-align: center;
	font-family: "Montserrat";
	font-weight: bold;
	font-size: 55px;
	letter-spacing: -1.8px;
	line-height: 60px;
	margin-bottom: 45px;
}

#how-to .inner .bx-wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

#how-to .inner .bx-wrapper .bx-viewport {
	order: 2;
}

#how-to .inner .bx-wrapper .bx-viewport .slider .slide {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

#how-to .inner .bx-wrapper .bx-viewport .slider .slide img {
	max-width: 275px;
	height: auto;
	margin-right: 70px;
}

#how-to .inner .bx-wrapper .bx-viewport .slider .slide article h3 {
	font-family: "Roboto", sans-serif;
	font-weight: bold;
	font-size: 35px;
	margin-bottom: 20px;
}

#how-to .inner .bx-wrapper .bx-viewport .slider .slide article p {
	font-family: "Roboto", sans-serif;
	font-size: 18px;
	margin-bottom: 20px;
	line-height: 25px;
}

#how-to .inner .bx-wrapper .bx-viewport .slider .slide article a {
	display: inline-block;
	text-decoration: none;
	padding: 0 30px;
	border-radius: 42px;
	-moz-border-radius: 42px;
	-webkit-border-radius: 42px;
	height: 42px;
	line-height: 42px;
	text-transform: uppercase;
	color: #D91B5D;
	font-family: "Roboto", sans-serif;
	font-size: 15px;
	font-weight: bold;
	background: #fff;
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}

#how-to .inner .bx-wrapper .bx-viewport .slider .slide article a:hover {
	background: #262626;
	color: #fff;
}

#how-to .inner .bx-wrapper .bx-controls {
	order: 1;
	width: 100px;
	margin-right: 32px;
	position: relative;
}

#how-to .inner .bx-wrapper .bx-controls .bx-controls-direction {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
}

#how-to .inner .bx-wrapper .bx-controls .bx-controls-direction a {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	color: #fff;
}

#how-to .inner .bx-wrapper .bx-controls .bx-controls-direction a.bx-prev {
	top: -50px;
}

#how-to .inner .bx-wrapper .bx-controls .bx-controls-direction a.bx-next {
	bottom: -50px;
}

#how-to .inner .bx-wrapper .bx-controls .bx-controls-direction i {
	font-size: 40px;
}

#how-to .inner .bx-wrapper .bx-controls .bx-pager {
	display: flex;
	flex-direction: column;
	align-items: center;
}

#how-to .inner .bx-wrapper .bx-controls .bx-pager:before {
	width: 1px;
	height: 110px;
	background: #fff;
	content: "";
	display: block;
	margin-bottom: 12px;
}

#how-to .inner .bx-wrapper .bx-controls .bx-pager:after {
	width: 1px;
	height: 110px;
	background: #fff;
	content: "";
	display: block;
	margin-top: 12px;
}

#how-to .inner .bx-wrapper .bx-controls .bx-pager .bx-pager-item {
	margin: 12px 0;
	text-indent: -9999px;
	width: 12px;
	height: 12px;
}

#how-to .inner .bx-wrapper .bx-controls .bx-pager .bx-pager-item .bx-pager-link {
	background: #fff;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	display: block;
	height: 7px;
	width: 7px;
	margin: 0 auto;
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}

#how-to .inner .bx-wrapper .bx-controls .bx-pager .bx-pager-item .bx-pager-link.active {
	width: 12px;
	height: 12px;
}

/* Contact */

#contact {
	padding: 50px 0 100px;
	position: relative;
	background: #fff;
	z-index: 1;
}

#contact .inner {
	max-width: 940px;
	width: 90%;
	margin: 0 auto;
}

#contact .inner h3 {
	max-width: 675px;
	margin: 0 auto 45px;
	font-family: "Montserrat";
	font-weight: bold;
	font-size: 55px;
	color: #D91B5D;
	letter-spacing: -1.8px;
	text-align: center;
	line-height: 60px;
}

#contact .inner form .fields {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}

#contact .inner form .fields p {
	height: 65px;
	margin-bottom: 40px;
	flex: 0 0 calc((100% - 40px) / 3);
}

#contact .inner form .fields p label {
	display: block;
	opacity: 0.8;
	font-family: "Roboto", sans-serif;
	font-size: 14px;
	color: #D91B5D;
	line-height: 20px;
	text-transform: uppercase;
}

#contact .inner form .fields p input:not([type=checkbox]),
#contact .inner form .fields p textarea {
	-webkit-appearance: none;
	appearance: none;
	border: none;
	padding: 0;
	margin: 0;
	border-bottom: 2px solid rgba(0, 0, 0, .1);
	display: block;
	width: 100%;
	font-family: "Roboto", sans-serif;
	font-size: 16px;
	color: #9B9B9B;
}

#contact .inner form .fields p input:not([type=checkbox]) {
	height: 45px;
	line-height: 45px;
}

#contact .inner form .fields p textarea {
	padding: 16px 0;
}

#contact .inner form .fields p input:focus,
#contact .inner form .fields p textarea:focus {
	outline: none;
}

#contact .inner form .fields p.full-width {
	flex: 0 0 100%;
}

#contact .inner form .fields p.privacy-policy {
	height: auto;
	margin: 25px auto 15px;
}

#contact .inner form .fields p.privacy-policy input {
	margin-right: 6px;
}

#contact .inner form .fields p.privacy-policy label {
	font-family: "Roboto", sans-serif;
	font-size: 16px;
	color: #9B9B9B;
	text-transform: none;
	display: flex;
	flex-direction: row;
	align-items: center;
}

#contact .inner form .fields p.privacy-policy label input {
	margin-right: 12px;
}

#contact .inner form .fields p.privacy-policy label a {
	color: #D91B5D;
	font-weight: bold;
	text-decoration: none;
	margin-left: 5px;
}

#contact .inner form button {
	margin: 40px auto 0;
	padding: 0 75px;
	display: block;
	box-shadow: none;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	border: none;
	border-radius: 45px;
	-moz-border-radius: 45px;
	-webkit-border-radius: 45px;
	background: #D91B5D;
	color: #fff;
	height: 45px;
	line-height: 45px;
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
	cursor: pointer;
	font-family: "Montserrat";
	font-weight: bold;
	text-transform: uppercase;
	font-size: 15px;
}

#contact .inner form button:hover {
	background: #262626;
}

#contact .inner form button:focus {
	outline: none;
}

#contact .inner form .g-recaptcha > div {
	margin: 30px auto;
}

/* Footer */

footer {
	background: #D91B5D;
	color: #fff;
	position: relative;
	z-index: 1;
}

footer .inner {
	max-width: 940px;
	width: 90%;
	margin: 0 auto;
}

footer #footer-information {
	padding: 60px 0;
}

footer #footer-information .inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

footer #footer-information .inner img {
	width: 185px;
	max-width: 100%;
	height: auto;
}

footer #footer-information .inner .links span {
	font-weight: bold;
	margin-bottom: 12px;
	display: block;
}

footer #footer-information .inner .links ul li a {
	line-height: 25px;
	color: #fff;
	text-decoration: none;
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
	display: inline;
}

footer #footer-information .inner .links ul li a:hover {
	opacity: .5;
}

footer #footer-information .inner .connects {
	flex: 0 0 150px;
}

footer #footer-information .inner .connects .facebook-connects {
	margin-top: 35px;
}

footer #footer-information .inner .connects .facebook-connects span {
	display: block;
	font-family: "Roboto", sans-serif;
	font-size: 16px;
	line-height: 25px;
	margin-bottom: 10px;
}

footer #footer-information .inner .connects .facebook-connects a {
	display: block;
	height: 42px;
	line-height: 42px;
	border-radius: 42px;
	-moz-border-radius: 42px;
	-webkit-border-radius: 42px;
	text-align: center;
	font-weight: bold;
	background: #fff;
	padding: 0 25px;
	color: #333391;
	text-decoration: none;
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}

footer #footer-information .inner .connects .facebook-connects a i {
	margin-right: 6px;
	font-weight: normal;
}

footer #footer-information .inner .connects .facebook-connects a:hover {
	background: #262626;
	color: #fff;
}

footer #footer-copyright {
	height: 52px;
	line-height: 52px;
	background: #B3144B;
	text-align: center;
}

footer #footer-copyright a {
	color: rgba(0, 0, 0, .5);
	text-decoration: none;
	font-weight: bold;
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}

footer #footer-copyright span {
	display: inline-block;
	margin: 0 12px;
}

footer #footer-copyright a:hover {
	color: rgba(0, 0, 0, .2);
}

/* FAQs */

#faqs .inner {
	max-width: 940px;
	width: 90%;
	margin: 40px auto 0;
}

#faqs .inner h1 {
	font-family: "Montserrat";
	font-weight: bold;
	font-size: 55px;
	color: #D91B5D;
	letter-spacing: -1.8px;
	text-align: center;
	line-height: 60px;
	display: block;
	margin-bottom: 15px;
}

#faqs .inner h2 {
	font-family: "Roboto", sans-serif;
	font-size: 25px;
	color: #262626;
	text-align: center;
	line-height: 35px;
}

#faqs .inner .search {
	width: 100%;
	display: flex;
	border-bottom: 2px solid rgba(0, 0, 0, .1);
	height: 75px;
	margin: 80px auto;
}

#faqs .inner .search label {
	flex: 0 0 50px;
	height: 75px;
	line-height: 75px;
	text-align: center;
	font-size: 30px;
	color: #D91B5D;
}

#faqs .inner .search input {
	flex: 0 0 calc(100% - 50px);
	-webkit-appearance: none;
	appearance: none;
	border: none;
	padding: 0 0 0 15px;
	margin: 0;
	display: block;
	font-family: "Roboto", sans-serif;
	font-size: 16px;
	color: #9B9B9B;
	height: 75px;
	line-height: 75px;
}

#faqs .inner .search input:focus {
	outline: none;
}

#faqs .inner ul li {
	padding: 0 0 35px;
	margin-bottom: 35px;
	border-bottom: 1px solid rgba(0, 0, 0, .1);
}

#faqs .inner ul li:last-of-type {
	border-bottom: none;
	margin-bottom: 0;
}

#faqs .inner ul li strong {
	font-weight: bold;
}

#faqs .inner ul li a {
	font-weight: bold;
	text-decoration: none;
	color: #D91B5D;
}

#faqs .inner ul li h3 {
	font-family: "Montserrat";
	font-size: 35px;
	color: #D91B5D;
	line-height: 40px;
	display: block;
	padding: 0 50px 0 65px;
	cursor: pointer;
	position: relative;
}

#faqs .inner ul li h3:before {
	content: attr(data-text);
	font-weight: bold;
	margin-left: -65px;
	float: left;
}

#faqs .inner ul li h3:after {
	content: "keyboard_arrow_down";
	font-family: "Material Icons";
	text-align: center;
	width: 50px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	right: 0;
	font-size: 40px;
}

#faqs .inner ul li.active h3:after {
	content: "keyboard_arrow_up";
}

#faqs .inner ul li p {
	font-family: "Roboto", sans-serif;
	font-size: 18px;
	color: #4A4A4A;
	text-align: justify;
	line-height: 28px;
	padding-left: 65px;
	display: none;
	margin-top: 20px;
}

/* Features */

#features .inner {
	max-width: 940px;
	width: 90%;
	margin: 40px auto 0;
}

#features .inner h1 {
	font-family: "Montserrat";
	font-weight: bold;
	font-size: 55px;
	color: #D91B5D;
	letter-spacing: -1.8px;
	text-align: center;
	line-height: 60px;
	display: block;
	margin-bottom: 15px;
}

#features .inner h2 {
	font-family: "Roboto", sans-serif;
	font-size: 25px;
	color: #262626;
	text-align: center;
	line-height: 35px;
	margin-bottom: 80px;
}

#features .inner .features {
	width: 90%;
	max-width: 770px;
	margin: 0 auto;
}

#features .inner .feature {
	display: flex;
	flex-direction: row;
	align-items: center;
	margin-bottom: 65px;
}

#features .inner .feature:not(.visible) {
	display: none;
}

#features .inner .feature.visible.even {
	justify-content: flex-end;
}

#features .inner .feature.visible.odd {
	justify-content: flex-start;
}

#features .inner .feature .tutorial {
	width: 260px;
	height: auto;
}

#features .inner .feature .tutorial:not([data-path="#"]) {
	cursor: pointer;
}

#features .inner .feature.visible.even .tutorial {
	order: 2;
	margin-left: 60px;
}

#features .inner .feature.visible.odd .tutorial {
	margin-right: 60px;
}

#features .inner .feature article {
	flex: 0 0 420px;
}

#features .inner .feature article h3 {
	max-width: 420px;
	display: block;
	margin-bottom: 18px;
	font-family: "Roboto", sans-serif;
	font-weight: bold;
	font-size: 35px;
	line-height: 42px;
	color: #D91B5D;
}

#features .inner .feature article p {
	max-width: 420px;
	font-family: "Roboto", sans-serif;
	margin-bottom: 18px;
	font-size: 18px;
	color: #4A4A4A;
	line-height: 28px;
	display: block;
}

#features .inner #sidebar {
	top: 45%;
	transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	position: fixed;
	left: 0;
	text-align: right;
	padding: 0 50px;
}

#features .inner #sidebar ul li {
	display: block;
	margin-bottom: 16px;
	padding-right: 20px;
	position: relative;
}

#features .inner #sidebar ul li:after {
	content: "";
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	display: block;
	background: #9B9B9B;
	position: absolute;
	height: 7px;
	width: 7px;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}

#features .inner #sidebar ul li.active:after {
	background: #D91B5D;
	width: 11px;
	height: 11px;
	right: -2px;
}

#features .inner #sidebar ul li a {
	font-family: "Roboto", sans-serif;
	font-size: 16px;
	line-height: 18px;
	text-decoration: none;
	color: #9B9B9B;
	font-weight: bold;
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}

#features .inner #sidebar ul li.active a {
	color: #D91B5D;
}

#feature-tutorial {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: none;
	z-index: 2;
}

#feature-tutorial .close {
	color: #fff;
	position: absolute;
	top: 30px;
	right: 30px;
	z-index: 1;
	cursor: pointer;
}

#feature-tutorial .click {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background: rgba(0, 0, 0, .5);
}

#feature-tutorial .inner {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
	-moz-transform: translateX(-50%) translateY(-50%);
	-webkit-transform: translateX(-50%) translateY(-50%);
	width: auto;
	height: auto;
	margin: 0;
	padding: 60px 43px 43px 43px;
	background-image: url('../images/landing/tutorial.png');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

#feature-tutorial .inner .smartphone {
	width: 215px;
	height: 440px;
	display: block;
	border-radius: 18px;
	-moz-border-radius: 18px;
	-webkit-border-radius: 18px;
}

@media screen and (max-width: 1265px) {

	#features .inner #sidebar {
		position: relative;
		text-align: center;
		top: inherit;
		transform: none;
		-moz-transform: none;
		-webkit-transform: none;
	}

	#features .inner #sidebar ul {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		justify-content: space-between;
	}

	#features .inner #sidebar ul li {
		margin: 0 20px 20px 0;
		background: #fff;
		border: 1px solid rgba(0, 0, 0, .05);
		height: 35px;
		line-height: 35px;
		border-radius: 35px;
		text-align: center;
		padding: 0 25px;
		box-sizing: border-box;
	}

	#features .inner #sidebar ul li.active,
	#features .inner #sidebar ul li:hover {
		background: #D91B5D;
		border-color: #D91B5D;
	}

	#features .inner #sidebar ul li.active a,
	#features .inner #sidebar ul li:hover a {
		color: #fff;
	}

	#features .inner #sidebar ul li::after {
		display: none;
	}

}

@media screen and (max-width: 940px) {

	#features .inner .features {
		margin-top: 30px;
	}

	#features .inner .feature {
		flex-direction: column;
		text-align: center;
		justify-content: center;
		align-items: center;
		margin-bottom: 30px;
		padding-bottom: 30px;
		border-bottom: 1px solid rgba(0, 0, 0, .1);
	}

	#features .inner .feature:last-of-type {
		border-bottom: none;
		padding-bottom: 0;
	}

	#features .inner .feature .tutorial,
	#features .inner .feature.visible.odd .tutorial,
	#features .inner .feature.visible.even .tutorial {
		margin: 0 0 35px;
	}

	#features .inner .feature article {
		order: 2;
		flex: 0 0 auto;
	}

	#features .inner .feature article h3 {
		max-width: 100%;
		font-size: 30px;
		line-height: 38px;
	}

	#features .inner .feature article p {
		max-width: 100%;
	}

}

@media screen and (max-width: 860px) {

	#hero .inner .background {
		height: 320px;
		width: 320px;
	}

	#hero .inner .description h1 {
		font-size: 45px;
		line-height: 50px;
	}

	#how-to {
		margin-top: -50px;
		background-color: #D91B5D;
		background-image: url('../images/landing/pattern.png');
		background-size: 75%;
		background-repeat: repeat;
		-webkit-clip-path: polygon(100% 0, 100% 100%, 50% calc(100% - 50px), 0% 100%, 0 0, 50% 50px);
		clip-path: polygon(100% 0, 100% 100%, 50% calc(100% - 50px), 0% 100%, 0 0, 50% 50px);
		padding: 50px 0 150px;
	}

	#how-to .inner .bx-wrapper .bx-controls {
		width: 50px;
		margin-right: 25px;
	}

	#how-to .inner .bx-wrapper .bx-viewport .slider .slide img {
		max-width: 230px;
		margin-right: 30px;
	}

	#how-to .inner .bx-wrapper .bx-viewport .slider .slide article a {
		height: auto;
		line-height: 20px;
		padding: 12px 20px;
	}

}

@media screen and (max-width: 768px) {

	body {
		padding-top: 82px;
	}

	#header,
	#header.headroom--not-top {
		padding: 0;
	}

	#header .inner,
	#header.headroom--not-top .inner {
		flex-direction: column;
		max-width: 100%;
		width: 100%;
		height: 72px;
	}

	#header .inner #open-menu {
		width: 72px;
		height: 72px;
		text-align: center;
		line-height: 72px;
		position: absolute;
		left: 0;
		cursor: pointer;
		color: #D91B5D;
		display: block;
	}

	#header .inner .logo {
		height: 56px;
		margin: 8px auto;
	}

	#header.headroom--unpinned .inner nav {
		display: none !important;
	}

	#header .inner nav {
		width: 100%;
		padding: 24px 0;
		background: #f6f6f6;
		display: none;
	}

	#header .inner nav ul {
		justify-content: center;
		width: 90%;
		margin: 0 auto;
		flex-direction: column;
		justify-content: center;
	}

	#header .inner nav ul li {
		width: 100%;
		margin: 0 0 12px 0;
	}

	#header .inner nav ul li a,
	#header .inner nav ul li a.background {
		height: 40px;
		text-align: center;
		line-height: 40px;
		width: 100%;
		box-sizing: border-box;
		border-radius: 8px !important;
		-moz-border-radius: 8px !important;
		-webkit-border-radius: 8px !important;
		padding: 0 15px;
	}

	#header .inner nav ul li a {
		background: rgba(0, 0, 0, .05);
	}

	#header .inner nav ul li a.background {
		background: #262626;
	}

	#header .inner nav ul li a:hover,
	#header .inner nav ul li.active a {
		background: #D91B5D;
		color: #fff;
	}

	#header .inner nav ul li#switch-language {
		margin: 0 auto;
		text-align: center;
		background: rgba(0, 0, 0, .05);
		padding: 0 15px 0 0;
		box-sizing: border-box;
		border-radius: 8px;
		-moz-border-radius: 8px;
		-webkit-border-radius: 8px;
		overflow: hidden;
	}

	#header .inner nav ul li#switch-language select {
		padding: 0 15px;
		height: 40px;
		width: 100%;
		box-sizing: border-box;
	}

	#how-to .inner {
		padding: 50px 0 0;
	}

	#hero .inner .description {
		width: calc(100% - 260px);
		padding: 35px 0 80px;
	}

	#hero .inner .preview {
		width: 230px;
	}

	#contact {
		padding: 30px 0 50px;
	}

	#contact .inner h3 {
		max-width: 90%;
		font-size: 40px;
		line-height: 50px;
	}

	#contact .inner form .fields p {
		flex: 0 0 100%;
	}

	#features .inner #sidebar ul li {
		flex: 0 0 calc(50% - 12px);
		margin: 0 0 20px;
	}

	#feature-tutorial .close {
		height: 40px;
		width: 40px;
		background: #fff;
		border-radius: 3px;
		-moz-border-radius: 3px;
		-webkit-border-radius: 3px;
		color: #262626;
		line-height: 40px;
		text-align: center;
	}

	#feature-tutorial .inner {
		background: none;
		padding: 0;
		top: 0;
		left: 0;
		transform: none;
		-moz-transform: none;
		-webkit-transform: none;
		width: 100%;
		height: 100%;
	}

	#feature-tutorial .inner .smartphone {
		height: 100%;
		width: 100%;
	}

	footer #footer-information {
		padding: 50px 0 30px;
	}

	footer #footer-information .inner {
		flex-wrap: wrap;
		flex-direction: column;
		text-align: center;
	}

	footer #footer-information .inner > * {
		flex: 0 0 100%;
	}

	footer #footer-information .inner > img {
		display: none;
	}

	footer #footer-information .inner .links {
		margin-bottom: 35px;
	}

	footer #footer-information .inner .connects {
		flex: 0 0 200px;
	}

	#faqs .inner {
		margin: 30px auto 0;
	}

	#faqs .inner h1,
	#features .inner h1,
	#how-to .inner h2 {
		font-size: 50px;
		line-height: 52px;
	}

	#faqs .inner .search {
		margin: 35px auto;
		height: 55px;
	}

	#faqs .inner .search input,
	#faqs .inner .search label {
		height: 55px;
		line-height: 55px;
	}

	#faqs .inner .search label {
		font-size: 25px;
	}

	#faqs .inner ul li h3 {
		padding: 0 50px;
		font-size: 28px;
		line-height: 30px;
	}

	#faqs .inner ul li h3:before {
		margin-left: -50px;
	}

	#faqs .inner ul li p {
		padding-left: 50px;
		margin-top: 18px;
	}

}

@media screen and (max-width: 700px) {

	#hero .inner .background {
		height: 240px;
		width: 240px;
	}

	#how-to {
		padding: 50px 0 100px;
	}

	#how-to .inner .bx-wrapper .bx-viewport .slider .slide {
		flex-direction: column;
		text-align: center;
	}

	#how-to .inner .bx-wrapper .bx-viewport .slider .slide img {
		margin: 0 0 30px 0;
	}

	#how-to .inner .bx-wrapper {
		flex-direction: column;
	}

	#how-to .inner .bx-wrapper .bx-controls {
		width: 100%;
		margin-top: 25px;
		order: 2;
		margin-right: 0;
	}

	#how-to .inner .bx-wrapper .bx-controls .bx-controls-direction {
		width: 75%;
		margin: 0 auto;
		position: relative;
	}

	#how-to .inner .bx-wrapper .bx-controls .bx-controls-direction a.bx-next,
	#how-to .inner .bx-wrapper .bx-controls .bx-controls-direction a.bx-prev {
		top: 0;
		bottom: 0;
		transform: none;
		-moz-transform: none;
		-webkit-transform: none;
		width: 40px;
		height: 40px;
	}

	#how-to .inner .bx-wrapper .bx-controls .bx-controls-direction a.bx-prev {
		left: -50px;
		right: inherit;
	}

	#how-to .inner .bx-wrapper .bx-controls .bx-controls-direction a.bx-next {
		right: -50px;
		left: inherit;
	}

	#how-to .inner .bx-wrapper .bx-controls .bx-pager {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
		width: 75%;
		margin: 0 auto;
	}

	#how-to .inner .bx-wrapper .bx-controls .bx-pager:before,
	#how-to .inner .bx-wrapper .bx-controls .bx-pager:after {
		height: 1px;
		width: calc(50% - 75px);
		margin: 0;
	}

	#how-to .inner .bx-wrapper .bx-controls .bx-pager .bx-pager-item .bx-pager-link:not(.active) {
		margin: 2.5px auto;
	}

}

@media screen and (max-width: 620px) {

	#hero .inner .preview {
		display: none;
	}

	#hero .inner .description {
		width: 100%;
		text-align: center;
	}

	#hero .inner .description .group {
		margin: 0 auto;
		width: 90%;
	}

	#features .inner #sidebar ul li {
		flex: 0 0 100%;
		margin: 0 0 20px;
	}

	footer #footer-copyright {
		height: auto;
		line-height: 30px;
		padding: 20px;
	}

	footer #footer-copyright span {
		display: none;
	}

	footer #footer-copyright a.privacy {
		display: block;
	}

}
