/*!
 * Landing Presentation
 * https://touchsize.com
 */

html,
body {
	height: 100%;
}

body {
	overflow-x: hidden;
	color: #222c35;
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
}

h1,h2,h3,h4,h5,h6 {
	font-family: 'Roboto', sans-serif;
}

a {
	text-decoration: none;
	color: #000;
	outline: none;

	transition: color .25s linear, background-color .25s linear;
	-webkit-transition: color .25s linear, background-color .25s linear;
}

p {
	font-weight: 300;
}

ul, ol {
	line-height: 1.8;
}

a:hover,
a:focus {
	color: #2d2d30;
	text-decoration: none;
}

img {
	width: 100%;
	max-width: 100%;
}

section {
	position: relative;
}

#header {
	position: relative;
}
#footer small {
	line-height: 2;
	font-weight: 300;
}
#footer .nav-inline {
	font-size: 13px;
    font-weight: 300;
    line-height: 1.2;
    text-align: right;
}
#footer .nav-inline .nav-item {
    display: inline-block;
}
#footer .nav > li > a:hover, 
#footer .nav > li > a:focus {
	text-decoration: underline;
    background-color: transparent;
}
.dark-background {
	background-color: rgb(34, 44, 53);
	color: #fff;
}
.dark-background a {
	color: #fff;
}
.has-background {
    background-position: center center;
    background-size: cover;
}
.has-gradient-mask {
    position: relative;
    z-index: 1;
    color: #ffffff;
}
.has-gradient-mask:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    
    background: rgba(131, 77, 155, .9);  /* fallback for old browsers */
	background: -webkit-linear-gradient(to right, rgba(208, 78, 214, .9), rgba(131, 77, 155, .9));  /* Chrome 10-25, Safari 5.1-6 */
	background: linear-gradient(to right, rgba(208, 78, 214, .9), rgba(131, 77, 155, .9)); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}
.has-gradient-mask .element__cta,
.has-gradient-mask .container {
    position: relative;
    z-index: 2;
}

.marg-25 {
	margin: 25px;
}
.marg-tb-25 {
	margin: 25px 0;
}
.marg-lr-25 {
	margin: 0 25px;
}
.marg-50 {
	margin: 50px;
}
.marg-tb-50 {
	margin: 50px 0;
}
.marg-lr-50 {
	margin: 0 50px;
}
.marg-75 {
	margin: 75px;
}
.marg-tb-75 {
	margin: 75px 0;
}
.marg-lr-75 {
	margin: 0 75px;
}
.marg-100 {
	margin: 100px;
}
.marg-tb-100 {
	margin: 100px 0;
}
.marg-lr-100 {
	margin: 0 100px;
}

.pad-25 {
	padding: 25px;
}
.pad-tb-25 {
	padding: 25px 0;
}
.pad-lr-25 {
	padding: 0 25px;
}
.pad-50 {
	padding: 50px;
}
.pad-tb-50 {
	padding: 50px 0;
}
.pad-lr-50 {
	padding: 0 50px;
}
.pad-75 {
	padding: 75px;
}
.pad-tb-75 {
	padding: 75px 0;
}
.pad-lr-75 {
	padding: 0 75px;
}
.pad-100 {
	padding: 100px;
}
.pad-tb-100 {
	padding: 100px 0;
}
.pad-lr-100 {
	padding: 0 100px;
}

.danger_area {
	padding: 2.5em 2em;
	max-width: 500px;
	/*background-color: #f5f5f5;*/
	margin: 0 auto 50px auto;
}
.danger_area > span {
	font-size: 5em;
	color: #ff3266;
}
.danger_area > h2 {
	font-size: 4em;
	color: #ff3266;
}
.danger_area > p {
	font-size: 16px;
	margin-bottom: 20px;
}

.btn-discover {
	color: #ff3266;
	border: 2px solid;
	background-color: transparent;
	padding-left: 2em;
	padding-right: 2em;
	font-size: 20px;
}
.btn-discover:hover {
	background-color: #ff3266;
	color: #fff;
}

