/*
Template Name: Software for you - Software Landing Template
Author: QuietLab
Tags: software landing, template, bootstrap
*/

/* -------------------------------------------------
[ Table of contents ]

1. Preloader
2. General styles
3. Index
	3.1 Header
	3.2 Free trial / #trial
	3.3 Features / #features
	3.4 Testimonials / #testimonials
	3.5 Partners / #partners
	3.6 Working process / #process
	3.7 Pricing / #pricing
	3.8 Subscribe / #subscribe
	3.9 Benefits / #benefits
	3.10 Team / #team
	3.11 Contact / #contact
	3.12 Footer
------------------------------------------------- */

/* --------------
1. Preloader
--------------- */
.load {
  position: fixed;
  z-index: 9999;
  overflow: hidden;
  top: 0;
  bottom: 0;
  width: 100%;
  background: #fff;
  text-align: center;
}

.loader {
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100px;
  height: 100px;
  margin: -45px 0 0 -45px;
  border: 6px solid transparent;
  border-top-color: #2782d3;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -webkit-animation: spin 2.5s linear infinite;
  animation: spin 2.5s linear infinite;
}

.loader:before {
  content: '';
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  border: 6px solid transparent;
  border-top-color: #2782d3;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -webkit-animation: spin 3s linear infinite;
  animation: spin 3s linear infinite;
}
.loader:after {
  content: '';
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border: 6px solid transparent;
  border-top-color: #2782d3;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -webkit-animation: spin 1.5s linear infinite;
  animation: spin 1.5s linear infinite;
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg); /* Chrome, Opera 15+, Safari 3.1+ */
    -ms-transform: rotate(0deg); /* IE 9 */
    transform: rotate(0deg); /* Firefox 16+, IE 10+, Opera */
  }
  100% {
    -webkit-transform: rotate(360deg); /* Chrome, Opera 15+, Safari 3.1+ */
    -ms-transform: rotate(360deg); /* IE 9 */
    transform: rotate(360deg); /* Firefox 16+, IE 10+, Opera */
  }
}

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg); /* Chrome, Opera 15+, Safari 3.1+ */
    -ms-transform: rotate(0deg); /* IE 9 */
    transform: rotate(0deg); /* Firefox 16+, IE 10+, Opera */
  }
  100% {
    -webkit-transform: rotate(360deg); /* Chrome, Opera 15+, Safari 3.1+ */
    -ms-transform: rotate(360deg); /* IE 9 */
    transform: rotate(360deg); /* Firefox 16+, IE 10+, Opera */
  }
}

/* --------------
2. General styles
--------------- */
html,
body {
  height: 100%;
}

body {
  background: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  color: #333;
  min-width: 320px;
  position: relative;
}

a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #fff;
  letter-spacing: 0.02em;
  outline: none !important;
  cursor: pointer;
}

a:hover {
  text-decoration: none;
}

a:active,
a:focus {
  background-color: #2782d3 !important;
}

img {
  max-width: 100%;
  height: auto;
}

h1 {
  font-size: 130px;
  font-weight: 300;
  color: #fff;
  margin-bottom: 0;
}

h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 50px;
  font-weight: 300;
  color: #333;
  letter-spacing: 0.03em;
  text-align: center;
  margin: 0;
  padding-top: 120px;
  margin-bottom: 30px;
}

h3 {
  font-size: 37px;
  letter-spacing: 0.03em;
  font-weight: 300;
  color: #fff;
  margin-bottom: 30px;
}

h4 {
  font-size: 28px;
  letter-spacing: 0.03em;
  margin-bottom: 25px;
}

h5 {
  font-size: 21px;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-top: 30px;
}

h6 {
  font-size: 18px;
  font-weight: 500;
}

p {
  font-size: 16px;
  font-weight: 300;
  line-height: 30px;
  color: #333;
  letter-spacing: 0.02em;
  margin: 0;
}

textarea:focus,
input:focus {
  outline: none;
}

