﻿@charset "utf-8";
/* CSS Document */

/*
Theme Name: Startup Responsive Landing page Template
Version: 1.0
Author: Surjith SM
Author URI: http://themeforest.net/user/surjithctly
*/

/******************  Table of Contents  *****************************/

/*

1. GLOBAL STYLES
2. HEADER
3. HERO IMAGE
4. FEATURES
5. TESTIMONIALS
6. PLANS AND PRICING
7. FAQ
8. FOOTER
9. CUSTOM MEDIA QUERIES
10. BLOG

If you having trouble in editing css. please send a mail to support@surjithctly.in - 
I will really help you

*/

/*========== 1. GLOBAL STYLES ==============*/

@font-face {
  font-family: OpenSans-Bold;
    src: url(../fonts/OpenSans-Bold.ttf);
}

@font-face {
  font-family: OpenSans-Light;
    src: url(../fonts/OpenSans-Light.ttf);
}

@font-face {
  font-family: OpenSans-Semibold;
    src: url(../fonts/OpenSans-Semibold.ttf);
}

body {
  font-family: 'Open Sans', Arial, sans-serif;
  background: #FFF;
  /*font-weight: 300;*/
  height: 100%;
  margin: 0;
  padding: 0;
  color: #94a3a8;
}

strong, b {
  font-weight: 600;
}

h1 {
  font-size: 50px;
  line-height: 60px;
  margin: 25px 0;
}

h2 {
  font-size: 40px;
  font-weight: 600;
  margin: 15px 0;
}

h3 {
  font-size: 20px;
  margin: 10px 0;
  font-weight: 600;
}

h4 {
  font-size: 20px;
  margin: 10px 0;
}

h5 {
  font-size: 24px;
  font-weight: 600;
  margin: 15px 0;
  color: #384047;
}

h6 {
  font-size: 16px;
  font-weight: 600;
  margin: 10px 0;
  color: #384047;
}

a {
  color: #5173bd;
}

a:hover, a:focus {
  color: #5173bd;
}

.preloader {
  background-color: #FFFFFF;
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 9999999;
}

.pace {
  -webkit-pointer-events: none;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  z-index: 9999999;
  position: fixed;
  margin: auto;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  width: 100%;
  background: #fff;
 /*border: 1px solid #e34e47;*/;
}

.pace .pace-progress {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: width 1s ease-in-out 1s linear;
  -moz-transition: width 1s ease-in-out 1s linear;
  -ms-transition: width 1s ease-in-out 1s linear;
  -o-transition: width 1s ease-in-out 1s linear;
  transition: width 1s ease-in-out 1s linear;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  max-width: 100%;
  position: fixed;
  z-index: 9999999;
  display: block;
  position: absolute;
  left: 0px;
  top: 0px;
  height: 100%;
  background: #61b5f0;
}

.pace.pace-inactive {
  display: none;
}

.btn, .btn-lg, .input-lg {
  border-radius: 3px;
}