#intro::after,
#intro-features::after {
	content: '';
	background-image: url('../img/dash-line.png');
	width: 100%;
	height: 3px;
	background-repeat: repeat-x;
	left: 0;
	bottom: 0;
	position: absolute;
}


/* ----------------------------------------
 *
 *  Header
 *
 * ---------------------------------------- */
.header .header__wrap {
	padding-bottom: 10em;
}
.header .header__nav {
	position: fixed;
	padding: 2em 0;
	background-color: #262324;
	color: #FFF;

	transition: padding-top .3s linear, padding-bottom .3s linear;
	-webkit-transition: padding-top .3s linear, padding-bottom .3s linear;
}
.header .header__nav::after {
	content: '';
	background-image: url('../img/dash-line.png');
	width: 100%;
	height: 3px;
	background-repeat: repeat-x;
	left: 0;
	bottom: -20px;
	position: absolute;
}
.header .header__nav .brand {
	position: absolute;
	left: 50%;
	top: -2em;
	width: 70px;
	height: 100%;
	background-color: #ff3266;
	color: #fff;
	display: inline-block;

	transition: top .3s linear;
	-webkit-transition: top .3s linear;

	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
}
.header .header__nav .brand > span {
	position: absolute;
    top: 40px;
    width: 100%;
    text-align: center;
    font-size: 3em;
    font-weight: 100;
    opacity: 0;

    transform: scale(0.2);
    -webkit-transform: scale(0.2);

    transition: top .3s linear, opacity .3s linear, transform .3s linear;
    -webkit-transition: top .3s linear, opacity .3s linear, transform .3s linear;
}
.header .header__nav .navbar-nav li a {
	color: #FFF;
	font-size: 16px;
}
.header .header__nav .navbar-collapse {
	padding-left: 20px;
	padding-right: 20px;
}
.header .header__nav .navbar-nav.navbar-left {
	margin-left: -15px;
}
.header .header__nav .navbar-nav.navbar-right {
	margin-right: 0;
}
.header .header__nav .navbar-nav .btn-buynow {
	color: #fff;
	background-color: #3DCD99;
	font-size: 16px;
	padding: 9px 20px;
}
.header .header__nav .navbar-nav .badge {
	position: absolute;
	right: 100%;
	top: 50%;
	background-color: #ff3266;
	color: #fff;
	padding: 4px 9px;
	margin-right: 20px;
	border-radius: 3px;

	animation: look_here_badge 1.8s infinite;
	-webkit-animation: look_here_badge 1.8s infinite;

	transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
}
.header .header__nav .navbar-nav .badge::before {
	content: '';
	position: absolute;
	left: 100%;
	width: 0; 
	height: 0; 
	border-top: 6px solid transparent;
	border-bottom: 6px solid transparent;
	border-left: 6px solid #ff3266;
}
.header .header__nav .navbar-nav li a:hover,
.header .header__nav .navbar-nav li a:active,
.header .header__nav .navbar-nav li a:focus {
	background-color: transparent;
	color: #ff3266;
}
.header .header__nav .navbar-nav .btn-buynow:hover {
	color: #fff;
	background-color: #26b783;
}
.window-loaded .header .header__nav .brand > span {
	opacity: 1;
	transform: scale(1);
    -webkit-transform: scale(1);
}

@keyframes look_here_badge {
	0% {
		margin-right: 10px;
	}
	50% {
		margin-right: 20px;
	}
	100% {
		margin-right: 10px;
	}
}

/* Header Fixed */
.header .header__nav.is-fixed {
	padding-top: 0.5em;
	padding-bottom: 0.5em;
	box-shadow: 0 2px 5px rgba(70, 70, 70, 0.08);
}
.header .header__nav.is-fixed::after {
	display: none;
}
.header .header__nav.is-fixed .brand {
	top: 0;
}
.header .header__nav.is-fixed .brand > span {
	top: 0;
}


