/* 
 * Main styles, written in SCSS.
 * Examples taken from http://sass-lang.com/guide
 *
 */
/* 
 * Variables and optional mixins, written in SCSS.
 * Examples taken from http://sass-lang.com/guide
 *
 */
/*
@mixin border-radius($radius...)
{
  @if lenght($radius) == 1
  {
    border-radius: nth($radius, 1);   
  }
  @else
  {
    border-radius: nth($radius, 1), nth($radius, 2), nth($radius, 3), nth($radius, 4);   
  }
}
*/
/*! normalize.css v3.0.2 | MIT License | git.io/normalize */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
@import url('/font/style.css');
@import url('/fonts/roboto.css');
@import url('/fonts/stylesheet.css');
@import url('/fonts/Geometri.css');
@import url('/fonts/MyriadPro-B.css');
@import url('/fonts/lato.css');
@import url('/fonts/stylesheetraleway.css');
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/**
 * Remove default margin.
 */
body {
  margin: 0;
}

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none;
}

/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
  outline: 0;
}

/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted;
}

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b,
strong {
  font-weight: bold;
}

/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
  font-style: italic;
}

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/**
 * Address styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000;
}

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9/10.
 */
img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
  margin: 1em 40px;
}

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */
}

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
}

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
  line-height: normal;
}

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome
 *    (include `-moz` to future-proof).
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  /* 2 */
  box-sizing: content-box;
}

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto;
}


/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold;
}

/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

/* 	Base Classied Didn't Need to Modify */
body {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  background: #ffffff;
  color: #000000;
  line-height: 22px;
}

* {
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

a {
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  text-decoration: none !important;
  color: inherit;
}

.black {
  color: #000000 !important;
}

.blue {
  color: #047bb8 !important;
}

.orange {
  color: #ff7e00 !important;
}

.white {
  color: #ffffff !important;
}

.green {
    color: #13ad2c !important;
}
.yellow {
  color: #ffe23f !important;
}

.grey {
  color: #3f5a70 !important;
}

.terquais {
  color: #039fac !important;
}

.color-prime {
  color: #047bb8;
}

.color-secondry {
  color: #ff7e00;
}

.dark-blue {
  color: #047bb8;
}

.bg-black {
  background-color: #000000 !important;
}

.bg-blue {
  background-color: #047bb8 !important;
}

.bg-orange {
  background-color: #ff7e00 !important;
}

.bg-white {
  background-color: #ffffff !important;
}

.bg-yellow {
  background-color: #ffe23f !important;
}

.bg-green {
  background-color: #046747 !important;
}

.bg-grey {
  background-color: #3f5a70 !important;
}

.bg-color-prime {
  background: #047bb8;
}

.bg-color-secondry {
  background: #ff7e00;
}

.bg-color-prime-border {
  border-color: #035a86;
}

.bg-color-secondry {
  border-color: #cc6500;
}

.no-border {
  border: none !important;
}

.no-border-top {
  border-top: none !important;
}

.no-border-right {
  border-right: none !important;
}

.no-border-bottom {
  border-bottom: none !important;
}

.no-border-left {
  border-left: none !important;
}

.no-radius {
  border-radius: 0px !important;
}

.no-mar-pad {
  margin: 0 !important;
  padding: 0 !important;
}

.no-padding {
  padding: 0 !important;
}

.no-padding-right {
  padding-right: 0 !important;
}

.no-padding-left, footer #ftr-section-2 ul {
  padding-left: 0 !important;
}

.no-padding-top {
  padding-top: 0;
}

.no-padding-bottom {
  padding-bottom: 0;
}

.no-margin {
  margin: 0 !important;
}

.no-margin-right {
  margin-right: 0 !important;
}

.no-margin-left {
  margin-left: 0 !important;
}

.no-margin-top {
  margin-top: 0 !important;
}

.no-margin-bottom {
  margin-bottom: 0 !important;
}

.position-absolute {
  position: absolute;
}

.position-relative {
  position: relative;
}

.hcentre {
  margin: 0 auto;
}

.no-border {
  border: none !important;
}

.no-border-top {
  border-top: none !important;
}

.no-border-right {
  border-right: none !important;
}

.no-border-bottom {
  border-bottom: none !important;
}

.no-border-left {
  border-left: none !important;
}

.no-radius {
  border-radius: 0px !important;
}