.btn-primary {
  background-color: #2782d3;
  border-radius: 5px;
  border: none;
  padding: 10px 30px;
  margin: 40px 15px 0;
  font-size: 18px;
  box-shadow: 0 5px 10px rgba(39, 130, 211, 0.3);
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.btn-primary:hover {
  background-color: #2782d3;
  -webkit-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  -o-transform: translateY(-5px);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(39, 130, 211, 0.5);
}

*:hover {
  transition: 0.3s ease-in-out;
}

hr {
  width: 25px;
  height: 3px;
  background-color: #2782d3;
  margin-top: 15px;
  margin-bottom: 25px;
  border: none;
}

/* --------------
3. Index
--------------- */

/* Header */
header {
  background: url(/img/teaser.jpg) no-repeat center center;
  background-size: cover;
  min-height: 500px;
  height: 100%;
}

header .navbar-default .navbar-nav > li > a {
  padding: 30px;
  font-size: 16px;
  color: #cbcbcb;
  letter-spacing: 0.04em;
}

.navbar-default .navbar-nav > li > a:hover {
  color: #fff;
  transition: 0.3s ease-in;
  background-color: transparent !important;
}

.navbar-default {
  background: transparent none repeat scroll 0 0;
  border: none;
  height: 80px;
}

.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:focus,
.navbar-default .navbar-nav > .active > a:hover {
  background-color: transparent;
  color: #fff;
}

.navbar-fixed-top .navbar-nav > .active > a,
.navbar-fixed-top .navbar-nav > .active > a:focus,
.navbar-fixed-top .navbar-nav > .active > a:hover {
  background-color: transparent;
  color: #2782d3;
}

header .navbar-default .navbar-nav > li > a:focus,
header .navbar-default .navbar-nav > li > a:visited {
  background-color: transparent !important;
}

header .navbar-fixed-top .navbar-nav > li > a:focus,
header .navbar-fixed-top .navbar-nav > li > a:visited {
  background-color: transparent !important;
}

header .navbar-fixed-top .navbar-nav > li > a {
  color: #333;
  transition: 0.3s ease-in;
}

header .navbar-fixed-top .navbar-nav > li > a:hover {
  color: #2782d3;
}

.navbar-fixed-top {
  background: #fff;
  box-shadow: 0 1px 5px 0 rgba(96, 96, 96, 0.2);
}

.nav-base {
  transition: 0.3s ease-in-out;
}

/* Navbar collapsed */
.navbar-toggle.collapsed {
  border: none;
  border-bottom: none;
}

.navbar-default .navbar-toggle .icon-bar {
  height: 3px;
  border-radius: 2px;
  background: #fff;
  width: 25px;
}

.navbar-default .navbar-toggle .icon-bar.bar {
  width: 60%;
  margin-top: 4px;
}

.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
  background: transparent;
  border: none;
}

/* Hero */
.head_p {
  margin-top: 230px;
}

.lead {
  font-size: 21px;
  letter-spacing: 0.02em;
  font-weight: 300;
  color: #fff;
  line-height: 35px;
  margin-top: 50px;
}

/* Trial section */
.trial_content {
  width: 100%;
  border-bottom: 1px solid #dadfef;
  padding-bottom: 120px;
}

.ion-social-apple,
.ion-android-playstore {
  font-size: 22px;
  margin-right: 15px;
}

/* Features */
#features .col-lg-8 {
  width: 100%;
}

.item_content {
  padding: 60px 40px;
  border-radius: 5px;
  border: 1px solid #dadfef;
  margin-top: 60px;
}

.item_content:hover {
  box-shadow: 0 5px 35px 0 rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.item_content p {
  color: #666;
}

/* Testimonials */
#testimonials {
  background: linear-gradient(to right, #68a6e8, #2882d3);
  margin-top: 120px;
}

.quote {
  display: block;
  margin: 115px auto 50px;
}

#quote-carousel .item .name {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.03em;
  margin-top: 15px;
}

#quote-carousel {
  padding: 0 10px 120px;
}

#quote-carousel .item p {
  color: #fff;
  line-height: 32px;
}

/* For Chrome */
#quote-carousel .carousel-control:active,
#quote-carousel .carousel-control:focus {
  background-color: transparent !important;
}

#quote-carousel .carousel-control {
  background: none;
  color: #fff;
  font-size: 30px;
  text-shadow: none;
  margin-top: 30px;
}

#quote-carousel .carousel-indicators {
  position: relative;
  right: 50%;
  top: auto;
  bottom: 0px;
  margin-top: 20px;
}