/* ----------------------------------------
 *
 *  Intro
 *
 * ---------------------------------------- */
.demo-presentation {
	height: 520px;
	margin-top: 100px;
}
.demo-presentation .inner-hero {
	display: flex;
	height: 100%;
}
.demo-presentation .inner-hero > figure {
	flex: 1;
	position: relative;
	margin-left: 5px;
	margin-right: 5px;
}
.demo-presentation .inner-hero > figure > a {
	display: block;
	height: 100%;
}
.demo-presentation .inner-hero > figure .title {
	position: absolute;
	text-transform: uppercase;
	margin: 0;
	text-align: center;
	z-index: 2;
	top: 50%;
	left: 0;
	width: 100%;
	color: #fff;
	font-size: 2em;
	font-weight: 400;
	line-height: 1.6em;
	text-shadow: 1px 2px 5px rgba(70, 70, 70, 0.5);
	padding: 1em;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
}
.demo-presentation .inner-hero > figure .title > .i-am {
	position: relative;
	text-align: center;
	display: block;
	font-size: 14px;
	font-weight: 300;
	letter-spacing: 2px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.8);
}
.demo-presentation .inner-hero > figure figcaption {
	position: absolute;
	z-index: 2;
	padding: 2em;
	right: 0;
	left: 0;
	bottom: 0;
	text-align: center;
}
.demo-presentation .inner-hero > figure figcaption .open-link {
	position: relative;
	display: inline-block;
	margin: 0 auto;
	text-transform: uppercase;
	color: #fff;
	opacity: 0;
	padding: .8em 2em;
	border-radius: 5px;
	border: 1px solid #fff;
	line-height: 1.8;
	overflow: hidden;

	-webkit-transition: opacity .4s linear;
	-o-transition: opacity .4s linear;
	transition: opacity .4s linear;
}
.demo-presentation .inner-hero > figure figcaption .open-link > h2 {
	position: relative;
	color: inherit;
	font-size: 13px;
	letter-spacing: 1.5px;
	margin: 0;
	z-index: 1;
}
.demo-presentation .inner-hero > figure figcaption .open-link::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 0;
	background-color: #fff;
	z-index: 0;

	-webkit-transition: height .3s linear;
	-o-transition: height .3s linear;
	transition: height .3s linear;
}
.demo-presentation .inner-hero > figure:hover figcaption .open-link::before {
	height: 100%;
}
.demo-presentation .inner-hero > figure:hover figcaption .open-link {
	opacity: 1;
	color: #333;
}
.demo-presentation .inner-hero > figure figcaption .open-link:hover > h2 > i {
	right: -5px;
}
.demo-presentation .inner-hero > figure .overlay-bg,
.demo-presentation .inner-hero > figure .overlay-gradient {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}
.demo-presentation .inner-hero > figure .overlay-gradient {
	background: rgba(0, 0, 0, .6);

	-webkit-transition: background .6s linear;
	-o-transition: background .6s linear;
	transition: background .6s linear;
}
.demo-presentation .inner-hero > figure:hover .overlay-gradient {
	background: rgba(131, 77, 155, .35);  /* fallback for old browsers */
	background: -webkit-linear-gradient(to right, rgba(208, 78, 214, .35), rgba(131, 77, 155, .35));  /* Chrome 10-25, Safari 5.1-6 */
	background: linear-gradient(to right, rgba(208, 78, 214, .35), rgba(131, 77, 155, .35)); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}
.demo-presentation .inner-hero > figure .overlay-bg {
	background-size: cover;
	background-position: top center;
	z-index: 0;
}
#presentation-images {
	text-align: center;
}
#presentation-images img {
	width: auto;
}

@media screen and (max-width: 768px) {
	.demo-presentation .inner-hero > figure > a {
		min-height: 300px;
	}
	.demo-presentation {
		height: auto;
	}
	.demo-presentation .inner-hero {
		display: block;
	}
	.demo-presentation .inner-hero > figure {
		margin-bottom: 10px;
	}
	.pad-tb-75 {
		padding: 35px 0;
	}
}


