/*
Template Name: Josh Landing Page 
Author: Jyostna
Author URI: https://themeforest.net/user/jyostna
Description: Landing Page 

[TABLE OF CONTENTS]

01. Global Styles
02. Preloader
03. Navigation Bar
04. Section
05. Section Hero
06. Section Introduction
07. Section Clients
08. Section Features
09. Section Screenshots
10. Section Testimonials
11. Section Blog
12. Section CTA
13. Section Contact
14. Section Subscribe
15. Footer
16. Elements
17. Responsive
*/
/*-----------------------------------------------------------------*/
/*                      GLOBAL STYLES                              */
/*-----------------------------------------------------------------*/
html {
  margin-right: 0px !important;
  overflow: auto !important;
}
body {
  color: #2b2b2b;
  background-color: #fff;
  font-family: "Open Sans", sans-serif;
  overflow-x: hidden;
}

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

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

ul {
  padding: 0;
  margin: 0;
}

li {
  font-size: 15px;
  font-weight: 300;
  padding: 0 0 10px;
}

li i {
  margin-right: 15px;
}

p {
  color: #2b2b2b;
  font-family: "Open Sans", sans-serif;
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 0.02em;
  line-height: 26px;
  margin: 0 0 20px;
}

a {
  color: #1bbe9f;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

a:focus {
  outline: 0;
}
.m-b-25 {
  margin-bottom: 25px;
}
.m-b-15 {
  margin-bottom: 15px;
}

/*-----------------------------------------------------------------*/
/*                      PRELOADER                                  */
/*-----------------------------------------------------------------*/
.preloader {
  width: 100%;
  height: 100%;
  background-color: #23475b;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}

.preloader:before,
.preloader:after {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
}

.preloader:before {
  background-color: #ed5f6b;
  left: 50%;
  -webkit-animation: animation_left_round 1.8s infinite ease-in-out;
  animation: animation_left_round 1.8s infinite ease-in-out;
}

.preloader:after {
  background-color: #fff;
  right: 50%;
  -webkit-animation: animation_right_round 1.8s infinite ease-in-out;
  animation: animation_right_round 1.8s infinite ease-in-out;
}

@-webkit-keyframes animation_left_round {
  0%,
  100% {
    -webkit-transform: translate3d(50%, -50%, 0);
    transform: translate3d(50%, -50%, 0);
  }

  50% {
    -webkit-transform: translate3d(-150%, -50%, 0);
    transform: translate3d(-150%, -50%, 0);
  }
}

@keyframes animation_left_round {
  0%,
  100% {
    -webkit-transform: translate3d(50%, -50%, 0);
    transform: translate3d(50%, -50%, 0);
  }

  50% {
    -webkit-transform: translate3d(-150%, -50%, 0);
    transform: translate3d(-150%, -50%, 0);
  }
}

@-webkit-keyframes animation_right_round {
  0%,
  100% {
    -webkit-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0);
  }

  50% {
    -webkit-transform: translate3d(150%, -50%, 0);
    transform: translate3d(150%, -50%, 0);
  }
}

@keyframes animation_right_round {
  0%,
  100% {
    -webkit-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0);
  }

  50% {
    -webkit-transform: translate3d(150%, -50%, 0);
    transform: translate3d(150%, -50%, 0);
  }
}