@media (min-width: 771px) {
  .logo {
    min-height: 1px !important;
  }
}
@media (min-width: 1200px) {
  .lg-no-mar-pad {
    margin: 0 !important;
    padding: 0 !important;
  }

  .lg-no-padding {
    padding: 0 !important;
  }

  .lg-no-padding-right {
    padding-right: 0;
  }

  .lg-no-padding-left {
    padding-left: 0 !important;
  }

  .lg-no-padding-top {
    padding-top: 0;
  }

  .lg-no-padding-bottom {
    padding-bottom: 0;
  }

  .lg-no-margin {
    margin: 0 !important;
  }

  .lg-no-margin-right {
    margin-right: 0 !important;
  }

  .lg-no-margin-left {
    margin-left: 0 !important;
  }

  .lg-no-margin-top {
    margin-top: 0 !important;
  }

  .lg-no-margin-bottom {
    margin-bottom: 0 !important;
  }

  .lg-position-absolute {
    position: absolute;
  }

  .lg-position-relative {
    position: relative;
  }

  .lg-hcentre {
    margin: 0 auto;
  }

  .lg-no-border {
    border: none !important;
  }

  .lg-no-border-top {
    border-top: none !important;
  }

  .lg-no-border-right {
    border-right: none !important;
  }

  .lg-no-border-bottom {
    border-bottom: none !important;
  }

  .lg-no-border-left {
    border-left: none !important;
  }

  .lg-no-radius {
    border-radius: 0px !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .md-no-mar-pad {
    margin: 0 !important;
    padding: 0 !important;
  }

  .md-no-padding {
    padding: 0 !important;
  }

  .md-no-padding-right {
    padding-right: 0;
  }

  .md-no-padding-left {
    padding-left: 0 !important;
  }

  .md-no-padding-top {
    padding-top: 0;
  }

  .md-no-padding-bottom {
    padding-bottom: 0;
  }

  .md-no-margin {
    margin: 0 !important;
  }

  .md-no-margin-right {
    margin-right: 0 !important;
  }

  .md-no-margin-left {
    margin-left: 0 !important;
  }

  .md-no-margin-top {
    margin-top: 0 !important;
  }

  .md-no-margin-bottom {
    margin-bottom: 0 !important;
  }

  .md-position-absolute {
    position: absolute;
  }

  .md-position-relative {
    position: relative;
  }

  .md-hcentre {
    margin: 0 auto;
  }

  .md-no-border {
    border: none !important;
  }

  .md-no-border-top {
    border-top: none !important;
  }

  .md-no-border-right {
    border-right: none !important;
  }

  .md-no-border-bottom {
    border-bottom: none !important;
  }

  .md-no-border-left {
    border-left: none !important;
  }

  .md-no-radius {
    border-radius: 0px !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .sm-no-mar-pad {
    margin: 0 !important;
    padding: 0 !important;
  }

  .sm-no-padding {
    padding: 0 !important;
  }

  .sm-no-padding-right {
    padding-right: 0;
  }

  .sm-no-padding-left {
    padding-left: 0 !important;
  }

  .sm-no-padding-top {
    padding-top: 0;
  }

  .sm-no-padding-bottom {
    padding-bottom: 0;
  }

  .sm-no-margin {
    margin: 0 !important;
  }

  .sm-no-margin-right {
    margin-right: 0 !important;
  }

  .sm-no-margin-left {
    margin-left: 0 !important;
  }

  .sm-no-margin-top {
    margin-top: 0 !important;
  }

  .sm-no-margin-bottom {
    margin-bottom: 0 !important;
  }

  .sm-position-absolute {
    position: absolute;
  }

  .sm-position-relative {
    position: relative;
  }

  .sm-no-border {
    border: none !important;
  }

  .sm-no-border-top {
    border-top: none !important;
  }

  .sm-no-border-right {
    border-right: none !important;
  }

  .sm-no-border-bottom {
    border-bottom: none !important;
  }

  .sm-no-border-left {
    border-left: none !important;
  }

  .sm-no-radius {
    border-radius: 0px !important;
  }
}
@media (min-width: 0px) and (max-width: 767px) {
  .xs-no-mar-pad {
    margin: 0 !important;
    padding: 0 !important;
  }

  .xs-no-padding {
    padding: 0 !important;
  }

  .xs-no-padding-right {
    padding-right: 0;
  }

  .xs-no-padding-left {
    padding-left: 0 !important;
  }

  .xs-no-padding-top {
    padding-top: 0;
  }

  .xs-no-padding-bottom {
    padding-bottom: 0;
  }

  .xs-no-margin {
    margin: 0 !important;
  }

  .xs-no-margin-right {
    margin-right: 0 !important;
  }

  .xs-no-margin-left {
    margin-left: 0 !important;
  }

  .xs-no-margin-top {
    margin-top: 0 !important;
  }

  .xs-no-margin-bottom {
    margin-bottom: 0 !important;
  }

  .xs-position-absolute {
    position: absolute;
  }

  .xs-position-relative {
    position: relative;
  }

  .xs-no-border {
    border: none !important;
  }

  .xs-no-border-top {
    border-top: none !important;
  }

  .xs-no-border-right {
    border-right: none !important;
  }

  .xs-no-border-bottom {
    border-bottom: none !important;
  }

  .xs-no-border-left {
    border-left: none !important;
  }

  .xs-no-radius {
    border-radius: 0px !important;
  }
}
/*  Heading Font-Size */
h1 {
  font-size: 26px;
}

h2 {
  font-size: 24px;
}

h3 {
  font-size: 22px;
}

h4 {
  font-size: 20px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  color: #cc0000;
  font-weight: 700;
}

.va-table {
  display: table;
  width: 100%;
  height: inherit;
  min-height: inherit;
}

.table-cell {
  display: table-cell;
  vertical-align: middle;
}

.btn-custom {
  padding: 15px 15px;
  -webkit-border-radius: 100vw;
  -moz-border-radius: 100vw;
  -o-border-radius: 100vw;
  -ms-border-radius: 100vw;
  border-radius: 100vw;
}
.btn-custom:hover {
  box-shadow: inset 0px 0px 10px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: inset 0px 0px 10px rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: inset 0px 0px 10px rgba(0, 0, 0, 0.5);
}
.btn-custom:focus {
  box-shadow: inset 0px 0px 10px black;
  -moz-box-shadow: inset 0px 0px 10px black;
  -webkit-box-shadow: inset 0px 0px 10px black;
}


.font-italic {
  font-style: italic;
}

.font-normal {
  font-style: normal !important;
}

.font-300 {
  font-weight: 300;
}

.font-400, body {
  font-weight: 400;
}

.font-500 {
  font-weight: 500;
}

.font-600 {
  font-weight: 600;
}

.font-700 {
  font-weight: 700;
}
.font-12
{
	font-size:12px !important;
}
.font-size-40 {
  font-size: 40px;
}

.font-size-38 {
  font-size: 38px;
}

.font-size-36 {
  font-size: 36px;
}

.font-size-34 {
  font-size: 34px;
}

.font-size-32 {
  font-size: 32px;
  line-height:32px;
}

.font-size-30 {
  font-size: 30px;
  line-height:30px;
}

.font-size-28 {
  font-size: 28px;
  line-height:28px;
}

.font-size-26 {
  font-size: 26px;
  line-height:26px;
}

.font-size-24 {
  font-size: 24px;
  line-height:24px;
}

.font-size-22 {
  font-size: 22px;
  line-height:22px;
}

.font-size-20 {
  font-size: 20px;
  line-height:20px;
}

.font-size-18 {
  font-size: 18px;
  line-height:24px;
}

.font-size-16 {
  font-size: 16px;
  line-height:16px;
}

.font-size-14 {
  font-size: 14px;
}

.font-size-12 {
  font-size: 12px;
}

.text-underline {
  text-decoration: underline;
}

.margin-top-5 {
  margin-top: 5px;
}

.margin-top-10 {
  margin-top: 10px;
}

.margin-top-15 {
  margin-top: 15px;
}

.margin-top-20 {
  margin-top: 20px;
}

.margin-top-25 {
  margin-top: 25px;
}

.margin-top-30 {
  margin-top: 30px;
}

.margin-top-110 {
  margin-top: 110px;
}

.margin-bottom-5 {
  margin-bottom: 5px;
}

.margin-bottom-10 {
  margin-bottom: 10px;
}

.margin-bottom-15 {
  margin-bottom: 15px;
}

.margin-bottom-20 {
  margin-bottom: 20px;
}

.margin-bottom-25 {
  margin-bottom: 25px;
}

.margin-bottom-30 {
  margin-bottom: 30px;
}

#top-link-block.affix {
  position: fixed;
  /* keeps it on the bottom once in view */
  bottom: 18px;
  /* height of link element */nav
  right: 10px;
  /* padding from the left side of the window */
  -webkit-border-radius: 100vw;
  -moz-border-radius: 100vw;
  -o-border-radius: 100vw;
  -ms-border-radius: 100vw;
  border-radius: 100vw;
  width: 50px;
  height: 50px;
  background: #047bb8;
  color: #ffffff;
  text-align: center;
  line-height: 50px;
}
.mar-top-14 {
    margin-top: 14px;
}
/* Navigation Starts */

@media (min-width: 992px) {


}

.navbar-default .navbar-nav > .signin > a {
  background-color: #047bb8;
  color: #ffffff;
  font-weight: 600;
}
.navbar-default .navbar-nav>li> p 
{
    padding-left: 10px;
    padding-right: 10px;
	margin-top:8px;
	
}
@media (min-width: 992px) {
  .navbar-default .navbar-nav > .signin > a {
    padding: 10px 25px;
    margin-top: 5px;
  }
}
.navbar-default .navbar-nav > .signin > a:hover {
  color: #ffffff;
  background-color: #ff7e00;
  font-weight: 600;
}


.navbar-default .navbar-nav>.open>a, .navbar-default .navbar-nav>.open>a:focus, .navbar-default .navbar-nav>.open>a:hover {
    color: #000000;
    background-color: #ffffff;
}
.navbar-nav>li>.dropdown-menu {
    margin-top: 0px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}
.dropdown-menu {
    background-color: #046747;
}
.dropdown-menu>li>a:focus, .dropdown-menu>li>a:hover {
    color: #00ff29;
    text-decoration: none;
    background-color: #046747;
}
.dropdown-menu>li>a {
    padding: 3px 10px;
	color:#ffffff;
}
.navbar-right .dropdown-menu {
    left: 0;
    right: auto;
}
.dropdown-menu>.active>a, .dropdown-menu>.active>a:focus, .dropdown-menu>.active>a:hover {
    color: #ff0000;
    text-decoration: none;
    background-color: #046747;
    outline: 0;
}
.navbar-default .navbar-nav>.open>a, .navbar-default .navbar-nav>.open>a:focus, .navbar-default .navbar-nav>.open>a:hover {
    color: #ff0000;
    background-color: #ffffff;
}
.navbar-default .navbar-nav>.active>a, .navbar-default .navbar-nav>.active>a:focus, .navbar-default .navbar-nav>.active>a:hover {
    color: #ff0000;
    background-color: transparent;
}
/*-------------investment-process----------------*/
.chart-flow-icon {
    width: 50%;
    background: #ff8a00;
    color: #ffffff;
    padding: 5px;
    font-size: 16px;
    border-radius: 15px;
    border: none;
    top: 0;
    box-shadow: none;
    text-align: center;
    vertical-align: middle;
    margin-bottom: 0px;
}
/*------------------------------*/
@media (min-width: 992px) {




.btn-text-menu:hover, .btn-text-menu:focus {
    color: #ff8a00;
}

}
.bg-menu-btn {
    background: #039fad;
    padding-left: 5px;
    padding-right: 5px;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-top: -12px;
}
.bg-menu-btn-1 {
    background: #039fad;
    padding-left: 0px;
    padding-right: 0px;
    padding-top: 8px;
    padding-bottom: 11px;
    margin-top: -12px;
}
.btn-text-menu {
    color: #ffffff;
    font-size: 16px;
    font-family: 'latoregular';
}
.font-10 {
    font-size: 10px;
}
.top-0 {
    top: 0px;
}
.font-16 {
    font-size: 16px;
}
@media (min-width: 0) and (max-width: 767px) 
{

}
/* Navigation Ends */
/* 	Planning Web Area */
/* Planning Web Area Entry */
#entry {
  width: 100%;
  height: 95px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999999;
  background-color: #8b755a;
}
#entry .img-container {
  width: 100%;
  height: inherit;
  background: url(/images/bg.jpg) no-repeat center top;
  background-color: #816d53;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 0;
  background-size: cover;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