/* ----------------------------------------
 *
 *  Title
 *
 * ---------------------------------------- */
.element__title {
	margin-bottom: 50px;
}
.element__title .inner-element {
	/* width: 60%; */
	margin: auto;
}
.element__title .element__title--heading {
	font-size: 6.6em;
	font-weight: 200;
	letter-spacing: -0.03em;
}
.element__title .element__title--supheading {
	color: #ff3266;
	font-size: 16px;
	font-weight: 900;
}
.element__title .element__title--subheading {
	color: #acacac;
	font-size: 16px;
	font-weight: 300;
}

@media screen and (max-width: 768px) {
	.element__title .element__title--heading {
		font-size: 2em;
	}
}


/* ----------------------------------------
 *
 *  Call to action
 *
 * ---------------------------------------- */
.element__cta .element__cta-title {
	font-size: 3em;
	font-weight: 400;
	margin-top: 0;
}
.element__cta .element__cta-subtitle {
	font-size: 16px;
	margin-bottom: 4rem;
}
.element__cta .btn {
	color: #fff;
	background-color: transparent;
    padding: 16px 25px;
    border: 2px solid #fff;

    -webkit-transition: background-color .3s linear, border-color .3s linear;
    -o-transition: background-color .3s linear, border-color .3s linear;
    transition: background-color .3s linear, border-color .3s linear;
}
.element__cta .btn:hover {
	background-color: #fff;
	color: #ff3266;
	border-color: #fff;
	border-color: transparent;
}


/* ----------------------------------------
 *
 *  Pricing Table
 *
 * ---------------------------------------- */
.element__pricetable .inner-element {
	position: relative;
	max-width: 400px;
	margin: auto;
	text-align: center;
	border: 3px solid rgba(255, 255, 255, 0.1);
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
	border-radius: 15px;
	padding: 2em 3em;
}
.element__pricetable .element__pricetable--sale {
	position: absolute;
	top: -20px;
	right: -20px;
	width: 70px;
	height: 70px;
	line-height: 70px;
	font-size: 1.5em;
	background-color: #ff3266;
	color: #fff;
	border-radius: 50%;
}
.element__pricetable .element__pricetable--price {
	font-size: 4.4em;
	font-weight: 700;
	margin-bottom: 30px;
	font-family: 'Roboto', sans-serif;
}
.element__pricetable .element__pricetable--content h4 {
	font-size: 18px;
	text-transform: uppercase;
	font-weight: bold;
	margin-top: 0;
	margin-bottom: 15px;
}
.element__pricetable .element__pricetable--content p {
	color: #acacac;
	display: block;
}
.element__pricetable .element__pricetable--content p:last-of-type {
	margin-bottom: 40px;
}
.element__pricetable .element__pricetable--content .btn {
	color: #fff;
    background-color: #3DCD99;
    padding-left: 30px;
    padding-right: 30px;
    border-color: transparent;

    -webkit-transition: background-color .3s linear;
    -o-transition: background-color .3s linear;
    transition: background-color .3s linear;
}
.element__pricetable .element__pricetable--content .btn:hover {
	background-color: #26b783;
}


/* ----------------------------------------
 *
 *  Thumbnail view
 *
 * ---------------------------------------- */