/*-----------------------------------------------------------------*/
/*                      NAVIGATION BAR                             */
/*-----------------------------------------------------------------*/
.navbar-default {
  background-color: transparent;
  border-color: transparent;
  margin: 40px 0;
  padding: 14px 0;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.navbar-default .navbar-nav li {
  padding: 0;
}

.navbar-default .navbar-nav li a {
  color: #eaeaea;
  font-family: "Raleway", sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 7px 30px;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:focus,
.navbar-default .navbar-nav > .active > a:hover {
  color: #1bbe9f;
  background: none;
}

.navbar-default .navbar-nav li a:focus {
  color: #1bbe9f;
  outline: none;
}

.navbar-default .navbar-nav li:last-child a {
  padding-right: 15px;
}

.navbar-default .navbar-nav li:hover a {
  color: #1bbe9f;
}

.navbar-default.shrink {
  background: #23475b;
  margin: 0;
  padding: 20px 0;
}

.navbar-default.shrink li a {
  font-weight: 400;
  padding: 7px 25px;
}

.navbar-brand {
  height: 26px;
  padding: 4px 15px;
  line-height: 50px;
}

.navbar-collapse {
  padding-right: 0;
  padding-left: 0;
}

.navbar-fixed-top .navbar-collapse {
  max-height: 100%;
}

.navbar-default .navbar-collapse {
  border-color: transparent;
}

.navbar-toggle {
  padding: 9px 7px;
  margin-top: 8px;
  margin-right: 15px;
  margin-bottom: 8px;
  background-color: #1bbe9f;
  border: 0;
  border-radius: 3px;
}

.navbar-default .navbar-toggle .icon-bar {
  background-color: #fff;
}

.navbar-default .navbar-toggle:hover {
  background-color: #19ab8f;
}

.navbar-toggle .icon-bar {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 0;
}

/*-----------------------------------------------------------------*/
/*                      SECTION                                    */
/*-----------------------------------------------------------------*/
section {
  overflow: hidden;
  padding: 70px 0;
  position: relative;
}

.section-header {
  margin-bottom: 70px;
  padding: 0 15px;
  text-align: center;
}
.showcase-would {
  margin-bottom: 40px;
}

.section-header h2 {
  color: #1a1a1a;
  font-size: 30px;
  font-weight: 300;
  letter-spacing: 0.025em;
  margin: 0 0 14px;
}
.header-text {
  color: #333 !important;
  font-family: "Open Sans", sans-serif !important;
  font-size: 16px !important;
  font-weight: 300 !important;
  letter-spacing: 0.025em !important;
}
.section-header span {
  color: #333;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.025em;
}

section.gray {
  background: #f7f7f7;
}
.section-color {
  background: #edf7fd;
}

section.with-bg .section-header {
  margin-bottom: 70px;
  text-align: center;
  position: relative;
  z-index: 1;
}

section.with-bg .section-header h2 {
  color: #fff;
  font-size: 30px;
  font-weight: 300;
  letter-spacing: 0.025em;
  margin: 0 0 14px;
}

section.with-bg .section-header span {
  color: #fff;
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.025em;
}

section.with-bg .section-content {
  position: relative;
  z-index: 1;
}
/*-----------------------------------------------------------------*/
/*                    Top Demo                                     */
/*-----------------------------------------------------------------*/
.top-demo h2 {
  color: #1a1a1a;
  font-size: 30px;
  font-weight: 400;
  letter-spacing: 0.025em;
  margin: 0 0 14px;
}
.top-demo {
  padding: 30px 0px;
}

/*-----------------------------------------------------------------*/
/*                      SECTION HERO                               */
/*-----------------------------------------------------------------*/
.hero {
  background: url(../images/background.jpg) top center no-repeat;
  height: 370px;
  width: 100%;
}
.crud-hero {
  height: 720px;
}
.repo-hero {
  height: 740px;
}
.index-hero {
  height: 600px;
}
.hero .cta {
  top: calc(47%);
  position: absolute;
  width: 100%;
  z-index: 1;
}
.showcase-cta,
.features-cta,
.blog-cta {
  top: calc(57%) !important;
}

.hero .cta h1 {
  color: #fff;
  font-size: 36px;
  font-weight: 100;
  letter-spacing: 0.05em;
  margin: 0 0 25px;
}
.banner-text {
  padding-bottom: 0px !important;
}

.hero .cta h1 span {
  font-weight: 600;
}
.hero .cta h2 {
  color: #fff;
  font-size: 36px;
  font-weight: 100;
  letter-spacing: 0.05em;
  margin: 0 0 25px;
}
.hero .cta h2 span {
  font-weight: 600;
}

.hero .cta p {
  color: #fff;
  font-family: "Raleway", sans-serif;
  font-size: 18px;
  font-weight: 100;
  letter-spacing: 0.05em;
  line-height: 1.9;
  margin: 0 0 25px;
}

.btn-position {
  position: relative;
  right: 20px;
}

/* === Hero Image === */
.hero .cta.with-img {
  bottom: 0px;
  top: initial;
}

.hero .cta.with-img .big-image {
  margin-top: 40px;
}

/* === Hero Form === */
.hero .cta.with-form {
  top: calc(50% - 190px);
  position: absolute;
  width: 100%;
  z-index: 1;
}

.hero .cta.with-form ul {
  color: #fff;
  list-style: none;
  letter-spacing: 0.05em;
}

.hero .cta.with-form ul li {
  padding: 0 0 20px;
}

.hero .cta.with-form ul li:before {
  content: "\f111";
  color: #ed5f6b;
  font-family: "FontAwesome";
  font-size: 6px;
  padding-right: 30px;
  vertical-align: middle;
}

.hero .cta.with-form .trial-form {
  background: #1e3d4f;
  border-radius: 5px;
  padding: 45px;
}

.hero .cta.with-form .trial-form .form-group {
  margin-bottom: 20px;
  position: relative;
}

.hero .cta.with-form .trial-form .form-group i {
  color: #ccc;
  line-height: 46px;
  position: absolute;
  right: 30px;
}

.hero .cta.with-form .trial-form .form-control {
  border-radius: 5px;
  height: 46px;
}

.hero .cta.with-form .trial-form .form-control::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #9e9e9e;
}

.hero .cta.with-form .trial-form .form-control::-moz-placeholder {
  /* Firefox 19+ */
  color: #9e9e9e;
}

.hero .cta.with-form .trial-form .form-control:-ms-input-placeholder {
  /* IE 10+ */
  color: #9e9e9e;
}

.hero .cta.with-form .trial-form .form-control:-moz-placeholder {
  /* Firefox 18- */
  color: #9e9e9e;
}

.hero .cta.with-form .trial-form select.form-control {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  color: #9e9e9e;
  padding: 0 30px;
}

.hero .cta.with-form .trial-form h3 {
  color: #fff;
  font-size: 22px;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin: 0 0 45px;
  text-transform: uppercase;
}

.hero .cta.with-form .trial-form p {
  font-size: 12px;
  letter-spacing: 0.08em;
  line-height: 1.8;
  margin: 25px 0 0;
}

/* === Hero Video === */
.hero .cta.with-video {
  top: calc(34% - 95px);
}

.hero .cta .hero-video {
  border-radius: 5px;
  overflow: hidden;
  outline: none;
  margin: 0 auto 40px;
  max-height: 440px;
  text-align: center;
  position: relative;
  width: 767px;
}

.hero .cta .hero-video img {
  width: 100%;
}
.hero-video span.play-button {
  background: #ed5f6b;
  border-radius: 50%;
  height: 100px;
  line-height: 100px;
  left: calc(50% - 50px);
  text-align: center;
  top: calc(50% - 50px);
  position: absolute;
  width: 100px;
  z-index: 1;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.hero-video span.play-button i {
  color: #fff;
  font-size: 40px;
  line-height: 100px;
  margin-left: 10px;
}
.crud-videos .hero-video span.play-button {
  width: 70px;
  height: 70px;
  top: calc(60% - 50px);
  line-height: 70px;
  left: calc(54% - 50px);
}

.crud-videos .hero-video span.play-button i {
  line-height: 70px;
}
.hero .cta .hero-video .video-overlay {
  background: rgba(255, 255, 255, 0.25);
  left: 0;
  height: 100%;
  top: 0;
  position: absolute;
  width: 100%;
}
.hero-video:hover span.play-button {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}

/* === Hero Mousewheel === */
.hero .wheel-wrap {
  bottom: 25px;
  text-align: center;
  position: absolute;
  width: 100%;
  z-index: 1;
}

.hero .wheel-wrap span.mousewheel {
  border: solid 2px #fff;
  border-radius: 8px;
  display: inline-block;
  height: 30px;
  position: relative;
  width: 20px;
}

.hero .wheel-wrap span.mousewheel:after {
  background: #fff;
  border-radius: 6px;
  content: "";
  height: 5px;
  left: 6px;
  top: 7px;
  position: absolute;
  width: 4px;
}

.hero .overlay {
  background: rgba(41, 88, 112, 0.7);
  left: 0;
  height: 100%;
  top: 0;
  position: absolute;
  width: 100%;
}

/*-----------------------------------------------------------------*/
/*                      SECTION INTRODUCTION                       */
/*-----------------------------------------------------------------*/
.intro h3 {
  list-style: none;
  letter-spacing: 0.02em;
  font-size: 15px;
  font-weight: 300;
  line-height: 36px;
  font-family: "Open Sans", sans-serif;
  margin: 2px;
}
.intro h3 span {
  background: #ed5f6b;
  border-radius: 50%;
  color: #fff;
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  line-height: 25px;
  margin-right: 15px;
  height: 25px;
  text-align: center;
  width: 25px;
}

/*-----------------------------------------------------------------*/
/*                      Josh product users                                 */
/*-----------------------------------------------------------------*/
.users .item {
  padding-top: 40px;
}
.users .item img {
  cursor: pointer;
}

.users-header {
  margin-bottom: 30px;
}

/*image effects*/

.view {
  width: 300px;
  height: 200px;
  margin: auto;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
  text-align: center;
  cursor: pointer;
}
.view .mask,
.view .content {
  width: 300px;
  height: 200px;
  position: absolute;
  overflow: hidden;
  top: 0;
  left: 0;
}
.view img {
  display: block;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.view-fifth h2 {
  background: transparent;
  color: #fff;
  font-size: 20px;
  font-family: "Raleway", sans-serif;
}

.view p {
  font-family: "open-sans", sans-serif;
  font-style: italic;
  font-size: 12px;
  position: relative;
  text-decoration: none;
  color: #fff;
  padding: 10px 20px 0px 20px;
  text-align: center;
  opacity: 0;
  color: #fff;
}
.view a.info {
  display: inline-block;
  text-decoration: none;
  padding: 10px 30px;
  background: #1bbe9f;
  color: white;
  border-radius: 5px;
  margin-bottom: 25px;
  text-transform: uppercase;
  box-shadow: 0 0 1px #000;
}
.view a.info:hover {
  background: #19ab8f;
  color: white;
}

.view-fifth .mask {
  background-color: #23465a;
  transform: translateX(-300px);
  opacity: 1;
  transition: all 0.4s ease-in-out;
}

.view-fifth:hover .mask {
  transform: translateX(0px);
}
.view-fifth:hover img {
  transform: translateX(300px);
  transition-delay: 0.1s;
}
.view-fifth:hover p {
  opacity: 1;
  transition-delay: 0.4s;
}

/*-----------------------------------------------------------------*/
/*                      Demos page Section demos                   */
/*-----------------------------------------------------------------*/
.demos .item3,
.demos .item4 {
  margin-top: 50px;
}
.demos .item h3 {
  text-transform: uppercase;
  margin: 5px 0 10px 0px;
}

.demos .buttons {
  margin-top: 15px;
}
.demos .item img:hover {
  transform: translateY(-15px);
  transition: 500ms;
}
.demos .item img {
  transition: 500ms;
}

/*-----------------------------------------------------------------*/
/*                      SECTION FEATURES                           */
/*-----------------------------------------------------------------*/
.features .item {
  min-height: 180px;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.features .item .icon-wrap {
  float: left;
}

.features .item .description {
  margin-left: 100px;
}

.features .item .description h3 {
  color: #464646;
  font-size: 18px;
  font-weight: 400;
  text-transform: uppercase;
  margin: 0 0 8px;
}

.features .item .description p {
  color: #464646;
  margin-bottom: 0;
}
.visible-lg,
.visible-md,
.visible-sm,
.visible-xs {
  display: block !important;
}

/*-----------------------------------------------------------------*/
/*                      SECTION SCREENSHOTS                          */
/*-----------------------------------------------------------------*/
.screenshot {
  background: url(../images/background.jpg) top center repeat;
  padding-bottom: 102px;
}

.screenshot .overlay {
  background: rgba(41, 88, 112, 0.7);
  left: 0;
  height: 100%;
  top: 0;
  position: absolute;
  width: 100%;
}

.screenshot .screenshot-slide {
  border-radius: 8px;
  height: 440px;
  padding: 50px 0;
  margin: 0;
  overflow: hidden;
}

.screenshot .screenshot-slide .slick-list {
  overflow: visible;
}

.screenshot .screenshot-slide .item {
  border-radius: 5px;
  cursor: ew-resize;
  width: 580px;
  height: 340px;
  outline: 0;
  overflow: hidden;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.screenshot .screenshot-slide .item img {
  max-width: 100%;
}

.screenshot .slick-center {
  -webkit-transform: scale(1.3);
  -moz-transform: scale(1.3);
  -ms-transform: scale(1.3);
  -o-transform: scale(1.3);
  transform: scale(1.3);
}

/*-----------------------------------------------------------------*/
/*                      SECTION TESTIMONIALS                       */
/*-----------------------------------------------------------------*/
.testimonials .slick-list {
  margin: 0 auto;
  width: 560px;
}

.testimonials p {
  text-align: center;
}

.testimonials .user {
  margin: 45px auto 0;
  width: 230px;
}
.testimonials .user .info img {
  margin: auto;
  padding-top: 7px;
  padding-left: 5px;
}

.testimonials .user .info {
  text-align: center;
}

.testimonials .user .info h3 {
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.025em;
  margin: 12px 0 8px;
}

.testimonials .user .info span {
  color: #9b9b9b;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.025em;
}

/*-----------------------------------------------------------------*/
/*                      Changelog and Blog                         */
/*-----------------------------------------------------------------*/
.changelog-blog .item {
  margin-top: 10px;
  padding: 40px 10px;
  background: #f7f7f7;
}
.changelog-blog .item a {
  text-decoration: none;
}
.fa-long-arrow-right {
  transition: 800ms;
}
.changelog-blog .item a:hover .fa-long-arrow-right {
  transform: translateX(20px);
  transition: 800ms;
}
/*-----------------------------------------------------------------*/
/*                      Changelog                                  */
/*-----------------------------------------------------------------*/

.changelog .icon-wrap {
  float: left;
}
.changelog .description {
  margin-left: 100px;
}
#version-tab1 {
  display: none;
}
#version-tab1 ul {
  margin-left: 40px;
}
.versions {
  padding: 10px 0px;
}
.changelog .breadcrumb {
  background: transparent;
}
.breadcrumb > li a:hover {
  text-decoration: none;
  color: red;
}
.ul-align ul {
  margin: 20px 0px 0px 50px;
}
.each_version {
  margin-top: 20px;
  border: 0;
  border-right: 1px solid #eee;
}
.small_version {
  margin-bottom: 55px;
  margin-top: 20px;
}
.m-b-40 {
  margin-bottom: 40px;
}
.m-t-60 {
  margin-top: 60px;
}
.m-t-80 {
  margin-top: 80px;
}
.search-box {
  font-size: 16px;
  border-radius: 25px;
  border: 1px solid #e0e0e0;
  padding: 10px 20px;
}
.search-box:focus {
  outline: none;
}
.right-files ul {
  list-style-type: none;
  margin: 20px 0 0 25px;
}
.related_margin {
  padding-top: 60px;
}
.related_files a:hover {
  color: #1bbe9f;
  text-decoration: none;
}
.related_files a {
  color: #2b2b2b;
  text-decoration: none;
}
.small_version .sub-head {
  font-size: 16px;
}
/*-----------------------------------------------------------------*/
/*                      SECTION BLOG                               */
/*-----------------------------------------------------------------*/
.blog .item .thumb {
  height: auto;
  overflow: hidden;
  transition: 300ms;
}
.blog .item {
  min-height: 480px;
}
.blog .item .thumb img:hover {
  transform: scale(1.1, 1.1);
  transition: 300ms;
}

.blog .item .thumb img {
  transition: 300ms;
  width: 100%;
  height: 232px;
}
.blog .item h2 {
  font-size: 22px;
  font-weight: 400;
  line-height: 1.4em;
  margin: 20px 0 15px;
}

.blog .item h2 a {
  color: #464646;
}

.blog .item h2 a:hover {
  color: #ed5f6b;
  text-decoration: none;
}

.blog .item p {
  margin-bottom: 20px;
}

/*-----------------------------------------------------------------*/
/*                      SECTION CTA                                */
/*-----------------------------------------------------------------*/
.cta-footer {
  background: url(../images/background.jpg) top center no-repeat;
  color: #fff;
  text-align: center;
}

.cta-footer h2 {
  font-size: 30px;
  font-weight: 300;
  letter-spacing: 0.025em;
  margin: 0 0 20px;
}

.cta-footer p {
  color: #fff;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.025em;
}

.cta-footer .buttons a {
  margin-right: 20px;
}

.cta-footer .buttons a:last-child {
  margin-right: 0;
}

.cta-footer .overlay {
  background: rgba(41, 88, 112, 0.7);
  left: 0;
  height: 100%;
  top: 0;
  position: absolute;
  width: 100%;
}

/*-----------------------------------------------------------------*/
/*                      SECTION CONTACT                            */
/*-----------------------------------------------------------------*/
.contact .contact-container {
  margin: 0 auto;
  width: 750px;
}
.contact-click {
  padding: 10px 0px 70px 0px;
  display: none;
}
.contact .contact-container p.contact-extra {
  margin-bottom: 30px;
  text-align: center;
}
.contact textarea {
  max-width: 100%;
}
.contact-header {
  margin-bottom: 35px;
  padding: 0 15px;
  text-align: center;
}

/*-----------------------------------------------------------------*/
/*                      SECTION SUBSRIBE                           */
/*-----------------------------------------------------------------*/
.subscribe {
  background: url(../images/background2.jpg) top center no-repeat;
  color: #fff;
}

.subscribe h3 {
  font-size: 30px;
  font-weight: 300;
  letter-spacing: 0.025em;
  margin: 11px 0 0 0;
}

.subscribe .form-group {
  margin-bottom: 0;
}

.subscribe .overlay {
  background: rgba(237, 95, 107, 0.9);
  left: 0;
  height: 100%;
  top: 0;
  position: absolute;
  width: 100%;
}

/* === Social Icons === */
.social-icons {
  list-style: none;
  padding-top: 40px;
}

.social-icons li {
  display: inline-block;
  margin-right: 5px;
  text-align: center;
  padding: 0;
}

.social-icons li a {
  background: rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  display: block;
  line-height: 42px;
  height: 40px;
  width: 40px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.social-icons li a i {
  color: #fff;
  font-size: 20px;
  margin: 0;
}

.social-icons li a:hover {
  background: #ed5f6b;
}

/*-----------------------------------------------------------------*/
/*                      FOOTER                                     */
/*-----------------------------------------------------------------*/
.footer {
  background: #23475b;
  color: #fff;
}

.footer .copyright {
  padding: 30px 0;
}

.footer .copyright span {
  color: #ededed;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.08em;
}

/*-----------------------------------------------------------------*/
/*                      ELEMENTS                                   */
/*-----------------------------------------------------------------*/
#particles-js {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

/* === Buttons === */
.btn {
  border: 0;
  border-radius: 5px;
  color: #23475b;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 13px 24px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.btn-default {
  color: #23475b;
  background: #fff;
}

.btn-default:hover {
  background: #eaeaea;
}

.btn-primary {
  background: #1bbe9f;
  color: #fff;
}

.btn-primary:hover {
  background: #19ab8f;
  color: #fff;
}
.btn-primary:focus {
  background: #1bbe9f;
  color: #fff;
}

.btn-secondary,
.btn-secondary:focus {
  background: #ed5f6b;
  color: #fff !important;
}

.btn-secondary:hover {
  background: #d44f5a;
  color: #fff;
}

.btn-success {
  background: #138bc7;
  color: #fff;
}

.btn-success:hover {
  background: #0c6c9c;
  color: #fff;
}
.btn-success:focus {
  background: #138bc7;
  color: #fff;
}

.btn-info {
  background: #252584;
  color: #fff;
}

.btn-info:hover {
  background: #090a63;
  color: #fff;
}
.btn-info:focus {
  background: #1d1e84;
  color: #fff;
}
.btn-lg {
  padding: 21px 24px;
}

.btn-icon i {
  margin-right: 10px;
}

.btn-full {
  width: 100%;
}

/* === Form Control === */
.form-control {
  display: block;
  width: 100%;
  height: 60px;
  padding: 15px 30px;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.05em;
  line-height: 1.6;
  color: #555;
  background-color: #ebebeb;
  background-image: none;
  border: 0;
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.form-control:focus {
  border-color: #c7c7c7;
  outline: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.form-group {
  margin-bottom: 30px;
}

/* === Slick Slide === */
.slick-slide {
  outline: none;
}

.slick-dots {
  bottom: -45px;
  position: relative;
}

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

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

.slick-dots li.slick-active button:before {
  opacity: 1;
  color: #ed5f6b;
}

.slick-dots li button:before {
  font-family: "slick";
  font-size: 11px;
  line-height: 14px;
  position: absolute;
  top: 0;
  left: 0;
  width: 12px;
  height: 12px;
  content: "•";
  text-align: center;
  opacity: 1;
  color: #e5e5e5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  color: #ed5f6b;
}

.slick-prev,
.slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 5px;
  display: block;
  width: 40px;
  height: 40px;
  padding: 0;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, 0%);
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  border-radius: 4px;
  background: #1bbe9f;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.slick-prev:hover,
.slick-next:hover {
  background: #19ab8f;
}

.slick-prev:focus,
.slick-next:focus {
  background: #19ab8f;
}

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

.slick-prev:before {
  content: "\f104";
}

.slick-next:before {
  content: "\f105";
}

/*-----------------------------------------------------------------*/
/*                      RESPONSIVE                                 */
/*-----------------------------------------------------------------*/
@media only screen and (min-width: 991px) and (max-width: 1198px) {
  .navbar-default .navbar-nav li a {
    padding: 7px 24px;
  }
  .item .thumb {
    height: 212px;
  }
  .index-hero {
    height: 530px;
  }

  .features-hero {
    height: 400px !important;
  }
  .macback_image {
    height: 210px;
    margin-top: 48px;
    width: 78%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1198px) {
  .search-box {
    padding: 10px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .macback_image {
    height: 275px;
    margin-top: 14px;
    width: 63%;
  }
  .changelog .icon-wrap {
    margin-top: 0;
  }
}

@media only screen and (max-width: 991px) {
  .hero {
    height: 300px;
  }
  .navbar-default .navbar-nav li a {
    letter-spacing: 0em;
    padding: 7px 13px;
  }
  .hero .cta .hero-video {
    width: 100%;
  }
  .index-hero {
    height: 460px !important;
  }
  .crud-hero {
    height: 650px;
  }
  .team .item,
  .intro .about,
  .demos .item,
  .crud-videos .item {
    margin-top: 30px;
  }
  .footer .widget:last-child {
    margin-bottom: 0;
  }

  .features .item {
    margin-bottom: 30px;
    min-height: 150px !important;
  }

  .features .item:last-child {
    margin-bottom: 0;
  }

  .slick-center {
    -webkit-transform: scale(1) !important;
    -moz-transform: scale(1) !important;
    -ms-transform: scale(1) !important;
    -o-transform: scale(1) !important;
    transform: scale(1) !important;
  }

  .screenshot .screenshot-slide {
    padding: 0;
    height: auto;
  }

  .screenshot .screenshot-slide .item {
    width: auto;
    height: auto;
  }
  .blog .item {
    margin-bottom: 30px;
  }

  .subscribe .text {
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .navbar-nav {
    background: #23475b;
    margin: 0;
  }

  .navbar-default .navbar-nav li a {
    padding: 15px 30px;
  }

  .navbar-default.shrink {
    padding: 0;
  }

  .navbar-brand {
    padding: 14px 15px;
  }

  .hero .cta.with-video {
    top: calc(30% - 80px);
  }
  .testimonials .slick-list {
    margin: 0 auto;
    width: 100%;
  }

  .blog .item {
    max-width: 400px;
    margin: 0 auto 30px;
    float: none;
  }

  .buttons a {
    margin-top: 10px;
  }
  .cta-footer .buttons a {
    margin-right: 0px;
  }

  .contact .contact-container {
    width: 100%;
  }

  .subscribe .form-group {
    margin-bottom: 30px;
  }
  .buttons a {
    margin-top: 10px;
  }
}

@media only screen and (max-width: 480px) {
  .index-hero {
    height: 400px !important;
  }
  .crud-hero {
    height: 450px;
  }
  .btn-position {
    right: 0px;
  }
  .hero .cta.with-video {
    top: calc(30%);
  }
  .showcase-hero {
    height: 560px !important;
  }
  .each_version {
    border-right: none;
  }
  .changelog .description {
    margin-left: 0;
  }
  .ul-align ul {
    margin: 20px 0px 0px 33px;
  }
  .right-files {
    margin-left: 20px;
  }
  .macback_image {
    height: 182px;
    margin-top: 64px;
    width: 79%;
  }
}
@media only screen and (max-width: 375px) {
  .macback_image {
    height: 160px;
    margin-top: 75px;
    width: 80%;
  }
}
@media only screen and (max-width: 320px) {
  .macback_image {
    height: 135px;
    margin-top: 89px;
    width: 81%;
  }
  .btn-position {
    margin-left: 0;
  }

  .cta-footer .buttons a {
    margin-right: 0;
  }
  .users .item {
    padding-top: 40px !important;
    padding: 0;
  }
}
.text-white {
  color: white;
}
.m-t-40 {
  margin-top: 40px;
}
