/* Appit CSS - Table of Contents
================================
	#Base
	#Sidebar Menu
	#Header
	#Buttons
	#Forms
	#Modal
	#Pricing
	#Image App
	#Utilities
	#Pages
	#Demo
*/
/* Base
===================       
	scss/_base.scss
*/
/* line 9, ../scss/_base.scss */
body {
  color: #212121;
  /* body text */
  background-color: #eeeeee;
  /* background color */
  font-family: "Open Sans", sans-serif;
}

/* line 15, ../scss/_base.scss */
* {
  margin: 0;
  padding: 0;
  font-family: "Open Sans", sans-serif;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* line 23, ../scss/_base.scss */
html, body {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
}

/* line 29, ../scss/_base.scss */
body {
  font-size: 100%;
  -webkit-font-smoothing: antialiased;
  line-height: 1.45;
  font-size: 16px;
}

/* line 35, ../scss/_base.scss */
body.overflow-y {
  overflow-y: hidden;
}

/* Typography */
/* line 40, ../scss/_base.scss */
h1, h2 {
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  line-height: 1.6;
  margin: 12px 0;
}

/* line 46, ../scss/_base.scss */
h3, h4, h5, h6 {
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin: 8px 0;
}

/* line 53, ../scss/_base.scss */
h1 {
  font-size: 36px;
}
@media only screen and (max-width: 768px) {
  /* line 53, ../scss/_base.scss */
  h1 {
    font-size: 26px;
  }
}

/* line 59, ../scss/_base.scss */
h2 {
  font-size: 24px;
}
@media only screen and (max-width: 768px) {
  /* line 59, ../scss/_base.scss */
  h2 {
    font-size: 22px;
  }
}

/* line 65, ../scss/_base.scss */
h3 {
  font-size: 21px;
}

/* line 68, ../scss/_base.scss */
h4 {
  font-size: 18px;
}

/* line 71, ../scss/_base.scss */
h5 {
  font-size: 16px;
}

/* line 74, ../scss/_base.scss */
h6 {
  font-size: 14px;
}

/* line 78, ../scss/_base.scss */
p {
  margin-top: 0;
  margin-bottom: 10px;
}

/* line 83, ../scss/_base.scss */
.text-12 {
  font-size: 12px;
}

/* line 86, ../scss/_base.scss */
.text-14 {
  font-size: 14px;
}

/* line 89, ../scss/_base.scss */
.text-16 {
  font-size: 16px;
}

/* line 92, ../scss/_base.scss */
.text-18 {
  font-size: 18px;
}

/* line 95, ../scss/_base.scss */
.text-20 {
  font-size: 20px;
}

/* line 98, ../scss/_base.scss */
.text-22 {
  font-size: 22px;
}

/* line 101, ../scss/_base.scss */
.text-24 {
  font-size: 24px;
}

/* line 104, ../scss/_base.scss */
.text-26 {
  font-size: 26px;
}

/* line 107, ../scss/_base.scss */
.text-28 {
  font-size: 28px;
}

/* line 110, ../scss/_base.scss */
.text-30 {
  font-size: 30px;
}

/* line 113, ../scss/_base.scss */
.drop-cap:first-child:first-letter {
  float: left;
  font-size: 75px;
  padding-top: 4px;
  padding-right: 8px;
  padding-left: 3px;
  font-family: Georgia;
}

/* line 122, ../scss/_base.scss */
a, a:hover, a:focus {
  text-decoration: none;
  outline: none;
}

/* line 126, ../scss/_base.scss */
a {
  color: #2196F3;
  /* link color */
}
/* line 129, ../scss/_base.scss */
a:hover {
  color: #1976D2;
  /* link hover */
}

/* line 133, ../scss/_base.scss */
code {
  color: #F44336;
  /* code color */
}

/* line 136, ../scss/_base.scss */
blockquote {
  padding: 10px;
  margin: 0;
  border-left: 3px solid #2196F3;
  /* blockquote left border */
  background: #E3E3E3;
}

/* line 142, ../scss/_base.scss */
hr {
  border: 0;
  height: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

/* line 149, ../scss/_base.scss */
dl {
  margin-top: 0px;
}

/* line 152, ../scss/_base.scss */
dt {
  font-weight: 700;
}

/* line 156, ../scss/_base.scss */
video, img, object, embed, iframe {
  max-width: 100%;
}

/* line 159, ../scss/_base.scss */
iframe {
  border: 0;
}

/* Menu Sidebar
===========================    
	scss/_menu-sidebar.scss
*/
/* line 6, ../scss/_menu-sidebar.scss */
.menu-sidebar {
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 255px;
  box-sizing: border-box;
  z-index: 1000;
  -webkit-transition: 0.4s ease-in;
  transition: 0.4s ease-in;
  -webkit-transform: translateX(-300px);
  transform: translateX(-300px);
  color: #ffffff;
  /* Sidebar menu text */
  background: linear-gradient(rgba(0, 0, 128, 0.95), rgba(0, 0, 128, 0.95)), url() no-repeat fixed center;
  /* Sidebar menu background */
  box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.1);
}

/* line 25, ../scss/_menu-sidebar.scss */
.menu-sidebar.side-menu-shown {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

/* line 29, ../scss/_menu-sidebar.scss */
.menu-sidebar-content {
  overflow: auto;
  max-height: 100%;
  margin-top: 30px;
  padding: 30px;
  box-sizing: border-box;
}

/* line 36, ../scss/_menu-sidebar.scss */
.menu-sidebar-content i {
  margin-right: 5px;
}

/* line 39, ../scss/_menu-sidebar.scss */
.menu-sidebar ul li {
  display: inline-block;
  font-weight: normal;
  margin: 0 60px auto auto;
  line-height: 2;
  padding: 8px 0;
  -webkit-user-select: none;
  user-select: none;
  box-sizing: border-box;
  overflow: hidden;
  font-size: 18px;
}

/* line 51, ../scss/_menu-sidebar.scss */
.menu-sidebar ul li a {
  text-decoration: none;
  color: #ffffff;
  /* Sidebar menu link color */
  max-width: 150px;
  float: left;
}

/* line 57, ../scss/_menu-sidebar.scss */
.menu-sidebar li i {
  cursor: pointer;
}

/* line 60, ../scss/_menu-sidebar.scss */
.menu-sidebar ul li a:hover,
.menu-sidebar ul li a:active {
  color: #2196F3;
  /* Sidebar menu link hover */
}

/* line 64, ../scss/_menu-sidebar.scss */
.sidebar-close {
  color: #ffffff;
  /* Sidebar menu close icon */
  position: absolute;
  right: 20px;
  top: 20px;
  display: none;
  text-align: center;
  cursor: pointer;
}

/* line 73, ../scss/_menu-sidebar.scss */
.side-menu-shown .sidebar-close {
  display: block;
}

/* line 77, ../scss/_menu-sidebar.scss */
.menu-toggle {
  cursor: pointer;
}

/* Header
=====================     
	scss/_header.scss
*/
/* line 6, ../scss/_header.scss */
#header {
  position: fixed;
  top: 0;
  z-index: 999;
  margin: 0;
  padding: 0;
  width: 100%;
  *zoom: 1;
}
/* line 14, ../scss/_header.scss */
#header .header-container {
  height: 60px;
  max-width: 1024px;
  margin: 0px auto;
  padding: 10px;
  vertical-align: middle;
}
/* line 21, ../scss/_header.scss */
#header .header-container #header-menu {
  float: left;
}
/* line 24, ../scss/_header.scss */
#header .header-container #header-menu #logo a {
  color: #fff;
}
/* line 27, ../scss/_header.scss */
#header .header-container #header-menu #logo a img {
  max-height: 30px;
}
/* line 33, ../scss/_header.scss */
#header .header-container #header-info {
  float: right;
  padding: 5px;
}
/* line 37, ../scss/_header.scss */
#header .header-container #header-info #header-links {
  cursor: pointer;
}
/* line 40, ../scss/_header.scss */
#header .header-container #header-info #header-links a {
  padding: 20px;
  color: #ffffff;
  /* nav link color */
}
/* line 44, ../scss/_header.scss */
#header .header-container #header-info #header-links a:focus, #header .header-container #header-info #header-links a:hover {
  color: #dddddd;
  /* nav link hover */
}
/* line 47, ../scss/_header.scss */
#header .header-container #header-info #header-links a.button {
  padding: 10px;
}
/* line 53, ../scss/_header.scss */
#header .header-container #header-info span {
  color: #ffffff;
  /* Hamburger menu color */
}
/* line 61, ../scss/_header.scss */
#header:before, #header:after {
  content: ' ';
  display: table;
}
/* line 66, ../scss/_header.scss */
#header:after {
  clear: both;
}