.form-control {
  border-radius: 3px;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.input-lg {
  height: 55px;
}

.btn-lg, .btn-group-lg > .btn {
  padding: 10px 28px;
  height: 52px;
}

.breath {
  margin: 50px auto;
}

.highlight {
  background: #f4f4f4;
}

.clientlogo {
  margin: 40px 0;
}

.has-margin-vertical {
  margin: 20px 0 30px;
}

.has-margin-bottom {
  margin-bottom: 40px;
}

/*========== 1 a. SUB PAGES ==============*/

.subpage-head {
  background-color: #f4f4f4;
  padding-top: 20px;
  padding-bottom: 15px;
  margin-bottom: 40px;
}

/*========== 2. HEADER ==============*/

.masthead {
    /* position: relative; */
  padding: 80px 15px;
  color: #FFF;
  text-align: center;
  text-shadow: 0 1px 0 rgba(0, 0, 0, .1);
  background-color: #d1a17d;
  background-image: url(../images/header.png);
  background-repeat: no-repeat;
  background-position: center center;
    /* background-attachment: fixed; */
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
    /* background-size: cover; */;
}

/* Initial Subtle Animation*/

.masthead .container {
  animation: fadein 2s;
  -moz-animation: fadein 2s;
 /* Firefox */
  -webkit-animation: fadein 2s;
 /* Safari and Chrome */
  -o-animation: fadein 2s;
 /* Opera */;
}

.loading * {
  -webkit-animation: none !important;
  -moz-animation: none !important;
  -ms-animation: none !important;
  -o-animation: none !important;
}

@keyframes fadein {
  from {
    opacity: 0;
    -webkit-transform: translateY(-30px);
    -moz-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    transform: translateY(0);
  }
}

@-moz-keyframes fadein {
    /* Firefox */
  from {
    opacity: 0;
    -webkit-transform: translateY(-30px);
    -moz-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    transform: translateY(0);
  }
}

@-webkit-keyframes fadein {
    /* Safari and Chrome */
  from {
    opacity: 0;
    -webkit-transform: translateY(-30px);
    -moz-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    transform: translateY(0);
  }
}

@-o-keyframes fadein {
    /* Opera */
  from {
    opacity: 0;
    -webkit-transform: translateY(-30px);
    -moz-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    transform: translateY(0);
  }
}

/*animation ends*/

.logo {
  text-align: center;
}

.btn-large {
  font-size: 18px;
  padding: 20px 50px;
  margin: 5px 10px;
}

.btn-success {
  background-color: #2ecc71;
  background-image: none;
  border: 0;
  -webkit-box-shadow: 0 3px 0 rgba(2, 154, 67, 1);
  box-shadow: 0 3px 0 rgba(2, 154, 67, 1);
  line-height: 1.8;
}

.btn-success:hover, .btn-success:focus, .btn-success:active {
  background-color: #29c36a;
  color: #FFF;
  border: 0;
  -webkit-box-shadow: 0 3px 0 rgba(2, 139, 61, 1);
  box-shadow: 0 3px 0 rgba(2, 139, 61, 1);
}

.btn-primary {
  background-color: #2db6d8;
  background-image: none;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
}

.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
  background-color: #209ab8 !important;
  color: #FFF !important;
}

.btn-warning {
  line-height: 1.8;
  -webkit-box-shadow: 0 3px 0 rgb(177, 116, 29);
  box-shadow: 0 3px 0 rgb(177, 116, 29);
}

.btn-warning:hover, .btn-warning:focus, .btn-warning:active {
  -webkit-box-shadow: 0 3px 0 rgb(177, 116, 29);
  box-shadow: 0 3px 0 rgb(177, 116, 29);
}

.subscribe {
  padding: 45px 0;
}

.RsHeaderBag .subscribe {
  padding: 45px 0;
  margin-top: 50px;
  margin-bottom: 50px;
}

.alertMsg {
  font-size: 14px;
  display: block;
  padding: 5px 17px;
  text-align: center;
}

.masthead .form-control {
  border: 0;
}

/* Boucing Arrow Animation */