#entry .btn-custom {
  color: #fff;
  text-transform: uppercase;
  font-weight: 900;
}
#entry .bg-blue {
  background: rgba(4, 123, 184, 0.83);
  float: right;
}
#entry .bg-yellow {
  background: rgba(255, 226, 63, 0.83);
  float: left;
}
@media (min-width: 0) and (max-width: 991px) {
  #entry .bg-blue, #entry .bg-yellow {
    width: 100%;
    float: none;
    margin: 0 auto;
    margin-bottom: 10px;
  }
}
#entry .blur {
  -moz-filter: blur(20px);
  -o-filter: blur(20px);
  -ms-filter: blur(20px);
  -webkit-filter: blur(20px);
  filter: blur(20px);
  overflow: hidden;
}
@media (min-width: 0) and (max-width: 991px) {
  #entry .navbar-header {
    min-height: 95px;
  }
  #entry .navbar-fixed-top .navbar-collapse {
    background-color: #000000;
    max-height: 400px;
  }
  #entry .navbar-fixed-top .navbar-collapse .navbar-nav {
    margin-top: 0px;
  }
  #entry .navbar-fixed-top .navbar-collapse .navbar-nav li {
    text-align: left;
  }
}

.blue-2 {
    color: #046747 !important;
}
#planning-type {
  min-height: calc( 100vh - 60px);
}
#planning-type .va-table {
  min-height: calc(100vh - 60px);
}
#planning-type .margin-bottom-30 {
  margin-bottom: 45px;
}
#planning-type a .icon {
  width: 126px;
  height: 125px;
  -webkit-border-radius: 126px;
  -moz-border-radius: 126px;
  -o-border-radius: 126px;
  -ms-border-radius: 126px;
  border-radius: 126px;
  position: relative;
  margin: 0 auto;
  letter-spacing: 10;
}
#planning-type a .icon + div {
  letter-spacing: 10;
}
#planning-type a .icon + div + div {
  letter-spacing: 5px;
}
#planning-type a .icon:after {
  position: absolute;
  width: 104px;
  height: 104px;
  -webkit-border-radius: 104px;
  -moz-border-radius: 104px;
  -o-border-radius: 104px;
  -ms-border-radius: 104px;
  border-radius: 104px;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  top: 9px;
  left: 9px;
  content: '';
  z-index: 0;
}
#planning-type a .icon img {
  position: relative;
  z-index: 100;
}
#planning-type a:hover .icon:after {
  width: 96px;
  height: 96px;
  top: 14px;
  left: 14px;
}