/* line 71, ../scss/_header.scss */
.header-bg {
  background: #2196F3;
  /* header background */
}

/* Buttons
======================  
	scss/_buttons.scss
*/
/* line 6, ../scss/_buttons.scss */
button, .button {
  border: none;
  border-radius: .25em;
  box-shadow: none;
  text-align: center;
  cursor: pointer;
  background-color: #2196F3;
  /* button background */
  color: #ffffff;
  /* button color */
  background-image: none;
}
/* line 16, ../scss/_buttons.scss */
button.btn-large, .button.btn-large {
  padding: 0.7em 2.3em;
  font-size: 1.2em;
}
/* line 20, ../scss/_buttons.scss */
button.btn-small, .button.btn-small {
  padding: 0.5em 2.1em;
  font-size: 0.8em;
}
/* line 24, ../scss/_buttons.scss */
button.btn-icon, .button.btn-icon {
  padding: 0.5em 0.8em;
}
/* line 28, ../scss/_buttons.scss */
button.btn-round, .button.btn-round {
  width: 50px;
  height: 50px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
/* line 35, ../scss/_buttons.scss */
button.btn-round-small, .button.btn-round-small {
  width: 30px;
  height: 30px;
  padding-bottom: 2px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
/* line 44, ../scss/_buttons.scss */
button.btn-success, .button.btn-success {
  background: #4CAF50;
  /* success button */
}
/* line 47, ../scss/_buttons.scss */
button.btn-success:hover, .button.btn-success:hover {
  background: #388E3C;
  /* success button hover */
}
/* line 51, ../scss/_buttons.scss */
button.btn-warning, .button.btn-warning {
  background: #FF9800;
  /* warning button */
}
/* line 54, ../scss/_buttons.scss */
button.btn-warning:hover, .button.btn-warning:hover {
  background: #F57C00;
  /* warning button hover */
}
/* line 58, ../scss/_buttons.scss */
button.btn-alert, .button.btn-alert {
  background: #F44336;
  /* alert button */
}
/* line 61, ../scss/_buttons.scss */
button.btn-alert:hover, .button.btn-alert:hover {
  background: #D32F2F;
  /* alert button hover */
}

/* line 67, ../scss/_buttons.scss */
.btn, .btn:link, .btn:visited {
  border: none;
  box-shadow: none;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  margin: 10px 0;
  padding: .6em 2.2em;
  font-size: 1.2em;
  text-align: center;
  line-height: 1.4;
  cursor: pointer;
  background-color: #2196F3;
  /* button background */
  color: #ffffff;
  background-image: none;
}
/* line 82, ../scss/_buttons.scss */
.btn:focus, .btn:hover, .btn:link:focus, .btn:link:hover, .btn:visited:focus, .btn:visited:hover {
  outline: none;
  box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.1);
  background-color: #1976D2;
  /* button background on hover */
}

/* line 89, ../scss/_buttons.scss */
.btn-transparent {
  border: 1px solid #2196F3;
  /* button border - transparent */
  background-color: transparent;
  /* button background - transparent */
  color: #2196F3;
  /* button color - transparent */
}
/* line 94, ../scss/_buttons.scss */
.btn-transparent:focus, .btn-transparent:hover {
  outline: none;
  background-color: #2196F3;
  /* button background - transparent on hover */
  color: #ffffff;
  /* button color - transparent on hover */
}

/* Forms
======================  
	scss/_forms.scss
*/
/* line 6, ../scss/_forms.scss */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="search"],
textarea,
select {
  padding: 0.6em;
  font-size: 1.2em;
  letter-spacing: 1px;
  display: inline-block;
  margin: 1em 0;
  border-radius: .25em;
  transition: all .2s;
  border: 1px solid #2196F3;
  /* form element border */
  color: #212121;
  /* form element color */
  background: transparent;
  box-shadow: inset 1px 1px rgba(0, 0, 0, 0.03);
}

