@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Exo+2:400,400i,500,500i,600,600i,700,700i,800,800i");
.card {
  background: #fff;
  border-radius: 2px;
  display: inline-block;
  margin: 1rem;
  position: relative;
  width: 100%;
  -webkit-box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15), 0 6px 6px rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15), 0 6px 6px rgba(0, 0, 0, 0.2);
  -webkit-transition: all 500ms ease-in-out;
  -moz-transition: all 500ms ease-in-out;
  -ms-transition: all 500ms ease-in-out;
  -o-transition: all 500ms ease-in-out;
  transition: all 500ms ease-in-out;
}

.card:hover {
  -webkit-box-shadow: 0 12px 25px rgba(0, 0, 0, 0.17), 0 6px 6px rgba(0, 0, 0, 0.28);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.17), 0 6px 6px rgba(0, 0, 0, 0.28);
}

.intro-demo {
  background: url(../img/bg-demo.jpg) no-repeat;
  position: relative;
  margin-top: 0;
}

.intro-demo:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(44, 54, 75, 0.8);
}

.intro-logo {
  position: relative;
  padding-top: 10%;
  padding-bottom: 8%;
}

.intro-logo h2 {
  font-size: 25px;
  font-weight: 300;
  color: #fff;
  letter-spacing: 0.01em;
  line-height: 80px;
}

@media (max-width: 430px) {
  .intro-logo img {
    width: 94%;
  }
  .intro-logo h2 {
    line-height: 40px;
  }
}

#demo h3 {
  font-size: 32px;
  font-weight: bold;
  letter-spacing: 0.01em;
}

#demo h4 {
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 0.01em;
}

/* ---------------------------------------------------------------------- */
/* 2. PRELOADER
/* ---------------------------------------------------------------------- */
/* Preloader animations */
div#preloader {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  overflow: visible;
  background: #3f4d6b;
  text-align: center;
}

.cssload-container {
  width: 100%;
  height: 55px;
  text-align: center;
  margin-top: 25%;
}

.cssload-double-torus {
  width: 55px;
  height: 55px;
  margin: 0 auto;
  border: 4px solid;
  border-radius: 50%;
  border-color: transparent rgba(255, 255, 255, 0.9);
  animation: cssload-spin 690ms infinite linear;
  -o-animation: cssload-spin 690ms infinite linear;
  -ms-animation: cssload-spin 690ms infinite linear;
  -webkit-animation: cssload-spin 690ms infinite linear;
  -moz-animation: cssload-spin 690ms infinite linear;
}