#quote-carousel .carousel-indicators li {
  width: 62px;
  height: 62px;
  cursor: pointer;
  border: none;
  border-radius: 50%;
  opacity: 0.6;
  overflow: hidden;
  transition: all 0.4s ease-in;
  vertical-align: middle;
}

#quote-carousel .carousel-indicators .active {
  width: 80px;
  height: 80px;
  opacity: 1;
  transition: all 0.2s;
  background: none;
}

/* Partners */
#partners {
  background-color: #f9f9f9;
  padding: 60px 0;
}

#partners .col-md-10 {
  width: 100%;
  text-align: center;
}

#partners i {
  color: #bcbcbc;
  font-size: 30px;
}

#partners .item {
  display: inline-block;
  padding: 0 35px;
}

#partners .item:last-child {
  padding-right: 0;
}

#partners .item img a:hover {
  color: #666;
}

/* Working process */
#process p {
  margin-bottom: 60px;
}

#process .comment {
  color: #666;
  line-height: 27px;
  margin-top: 40px;
  margin-bottom: 0;
}

.video {
  border-bottom: 1px solid #dadfef;
  padding-bottom: 120px;
}

/* Pricing */
#pricing p {
  margin-bottom: 60px;
}

#pricing .pricing_content {
  border: 1px solid #dadfef;
  border-radius: 10px;
  padding: 40px 0;
}

#pricing .pricing_content:hover {
  box-shadow: 0 5px 35px 0 rgba(0, 0, 0, 0.1);
}

#pricing span {
  color: #2782d3;
}

#pricing .dollar {
  font-size: 37px;
  font-weight: 200;
}

#pricing .number {
  font-size: 67px;
  font-weight: 200;
  letter-spacing: 0.02em;
}

#pricing .pricing_list {
  margin-top: 20px;
  padding-left: 0;
}

#pricing .pricing_list li {
  font-weight: 300;
  color: #666;
  line-height: 40px;
  list-style: none;
}

#pricing .btn-primary {
  margin-top: 30px;
}

/* Subscribe */
#subscribe {
  background: linear-gradient(to right, #68a6e8, #2882d3);
  padding: 90px 0;
  margin-top: 120px;
}

#subscribe p {
  color: #fff;
  margin-bottom: 60px;
}

#subscribe input {
  background-color: transparent;
  border-top: none;
  border-left: none;
  border-right: none;
  width: 50%;
  height: 45px;
  color: #fff;
  font-weight: 300;
}

/* For Chrome */
#subscribe input::-webkit-input-placeholder {
  color: #fff;
}

#subscribe input:-moz-placeholder {
  color: #fff;
}

#subscribe .btn-primary {
  background-color: #fff;
  color: #2882d3;
}

#subscribe .btn-primary a:focus,
#subscribe .btn-primary a:visited {
  text-decoration: none;
  background-color: #fff !important;
  color: #2882d3 !important;
}

#subscribe .btn-primary.focus,
#subscribe .btn-primary:focus,
#subscribe .btn-primary.active.focus,
#subscribe .btn-primary.active:focus,
#subscribe .btn-primary.active:hover,
#subscribe .btn-primary.focus:active,
#subscribe .btn-primary.focus:visited,
#subscribe .btn-primary:active:focus,
#subscribe .btn-primary:active:hover {
  text-decoration: none;
  background-color: #fff !important;
  color: #2882d3 !important;
}

/* Benefits */
#benefits img {
  float: left;
}

.benefits {
  border-bottom: 1px solid #dadfef;
  padding-bottom: 120px;
}

#benefits .screen {
  margin-top: 80px;
}

#benefits .content {
  margin-top: 60px;
}

#benefits .benefits_content {
  margin-left: 100px;
  margin-bottom: 30px;
}

#benefits .last {
  margin-bottom: 0;
}

.benefits_content p {
  color: #666;
  line-height: 24px;
}

/* Team */
.team_member {
  padding: 0 30px;
  margin-top: 60px;
}

.member_name {
  font-size: 18px;
  font-weight: 400;
  margin-top: 20px;
}

#team hr {
  width: 80%;
  height: 1px;
  background-color: #dadfef;
  margin-bottom: 15px;
}