/* line 25, ../scss/_forms.scss */
select:focus {
  padding: .6em .995em;
  border-color: #1976D2;
  /* form border on focus */
}

/* line 30, ../scss/_forms.scss */
input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
textarea:focus {
  outline: none;
  border-color: #1976D2;
  box-shadow: 0 0 6px rgba(95, 142, 228, 0.2);
}

/* line 40, ../scss/_forms.scss */
input[type="file"],
input[type="radio"],
input[type="checkbox"] {
  margin: 0.5em 0;
}

/* line 46, ../scss/_forms.scss */
input[type="file"]:focus,
input[type="radio"]:focus,
input[type="checkbox"]:focus {
  outline: none;
  color: #212121;
  background: transparent;
}

/* line 55, ../scss/_forms.scss */
#subscribe {
  padding: 0;
}
/* line 62, ../scss/_forms.scss */
#subscribe .button {
  margin: 20px 0;
}
@media only screen and (min-width: 481px) and (max-width: 768px) {
  /* line 67, ../scss/_forms.scss */
  #subscribe .button {
    max-width: 360px;
  }
}

/* line 73, ../scss/_forms.scss */
.thank-you {
  margin: 40px auto;
}
@media only screen and (min-width: 769px) {
  /* line 73, ../scss/_forms.scss */
  .thank-you {
    margin-top: 80px;
    margin-bottom: 30px;
  }
}
/* line 81, ../scss/_forms.scss */
.thank-you h2 {
  padding: 20px;
  padding-top: 50px;
}
/* line 85, ../scss/_forms.scss */
.thank-you p {
  margin-top: 25px;
  font-size: 20px;
}
/* line 89, ../scss/_forms.scss */
.thank-you a {
  display: block;
  margin: 50px auto;
}

/* line 96, ../scss/_forms.scss */
.section-form {
  color: #ffffff;
  /* form color */
}
/* line 99, ../scss/_forms.scss */
.section-form i, .section-form .social-icons i {
  color: #ffffff;
}
/* line 104, ../scss/_forms.scss */
.section-form button, .section-form .button {
  color: #ffffff;
  border: 1px solid #ffffff;
}
/* line 108, ../scss/_forms.scss */
.section-form button:focus, .section-form button:hover, .section-form .button:focus, .section-form .button:hover {
  outline: none;
  border: 1px solid #ffffff;
}
/* line 113, ../scss/_forms.scss */
.section-form .button {
  margin: 3px;
}
/* line 116, ../scss/_forms.scss */
.section-form label {
  color: #ffffff;
}
/* line 119, ../scss/_forms.scss */
.section-form input, .section-form textarea {
  color: #ffffff;
  border: 1px solid #ffffff;
}

/* Modal
======================  
	scss/_modal.scss
*/
/* line 6, ../scss/_modal.scss */
.modal-section {
  background-color: #eeeeee;
  /* modal background */
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  -webkit-filter: opacity(0%);
  filter: opacity(0%);
  visibility: hidden;
  -webkit-transition: opacity 0.3s 0s, visibility 0s 0.3s;
  -moz-transition: opacity 0.3s 0s, visibility 0s 0.3s;
  transition: opacity 0.3s 0s, visibility 0s 0.3s;
  z-index: 10;
}
/* line 21, ../scss/_modal.scss */
.modal-section.is-visible {
  -webkit-filter: opacity(100%);
  filter: opacity(100%);
  visibility: visible;
  -webkit-transition: opacity 0.3s 0s, visibility 0s 0s;
  -moz-transition: opacity 0.3s 0s, visibility 0s 0s;
  transition: opacity 0.3s 0s, visibility 0s 0s;
  overflow-y: scroll;
}

/* Modal Details */
/* line 33, ../scss/_modal.scss */
.modal-section_header {
  height: 60px;
  top: 0;
  width: 100%;
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
  background: #ffffff;
  /* modal header */
  padding: 15px;
}
/* line 43, ../scss/_modal.scss */
.modal-section_header.header_transparent {
  background: transparent;
}
/* line 47, ../scss/_modal.scss */
.modal-section_header .modal-title {
  color: #000000;
  /* modal title */
  font-size: 20px;
  font-weight: 700;
}

/* line 54, ../scss/_modal.scss */
.modal-section_body {
  position: fixed;
  top: 50px;
  right: 0;
  bottom: 50px;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -100;
  background-size: cover;
  padding: 10px;
}
/* line 67, ../scss/_modal.scss */
.modal-section_body.modal_noheader {
  top: 0px;
}
/* line 70, ../scss/_modal.scss */
.modal-section_body.modal_nofooter {
  bottom: 0px;
}