/* Planning Web Area Entry Ends */
/* Planning */
.blur {
  -moz-filter: blur(10px);
  -o-filter: blur(10px);
  -ms-filter: blur(10px);
  -webkit-filter: blur(10px);
  filter: blur(10px);
  overflow: hidden;
}

#planning .row {
  margin-top: 25px;
  margin-bottom: 25px;
}
#planning .btn-custom {
  font-style: italic;
  padding: 10px 100px;
}
@media (min-width: 0) and (max-width: 991px) {
  #planning .btn-custom {
    padding: 10px 50px;
  }
}
#planning .carousel-inner > .item {
  padding: 20px 0px;
  box-sizing: border-box;
}

rzslider {
  margin: 0 auto;
  height: 18px;
}
rzslider .rz-bar {
  height: 10px;
}
rzslider .rz-bubble {
  display: none;
}
rzslider .rz-pointer {
  background-color: #54c5d3;
  width: 25px;
  height: 25px;
  top: -7px;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  -o-border-radius: 25px;
  -ms-border-radius: 25px;
  border-radius: 25px;
  border: solid 3px #039fac;
}
rzslider .rz-pointer:after {
  display: none;
}

rzslider.terquais-bar .rz-bar {
  background-color: #55c3fb;
}
rzslider.terquais-bar .rz-selection {
  background-color: #055c88;
}
rzslider.terquais-bar .rz-pointer {
  background-color: #ff7e00;
  border: 2px solid #b85d04;
}