@keyframes arrowbounce {
  from {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    transform: translateY(0);
  }

  to {
    -webkit-transform: translateY(-20px);
    -moz-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}

@-moz-keyframes arrowbounce {
    /* Firefox */
  from {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    transform: translateY(0);
  }

  to {
    -webkit-transform: translateY(-20px);
    -moz-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}

@-webkit-keyframes arrowbounce {
    /* Safari and Chrome */
  from {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    transform: translateY(0);
  }

  to {
    -webkit-transform: translateY(-20px);
    -moz-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}

@-o-keyframes arrowbounce {
    /* Opera */
  from {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    transform: translateY(0);
  }

  to {
    -webkit-transform: translateY(-20px);
    -moz-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}

.scrollto, .scrollto:hover {
  margin: 30px;
  display: block;
  color: #FFF;
  text-decoration: none;
  width: 200px;
  margin: 30px auto;
}

.scrollto--arrow {
  padding: 10px;
}

.scrollto--arrow img {
  animation: arrowbounce 1s alternate infinite;
  -moz-animation: arrowbounce 1s alternate infinite;
 /* Firefox */
  -webkit-animation: arrowbounce 1s alternate infinite;
 /* Safari and Chrome */
  -o-animation: arrowbounce 1s alternate infinite;
 /* Opera */;
}

/*========== 3. HERO IMAGE ==============*/

.section-title {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 30px;
}

.email-conformation h1 {
  margin: 0;
  font-family: Open Sans;
  font-family: openSans-Semibold;
  font-size: 36px;
  color: #384047;
}

.email-conformation h2 {
  margin: 0;
  font-family: Open Sans;
  font-family: openSans-Semibold;
  font-size: 36px;
  color: #8cc63f !important;
}

.section-title h2 {
  color: #384047;
}

.section-title h4 {
  color: #94a3a8;
}

.heroimg img, .clientlogo img {
  max-width: 100%;
}

/*========== 4. FEATURES ==============*/

.features {
  margin: 25px 0;
}

.thumbnail {
  border: 0;
  text-align: center;
}

.thumbnail .caption p {
  color: #384047 !important;
  max-width: 231px;
  font-size: 14px;
  font-weight: 400;
  margin: auto;
}

.thumbnail .caption h3 {
  min-height: 45px;
}

/*Hover Animation*/

.thumbnail img {
  -moz-transition: all 0.6s ease;
  -webkit-transition: all 0.6s ease;
  -ms-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
}

.thumbnail:hover img {
  -moz-transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -o-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
  z-index: 2;
}

/*========== 5. TESTIMONIALS ==============*/

.testblock {
  width: 100%;
  height: auto;
  padding: 20px;
  background: #FFF;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-style: italic;
  position: relative;
  line-height: 28px;
  font-size: 16px;
}

.testblock:after {
  top: 100%;
  left: 20%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(255, 255, 255, 0);
  border-top-color: #ffffff;
  border-width: 15px;
  margin-left: -15px;
}

.clientblock {
  margin-top: 40px;
  margin-left: 10px;
}

.clientblock img {
  float: left;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
}

.clientblock p {
  padding-left: 80px;
  padding-top: 13px;
}

.clientblock p strong {
  color: #384047;
  font-size: 16px;
}

/* Animation */

.testblock {
  -moz-transition: all 0.6s ease;
  -webkit-transition: all 0.6s ease;
  -ms-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
}

.testblock:hover {
  -moz-transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -o-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
  z-index: 2;
}

/*========== 6. PLANS AND PRICING ==============*/

.pricing {
  padding: 25px;
  color: #FFF;
  text-align: center;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}

.pricing .planname {
  text-transform: uppercase;
  font-weight: 600;
}

.pricing .price {
  font-size: 52px;
  font-weight: 300;
  margin: 10px 0;
}

.pricing .billing {
  text-transform: uppercase;
  color: #FFF;
  opacity: 0.7;
  font-size: 12px;
  font-family: opensans-light;
}

.pricing .price .curr {
  display: inline-block;
  font-size: 20px;
  vertical-align: super;
}

.pricing .price .per {
  display: inline-block;
  font-size: 20px;
  vertical-align: baseline;
}

.color1 {
  background-color: #5ca2e0;
}

.color2 {
  background-color: #7676c6;
}

.color3 {
  background-color: #885fc1;
}

/* Animation */

.pricing {
  -moz-transition: all 0.6s ease;
  -webkit-transition: all 0.6s ease;
  -ms-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
}

.pricing:hover {
  -moz-transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -o-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
  z-index: 2;
}

/*========== 7. FAQ ==============*/

.faq p {
  margin-bottom: 25px;
  max-width: 680px;
  margin: auto auto 10px;
  color: #384047;
}

.faq p strong {
  color: #4d5459;
}

/*==========8. FOOTER ==============*/

.footercta {
  padding: 60px 15px;
  color: #FFF;
  text-align: center;
  text-shadow: 0 1px 0 rgba(0, 0, 0, .1);
  background-color: #6883cc;
  background-image: url(../images/footer-bag.png);
  background-repeat: no-repeat;
  background-position: center center;
    /*	background-attachment: fixed;*/
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

.realSearch .footercta {
  padding: 60px 15px;
  color: #FFF;
  text-align: center;
  text-shadow: 0 1px 0 rgba(0, 0, 0, .1);
  background-color: #6883cc;
  background-image: url(../images/footer-bag2.png);
  background-repeat: no-repeat;
  background-position: center center;
    /*	background-attachment: fixed;*/
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

.footercta h1 {
  font-size: 50px;
  color: #fff;
  font-family: OpenSans-Light;
  text-shadow: 0px 2px #52331d;
}

.footercta h1 strong {
  font-family: OpenSans-Bold;
}

.footercta h3 {
  font-size: 30px;
  color: #fff;
  font-family: OpenSans-Light;
  text-shadow: 0px 2px #52331d;
  font-weight: 300;
}

.footercta h3 strong {
  font-family: OpenSans-Bold;
  font-size: 35px;
}

.footerlinks {
  text-align: center;
  margin-top: 20px;
}

.footerlinks a {
  text-align: center;
  padding: 0 13px;
  display: inline-block;
  padding-bottom: 15px;
}

.verifyBlock {
  width: 870px;
  margin: auto;
  padding: 35px 0;
  font-size: 19px;
  font-family: Open Sans;
  color: #384047;
    /* font-weight: 400; */;
}

.verifyBlock a {
  color: #8cc63f;
  font-weight: 700;
}

.text-bold {
  font-weight: 700;
  color: #384047;
  background-image: url('../images/count1.png');
  background-repeat: no-repeat;
  padding-left: 56px;
  height: 55px;
  padding-top: 14px;
}

.text-bold2 {
  font-weight: 700;
  color: #384047;
  background-image: url('../images/conter2.png');
  background-repeat: no-repeat;
  padding-left: 56px;
  padding-top: 14px;
}

.text {
  padding-left: 56px;
}

.disclosures {
  max-width: 790px;
  margin: auto;
  font-size: 14px;
  color: #384047;
  padding: 25px 0px;
    /* font-weight: 400; */
  line-height: 24px;
}

.disclosures span, .disclosures a {
  color: #8cc63f;
  font-weight: 700;
}

.disclosures h4 {
  font-weight: 700;
  color: #384047;
  font-size: 18px;
}

.login-content {
  max-width: 920px;
  margin: auto;
  font-size: 1.2em;
  color: #545454;
  padding: 25px 0px;
  font-weight: 500;
  ;
}

.login-content span, .login-content a {
  color: #8cc63f;
  font-weight: 700;
  word-wrap: break-word;
}

.login-content h4 {
  font-weight: 700;
  color: #384047;
  font-size: 18px;
}

.yellow {
  color: #d19846 !important;
}

.login-form label {
  display: inline-block;
  margin-bottom: 5px;
  font-weight: 600;
  font-size: 18px;
  margin-right: 10px;
}

.textRight {
}

.login-form {
  max-width: 820px;
  margin: auto;
  padding: 35px 0;
  font-size: 20px;
  color: #545454;
  font-weight: 600;
}

.login-form h1 {
  font-size: 30px;
  font-weight: bold;
  margin: 0;
  padding: 0;
}

.login-form a {
  color: #8cc63f;
  font-weight: 700;
}

.login-form .col-md-6 {
  margin-top: 20px;
}

.login-form .textRight a {
  color: #db9128;
  font-weight: 700;
  font-size: 13px;
  padding: 10px 0;
}

.login-form .textRight p {
  text-align: right;
}

.login-form input[type="submit"] {
  padding: 20px 56px;
  margin: 14px 0;
  line-height: 0;
  height: 34px;
  font-weight: 600;
  text-transform: uppercase;
}

.conformation {
}

.conformation h2 {
  color: #384047;
  font-size: 21px;
  font-weight: 700;
}

.conformation-response {
}

.conformation-response h2 {
  color: #8cc63f;
  font-size: 21px;
  font-weight: 700;
}

.signUp {
  max-width: 425px;
  margin: auto;
  padding: 25px 0;
  font-size: 16px;
  color: #545454;
  font-weight: 600;
  text-align: center;
}

.not-mem {
  font-size: 18px;
}

.title h2 {
  color: #384047;
  font-size: 29px;
  font-weight: 700;
  text-align: left;
  padding: 0;
  margin: 0;
}

.members-area {
  padding: 20px 5px;
}

.m_b_20 {
  margin-bottom: 20px;
}

.m_t_20 {
  margin-top: 20px;
}

.m_b_30 {
  margin-bottom: 30px;
}

.m_t_30 {
  margin-top: 30px;
}

.members-area span {
  color: #2ecc71;
}

.members-area .btn {
  padding: 20px 26px;
  margin: 14px 0;
  line-height: 0;
  height: 34px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 20px;
}

.header h1 {
  font-size: 49px;
  line-height: 60px;
  margin: 25px 0;
  font-family: OpenSans-Light;
  text-transform: uppercase;
  margin-top: 80px;
}

.header h1 strong {
  font-family: OpenSans-Bold;
}

.header h2 {
  font-size: 30px;
  line-height: 60px;
  margin: 25px 0;
  font-family: OpenSans-Light;
  margin-top: 40px;
  font-weight: 100;
}

.header h2 strong {
  font-family: OpenSans-Bold;
  font-size: 35px;
}

.header-bag {
  padding: 80px 15px 0px 15px;
  color: #FFF;
  text-align: center;
  text-shadow: 0 1px 0 rgba(0, 0, 0, .1);
  background-color: #d1a17d;
  background-image: url(../images/header-bag.png);
  background-repeat: no-repeat;
  background-position: center center;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

.RsHeaderBag {
  padding: 80px 15px 0px 15px;
  color: #FFF;
  text-align: center;
  text-shadow: 0 1px 0 rgba(0, 0, 0, .1);
  background-color: #d1a17d;
  background-image: url(../images/RsHeaderBag.png );
  background-repeat: no-repeat;
  background-position: center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

.RsHeaderBag .learn-more {
/*background-color: #d19846;
  box-shadow: 0 3px 0px #975901;*/;
}

.learn-more {
  max-width: 225px;
  padding: 10px 34px;
  text-align: center;
  border: 2px solid #d19846;
  color: #fff;
  font-size: 20px;
  font-family: OpenSans-Semibold;
  border-radius: 4px;
  text-transform: uppercase;
  display: inline-block;
}

.btn-more {
  padding: 11px 45px;
  border: 2px solid #ff9600;
  color: #fff;
  font-size: 20px;
  border-radius: 4px;
  text-transform: uppercase;
  margin: 0 15px;
  margin-top: 5px;
  margin-bottom: 5px;
}

.realSearch .btn-more {
/*background-color: #f0ad4e;
  box-shadow: 0 3px 0px #975901;
    border: none;
*/;
}

.feinSearch .section-title h2 {
  max-width: 780px;
  margin: auto;
}

.realSearch .section-title h2 {
  font-size: 38px;
  color: #384047;
}

.planning-button {
  margin: 8px 0;
  padding: 10px 0;
  color: #fff;
  text-align: center;
  font-family: OpenSans-Semibold;
  font-size: 15px;
  text-transform: uppercase;
  display: block;
}

.realSearch .features .col-md-3,.realSearch .features .thumbnail ,.realSearch .features .thumbnail ,.realSearch .features .caption {
  padding: 0;
  margin: 0;
}

.about .col-md-12 {
  padding: 0;
}

.about p {
  color: #384047;
}

.footer ul {
  padding: 0;
}

.footer li {
  list-style-type: none;
  color: #5173bd;
}

.footer li img {
  margin-bottom: 15px;
}

.footer .socials {
  margin: 20px 3px;
}

/*=============Light Box================*/
.modal-header img {
  max-width: 100%;
}

.modal-body {
  padding: 0px;
  background-color: #f4f4f4;
}

.register-form {
  padding-top: 15px;
  padding-bottom: 50px;
}

.content-form {
  padding-left: 50px;
  margin-top: 30px;
  color: #384047;
}

.register-form form label {
  color: #384047;
  width: 198px;
  float: left;
}

.register-form form input[type="text"],.register-form form input[type="password"],.register-form form input[type='email'] {
  width: 355px;
  height: 38px;
  border: 2px solid #e6e6e6;
  margin-bottom: 15px;
}

.register-form h3 {
  max-width: 445px;
  color: #384047;
  margin: auto;
  text-align: center;
}

.content-form ul {
  padding: 0;
}

.content-form li {
  width: 175px;
  list-style-type: none;
  float: left;
  margin-bottom: 10px;
  font-family: openSans-semibold;
  font-size: 13px;
  color: #717171;
}

.register-form .row {
  margin: 0px;
}

.checkboxes {
  float: left;
  width: 350px;
}
/*.register-form input[type="checkbox"] { 
	float: left; -webkit-appearance: none;
	-moz-appearance:none;
	border: 1px solid #b2b2b2;
	width: 16px;
  height: 16px;
  background: url(../images/unchecked.png) left -1px center no-repeat;
  
  margin-right: 5px;
  border-radius: 3px;
}
.register-form input[type="checkbox"]:checked {
    background: url(../images/checked.png) center center no-repeat;
}
*/
.register-form input[type="checkbox"] {
  display: none;
}

.register-form input[type="checkbox"] + label span {
  background: url("../images/unchecked.png") no-repeat;
  cursor: pointer;
  display: inline-block;
  height: 16px;
  margin: 0 4px 0 0;
  vertical-align: middle;
  width: 16px;
}

.register-form input[type="checkbox"]:checked + label span {
  background: url("../images/checked.png") no-repeat;
}

.register-form p {
  font-family: openSans-semibold;
  font-size: 13px;
}

#lightbox .close {
  opacity: 1;
  color: #000;
  background-color: #fff;
  padding: 0px 8px;
  border-radius: 50%;
  border: 3px solid #f0ad4e;
  position: absolute;
  top: -26px;
  right: -23px;
  z-index: 1032;
  font-size: 35px;
}

.modal-content {
  border: 6px solid #f0ad4e !important;
}

.modal-header {
  text-align: center;
}

p .green {
  color: #2ecc71;
  width: auto;
  margin: 0px 2px;
  float: none;
}

.green {
  color: #2ecc71;
}

.modal-content p {
  color: #545454;
}

.modal-content p a {
  color: #f1b76c;
  width: auto;
  margin: 0px 2px;
  float: none;
}

.modal-content input[type="submit"] {
  font-family: opensans-semibold;
  text-transform: uppercase;
  white-space: normal;
  margin-top: 20px;
}

/*==========9. CUSTOM MEDIA QUERIES==============*/

/*MEDIA QUERIES*/

@media (max-width: 991px) {
  h1 {
    font-size: 35px;
    line-height: 50px;
    margin: 15px 0;
  }

  h2 {
    font-size: 35px;
  }

  .testimonials [class*="col-"]:not(:first-child) {
    margin-top: 40px;
  }

  .planpricing [class*="col-"]:not(:first-child) {
    margin-top: 30px;
  }

  .breath {
    margin: 30px auto;
  }

  .verifyBlock {
    width: 100%;
  }

  .content-form {
    padding-left: 35px;
  }

  #lightbox .close {
    top: 0;
    right: 0;
  }

  .login-form .col-md-6  p {
    text-align: center;
  }

  .login-form label {
    display: block;
  }
}

@media (max-width: 767px) {
  h1 {
    font-size: 30px;
    line-height: 40px;
  }

  h2 {
    font-size: 30px;
    line-height: 40px;
  }

  .subscribe [class*="col-"]:not(:first-child) {
    margin-top: 30px;
  }

  .masthead {
    padding: 40px 15px;
  }

  .logo img {
    width: 100%;
  }

  .register-form form label {
    float: none;
    width: auto;
    display: block;
  }

  .register-form form input[type="text"],.register-form form input[type="password"],.register-form form input[type='email'] {
    width: 90%;
  }
}

@media (max-width: 480px) {
    /*Media Queries for smaller devices*/
  .masthead {
    background-attachment: scroll;
  }

  .content-form li {
    width: 100%;
  }

  .checkboxes {
    width: 100%;
  }
}

/*=== v1.1 ===*/

@media (max-device-width: 992px) {

  .masthead {
    background-size: cover;
    background-attachment: scroll;
  }
}

@media (min-width: 1200px) {

  .container {
    width: 970px;
  }

  .modal-dialog {
    width: 670px !important;
  }
}

/*=== v 2.0 ===*/

.signup-block {
  padding: 20px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 7px;
  margin-bottom: 25px;
}

.form-group.last {
  margin-bottom: 0;
}

.multiple-btns .btn + .btn {
  margin: 10px;
}

/*=== Vertical Signup ===*/

.signup-v-layout .masthead {
  padding: 15px;
}

.signup-v-layout .logo {
  padding: 10px 0;
}

/*=== Signup video ===*/

.signup-video .masthead {
  padding: 15px;
}

.signup-video .logo {
  padding: 10px 0;
}

/*=== Web App page ===*/

.web-app .masthead {
  padding: 15px;
}

.web-app .logo {
  padding: 15px 0;
}

.web-app .masthead {
  background-image: url(../images/header_color_2.jpg);
  padding-bottom: 0;
}

.web-app .footercta {
  background-image: url(../images/footer_color_2.jpg);
}

/*=== Mob App page ===*/

.mob-app .masthead {
  padding: 15px;
}

.mob-app .logo {
  padding: 15px 0;
}

.mob-app .masthead {
  background-image: url(../images/header_color_3.jpg);
}

.multiple-links a img {
  margin: 5px;
}

.mob-app .footercta {
  background-image: url(../images/footer_color_3.jpg);
}

/*=== Navigation ===*/

.navbar-default {
  background-color: #d19846;
  border-color: #d19846;
}

.navbar-default .navbar-brand, .navbar-default .navbar-brand:hover {
  color: #FFF;
  font-weight: bold;
}
.home .navbar-default .navbar-nav > li > a {
  
  padding: 25px 18px;
 
}
.navbar-default .navbar-nav > li > a {
  color: #fff;
  text-transform: uppercase;
  font-weight: bold;
  padding: 25px 42px;/*25px 50px;*/
  font-size: 18px;
}

.navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus {
  color: #333;
  background-color: rgba(255, 255, 255, 0.22);
}

.navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus {
  color: rgba(0, 0, 0, 0.5);
  background-color: transparent;
}

.navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:hover, .navbar-default .navbar-nav > .open > a:focus {
  color: #333;
  background-color: rgba(255, 255, 255, 0.21);
}

.navbar-brand {
  padding: 8px 15px;
}

/*========== 10. BLOG ==============*/

.pagination > li > a, .pagination > li > span {
  color: #483f34;
}

.pagination > li > a:hover, .pagination > li > span:hover, .pagination > li > a:focus, .pagination > li > span:focus {
  color: #917E68;
}

.pagination > .active > a, .pagination > .active > span, .pagination > .active > a:hover, .pagination > .active > span:hover, .pagination > .active > a:focus, .pagination > .active > span:focus {
  background-color: #5ca2e0;
  border-color: #3172AC;
  color: #FFFFFF;
}

.vertical-links li {
  border-bottom: 1px solid #E6DDD4;
  padding: 8px 0;
}

.tag-cloud a {
  display: inline-block;
  margin-right: 5px;
  margin-bottom: 10px;
  padding: 2px 8px;
  border: 1px solid #eceae4;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  background: #f8f7f3;
  font-size: 12px;
}

.tag-cloud a:hover {
  text-decoration: none;
}

.comments-block > .media {
  border-bottom: 1px solid #eadeda;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.comments-block > .media .media {
  border-top: 1px solid #eadeda;
  padding-top: 20px;
}

.media-object {
  width: 40px;
}

.comments-head {
  font-size: 35px;
  color: #53504c;
  border-bottom: 1px solid #eadeda;
  margin: 40px 0 20px;
  padding-bottom: 10px;
}

.heading {
  color: #384047;
  font-size: 21px;
  font-weight: 700;
}

/***********
* Plan pricing Section
***********/

.planpricing-wrapper .pricing {
  border-radius: 5px 5px 0px 0px;
}

.clr1 {
  border-right: 2px solid #5ca2e0;
  border-left: 2px solid #5ca2e0;
  border-bottom: 2px solid #5ca2e0;
  border-radius: 0px 0px 5px 5px;
}

.planpricing-wrapper ul {
  list-style-type: none;
  padding-top: 15px;
  min-height: 190px;
}

.clr1 li {
  color: #5ca2e0;
}

.custom-li ul li {
  padding: 5px 30px;
  background-image: url('../images/li-bag.png');
  background-repeat: no-repeat;
  background-position-y: center;
  font-size: 16px;
  font-weight: 600;
}
.azee li{
font-weight:normal !important;
font-size: 1.25em !important;
}

.clr2 {
  border-right: 2px solid #7676c6;
  border-left: 2px solid #7676c6;
  border-bottom: 2px solid #7676c6;
  border-radius: 0px 0px 5px 5px;
}

.clr2 li {
  color: #7676c6;
}

.clr3 {
  border-right: 2px solid #885fc1;
  border-left: 2px solid #885fc1;
  border-bottom: 2px solid #885fc1;
  border-radius: 0px 0px 5px 5px;
}

.clr3 li {
  color: #885fc1;
}

.m-top-20 {
  margin-top: 20px;
}

.finbatch p {
  font-size: 19px;
  padding: 8px 0px;
  color: #e89621;
  font-weight: 600;
}

.fein {
  color: #384047;
}

.fein ul {
  list-style-type: none;
  padding: 15px 0;
}

.signup {
  max-width: 700px;
  margin: auto;
}

.privacy a {
  color: #f1b76c;
}

.privacy label {
  width: auto !important;
}

.signup h3 {
  max-width: 100%;
  color: #384047;
  margin: auto;
  text-align: left;
  font-weight: bold;
  padding: 10px;
}
.green2{
color:#8cc63f;
}

/***********
* FAQ
***********/

.faqs h4{
color:#d19846;
font-size:17px;
font-weight:700;
padding:15px 0px;
}
.faqs p{
font-size:16px;
font-weight:600;
color:#545454;
}
.clear{
	clear:both
}
.ep-solution p{
font-size: 1.18em ;
color:#545454;
}


/********
* Support Form
********/
.support-form label{
  width: 140px !important;
}
.support-form input[type="text"],.support-form input[type="email"],.support-form input[type="password"],.support-form input[type="tel"],.support-form input[type="date"]{
width: 210px !important;
width: 210px !important;
}
.support-form .checkboxes{
width:auto !important;
}
.support-form .privacy label {
width:auto !important
}
.support-form .register-form h3{
  font-size: 19px;
  padding:15px 0 ;
  line-height:24px;
  
}

/******
* About Us
*******/
.robin p{
font-size:15px;
}
.robin span {
  color: #8cc63f;
  font-weight: 700;
}

.about-images{
margin-top:30px;
}

.Ritesh{
margin-top:60px;
}

.Jitendra{
margin-top:70px;
}
.Jeanne{
margin-top:70px;
}
/**********
* It Developer
************/

.orange{
border:2px solid #e99521;
padding:0 20px;
border-bottom-left-radius: 8px;
border-bottom-right-radius: 8px;
 width:60%;
  margin:0 auto;
}

h2.orange-heading{
  background: #e99521;
  text-align: center;
  font-size: 22px;
  font-weight: bold;
  color: #fff;
  padding: 12px;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  margin:0;
  width:60%;
  margin:0 auto;
}

h2.heading-green{
border-radius:10px;
  font-size: 20px;
  font-weight: bold;
background:#8cc63f;
  width:60%;
  margin:0 auto;
  color:#fff;
  padding:30px 10px;
  text-align:center;
  margin-top:10px;
   margin-bottom:20px;
}

.heading-green a{
color:#fff;
text-decoration:none;
}

.business{
font-weight:bold;
font-size:22px;
}

h2.heading-green-bold{
border-radius:10px;
  font-size: 20px;
  font-weight: bold;
background:#8cc63f;
  width:60%;
  margin:0 auto;
  color:#fff;
  padding:30px 60px;
  text-align:center;
  margin-top:20px;
   margin-bottom:20px;
}


.heading-green-bold a{
color:#fff;
text-decoration:none;
}

.heading-green-bold a img{
float:left;
  margin-top: -10px;
}

@media screen and (max-width: 700px) {
h2.heading-green-bold{
border-radius:10px;
  font-size:15px;
  font-weight: bold;
background:#8cc63f;
  width:100%;
  margin:0 auto;
  color:#fff;
  padding:30px 40px;
  text-align:center;
  margin-top:20px;
   margin-bottom:20px;
}
h2.heading-green{
border-radius:10px;
  font-size: 16px;
  font-weight: bold;
background:#8cc63f;
  width:100%;
  margin:0 auto;
  color:#fff;
  padding:30px 10px;
  text-align:center;
  margin-top:10px;
   margin-bottom:20px;
}


.heading-green-bold a img{
width:100px;
}


.orange{
border:2px solid #e99521;
padding:0 20px;
border-bottom-left-radius: 8px;
border-bottom-right-radius: 8px;
 width:100%;
  margin:0 auto;
}

h2.orange-heading{
  background: #e99521;
  text-align: center;
  font-size: 22px;
  font-weight: bold;
  color: #fff;
  padding: 12px;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  margin:0;
  width:100%;
  margin:0 auto;
}

}
/*For textbox default Added by Jitendra 7-July-2015*/
.css-input {
    border-width: 2px;
    border-color: #cccccc;
    border-style: solid;
    padding: 10px;
    font-size: 20px;
    border-radius: 5px;
}
.css-input:focus {
    outline: none;
}
