@font-face {
	src: url('../fonts/Montserrat-Regular.otf');
	font-weight: 400;
	font-style: normal;
	font-family: 'Montserrat';
}

@font-face {
	src: url('../fonts/Lato-Regular.ttf');
	font-weight: 400;
	font-style: normal;
	font-family: 'Lato';
}

*, *:after, *::before {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

html{
	max-width: 100% !important;
  overflow-x: hidden !important;
}

body {
	font-family: 'Lato','Helvetica', sans-serif;
	font-weight: 400;
	font-size: 14px;
	line-height: 1.5em;
	height: 100%;
	min-height: 100vh;
	width: 100%;
	max-width: 100%;
	margin: 0;
	padding: 0 0 413px;
	color: #2a2a2a;
	position: relative;
	max-width: 100% !important;
  overflow-x: hidden !important;
}

h1, h2, h3, h4, h5, h6 {
	font-family: 'Montserrat', sans-serif;
	font-weight: 400;
	line-height: 1.5em;
}

h1 {
	font-size: 2.5em;
}
h2 {
	font-size: 2.2em;
}
h3 {
	font-size: 1.75em;
}
h4 {
	font-size: 1.25em;
}
h5 {
	font-size: 1.15em;
}
h6 {
	font-size: 1em;
}
p {
	line-height: 2em;
}

.container {
	padding-right: 15px;
	padding-left: 15px;
	margin-right: auto;
	margin-left: auto;
	position: relative;
}
@media (min-width: 768px) {
	.container {
		width: 750px;
	}
}
@media (min-width: 992px) {
	.container {
		width: 970px;
	}
}
@media (min-width: 1200px) {
	.container {
		width: 1170px;
	}
}

a {
	text-decoration: none;
	color: inherit;
	cursor: pointer;
}

a:active, a:focus {
	outline: none;
}

hr {
	color: #FFF;
}

form input, form textarea {
	width: 100%;
	margin: 10px auto;
	padding: 10px;
	background-color: #FFF;
	border-radius: 3px;
	border:1px solid #CCC;
	display: inline-block;
}

form input[type="submit"] {
	width: auto;
	cursor: pointer;
	display: block;
	border: none;
}

form input:focus,
form textarea:focus {
	border-color: #2ecc71;
}

.btn {
	border-radius: 3px;
	background: #f54437;
	color: #FFF;
    vertical-align: middle;
    display: inline-block;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 6px #dc3d31;
   	-webkit-box-shadow: 0 6px #dc3d31;
}

.btn:hover,
.btn:focus {
	top: 2px;
	box-shadow: 0 4px #dc3d31;
	-webkit-box-shadow: 0 4px #dc3d31;
}

.btn:active {
	box-shadow: 0 0 #dc3d31;
	-webkit-box-shadow: 0 0px #dc3d31;
	top: 6px;
}

.btn-med {
	font-size: 1.1em;
	padding: 10px 60px;
}

.btn-big {
	font-size: 1.75em;
	padding: 20px 60px;
}

.btn-radius {
	border-radius: 20px;
	padding: 10px 40px;
}

.text-center {
	text-align: center;
}

.text-red {
	color: #f54437;
}

.table {
	display: table;
	table-layout: fixed;
	width: 100%;
}

.table div {
	display: table-row;
}

.table div span {
	display: table-cell;
	padding: 5px 5px 5px 0;
	text-align: left !important;
}

.table div span:first-child {
	width: 150px;
}

.table div span:nth-child(2) {
	width: 30px;
	text-align: center !important;
}

.clearfix:after, .container:after {
	content: '';
	display: block;
	clear: both;
}

/*Header*/

header {
	top: 0;
	left: 0;
	right: 0;
	z-index: 11;
	-webkit-transform: translateZ(0);
	-webkit-transition: all 300ms ease-in-out;
	-o-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}

header.header-fixed {
	position: fixed;
	color: #FFF;
}

header.header-relative {
	position: relative;
	color: #666;
	border-bottom: 1px solid #d8d8d8;
}

header.header-scroll {
	color: #666;
	background-color: #FFF;
	-webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.5);
	-moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.5);
	box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.5);
}