rzslider.orange-bar .rz-bar {
  background-color: #64c9fd;
}
rzslider.orange-bar .rz-selection {
  background-color: #047bb8;
}
rzslider.orange-bar .rz-pointer {
  background-color: #4dc3ff;
  border: 2px solid #047bb8;
}

rzslider.yellow-bar .rz-bar {
  background-color: #fcc996;
}
rzslider.yellow-bar .rz-selection {
  background-color: #ff7e00;
}
rzslider.yellow-bar .rz-pointer {
  background-color: #ffba77;
  border: 2px solid #ff7e00;

}
/*----------navbar-------*/




#planning .navbar-default {
  background: #ffffff;
  border-bottom: none;
      box-shadow: 0px 0px 5.5px #888888;
}

#planning-your-goal {
  min-height: calc( 100vh - 60px - 95px );
  margin-top: 110px;
  box-sizing: border-box;
  margin-bottom: 15px;
}
#planning-your-goal .va-table {
  min-height: calc( 100vh - 60px - 95px );
}
#planning-your-goal .margin-bottom-30 {
  margin-bottom: 30px;
}
#planning-your-goal .carousel-control {
  width: auto;
  color: #317901;
}
#planning-your-goal .carousel-control.left, #planning-your-goal .carousel-control.right {
  background-image: none;
}

/*new css header*/
/*--------------navbar--header---------------*/
.bg-color-header {
    background: #cc0000;
}
.header-mail-txt {
    font-family: 'latoregular';
    font-size: 13px;
    color: #ffffff;
}
.header-mail-ul-margin {
    margin-top: 7px;
}
.header-icon-1 {
    margin-top: 7px;
    margin-left: 50px;
}
.header-padding {
    height: 38px;
}
.head-mail-txt
{
	color:#ffffff;
	font-family: 'robotoregular';
	font-size:12px;
}
.header-mail-txt {
    font-family: 'robotoregular';
    font-size: 12px;
    color: #ffffff;
}
.sub-text
{
	color:#9a9a9a;
	font-size:12px;
	font-family: 'robotoregular';
}



/*---------------custon-button---------------*/
/*----Button-------*/
.hvr-shutter-out-horizontal {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    position: relative;
    background: #e1e1e1;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}
.hvr-shutter-out-horizontal:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 50%;
    transform-origin: 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
	border-radius:3px;
	color:#ffffff;
}
.hvr-shutter-out-horizontal:hover:before, .hvr-shutter-out-horizontal:focus:before, .hvr-shutter-out-horizontal:active:before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}
[class^="hvr-"] {
    padding: 5px 5px;
	margin-top:10px;
	border-radius:3px;
	font-size:11.5px;
    cursor: pointer;
    background: none;
	border:solid 1px #ffffff;
    text-decoration: none;
    color: #ffffff;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
[class^="hvr-"]:hover, [class^="hvr-"]:focus 
{
    color: #046747;
    border: solid 1px #046747;
}

/*-------btn-signin------*/

[class^="signin-"] {
    height:38px;
	width:100px;
	padding:8px 5px;
	text-align:center;
    cursor: pointer;
    background: #e1e1e1;
    text-decoration: none;
    color: #666;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.signin-shutter-in-horizontal:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #29c843;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transform-origin: 50%;
    transform-origin: 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}
.signin-shutter-in-horizontal:hover, .signin-shutter-in-horizontal:focus, .signin-shutter-in-horizontal:active {
    color: white;
}
.signin-shutter-in-horizontal:hover:before, .signin-shutter-in-horizontal:focus:before, .signin-shutter-in-horizontal:active:before {
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
}
.signin-shutter-in-horizontal:hover, .signin-shutter-in-horizontal:focus, .signin-shutter-in-horizontal:active {
    color: white;
}
.signin-shutter-in-horizontal {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    position: relative;
    background: #0b871f;
	color:#ffffff;
	font-size:13px;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
	font-family: 'robotoregular';
}
/*-------btn-signup-------*/
.signup-shutter-in-horizontal {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    position: relative;
    background: #cc0000;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}
[class^="signup-"] {
    height:38px;
	width:185px;
	padding:8px 5px;
    cursor: pointer;
    background: #e1e1e1;
    text-decoration: none;
	text-align:center;
    color: #666;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.signup-shutter-in-horizontal:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ff1a1a;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transform-origin: 50%;
    transform-origin: 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}
.signup-shutter-in-horizontal:hover, .signup-shutter-in-horizontal:focus, .signup-shutter-in-horizontal:active {
    color: white;
}
.signup-shutter-in-horizontal:hover:before, .signup-shutter-in-horizontal:focus:before, .signup-shutter-in-horizontal:active:before {
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
}
.signup-shutter-in-horizontal:hover, .signup-shutter-in-horizontal:focus, .signup-shutter-in-horizontal:active {
    color: white;
}
.signup-shutter-in-horizontal {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    position: relative;
    background: #ff4d4d;
	color:#ffffff;
	font-size:13px;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
	font-family: 'robotoregular';
}
/*-------------*/
/*-------------------------------------------*/
/*----------------navbar---------------------*/
.navbar-default {
    background: #ffffff;
    border-color: transparent;
    min-height: 125px;
    box-shadow: 0px 0px 5.5px #888888;
}
.navbar-brand {
    padding: 15px 0px;
}
.navbar-nav {
    margin-top: 20px;
}
.navbar-default .navbar-nav>li>a {
    color: #000000;
    padding-top: 8px;
    padding-bottom: 15px;
    padding-left: 10px;
    padding-right: 10px;
}
.navbar-default .navbar-nav>li>a:focus, .navbar-default .navbar-nav>li>a:hover {
    color: #ff0000;
    background-color: transparent;
}
.menu-bar-seprator {
    margin: 0px;
    padding-top: 12px;
    padding-left: 12px;
    padding-right: 12px;
}

/*-------------------------------------------*/
/* Scroller */
::-webkit-scrollbar {
    width: 5px !important;
}
 
/* Track */
::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 3px rgba(0,0,0,0.3) !important; 
    -webkit-border-radius: 10px !important;
    border-radius: 10px !important;
}
 
/* Handle*/
::-webkit-scrollbar-thumb {
    -webkit-border-radius: 10px !important;
    border-radius: 10px !important;
    background: #13ad2c !important; 
    -webkit-box-shadow: inset 0 0 3px rgba(0,0,0,0.5) !important; 
}
::-webkit-scrollbar-thumb:window-inactive {
	background: rgba(245,75,0,0.4) !important;
}


/*-----------------------------------------------------*/



/*--------------------------------*/



@media (min-width: 0) and (max-width: 991px) {
  #planning-your-goal .carousel-control.left, #planning-your-goal .carousel-control.right {
    display: none;
  }
}
#planning-your-goal .result-box {
  width: 100%;
  min-height: 135px;
  background-color: rgba(230, 221, 215, 0.25);
  -webkit-border-radius: 11px;
  -moz-border-radius: 11px;
  -o-border-radius: 11px;
  -ms-border-radius: 11px;
  border-radius: 11px;
  border: solid 3px rgba(163, 163, 163, 0.67);
  box-sizing: border-box;
}