@keyframes cssload-spin {
  100% {
    transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-o-keyframes cssload-spin {
  100% {
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-ms-keyframes cssload-spin {
  100% {
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-webkit-keyframes cssload-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-moz-keyframes cssload-spin {
  100% {
    -moz-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/* ---------------------------------------------------------------------- */
/* 3. GLOBAL STYLES
/* ---------------------------------------------------------------------- */
/* General */
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  background-color: #2b2e37;
  color: #f5f5f5;
  font-family: "Exo 2", sans-serif;
  text-rendering: optimizeLegibility;
  font-weight: 300;
  font-size: 14px;
  width: 100%;
  height: 100%;
}

a {
  color: #f9f9f9;
}

a:hover, a:focus, a:active, a.active {
  outline: none;
  text-decoration: none;
  color: #2196F3;
}

input,
button,
textarea {
  outline: none;
  border: none;
}

input:focus,
button:focus,
textarea:focus {
  outline: none;
}

p {
  line-height: 1.6;
}

.small {
  font-size: 85%;
}

.bold {
  font-weight: 700;
}

::-moz-selection {
  text-shadow: none;
  background: #727272;
  color: #fff;
}

::selection {
  text-shadow: none;
  background: #727272;
  color: #fff;
}

img::selection {
  background: 0 0;
}

img::-moz-selection {
  background: 0 0;
}

iframe {
  border: none;
  width: 100%;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "walkway", sans-serif;
  font-weight: normal;
}

.lead {
  font-size: 18px;
  font-weight: 400;
}

.text-brand {
  color: #fff;
}

hr {
  border-top: 1px solid #24272e;
}

@media (max-width: 980px) {
  .container {
    width: 94%;
  }
}

/* Helpers */
.overflowh {
  overflow: hidden;
}

.no-overflow {
  margin: 0;
  height: 100%;
  overflow: hidden;
}

.vertical-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Margin & Padding */
.m0 {
  margin: 0 !important;
}

.p0 {
  padding: 0 !important;
}

.mr0 {
  margin-right: 0 !important;
}

.ml0 {
  margin-left: 0 !important;
}

.mt0 {
  margin-top: 0 !important;
}

.mb0 {
  margin-bottom: 0 !important;
}

.pr0 {
  padding-right: 0 !important;
}

.pl0 {
  padding-left: 0 !important;
}

.pt0 {
  padding-top: 0 !important;
}

.pb0 {
  padding-bottom: 0 !important;
}

.ml5 {
  margin-left: 5px;
}

.ml10 {
  margin-left: 10px;
}

.ml15 {
  margin-left: 15px;
}

.ml20 {
  margin-left: 20px;
}

.ml25 {
  margin-left: 25px;
}

.ml30 {
  margin-left: 30px;
}

.ml35 {
  margin-left: 35px;
}

.ml40 {
  margin-left: 40px;
}

.mr5 {
  margin-right: 5px;
}

.mr10 {
  margin-right: 10px;
}

.mr15 {
  margin-right: 15px;
}

.mr20 {
  margin-right: 20px;
}

.mr25 {
  margin-right: 25px;
}

.mr30 {
  margin-right: 30px;
}

.mr35 {
  margin-right: 35px;
}

.mr40 {
  margin-right: 40px;
}

.mt5 {
  margin-top: 5px;
}

.mt10 {
  margin-top: 10px;
}

.mt15 {
  margin-top: 15px;
}

.mt20 {
  margin-top: 20px;
}

.mt25 {
  margin-top: 25px;
}

.mt30 {
  margin-top: 30px;
}

.mt35 {
  margin-top: 35px;
}

.mt40 {
  margin-top: 40px;
}

.mb5 {
  margin-bottom: 5px;
}

.mb10 {
  margin-bottom: 10px;
}

.mb15 {
  margin-bottom: 15px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb25 {
  margin-bottom: 25px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb35 {
  margin-bottom: 35px;
}

.mb40 {
  margin-bottom: 40px;
}

.pt5 {
  padding-top: 5px;
}

.pt10 {
  padding-top: 10px;
}

.pt15 {
  padding-top: 15px;
}

.pt20 {
  padding-top: 20px;
}

.pt25 {
  padding-top: 25px;
}

.pt30 {
  padding-top: 30px;
}

.pt35 {
  padding-top: 35px;
}

.pt40 {
  padding-top: 40px;
}

.pt50 {
  padding-top: 50px;
}

.pb5 {
  padding-bottom: 5px;
}

.pb10 {
  padding-bottom: 10px;
}

.pb15 {
  padding-bottom: 15px;
}

.pb20 {
  padding-bottom: 20px;
}

.pb25 {
  padding-bottom: 25px;
}

.pb30 {
  padding-bottom: 30px;
}

.pb35 {
  padding-bottom: 35px;
}

.pb40 {
  padding-bottom: 40px;
}

.pb50 {
  padding-bottom: 50px;
}

.row-5 {
  margin-left: -5px;
  margin-right: -5px;
}

.row-10 {
  margin-left: -10px;
  margin-right: -10px;
}

/* Dividers */
.divide30 {
  width: 100%;
  height: 30px;
}

.divide40 {
  width: 100%;
  height: 40px;
}

.divide50 {
  width: 100%;
  height: 50px;
}

.divide60 {
  width: 100%;
  height: 60px;
}

.divide70 {
  width: 100%;
  height: 70px;
}

.divide80 {
  width: 100%;
  height: 80px;
}

/* Pages */
.pages {
  position: relative;
  padding-top: 10%;
  padding-bottom: 8%;
}

.pages h2 {
  font-size: 25px;
  font-weight: 300;
  color: #fff;
  letter-spacing: 0.01em;
  line-height: 80px;
}

.pages h1 {
  font-size: 48px;
  font-weight: bold;
  color: #fff;
  letter-spacing: 0.01em;
  line-height: 60px;
}

/* Sections */
.content-section-a {
  padding: 60px 0;
  background-color: #2b2e37;
  /* min-height: 100vh; */
}

.content-section-b {
  padding: 60px 0;
  background-color: #24272e;
}

.content-section-c {
  background: url(../img/bg-c.jpg) #3f4d6b;
  color: #fff;
  padding: 100px 0;
  position: relative;
  min-height: 100vh;
}

.content-section-c:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(25, 31, 43, 0.83);
}

.content-section-d {
  background: url(../img/bg-d.jpg) #3f4d6b;
  color: #fff;
  padding: 100px 0 150px;
  position: relative;
  min-height: 100vh;
}

.content-section-d:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(25, 31, 43, 0.83);
}

.content-section-e {
  background: #3f4d6b;
  color: #fff;
  padding: 100px 0;
  position: relative;
}

.content-section-e:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(25, 31, 43, 0.83);
}

.section-heading {
  font-size: 43px;
  font-weight: 300;
  letter-spacing: 0.01em;
}

.section-heading strong {
  font-weight: bold;
}

.separator {
  display: inline-block;
  width: 60px;
  height: 4px;
  -webkit-border-radius: 10px;
  -khtml-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
  background-color: #58c4c4;
  margin: 20px 0;
}

.separator2 {
  display: inline-block;
  width: 60px;
  height: 4px;
  -webkit-border-radius: 10px;
  -khtml-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
  background-color: #58c4c4;
  margin: 20px 0;
}

.section-subheading {
  padding-bottom: 50px;
  font-size: 22px;
  color: #ddd;
  letter-spacing: 0.03em;
}

.section-subheading2 {
  padding-bottom: 50px;
  font-size: 20px;
  color: #f9f9f9;
  letter-spacing: 0.03em;
}

/* ---------------------------------------------------------------------- */
/* 4. NAVBAR
/* ---------------------------------------------------------------------- */
/* Bootstrap navbar */
.navbar-inverse {
  background-color: rgba(63, 77, 107, 0);
  border: 0;
  border-bottom: solid 1px rgba(255, 255, 255, 0.15);
  -webkit-box-shadow: none;
  -khtml-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  box-shadow: none;
  font-family: "walkway", sans-serif;
  font-weight: 500;
  -webkit-transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -ms-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
  transition: all 400ms ease-in-out;
  min-height: 80px;
}

.navbar-inverse .navbar-nav > li > a {
  font-size: 15px;
  padding: 28px 20px;
  color: #fff;
  letter-spacing: 0.05em;
  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -ms-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

.navbar-inverse .navbar-nav > li > a:hover {
  color: #7ed1d1;
  background-color: rgba(0, 0, 0, 0.05);
}

.navbar-inverse .navbar-nav > li > a:focus {
  color: #7ed1d1;
  background-color: transparent;
}

.navbar-inverse .navbar-nav > li > a small {
  font-size: 75%;
  color: #7ed1d1;
}

.navbar-inverse .navbar-nav > li:after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: #2196F3;
  -webkit-transition: width 300ms linear;
  -moz-transition: width 300ms linear;
  -ms-transition: width 300ms linear;
  -o-transition: width 300ms linear;
  transition: width 300ms linear;
}

.navbar-inverse .navbar-nav > li.active > a {
  color: #7ed1d1;
  background-color: transparent;
}

.navbar-inverse .navbar-nav > li.active > a:hover {
  color: #7ed1d1;
  background-color: rgba(0, 0, 0, 0.05);
}

.navbar-inverse .navbar-nav > li.active > a:focus {
  color: #7ed1d1;
  background-color: transparent;
}

.navbar-inverse .navbar-nav > li > .dropdown-menu {
  background-color: #36415b;
  border: 0;
  margin-top: 0;
  padding-top: 0;
  padding-bottom: 0;
  -webkit-border-radius: 0;
  -khtml-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
  -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  -khtml-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  -ms-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.navbar-inverse .navbar-nav > li > .dropdown-menu:before {
  position: absolute;
  top: -3px;
  left: 0;
  content: '';
  width: 100%;
  height: 3px;
  background-color: #2196F3;
}

.navbar-inverse .navbar-nav > li > .dropdown-menu > li {
  letter-spacing: 0.01em;
}

.navbar-inverse .navbar-nav > li > .dropdown-menu > li > a {
  color: #fff;
  font-family: "walkway", sans-serif;
  font-weight: normal;
  padding: 10px 20px;
  -webkit-transition: all 50ms ease-in-out;
  -moz-transition: all 50ms ease-in-out;
  -ms-transition: all 50ms ease-in-out;
  -o-transition: all 50ms ease-in-out;
  transition: all 50ms ease-in-out;
}

.navbar-inverse .navbar-nav > li > .dropdown-menu > li > a:hover, .navbar-inverse .navbar-nav > li > .dropdown-menu > li > a:focus, .navbar-inverse .navbar-nav > li > .dropdown-menu > li > a:active {
  background-color: #3f4d6b;
  color: #fff;
}

.navbar-inverse .navbar-nav > li > .dropdown-menu .dropdown-header {
  color: #58c4c4;
  font-family: "walkway", sans-serif;
  font-weight: bold;
  font-size: 14px;
}

.navbar-inverse .navbar-nav > li > .dropdown-menu > .active > a {
  background-color: transparent;
  color: #fff;
}

.navbar-inverse .navbar-nav > li > .dropdown-menu > .active > a:focus, .navbar-inverse .navbar-nav > li > .dropdown-menu > .active > a:hover {
  background-color: #3f4d6b;
  color: #fff;
}

.navbar-inverse .navbar-nav .open > a {
  color: #7ed1d1;
  background-color: rgba(0, 0, 0, 0.05);
}

.navbar-inverse .navbar-nav .open > a:hover, .navbar-inverse .navbar-nav .open > a:focus, .navbar-inverse .navbar-nav .open > a:active {
  color: #7ed1d1;
  background-color: rgba(0, 0, 0, 0.05);
}

.navbar-inverse .navbar-nav .open .dropdown-menu > .active > a {
  color: #7ed1d1;
  background-color: transparent;
}

.navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus, .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:active {
  color: #7ed1d1;
  background-color: transparent;
}

.navbar-inverse .navbar-brand {
  font-family: "walkway", sans-serif;
  font-weight: bold;
  letter-spacing: 0.025em;
  color: #fff;
  font-size: 24px;
}

.navbar-inverse .navbar-brand:hover, .navbar-inverse .navbar-brand:focus, .navbar-inverse .navbar-brand:active {
  color: #f9f9f9;
}

.navbar-inverse.nav-color {
  background-color: #3f4d6b;
  border-bottom: solid 1px rgba(255, 255, 255, 0);
}

@media (min-width: 801px) {
  .navbar-inverse .navbar-nav > li:hover::after {
    width: 100%;
  }
  .navbar-inverse ul.nav li.dropdown > ul.dropdown-menu {
    visibility: hidden;
    display: block;
    opacity: 0;
    -khtml-opacity: 0;
    -moz-opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -ms-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
  }
  .navbar-inverse ul.nav li.dropdown:hover > ul.dropdown-menu {
    visibility: visible;
    display: block;
    opacity: 1;
    -khtml-opacity: 1;
    -moz-opacity: 1;
    filter: alpha(opacity=100);
  }
}

@media (max-width: 1024px) {
  .navbar-inverse .navbar-nav > li > a {
    padding: 18px 16px;
  }
}

@media (max-width: 800px) {
  .navbar-inverse {
    border-top: 0;
    margin: 0;
    background: #3f4d6b;
    border-bottom: 0;
    -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.13);
    -khtml-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.13);
    -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.13);
    -ms-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.13);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.13);
  }
  .navbar-inverse .container {
    width: 100%;
    padding: 0;
    margin: 0;
  }
  .navbar-inverse .container .navbar-header {
    min-height: 55px;
    -webkit-box-shadow: none;
    -khtml-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    box-shadow: none;
  }
  .navbar-inverse .container .navbar-header .navbar-toggle {
    cursor: pointer;
    position: relative;
    line-height: 0;
    float: left;
    margin: 3px 0 0 40px;
    width: 30px;
    height: 40px;
    padding: 4px 0 0;
    border: 0;
    background: transparent;
  }
  .navbar-inverse .container .navbar-header .navbar-toggle:focus, .navbar-inverse .container .navbar-header .navbar-toggle:hover {
    background: transparent;
  }
  .navbar-inverse .container .navbar-header .navbar-toggle > .icon-bar {
    width: 90%;
    display: block;
    height: 2px;
    margin: 5px 0 0;
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    transition: all 200ms linear;
  }
  .navbar-inverse .container .navbar-header .navbar-toggle > span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    background-color: #f0f0f0;
  }
  .navbar-inverse .container .navbar-header .navbar-toggle > span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    background-color: #f0f0f0;
    position: absolute;
    top: 19px;
  }
  .navbar-inverse .container .navbar-header .navbar-toggle > span:nth-child(4) {
    display: none !important;
  }
  .navbar-inverse .container .navbar-header .navbar-toggle.collapsed > span:nth-child(2) {
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
    background-color: #f9f9f9;
  }
  .navbar-inverse .container .navbar-header .navbar-toggle.collapsed > span:nth-child(3) {
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
    background-color: #f9f9f9;
    position: relative;
    top: 0;
  }
  .navbar-inverse .container .navbar-header .navbar-toggle.collapsed > span:nth-child(4) {
    display: block !important;
  }
  .navbar-inverse .container .navbar-collapse {
    margin-top: 1px;
    border-top: solid 1px rgba(255, 255, 255, 0.15);
    -webkit-box-shadow: none;
    -khtml-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    box-shadow: none;
  }
  .navbar-inverse .container .navbar-collapse .navbar-nav {
    min-width: 0;
    width: 100%;
    margin: 0;
    padding-top: 0;
    -webkit-box-shadow: none;
    -khtml-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    box-shadow: none;
  }
  .navbar-inverse .container .navbar-collapse .navbar-nav li {
    background-color: rgba(0, 0, 0, 0.03);
  }
  .navbar-inverse .container .navbar-collapse .navbar-nav li a {
    padding: 12px 26px;
  }
  .navbar-inverse .container .navbar-collapse .navbar-nav .dropdown-menu {
    background-color: #394661;
    -webkit-box-shadow: none;
    -khtml-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    box-shadow: none;
    -webkit-border-radius: 0;
    -khtml-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    border-radius: 0;
  }
  .navbar-inverse .container .navbar-collapse .navbar-nav .dropdown-menu li a {
    padding: 12px 22px;
    font-size: 15px;
    color: #fff;
    min-width: 0;
    width: 100%;
    white-space: normal;
  }
  .navbar-inverse .container .navbar-collapse .navbar-nav .dropdown-menu .divider {
    background: rgba(0, 0, 0, 0.1);
  }
  .navbar-inverse .container .navbar-collapse .navbar-nav .dropdown-menu .dropdown-header {
    color: #58c4c4;
    font-family: "walkway", sans-serif;
    font-weight: bold;
    padding-left: 26px;
  }
  .navbar-inverse .container .navbar-collapse .navbar-nav .dropdown-menu:before {
    width: 0;
  }
  .container-fluid > .navbar-collapse,
  .container > .navbar-collapse {
    overflow-y: scroll !important;
    max-height: calc(100vh - 55px);
  }
}