/* line 75, ../scss/_modal.scss */
.modal-section_footer {
  height: 50px;
  position: absolute;
  bottom: 0;
  width: 100%;
  background: #ffffff;
  /* modal footer */
  padding: 10px;
}

/* line 84, ../scss/_modal.scss */
.modal-close {
  color: #F44336;
  /* modal close */
  font-size: 20px;
  cursor: pointer;
  font-weight: 700;
}

/* Pricing
======================  
	scss/_pricing.scss
*/
/* line 6, ../scss/_pricing.scss */
#pricing {
  margin: 0 auto;
  padding: 0;
}

/* line 11, ../scss/_pricing.scss */
.pricing-tables {
  margin: 0 auto;
  max-width: 1024px;
}
@media only screen and (max-width: 480px) {
  /* line 11, ../scss/_pricing.scss */
  .pricing-tables {
    padding-top: 20px;
  }
}
/* line 19, ../scss/_pricing.scss */
.pricing-tables .pricing-table {
  margin: 0 auto;
  padding: 0;
  max-width: 430px;
}
/* line 25, ../scss/_pricing.scss */
.pricing-tables .pricing-table.pricing-basic .pricing-table-header {
  text-align: center;
  background: #2196F3;
  /* pricing basic background */
}
/* line 31, ../scss/_pricing.scss */
.pricing-tables .pricing-table.pricing-standard .pricing-table-header {
  text-align: center;
  background: #4CAF50;
  /* pricing standard background */
}
/* line 37, ../scss/_pricing.scss */
.pricing-tables .pricing-table.pricing-premium .pricing-table-header {
  text-align: center;
  background: #2196F3;
  /* pricing premium background */
}
/* line 43, ../scss/_pricing.scss */
.pricing-tables .pricing-table .pricing-table-header {
  color: #ffffff;
  /* pricing table header color; */
}
/* line 46, ../scss/_pricing.scss */
.pricing-tables .pricing-table .pricing-table-header h2 {
  margin: 0;
  padding-top: 2em;
  font-size: 1em;
  font-weight: normal;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 600;
}
/* line 56, ../scss/_pricing.scss */
.pricing-tables .pricing-table .pricing-table-header .pricing-table-price {
  font-size: 3em;
  margin: 0.2em 0 0;
  font-weight: 100;
}
/* line 61, ../scss/_pricing.scss */
.pricing-tables .pricing-table .pricing-table-header .pricing-table-price span {
  display: block;
  text-transform: uppercase;
  font-size: 13px;
  padding-bottom: 2em;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  *color: #fff;
}
/* line 73, ../scss/_pricing.scss */
.pricing-tables .pricing-table .pricing-table-list {
  list-style-type: none;
}
/* line 76, ../scss/_pricing.scss */
.pricing-tables .pricing-table .pricing-table-list li {
  padding: 10px;
  padding-left: 40px;
  background: #ffffff;
  /* pricing list background */
}
/* line 81, ../scss/_pricing.scss */
.pricing-tables .pricing-table .pricing-table-list li:first-child {
  padding-top: 20px;
}
/* line 84, ../scss/_pricing.scss */
.pricing-tables .pricing-table .pricing-table-list li span {
  font-weight: 700;
}
/* line 87, ../scss/_pricing.scss */
.pricing-tables .pricing-table .pricing-table-list li i {
  margin-right: 5px;
}
/* line 93, ../scss/_pricing.scss */
.pricing-tables .pricing-table .btn {
  margin-top: 0;
  margin-bottom: 30px;
  font-weight: bold;
  position: relative;
  bottom: -40px;
  transition: transform 1.0s ease;
  transform: translateY(-30px);
  -webkit-transform: translateY(-30px);
}

/* line 106, ../scss/_pricing.scss */
.pricing-hover {
  -webkit-filter: saturate(1.6);
  filter: saturate(1.6);
}

/* Image App
======================  
	scss/_image-app.scss
*/
/* line 6, ../scss/_image-app.scss */
.app-image {
  width: 100%;
  overflow: hidden;
  margin: 0 auto;
  padding: 0;
}
/* line 13, ../scss/_image-app.scss */
.app-image.app-download {
  text-align: center;
}
@media only screen and (max-width: 480px) {
  /* line 17, ../scss/_image-app.scss */
  .app-image.app-download .button {
    display: block;
    margin: 20px auto;
    max-width: 275px;
  }
}
@media only screen and (min-width: 481px) and (max-width: 768px) {
  /* line 24, ../scss/_image-app.scss */
  .app-image.app-download .button {
    display: block;
    margin: 30px auto;
    max-width: 360px;
  }
}
@media only screen and (min-width: 769px) {
  /* line 31, ../scss/_image-app.scss */
  .app-image.app-download .download-app {
    padding: 40px;
  }
  /* line 34, ../scss/_image-app.scss */
  .app-image.app-download .download-app .button {
    margin: 20px;
  }
}
/* line 41, ../scss/_image-app.scss */
.app-image h2 {
  color: #ffffff;
  padding: 0px 20px;
  text-align: center;
  font-size: 30px;
  font-weight: bold;
}
@media only screen and (min-width: 769px) {
  /* line 41, ../scss/_image-app.scss */
  .app-image h2 {
    padding-top: 40px;
    font-size: 36px;
  }
}
/* line 54, ../scss/_image-app.scss */
.app-image p {
  color: #ffffff;
  display: block;
  font-size: 18px;
  margin: 0 auto;
  margin-bottom: 20px;
  max-width: 280px;
}
@media only screen and (min-width: 481px) and (max-width: 768px) {
  /* line 54, ../scss/_image-app.scss */
  .app-image p {
    max-width: 480px;
  }
}
@media only screen and (min-width: 769px) {
  /* line 54, ../scss/_image-app.scss */
  .app-image p {
    max-width: 680px;
  }
}
/* line 69, ../scss/_image-app.scss */
.app-image p.footer-copyright {
  font-size: 95%;
  padding-bottom: 40px;
}