header .logo {
	max-height: 40px;
	float: left;
	margin: 10px;
}

nav.nav-header {
	float: right;
}

nav.nav-header a {
	margin: 20px 10px;
	display: inline-block;
}

.header-scroll nav.nav-header a {
	color: #666;
}

header.header-relative nav.nav-header a {
	color: #666;
}

nav.nav-header a:before, nav.nav-header a:after {
	display: inline-block;
    opacity: 0;
    -webkit-transition: -webkit-transform 0.3s, opacity 0.2s;
    -moz-transition: -moz-transform 0.3s, opacity 0.2s;
    transition: transform 0.3s, opacity 0.2s;
}

nav.nav-header a::before {
	margin-right: 10px;
    content: '[';
    -webkit-transform: translateX(20px);
    -moz-transform: translateX(20px);
    transform: translateX(20px);
}

nav.nav-header a::after {
	margin-left: 10px;
    content: ']';
    -webkit-transform: translateX(-20px);
    -moz-transform: translateX(-20px);
    transform: translateX(-20px);
}

nav.nav-header a:hover::before,
nav.nav-header a:hover::after,
nav.nav-header a:focus::before,
nav.nav-header a:focus::after {
	opacity: 1;
	-webkit-transform: translateX(0px);
	-moz-transform: translateX(0px);
	transform: translateX(0px);
}

span#side_menu {
	float: right;
	margin: 10px;
	padding: 10px;
	color: #FFF;
	border: 1px solid #CCC;
	display: none;
	cursor: pointer;
}

.header-relative span#side_menu {
	color: #666;
}

.header-scroll span#side_menu {
	color: #666;
}

.nav-responsive {
	background-color: #FFF;
	color: #666;
	-webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
	-moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
	box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
	width: 100%;
	height: 100vh;
	overflow-y:auto;
	max-width: 320px;
	position: fixed;
	top: 0;
	right: -320px;
	-webkit-transition: all 300ms ease-out;
	-o-transition: all 300ms ease-out;
	transition: all 300ms ease-out;
	z-index: 10;
	visibility: hidden;
}

.nav-responsive.show {
	right: 0;
	visibility: visible!important;
}

nav.nav-responsive a {
	display: block;
	padding: 10px 10px 10px 30px;
	text-align: left;
	-webkit-transition: all 300ms ease-out;
	-o-transition: all 300ms ease-out;
	transition: all 300ms ease-out;
}

nav.nav-responsive a:hover,
nav.nav-responsive a:focus,
nav.nav-responsive a:active {
	background-color: #f54437;
	color: #FFF;
}

nav.nav-responsive h6 {
	padding-left: 10px;
	margin: 0;
	line-height: 63px;
	color: #f54437;
}

/*Jumbotron*/

.jumbotron {
	text-align: center;
	margin-bottom: 100px;
	position: relative;
	height: 550px;
}

.jumbotron h2 {
	margin: 0;
	padding: 24px;
	font-weight: 300;
}

.jt-app img {
	display: inline-block;
	margin: 24px 15px;
}

.jt-image {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
	z-index: -1;
}

.jt-image.jt-animate {
	-webkit-animation-name: jumbotronFade;
	-o-animation-name: jumbotronFade;
	animation-name: jumbotronFade;
	-webkit-animation-timing-function: ease-in-out;
	-o-animation-timing-function: ease-in-out;
	animation-timing-function: ease-in-out;
	-webkit-animation-iteration-count: infinite;
	-o-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	-webkit-animation-duration: 12s;
	-o-animation-duration: 12s;
	animation-duration: 12s;
	-webkit-animation-direction: normal;
	-o-animation-direction: normal;
	animation-direction: normal;

}

.jt-image:nth-of-type(1) {
	-webkit-animation-delay: 8s;
	-o-animation-delay: 8s;
	animation-delay: 8s;
}

.jt-image:nth-of-type(2) {
	-webkit-animation-delay: 4s;
	-o-animation-delay: 4s;
	animation-delay: 4s;
}

.jt-image:nth-of-type(3) {
	-webkit-animation-delay: 0s;
	-o-animation-delay: 0s;
	animation-delay: 0s;
}