@media (min-width: 768px) and (max-width: 800px) {
  /* Custom Bootstrap breakpoint */
  .navbar-header {
    float: none;
    margin: 0 -15px !important;
  }
  .navbar-header .navbar-brand {
    padding: 15px;
    margin-left: 0 !important;
  }
  .navbar-header .navbar-toggle {
    display: block;
  }
  .navbar-collapse.collapse {
    display: none !important;
  }
  .navbar-collapse.collapse.in {
    display: block !important;
  }
  .navbar-nav {
    float: none !important;
    margin: 7.5px -15px;
  }
  .navbar-nav > li {
    float: none;
  }
  .navbar-nav > li > a {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .navbar-nav .open .dropdown-menu {
    position: static;
    float: none;
    width: auto;
  }
}

@media (min-width: 801px) and (max-width: 995px) {
  .navbar-inverse {
    min-width: 800px;
  }
  .navbar-inverse .container .navbar-brand > img {
    width: 122px;
  }
  .navbar-inverse .container .navbar-nav > li > a {
    padding: 18px 11px;
    font-size: 13px;
  }
}

/* ---------------------------------------------------------------------- */
/* 5. HEADER
/* ---------------------------------------------------------------------- */
/* Intro header */
.intro-header {
  background: url(../img/intro-bg.jpg) no-repeat;
  position: relative;
  margin-top: 0;
}

.intro-header .container {
  position: relative;
  z-index: 2;
}

.intro-header:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(44, 54, 75, 0.8);
}

@media (min-width: 1367px) {
  .intro-header {
    height: 100vh;
    max-height: 900px;
  }
}

@media (min-width: 801px) {
  .intro-header {
    overflow: hidden;
  }
}

.smartphone {
  margin-top: 130px;
  width: 100%;
  height: 600px;
  background: url(../img/iPhone-6-Mockup.png) no-repeat;
}

@media (max-width: 1920px) {
  .smartphone {
    margin-top: 150px;
    height: 620px;
  }
}

@media (max-width: 1370px) {
  .smartphone {
    margin-top: 130px;
    height: 600px;
  }
}

@media (max-width: 1024px) {
  .smartphone {
    background-size: 100%;
    height: 535px;
  }
}

@media (max-width: 980px) {
  .smartphone {
    background-size: 447px;
  }
}

@media (max-width: 800px) {
  .smartphone {
    background-size: 360px;
  }
}

@media (min-width: 768px) and (max-width: 840px) {
  .smartphone {
    min-width: 360px;
  }
}

@media (min-height: 1080px) {
  .smartphone {
    margin-top: 170px;
    height: 730px;
  }
}

@media (min-width: 801px) {
  .smartphone {
    height: 100vh;
  }
}

.intro-message {
  position: relative;
  padding-top: 24%;
  padding-bottom: 18%;
  max-width: 600px;
  margin: 0 auto;
}

.intro-message h2 {
  font-size: 48px;
  font-weight: 300;
  color: #fff;
  letter-spacing: 0.01em;
  line-height: 80px;
}

.intro-message .header-buttons {
  padding-top: 50px;
}

.intro-message .header-buttons a {
  margin-right: 10px;
}

.intro-message .header-buttons a .fa.pull-left {
  margin-left: -15px;
}

.intro-message .header-buttons a small {
  font-size: 80%;
}

.intro-message .header-buttons a.text-left {
  text-align: left;
  line-height: 1.1;
}

@media (max-width: 1920px) {
  .intro-message {
    padding-top: 26%;
  }
}

@media (max-width: 1370px) {
  .intro-message {
    padding-top: 24%;
  }
}

@media (max-width: 980px) {
  .intro-message h2 {
    font-size: 45px;
    line-height: 50px;
  }
  .intro-message .header-buttons a {
    margin-bottom: 10px;
  }
}

@media (max-width: 800px) {
  .intro-message {
    padding: 15% 2%;
  }
  .intro-message h2 {
    font-size: 40px;
    line-height: 44px;
    margin-top: 15px;
  }
  .intro-message .header-buttons {
    padding-top: 30px;
  }
  .intro-message .header-buttons a {
    display: block;
    margin-bottom: 20px;
    margin-right: 0;
  }
  .intro-message > h1 {
    font-size: 3em;
  }
}

@media (min-width: 768px) and (max-width: 800px) {
  .intro-message {
    padding-top: 140px;
  }
}

@media (min-height: 1080px) {
  .intro-message {
    padding-top: 160px;
  }
}

/* Particles */
#particles-js {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  background-image: url("");
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}

/* ---------------------------------------------------------------------- */
/* 6. ABOUT US
/* ---------------------------------------------------------------------- */
/* About us info */
.about-info {
  padding-left: 20px;
}

.about-info h3 {
  font-family: "walkway", sans-serif;
  font-weight: bold;
  margin-top: 0;
  margin-bottom: 20px;
  color: #fff;
  font-size: 28px;
  padding-bottom: 7px;
  border-bottom: solid 1px #58c4c4;
}

.about-info p {
  line-height: 26px;
}

.about-info h5 {
  font-family: "walkway", sans-serif;
  font-weight: bold;
  font-size: 15px;
  color: #fff;
}

.about-info h5 small {
  font-family: "walkway", sans-serif;
  font-weight: normal;
  font-size: 14px;
  padding-left: 7px;
  color: #ddd;
}

.about-info .skills {
  padding-top: 5px;
}

.about-info .skills i {
  margin-right: 5px;
  color: #fff;
}

.about-info .skills .progress {
  background: #999;
  height: 2px;
  margin-bottom: 20px;
  -webkit-border-radius: 10px;
  -khtml-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
  -webkit-box-shadow: none;
  -khtml-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  box-shadow: none;
}

.about-info .skills .progress .progress-bar {
  background: #2196F3;
  -webkit-box-shadow: none;
  -khtml-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  box-shadow: none;
}

/* Video */
.video {
  position: relative;
}

.video img {
  width: 100%;
}

.video a {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(44, 54, 75, 0.3);
  -webkit-transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -ms-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
  transition: all 400ms ease-in-out;
}

.video a .fa {
  display: inline-block;
  font-size: 100px;
  color: #dc1a1a;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -44px;
  margin-top: -44px;
  -webkit-transition: all 200ms ease-in-out;
  -moz-transition: all 200ms ease-in-out;
  -ms-transition: all 200ms ease-in-out;
  -o-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
  opacity: 0.8;
  -khtml-opacity: 0.8;
  -moz-opacity: 0.8;
  filter: alpha(opacity=80);
}

.video a:hover {
  background-color: rgba(36, 39, 46, 0.1);
}

.video a:hover .fa {
  opacity: 0.5;
  -khtml-opacity: 0.5;
  -moz-opacity: 0.5;
  filter: alpha(opacity=50);
}

.video-modal .modal-header {
  padding: 0px;
  min-height: auto;
  border: 0px;
}

.video-modal .modal-header .close {
  width: 20px;
  height: 20px;
  margin-top: -2px;
  position: absolute;
  right: -10px;
  top: -25px;
  z-index: 9;
  opacity: 0.8;
  -khtml-opacity: 0.8;
  -moz-opacity: 0.8;
  filter: alpha(opacity=80);
  color: #fff;
  background: url("../img/close.png") no-repeat;
}

.video-modal .modal-header .close:hover {
  opacity: 1;
  -khtml-opacity: 1;
  -moz-opacity: 1;
  filter: alpha(opacity=100);
}

.video-modal .modal-content {
  border: 0px;
  -webkit-border-radius: 0;
  -khtml-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
  position: relative;
  margin-top: 100px;
}

.video-modal .modal-body {
  padding: 0;
}

/* ---------------------------------------------------------------------- */
/* 7. SOLUTIONS
/* ---------------------------------------------------------------------- */
/* Custom Bootstrap tabs */
.nav-tabs {
  border-bottom: 0;
  margin-bottom: 60px;
  width: auto;
  display: inline-block;
}

.nav-tabs li {
  font-family: "walkway", sans-serif;
  font-weight: bold;
  letter-spacing: 0.1em;
}

.nav-tabs li a {
  -webkit-border-radius: 4px;
  -khtml-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
  color: #fff;
  border: solid 1px #fff;
  margin-right: 10px;
  padding: 12px 30px;
  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -ms-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

.nav-tabs li a:hover, .nav-tabs li a:focus, .nav-tabs li a:active {
  background-color: #f5f5f5;
  border-color: #f5f5f5;
  color: #2c364b;
  -webkit-box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
  -khtml-box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
  -ms-box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.tab-content {
  letter-spacing: 0.01em;
}

.tab-content h4 {
  font-size: 22px;
  font-weight: 500;
}

.tab-content h4 strong {
  color: #82c4f8;
}

@media (max-width: 480px) {
  .nav-tabs li {
    margin-bottom: 10px;
    display: block;
    width: 100%;
  }
}

/* ---------------------------------------------------------------------- */
/* 8. FEATURES
/* ---------------------------------------------------------------------- */
/* Features description */
.features-left {
  text-align: right;
}

.features-left i {
  float: right;
  margin-left: 20px;
}

.features-right {
  text-align: left;
}

.features-right i {
  float: left;
  margin-right: 20px;
}

.feature {
  margin-bottom: 30px;
}

.feature .title-features {
  color: #fff;
  font-family: "walkway", sans-serif;
  font-weight: bold;
  margin-top: 5px;
  margin-bottom: 30px;
  letter-spacing: 0.02em;
}

.feature .title-features i {
  color: #58c4c4;
}

@media (max-width: 980px) {
  .feature .title-features {
    font-size: 22px;
  }
  .feature .title-features i {
    margin-top: 5px;
    margin-bottom: 15px;
  }
}

@media (min-width: 750px) {
  .features-left, .features-right {
    padding-top: 35px;
  }
}

/* Screenshots slider */
#screens-slider img {
  height: 480px;
  width: auto;
  margin: 0 auto;
}

@media (max-width: 320px) {
  #screens-slider img {
    height: auto;
    width: 100%;
  }
}