/* line 76, ../scss/_image-app.scss */
.app-phone {
  width: 100%;
  height: 320px;
  overflow: hidden;
  position: relative;
  background: url("../images/appit-iphone-vertical.png") no-repeat;
  background-size: 480px 320px;
  background-position: center center;
}
@media only screen and (min-width: 481px) and (max-width: 768px) {
  /* line 76, ../scss/_image-app.scss */
  .app-phone {
    height: 512px;
    background-size: 768px 512px;
  }
}
@media only screen and (min-width: 769px) {
  /* line 76, ../scss/_image-app.scss */
  .app-phone {
    height: 683px;
    background-size: 1024px 683px;
  }
}

/* line 95, ../scss/_image-app.scss */
.app-phone_hero {
  margin-top: 60px;
}

/* line 98, ../scss/_image-app.scss */
.app-phone_image {
  position: absolute;
  width: 116px;
  height: 206px;
  top: 58px;
  left: 50%;
  margin-left: -58px;
}
@media only screen and (min-width: 481px) and (max-width: 768px) {
  /* line 98, ../scss/_image-app.scss */
  .app-phone_image {
    width: 186px;
    height: 328px;
    top: 93px;
    margin-left: -92px;
  }
}
@media only screen and (min-width: 769px) {
  /* line 98, ../scss/_image-app.scss */
  .app-phone_image {
    width: 248px;
    height: 442px;
    top: 124px;
    margin-left: -124px;
  }
}

/* line 121, ../scss/_image-app.scss */
.product-layout {
  background-color: transparent;
  /* product background color */
  width: 100%;
  max-width: 1024px;
  padding: 0;
  margin: 0 auto;
  *zoom: 1;
}
/* line 130, ../scss/_image-app.scss */
.product-layout:before, .product-layout:after {
  content: ' ';
  display: table;
}
/* line 135, ../scss/_image-app.scss */
.product-layout:after {
  clear: both;
}

/* line 140, ../scss/_image-app.scss */
.hover-item {
  position: relative;
  float: left;
  overflow: hidden;
  width: 100%;
  cursor: pointer;
  height: 240px;
  background-size: cover;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 480px) {
  /* line 140, ../scss/_image-app.scss */
  .hover-item {
    margin: 4%;
    margin-top: 2%;
    width: 92%;
  }
}
@media only screen and (min-width: 481px) and (max-width: 767px) {
  /* line 140, ../scss/_image-app.scss */
  .hover-item {
    margin: 1%;
    width: 98%;
  }
  /* line 164, ../scss/_image-app.scss */
  .hover-item.hover-one {
    margin: 4%;
    margin-top: 2%;
    width: 92%;
  }
  /* line 170, ../scss/_image-app.scss */
  .hover-item.hover-two, .hover-item.hover-three, .hover-item.hover-four {
    margin: 4%;
    margin-top: 2%;
    width: 42%;
  }
}
@media only screen and (min-width: 768px) {
  /* line 140, ../scss/_image-app.scss */
  .hover-item {
    height: 300px;
  }
  /* line 180, ../scss/_image-app.scss */
  .hover-item.hover-one {
    margin: 4%;
    margin-top: 2%;
    width: 92%;
  }
  /* line 185, ../scss/_image-app.scss */
  .hover-item.hover-two {
    margin: 4% 2%;
    margin-top: 2%;
    width: 46%;
  }
  /* line 190, ../scss/_image-app.scss */
  .hover-item.hover-three {
    margin: 4% 2%;
    margin-top: 2%;
    width: 29.333333%;
  }
  /* line 195, ../scss/_image-app.scss */
  .hover-item.hover-four {
    margin: 4% 2%;
    margin-top: 2%;
    width: 21%;
  }
}
@media only screen and (min-width: 1024px) {
  /* line 140, ../scss/_image-app.scss */
  .hover-item {
    height: 480px;
  }
  /* line 204, ../scss/_image-app.scss */
  .hover-item.hover-one {
    margin: 2%;
    width: 96%;
    margin-bottom: 4%;
  }
}

/* line 212, ../scss/_image-app.scss */
.hover-effect .hover-caption::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  /* hover background color */
  content: '';
  opacity: 0;
}

/* line 223, ../scss/_image-app.scss */
.hover-effect .product-title {
  position: absolute;
  top: 50%;
  left: 0;
  padding-left: 20px;
  width: 100%;
  color: #ffffff;
  /* product title */
  -webkit-transition: -webkit-transform 0.35s, color 0.35s;
  transition: transform 0.35s, color 0.35s;
  -webkit-transform: translate3d(0, -50%, 0);
  transform: translate3d(0, -50%, 0);
}

/* line 236, ../scss/_image-app.scss */
.hover-effect .hover-caption::before,
.hover-effect p {
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
}

/* line 242, ../scss/_image-app.scss */
.hover-effect p {
  position: absolute;
  top: 40%;
  left: 0;
  padding: 12px;
  padding-left: 20px;
  width: 100%;
  opacity: 0;
  -webkit-transform: translate3d(0, 10px, 0);
  transform: translate3d(0, 10px, 0);
  line-height: 1.4;
}

/* line 255, ../scss/_image-app.scss */
.hover-effect:hover .product-title {
  color: transparent;
}