.jt-image-1 {
	background-image: url('../images/jt_bg1.png');
}

.jt-image-2 {
	background-image: url('../images/jt_bg2.png');
}

.jt-image-3 {
	background-image: url('../images/jt_bg3.png');
}

.jumbotron .info {
	position: absolute;
	top: 50%;
	left: 15%;
	-webkit-transform: translate(-25%,-50%);
	-ms-transform: translate(-25%,-50%);
	-o-transform: translate(-25%,-50%);
	transform: translate(-25%,-50%);
	width: 50%;
	padding: 10px;
	color: #FFF;
}

.jt-phone {
	position: absolute;
	bottom: -80px;
	right: 15%;
	-webkit-transform: translateX(-25%);
	-ms-transform: translateX(-25%);
	-o-transform: translateX(-25%);
	transform: translateX(-25%);
}

.jt-phone img {
	max-height: 500px;
	max-width: 100%;
}

.jt-phone div:nth-of-type(1) {
	animation-delay: 8s;
}

.jt-phone div:nth-of-type(2) {
	animation-delay: 4s;
}

.jt-phone div:nth-of-type(3) {
	animation-delay: 0s;
}

@keyframes jumbotronFade {
  0% {
    opacity:1;
  }
  25% {
    opacity:1;
  }
  33% {
    opacity:0;
  }
  92% {
    opacity:0;
  }
  100% {
    opacity:1;
  }
}

.jt-phone-show {
	position: absolute;
	top: 40px;
	left: 20px;
	right: 18px;
	bottom: 83px;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}

.jt-phone-animate {
	animation-name: jumbotronFade;
	animation-timing-function: ease-in-out;
	animation-iteration-count: infinite;
	animation-duration: 12s;
	animation-direction: normal;
}

.jt-phone-1 {
	background-image: url('../images/jt_phone_show1.png');
}

.jt-phone-2 {
	background-image: url('../images/jt_phone_show2.png');
}

.jt-phone-3 {
	background-image: url('../images/jt_phone_show3.png');
}

/*Main Area*/