.element__thumbnail-view figure {
	position: relative;
	margin-bottom: 60px;
	font-size: 12px;
}
.element__thumbnail-view figure .figicon img:not(.lazyloaded) {
	min-height: 340px;
}
.element__thumbnail-view figure .figicon {
	box-shadow: 0 0 15px rgba(60,60,60,0.08);
}
.element__thumbnail-view figure figcaption {
	position: absolute;
	left: 30px;
	bottom: -10px;
	right: 30px;
	padding: 15px 20px;
	z-index: 1;
	background-color: rgba(60, 60, 60, 0.75);
	color: #fff;
	text-align: center;
	opacity: 0;
	-webkit-transition: bottom .15s ease-in, opacity .15s ease-in;
	-moz-transition: bottom .15s ease-in, opacity .15s ease-in;
	-o-transition: bottom .15s ease-in, opacity .15s ease-in;
	-ms-transition: bottom .15s ease-in, opacity .15s ease-in;
	transition: bottom .15s ease-in, opacity .15s ease-in;
}
.element__thumbnail-view figure:hover figcaption {
	opacity: 1;
	bottom: 0;
}
.element__thumbnail-view figure figcaption .the-title {
	margin-top: 0;
	font-size: 15px;
	text-transform: uppercase;
}
.element__thumbnail-view figure .link-overlay {
	position: absolute;
	z-index: 10;
	top: 0;
	left: 20px;
	right: 20px;
	height: 100%;
}




/* ----------------------------------------
 *
 *  Demos
 *
 * ---------------------------------------- */

#demos {
	background: #121212;
	padding: 60px 0;
	color: #FFF;
}


/* ----------------------------------------
 *
 *  Features
 *
 * ---------------------------------------- */
.element__iconbox article {
	margin-bottom: 30px;
	text-align: left;
}
.element__iconbox article .inner-element {
	box-shadow: 0px 1px 7px rgba(70, 70, 70, .15);
	background-color: #fff;
	color: #333;
	padding: 3em 2em;
}
.element__iconbox .element__iconbox--icon {
	float: left;
	display: inline-block;
	font-size: 4em;
	color: #ff3266;
	width: 70px;
	text-align: center;
	margin-right: 20px;
}
.element__iconbox aside {
	overflow: hidden;
}
.element__iconbox .element__iconbox--title {
	margin-top: 0;
	margin-bottom: 15px;
	font-size: 22px;
}



/* ----------------------------------------
 *
 *  Icon
 *
 * ---------------------------------------- */
.element__icon article {
	text-align: center;
	margin-bottom: 30px;
}
.element__icon .element__icon--wrap {
	border: 3px solid rgba(0, 0, 0, 0.035);
	border-radius: 15px;
	height: 90px;
	width: 90px;
	font-size: 3em;
	line-height: 84px;
	margin: 20px auto;
}
.element__icon .element__icon--wrap span {
	display: block;
	color: #ff3266;
}
.element__icon .element__icon--title {
	font-size: 18px;
	margin-top: 0;
}


/* ----------------------------------------
 *
 *  Grid columns & Clear Fixes
 *
 * ---------------------------------------- */