/* line 259, ../scss/_image-app.scss */
.hover-effect:hover .hover-caption::before,
.hover-effect:hover p {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

/* line 266, ../scss/_image-app.scss */
.hover-effect:hover p {
  color: #ffffff;
  font-size: 20px;
}

/* line 271, ../scss/_image-app.scss */
.hover-caption {
  color: #ffffff;
  /* product title */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 2em;
  font-size: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  text-align: center;
}

/* line 285, ../scss/_image-app.scss */
.hover-caption::before,
.hover-caption::after {
  pointer-events: none;
}

/* line 290, ../scss/_image-app.scss */
.hover-caption .product-title {
  letter-spacing: 1.5px;
  margin: 0;
  word-spacing: -0.15em;
  font-size: 30px;
  font-weight: 700;
}

/* line 298, ../scss/_image-app.scss */
.hover-caption p {
  margin: 0;
  letter-spacing: 1px;
}

/* Modal Details */
/* line 304, ../scss/_image-app.scss */
.modal-section_image {
  text-align: center;
  width: 100%;
  max-width: 320px;
  height: 568px;
  margin: 0 auto;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
}

/* line 318, ../scss/_image-app.scss */
.modal-section_text {
  border-top: 1px solid #eeeeee;
  background: #ffffff;
  /* Modal text background */
  line-height: 1.8;
  padding: 15px;
  margin: 0 auto;
  max-width: 320px;
  box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.1);
}
/* line 327, ../scss/_image-app.scss */
.modal-section_text span {
  font-weight: 700;
}

/* line 332, ../scss/_image-app.scss */
.modal-section_icon i {
  padding: 6px;
}

/* Utilities
=========================
	scss/_utilities.scss
*/
/* Text */
/* line 7, ../scss/_utilities.scss */
.text-primary {
  color: #2196F3;
  /* primary color */
}

/* line 10, ../scss/_utilities.scss */
.text-secondary {
  color: #1976D2;
  /* secondary color */
}

/* line 13, ../scss/_utilities.scss */
.text-white {
  color: #ffffff;
  /* white text */
}

/* line 16, ../scss/_utilities.scss */
.text-black {
  color: #000000;
  /* black text */
}

/* line 19, ../scss/_utilities.scss */
.text-grey {
  color: #f5f5f5;
  /* grey text */
}

/* line 22, ../scss/_utilities.scss */
.text-alert, .text-red {
  color: #F44336;
  /* alert text */
}

/* line 25, ../scss/_utilities.scss */
.text-success, .text-green {
  color: #4CAF50;
  /* success text */
}

/* line 28, ../scss/_utilities.scss */
.text-warning, .text-orange {
  color: #FF9800;
  /* warning text */
}

/* Background */
/* line 33, ../scss/_utilities.scss */
.bg-primary {
  background: #2196F3;
  /* primary background */
}

/* line 36, ../scss/_utilities.scss */
.bg-secondary {
  background: #1976D2;
  /* secondary background */
}

/* line 39, ../scss/_utilities.scss */
.bg-white {
  background: #ffffff;
  /* white background */
}

/* line 42, ../scss/_utilities.scss */
.bg-black {
  background: #000000;
  /* black background */
}

/* line 45, ../scss/_utilities.scss */
.bg-grey {
  background-color: #f5f5f5;
  /* grey background */
}

/* line 48, ../scss/_utilities.scss */
.bg-alert, .bg-red {
  background: #F44336;
  /* alert background */
}

/* line 51, ../scss/_utilities.scss */
.bg-success, .bg-green {
  background-color: #4CAF50;
  /* success background */
}

/* line 54, ../scss/_utilities.scss */
.bg-warning, .bg-orange {
  background-color: #FF9800;
  /* warning background */
}

