/* 
 * 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.
 */
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: "latoregular", Poppins-Regular, Arial;
  font-size: 15px;
  background: #ffffff;
  color: #000000;
  line-height: 22px;
}

#history-back {
  display: none;
  position: fixed;
  bottom: 50px;
  left: 20px;
}

a {
  text-decoration: none !important;
  color: inherit;
}
a:hover {
  color: #00b0e4;
}

.black {
  color: #000000 !important;
}

.blue {
  color: #428dc8 !important;
}

.orange {
  color: #f56d09 !important;
}

.white {
  color: #ffffff !important;
}

.green {
  color: #06662c !important;
}

.yellow {
  color: #ffbc35 !important;
}

.grey {
  color: #999999 !important;
}

.terquais {
  color: #07c8b8 !important;
}

.dark-green {
  color: #06662c !important;
}

.brown {
  color: #675140 !important;
}

.color-prime {
  color: #0665a8;
}

.color-secondry {
  color: #00b0e4;
}

.grey-blue {
  color: #2d3f50;
}

.dark-grey {
  color: #797979;
}

.red {
  color: #d81921 !important;
}

.purple {
  color: #3c55a5 !important;
}

.turquois-light {
  color: #53b9d0 !important;
}

.turquois-dark {
  color: #1596b7 !important;
}

.green-light {
  color: #e6f373 !important;
}

.rupee {
  font-family: "rupee_foradianregular";
}

.roboto-reg {
  font-family: "robotoregular", Roboto;
}

.roboto-light {
  font-family: "robotolight";
}

.roboto-med {
  font-family: "robotomedium";
}

.roboto-bold {
  font-family: "robotobold";
}

.opensans-reg {
  font-family: "open_sansregular";
}

.opensans-semibold {
  font-family: "open_sanssemibold";
}

.opensans-bold {
  font-family: "open_sansbold";
}

.poppins-reg {
  font-family: "Poppins-Regular";
}

.poppins-med {
  font-family: "Poppins-Medium";
}

.poppins-semibold {
  font-family: "Poppins-SemiBold";
}

.bg-black {
  background: #000000;
}

.bg-blue {
  background: #428dc8;
}

.bg-yellow {
  background: #ffbc35;
}

.bg-green {
  background: #06662c;
}

.bg-light-green {
  background: #73a114;
}

.bg-white {
  background: #ffffff;
}

.bg-grey {
  background: #56595c;
}

.bg-color-prime {
  background: #0665a8;
}

.bg-color-secondry {
  background: #00b0e4;
}

.bg-brown {
  background: #675140;
}

.bg-turquois {
  background: #52c8b9;
}

.bg-red {
  background: #d81921;
}

.bg-orange {
  background: #f56d09;
}

.bg-green-light {
  background: #e6f373;
}

.bg-color-prime-border {
  border-color: #044777;
}

.bg-color-secondry {
  border-color: #0089b1;
}

.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;
}
@media (min-width: 0) and (max-width: 768px) {
  .no-padding-right {
    padding-right: 10px;
  }
}

.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: #0665a8;
  font-weight: 700;
}

.va-table {
  display: table;
  width: 100%;
  min-height: 100vh;
}

.table-cell {
  display: table-cell;
  vertical-align: middle;
}

.btn-custom {
  padding: 15px 15px;
  border-radius: 100vw;
  outline: none;
}
.btn-custom:hover {
  box-shadow: inset 0px 0px 3px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: inset 0px 0px 3px rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: inset 0px 0px 3px rgba(0, 0, 0, 0.5);
  outline: none;
}
.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;
  outline: none;
}

.font-300 {
  font-weight: 300;
}

.font-400, body {
  font-weight: 400;
}

.font-500 {
  font-weight: 500;
}

.font-700 {
  font-weight: 700;
}

.font-size-70 {
  font-size: 70px;
  line-height: 70px;
}

.font-size-58 {
  font-size: 58px;
  line-height: 58px;
}

.font-size-53 {
  font-size: 53px;
  line-height: 53px;
}

