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

html,
body,
#header {
	height: 100%;
}

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

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

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

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

#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(67, 206, 162, .9); /* fallback for old browsers */
    background: -webkit-linear-gradient(to left, rgba(67, 206, 162, .9) , rgba(24, 90, 157, .9)); /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to left, rgba(67, 206, 162, .9) , rgba(24, 90, 157, .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: 700px;
	background-color: #f5f5f5;
	margin: 0 auto 50px auto;
}
.danger_area > span {
	font-size: 5em;
	color: #dd3858;
}
.danger_area > h2 {
	font-size: 4em;
	color: #dd3858;
}
.danger_area > p {
	font-size: 16px;
	margin-bottom: 20px;
}


/* ----------------------------------------
 *
 *  Scroll down button
 *
 * ---------------------------------------- */
.scroll-down-btn {
	position: absolute;
	top: 20px;
	left: 50%;
	z-index: 10;
	color: #fff;
	letter-spacing: .1em;
	text-decoration: none;

	-webkit-transition: opacity .3s;
	-o-transition: opacity .3s;
	transition: opacity .3s;

	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
}
.scroll-down-btn a {
	color: inherit;
	display: inline-block;
	padding-bottom: 60px;
	outline: 0;
}
.scroll-down-btn a p {
	font-size: 10px;
	opacity: 0.7;
	text-transform: uppercase;
	margin: 0;
	letter-spacing: 2px;
	font-weight: 300;
}
.scroll-down-btn a span {
	position: absolute;
    bottom: 40px;
    left: 50%;
    width: 20px;
    height: 20px;
    margin-left: -12px;
    border-left: 1px solid #fff;
    border-bottom: 1px solid #fff;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-animation: scroll_down_anim 1.5s infinite;
    animation: scroll_down_anim 1.5s infinite;
    box-sizing: border-box;
}

@-webkit-keyframes scroll_down_anim {
	0% {
		-webkit-transform: rotate(-45deg) translate(0, 0);
		opacity: 0;
	}
	50% {
		opacity: 1;
	}
	100% {
		-webkit-transform: rotate(-45deg) translate(-20px, 20px);
		opacity: 0;
	}
}
@keyframes scroll_down_anim {
	0% {
		transform: rotate(-45deg) translate(0, 0);
		opacity: 0;
	}
	50% {
		opacity: 1;
	}
	100% {
		transform: rotate(-45deg) translate(-20px, 20px);
		opacity: 0;
	}
}


/* ----------------------------------------
 *
 *  Hero Header
 *
 * ---------------------------------------- */
.hero__header {
	width: 100%;
	height: 100%;
}
.hero__header .inner-hero {
	display: flex;
	height: 100%;
}
.hero__header .inner-hero > figure {
	flex: 1;
	position: relative;
}
.hero__header .inner-hero > figure > a {
	display: block;
	height: 100%;
}
.hero__header .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: 3.5em;
	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%);
}
.hero__header .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);
}
.hero__header .inner-hero > figure figcaption {
	position: absolute;
	z-index: 2;
	padding: 2em;
	right: 0;
	left: 0;
	bottom: 0;
	text-align: center;
}
.hero__header .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;
}
.hero__header .inner-hero > figure figcaption .open-link > h2 {
	position: relative;
	color: inherit;
	font-size: 13px;
	letter-spacing: 1.5px;
	margin: 0;
	z-index: 1;
	padding-right: 20px;
}
.hero__header .inner-hero > figure figcaption .open-link > h2 > i {
	position: absolute;
	top: 50%;
	right: 0;

	-webkit-transition: right .2s linear;
	-o-transition: right .2s linear;
	transition: right .2s linear;

	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
}
.hero__header .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;
}
.hero__header .inner-hero > figure:hover figcaption .open-link::before {
	height: 100%;
}
.hero__header .inner-hero > figure:hover figcaption .open-link {
	opacity: 1;
	color: #333;
}
.hero__header .inner-hero > figure figcaption .open-link:hover > h2 > i {
	right: -5px;
}
.hero__header .inner-hero > figure .overlay-bg,
.hero__header .inner-hero > figure .overlay-gradient {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}
.hero__header .inner-hero > figure .overlay-gradient {
	background: rgba(70, 70, 70, .75);

	-webkit-transition: background .6s linear;
	-o-transition: background .6s linear;
	transition: background .6s linear;
}
.hero__header .inner-hero > figure:hover .overlay-gradient {
	background: rgba(67, 206, 162, .35); /* fallback for old browsers */
	background: -webkit-linear-gradient(to left, rgba(67, 206, 162, .35) , rgba(24, 90, 157, .35)); /* Chrome 10-25, Safari 5.1-6 */
	background: linear-gradient(to left, rgba(67, 206, 162, .35) , rgba(24, 90, 157, .35)); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}
.hero__header .inner-hero > figure .overlay-bg {
	background-size: cover;
	background-position: top center;
	z-index: 0;
}


/* ----------------------------------------
 *
 *  Title
 *
 * ---------------------------------------- */
.element__title .inner-element {
	width: 60%;
	margin: auto;
	margin-bottom: 50px;
}
.element__title .element__title--heading {
	font-size: 3em;
	font-weight: bold;
}
.element__title .element__title--subheading {
	color: #acacac;
	font-size: 15px;
	font-weight: 300;
}

/* ----------------------------------------
 *
 *  Features
 *
 * ---------------------------------------- */
.element__iconbox article {
	margin-bottom: 30px;
	text-align: center;
}
.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 article header {
	margin-bottom: 20px;
	padding: 0 2em;
}
.element__iconbox .element__iconbox--icon {
	display: block;
	font-size: 4em;
	color: #dd3858;
	margin-bottom: 20px;
}
.element__iconbox .element__iconbox--title {
	margin: 0;
	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: #dd3858;
}
.element__icon .element__icon--title {
	font-size: 18px;
	margin-top: 0;
}


/* ----------------------------------------
 *
 *  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: #3DCD99;
	border-color: transparent;
}



/* ----------------------------------------
 *
 *  Pricing Table
 *
 * ---------------------------------------- */
.element__pricetable .inner-element {
	position: relative;
	max-width: 400px;
	margin: auto;
	text-align: center;
	border: 3px solid rgba(0, 0, 0, 0.035);
	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: #3DCD99;
	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;
}


/* Numberred list */
.numbered-list{
	counter-reset: item;
	columns: 3;
	padding: 0;
}
.numbered-list li{
	list-style: none;
	margin-bottom: 5px;
	padding-bottom: 5px;
}
.numbered-list li:before {
    content: counter(item);
    counter-increment: item;
    color: #acacac;
    display: inline-block;
    height: 36px;
    line-height: 34px;
    margin-right: 10px;
    width: 36px;
    border: 2px solid #acacac;
    background: #fff;
    text-align: center;
    font-size: 16px;
    font-weight: 800;
    border-radius: 50%;
}

/* ----------------------------------------
 *
 *  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: 1280px) {
	.hero__header .inner-hero > figure .title{
		font-size: 2.5em;
	}
}
@media only screen and (max-width: 768px) {
	.hero__header .inner-hero {
		display: flex;
		flex-direction: column;
		height: 100%;
	}
	.hero__header .inner-hero > figure {
		flex: 1;
	}
	.hero__header .inner-hero > figure figcaption .open-link {
		display: none;
	}
	.hero__header .inner-hero > figure .title {
		font-size: 2em;
	}
	.element__title .inner-element {
		width: 100%;
	}
	#footer .nav-inline {
		text-align: center;
	}
	.numbered-list {
	    columns: 1;
	    padding: 0;
	}
}