.input-container {
  margin: 15px 0;
}

.radio {
  margin: 0 auto;
  list-style: none;
  padding: 0;
  width: 100%;
}
.radio input[type=radio] {
  display: none;
}
.radio input[type=radio] + label {
  border: solid 1px #047bb8;
  background: rgba(4, 123, 184, 0.16);
  -webkit-transition: all 0.1s ease;
  -moz-transition: all 0.1s ease;
  -o-transition: all 0.1s ease;
  transition: all 0.1s ease;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -o-border-radius: 20px;
  -ms-border-radius: 20px;
  border-radius: 20px;
  cursor: pointer;
  box-sizing: border-box;
  padding: 10px 15px;
  position: relative;
  font-size: 16px;
  color: #000000;
  font-weight: 400;
}
@media (min-width: 0) and (max-width: 991px) {
  .radio {
    margin-top: 10px;
  }
}
.radio li {
  float: left;
  padding: 0 5px;
}
@media (min-width: 0px) and (max-width: 991px) {
  .radio li {
    width: auto;
    padding: 0 10px;
    margin-bottom: 10px;
  }
}
.radio li input:checked + label {
  background: rgba(244, 130, 78, 0.16);
  border-color: #f4824e;
}
.radio li:first-of-type {
  padding-left: 0px;
}
.radio li:last-of-type {
  padding-right: 0px;
}

.inr-prefix {
  width: 100%;
  outline: none;
  border: none;
  border-bottom: solid 1px #e6e6e6;
  position: relative;
  padding-left: 35px;
}
.inr-prefix + lable {
  position: absolute;
  content: 'INR';
  font-size: 18px;
  color: #ff7e00;
  top: 2px;
  left: 15px;
}

#planning-result {
  display: none;
  z-index: 110000;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
}
#planning-result .banner {
  background-color: rgba(0, 0, 0, 0.5);
  background-size: cover;
  width: 100%;
  min-height: 100vh;
  margin-bottom: 0px;
  display: table;
}