#screens2-slider .slick-list {
  width: 92%;
  left: 4%;
}

#screens2-slider .slick-slide {
  padding: 0 16px;
}

#screens2-slider .slick-slide img {
  width: 100%;
}

#screens2-slider .slick-slide:not(.slick-center) {
  margin-top: 20px;
}

#screens2-slider .slick-slide.slick-center {
  margin-top: 0;
}

#screens2-slider .slick-slide.slick-center img {
  width: calc(100% + 40px);
  margin-left: -20px;
}

/* Well */
.well {
  position: relative;
  border: 0;
  padding: 0;
  background-color: #24272e;
  min-height: 20px;
  -webkit-border-radius: 3px;
  -khtml-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  -webkit-box-shadow: none;
  -khtml-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  box-shadow: none;
}

.well .title-features {
  background-color: #45bdbd;
  color: #fff;
  padding: 20px 24px;
  margin: 0;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}

.well .title-features i {
  color: #fff;
}

.well .title-features-2 {
  background-color: #52648b;
  color: #fff;
  padding: 20px 24px;
  margin: 0;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}

.well .title-features-2 i {
  color: #fff;
}

.well .img-features {
  display: block;
  width: 100%;
  border-top: solid 1px #2b2e37;
  border-bottom: solid 1px #2b2e37;
}

.well .text-features {
  padding: 20px 24px;
}

/* Tabs Features */
.tabs-features {
  margin-top: -5px;
  margin-bottom: 25px;
}

.tabs-features li > a {
  border: solid 1px #cad1e0;
}

.tabs-features li.active > a {
  background-color: #2196F3;
  border: solid 1px #2196F3;
  color: #fff;
}

.tabs-features li.active > a:hover, .tabs-features li.active > a:focus, .tabs-features li.active > a:active {
  color: #fff;
  background-color: #2196F3;
  border: solid 1px #2196F3;
  -webkit-box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
  -khtml-box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
  -ms-box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

/* ---------------------------------------------------------------------- */
/* 9. SKILLS
/* ---------------------------------------------------------------------- */
/* Circle Charts */
.easy-pie-chart {
  position: relative;
  background-color: #fff;
  padding-bottom: 40px;
  padding-top: 80px;
}

.chart {
  position: relative;
  display: inline-block;
  width: 120px;
  height: 120px;
  text-align: center;
}

.chart canvas {
  position: absolute;
  top: 0;
  left: 0;
}

.chart span {
  line-height: 120px !important;
  text-align: center;
  font-family: "walkway", sans-serif;
  font-weight: bold;
  font-size: 20px;
}

.progress-circle {
  display: inline-block;
  text-align: center;
  margin-left: 30px;
}

.progress-text {
  font-family: "walkway", sans-serif;
  font-weight: normal;
  margin-top: 30px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: 15px;
}

@media (max-width: 767px) {
  .progress-circle {
    margin-left: 0;
  }
}

/* Banner */
.banner {
  position: absolute;
  width: 100%;
  padding: 50px 0;
  left: 0;
  bottom: 0;
  color: #fff;
  background: rgba(0, 0, 0, 0.15);
}

.banner h2 {
  font-family: "walkway", sans-serif;
  font-weight: bold;
  margin: 0;
  font-size: 40px;
}

@media (max-width: 480px) {
  .banner h2 {
    font-size: 36px;
  }
  .banner h2 a {
    margin-top: 15px;
    display: block;
  }
}

/* ---------------------------------------------------------------------- */
/* 10. TEAM
/* ---------------------------------------------------------------------- */
/* Team boxes */
.team h3 {
  color: #fff;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 0.02em;
  font-size: 20px;
}

.team .team-description {
  position: relative;
  padding: 24px 20px;
  background: #3f4d6b;
  color: #fff;
  -webkit-border-radius: 4px;
  -khtml-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
}

.team .team-description h4, .team .team-description h4 > a {
  color: #58c4c4;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 0.02em;
  font-size: 15px;
}

.team .team-description figure {
  position: absolute;
  top: -65px;
  right: -65px;
}

.team .team-description figure > img {
  width: 128px;
  -webkit-border-radius: 100px;
  -khtml-border-radius: 100px;
  -moz-border-radius: 100px;
  -ms-border-radius: 100px;
  border-radius: 100px;
  border: solid 4px #24272e;
  -webkit-filter: grayscale(30%);
  -moz-filter: grayscale(30%);
  filter: grayscale(30%);
  -webkit-transition: all 200ms ease-in-out;
  -moz-transition: all 200ms ease-in-out;
  -ms-transition: all 200ms ease-in-out;
  -o-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
}

.team .team-description figure > img:hover {
  -webkit-filter: grayscale(0);
  -moz-filter: grayscale(0);
  filter: grayscale(0);
}

.team .team-description .icosdown {
  text-align: center;
}

.team .team-description .icosdown a {
  display: inline-block;
  background: rgba(0, 0, 0, 0.1);
  color: #fff;
  font-size: 16px;
  height: 30px;
  line-height: 30px;
  margin-right: 8px;
  width: 30px;
  -webkit-border-radius: 2px;
  -khtml-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
  -webkit-transition: all 100ms linear;
  -moz-transition: all 100ms linear;
  -ms-transition: all 100ms linear;
  -o-transition: all 100ms linear;
  transition: all 100ms linear;
}

.team .team-description .icosdown a:hover, .team .team-description .icosdown a:focus, .team .team-description .icosdown a:active {
  background: #f9f9f9;
  color: #3f4d6b;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
  -khtml-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
  -ms-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
}

@media (max-width: 980px) {
  .team h3 {
    text-align: center;
  }
  .team .team-description {
    margin-top: 130px;
    padding-top: 28px;
  }
  .team .team-description figure {
    width: 140px;
    margin-right: -70px;
    top: -115px;
    right: 50%;
  }
  .team .team-description figure a > img {
    width: 140px;
  }
}

@media (max-width: 767px) {
  .team .team-description {
    margin-bottom: 25px;
    margin-left: auto;
    margin-right: auto;
    max-width: 380px;
  }
}

/* ---------------------------------------------------------------------- */
/* 11. REVIEWS
/* ---------------------------------------------------------------------- */
/* Slick carousel plugin */
/* Slider */
.slick-loading .slick-list {
  background: #fff;
}

.slick-list .slick-slide {
  padding: 0 2px;
}

.slick-list .slick-slide img {
  width: 100%;
}

#clients .slick-list {
  width: 92%;
  left: 4%;
}

#news {
  margin-left: -15px;
  margin-right: -15px;
}

#news .slick-slide {
  padding: 0 15px;
}

@media (max-width: 800px) {
  #clients .slick-list {
    width: 90%;
    left: 5%;
  }
}

/* Icons */
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 30px;
  width: 30px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  margin-top: -10px\9;
  /*lte IE 8*/
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}

.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}

.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}

.slick-prev:before, .slick-next:before {
  font-family: "fontawesome";
  font-size: 30px;
  line-height: 1;
  color: #999;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: 0;
}

[dir="rtl"] .slick-prev {
  left: auto;
  right: -25px;
}

.slick-prev:before {
  content: "";
}

[dir="rtl"] .slick-prev:before {
  content: "";
}

.slick-next {
  right: 0;
}

[dir="rtl"] .slick-next {
  left: -25px;
  right: auto;
}

.slick-next:before {
  content: "";
}

[dir="rtl"] .slick-next:before {
  content: "";
}

/* Dots */
.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -45px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  width: 90%;
  left: 5%;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  height: 40px;
  width: 30px;
  margin: 0;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 40px;
  width: 25px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}

.slick-dots li button:before {
  position: absolute;
  bottom: 0;
  left: 0;
  content: '';
  border: 0;
  width: 25px;
  height: 5px;
  background: #ddd;
  opacity: 1;
  -khtml-opacity: 1;
  -moz-opacity: 1;
  filter: alpha(opacity=100);
  -webkit-border-radius: 10px;
  -khtml-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
}

.slick-dots li.slick-active button:before {
  width: 25px;
  height: 5px;
  border: 0;
  background: #58c4c4;
  margin-top: 0;
}

@media (max-width: 480px) {
  .slick-dots li {
    width: 10px;
  }
  .slick-dots li button {
    border: 0;
    height: 40px;
    width: 5px;
    cursor: pointer;
  }
  .slick-dots li button:hover, .slick-dots li button:focus {
    outline: none;
  }
  .slick-dots li button:before {
    width: 5px;
    height: 5px;
  }
  .slick-dots li.slick-active button:before {
    width: 5px;
    height: 5px;
  }
}

.slick-loading .slick-list {
  background: #fff url("../img/ajax-loader.gif") center center no-repeat;
}

.slick-list .slick-slide {
  padding: 0 2px;
}

/* Reviews carousel */
#reviews .slick-prev, #reviews .slick-next {
  top: 60%;
}

#reviews h4 {
  font-weight: bold;
}

#reviews .reviews-item figure {
  width: 100%;
  text-align: center;
  margin-bottom: 10px;
}

#reviews .reviews-item figure img {
  display: inline;
  width: 110px !important;
  height: auto;
  float: none !important;
  -webkit-border-radius: 110px;
  -khtml-border-radius: 110px;
  -moz-border-radius: 110px;
  -ms-border-radius: 110px;
  border-radius: 110px;
}