.team_member i {
  font-size: 20px;
  color: #888;
  margin: 0 7px;
  cursor: pointer;
}

.team_member i:hover {
  color: #2882d3;
}

/* Contact */
#contact {
  background-color: #f9f9f9;
  margin-top: 120px;
  padding-bottom: 90px;
}

#contact h2 {
  padding-top: 90px;
}

#contact .contact_content {
  margin-top: 70px;
}

.contact_p {
  line-height: 27px;
  margin-bottom: 40px;
}

.contact_phone,
.contact_email {
  margin-top: 20px;
}

.contact_phone,
.contact_phone_number,
.contact_phone_ceo,
.contact_phone_ceo_number,
.contact_email,
.contact_email_address,
.contact_email_ceo,
.contact_email_ceo_address {
  display: inline-block;
}

#contact i {
  font-size: 22px;
  color: #2882d3;
  margin-right: 15px;
}

.contact_phone_ceo,
.contact_email_ceo {
  margin-left: 30px;
  margin-right: 117px;
}

.contact_phone,
.contact_email {
  margin-right: 30px;
}

/* Contact form */
.contact-form {
  margin-top: 60px;
}

#contact .contact-form input {
  width: 100%;
  margin-bottom: 50px;
  height: 45px;
  background-color: transparent;
  border: transparent;
  border-bottom: 1px solid #bcbcbc !important;
  font-weight: 300;
  font-family: 'Montserrat', sans-serif;
  border-radius: 0;
  box-shadow: none;
}

#contact .contact-form input:focus {
  border: none;
  border-bottom: 1px solid #2882d3 !important;
  box-shadow: none !important;
}

.form-group textarea {
  border: none !important;
  border-bottom: 1px solid #bcbcbc !important;
  background-color: transparent;
  font-weight: 300;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  min-width: 100%;
  resize: vertical;
  border-radius: 0;
  box-shadow: none;
}

.form-group textarea:focus {
  box-shadow: none;
  border-bottom: 1px solid #2882d3 !important;
}

#contact .btn {
  margin-left: 0;
}

.input-error::after {
  animation: 0.4s ease 0s normal none 1 running fadeIn;
  background: #fff none repeat scroll 0 0;
  border-radius: 2px;
  color: red;
  content: 'Fill in this field';
  font-size: 12px;
  line-height: 1;
  padding: 3px 5px;
  position: absolute;
  right: 5px;
  margin-top: -50px;
  box-shadow: 1px 4px 10px 0 rgba(0, 0, 0, 0.1);
}

.textarea.input-error::after {
  margin-top: 0 !important;
}

.form-resault {
  border-radius: 3px;
  bottom: -100px;
  box-shadow: 1px 4px 10px 0 rgba(0, 0, 0, 0.15);
  position: fixed;
  color: #fff;
  left: 50%;
  padding: 8px 20px;
  transform: translateX(-50%);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0s;
  z-index: 1200;
}

.form-resault.incorrect {
  background-color: #ec6f28;
  bottom: 50px;
}

/* Footer */
footer {
  background-color: #122840;
  padding: 60px 0;
  color: #cbcbcb;
}

footer p {
  color: #cbcbcb;
}

footer h6 {
  margin-bottom: 25px;
}

footer ul {
  padding-left: 0;
}

footer ul li {
  margin-bottom: 8px;
}

footer ul li a {
  color: #cbcbcb;
  font-size: 16px;
  font-weight: 300;
}

footer ul li a:hover,
footer ul li a:focus {
  color: #fff;
}

footer input {
  border: 0px solid;
  border-bottom: 1px solid #bcbcbc;
  background-color: transparent;
  font-weight: 300;
  min-width: 75%;
  height: 45px;
}

footer .btn-primary {
  padding: 5px 16px;
  margin-top: 10px;
}

.ion-paper-airplane {
  font-size: 22px;
}

footer span i {
  font-size: 22px;
  padding: 0 10px;
}

footer span i:hover {
  color: #fff;
  cursor: pointer;
}

/* Footer copyright */
#copyright {
  background-color: #0b1c2f;
  padding: 30px 0;
}

#copyright p {
  color: #bcbcbc;
}