/* line 57, ../scss/_utilities.scss */
.bg-color1 {
  background: transparent linear-gradient(135deg, #4954DE 0%, #49DDD8 100%) repeat scroll 0% 0%;
}

/* line 60, ../scss/_utilities.scss */
.bg-color2 {
  background: transparent linear-gradient(to bottom, #66A1E4 0px, #22B8BF 100%) repeat scroll 0% 0%;
}

/* line 63, ../scss/_utilities.scss */
.bg-body {
  background: #eeeeee;
}

/* line 66, ../scss/_utilities.scss */
.bg-gradient-black {
  background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url();
}

/* Display */
/* line 74, ../scss/_utilities.scss */
.opacity-0 {
  -webkit-filter: opacity(0%);
  filter: opacity(0%);
}

/* line 78, ../scss/_utilities.scss */
.opacity-8 {
  -webkit-filter: opacity(80%);
  filter: opacity(80%);
}

/* line 82, ../scss/_utilities.scss */
.opacity-1 {
  -webkit-filter: opacity(100%);
  filter: opacity(100%);
}

/* line 86, ../scss/_utilities.scss */
.block {
  display: block;
}

/* line 89, ../scss/_utilities.scss */
.inline {
  display: inline;
}

/* line 92, ../scss/_utilities.scss */
.inline-block {
  display: inline-block;
}

/* line 95, ../scss/_utilities.scss */
.bold {
  font-weight: bold;
}

/* line 98, ../scss/_utilities.scss */
.italic {
  font-weight: italic;
}

/* Transform */
/* line 103, ../scss/_utilities.scss */
.uppercase {
  text-transform: uppercase;
}

/* line 106, ../scss/_utilities.scss */
.lowercase {
  text-transform: lowercase;
}

/* line 109, ../scss/_utilities.scss */
.titlecase {
  text-transform: capitalize;
}

/* Alignment */
/* line 114, ../scss/_utilities.scss */
.text-left {
  text-align: left;
}

/* line 117, ../scss/_utilities.scss */
.text-right {
  text-align: right;
}

/* line 120, ../scss/_utilities.scss */
.text-center {
  text-align: center;
}

/* line 123, ../scss/_utilities.scss */
.center {
  margin: 0 auto;
}

/* line 126, ../scss/_utilities.scss */
.pull-left {
  float: left;
}

/* line 129, ../scss/_utilities.scss */
.pull-right {
  float: right;
}

/* Spacing */
/* line 134, ../scss/_utilities.scss */
.pad-0 {
  padding: 0;
}

/* line 137, ../scss/_utilities.scss */
.pad-10 {
  padding: 10px;
}

/* line 140, ../scss/_utilities.scss */
.pad-15 {
  padding: 15px;
}

/* line 143, ../scss/_utilities.scss */
.pad-20 {
  padding: 20px;
}

/* line 146, ../scss/_utilities.scss */
.pad-left-20 {
  padding-left: 20px;
}

/* line 149, ../scss/_utilities.scss */
.pad-40 {
  padding: 40px;
}

/* line 152, ../scss/_utilities.scss */
.pad-top-0 {
  padding-top: 0;
}

/* line 155, ../scss/_utilities.scss */
.pad-top-20 {
  padding-top: 20px;
}

/* line 158, ../scss/_utilities.scss */
.pad-top-40 {
  padding-top: 40px;
}

/* line 161, ../scss/_utilities.scss */
.pad-bottom-0 {
  padding-bottom: 0;
}

/* line 164, ../scss/_utilities.scss */
.pad-bottom-10 {
  padding-bottom: 10px;
}

/* line 167, ../scss/_utilities.scss */
.pad-bottom-20 {
  padding-bottom: 20px;
}

/* line 170, ../scss/_utilities.scss */
.mag-0 {
  margin: 0;
}

/* line 173, ../scss/_utilities.scss */
.mag-10 {
  margin: 10px;
}

/* line 176, ../scss/_utilities.scss */
.mag-20 {
  margin: 20px;
}

/* line 179, ../scss/_utilities.scss */
.mag-30 {
  margin: 30px;
}

/* line 182, ../scss/_utilities.scss */
.mag-40 {
  margin: 40px;
}

/* line 185, ../scss/_utilities.scss */
.mag-bottom-20 {
  margin-bottom: 20px;
}

/* line 188, ../scss/_utilities.scss */
.mag-bottom-0 {
  margin-bottom: 0;
}

/* line 191, ../scss/_utilities.scss */
.grid-960 {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

/* line 196, ../scss/_utilities.scss */
.grid-1024 {
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
}

/* line 201, ../scss/_utilities.scss */
.full-width {
  width: 100%;
}

/* line 204, ../scss/_utilities.scss */
.max-width {
  max-width: 100%;
}

/* line 208, ../scss/_utilities.scss */
.section_pointer {
  cursor: pointer;
  font-size: 75%;
}

/* Tiles */
/* line 214, ../scss/_utilities.scss */
.tile {
  padding: 20px 30px;
  margin: 10px 0;
  background: #ffffff;
  /* Tile background */
}

/* line 220, ../scss/_utilities.scss */
.box-shadow {
  box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.1);
}

/* Lists */
/* line 225, ../scss/_utilities.scss */
.no-list {
  list-style: none;
}

/* line 229, ../scss/_utilities.scss */
.ordered-list, .unordered-list {
  padding-left: 20px;
}
/* line 232, ../scss/_utilities.scss */
.ordered-list li, .unordered-list li {
  margin: 5px auto;
}

/* line 237, ../scss/_utilities.scss */
.inline-list {
  overflow: hidden;
}
/* line 240, ../scss/_utilities.scss */
.inline-list li {
  display: block;
  float: left;
  margin-right: 15px;
  margin-bottom: 5px;
}
/* line 246, ../scss/_utilities.scss */
.inline-list li i {
  padding-right: 3px;
}

@media only screen and (max-width: 768px) {
  /* line 253, ../scss/_utilities.scss */
  .inline-list > li:first-child {
    margin-left: 2px;
  }
}
@media only screen and (min-width: 768px) {
  /* line 258, ../scss/_utilities.scss */
  .inline-list > li {
    display: block;
    float: left;
    margin-left: 20px;
  }

  /* line 263, ../scss/_utilities.scss */
  .inline-list > li:first-child {
    margin-left: 0;
  }
}
/* line 267, ../scss/_utilities.scss */
.inline-list i {
  padding-right: 3px;
}

/* line 271, ../scss/_utilities.scss */
.icon-list {
  list-style: none;
  padding-left: 5px;
}
/* line 275, ../scss/_utilities.scss */
.icon-list li {
  font-size: 90%;
  margin: 10px auto;
}
/* line 279, ../scss/_utilities.scss */
.icon-list li i {
  padding-right: 5px;
}

/* Image List */
/* line 286, ../scss/_utilities.scss */
.image-list {
  width: 100%;
  margin: 0 auto;
  float: left;
  list-style: none;
}
@media only screen and (max-width: 480px) {
  /* line 286, ../scss/_utilities.scss */
  .image-list {
    margin: 4%;
    margin-top: 2%;
    width: 92%;
  }
}

@media only screen and (min-width: 481px) and (max-width: 767px) {
  /* line 301, ../scss/_utilities.scss */
  .image-list2 {
    margin: 1%;
    width: 48%;
  }

  /* line 305, ../scss/_utilities.scss */
  .image-list2, .image-list3, .image-list4 {
    margin-bottom: 4%;
  }
}
@media only screen and (min-width: 768px) {
  /* line 311, ../scss/_utilities.scss */
  .image-list2 {
    margin: 1%;
    width: 48%;
  }

  /* line 315, ../scss/_utilities.scss */
  .image-list3 {
    margin: 4% 2%;
    margin-top: 2%;
    width: 29.333333%;
  }

  /* line 320, ../scss/_utilities.scss */
  .image-list4 {
    margin: 2%;
    width: 21%;
  }
}
/* Social Icons */
/* line 327, ../scss/_utilities.scss */
.social-icons {
  padding: 0.2em 0;
  margin: 0;
  list-style: none;
}
/* line 332, ../scss/_utilities.scss */
.social-icons .social-icon {
  padding-right: 0.4em;
  display: inline-block;
}
/* line 337, ../scss/_utilities.scss */
.social-icons a, .social-icons i {
  padding: 5px;
  color: #2196F3;
}
/* line 341, ../scss/_utilities.scss */
.social-icons a:hover, .social-icons i:hover {
  color: #1976D2;
}

/* Testimonials */
/* line 348, ../scss/_utilities.scss */
.testimonial-item {
  font-size: 95%;
  margin: 0 auto;
  margin-bottom: 10px;
  text-align: center;
}
@media only screen and (max-width: 480px) {
  /* line 348, ../scss/_utilities.scss */
  .testimonial-item {
    max-width: 280px;
  }
}
@media only screen and (min-width: 481px) {
  /* line 348, ../scss/_utilities.scss */
  .testimonial-item {
    max-width: 480px;
  }
}
/* line 361, ../scss/_utilities.scss */
.testimonial-item img {
  padding: 4px;
}
/* line 364, ../scss/_utilities.scss */
.testimonial-item span {
  display: block;
  font-size: 16px;
}

/* line 369, ../scss/_utilities.scss */
.bg-testimonials {
  background: #2196F3;
  background: linear-gradient(rgba(0, 15, 215, 0.5), rgba(0, 15, 215, 0.5)), url(../images/testimonial-image.jpg) no-repeat fixed center;
  background: -webkit-linear-gradient-linear-gradient(rgba(0, 15, 215, 0.5), rgba(0, 15, 215, 0.5)), url(../images/testimonial-image.jpg) no-repeat fixed center;
}

/* Image Square */
/* line 376, ../scss/_utilities.scss */
.img-square {
  width: 120px;
  height: 120px;
}

/* Image Circle */
/* line 381, ../scss/_utilities.scss */
.img-circle {
  width: 120px;
  height: 120px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  border: 1px solid #ddd;
  background: #FFF none repeat scroll 0% 0%;
}

/* Visibility */
/* line 392, ../scss/_utilities.scss */
.sr-text {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* line 400, ../scss/_utilities.scss */
.show, [data-show] {
  display: block;
}

/* line 403, ../scss/_utilities.scss */
.hide, [data-hide] {
  display: none;
}

/* Responsive */
@media only screen and (max-width: 768px) {
  /* line 409, ../scss/_utilities.scss */
  .show-desktop {
    display: none;
  }

  /* line 412, ../scss/_utilities.scss */
  .show-mobile {
    display: block;
  }

  /* line 415, ../scss/_utilities.scss */
  [data-desktop] {
    display: none !important;
  }

  /* line 418, ../scss/_utilities.scss */
  [data-mobile] {
    display: block !important;
  }
}
@media only screen and (min-width: 769px) {
  /* line 424, ../scss/_utilities.scss */
  .show-desktop {
    display: block;
  }

  /* line 427, ../scss/_utilities.scss */
  .show-mobile {
    display: none;
  }

  /* line 430, ../scss/_utilities.scss */
  [data-desktop] {
    display: block !important;
  }

  /* line 433, ../scss/_utilities.scss */
  [data-mobile] {
    display: none !important;
  }
}
/* Print */
/* line 439, ../scss/_utilities.scss */
.show-print {
  display: none;
}

@media print {
  /* line 443, ../scss/_utilities.scss */
  .show-print {
    display: block;
  }

  /* line 446, ../scss/_utilities.scss */
  .hide-print {
    display: none;
  }
}
/* Section Pages
=====================
	scss/_pages.scss
*/
/* Demo */
/* line 7, ../scss/_pages.scss */
.grid-demo {
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 80px;
}
@media only screen and (max-width: 1024px) {
  /* line 7, ../scss/_pages.scss */
  .grid-demo {
    padding-left: 20px;
    padding-right: 20px;
  }
}
/* line 18, ../scss/_pages.scss */
.grid-demo h2 {
  padding: 10px;
}
/* line 22, ../scss/_pages.scss */
.grid-demo img {
  margin-bottom: 10px;
}

/* General */
/* line 28, ../scss/_pages.scss */
.img-hover:hover {
  filter: saturate(1.6);
  -webkit-filter: saturate(1.6);
}

/* line 33, ../scss/_pages.scss */
.home-next {
  text-align: center;
  padding-bottom: 20px;
}
/* line 37, ../scss/_pages.scss */
.home-next a {
  color: #ffffff;
}

/* About */
/* line 45, ../scss/_pages.scss */
.section-about_staff .hover-item {
  height: 300px;
}
@media only screen and (min-width: 768px) {
  /* line 49, ../scss/_pages.scss */
  .section-about_staff .hover-item.hover-four {
    height: 240px;
  }
}
@media only screen and (min-width: 1024px) {
  /* line 55, ../scss/_pages.scss */
  .section-about_staff .hover-item.hover-three {
    height: 320px;
  }
  /* line 58, ../scss/_pages.scss */
  .section-about_staff .hover-item.hover-two {
    height: 440px;
  }
  /* line 61, ../scss/_pages.scss */
  .section-about_staff .hover-item.hover-one {
    height: 480px;
  }
}
/* line 65, ../scss/_pages.scss */
.section-about_staff .hover-item.hover-one {
  cursor: default;
}