.form-area {
  width: 100%;
  height: 430px;
}
.form-area header {
  background: #ff7e00;
  width: 100%;
  min-height: 105px;
  text-align: center;
  box-sizing: border-box;
  padding: 15px;
  color: #ffffff;
  position: relative;
}
.form-area header h2 {
  font-family: "Open Sans", sans-serif;
  color: #ffffff;
  margin-bottom: 0px;
  margin-top: 0px;
}
@media (min-width: 991px) {
  .form-area header h2 {
    line-height: 75px;
  }
}
.form-area header a {
  text-align: center;
  color: #f2e8c5;
  text-decoration: underline;
  font-size: 13px;
}
.form-area header #close_form {
  position: absolute;
  right: 10px;
  top: 10px;
  border: solid 2px #ffffff;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -o-border-radius: 30px;
  -ms-border-radius: 30px;
  border-radius: 30px;
  width: 30px;
  height: 30px;
  line-height: 26px;
  text-align: center;
  cursor: pointer;
}
.form-area #main-form {
  height: 325px;
  background: #ffffff;
  padding: 15px;
}
.form-area #main-form tr {
  margin-top: 15px;
}
.form-area #main-form td {
  position: relative;
  padding-bottom: 20px;
}
.form-area #main-form input {
  width: 100%;
  border: none;
  border-bottom: solid 1px #e6e6e6;
  color: #ff7e00;
  font-size: 13px;
  position: relative;
  outline: none;
  padding: 20px 0px 7px 0px;
  z-index: 10;
  background: none;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.form-area #main-form input + label {
  position: absolute;
  font-size: 13px;
  top: 0px;
  left: 0px;
  width: 100%;
  color: gray;
  font-weight: normal;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  padding: 20px 0;
  margin: 0;
}
.form-area #main-form input + label:after {
  content: '';
  position: absolute;
  bottom: 14px;
  margin: 0 auto;
  left: 0px;
  width: 0%;
  height: 2px;
  background: #ff7e00;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.form-area #main-form input:focus {
  outline: none;
}
.form-area #main-form input:focus + label {
  font-size: 10px;
  padding: 0px;
  z-index: 20;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.form-area #main-form input:focus + label:after {
  bottom: -26px;
  width: 100%;
}
.form-area #main-form input:valid {
  background: #ffffff;
}
.form-area #main-form input:valid + label {
  font-size: 10px;
  padding: 0px;
  z-index: 20;
}
.form-area #main-form input:valid + label:after {
  bottom: -26px;
  width: 0%;
}
.form-area #main-form input[type=submit] {
  width: 200px;
  height: 50px;
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  color: #ffffff;
  border: none;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -o-border-radius: 50px;
  -ms-border-radius: 50px;
  border-radius: 50px;
  margin: 0 auto;
  background: #ff7e00;
  padding: 0px;
}
.form-area #main-form tr:nth-child(3) input {
  width: 90%;
}
.form-area #main-form tr:nth-child(3) input + label {
  width: 90%;
}
.form-area #main-form tr:nth-child(4) td {
  padding-top: 15px;
}
/*-----------how we do- section------------*/
.nav-pills>li>a:focus, .nav-pills>li>a {
    text-decoration: none;
    background-color: #cc0000;
    color: #ffffff;
}
.nav>li>a:focus, .nav>li>a:hover {
    text-decoration: none;
    background-color: #ff0000;
    color: #ffffff;
}
/*---------------------------------------*/
/* Footer */
/*-----------------footer--------------------*/
.footer-text-1 {
    color: #ffffff;
    margin-top: 35px;
    font-family: 'robotoregular';
	font-size:14px;
}
.arm-sty {
    float: right;
    font-size: 11px;
    margin-bottom: 0px;
    color: #505050;
    font-family: 'robotomedium';
}
.footer-logo-margin
{
	margin-top:5px;
}
#bner-ftr-icn {
    width: 100%;
    height: 87px;
    min-height: 87px;
    bottom: 0px;
    left: 0;
    background: #cc0000;
}
#modal-footer1 {
    text-align: left;
    background-color: #ffffff;
    border-top: solid 1px #627d9a;
    padding-bottom: 4px;
    padding-top: 15px;
    border-top: none;
    bottom: 0px;

    width: 100%;
    z-index: 99;
}
.ftr-padding {
    padding: 0px;
}
.footer-text-2 {
    color: #ffffff;
  
    margin-bottom: 0px;
    font-family: 'robotoregular';
    font-size: 17px;
    padding-left: 28px;
}
.footer-text-3 {
    color: #ffffff;
    margin-top: 0px;
    margin-bottom: 0px;
    font-family: 'MYRIADPROREGULAR';
    font-size: 12px;
    padding-left: 27px;
}
#bner-ftr-icn .list-inline {
    margin-top: 35px;
}
.ftr-logo-padding {
    padding-left: 10px;
    padding-right: 0px;
    padding-top: 0px;
    padding-bottom: 0px;
}
.ftr-imagetext {
    padding: 0px;
    margin-top: 15px;
}
.ftr-padding-1 {
    padding: 0px;
}
.linkbar-footer a:hover, .linkbar-footer a:hover {
    color: #13ad2c;
}
.linkbar-footer a {
    font-size: 11px;
    font-family: 'robotomedium';
    color: #505050;
}
.list-inline>li {
    padding-right: 0px;
    padding-left: 3px;
}
.ftr-no-pad-cust {
    padding: 0px;
}
.clr-grey {
    color: #505050;
}
.clr-grey1:hover, .clr-grey1:focus {
    color: #13ad2c;
}
.roboto-meduim
{
	font-family: 'robotomedium';
}
.font-11px
{
	font-size:11px;
}
/*-------------------------------------*/

/* 	Planning Web Area Ends */

/*# sourceMappingURL=planning.css.map */
/*-----planning footer------------*/

.orange {
    color: #ff8a00 !important;
}