@keyframes sideButton {
	0% {
		opacity: 1;
	}
	25% {
		opacity: 0;
	}
	75% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

div.options {
	position: fixed;
	top: 50%;
	left: 0;
	-webkit-transform: translate3d(0,-50%,0);
	-ms-transform: translate3d(0,-50%,0);
	-o-transform: translate3d(0,-50%,0);
	transform: translate3d(0,-50%,0);
	text-align: left;
	z-index: 20;
	width: 0;
	-webkit-transition: all 300ms;
	-o-transition: all 300ms;
	transition: all 300ms;
}

div.options.bot {
	left: -100px;
}

div.options a {
	display: block;
	position: relative;
	left: -150px;
	width: 200px;
	padding: 20px 20px 20px 60px;
	margin: 20px 0;
	font-size: 1.5em;
	color: #FFF;
	z-index: 12;
	-webkit-transition: left 400ms ease-out;
	-o-transition: left 400ms ease-out;
	transition: left 400ms ease-out;
	background: #f04c3e; /* Old browsers */
	background: -moz-linear-gradient(left,  #f04c3e 0%, #e23a2c 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, right top, color-stop(0%,#f04c3e), color-stop(100%,#e23a2c)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(left,  #f04c3e 0%,#e23a2c 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(left,  #f04c3e 0%,#e23a2c 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(left,  #f04c3e 0%,#e23a2c 100%); /* IE10+ */
	background: linear-gradient(to right,  #f04c3e 0%,#e23a2c 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f04c3e', endColorstr='#e23a2c',GradientType=1 ); /* IE6-9 */
}

div.options a span {
	-webkit-transition: opacity 400ms ease-out;
	-o-transition: opacity 400ms ease-out;
	transition: opacity 400ms ease-out;
	opacity: 0;
}

div.options a i {
	position: absolute;
	top: 50%;
	right: 10px;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	font-size: 30px;
	-webkit-transition: all 400ms ease-out;
	-o-transition: all 400ms ease-out;
	transition: all 400ms ease-out;
}

div.options a:hover {
	left: 0;
}

div.options a:hover i {
	-webkit-transform: translate(-470%,-50%);
	-ms-transform: translate(-470%,-50%);
	-o-transform: translate(-470%,-50%);
	transform: translate(-470%,-50%);
	-webkit-animation: sideButton 400ms 1 ease-out;
	-o-animation: sideButton 400ms 1 ease-out;
	animation: sideButton 400ms 1 ease-out;
}

div.options a:hover span {
	opacity: 1;
}

div.options a:after {
	content: '';
	position: absolute;
	top: 6.5px;
	right: -22px;
	width: 48.5px;
	height: 48.5px;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
	background-color: #e23a2c;
	border-radius: 10px;
	z-index: -1;
}

section h2 {
	font-weight: 300;
	display: inline-block;
}

/*About Section*/

section.about > div:first-child img {
	margin: 20px auto;
	display: block;
	width: 100%;
	max-width: 700px;
}

section.about > div:nth-child(2) {
	padding-bottom: 40px;
	position: relative;
	background: #ffffff; /* Old browsers */
	background: -moz-linear-gradient(top,  #ffffff 0%, #ffffff 40%, #ff9c01 40%, #ffb200 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(40%,#ffffff), color-stop(40%,#ff9c01), color-stop(100%,#ffb200)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #ffffff 0%,#ffffff 40%,#ff9c01 40%,#ffb200 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #ffffff 0%,#ffffff 40%,#ff9c01 40%,#ffb200 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #ffffff 0%,#ffffff 40%,#ff9c01 40%,#ffb200 100%); /* IE10+ */
	background: linear-gradient(to bottom,  #ffffff 0%,#ffffff 40%,#ff9c01 40%,#ffb200 100%); /* W3C */ 
	
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ffb200',GradientType=0 ); /* IE6-9 */
}

section.about > div:nth-child(2):after {
	content: '';
    display: block;
    width: 100%;
    position: absolute;
    left: 0;
    bottom: -25px;
    -webkit-transform: skewY(2deg);
    -ms-transform: skewY(2deg);
    transform: skewY(2deg);
    height: 50px;
    background: #e0321a; /*#ffb200*/
    z-index: 10;
}

.video {
	position: relative;
	padding-bottom: 33.75%;
	padding-top: 25px;
	height: 0px;
	width: 60%;
	margin: 20px auto 0;
}

.video iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.user {
	background: url('../images/user_culinary.png') center center no-repeat;
	background-size: cover;
	background-attachment: fixed;
	padding: 50px 0;
}

.user > div {
	display: table;
	table-layout: fixed;
	width: 100%;
}

.user .icons {
	margin: 10px auto;
	padding: 0;
}

.user a {
	padding: 10px;
	display: inline-block;
	font-size: 60px;
	cursor: pointer;
	color: #e9e9e9;
	-webkit-transition: transform 300ms ease-out;
	-o-transition: transform 300ms ease-out;
	transition: transform 300ms ease-out;
}

.user a:hover {
	color: #bdbdbd;
	-webkit-transform: scale(1.5);
	-ms-transform: scale(1.5);
	-o-transform: scale(1.5);
	transform: scale(1.5);
}

.user a.active {
	color: #f44336;
	-webkit-transform: scale(1.5);
	-ms-transform: scale(1.5);
	-o-transform: scale(1.5);
	transform: scale(1.5);
}

.user p {
	font-size: 1.2em;
	line-height: 2em;
	height: 6em;
}

.user span {
	display: table-cell;
	vertical-align: middle;
	padding: 20px 40px;
	position: relative;
}

.user span:first-child {
	width: 60%;
}

.user span:last-child {
	width: 40%;
}

.user img {
	max-width: 100%;
	max-height: 485px;
	height: 100%;
}

.user-display {
	position: absolute;
	top: 49.5%;
	left: 50.2%;
	-webkit-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	-o-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 100% auto;
	height: 357px;
	width: 205px;
	border-radius: 9px;
	background-image: url('../images/screen_user_culinary.png');
}

/*Benefits Section*/

section.benefits > div {
	display: table;
	table-layout: fixed;
	width: 100%;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}

section.benefits > div:nth-child(2) {
	background-image: url('../images/benefits_bg1.png');
}

section.benefits > div:nth-child(4) {
	background-image: url('../images/benefits_bg2.png');
}

section.benefits > div:nth-child(n+2) img {
	margin-top: 20px;
}

section.benefits > div span {
	display: table-cell;
	width: 50%;
	vertical-align: middle;
	padding: 0 10px;
}

section.benefits h2 {
	color: #f54337;
}

section.benefits img {
	max-width: 100%;
	height: 375px;
	display: block;
	margin: 0 auto;
}

section.benefits p {
	font-size: 1.1em;
}

/*Features Section*/

section.features {
	text-align: center;
}

section.features > div {
	padding-bottom: 30px;
	margin-bottom: 5px;
	border-bottom: 1px solid #d8d8d8;
}

section.features > div:first-child img {
	height: 400px;
	display: inline-block;
	margin-top: 40px;
}

section.features > div:last-child {
	border-bottom: none;
}

section.features h2 {
	margin-bottom: 0;
}

section.features h3 {
	margin-top: 0;
	font-weight: 300;
	color: #f54337;
	font-family: 'Lato', sans-serif;
}

section.features > div:nth-child(5) img,
section.features > div:nth-child(6) img {
	max-width: 700px;
	width: 100%;
}

/*App Customize*/

.app-custom > div {
	float: left;
	position: relative;
}

.app-custom > div:first-child {
	width: 40%;
}

.app-custom > div:last-child {
	width: 60%;
}

.app-custom img {
	display: block;
	max-width: 100%;
	max-height: 100%;
	margin: 0 auto;
}

.app-custom .view {
	position: absolute;
	top: 48.6%;
	left: 50.2%;
	-webkit-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	-o-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
	width: 254px;
	height: 451px;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 100% auto;
	background-color: white;
	background-image: url('../images/screen_home.jpg');
}

.app-icons {
	width: 100%;
	margin-bottom: 20px;
	text-align: left;
}

.app-icons > .app-icon {
	display: inline-block;
	margin-right: 40px;
	margin-bottom: 20px;
	text-align: center;
}

.app-icon span {
	cursor: pointer;
	margin: 0;
	-webkit-transition: transform 300ms;
	-o-transition: transform 300ms;
	transition: transform 300ms;
}

.app-icon:hover span {
	-webkit-transform: scale(1.1);
	-ms-transform: scale(1.1);
	-o-transform: scale(1.1);
	transform: scale(1.1);
}

.app-icon h6 {
	margin: 5px 0;
	display: block;
}

.app-custom h4,
.app-custom p {
	text-align: left;
}

/*Store Icon*/

.store-icon {
	display: inline-block;
	margin: 10px;
	height: 60px;
	width: 60px;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 50px auto;
}

.store-android {
	background-image: url('../images/ft_icon_android.png');
}

.store-android.active {
	background-image: url('../images/ft_icon_android_active.png');
}

.store-ios {
	background-image: url('../images/ft_icon_ios.png');
}

.store-ios.active {
	background-image: url('../images/ft_icon_ios_active.png');
}

.store-windows {
	background-image: url('../images/ft_icon_windows.png');
}

.store-windows.active {
	background-image: url('../images/ft_icon_windows_active.png');
}

/*Facilities*/

.facilities {
	display: block;
}

.facilities span {
	width: 33.3%;
	float: left;
	padding: 20px;
	text-align: center;
}

.facilities span:nth-child(3n+1) {
	clear: both;
}

/*Create Section*/

section.create {
	display: block;
	text-align: center;
	clear: both;
	background: rgba(238,238,238,1);
	background: -moz-linear-gradient(top, rgba(238,238,238,1) 0%, rgba(252,252,252,1) 100%);
	background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(238,238,238,1)), color-stop(100%, rgba(252,252,252,1)));
	background: -webkit-linear-gradient(top, rgba(238,238,238,1) 0%, rgba(252,252,252,1) 100%);
	background: -o-linear-gradient(top, rgba(238,238,238,1) 0%, rgba(252,252,252,1) 100%);
	background: -ms-linear-gradient(top, rgba(238,238,238,1) 0%, rgba(252,252,252,1) 100%);
	background: linear-gradient(to bottom, rgba(238,238,238,1) 0%, rgba(252,252,252,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eeeeee', endColorstr='#fcfcfc', GradientType=0 );
	position: relative;
	padding-bottom: 40px;
	padding-top: 20px;
}

section.create:after {
	content: '';
    display: block;
    width: 100%;
    position: absolute;
    left: 0;
    top: -25px;
    -webkit-transform: skewY(2deg);
    -ms-transform: skewY(2deg);
    transform: skewY(2deg);
    height: 50px;
    background: #EEE;
    z-index: 10;
}

section.create p {
	font-size: 1.75em;
}

.move-object {
	display: table;
	width: 100%;
}

.move-object span {
	display: table-cell;
	vertical-align: bottom;
	padding: 20px 0 40px;
	-webkit-transition: transform 600ms ease-in-out;
	-o-transition: transform 600ms ease-in-out;
	transition: transform 600ms ease-in-out;
}

.move-object img {
	width: 100%;
}

.move-object span:nth-child(4n+1) {
	z-index: 1;
}

.move-object span:nth-child(2n+2) {
	z-index: 0;
}

.move-object span:nth-child(3) {
	z-index: 3;
}

.move-object span:first-child.move {
	-webkit-transform: translateX(300px);
	-ms-transform: translateX(300px);
	-o-transform: translateX(300px);
	transform: translateX(300px);
}

.move-object span:last-child.move {
	-webkit-transform: translateX(-300px);
	-ms-transform: translateX(-300px);
	-o-transform: translateX(-300px);
	transform: translateX(-300px);
}

.move-object span:nth-child(2).move {
	-webkit-transform: translateX(150px);
	-ms-transform: translateX(150px);
	-o-transform: translateX(150px);
	transform: translateX(150px);
}

.move-object span:nth-child(4).move {
	-webkit-transform: translateX(-150px);
	-ms-transform: translateX(-150px);
	-o-transform: translateX(-150px);
	transform: translateX(-150px);
}

/*Extra Area*/

.extra {
	background: url('../images/bg_extra.png') center center no-repeat;
	background-size: cover;
	padding: 40px 0;
	text-align: center;
}

.extra h2 {
	color: #f54337;
	margin: 0;
	text-align: center;
}

.extra .logo {
	margin: 80px auto;
	display: block;
	width: 100%;
	max-width: 400px;
}

.extra .price {
	margin: 40px auto;
	display: block;
	width: 100%;
	max-width: 800px;
}

.extra-2 {
	text-align: center;
	padding-bottom: 30px;
	background-color: #CCC;
}

.extra-2 h2 {
	color: #f54337;
	display: inline-block;
}

.extra-2 a {

}

.long {
	padding-top: 20px;
	padding-bottom: 20px;
}

.long h2 {
	font-weight: 300;
	color: #f54337;
	border-bottom: 1px solid #d8d8d8;
	margin: 0;
}

.long img {
	margin: 20px auto;
	display: block;
	max-width: 100%;
}

.box-client {
	float: left;
	width: 20%;
	margin: 0;
	padding: 20px;
	position: relative;
	cursor: pointer;
	-webkit-transition: transform 300ms ease-out;
	-o-transition: transform 300ms ease-out;
	transition: transform 300ms ease-out;
}

.box-client:hover {
	-webkit-transform: scale(1.2,1.2);
	-ms-transform: scale(1.2,1.2);
	-o-transform: scale(1.2,1.2);
	transform: scale(1.2,1.2);
}

.box-client:nth-of-type(5n+1) {
	clear: both;
}

.modal {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0,0,0,0.5);
	display: none;
	z-index: 13;
}

.modal.show {
	display: block;
}

.modal .video {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	-o-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
	background-color: #FFF;
}

.box-client img {
	margin: 0;
	max-width: 100%;
	max-height: 100%;
}

.box {
	background-color: #f3f3f3;
	border-radius: 5px;
	font-family: 'Montserrat', sans-serif;
	margin: 40px auto 0;
	width: 95%;
	max-width: 700px;
	border: 1px solid #d8d8d8;
}

.box.half {
	display: inline-block;
	width: 350px;
	margin: 40px 20px 0;
}

.box.half span {
	width: 100%;
	float: none;
}

.box .head {
	padding: 15px;
	border-bottom: 1px solid #d8d8d8;
	font-size: 1.5em;
	line-height: 1.5em;
}

.box .body {
	padding: 15px;
}

.box p {
	margin-bottom: 0;
}

.box span {
	float: left;
	width: 50%;
}

.box img {
	display: block;
	margin: 20px auto;
	min-height: 268px;
	max-width: 100%;
}

.price-box {
	display: inline-block;
	margin: 20px 30px 20px;
	border-radius: 5px;
	background-color: #FFF;
	-webkit-box-shadow: 0px 2px 10px 0px rgba(0,0,0,0.2);
	box-shadow: 0px 2px 10px 0px rgba(0,0,0,0.2);
	width: 250px;
}

.price-box div,
.price-box a {
	padding: 10px;
}

.price-box div:first-child,
.price-box a {
	background-color: #f54437;
	width: 100%;
	color: #FFF;
}

.price-box div:first-child {
	display: table;
	border-radius: 5px 5px 0 0;
}

.price-box div:first-child span {
	display: table-cell;
	vertical-align: middle;
}

.price-box div:first-child span:nth-child(2) {
	font-size: 1.75em;
}

.price-box p {
	margin: 0;
	padding: 5px;
}

.price-box a {
	display: block;
	border-radius: 5px;
	margin-bottom: 6px;
}

.blog .title,
.blog .date {
	margin-top: 0;
	margin-bottom: 15px;
}

.blog .date span,
.blog .more {
	color: #f54437;
}

.blog .back {
	display: block;
	padding: 10px 0;
}

.blog-post {
	padding: 20px 0;
	border-bottom: 1px solid #d8d8d8;
}

.blog-post:last-of-type {
	border-bottom: none;
}

.blog-post:after {
	content: '';
	display: block;
	clear: both;
}

.blog-post > div {
	float: left;
	width: 50%;
}

.blog-post > div:first-child {
	text-align: center;
}

.blog-post > div:last-child {
	padding-left: 20px;
}

.blog-post img {
	margin: 0 auto;
	max-width: 100%;
	max-height: 300px;
	object-fit:cover;
}

.pagination {
	padding: 15px 0;
	text-align: center;
}

.pagination ul {
	display: inline-block;
	list-style: none;
}

.pagination ul li {
	display: inline-block;
	padding: 5px;
	color: #f54437;
}

.pagination .inactive {
	color: #2a2a2a;
}

/*Footer*/

footer {
	color: #666;
	background-color: #EEE;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding-top: 5px;
	text-align: center;
}

.block-footer {
	width: 25%;
	float: left;
	padding: 10px;
	display: table;
	table-layout: fixed;
	text-align: left;
}

.block-footer > div {
	display: table-row;
}

.block-footer > div > span {
	display: table-cell;
	padding: 10px;
	vertical-align: middle;
}

.block-footer > div > span:first-child {
	width: 50px;
	text-align: center;
}

.block-footer h4 {
	margin: 0;
	font-family: 'Lato','Helvetica',sans-serif;
}

.block-footer i {
	font-size: 20px;
	line-height: 1.5em;
}

.block-footer a:hover {
	text-decoration: underline;
}

footer hr {
	padding: 10px;
	width: 90%;
}

.copyright {
	clear: both;
	margin: 0 auto;
	height: 80px;
	position: relative;
	width: 90%;
	border-top: 1px solid #d8d8d8;
	text-align: center;
}

.copyright span,
.copyright a {
	position: absolute;
	top: 50%;
}

.copyright span {
	left: 50%;
	-webkit-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	-o-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
}

.copyright a {
	right: 0;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
}

.copyright img {
	width: 100%;
	max-width: 200px;
	display: inline-block;
}

/*Popup*/

.popup {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 4rem 0;
	background-color: rgba(0,0,0,.5);
	z-index: 20;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: opacity .3s ease-out;
	-o-transition: opacity .3s ease-out;
	transition: opacity .3s ease-out;
}

.popup--open {
	opacity: 1;
	visibility: visible;
}

.popup__area {
	max-width: 50rem;
	margin: 0 auto;
	padding: 1rem;
	border-radius: 8px;
	background-color: #deebec;
}

.popup__area--fluid {
	padding: 0;
}
/* Large Devices, Wide Screens */
@media only screen and (max-width : 1200px) {

}

/* Medium Devices, Desktops */
@media only screen and (max-width : 992px) {
	body {
		padding-bottom: 0;
		min-height: auto;
	}
	footer {
		position: relative;
	}
	.block-footer {
		width: 50%;
	}
	.block-footer:last-of-type {
		display: none;
	}
	.box-client {
		width: 25%;
	}
	.box-client:nth-of-type(5n+1) {
		clear: none;
	}
	.box-client:nth-of-type(4n+1) {
		clear: both;
	}
	.options {
		display: none;
	}
	.app-custom > div:first-child {
		display: none;
	}
	.app-custom > div:last-child {
		width: 100%;
	}
	.app-icons {
		text-align: center;
	}
	section.features > div:first-child div img {
		height: 300px;
	}
	.jumbotron .info {
		left: 50%;
		-webkit-transform: translate(-50%,-50%);
		-ms-transform: translate(-50%,-50%);
		-o-transform: translate(-50%,-50%);
		transform: translate(-50%,-50%);
		width: 90%;
	}
	.jt-phone,
	.jt-app {
		display: none;
	}
	.jumbotron {
		margin-bottom: 0;
		height: 50vh;
	}
	section.features h3 {
		margin-top: 24px;
	}
	.user ul {
		padding-left: 0;
	}
	.copyright {
		height: auto;
	}
	.copyright span,
	.copyright a {
		position: relative;
		left: auto;
		right: auto;
		display: block;
		-webkit-transform: none;
		-ms-transform: none;
		-o-transform: none;
		transform: none;
		padding: 10px;
	}
}

/* Small Devices, Tablets */
@media only screen and (max-width : 768px) {
	nav.nav-header {
		display: none;
	}
	span#side_menu {
		display: inline-block;
	}
	section.benefits > div span {
		display: block;
		width: 100%;
		text-align: center;
	}
	section.benefits > div:nth-child(odd) span:last-child,
	section.benefits > div:nth-child(even) span:first-child {
		display: none;
	}
	section.benefits > div:last-child {
		margin-bottom: 50px;
	}
	section.features > div:first-child div img {
		height: 250px;
	}
	.box-client {
		width: 33.3%;
	}
	.box-client:nth-of-type(4n+1) {
		clear: none;
	}
	.box-client:nth-of-type(3n+1) {
		clear: both;
	}
	.move-object span.move {
		-webkit-transform: none !important;
		-ms-transform: none !important;
		-o-transform: none !important;
		transform: none !important;
	}
	.facilities span {
		width: 50%;
	}
	.facilities span:nth-child(3n+1) {
		clear: none;
	}
	.facilities span:nth-child(2n+1) {
		clear: both;
	}
	.user span {
		display: block;
		padding: 20px 40px;
	}
	.user span:first-child,
	.user span:last-child {
		width: 100%;
	}
	.user p {
		height: auto;
	}
	.blog-post > div {
		float: none;
		width: 100%;
	}
	.blog-post > div:last-child {
		padding-left: 0;
	}
}

/* Extra Small Devices, Phones */ 
@media only screen and (max-width : 480px) {
	body {
		font-size: 13px;
	}
	h1 {
		font-size: 2.2em;
	}
	h2 {
		font-size: 1.8em;
	}
	h3 {
		font-size: 1.6em;
	}
	.box-client {
		width: 50%;
	}
	.box-client:nth-of-type(3n+1) {
		clear: none;
	}
	.box-client:nth-of-type(2n+1) {
		clear: both;
	}
	.block-footer {
		width: 100%;
	}
	.facilities span {
		width: 100%;
		display: block;
		float: none;
	}
	section.features > div:first-child div img {
		height: 150px;
	}
	.box.half {
		width: 90%;
	}
	.box.half img {
		display: none;
	}
}

/* Custom, iPhone Retina */ 
@media only screen and (max-width : 320px) {
    .price-box {
    	margin: 20px 10px;
    }
}