#reviews .reviews-item .star-rating {
  margin-top: -5px;
  color: #FFC107;
  font-size: 17px;
}

#reviews .reviews-item blockquote {
  text-align: center;
  border: none;
  font-size: 16px;
}

#reviews .reviews-item blockquote .row {
  margin: 0;
}

#reviews .reviews-item blockquote .row .col-xs-1 {
  max-width: 40px;
  padding-left: 30px;
  padding-right: 30px;
}

#reviews .reviews-item blockquote .row .col-xs-1 .fa-quote-left {
  color: #3f4d6b;
  font-size: 20px;
  display: inline-block;
}

#reviews .reviews-item blockquote .row .col-xs-1 .fa-quote-right {
  color: #3f4d6b;
  font-size: 20px;
  display: inline-block;
}

@media (max-width: 980px) {
  #reviews-slider blockquote {
    padding-left: 0;
  }
  #reviews-slider blockquote .row .col-xs-1 {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 480px) {
  #reviews-slider blockquote div > div > p {
    padding-left: 15px;
    margin-right: -10px;
  }
}

@media (max-width: 360px) {
  #reviews-slider blockquote div > div > p {
    padding-left: 12px;
    margin-right: -15px;
  }
}

/* ---------------------------------------------------------------------- */
/* 12. OUR CLIENTS
/* ---------------------------------------------------------------------- */
/* Clients carousel */
#clients .slick-list {
  width: 92%;
  left: 4%;
}

#clients .slick-slide {
  padding: 0 2px;
}

#clients .slick-slide img {
  width: 100%;
  border: solid 1px #555;
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  filter: grayscale(100%);
}

#clients .slick-slide img:hover, #clients .slick-slide img:focus {
  border-color: #999;
  -webkit-filter: grayscale(0);
  -moz-filter: grayscale(0);
  filter: grayscale(0);
}

/* ---------------------------------------------------------------------- */
/* 13. PRICING TABLES
/* ---------------------------------------------------------------------- */
/* Tables layout */
.package {
  text-align: center;
  padding: 4px;
}

.package h3, .package h4 {
  display: block;
  margin: 0;
  color: #fff;
  font-family: "walkway", sans-serif;
  font-weight: bold;
  letter-spacing: 0.02em;
}

.package h3 {
  background: #3f4d6b;
  font-size: 30px;
  padding: 24px 0;
  text-transform: uppercase;
  -webkit-border-radius: 4px 4px 0 0;
  -khtml-border-radius: 4px 4px 0 0;
  -moz-border-radius: 4px 4px 0 0;
  -ms-border-radius: 4px 4px 0 0;
  border-radius: 4px 4px 0 0;
}

.package h4 {
  background: #52648b;
  font-size: 30px;
  padding: 16px 0;
  font: "walkway", sans-serif;
}

.package h4:after {
  content: '';
  position: absolute;
  right: 45%;
  top: 146px;
  width: 0;
  height: 0;
  border: 12px solid transparent;
  border-top: 10px solid #52648b;
}

.package h4 sup {
  font: "walkway", sans-serif;
  font-weight: normal;
  font-size: 18px;
  top: -0.35em;
  padding-right: .1em;
}

.package h4 small {
  font: "walkway", sans-serif;
  font-weight: normal;
  font-size: 22px;
  color: #f9f9f9;
}

.package ul {
  list-style: none;
  padding: 0;
}

.package ul li {
  background-color: #eee;
  color: #2b2e37;
  font-size: 15px;
  letter-spacing: 0.02em;
  padding: 14px 0;
  font-family: "Exo 2", sans-serif;
  -webkit-box-shadow: inset 0 0 1px #c5c5c5;
  -khtml-box-shadow: inset 0 0 1px #c5c5c5;
  -moz-box-shadow: inset 0 0 1px #c5c5c5;
  -ms-box-shadow: inset 0 0 1px #c5c5c5;
  box-shadow: inset 0 0 1px #c5c5c5;
}

.package ul li a {
  font-family: "Exo 2", sans-serif;
  font-weight: 400;
  display: block;
  width: 100%;
  margin: 0 auto;
  padding: 16px 30px;
  border: 1px solid #52648b;
  font-size: 18px;
  background: #52648b;
  color: #fff;
  letter-spacing: 0.01em;
  -webkit-border-radius: 0 0 4px 4px;
  -khtml-border-radius: 0 0 4px 4px;
  -moz-border-radius: 0 0 4px 4px;
  -ms-border-radius: 0 0 4px 4px;
  border-radius: 0 0 4px 4px;
  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -ms-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

.package ul li a:hover, .package ul li a:focus {
  background: #3f4d6b;
  border-color: #3f4d6b;
  color: #fff;
  -webkit-box-shadow: 0 6px 10px rgba(0, 0, 0, 0.05);
  -khtml-box-shadow: 0 6px 10px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0 6px 10px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 0 6px 10px rgba(0, 0, 0, 0.05);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.05);
}

.package ul li a:after {
  content: '';
  position: absolute;
  right: 45%;
  bottom: 56px;
  width: 0;
  height: 0;
  border: 12px solid transparent;
  border-top: 10px solid #eee;
}

.package ul li:last-child {
  background: transparent;
  padding: 0;
  border: 0;
  -webkit-box-shadow: none;
  -khtml-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  box-shadow: none;
}

.package ul li:last-child:hover, .package ul li:last-child:focus {
  background: transparent;
  border: 0;
  -webkit-box-shadow: none;
  -khtml-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  box-shadow: none;
}

.package ul li:hover {
  background: #f2f2f2;
}

.package.popular h3 {
  background: #58c4c4;
}

.package.popular h4 {
  background: #6bcbcb;
}

.package.popular h4:after {
  border-top-color: #6bcbcb;
}

.package.popular a {
  background: #58c4c4;
  border-color: #58c4c4;
}

.package.popular a:hover, .package.popular a:focus {
  background: #3dacac;
  border-color: #3dacac;
  color: #fff;
  -webkit-box-shadow: 0 6px 10px rgba(0, 0, 0, 0.05);
  -khtml-box-shadow: 0 6px 10px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0 6px 10px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 0 6px 10px rgba(0, 0, 0, 0.05);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.05);
}

.group-inline > .btn {
  margin: 0 1px;
}

.download {
  color: #fff;
  background: url(../img/bg-buy.jpg) no-repeat #3f4d6b;
}

.download h3, .download p {
  color: #fff;
}

@media (max-width: 480px) {
  .download img {
    width: 90%;
  }
  .download .btn {
    display: block;
    margin-bottom: 10px;
  }
}

/* ---------------------------------------------------------------------- */
/* 14. BLOG
/* ---------------------------------------------------------------------- */
/* Blog post boxes */
.post-box {
  position: relative;
}