.bner-ftr-icn {
    width: 100%;
    min-height: 60px;
    bottom: 0px;
    left: 0;
    background: rgb(3, 159, 173);
    z-index: 11;
    padding-top: 10px;
    padding-bottom: 0px;
    padding-left: 0px;
    padding-right: 0px;
}
.btn-3 {
    border: 1px solid #ff8a00;
    color: #ffffff;
}
.btn-vin-knowmore {
    font-family: inherit;
    font-size: 11px;
    color: #ff8a00;
    border-radius: 2px;
    background: none;
    cursor: pointer;
    padding: 8px 5px;
    letter-spacing: 1px;
    font-weight: 500;
    outline: none;
    position: relative;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}

.btn-3c:hover, .btn-3c:active {
    color: #ffffff;
}
.btn-3c:hover:after, .btn-3c:active:after {
    width: 100%;
}
.btn-vin-knowmore:after {
    content: '';
    position: absolute;
    z-index: -1;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}

.btn-3c:after {
    width: 0%;
    height: 100%;
    top: 0;
    left: 0;
    background: #6193f1;
}
.mar-top-15 {
    margin-top: 15px;
}
.mar-top-14 {
    margin-top: 14px;
}
.mar-top-10 {
    margin-top: 10px;
}
.mar-top-5 {
    margin-top: 5px;
}

.clr-sky-blue {
    color: #4ba3e1 !important;
}
.font-18 {
    font-size: 18px;
}
.clr-wht {
    color: #ffffff !important;
}
@media (max-width:1024px)
{
.navbar-default .navbar-nav>li>a 
{
    color: #444444;
    padding-top: 0px;
    padding-bottom: 0px;
    padding-left: 5px;
    padding-right: 4px;
    font-family: 'latobold';
    font-size: 13px;
	margin-top:10px;
	
}

}
@media (max-width: 768px)
{
.bg-color-header {
    display: none;
}
#plannning-type-select .margin-top-10 {
    margin-top: 140px;
}
.navbar-brand 
{
	width:230px;
}
.navbar-default 
{
    min-height: 84px;
}
.navbar-default .navbar-nav>li>a
{
    padding-left: 3px;
    padding-right: 4px;
	padding-top:0px;
	padding-bottom:0px;
}
.navbar-default .navbar-nav>li> p
{
    padding-left: 10px;
    padding-right: 10px;
	margin-bottom:0px;
	margin-top:10px;
}
.navbar-nav {
    margin-top: 20px;
}
.bg-menu-btn-1 
{
    padding-top: 8px;
    padding-bottom: 12px;
}
.arm-sty {
    float: left;
}
}
@media (max-width: 425px)
{
	.navbar-collapse {
    margin-top: 0px;
}
.navbar-nav {
    margin-top: 0px;
}
.navbar-default .navbar-toggle {
    border-color: #ff8a00;
    margin-top: 20px;
}
.navbar-default {

    min-height: 90px;
}
.navbar-default .navbar-toggle .icon-bar {
    background: #cc0000;
}
.navbar-toggle {
    background-color: rgba(214, 35, 35, 0);
    background-image: none;
    border: 1px solid #ff8a00;
    border-radius: 4px;
    background: #ff8a00 !important;
    margin-top: 25px;
}
.navbar-brand 
{
    padding: 15px 15px;
    width: 255px;
}

#plannning-type-select .margin-top-10 
{
    margin-top: 140px;
    line-height: 32px;
}
#planning-type .margin-bottom-30 {
    margin-bottom: 10px;
}
#planning-type .mar-top-10 {
    margin-top: 100px;
}
#planning-type a .icon + div + div {
    letter-spacing: 5px;
    margin-bottom: 15px;
}
.navbar-collapse {
    padding-right: 15px;
    padding-left: 15px;
    overflow-x: visible;
    -webkit-overflow-scrolling: touch;
    border-top: 0px solid transparent;
    -webkit-box-shadow: inset 0 0px 0 rgba(255,255,255,.1);
    box-shadow: inset 0 0px 0 rgba(255,255,255,.1);
}
.navbar-default .navbar-nav > li {
    margin-top: 1px;
    border-right: none;
    margin-right: 3px;
    margin-left: 3px;
}
.navbar-default .navbar-nav>li>a {
    padding-top: 5px;
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 5px;
}
.bg-menu-btn-1 {
    display: none !important;
}
#planning .btn-custom 
{
	margin-top:10px;
}
.navbar-fixed-bottom .navbar-collapse, .navbar-fixed-top .navbar-collapse {
    max-height: 460px;
}
.menu-bar-seprator {
    display: none;
}
.ftr-padding {
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}
#bner-ftr-icn {
    height: 83px;
    min-height: 83px;
    background: #cc0000;
}
.ftr-padding {
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}
.footer-text-1 {
    margin-top: 25px;
}
#bner-ftr-icn .list-inline {
    margin-top: 25px;
}
[class^="hvr-"] 
{
    margin-top: 0px;
}
#planning-your-goal 
{
  margin-top: 90px;
}
}
@media (max-width:320px) and (min-width: 0)
{
#planning .btn-custom {
    padding: 10px 20px;
}
.navbar-brand {
    padding: 15px 12px;
}
.navbar-default .navbar-toggle 
{
    margin-top: 25px;
}
.navbar-default 
{
    min-height: 90px;
}
}