.font-size-40 {
  font-size: 40px;
  line-height: 40px;
}

.font-size-38 {
  font-size: 38px;
  line-height: 38px;
}

.font-size-36 {
  font-size: 36px;
  line-height: 36px;
}

.font-size-34 {
  font-size: 34px;
  line-height: 34px;
}

.font-size-33 {
  font-size: 33px;
  line-height: 33px;
}

.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-25 {
  font-size: 25px;
  line-height: 25px;
}

.font-size-24 {
  font-size: 24px;
  line-height: 24px;
}

.font-size-23 {
  font-size: 23px;
  line-height: 23px;
}

.font-size-22 {
  font-size: 22px;
  line-height: 22px;
}

.font-size-21 {
  font-size: 21px;
  line-height: 21px;
}

.font-size-20 {
  font-size: 20px;
  line-height: 20px;
}

.font-size-18 {
  font-size: 19px;
  line-height: 19px;
}

.font-size-18 {
  font-size: 18px;
  line-height: 18px;
}

.font-size-17 {
  font-size: 17px;
  line-height: 17px;
}

.font-size-16 {
  font-size: 16px;
  line-height: 16px;
}

.font-size-15 {
  font-size: 15px;
  line-height: 15px;
}

.font-size-14 {
  font-size: 14px;
  line-height: 14px;
}

.font-size-13 {
  font-size: 13px;
  line-height: 13px;
}

.font-size-12 {
  font-size: 12px;
  line-height: 12px;
}

.font-size-11 {
  font-size: 11px;
  line-height: 11px;
}

.font-size-10 {
  font-size: 10px;
}

.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-35 {
  margin-top: 35px;
}

.margin-top-50 {
  margin-top: 50px;
}

.margin-top-60 {
  margin-top: 60px;
}

.margin-top-100 {
  margin-top: 100px;
}

.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;
}

.padding-top-10 {
  padding-top: 10px;
}

.padding-top-15 {
  padding-top: 15px;
}

.padding-top-20 {
  padding-top: 20px;
}

.padding-top-25 {
  padding-top: 25px;
}

.padding-top-30 {
  padding-top: 30px;
}

.padding-top-30 {
  padding-top: 30px;
}

.padding-top-60 {
  padding-top: 60px;
}

.padding-top-100 {
  padding-top: 100px;
}

.padding-bottom-10 {
  padding-bottom: 10px;
}

.padding-bottom-15 {
  padding-bottom: 15px;
}

.padding-bottom-20 {
  padding-bottom: 20px;
}

.padding-bottom-25 {
  padding-bottom: 25px;
}

.padding-bottom-30 {
  padding-bottom: 30px;
}

.padding-left-10 {
  padding-left: 10px;
}

.padding-left-25 {
  padding-left: 25px;
}

.padding-right-25 {
  padding-right: 25px;
}

/* Navigation Starts */
#inner-pages .navbar {
  opacity: 1;
}

/*.navbar{
	min-height:110px;
	opacity:0;
	z-index:9999;
	border-radius:1px solid #e8e8e8;
}
nav .navbar-right {
    padding-top: 25px;
	}
.show-nav{
	opacity:1;
}
.navbar-default .navbar-nav > li > a, .navbar-default .navbar-nav > li > a{
    color: #4d4d4d;
}
.navbar-default .navbar-nav>.active>a, .navbar-default .navbar-nav>.active>a:focus, .navbar-default .navbar-nav>.active>a:hover,.navbar-default .navbar-nav>li>a:focus, .navbar-default .navbar-nav>li>a:hover  {
		background: none;
		color: #0174cf;
		font-weight: 500;
	}*/