.post-box .img-box {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.post-box .img-box img {
  display: block;
  width: 180px;
  margin: 0 auto 20px;
}

.post-box .lead {
  font-size: 17px;
}

.post-box .txt-box {
  padding: 0 30px 10px;
}

.post-box .txt-box .entry-title, .post-box .txt-box h3 {
  font-weight: bold;
  line-height: 1.2;
  color: #F9F9F9;
}

.post-box .txt-box .entry-title a, .post-box .txt-box h3 a {
  color: #F9F9F9;
}

.post-box .txt-box .entry-title a:hover, .post-box .txt-box .entry-title a:focus, .post-box .txt-box h3 a:hover, .post-box .txt-box h3 a:focus {
  color: #58c4c4;
}

.post-box .txt-box .entry-title {
  font-size: 28px;
}

.post-box .comment-num {
  position: absolute;
  padding: 2px 10px;
  text-align: center;
  bottom: 0;
  left: 20px;
  background: #2b2e37;
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
  color: #f9f9f9;
  font-weight: 500;
}

.post-box .author {
  font-weight: bold;
}

.post-box .category {
  margin: 30px 0;
  padding: 0;
}

.post-box .category li {
  display: inline-block;
  margin-right: 5px;
}

.post-box .category a {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 15px;
  font-style: italic;
  padding: 2px 10px 3px;
  border: 1px solid #414654;
  color: #a0a0a0;
  -webkit-border-radius: 2px;
  -khtml-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
  -webkit-transition: all ease-in-out 200ms;
  -moz-transition: all ease-in-out 200ms;
  -ms-transition: all ease-in-out 200ms;
  -o-transition: all ease-in-out 200ms;
  transition: all ease-in-out 200ms;
}

.post-box .category a:hover, .post-box .category a:focus {
  background-color: #58c4c4;
  border-color: #58c4c4;
  color: #fff;
  -webkit-box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
  -khtml-box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
  -ms-box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

/* Sidebar */
.sidebar .widget {
  border: 0;
  padding: 20px 24px;
  background-color: #24272e;
  min-height: 20px;
  margin-bottom: 25px;
  -webkit-border-radius: 3px;
  -khtml-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  -webkit-box-shadow: none;
  -khtml-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  box-shadow: none;
}

.sidebar .widget.ads {
  padding: 0;
}

.sidebar .widget.ads img {
  -webkit-border-radius: 3px;
  -khtml-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  width: 100%;
  height: auto;
}

.sidebar .widget h3 {
  font-weight: bold;
  letter-spacing: 0.02em;
  color: #58c4c4;
  margin-bottom: 20px;
  margin-top: 10px;
}

.sidebar .widget .input-group {
  margin-bottom: 15px;
}

.sidebar .widget .input-group .form-control {
  border-color: rgba(63, 77, 107, 0.2);
  min-height: 37px;
  -webkit-box-shadow: none;
  -khtml-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  box-shadow: none;
}

.sidebar .widget .input-group .input-group-btn > .btn {
  padding: 6px 12px;
  background-color: #3f4d6b;
  border-color: #3f4d6b;
  color: #fff;
}

.sidebar .widget .input-group .input-group-btn > .btn:hover, .sidebar .widget .input-group .input-group-btn > .btn:focus {
  background-color: #58c4c4;
  border-color: #58c4c4;
  color: #fff;
  -webkit-box-shadow: none;
  -khtml-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  box-shadow: none;
}

.sidebar .widget .input-group ::-webkit-input-placeholder {
  color: rgba(63, 77, 107, 0.3);
}

.sidebar .widget .input-group ::-moz-placeholder {
  color: rgba(63, 77, 107, 0.3);
}

.sidebar .widget .input-group :-ms-input-placeholder {
  color: rgba(63, 77, 107, 0.3);
}

.sidebar .widget .input-group :-moz-placeholder {
  color: rgba(63, 77, 107, 0.3);
}

/* Comments */
.comments-dark {
  background-color: #24272e;
  border-color: #24272e;
}

.comments-title, .media-heading {
  font-weight: bold;
}

.comments-title small, .media-heading small {
  font-weight: 500;
}

.media {
  margin-top: 20px;
}

.media img.media-object {
  width: 64px;
  -webkit-border-radius: 3px;
  -khtml-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  margin-top: 1px;
  margin-right: 5px;
}

@media (max-width: 800px) {
  .main {
    margin-bottom: 30px;
  }
}

/* Tabs panel */
.tabbable-panel {
  border: 0;
  padding: 0;
  margin: 0;
}

.tabbable-line > .nav-tabs {
  border: none;
  margin: 0px;
}

.tabbable-line > .nav-tabs > li {
  margin-right: 2px;
  border-bottom: 4px solid transparent;
}

.tabbable-line > .nav-tabs > li > a {
  border: 0;
  margin-right: 0;
  color: #f8f8f8;
  padding: 12px 15px;
  -webkit-box-shadow: none !important;
  -khtml-box-shadow: none !important;
  -moz-box-shadow: none !important;
  -ms-box-shadow: none !important;
  box-shadow: none !important;
}

.tabbable-line > .nav-tabs > li > a > i {
  color: #2196F3;
}

.tabbable-line > .nav-tabs > li.open, .tabbable-line > .nav-tabs > li:hover, .tabbable-line > .nav-tabs > li:focus {
  background: transparent;
  border-bottom: 4px solid #58c4c4;
}

.tabbable-line > .nav-tabs > li.open > a, .tabbable-line > .nav-tabs > li:hover > a, .tabbable-line > .nav-tabs > li:focus > a {
  border: 0;
  background: transparent;
  color: #f8f8f8;
}

.tabbable-line > .nav-tabs > li.open > a > i, .tabbable-line > .nav-tabs > li:hover > a > i {
  color: #a6a6a6;
}

.tabbable-line > .nav-tabs > li.open .dropdown-menu, .tabbable-line > .nav-tabs > li:hover .dropdown-menu {
  margin-top: 0px;
}

.tabbable-line > .nav-tabs > li.active {
  border-bottom: 4px solid #2196F3;
  position: relative;
}

.tabbable-line > .nav-tabs > li.active > a {
  background: transparent;
  border: 0;
  color: #fff;
}

.tabbable-line > .nav-tabs > li.active > a > i {
  color: #fff;
}

.tabbable-line > .tab-content {
  margin-top: -4px;
  background-color: transparent;
  border: 0;
  border-top: solid 1px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
}

.tabbable-line > .tab-content .recent-posts {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
}

.tabbable-line > .tab-content .recent-posts li {
  padding-bottom: 8px;
  margin-bottom: 10px;
  border-bottom: solid 1px rgba(0, 0, 0, 0.08);
  font-size: 90%;
}

.tabbable-line > .tab-content .recent-posts li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}

/* Pagination */
.pagination > li > a, .pagination > li > span {
  color: #3f4d6b;
}

.pagination > .active > a, .pagination > .active > a:focus,
.pagination > .active > a:hover, .pagination > .active > span,
.pagination > .active > span:focus, .pagination > .active > span:hover {
  background-color: #3f4d6b;
  border-color: #3f4d6b;
}

/* ---------------------------------------------------------------------- */
/* 15. BUTTONS
/* ---------------------------------------------------------------------- */
/* Buttons */
.btn {
  position: relative;
  -webkit-border-radius: 4px;
  -khtml-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
  padding: 12px 40px;
  font-family: "walkway", sans-serif;
  letter-spacing: 0.02em;
  font-weight: bold;
  font-size: 18px;
  border: 0;
  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -ms-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

.btn:active, .btn:focus, .btn.active, .btn.active:focus {
  outline: 0;
}

.btn:hover, .btn:active, .btn:focus, .btn.active, .btn.active:focus {
  -webkit-box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
  -khtml-box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
  -ms-box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.btn-theme {
  background: #58c4c4;
  color: #fff;
}

.btn-theme-outline {
  border: 2px solid #58c4c4;
  background: transparent;
  color: #fff;
  border-radius: 10px;
  font-size: 16px;
  font-weight: normal;
  letter-spacing: 0.08em;
  padding: 12px 20px;
}

.btn-theme-outline:hover, .btn-theme-outline:focus, .btn-theme-outline:active {
  border: 2px solid #58c4c4;
  background: #58c4c4;
  color: #333;
}

.btn-theme:hover, .btn-theme:focus, .btn-theme:active {
  background: #fff;
  color: #3f4d6b;
}

.btn-theme-alt {
  background: #39a1f4;
  color: #fff;
}

.btn-theme-alt:hover, .btn-theme-alt:focus, .btn-theme-alt:active {
  background: #fafafc;
  color: #3f4d6b;
}

.btn-primary {
  background: #fafafc;
  border-color: #fafafc;
  color: #3f4d6b;
}

.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
  background: #2196F3;
  border-color: #2196F3;
  color: #fff;
}

/* ---------------------------------------------------------------------- */
/* 16. CONTACT FORM & NEWSLETTER
/* ---------------------------------------------------------------------- */
/* Contact form */
.contact-form .form-control, .newsletter .form-control {
  font-family: "walkway", sans-serif;
  height: auto;
  font-weight: 500;
  letter-spacing: 0.02em;
  width: 100%;
  background: #fff;
  border: 0;
  padding: 14px 20px;
  font-size: 14px;
  line-height: 18px;
  color: #555555;
  resize: none;
  -webkit-border-radius: 4px;
  -khtml-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
  -khtml-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
  -ms-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
}

.contact-form .form-control:focus, .newsletter .form-control:focus {
  -webkit-box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  -khtml-box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  -ms-box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  outline: 0;
}

.contact-form .btn-contact, .newsletter .btn-contact {
  background: #2196F3;
  letter-spacing: 0.01em;
  -webkit-border-radius: 4px;
  -khtml-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
}

.contact-form .btn-contact:hover, .contact-form .btn-contact:focus, .newsletter .btn-contact:hover, .newsletter .btn-contact:focus {
  background: #58c4c4;
  color: #fff;
}

.contact-form .form-group, .newsletter .form-group {
  margin-bottom: 25px;
}

.contact-form .error, .newsletter .error {
  display: block;
  margin-top: 4px;
  margin-bottom: -15px;
  font-size: 88%;
  color: #2196F3;
}

.contact-form .has-success > .error, .newsletter .has-success > .error {
  margin-bottom: 5px;
}

.contact-form ::-webkit-input-placeholder, .newsletter ::-webkit-input-placeholder {
  color: #3f4d6b;
}

.contact-form :-moz-placeholder, .newsletter :-moz-placeholder {
  /* Firefox 18- */
  color: #3f4d6b;
}

.contact-form ::-moz-placeholder, .newsletter ::-moz-placeholder {
  /* Firefox 19+ */
  color: #3f4d6b;
}

.contact-form :-ms-input-placeholder, .newsletter :-ms-input-placeholder {
  color: #3f4d6b;
}

.contact-form ::-moz-selection, .newsletter ::-moz-selection {
  /* Code for Firefox */
  color: #3f4d6b;
}

.contact-form ::selection, .newsletter ::selection {
  color: #3f4d6b;
}

@media (max-width: 767px) {
  .contact-form {
    padding-top: 15px;
  }
}

.alert-success {
  background: transparent !important;
  color: #58c4c4 !important;
  border-color: #58c4c4 !important;
  padding: 14px 20px !important;
}

.alert-danger {
  background: transparent !important;
  color: #f32121 !important;
  border-color: #f32121 !important;
  padding: 14px 20px !important;
}

/* Contact info */
.contact-info h3 {
  font-weight: bold;
  line-height: 0.02em;
}

.contact-info i {
  color: #58c4c4;
}

/* Newsletter */
.newsletter h3 {
  letter-spacing: 0.01em;
}

.newsletter h3 strong {
  letter-spacing: 0.02em;
}

.newsletter .subscribe-container .subscribe-form {
  -webkit-border-radius: 4px;
  -khtml-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
  display: block;
  position: relative;
}

.newsletter .subscribe-container .subscribe-form input {
  background: #fff;
  border: 0 none;
  color: #555555;
  font-weight: 400;
  width: 100%;
  padding-left: 15px;
  min-height: 50px;
  -webkit-border-radius: 4px;
  -khtml-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
  -khtml-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
  -ms-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
}

.newsletter .subscribe-container .subscribe-form input:hover, .newsletter .subscribe-container .subscribe-form input:focus {
  -webkit-box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  -khtml-box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  -ms-box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  outline: 0;
}

.newsletter .subscribe-container .subscribe-form button {
  background: #fff;
  border: 0 none;
  color: #58c4c4;
  float: right;
  font-size: 16px;
  padding-left: 15px;
  padding-right: 15px;
  position: absolute;
  right: 0;
  top: 0;
  min-height: 50px;
  -webkit-border-radius: 0 4px 4px 0;
  -khtml-border-radius: 0 4px 4px 0;
  -moz-border-radius: 0 4px 4px 0;
  -ms-border-radius: 0 4px 4px 0;
  border-radius: 0 4px 4px 0;
  -webkit-transition: all 200ms ease-in-out;
  -moz-transition: all 200ms ease-in-out;
  -ms-transition: all 200ms ease-in-out;
  -o-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
}

.newsletter .subscribe-container .subscribe-form button:hover, .newsletter .subscribe-container .subscribe-form button:focus {
  background: #58c4c4;
  color: #fff;
  outline: 0;
}

.newsletter .subscribe-container input::-webkit-input-placeholder {
  color: #3f4d6b;
  opacity: 0.8;
  -khtml-opacity: 0.8;
  -moz-opacity: 0.8;
  filter: alpha(opacity=80);
}

/* Social networks */
.social-contact {
  padding-top: 15px;
}

.social-contact .fa {
  color: #58c4c4;
  width: 40px;
  height: 40px;
  border: solid 3px #58c4c4;
  font-size: 20px;
  text-align: center;
  padding-top: 7px;
  margin-right: 20px;
  text-decoration: none;
  -webkit-border-radius: 50%;
  -khtml-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  -webkit-transition: all 0.1s linear;
  -moz-transition: all 0.1s linear;
  -ms-transition: all 0.1s linear;
  -o-transition: all 0.1s linear;
  transition: all 0.1s linear;
}

.social-contact .fa:hover, .social-contact .fa:focus {
  background-color: #58c4c4;
  color: #3f4d6b;
}

@media (max-width: 980px) {
  .social-contact {
    text-align: center;
    clear: both;
    margin-top: 15px;
    margin-bottom: 30px;
  }
}

footer {
  background-color: #2c364b;
  color: rgba(255, 255, 255, 0.9);
}

footer ul.Keywords {
  margin: 0;
  padding: 0;
  padding-top: 10px;
  margin-left: 0.5em;
}

footer ul.Keywords li {
  float: left;
  width: 33.3%;
  font-size: 13px;
  line-height: 25px;
  padding-left: 1em;
  list-style: none;
}

footer ul.Keywords li:before {
  content: "\f105";
  font-family: "FontAwesome";
  display: inline-block;
  width: 1em;
  margin-left: -1.5em;
  color: #2196F3;
}

footer hr {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

footer a {
  color: rgba(255, 255, 255, 0.9);
  padding-bottom: 2px;
  -webkit-transition: color 200ms ease-in-out;
  -moz-transition: color 200ms ease-in-out;
  -ms-transition: color 200ms ease-in-out;
  -o-transition: color 200ms ease-in-out;
  transition: color 200ms ease-in-out;
}

footer a:hover, footer a:focus, footer a:active {
  color: #51adf6;
}

footer .footer-menu-divider {
  font-size: 7px;
  vertical-align: middle;
  color: #58c4c4;
  margin: 8px 4px;
}

footer .copyright {
  margin: 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 480px) {
  footer ul.Keywords li {
    width: 49%;
  }
  footer .footer2 {
    text-align: center;
  }
  footer .footer2 .text-right {
    text-align: center !important;
    padding-top: 10px;
  }
}

@media (max-width: 320px) {
  footer ul.Keywords li {
    font-size: 12px;
    line-height: 23px;
  }
}

/* Back to top */
#scrollToTop {
  width: 40px;
  height: 40px;
  line-height: 38px;
  text-align: center;
  text-align: center;
  font-weight: bold;
  color: #fff;
  font-size: 20px;
  text-decoration: none;
  position: fixed;
  bottom: 10px;
  right: 15px;
  z-index: 99;
  display: none;
  background: #58c4c4;
  -webkit-border-radius: 3px;
  -khtml-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

#scrollToTop:hover {
  background: #3f4d6b;
  text-decoration: none;
  opacity: 1;
  -khtml-opacity: 1;
  -moz-opacity: 1;
  filter: alpha(opacity=100);
  color: #fff;
}

/* ---------------------------------------------------------------------- */
/* 18. FAQ
/* ---------------------------------------------------------------------- */
/* Accordion */
.accordion {
  padding: 0;
}

.accordion .panel {
  border: 0;
  margin: 0 0 10px;
  background-color: transparent;
  -webkit-box-shadow: none;
  -khtml-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  box-shadow: none;
  -webkit-border-radius: 2px;
  -khtml-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
}

.accordion .panel-collapse {
  line-height: 18px;
}

.accordion .panel-collapse .text {
  padding: 15px 20px;
  font-weight: 400;
}

.accordion h4 {
  margin: 0;
  padding: 0;
}

.accordion h4 a {
  -webkit-border-radius: 3px;
  -khtml-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  text-decoration: none;
  background: #F9F9F9;
  color: #3f4d6b;
  font-weight: bold;
  display: block;
  font-size: 16px;
  line-height: 40px;
  padding: 0 0 0 60px;
  position: relative;
  text-transform: none;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.accordion h4 a span {
  background-color: #2196F3;
  color: #fff;
  display: block;
  font-size: 20px;
  font-weight: 700;
  height: 100%;
  left: 0;
  line-height: 35px;
  position: absolute;
  text-align: center;
  top: 0;
  width: 40px;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}

.accordion h4 a span:before {
  content: "-";
}

.accordion h4 a:hover, .accordion h4 a:focus {
  text-decoration: none;
}

.accordion h4 a.collapsed {
  background: #F9F9F9;
  color: #3f4d6b;
  display: block;
  font-size: 16px;
  line-height: 40px;
  padding: 0 0 0 60px;
  position: relative;
  text-transform: none;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
  -khtml-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
  -ms-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
}

.accordion h4 a.collapsed span:before {
  content: "+";
}

/* ------------------------------------
    06. Slider Section CSS
---------------------------------------*/
.rs-slider.main-home {
  position: relative;
}
.rs-slider.main-home .slider-content {
  text-align: left;
  height: 600px;
}
.rs-slider.main-home .slider-content .content-part {
  padding: 200px 35px 400px 0;
  max-width: 640px;
}
.rs-slider.main-home .slider-content .content-part .content-part-inner {
  background: rgba(0,0,0,0.5);
  padding: 3px 20px 30px;
}
.rs-slider.main-home .slider-content .content-part .sl-sub-title {
  font-size: 22px;
  line-height: 30px;
  font-weight: 500;
  color: #58c4c4;
  margin-bottom: 22px;
  text-transform: uppercase;
  text-shadow: 0 0 5px rgba(0, 0, 0, 1);
}
.rs-slider.main-home .slider-content .content-part .sl-title {
  font-size: 30px;
  line-height: 32px;
  font-weight: 700;
  color: #ff8e28;
  margin-bottom: 0;
  text-shadow: 0 0 5px rgba(0, 0, 0, .5);
}
.rs-slider.main-home .slider-content .content-part .sl-title-desc {
  font-size: 18px;
  line-height: 27px;
  margin-bottom: 20px;
  padding-right: 40px;
  margin-top: 10px;
}
.rs-slider.main-home .slider-content.slide1 {
  background: url(../img/slider/1.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.rs-slider.main-home .slider-content.slide2 {
  background: url(../img/slider/2.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.rs-slider.main-home .slider-content.slide3 {
  background: url(../img/slider/3.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.rs-slider.main-home .owl-nav .owl-next,
.rs-slider.main-home .owl-nav .owl-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 30px;
  width: 42px;
  height: 42px;
  line-height: 42px;
  border-radius: 50%;
  background: #2196F3;
  text-align: center;
  color: #ffffff;
  transition: all 0.5s;
  transition-delay: 0.70s;
  opacity: 0;
  visibility: hidden;
}
.rs-slider.main-home .owl-nav .owl-next i:before,
.rs-slider.main-home .owl-nav .owl-prev i:before {
  content: "\f138";
  font-family: Flaticon;
}
.rs-slider.main-home .owl-nav .owl-next:hover,
.rs-slider.main-home .owl-nav .owl-prev:hover {
  background: #2196F3;
}
.rs-slider.main-home .owl-nav .owl-next {
  right: 30px;
  left: unset;
}
.rs-slider.main-home .owl-nav .owl-next i:before {
  content: "\f137";
}
.rs-slider.main-home:hover .owl-nav .owl-next,
.rs-slider.main-home:hover .owl-nav .owl-prev {
  left: 50px;
  transition-delay: 0s;
  visibility: visible;
  opacity: 1;
}
.rs-slider.main-home:hover .owl-nav .owl-next {
  right: 50px;
  left: unset;
}
.or_text {
  color: #fff;
  font-weight: bold;
  font-size: 27px;
  margin-top: 50px;
  margin-bottom: 20px;
}
.or_text::before, .or_text::after {
  content: '';
  display: inline-block;
  width: 150px;
  height: 5px;
  margin-right: 15px;
  margin-bottom: 6px;
  background-color: rgba(255,255,255,.2);
}
.or_text::after {
  margin-left: 15px;
}
.heading1 {
  font-size: 27px;
  color: #fff;
  text-align: center;
  font-weight: normal;
  margin-top: 0 !important;
  margin-bottom: 20px;
}
.own-plan-controller-detail {
  height: 211px;
  background-color: #1e1f23;
  border-radius: 15px;
  color: white;
  float: right;
  width: 404px;
  margin-right: 15px;
}
.pricing-section .second-box {
  vertical-align: middle;
  text-align: center;
  padding: 25px;
  color: #fff;
}
.pricing-section .second-box h1 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 18px;
  line-height: 30px;
  margin-top: 0;
}
.pricing-section .second-box h1 span {
  display: block;
  font-size: 48px;
}
.pricing-section .second-box h1 small {
  color: #fff;
}
.pricing-section .second-box h5 {
  font-size: 30px;
  color: #fff;
  display: block;
  margin-top: 0;
  text-align: right;
  line-height: 30px;
  margin-bottom: 37px;
}
.pricing-section .second-box h5 small {
  color: #fff;
}
.pricing-section .second-box h5 span {
  font-size: 16px;
  display: block;
}
.pricing-section hr {
  border-top: 1px solid #3a3d4a;
}
.btn-orange2 {
  text-transform: none;
  border: 0;
  padding: 12px 20px;
  border-radius: 4px;
  font-size: 17px;
}
.btn-orange2 {
  background-color: #3f4d6b;
  color: #fff;
}
.btn-orange2:hover {
  color: #58c4c4;
}
section.hosting .own-plan-controller {
  border-radius: 15px;
  padding: 15px 17px;
  width: 109%;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
section.hosting .own-plan-controller {
  padding-top: 12px;
  padding-right: 25px;
  padding-left: 23px;
  height: 209px;
}
section.hosting .own-plan-controller {
  background-color: #3f4d6b;
  color: #fff;
}
section.hosting .own-plan-controller strong {
  font-size: 14px;
  padding-left: 0;
  padding-top: 10px;
  display: block;
  font-weight: normal;
  letter-spacing: 1px;
}
.slide-plusminus.leftbt {
  margin-left: 0;
  float: left;
}
.slide-plusminus {
  padding: 3px;
  margin-top: 20px;
  border: 0;
  height: 18px;
  line-height: 14px;
  margin-right: 5px;
  background: #d17c17;
  font-size: 13px;
}
.sliderdiv {
  width: 93.5%;
  float: left;
}
.slide-plusminus.rightbt {
  margin-right: 0;
  float: right;
}
.slide-plusminus {
  padding: 3px;
  margin-top: 20px;
  border: 0;
  height: 18px;
  line-height: 14px;
  margin-left: 3px;
  background: #58c4c4;
}
.irs-with-grid { height: 54px; }
.irs-slider { height: 15px; top: 36px; }
.irs-line-left, .irs-line-mid, .irs-line-right, .irs-bar, .irs-bar-edge, .irs-line  { height: 10px; }
.irs-grid-text { bottom: -8px; }
.irs-grid { height: 20px; }
.irs-from, .irs-to, .irs-single{background: #58c4c4;}
.irs-grid-pol { top:6px; }
.btn-orange3 { background-color: #58c4c4; }
.btn-orange3 {
  text-transform: uppercase;
  border: 0;
  padding: 12px 40px;
  font-size: 25px;
  border-radius: 4px;
}
.section-features .img-box img {
  width: auto;
  margin-bottom: 0;
}
.section-features .txt-box {
  text-align: center;
}
.section-features h3 {
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.06em;
}
.featured_section116 .box {
  width: 100%;
  padding: 47px 40px 55px 40px;
  background: #24272e;
  text-align: center;
  box-shadow: 0px 0px 2px 0px rgb(0,0,0,0.6);
  min-height: 483px;
}
.featured_section116 .box h3 {
  font-size: 21px;
  line-height: 28px;
}
.button.twentynine {
  color: #fff;
  font-size: 13px;
  padding: 10px 25px;
  border-radius: 35px;
  white-space: nowrap;
  background: #393939;
  transition: all 0.3s ease;
}
.featured_section116.two {
  width: 100%;
  text-align: center;
  padding: 65px 0px;
  background: #2b2e37;
}
.section-features2 ul,
.section-features2 li {
  list-style: none;
}
.section-features2 li {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.section-features2 li i {
  color: #fff;
  font-size: 12px;
  width: 20px;
  height: 20px;
  vertical-align: middle;
  line-height: 23px;
  border-radius: 100%;
  text-align: center;
  margin-right: 10px;
  background-color: #3f4d6b;
  margin-bottom: 12px;
  margin-top: 2px;
}
.section-features2 li span {
  display: flex;
  flex-basis: calc(100% - 30px);
  justify-content: center;
  flex-direction: column;
}
.section-features2 iframe {
  width: 700px;
  border: 5px solid #353535;
  box-shadow: 0 0 15px 0px #000;
}
.section-gallery h1 strong {
  display: block;
}
.section-gallery p.bigtfont {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
}
.section-gallery img {
  width: 100%;
}
.costcalctab {
  width: 100%;
  min-height: 261px;
}
table.costcalctab tr td {
  padding: 10px;
  border: 1px solid #ccc;
  color: #000;
}
table.costcalctab tr td:first-child {
  text-align: left;
}
.costcalctab input {
  padding-left: 5px;
}
.calc_wrap .small {
  border: 2px solid #ecaf40;
  border-radius: 7px;
  font-size: 85%;
}
.calc_wrap .panel-heading {
  background-color: #3f4d6b;
  color: #fff;
}
.calc_wrap .panel {
  background: #e4e4e4;
  border: 1px solid #000000;
}
.footer {
  float: left;
  width: 100%;
  padding: 0;
  background: #313137;
  color: #c3c3c3;
}
.footer li {
  list-style: none;
}
.footer .secarea {
  float: left;
  width: 100%;
  padding: 50px 0px 35px 0px;
  background: #1c2329;
}
.footer .secarea h4 {
  margin-bottom: 14px;
}
.footer h4 {
  font-size: 22px;
  color: #fff;
  font-weight: normal;
}
.footer .foolist.navigate {
  margin-bottom: 27px;
}
.footer ul.foolist {
  float: left;
  width: 100%;
  padding: 0px;
  margin: 0px;
}
.footer .navigate-button {
  clear: both;
  margin-top: 10px;
}
.footer .foolist.bullet li {
  padding: 0;
  margin: 0;
  list-style: square inside;
}
.footer .foolist li a, .footer .foolist li a:visited {
  color: #437fa0;
  transition: all 0.3s ease;
}
.footer .navigate-button a.button.eight {
  float: left;
  margin-right: 10px;
  padding: 6px 15px;
  display: block;
}
.button.eight {
  color: #393939;
  font-size: 14px;
  border-radius: 35px;
  white-space: nowrap;
  background: #fff;
  border: 1px solid #fff;
  transition: all 0.3s ease;
}
.footer .navigate-button a.button.eight {
  float: left;
  margin-right: 10px;
  padding: 6px 15px;
  display: block;
  background-color: rgb(32, 98, 134);
  color: rgb(255, 255, 255);
  border: 1px solid #1a93d5;
  font-size: 14px;
  border-radius: 35px;
  white-space: nowrap;
  transition: all 0.3s ease;
}
.footer ul.foosocial {
  float: left;
  width: 100%;
  padding: 0px;
  margin: 0px 0px 0px 0px;
}
.footer .foosocial li {
  margin: 6px 7px 0px 0px;
  padding: 0px;
  float: left;
  list-style: none;
}
.footer .foosocial li a {
  color: #aaa;
}
.footer .foosocial li i {
  color: #fff;
  width: 70px;
  height: 70px;
  text-align: center;
  vertical-align: middle;
  line-height: 69px;
  border-radius: 100%;
  font-size: 39px;
  transition: all 0.3s ease;
  margin-right: 13px;
}
.footer .foosocial li.faceboox i {
  background: #2b87c7;
}
.footer .foosocial li.twitter i {
  background: #38c0dd;
}
.footer .foosocial li.linkdin i {
  background: #2862d8;
}
.footer .col-md-1 {
  border-right: 1px solid #3f484f;
  height: 264px;
  width: 1px;
  margin: 0 4%;
}
.black-dark {
  background: #1e1f23 !important;
}
.navbar-nav li.highlight {
  background: #58c4c4;
}
.navbar-nav li.highlight a,
.navbar-nav li.highlight a:active,
.navbar-nav li.highlight a:visited,
.navbar-nav li.highlight a:hover {
  color: #fff;
}
.navbar-nav li.highlight2 {
  background: #39a1f4;
}
.navbar-nav li.highlight2 a,
.navbar-nav li.highlight2 a:active,
.navbar-nav li.highlight2 a:visited,
.navbar-nav li.highlight2 a:hover {
  color: #fff;
}
.btn-youtube {
  padding: 0;
  background: transparent;
}
.btn-youtube img {
  height: 55px;
  width: auto !important;
}

@media (max-width: 480px) {
  .or_text {
    margin-top: 0;
  }

  .or_text::before, .or_text::after {
    width: 90px;
  }

  section.hosting .own-plan-controller {
    width: 100%;
  }

  .sliderdiv {
    width: 86.5%;
  }

  .own-plan-controller-detail {
    width: 100%;
    float: left;
    margin-top: 20px;
  }

  .btn-orange3,
  .btn-theme {
    margin-bottom: 10px;
  }

  .featured_section116 .box {
    margin-bottom: 20px;
  }

  .section-features2 iframe {
    width: 100%;
  }

  .section-gallery img {
    width: 100%;
  }

  .footer .secarea .col-md-1 {
    border-bottom: 1px solid #3f484f;
    border-right: 0;
    height: 1px;
    width: 85%;
    margin-top: 30px;
  }

  .footer .secarea .col-md-2 {
    margin-top: 30px;
  }

  .footer .secarea h4 {
    margin-top: 20px;
  }

  .footer ul.foosocial {
    width: 90%;
    margin-left: 15%;
  }

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

  .footer .secarea img {
    margin: 0 auto;
  }

  .footer .navigate-button a.button.eight {
    float: none;
    margin-top: 20px;
  }

  .rs-slider.main-home .slider-content .content-part {
    padding-top: 120px;
  }
}