div[class*="block-grid"]:after {
    content: "";
    clear: both;
    display: table;
}
.block-grid-xs-1 > .col-item:nth-of-type(1n),
.block-grid-xs-2 > .col-item:nth-of-type(1n),
.block-grid-xs-3 > .col-item:nth-of-type(1n),
.block-grid-xs-4 > .col-item:nth-of-type(1n),
.block-grid-xs-5 > .col-item:nth-of-type(1n),
.block-grid-xs-6 > .col-item:nth-of-type(1n),
.block-grid-xs-10 > .col-item:nth-of-type(1n) {
    clear: none;
}
.block-grid-xs-1 > .col-item:nth-of-type(1n+1) {
    clear: both;
}
.block-grid-xs-2 > .col-item:nth-of-type(2n+1) {
    clear: both;
}
.block-grid-xs-3 > .col-item:nth-of-type(3n+1) {
    clear: both;
}
.block-grid-xs-4 > .col-item:nth-of-type(4n+1) {
    clear: both;
}
.block-grid-xs-5 > .col-item:nth-of-type(5n+1) {
    clear: both;
}
.block-grid-xs-6 > .col-item:nth-of-type(6n+1) {
    clear: both;
}
.block-grid-xs-10 > .col-item:nth-of-type(10n+1) {
    clear: both;
}
@media only screen and (min-width: 768px) {
    .block-grid-sm-1 > .col-item:nth-of-type(1n),
    .block-grid-sm-2 > .col-item:nth-of-type(1n),
    .block-grid-sm-3 > .col-item:nth-of-type(1n),
    .block-grid-sm-4 > .col-item:nth-of-type(1n),
    .block-grid-sm-5 > .col-item:nth-of-type(1n),
    .block-grid-sm-6 > .col-item:nth-of-type(1n),
    .block-grid-sm-10 > .col-item:nth-of-type(1n) {
        clear: none;
    }
    .block-grid-sm-1 > .col-item:nth-of-type(1n+1) {
        clear: both;
    }
    .block-grid-sm-2 > .col-item:nth-of-type(2n+1) {
        clear: both;
    }
    .block-grid-sm-3 > .col-item:nth-of-type(3n+1) {
        clear: both;
    }
    .block-grid-sm-4 > .col-item:nth-of-type(4n+1) {
        clear: both;
    }
    .block-grid-sm-5 > .col-item:nth-of-type(5n+1) {
        clear: both;
    }
    .block-grid-sm-6 > .col-item:nth-of-type(6n+1) {
        clear: both;
    }
    .block-grid-sm-10 > .col-item:nth-of-type(10n+1) {
        clear: both;
    }
}
@media only screen and (min-width: 992px) {
    .block-grid-md-1 > .col-item:nth-of-type(1n),
    .block-grid-md-2 > .col-item:nth-of-type(1n),
    .block-grid-md-3 > .col-item:nth-of-type(1n),
    .block-grid-md-4 > .col-item:nth-of-type(1n),
    .block-grid-md-5 > .col-item:nth-of-type(1n),
    .block-grid-md-6 > .col-item:nth-of-type(1n),
    .block-grid-md-10 > .col-item:nth-of-type(1n) {
        clear: none;
    }
    .block-grid-md-1 > .col-item:nth-of-type(1n+1) {
        clear: both;
    }
    .block-grid-md-2 > .col-item:nth-of-type(2n+1) {
        clear: both;
    }
    .block-grid-md-3 > .col-item:nth-of-type(3n+1) {
        clear: both;
    }
    .block-grid-md-4 > .col-item:nth-of-type(4n+1) {
        clear: both;
    }
    .block-grid-md-5 > .col-item:nth-of-type(5n+1) {
        clear: both;
    }
    .block-grid-md-6 > .col-item:nth-of-type(6n+1) {
        clear: both;
    }
    .block-grid-md-10 > .col-item:nth-of-type(10n+1) {
        clear: both;
    }
}
@media only screen and (min-width: 1200px) {
    .block-grid-lg-1 > .col-item:nth-of-type(1n),
    .block-grid-lg-2 > .col-item:nth-of-type(1n),
    .block-grid-lg-3 > .col-item:nth-of-type(1n),
    .block-grid-lg-4 > .col-item:nth-of-type(1n),
    .block-grid-lg-5 > .col-item:nth-of-type(1n),
    .block-grid-lg-6 > .col-item:nth-of-type(1n),
    .block-grid-lg-10 > .col-item:nth-of-type(1n) {
        clear: none;
    }
    .block-grid-lg-1 > .col-item:nth-of-type(1n+1) {
        clear: both;
    }
    .block-grid-lg-2 > .col-item:nth-of-type(2n+1) {
        clear: both;
    }
    .block-grid-lg-3 > .col-item:nth-of-type(3n+1) {
        clear: both;
    }
    .block-grid-lg-4 > .col-item:nth-of-type(4n+1) {
        clear: both;
    }
    .block-grid-lg-5 > .col-item:nth-of-type(5n+1) {
        clear: both;
    }
    .block-grid-lg-6 > .col-item:nth-of-type(6n+1) {
        clear: both;
    }
    .block-grid-lg-10 > .col-item:nth-of-type(10n+1) {
        clear: both;
    }
}

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