@media (min-width: 992px) {
  /*.navbar-nav{
  	margin-top: 10px;
  }*/
}
@media (min-width: 0) and (max-width: 991px) {
  	/*.navbar-collapse{
  		margin-top: 50px;
  	}
  .navbar-default .navbar-nav > li > a, .navbar-default .navbar-nav > li > a{
      color: $white;
  }*/
}
@media (min-width: 992px) and (max-width: 1024px) {
  	/*.navbar-collapse{
  		margin-top: 30px;
  	}
  .navbar-default .navbar-nav > li > a, .navbar-default .navbar-nav > li > a{
      color: $white;
  }
  .navbar-right:before {
      min-height: 47px;
      min-width: 22px;
      left: 350px;
      position: absolute;
      border-bottom: 47px solid #06662c;
      border-left: 30px solid transparent;
  }
  .navbar-right:after {
      min-height: 47px;
      min-width: 35px;
      right: -7px;
      position: absolute;
      background: #06662c;
  }*/
}
@media (min-width: 768px) and (max-width: 991px) {
  /*.navbar-default .navbar-nav > li > a, .navbar-default .navbar-nav > li > a{
      color: $white;
  }
  .navbar-default .navbar-nav > li > a {
      padding: 12px 17px;
  }
  .navbar-right:before {
      min-height: 44px;
      min-width: 22px;
      left: 0px;
      position: absolute;
      border-bottom: 44px solid #06662c;
      border-left: 25px solid transparent;
  }
  .navbar-right:after {
      min-height: 44px;
      min-width: 35px;
      right: -7px;
      position: absolute;
      background: #06662c;
  }*/
}
#trans_login .navbar-right {
  margin-top: 32px;
}

/* 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(66, 141, 200, 0.83);
  float: right;
}
#entry .bg-yellow {
  background: rgba(255, 188, 53, 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;
  }
}

#planning-type {
  min-height: calc( 100vh - 97px);
}
@media (min-width: 426px) and (max-width: 768px) {
  #planning-type {
    min-height: 100vh;
    margin-top: 80px;
  }
}
#planning-type .va-table {
  min-height: calc(100vh - 97px);
}
@media (min-width: 426px) and (max-width: 768px) {
  #planning-type .va-table {
    min-height: 100vh;
  }
}
#planning-type .margin-bottom-30 {
  margin-bottom: 50px;
}
#planning-type a .icon {
  width: 126px;
  height: 95px;
  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;
  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 .btn-custom2 {
  font-style: italic;
  padding: 10px 50px;
  border-radius: 100vw;
}
@media (min-width: 0) and (max-width: 991px) {
  #planning .btn-custom2 {
    padding: 10px 50px;
  }
}
#planning .carousel-inner > .item {
  padding: 10px 0px;
  box-sizing: border-box;
  min-height: calc( 100vh - 150px );
}
#planning .ftr {
  padding-bottom: 15px;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
}

rzslider {
  margin: 0 auto;
  height: 18px;
}
rzslider .rz-bar {
  height: 6px;
}
rzslider .rz-bubble {
  display: none;
}
rzslider .rz-pointer {
  width: 14px;
  height: 23px;
  top: -8px;
  background: #ffffff;
  border: 3px solid #ffffff;
  border-radius: 11px;
}
rzslider .rz-pointer:after {
  display: none;
}

rzslider.terquais-bar .rz-bar {
  background-color: #dfdfdf;
}
rzslider.terquais-bar .rz-selection {
  background-color: #07c8b8;
}
rzslider.terquais-bar .rz-pointer {
  background-color: #07c8b8;
}

rzslider.orange-bar .rz-bar {
  background-color: #ce724b;
}
rzslider.orange-bar .rz-selection, rzslider.orange-bar .rz-pointer {
  background-color: #f56d09;
}

rzslider.yellow-bar .rz-bar {
  background-color: #d1b566;
}
rzslider.yellow-bar .rz-selection, rzslider.yellow-bar .rz-pointer {
  background-color: #ffbc35;
}

rzslider.prime-bar .rz-bar {
  background-color: #dfdfdf;
}
rzslider.prime-bar .rz-selection, rzslider.prime-bar .rz-pointer {
  background-color: #0665a8;
}

#plannning-type-select .navbar-default {
  background: #ffffff;
  border-bottom: 1px solid #dadada;
}
#plannning-type-select nav {
  height: 75px;
}
@media (min-width: 426px) and (max-width: 768px) {
  #plannning-type-select nav {
    height: 135px;
  }
}
#plannning-type-select nav .navbar-brand {
  background: url(/images/logo.png) no-repeat;
  margin-top: 5px;
  height: 81px;
  width: 250px;
  background-size: 250px;
}
#plannning-type-select nav .login-btn {
  background: #3c55a5;
  padding: 8px 15px;
}
#plannning-type-select nav .navbar-left {
  margin-top: 5px;
}
@media (min-width: 426px) and (max-width: 768px) {
  #plannning-type-select nav .navbar-right {
    float: left !important;
  }
}
#plannning-type-select nav .navbar-right li.log-in {
  color: #000000;
}
#plannning-type-select nav .navbar-right li.log-in img {
  background: url(/images/phone-small.png) center no-repeat;
  border: 0;
}
#plannning-type-select .navbar-default .navbar-nav > li > a {
  padding: 24px 14px;
  color: #000000;
  font-size: 14px;
}
@media (min-width: 769px) and (max-width: 1024px) {
  #plannning-type-select .navbar-default .navbar-nav > li > a {
    padding: 24px 9px;
  }
}
@media (min-width: 426px) and (max-width: 768px) {
  #plannning-type-select .navbar-default .navbar-nav > li > a {
    padding: 15px 5px;
    font-size: 13px;
  }
}
#plannning-type-select .navbar-default .navbar-nav > li > a:hover {
  color: #00b0e4;
}
#plannning-type-select .navbar-default .navbar-nav > li > a:focus {
  color: #00b0e4;
}
@media (min-width: 426px) and (max-width: 768px) {
  #plannning-type-select .login-btn {
    margin-top: 8px;
  }
}
#plannning-type-select .navbar-default .navbar-nav > li > a.log-in img {
  width: 20px;
  height: 15px;
  background: url(/images/login-iconsmall.png) center no-repeat;
}
#plannning-type-select .login-btn {
  background: #0665a8;
  color: #ffffff;
  padding: 5px 8px;
  border: none;
  border: 1px solid #0665a8;
}
#plannning-type-select .login-btn:hover {
  background: #00b0e4;
  border: 1px solid #00b0e4;
}

#planning .navbar-default {
  background: #ffffff;
  border-bottom: 1px solid #dadada;
}
#planning nav {
  height: 75px;
}
@media (min-width: 426px) and (max-width: 768px) {
  #planning nav {
    height: 135px;
  }
}
#planning nav .navbar-brand {
  background: url(/images/logo.png) no-repeat;
  margin-top: 5px;
  height: 81px;
  width: 250px;
  background-size: 250px;
}
#planning nav .login-btn {
  background: #3c55a5;
  padding: 8px 15px;
}
#planning nav .navbar-left {
  margin-top: 5px;
}
@media (min-width: 426px) and (max-width: 768px) {
  #planning nav .navbar-right {
    float: left !important;
  }
}
#planning nav .navbar-right li.log-in {
  color: #000000;
}
#planning nav .navbar-right li.log-in img {
  background: url(/images/phone-small.png) center no-repeat;
  border: 0;
}
#planning .navbar-default .navbar-nav > li > a {
  padding: 24px 14px;
  color: #0665a8;
  font-size: 14px;
}
@media (min-width: 0) and (max-width: 768px) {
  #planning .navbar-default .navbar-nav > li > a {
    padding: 15px 14px;
  }
}
#planning .navbar-default .navbar-nav > li > a:hover {
  color: #00b0e4;
}
#planning .navbar-default .navbar-nav > li > a:focus {
  color: #00b0e4;
}

#planning-your-goal {
  min-height: calc( 100vh - 100px );
  margin-top: 100px;
  box-sizing: border-box;
  margin-bottom: 15px;
}
@media (min-width: 426px) and (max-width: 768px) {
  #planning-your-goal {
    margin-top: 150px;
  }
}
#planning-your-goal .va-table {
  min-height: calc( 100vh - 100px );
}
#planning-your-goal .margin-bottom-30 {
  margin-bottom: 40px;
}
#planning-your-goal #table-scroll {
  height: 0px;
}
@media (min-width: 0) and (max-width: 425px) {
  #planning-your-goal #table-scroll {
    overflow-x: scroll;
  }
}
#planning-your-goal #return_table, #planning-your-goal #return_table2 {
  height: 150px;
}
@media (min-width: 0) and (max-width: 425px) {
  #planning-your-goal #return_table, #planning-your-goal #return_table2 {
    height: 350px;
  }
}
@media (min-width: 0) and (max-width: 425px) {
  #planning-your-goal .head {
    padding-left: 10px;
    padding-right: 10px;
  }
}
#planning-your-goal .carousel-control {
  width: auto;
  color: #cccccc;
}
#planning-your-goal .carousel-control.left, #planning-your-goal .carousel-control.right {
  background-image: none;
  color: #0665a8;
}
@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: 120px;
  background-color: rgba(230, 221, 215, 0.25);
  border-radius: 11px;
  border: solid 3px rgba(163, 163, 163, 0.67);
  box-sizing: border-box;
}
#planning-your-goal .nav-pills {
  background: #ffffff;
  border-radius: 5px;
}
#planning-your-goal .nav-pills li .active a {
  background: #0665a8 !important;
}
#planning-your-goal .nav-pills li a {
  border-radius: 4px;
  border: 1px solid #dedede;
}
#planning-your-goal .nav-pills > li.active > a, #planning-your-goal .nav-pills > li.active > a:focus, #planning-your-goal .nav-pills > li.active > a:hover {
  color: #fff;
  background-color: #0665a8;
}
#planning-your-goal .nav > li > a:focus, #planning-your-goal .nav > li > a:hover {
  text-decoration: none;
  color: #fff;
  background-color: #0665a8;
}

.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 #f6e6b7;
  background: rgba(255, 219, 113, 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;
  border-radius: 3px;
  cursor: pointer;
  box-sizing: border-box;
  padding: 5px 20px;
  position: relative;
  font-size: 16px;
  color: #000000;
  font-weight: 400;
  margin-bottom: 5px;
}
.radio input[type=radio] + label .check {
  display: none;
  background: url("/images/check.png") no-repeat;
  position: absolute;
  top: 2px;
  left: 50%;
  width: 16px;
  height: 16px;
}
@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: #e8f9f6;
  border: 1px solid #ade6da;
}
.radio li input:checked + label .check {
  display: block;
  background: url("/images/check.png") no-repeat;
  position: absolute;
  top: -8px;
  left: -6px;
  width: 16px;
  height: 16px;
}
.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: #f56d09;
  top: 2px;
  left: 15px;
}

#planning-result {
  display: none;
  z-index: 110000;
  position: fixed;
  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: #0665a8;
  width: 100%;
  min-height: 105px;
  text-align: center;
  box-sizing: border-box;
  padding: 15px;
  color: #ffffff;
  position: relative;
}
.form-area header h2 {
  font-family: "latoregular", Poppins-Regular, Arial;
  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;
  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: #675140;
  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: #00b0e4;
  -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: -22px;
  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: "latoregular", Poppins-Regular, Arial;
  font-size: 18px;
  color: #ffffff;
  border: none;
  border-radius: 50px;
  margin: 0 auto;
  background: #06662c;
  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;
}

/* Footer */
footer {
  position: relative;
}
footer #ftr-section-2 {
  background: #000000;
  min-height: 60px;
  color: #4d4d4d;
  font-size: 12px;
  line-height: 12px;
}
footer #ftr-section-2 .va-table {
  min-height: 60px;
}
footer #ftr-section-2 a {
  display: initial;
}
footer #ftr-section-2 ul {
  list-style: none;
}
footer #ftr-section-2 ul li {
  float: left;
  list-style: none;
  border-left: solid 1px gray;
  box-sizing: border-box;
  color: gray;
  padding: 0 10px;
  line-height: 12px;
}
footer #ftr-section-2 ul li:first-of-type {
  border-left: none;
}

/* 	Planning Web Area Ends */

/*# sourceMappingURL=planning.css.map */
