/* 
 * 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/stylesheet.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: "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: #152638;
}

.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: #152638;
}

.color-secondry {
  color: #152638;
}

.grey-blue {
  color: #2d3f50;
}

.dark-grey {
  color: #797979;
}

.red {
  color: #d81921 !important;
}

.purple {
  color: #152638 !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: #152638;
}

.bg-color-secondry {
  background: #152638;
}

.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 {
  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: #152638;
  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;
}

/* Home Page Starts*/
section {
  position: relative;
}

#banner .carousel-fade .carousel-inner .item {
  transition-property: opacity;
  transition: all .4s ease-in;
}
#banner .carousel-fade .carousel-inner .item,
#banner .carousel-fade .carousel-inner .active.left,
#banner .carousel-fade .carousel-inner .active.right {
  opacity: 0;
  transition: all .4s ease-in;
}
#banner .carousel-fade .carousel-inner .active,
#banner .carousel-fade .carousel-inner .next.left,
#banner .carousel-fade .carousel-inner .prev.right {
  opacity: 1;
}
#banner .carousel-fade .carousel-inner .next,
#banner .carousel-fade .carousel-inner .prev,
#banner .carousel-fade .carousel-inner .active.left,
#banner .carousel-fade .carousel-inner .active.right {
  left: 0;
  transform: translate3d(0, 0, 0);
}
#banner .carousel-fade .carousel-control {
  z-index: 2;
}

#sip-calc {
  background: #ffffff;
  border: 1px solid #eeeeee;
  min-height: 263px;
  font-size: 15px;
  font-family: 'Robotoregular';
  color: #353535;
  padding-top: 10px;
}
#sip-calc input[type=number] {
  width: 120px;
  background: none;
  border: none;
  outline: none;
  padding-left: 40px;
}
#sip-calc label {
  position: absolute;
  top: 7px;
  left: 80px;
  font-weight: normal;
}
#sip-calc rzslider {
  margin: 0 auto;
  height: 20px;
  padding-top: 3px;
  border-radius: 20px;
}
#sip-calc rzslider .rz-bar {
  height: 10px;
}
#sip-calc rzslider .rz-bubble {
  display: none;
}
#sip-calc rzslider .rz-pointer {
  width: 19px;
  height: 19px;
  top: -2px;
  border-radius: 50px;
}
#sip-calc rzslider .rz-pointer:before {
  background: #ffffff;
  width: 7px;
  height: 7px;
  position: absolute;
  content: '';
  top: 4px;
  left: 4px;
  border-radius: 25px;
}
#sip-calc rzslider .rz-pointer:after {
  display: none;
}
#sip-calc rzslider.blue-bar .rz-bar {
  background-color: #f1f1f1;
}
#sip-calc rzslider.blue-bar .rz-selection, #sip-calc rzslider.blue-bar .rz-pointer {
  background-color: #17b1c6;
}
#sip-calc rzslider.green-bar .rz-bar {
  background-color: #dddddd;
  border-radius: 25px;
}
#sip-calc rzslider.green-bar .rz-selection {
  background-color: #e17c2e;
}
#sip-calc rzslider.green-bar .rz-pointer {
  background-color: #152638;
  border: 2px solid #ffffff;
}
#sip-calc rzslider.red-bar .rz-bar {
  background-color: #f1f1f1;
}
#sip-calc rzslider.red-bar .rz-selection, #sip-calc rzslider.red-bar .rz-pointer {
  background-color: #df6c4f;
}
#sip-calc rzslider.yellow-bar .rz-bar {
  background-color: #f1f1f1;
}
#sip-calc rzslider.yellow-bar .rz-selection, #sip-calc rzslider.yellow-bar .rz-pointer {
  background-color: #e9c858;
}
#sip-calc input[type=number]::-webkit-inner-spin-button,
#sip-calc input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
}
#sip-calc .switch {
  display: inline-block;
  vertical-align: top;
  width: 55px;
  height: 17px;
  padding: 3px;
  top: -1px;
  left: auto;
  background-color: white;
  border-radius: 25px;
  cursor: pointer;
}
#sip-calc .switch-input {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
#sip-calc .switch-label {
  position: relative;
  display: block;
  height: inherit;
  font-size: 11px;
  background: #0b3d7b;
  border-radius: inherit;
  -webkit-transition: 0.15s ease-out;
  -moz-transition: 0.15s ease-out;
  -o-transition: 0.15s ease-out;
  transition: 0.15s ease-out;
}
#sip-calc .switch-label:before, #sip-calc .switch-label:after {
  position: absolute;
  top: 50%;
  margin-top: -.5em;
  line-height: 1;
  -webkit-transition: inherit;
  -moz-transition: inherit;
  -o-transition: inherit;
  transition: inherit;
}
#sip-calc .switch-input:checked ~ .switch-label {
  background: #47a8d8;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.15), inset 0 0 3px rgba(0, 0, 0, 0.2);
}
#sip-calc .switch-input:checked ~ .switch-label:before {
  opacity: 0;
}
#sip-calc .switch-input:checked ~ .switch-label:after {
  opacity: 1;
}
#sip-calc .switch-handle {
  position: absolute;
  top: 5px;
  left: 5px;
  width: 30px;
  height: 13px;
  background: white;
  border-radius: 25px;
  -webkit-transition: left 0.15s ease-out;
  -moz-transition: left 0.15s ease-out;
  -o-transition: left 0.15s ease-out;
  transition: left 0.15s ease-out;
}
#sip-calc .switch-input:checked ~ .switch-handle {
  left: 20px;
  box-shadow: -1px 1px 5px rgba(0, 0, 0, 0.2);
}
#sip-calc .switch-green > .switch-input:checked ~ .switch-label {
  background: #0b3d7b;
}
#sip-calc .shadow-bg {
  background: url(/images/shadow-bg.png) top no-repeat;
  min-width: 213px;
  min-height: 226px;
  text-align: center;
  padding-top: 40px;
}
#sip-calc .shadow-bg .head {
  font-family: 'Poppins-Medium';
  font-size: 16px;
  color: #3e3e3e;
  line-height: 22px;
  padding-top: 20px;
  padding-bottom: 20px;
}
@media (min-width: 769px) and (max-width: 1024px) {
  #sip-calc .shadow-bg .head {
    padding: 20px 50px;
  }
}
#sip-calc .input-bg {
  background: #5269b0;
  padding: 5px 15px;
  border-top: 3px solid #3d5087;
  border-left: 3px solid #3d5087;
  border-right: 1px solid #3d5087;
  border-bottom: none;
  border-radius: 5px;
  font-size: 14px;
  color: #ffffff;
  margin-bottom: 20px;
}
#sip-calc .amount {
  color: #152638;
  font-family: 'robotobold';
  font-size: 16px;
}
#sip-calc .resultamount {
  color: #152638;
  font-family: 'robotobold';
  font-size: 23px;
}
#sip-calc #inflationRate {
  color: #ffffff;
  display: none;
  width: 50px;
  padding-left: 10px;
}
#sip-calc #inflationRate + label {
  margin-left: 30px;
  display: none;
}
@media (min-width: 321px) and (max-width: 425px) {
  #sip-calc #inflationRate + label {
    margin-left: 40px;
  }
}
@media (min-width: 0) and (max-width: 320px) {
  #sip-calc #inflationRate + label {
    margin-left: 0px;
    top: initial;
  }
}
#sip-calc select {
  background: none;
  padding: 0px;
  border-radius: 5px;
  font-size: 14px;
  color: #ffffff;
  border: 0px;
  outline: none;
  margin-left: -5px;
}
#sip-calc select:focus {
  outline: none;
}
#sip-calc select option {
  color: #000000;
}

#solutions-plan .tile-block {
  height: 260px;
  position: relative;
  background: rgba(255, 255, 255, 0.78);
  overflow: hidden;
  margin-bottom: 10px;
  border-radius: 12px;
}
#solutions-plan .tile-block .bg-img {
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
#solutions-plan .tile-block .bg-img:after {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0);
}
#solutions-plan .tile-block .head-text {
  font-family: 'latoregular';
  font-size: 16px;
  margin-top: 210px;
  color: #ffffff;
  background: #152638;
  padding: 15px 10px;
}
#solutions-plan .tile-block .va-table {
  min-height: inherit;
}
#solutions-plan .tile-block:hover .bg-img {
  -moz-transform: scale(1.2);
  -o-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

#but-css .baskbgstrip1 {
  background: none;
  color: #606060;
  font-family: "Poppins-Medium";
  font-size: 18px;
  border-radius: 8px;
}
#but-css .baskbgstrip1 input {
  background: #152638;
  border: 0px;
  border-radius: 3px;
  width: 150px;
  text-align: center;
  font-size: 15px;
  padding: 5px 0;
  line-height: 20px;
  font-family: "Poppins-Medium";
  color: #ffffff;
}
#but-css .baskbgstrip1 input:hover, #but-css .baskbgstrip1 input:focus {
  outline: none;
}
#but-css .baskbgstrip1 button {
  background: #ff993f;
  background: -moz-linear-gradient(top, #ff993f 50%, #ff7801 50%, #ff993f 50%, #ff7801 50%, #ff7801 50%);
  background: -webkit-linear-gradient(top, #ff993f 50%, #ff7801 50%, #ff993f 50%, #ff7801 50%, #ff7801 50%);
  background: linear-gradient(to bottom, #ff993f 50%, #ff7801 50%, #ff993f 50%, #ff7801 50%, #ff7801 50%);
  border: 0px;
  border-radius: 3px;
  padding: 6px 10px;
  text-align: center;
  font-size: 13px;
  color: #ffffff;
  box-shadow: inset 0px 0px 5px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: inset 0px 0px 5px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: inset 0px 0px 5px rgba(0, 0, 0, 0.3);
  margin-left: 10px;
}

/* Home Page Ends */
#nav_lvl-1 {
  display: block;
}
#nav_lvl-1 li {
  display: block;
}
#nav_lvl-1 li.active > a, #nav_lvl-1 li.active > a:hover, #nav_lvl-1 li.active > a:focus {
  border: none;
  border-radius: 0px;
  border-bottom: solid 2px #152638;
  color: #152638;
  background: none;
}
#nav_lvl-1 li > a {
  color: #56595c;
  border: none;
  text-transform: uppercase;
  font-family: 'robotobold';
  font-size: 13px;
}
#nav_lvl-1 li > a:hover, #nav_lvl-1 li > a:focus {
  color: #152638;
  background: none;
}
#nav_lvl-1 li.first {
  padding-left: 8%;
}
@media (min-width: 0) and (max-width: 1024px) {
  #nav_lvl-1 li.first {
    padding-left: 0%;
  }
}

/* Internal Pages */
#inner-pages #entry {
  height: 250px;
  overflow: hidden;
}
#inner-pages #entry .navbar-default {
  z-index: 100;
  margin-bottom: 0;
}
#inner-pages #entry .va-table {
  min-height: 153px;
}
#inner-pages #entry h2 {
  color: #ffffff;
}
#inner-pages #entry .container {
  position: relative;
}
#inner-pages .site-map {
  color: #ffffff;
}
#inner-pages .site-map a {
  display: initial;
  color: #ffffff;
}
#inner-pages .site-map a:hover {
  color: #ffffff;
}
#inner-pages .entrty-fixer {
  z-index: 99999 !important;
  height: 95px !important;
}
#inner-pages .page-content-fixer {
  margin-top: 300px;
}
#inner-pages .ftr {
  padding-bottom: 15px;
}
@media (min-width: 426px) and (max-width: 768px) {
  #inner-pages .navbar-default {
    padding: 0 7px;
  }
}
@media (min-width: 426px) and (max-width: 768px) {
  #inner-pages .navbar-default .navbar-nav > li > a {
    padding: 10px 9px;
    font-size: 14px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  #inner-pages .navbar-default .navbar-nav > li > a {
    padding: 20px 9px;
  }
}

@media (min-width: 0) and (max-width: 991px) {
  .responsive-pane-bg {
    background-color: #152638;
    z-index: 999;
  }
  .responsive-pane-bg img {
    margin: 0px auto;
    margin-top: 15px;
  }
}
/* OOPS Classes */
#page-heading {
  width: 100%;
  min-height: 250px;
  position: relative;
  z-index: 100;
}
@media (min-width: 426px) and (max-width: 768px) {
  #page-heading {
    min-height: 285px;
  }
}
#page-heading .va-table {
  min-height: 250px;
}
@media (min-width: 426px) and (max-width: 768px) {
  #page-heading .va-table {
    min-height: 285px;
  }
}
#page-heading:after {
  width: 100%;
  height: 250px;
  background: rgba(39, 39, 39, 0.31);
  position: absolute;
  top: 0;
  left: 0;
  content: '';
}
@media (min-width: 426px) and (max-width: 768px) {
  #page-heading:after {
    min-height: 285px;
  }
}
#page-heading .container {
  position: relative;
  z-index: 100;
}
#page-heading h2 {
  color: #ffffff;
}

#page-content {
  margin: 25px 0px;
  min-height: 100px;
  margin-bottom: 0px;
  overflow: hidden;
}
#page-content .va-table {
  min-height: 100px;
}
#page-content .baskbgstrip1 {
  background: #06662c;
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 8px;
}
#page-content .baskbgstrip1 input {
  background: #ffffff;
  border: 0px;
  border-radius: 3px;
  width: 150px;
  text-align: center;
  font-size: 20px;
  color: #1596b7;
  box-shadow: inset 0px 0px 10px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: inset 0px 0px 10px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: inset 0px 0px 10px rgba(0, 0, 0, 0.3);
}
#page-content .baskbgstrip1 input:hover, #page-content .baskbgstrip1 input:focus {
  outline: none;
}
#page-content .baskbgstrip1 button {
  background: #ff993f;
  background: -moz-linear-gradient(top, #ff993f 50%, #ff7801 50%, #ff993f 50%, #ff7801 50%, #ff7801 50%);
  background: -webkit-linear-gradient(top, #ff993f 50%, #ff7801 50%, #ff993f 50%, #ff7801 50%, #ff7801 50%);
  background: linear-gradient(to bottom, #ff993f 50%, #ff7801 50%, #ff993f 50%, #ff7801 50%, #ff7801 50%);
  border: 0px;
  border-radius: 3px;
  padding: 3px 10px;
  text-align: center;
  font-size: 13px;
  color: #ffffff;
  box-shadow: inset 0px 0px 5px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: inset 0px 0px 5px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: inset 0px 0px 5px rgba(0, 0, 0, 0.3);
  margin-left: 10px;
}

.tile-block {
  height: 250px;
  position: relative;
  background: #07a9f4;
  overflow: hidden;
  margin-bottom: 30px;
}
.tile-block .bg-img {
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
.tile-block .bg-img:after {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.48);
}
.tile-block .va-table {
  height: 100%;
}
.tile-block:hover .bg-img {
  -moz-transform: scale(1.2);
  -o-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

#nav_lvl_2 {
  display: inline-block;
}
#nav_lvl_2 li {
  display: inline-block;
}
#nav_lvl_2 li.active > a, #nav_lvl_2 li.active > a:hover, #nav_lvl_2 li.active > a:focus {
  border: none;
  border-radius: 4px;
  border-bottom: solid 2px #152638;
  color: #ffffff;
  background: #152638;
}
#nav_lvl_2 li > a {
  color: #000000;
  border: none;
}
#nav_lvl_2 li > a:hover, #nav_lvl_2 li > a:focus {
  color: #152638;
  background: none;
  border-bottom: solid 2px #152638;
}

/* OOPS Classes Ends*/
#popup-close-box {
  width: 100%;
  height: auto;
  position: absolute;
  right: 0;
  bottom: -35px;
  color: #fff;
  font-size: 14px;
  text-align: center;
  cursor: pointer;
}
@media (min-width: 769px) and (max-width: 1024px) {
  #popup-close-box {
    bottom: -70px;
  }
}
@media (min-width: 0) and (max-width: 320px) {
  #popup-close-box {
    bottom: -65px;
  }
}

.login-reg-form .login {
  background: #ffffff;
  min-height: 240px;
  border-radius: 3px;
  box-sizing: border-box;
}
@media (min-width: 769px) and (max-width: 1024px) {
  .login-reg-form .login {
    min-height: 290px;
  }
}
@media (min-width: 0) and (max-width: 991px) {
  .login-reg-form .login {
    min-height: 215px;
    margin-bottom: 15px;
  }
}
@media (min-width: 426px) and (max-width: 768px) {
  .login-reg-form .login {
    min-height: 115px;
    margin-bottom: 15px;
    padding-top: 15px;
  }
}
@media (min-width: 0) and (max-width: 320px) {
  .login-reg-form .login {
    background-image: none;
    min-height: 230px;
    margin-bottom: 15px;
  }
}
.login-reg-form .login label {
  float: left;
  font-size: 15px;
  font-weight: 500;
  margin-top: 10px;
  width: 75px;
}
.login-reg-form .login label + input {
  float: left;
}
.login-reg-form .login input, .login-reg-form .login select {
  width: 80%;
  height: 25px;
  padding: 15px;
  line-height: 25px;
  margin-left: 2px;
  box-sizing: border-box;
  background-color: #ffffff;
  border: solid 1px #e6e6e6;
  border-radius: 2px;
  box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.1);
}
@media (min-width: 426px) and (max-width: 768px) {
  .login-reg-form .login input, .login-reg-form .login select {
    margin-bottom: 15px;
  }
}
.login-reg-form .login input:focus, .login-reg-form .login select:focus, .login-reg-form .login button:focus {
  outline: none;
}
.login-reg-form .login select {
  width: 200px;
}

#aboutus #page-heading {
  background: url(/images/about-us.jpg) no-repeat center;
  background-size: cover;
}
#aboutus .tile-block {
  height: 200px;
}

#sip-page #page-heading {
  background: #e8eef5;
  min-height: calc( 100vh - 120px);
  padding-top: 120px;
  padding-bottom: 20px;
}
#sip-page #page-heading .va-table {
  min-height: calc( 100vh - 120px);
  padding-top: 40px;
}
#sip-page #page-heading:after {
  height: 0px;
  width: 0px;
  background: none;
}
#sip-page #page-heading .container-fluid {
  margin-left: 30px;
  margin-right: 30px;
}
@media (min-width: 0) and (max-width: 425px) {
  #sip-page #page-heading .container-fluid {
    margin-left: 0px;
    margin-right: 0px;
  }
}
#sip-page #page-heading .side-tab-sec {
  min-height: 300px;
  background: #ffffff;
  background-size: cover;
  margin-bottom: 5px;
  padding: 10px;
  font-size: 14px;
}
#sip-page #page-heading .side-tab-sec .butn {
  padding: 10px;
  background: #ff7000;
  color: #fff;
  margin-top: 10px;
  margin-bottom: 10px;
  border-radius: 0px;
  outline: none;
}
#sip-page #page-heading .start-btn {
  background: #004561;
  border-radius: 3px;
  padding: 12px 30px;
  font-family: 'ubuntu-italic';
  font-size: 15px;
  color: #ffffff;
  border: 0;
  outline: none;
}
@media (min-width: 0) and (max-width: 768px) {
  #sip-page #page-heading .start-btn {
    margin-top: 10px;
  }
}
#sip-page #page-heading .start-btn:hover {
  background: #ff6c00;
  outline: none;
}
#sip-page #page-heading .start-btn:focus {
  background: #ff6c00;
  outline: none;
}
#sip-page #page-heading a.read {
  color: #152638;
  cursor: pointer;
  font-size: 13px;
}
#sip-page #page-heading a.read:hover {
  color: #152638;
}
#sip-page #page-heading a.read:focus {
  color: #152638;
}
#sip-page #page-heading .collapse.in {
  display: block;
  background: #ffffff;
}
#sip-page #page-heading .video_bg {
  background: url(/images/sip-page-pc.png) center no-repeat;
  min-height: 367px;
}
@media (min-width: 769px) and (max-width: 1024px) {
  #sip-page #page-heading .video_bg {
    background-size: contain;
  }
}
@media (min-width: 0) and (max-width: 769px) {
  #sip-page #page-heading .video_bg {
    margin-top: 20px;
  }
}
@media (min-width: 0) and (max-width: 425px) {
  #sip-page #page-heading .video_bg {
    background: none;
    background-color: #000000;
    border-radius: 10px;
    display: none;
  }
}
#sip-page #page-heading .video_bg .video-sip {
  position: absolute;
  top: 19px;
  left: 130px;
  min-width: 488px;
  min-height: 305px;
}
@media (min-width: 1367px) and (max-width: 1440px) {
  #sip-page #page-heading .video_bg .video-sip {
    top: 17px;
    left: 152px;
  }
}
@media (min-width: 1025px) and (max-width: 1366px) {
  #sip-page #page-heading .video_bg .video-sip {
    top: 17px;
    left: 122px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  #sip-page #page-heading .video_bg .video-sip {
    top: 69px;
    left: 70px;
    min-width: 334px;
    min-height: 200px;
  }
}
@media (min-width: 426px) and (max-width: 769px) {
  #sip-page #page-heading .video_bg .video-sip {
    left: 96px;
  }
}
@media (min-width: 376px) and (max-width: 425px) {
  #sip-page #page-heading .video_bg .video-sip {
    left: 15px;
    min-width: 307px;
  }
}
@media (min-width: 321px) and (max-width: 375px) {
  #sip-page #page-heading .video_bg .video-sip {
    left: 15px;
    min-width: 305px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  #sip-page #page-heading .video_bg .video-sip iframe {
    height: 210px;
  }
}
@media (min-width: 0) and (max-width: 424px) {
  #sip-page #page-heading .video_bg .video-sip iframe {
    display: none;
  }
}

#feedback-page #page-heading {
  background: url(/images/about-us.jpg) no-repeat center;
  background-size: cover;
}
#feedback-page .tile-block {
  height: 200px;
}
#feedback-page #page-content .clients-input {
  background-image: url(/images/quote1.png), url(/images/quote2.png);
  background-position: 4% 5%, 95% 95%;
  background-repeat: no-repeat, no-repeat;
  background-color: #fbfbfb;
  border-radius: 10px;
  padding: 35px 35px;
  min-height: 150px;
}

#knowledge-center #page-heading {
  background: url(/images/about-us.jpg) no-repeat center;
  background-size: cover;
}
#knowledge-center #page-content .video {
  background: #dedede;
  border: 1px solid #dcdcdc;
  border-radius: 5px;
  min-height: 300px;
  padding-top: 10px;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
#knowledge-center #page-content .video p {
  font-family: "Poppins-SemiBold";
  font-size: 16px;
  color: #152638;
}

/* Tax Saving Schemes*/
#tax_saving #page-header {
  min-height: 299px;
}
#tax_saving #page-header .taxsavebanner {
  background: url(/images/tax_plan.jpg) no-repeat center;
  background-size: cover;
  min-height: 299px;
}
#tax_saving #page-header .va-table {
  min-height: 299px;
}
#tax_saving #page-header .media {
  margin-top: 30px;
  margin-bottom: 30px;
}
#tax_saving #page-header .media a {
  color: #000;
}
#tax_saving #page-header .media a:hover {
  color: #06662c;
}
#tax_saving #page-header .media-heading {
  margin-top: 5px;
  font-family: 'Aller';
  font-size: 16px;
}
#tax_saving #page-content {
  min-height: 400px;
}
#tax_saving #page-content .table > tbody > tr > td, #tax_saving #page-content .table > tbody > tr > th, #tax_saving #page-content .table > tfoot > tr > td, #tax_saving #page-content .table > tfoot > tr > th, #tax_saving #page-content .table > thead > tr > td, #tax_saving #page-content .table > thead > tr > th {
  border-top: 1px solid #a6b341;
  border-right: 1px solid #a6b341;
}
#tax_saving #page-content .video-gallery-heading {
  background: #e2e2e2;
  font-size: 17px;
  color: #000000;
  font-weight: 600;
  line-height: 40px;
}
#tax_saving #page-content .video-gallery-heading img {
  margin-right: 10px;
  margin-top: 0px;
  padding-left: 5px;
}
#tax_saving #page-content .elearn {
  position: relative;
  /*top:400px;*/
  left: 0px;
  width: 487px;
  height: 311px;
  background: none;
  border: 1px solid #dedede;
  margin: 0;
  float: left;
}
#tax_saving #page-content .elearn .y-video-embed {
  width: 365px;
  height: 299px;
  position: absolute;
  top: 5px;
  right: 5px;
  background: #000;
}
#tax_saving #page-content .elearn .playlist {
  width: 113px;
  height: 299px;
  background: #000;
  position: absolute;
  top: 5px;
  left: 5px;
}
#tax_saving #page-content .elearn .playlist span {
  cursor: pointer;
  display: block;
  margin-bottom: 4px;
}
#tax_saving #page-content .elearn .playlist #slider3 {
  position: relative;
  margin-top: 22px;
  width: 93px;
  height: 255px;
  border-left: 1px solid #aaa;
  border-right: 1px solid #aaa;
  margin-bottom: 40px;
}
#tax_saving #page-content .panel-group .panel {
  margin-bottom: 0;
  border-radius: 0px;
}
#tax_saving #page-content .panel-default .panel-heading {
  color: #000000;
  background-color: #e2e2e2;
  border-color: #e2e2e2;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
}
#tax_saving #page-content .panel-default .panel-heading:hover, #tax_saving #page-content .panel-default .panel-heading focus {
  color: #ffffff;
  background-color: #06662c;
}
#tax_saving #page-content .panel-default .panel-heading a {
  color: #000000;
}
#tax_saving #page-content .panel-default .panel-heading a:hover {
  color: #ffffff;
}

/* Debt Fund*/
#debt_fund #page-header {
  min-height: 299px;
}
#debt_fund #page-header .debtfundbanner {
  background: url(/images/debt_fundincome.jpg) no-repeat center;
  background-size: cover;
  min-height: 299px;
}
#debt_fund #page-header .va-table {
  min-height: 299px;
}
#debt_fund #page-header .media {
  margin-top: 30px;
  margin-bottom: 30px;
}
#debt_fund #page-header .media a {
  color: #000;
}
#debt_fund #page-header .media a:hover {
  color: #06662c;
}
#debt_fund #page-header .media-heading {
  margin-top: 5px;
  font-family: 'Aller';
  font-size: 16px;
}
#debt_fund #page-content {
  min-height: 400px;
}
#debt_fund #page-content .table a {
  color: #ffffff;
}
#debt_fund #page-content .table a:hover {
  color: #73a114;
}
#debt_fund #page-content a.link {
  color: inherit;
}
#debt_fund #page-content a.link:hover {
  color: #06662c;
}
#debt_fund #page-content .tooltip-inner {
  text-align: justify;
  font-size: 12px;
  font-family: 'robotoregular';
}
#debt_fund #page-content .table > tbody > tr > td, #debt_fund #page-content .table > tbody > tr > th, #debt_fund #page-content .table > tfoot > tr > td, #debt_fund #page-content .table > tfoot > tr > th, #debt_fund #page-content .table > thead > tr > td, #debt_fund #page-content .table > thead > tr > th {
  border-top: 1px solid #a6b341;
  border-right: 1px solid #a6b341;
}
#debt_fund #page-content .video-gallery-heading {
  background: #e2e2e2;
  font-size: 17px;
  color: #000000;
  font-weight: 600;
  line-height: 40px;
}
#debt_fund #page-content .video-gallery-heading img {
  margin-right: 10px;
  margin-top: 0px;
  padding-left: 5px;
}
#debt_fund #page-content .elearn {
  position: relative;
  /*top:400px;*/
  left: 0px;
  width: 487px;
  height: 311px;
  background: none;
  border: 1px solid #dedede;
  margin: 0;
  float: left;
}
#debt_fund #page-content .elearn .y-video-embed {
  width: 365px;
  height: 299px;
  position: absolute;
  top: 5px;
  right: 5px;
  background: #000;
}
#debt_fund #page-content .elearn .playlist {
  width: 113px;
  height: 299px;
  background: #000;
  position: absolute;
  top: 5px;
  left: 5px;
}
#debt_fund #page-content .elearn .playlist span {
  cursor: pointer;
  display: block;
  margin-bottom: 4px;
}
#debt_fund #page-content .elearn .playlist #slider3 {
  position: relative;
  margin-top: 22px;
  width: 93px;
  height: 255px;
  border-left: 1px solid #aaa;
  border-right: 1px solid #aaa;
  margin-bottom: 40px;
}
#debt_fund #page-content .panel-group .panel {
  margin-bottom: 0;
  border-radius: 0px;
}
#debt_fund #page-content .panel-default .panel-heading {
  color: #000000;
  background-color: #e2e2e2;
  border-color: #e2e2e2;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
}
#debt_fund #page-content .panel-default .panel-heading:hover, #debt_fund #page-content .panel-default .panel-heading focus {
  color: #ffffff;
  background-color: #06662c;
}
#debt_fund #page-content .panel-default .panel-heading a {
  color: #000000;
}
#debt_fund #page-content .panel-default .panel-heading a:hover {
  color: #ffffff;
}

#sip_Insurance #page-heading {
  background: url(/images/sip-insurance-banner.png) no-repeat center;
  background-size: cover;
  min-height: 280px;
}
@media (min-width: 426px) and (max-width: 768px) {
  #sip_Insurance #page-heading {
    min-height: 350px;
    padding-top: 30px;
  }
}
#sip_Insurance #page-heading .va-table {
  min-height: 280px;
}
@media (min-width: 426px) and (max-width: 768px) {
  #sip_Insurance #page-heading .va-table {
    min-height: 350px;
    padding-top: 30px;
  }
}
#sip_Insurance #page-heading:after {
  height: 280px;
}
@media (min-width: 0) and (max-width: 320px) {
  #sip_Insurance #page-heading:after {
    height: 415px;
  }
}
@media (min-width: 321px) and (max-width: 375px) {
  #sip_Insurance #page-heading:after {
    height: 336px;
  }
}
@media (min-width: 376px) and (max-width: 425px) {
  #sip_Insurance #page-heading:after {
    height: 298px;
  }
}
@media (min-width: 426px) and (max-width: 768px) {
  #sip_Insurance #page-heading:after {
    min-height: 380px;
    padding-top: 30px;
  }
}
#sip_Insurance .form-area {
  overflow: hidden;
}
#sip_Insurance #page-content img {
  padding: 5px 10px;
}
#sip_Insurance #page-content .services-head {
  font-family: 'Poppins-SemiBold';
  font-size: 25px;
  color: #505050;
  line-height: 25px;
  text-transform: uppercase;
}
#sip_Insurance #page-content .services-head p {
  font-family: 'Poppins-Light';
  font-size: 18px;
  line-height: 28px;
  color: #000000;
  text-transform: none;
}
#sip_Insurance #page-content2 {
  min-height: 350px;
  background: #f9f9f9;
  padding-top: 10px;
}
#sip_Insurance #page-content2 .va-table {
  min-height: 300px;
  padding-top: 10px;
}
#sip_Insurance #page-content2 a .ser-icon {
  padding-top: 20px;
}
#sip_Insurance #page-content2 a .ser-icon img {
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#sip_Insurance #page-content2 a .ser-icon .iconhead {
  font-family: 'robotomedium';
  font-size: 15px;
  line-height: 22px;
  color: #040404;
}
#sip_Insurance #page-content2 a:hover .ser-icon img {
  -moz-transform: scale(1);
  -webkit-transform: scale(1);
  transform: scale(1);
}
#sip_Insurance #page-content2 a:hover .ser-icon .iconhead {
  color: #040404;
}

#Online-investment {
  /*#page-heading{
  	background:url(/images/about-us.jpg) no-repeat center;
  	background-size:cover;
  }
  #page-content{
  	margin-top: 250px;
  	.pane-left{
  	 	min-height: calc( 100vh - 173px );
  	}
  	.lnk
  	{
  	 color:$dark-green;
  	 &:hover
  	 { 
  	   color:$color-prime;
  	 }
  	}
  	.investnow-btn
  	{
  	  background:$color-secondry;
  	  border:1px solid $color-secondry;
  	  &:hover
  	  {
  	   background:$color-prime;
  	   border:1px solid $color-prime;
  	  }
  	}
  }*/
}
#Online-investment #page-heading {
  background: url(/images/about2.png) no-repeat top center;
  background-size: cover;
  min-height: 230px;
}
@media (min-width: 0) and (max-width: 425px) {
  #Online-investment #page-heading {
    min-height: 320px;
  }
}
@media (min-width: 426px) and (max-width: 768px) {
  #Online-investment #page-heading {
    min-height: 300px;
  }
}
#Online-investment #page-heading .va-table {
  min-height: 230px;
}
@media (min-width: 0) and (max-width: 425px) {
  #Online-investment #page-heading .va-table {
    min-height: 320px;
  }
}
@media (min-width: 426px) and (max-width: 768px) {
  #Online-investment #page-heading .va-table {
    min-height: 300px;
    margin-top: 0px;
  }
}
#Online-investment #page-heading:after {
  height: 230px;
}
@media (min-width: 0) and (max-width: 425px) {
  #Online-investment #page-heading:after {
    min-height: 320px;
  }
}
@media (min-width: 426px) and (max-width: 768px) {
  #Online-investment #page-heading:after {
    min-height: 300px;
    margin-top: 0px;
  }
}
#Online-investment #page-heading .feed-name {
  font-family: "open_sansregular";
  font-size: 18px;
  color: #ffd324;
  padding: 5px 0px;
}
#Online-investment .nav1 {
  background: #ffffff;
  border-radius: 5px;
}
#Online-investment .nav1 li .active a {
  background: #152638 !important;
}
#Online-investment .nav1 li a {
  border-radius: 4px;
  border: 1px solid #dedede;
}
#Online-investment #page-content {
  background: #ffffff;
  padding-bottom: 0px;
  margin-bottom: 0px;
}
#Online-investment #page-content .nav-pills > li.active > a, #Online-investment #page-content .nav-pills > li.active > a:focus, #Online-investment #page-content .nav-pills > li.active > a:hover {
  color: #fff;
  background-color: #152638;
}
#Online-investment #page-content .nav > li > a:focus, #Online-investment #page-content .nav > li > a:hover {
  text-decoration: none;
  color: #fff;
  background-color: #152638;
}
#Online-investment #page-content .plan-btn {
  background: #000000;
  font-family: 'robotoregular';
  font-size: 15px;
  color: #ffffff;
  padding: 8px 10px;
  transition: all 0.5s ease;
  margin-bottom: 20px;
  text-shadow: none;
  border-radius: 3px;
  border: 2px solid #000000;
}
#Online-investment #page-content .plan-btn:hover {
  background: #152638;
  color: #152638;
  border: 2px solid #152638;
}
#Online-investment #page-content .feed-txt {
  background-image: url(/images/quotes1.png), url(/images/quotes2.png);
  background-position: left top, right bottom;
  background-repeat: no-repeat, no-repeat;
  min-height: 230px;
  margin-top: 50px;
  color: #2a2a2a;
  line-height: 24px;
}
#Online-investment #page-content .feed-txt img {
  margin-top: -50px;
  z-index: 999;
}
#Online-investment #page-content2 {
  min-height: 400px;
  background: #ffffff;
}
#Online-investment #page-content2 .va-table {
  min-height: 400px;
  padding-bottom: 20px;
}
#Online-investment #page-content2 .plan-btn {
  background: #ffffff;
  border-radius: 30px;
  font-family: "open_sansregular";
  font-size: 18px;
  color: #161616;
  padding: 5px 5px;
  margin-top: 20px;
}
#Online-investment #page-content2 .plan-btn:hover {
  background: #f1f0f1;
}
#Online-investment #page-content2 .plan-btn img {
  padding-right: 10px;
}
#Online-investment #page-content2 .services-head {
  font-family: 'latoregular';
  font-size: 25px;
  color: #152638;
  line-height: 25px;
  text-transform: uppercase;
}
#Online-investment #page-content2 .services-head p {
  font-family: "open_sansregular";
  font-size: 18px;
  line-height: 28px;
  color: #000000;
  text-transform: none;
  padding-bottom: 25px;
}
#Online-investment #page-content2 a .ser-icon {
  padding-top: 20px;
}
#Online-investment #page-content2 a .ser-icon img {
  padding-bottom: 20px;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#Online-investment #page-content2 a .ser-icon .iconhead {
  font-family: 'robotomedium';
  font-size: 17px;
  line-height: 22px;
  color: #040404;
}
#Online-investment #page-content2 a .ser-icon p {
  font-size: 14px;
  padding-left: 50px;
  padding-right: 50px;
}
#Online-investment #page-content2 a:hover .ser-icon img {
  padding-bottom: 20px;
  -moz-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
#Online-investment #page-content2 a:hover .ser-icon .iconhead {
  color: #152638;
}

#investment #page-heading {
  background: url(/images/about-us.jpg) no-repeat center;
  background-size: cover;
}
#investment .tile-block {
  height: 300px;
}

#mutual_funds #page-heading {
  background: url(/images/mf-banner.png) no-repeat center;
  background-size: cover;
}
#mutual_funds .nav1 {
  background: #ffffff;
  border-radius: 5px;
}
#mutual_funds .nav1 li .active a {
  background: #152638 !important;
}
#mutual_funds .nav1 li a {
  border-radius: 4px;
  border: 1px solid #dedede;
}
#mutual_funds #page-content .nav-pills > li.active > a, #mutual_funds #page-content .nav-pills > li.active > a:focus, #mutual_funds #page-content .nav-pills > li.active > a:hover {
  color: #fff;
  background-color: #152638;
}
#mutual_funds #page-content .nav > li > a:focus, #mutual_funds #page-content .nav > li > a:hover {
  text-decoration: none;
  color: #fff;
  background-color: #152638;
}

#mutual_funds2 #page-heading {
  width: 100%;
  min-height: 270px;
  background: url(/images/about-us.jpg) no-repeat center;
  background-size: cover;
  position: relative;
  z-index: 100;
}
@media (min-width: 0) and (max-width: 768px) {
  #mutual_funds2 #page-heading {
    min-height: 270px;
  }
}
#mutual_funds2 #page-heading .va-table {
  min-height: 270px;
}
@media (min-width: 0) and (max-width: 768px) {
  #mutual_funds2 #page-heading .va-table {
    min-height: 320px;
  }
}
#mutual_funds2 #page-heading:after {
  width: 100%;
  height: 270px;
  background: rgba(0, 0, 0, 0.38);
  position: absolute;
  top: 0;
  left: 0;
  content: '';
}
@media (min-width: 0) and (max-width: 768px) {
  #mutual_funds2 #page-heading:after {
    height: 320px;
  }
}
#mutual_funds2 #page-content .nav > li > a {
  text-decoration: none;
  color: #000000;
  background-color: none;
  border: 1px solid #152638;
  border-radius: 3px;
  padding: 5px 20px;
  margin-right: 5px;
}
#mutual_funds2 #page-content .nav-pills > li.active > a, #mutual_funds2 #page-content .nav-pills > li.active > a:focus, #mutual_funds2 #page-content .nav-pills > li.active > a:hover {
  color: #fff;
  background-color: #152638 !important;
}
#mutual_funds2 #page-content .nav > li > a:focus, #mutual_funds2 #page-content .nav > li > a:hover {
  text-decoration: none;
  color: #fff;
  background-color: #152638 !important;
}

#fixed_deposits #page-heading {
  background: url(/images/about-us.jpg) no-repeat center;
  background-size: cover;
}
#fixed_deposits #page-content .pane-left {
  min-height: 601px;
}
#fixed_deposits #page-content .investnow-btn {
  background: #152638;
  border: 1px solid #152638;
}
#fixed_deposits #page-content .investnow-btn:hover {
  background: #152638;
  border: 1px solid #152638;
}

#insurance #page-heading {
  background: url(/images/about-us.jpg) no-repeat center;
  background-size: cover;
}
#insurance .tile-block {
  height: 300px;
}

#life_Insurance #page-heading {
  background: url(/images/about-us.jpg) no-repeat center;
  background-size: cover;
}
#life_Insurance .form-area {
  overflow: hidden;
}
#life_Insurance #page-content {
  margin-top: 250px;
}
#life_Insurance #page-content img {
  padding: 5px 10px;
}

#general_insurance #page-heading {
  background: url(/images/about-us.jpg) no-repeat center;
  background-size: cover;
}
#general_insurance .form-area {
  overflow: hidden;
}
#general_insurance .form-area p {
  text-align: left !important;
}
#general_insurance #page-content .pane-left {
  min-height: 555px;
}

#downloads #page-heading {
  background: url(/images/about-us.jpg) no-repeat center;
  background-size: cover;
}
#downloads #page-content {
  min-height: calc( 100vh - 335px );
  margin-top: 25px;
}
#downloads #page-content #online_forms {
  /*--------Table Starts---------*/
  /* Zebra striping */
  /*	 
  	Max width before this PARTICULAR table gets nasty
  	This query will take effect for any screen smaller than 760px
  	and also iPads specifically.
  	*/
  /*--------------Table Ends---------*/
  /*--------------online MF Forms Table------------*/
  /*-----------------*/
}
#downloads #page-content #online_forms table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  border: 1px solid #ebebeb;
  font-family: 'latoregular';
  color: #000000;
}
#downloads #page-content #online_forms .table-curved {
  border-collapse: separate;
  border-radius: 6px;
  overflow: hidden;
}
#downloads #page-content #online_forms .table > thead > tr > th {
  border-bottom: 0px solid #ddd;
  border-top: 0px solid #ddd;
  padding-top: 15px;
  padding-bottom: 15px;
  border-right: 1px solid #0b78c5;
}
@media (min-width: 0) and (max-width: 768px) {
  #downloads #page-content #online_forms .table > thead > tr > th {
    border-right: 0px solid #0b78c5;
  }
}
#downloads #page-content #online_forms .table > tbody > tr > td {
  border-bottom: 0px solid #ddd;
  border-top: 0px solid #ddd;
  text-align: left;
  border-right: 1px solid #ddd;
}
@media (min-width: 0) and (max-width: 425px) {
  #downloads #page-content #online_forms .table > tbody > tr > td {
    text-align: right;
    padding-right: 20px;
    padding-left: 170px;
  }
}
@media (min-width: 0) and (max-width: 768px) {
  #downloads #page-content #online_forms .table > tbody > tr > td {
    text-align: center;
    border-right: 0px solid #ddd;
    border-bottom: 1px solid #ddd;
  }
}
#downloads #page-content #online_forms tr:nth-of-type(odd) {
  background: #f6f6f6;
}
#downloads #page-content #online_forms th {
  background: #0b78c5;
  color: white;
  border-bottom: 0px solid #ccc;
  font-family: 'Lato-bold';
  font-size: 15px;
  font-weight: normal;
  letter-spacing: .1px;
}
#downloads #page-content #online_forms th:nth-of-type(odd) {
  background: #152638;
}
#downloads #page-content #online_forms td, #downloads #page-content #online_forms th {
  border: 0px solid #ccc;
  text-align: left;
  border-top: 0px solid #cccccc;
  text-align: left;
  font-size: 15px;
  padding: 15px 10px;
}
#downloads #page-content #online_forms .table > tbody > tr > td, #downloads #page-content #online_forms .table > tbody > tr > th, #downloads #page-content #online_forms .table > tfoot > tr > td, #downloads #page-content #online_forms .table > tfoot > tr > th, #downloads #page-content #online_forms .table > thead > tr > td, #downloads #page-content #online_forms .table > thead > tr > th {
  /* padding:15px 6px !important; */
  padding: 15px 6px;
}
@media (min-width: 0) and (max-width: 768px) {
  #downloads #page-content #online_forms .table > tbody > tr > td, #downloads #page-content #online_forms .table > tbody > tr > th, #downloads #page-content #online_forms .table > tfoot > tr > td, #downloads #page-content #online_forms .table > tfoot > tr > th, #downloads #page-content #online_forms .table > thead > tr > td, #downloads #page-content #online_forms .table > thead > tr > th {
    padding-top: 30px;
  }
}
#downloads #page-content #online_forms tr td:nth-of-type(odd) {
  background: #e5e5e5;
  padding: 15px 6px;
}
#downloads #page-content #online_forms tr td:nth-of-type(even) {
  background: #ebebeb;
  padding: 15px 6px;
}
#downloads #page-content #online_forms tr:nth-of-type(odd) td {
  background: #f6f6f6;
  border-top: 0px solid #ccc;
  font-size: 16px;
  padding: 8px 6px;
}
@media only screen and (max-width: 760px), (min-device-width: 0px) and (max-device-width: 768px) {
  #downloads #page-content #online_forms {
    /* Force table to not be like tables anymore */
    /* Hide table headers (but not display: none;, for accessibility) */
    /*
    Label the data
    */
  }
  #downloads #page-content #online_forms table, #downloads #page-content #online_forms thead, #downloads #page-content #online_forms tbody, #downloads #page-content #online_forms th, #downloads #page-content #online_forms td, #downloads #page-content #online_forms tr {
    display: block;
  }
  #downloads #page-content #online_forms thead tr {
    position: absolute;
    top: -9999px;
    left: -9999px;
  }
  #downloads #page-content #online_forms tr {
    border: 1px solid #ccc;
  }
  #downloads #page-content #online_forms td {
    /* Behave  like a "row" */
    border: none;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 50%;
  }
  #downloads #page-content #online_forms td:before {
    /* Now like a table header */
    position: absolute;
    /* Top/left values mimic padding */
    top: 6px;
    left: 6px;
    width: 100%;
    padding-right: 10px;
    white-space: nowrap;
    font-family: 'Lato-Bold';
    color: #152638;
    text-align: center;
  }
  #downloads #page-content #online_forms td, #downloads #page-content #online_forms th {
    border: 0px solid #ccc;
    text-align: left;
    border-top: 0px solid #cccccc;
    text-align: center;
    width: 100%;
  }
  #downloads #page-content #online_forms td:nth-of-type(1):before {
    content: "SL No";
  }
  #downloads #page-content #online_forms td:nth-of-type(2):before {
    content: "Documentation required";
  }
  #downloads #page-content #online_forms td:nth-of-type(3):before {
    content: "If, Yes";
  }
  #downloads #page-content #online_forms td:nth-of-type(4):before {
    content: "If, No";
  }
}
#downloads #page-content #online_forms a.oi-linked-text {
  color: #1676b9;
  font-family: 'robotoregular';
  font-size: 14px;
}
#downloads #page-content #online_forms a:hover.oi-linked-text {
  color: #c03929;
}
#downloads #page-content #online_forms .oi-download-btn-kyc {
  background: #152638;
  color: #fff;
  /* padding: 20px; */
  text-align: center;
  padding-top: 10px;
  padding-bottom: 14px;
  font-size: 16px;
  border-radius: 5px;
  width: 290px;
  margin-bottom: 13px;
  margin-top: 10px;
}
@media (min-width: 0) and (max-width: 375px) {
  #downloads #page-content #online_forms .oi-download-btn-kyc {
    width: 100%;
  }
}
#downloads #page-content #online_forms .oi-download-btn-kyc a {
  color: #fff;
  font-size: 14px;
}
#downloads #page-content #online_forms .oi-download-btn-kyc a:hover {
  color: #152638;
}
#downloads #page-content #online_forms .oi-download-list {
  text-align: left;
  /*font-family:'robotoregular';
  font-size:14px;*/
  line-height: 25px;
  color: #000;
  padding-bottom: 0px;
}
#downloads #page-content #online_forms .oi-download-list ul {
  -webkit-padding-start: 22px;
}
#downloads #page-content #online_forms .oi-download-list li {
  list-style-type: none;
}
#downloads #page-content #online_forms .oi-download-list li:before {
  /* content: '\2022'; */
  display: inline-block;
  content: "";
  width: 6px;
  height: 6px;
  background: #152638;
  margin-right: 10px;
  vertical-align: middle;
  border-radius: 25px;
}
#downloads #page-content #online_forms .oi-download-btn {
  background: #152638;
  color: #fff;
  /* padding: 20px; */
  text-align: center;
  padding-top: 10px;
  padding-bottom: 14px;
  font-size: 16px;
  border-radius: 5px;
  width: 290px;
  margin-bottom: 13px;
  margin-top: 10px;
  border: 0;
}
@media (min-width: 0) and (max-width: 375px) {
  #downloads #page-content #online_forms .oi-download-btn {
    width: 100%;
  }
}
#downloads #page-content #online_forms .oi-mail a {
  color: #1676b9;
  font-family: 'robotomedium';
  font-size: 16px;
  padding-left: 17px;
}
#downloads #page-content #online_forms .oi-mail a:hover {
  color: #c03929;
}
#downloads #page-content ul.instruction li {
  list-style: url(/images/instruction.png);
  margin-left: -20px;
  padding: 8px 5px;
}
#downloads #page-content ul.instruction2 li {
  list-style: url(/images/check.png);
  margin-left: 0px;
  padding: 5px;
}
#downloads #page-content .one-btn {
  background: #2262c2;
  border-radius: 4px;
  color: #ffffff;
  padding: 10px 15px;
}
#downloads #page-content .one-btn:before {
  content: '';
  position: absolute;
  background: #999999;
  width: 905px;
  height: 2px;
  top: -37px;
  left: 110px;
}
@media (min-width: 768px) and (max-width: 1025px) {
  #downloads #page-content .one-btn:before {
    width: 746px;
    left: 91px;
  }
}
@media (min-width: 0) and (max-width: 768px) {
  #downloads #page-content .one-btn:before {
    display: none;
  }
}
#downloads #page-content .one-btn:after {
  content: '';
  position: absolute;
  background: #999999;
  width: 2px;
  height: 28px;
  top: -36px;
  left: 50%;
}
#downloads #page-content .section1 {
  background: #ffffff;
  min-height: 331px;
  color: #56595c;
  font-family: 'robotoregular';
  font-size: 14px;
  border: 1px solid #cfcfcf;
  border-radius: 3px;
  padding: 15px 5px;
  -webkit-box-shadow: 0px 0px 14px 1px #f0f0f0;
  -moz-box-shadow: 0px 0px 14px 1px #f0f0f0;
  box-shadow: 0px 0px 14px 1px #f0f0f0;
}
@media (min-width: 425px) and (max-width: 769px) {
  #downloads #page-content .section1 {
    min-height: 240px;
  }
}
#downloads #page-content .section1 .form-head {
  font-family: 'robotomedium';
  font-size: 16px;
  color: #1d1d1d;
  margin-top: 10px;
}
#downloads #page-content .section1 p {
  padding: 10px;
  min-height: 108px;
  font-size: 13px;
}
#downloads #page-content .section1 .download-btn {
  background: #152638;
  border-radius: 25px;
  padding: 10px 15px;
  font-family: 'robotoregular';
  color: #ffffff;
  border: 0;
}
#downloads #page-content .section1 .download-btn:hover {
  background: #152638;
  color: #ffffff;
}
#downloads #page-content .section2 {
  background: #e0e8f5;
  min-height: 331px;
  color: #56595c;
}
@media (min-width: 425px) and (max-width: 769px) {
  #downloads #page-content .section2 {
    min-height: 240px;
  }
}
#downloads #page-content .section2 .section-heading {
  background: #008cc4;
  color: #ffffff;
  padding: 5px 10px;
  margin-bottom: 20px;
}
#downloads #page-content .section2 .form-head {
  font-family: 'robotoregular';
  font-size: 16px;
  color: #008cc4;
  margin-top: 10px;
}
#downloads #page-content .section2 p {
  padding: 10px;
}
#downloads #page-content .section2 :after {
  content: '';
  position: absolute;
  background: #999999;
  width: 2px;
  height: 25px;
  bottom: -14px;
  left: 50%;
}
#downloads #page-content .section3 {
  background: #f2e3da;
  min-height: 331px;
  color: #56595c;
}
@media (min-width: 425px) and (max-width: 769px) {
  #downloads #page-content .section3 {
    min-height: 240px;
  }
}
#downloads #page-content .section3 .section-heading {
  background: #7c4223;
  color: #ffffff;
  padding: 5px 10px;
  margin-bottom: 20px;
}
#downloads #page-content .section3 .form-head {
  font-family: 'robotoregular';
  font-size: 16px;
  color: #7c4223;
  margin-top: 10px;
}
#downloads #page-content .section3 p {
  padding: 10px;
}
#downloads #page-content .section3 :after {
  content: '';
  position: absolute;
  background: #999999;
  width: 2px;
  height: 25px;
  bottom: -14px;
  left: 50%;
}
#downloads #page-content .section4 {
  background: #e3f0e9;
  min-height: 331px;
  color: #56595c;
}
@media (min-width: 425px) and (max-width: 769px) {
  #downloads #page-content .section4 {
    min-height: 240px;
  }
}
#downloads #page-content .section4 .section-heading {
  background: #00b1b0;
  color: #ffffff;
  padding: 5px 10px;
  margin-bottom: 20px;
}
#downloads #page-content .section4 .form-head {
  font-family: 'robotoregular';
  font-size: 16px;
  color: #00b1b0;
  margin-top: 10px;
}
#downloads #page-content .section4 p {
  padding: 10px;
}
#downloads #page-content .section4 :after {
  content: '';
  position: absolute;
  background: #999999;
  width: 2px;
  height: 25px;
  bottom: -14px;
  left: 50%;
}
#downloads #page-content .section5 {
  background: #f3e9d9;
  min-height: 331px;
  color: #56595c;
}
@media (min-width: 425px) and (max-width: 769px) {
  #downloads #page-content .section5 {
    min-height: 240px;
  }
}
#downloads #page-content .section5 .section-heading {
  background: #d68900;
  color: #ffffff;
  padding: 5px 10px;
  margin-bottom: 20px;
}
#downloads #page-content .section5 .form-head {
  font-family: 'robotoregular';
  font-size: 16px;
  color: #d68900;
  margin-top: 10px;
}
#downloads #page-content .section5 p {
  padding: 10px;
}
#downloads #page-content .section5 :after {
  content: '';
  position: absolute;
  background: #999999;
  width: 2px;
  height: 25px;
  bottom: -14px;
  left: 50%;
}

#taxation #page-heading {
  background: url(/images/tax-planning.jpg) no-repeat center;
  background-size: cover;
  min-height: 300px;
}
#taxation #page-heading .va-table {
  min-height: 300px;
}
#taxation #page-heading:after {
  height: 300px;
}
#taxation #page-content {
  margin: 0;
  padding: 25px 0;
  min-height: calc( 100vh - 335px );
}
#taxation #page-content .side-tab {
  min-height: 60px;
  background: url(/images/tax-contact2.png) center no-repeat;
  background-size: cover;
  margin-bottom: 5px;
  border-radius: 8px;
  color: #ffffff;
  font-size: 22px;
}
@media (min-width: 769px) and (max-width: 1024px) {
  #taxation #page-content .side-tab {
    margin-top: 60px;
  }
}
#taxation #page-content .side-tab .butn {
  padding: 10px;
  background: #ff7000;
  color: #fff;
  margin-top: 10px;
  margin-bottom: 10px;
  border-radius: 0px;
  outline: none;
}
#taxation #page-content .side-contact {
  min-height: 60px;
  background: url(/images/tax-contact.png) center no-repeat;
  background-size: cover;
  margin-bottom: 11px;
  font-size: 31px;
  color: #ffffff;
  border-radius: 8px;
}
@media (min-width: 426px) and (max-width: 768px) {
  #taxation #page-content .side-contact {
    margin-top: 17px;
  }
}
#taxation #page-content .side-contact .butn {
  padding: 8px;
  background: #ff7000;
  color: #fff;
  margin-top: 10px;
  margin-bottom: 10px;
  border-radius: 0px;
  outline: none;
}
#taxation #page-content .border-right-grey {
  border-right: 1px solid #dfdfdf;
}
#taxation #page-content .border-left-grey {
  border-left: 1px solid #dfdfdf;
}
#taxation #page-content .table-striped > thead > tr:nth-of-type(odd) {
  background-color: #0760ac;
  border-bottom: 1px solid #ddd;
  color: #ffffff;
}
#taxation #page-content .plan-btn {
  background: #152638;
  color: #ffffff;
}

#Our-Recommendation #page-heading {
  background: url(/images/about-us.jpg) no-repeat center;
  background-size: cover;
}

#sip-planning #page-heading {
  background: url(/images/about-us.jpg) no-repeat center;
  background-size: cover;
}
#sip-planning #page-content {
  margin-top: 250px;
}

#sip-planning #page-heading {
  background: url(/images/about-us.jpg) no-repeat center;
  background-size: cover;
}

#my_sip_world #page-heading {
  background: url(/images/sip-world-banner.png) no-repeat center;
  background-size: cover;
  min-height: 350px;
}
#my_sip_world #page-heading .va-table {
  min-height: 350px;
}
#my_sip_world #page-heading:after {
  height: 350px;
}
#my_sip_world #page-heading .plan-btn {
  background: #ffffff;
  border-radius: 30px;
  font-family: 'Poppins-SemiBold';
  font-size: 18px;
  color: #161616;
  padding: 5px 5px;
  margin-top: 20px;
}
#my_sip_world #page-heading .plan-btn:hover {
  background: #f1f0f1;
}
#my_sip_world #page-heading .plan-btn img {
  padding-right: 10px;
}
#my_sip_world .nav1 {
  background: #ffffff;
  border-radius: 5px;
}
#my_sip_world .nav1 li .active a {
  background: #152638 !important;
}
#my_sip_world .nav1 li a {
  border-radius: 4px;
  border: 1px solid #dedede;
}
#my_sip_world #page-content .nav-pills > li.active > a, #my_sip_world #page-content .nav-pills > li.active > a:focus, #my_sip_world #page-content .nav-pills > li.active > a:hover {
  color: #fff;
  background-color: #152638;
}
#my_sip_world #page-content .nav > li > a:focus, #my_sip_world #page-content .nav > li > a:hover {
  text-decoration: none;
  color: #fff;
  background-color: #152638;
}
#my_sip_world #page-content .feed-txt {
  background-image: url(/images/quotes1.png), url(/images/quotes2.png);
  background-position: left top, right bottom;
  background-repeat: no-repeat, no-repeat;
  min-height: 230px;
  margin-top: 50px;
  color: #2a2a2a;
  line-height: 24px;
}
#my_sip_world #page-content .feed-txt img {
  margin-top: -50px;
  z-index: 999;
}
#my_sip_world #page-content2 {
  min-height: 500px;
  background: #f9f9f9;
}
#my_sip_world #page-content2 .va-table {
  min-height: 500px;
}
#my_sip_world #page-content2 .services-head {
  font-family: 'Poppins-SemiBold';
  font-size: 25px;
  color: #4ebe71;
  line-height: 25px;
  text-transform: uppercase;
}
#my_sip_world #page-content2 .services-head p {
  font-family: 'Poppins-Light';
  font-size: 18px;
  line-height: 28px;
  color: #000000;
  text-transform: none;
  padding-bottom: 40px;
}
#my_sip_world #page-content2 a .ser-icon {
  padding-top: 20px img;
  padding-top-padding-bottom: 20px;
  padding-top--moz-transition: all 0.3s;
  padding-top--webkit-transition: all 0.3s;
  padding-top-transition: all 0.3s;
}
#my_sip_world #page-content2 a .ser-icon .iconhead {
  font-family: 'robotomedium';
  font-size: 17px;
  line-height: 22px;
  color: #040404;
}
#my_sip_world #page-content2 a:hover .ser-icon img {
  padding-bottom: 30px;
  -moz-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
#my_sip_world #page-content2 a:hover .ser-icon .iconhead {
  color: #ff6618;
}

#porfolio_tracker #page-heading {
  background: url(/images/about-us.jpg) no-repeat center;
  background-size: cover;
}
#porfolio_tracker .login {
  background: url(/images/login-panel.png) no-repeat right;
  background-color: #fefefe;
  min-height: 286px;
  border: solid 1px #e6e6e6;
  border-radius: 3px;
  box-sizing: border-box;
  padding: 15px 0;
  /*-radio----*/
}
@media (min-width: 0) and (max-width: 991px) {
  #porfolio_tracker .login {
    background-image: none;
    min-height: 415px;
    margin-bottom: 15px;
  }
}
@media (min-width: 426px) and (max-width: 768px) {
  #porfolio_tracker .login {
    background-image: none;
    min-height: 315px;
    margin-bottom: 15px;
  }
}
@media (min-width: 0) and (max-width: 320px) {
  #porfolio_tracker .login {
    background-image: none;
    min-height: 475px;
    margin-bottom: 15px;
  }
}
#porfolio_tracker .login label {
  float: left;
  font-size: 15px;
  font-weight: 500;
  margin-top: 10px;
  width: 75px;
}
#porfolio_tracker .login label + input {
  float: left;
}
#porfolio_tracker .login input, #porfolio_tracker .login select {
  width: 80%;
  height: 45px;
  padding: 5px;
  line-height: 45px;
  margin-left: 10px;
  box-sizing: border-box;
  background-color: #ffffff;
  border: solid 1px #e6e6e6;
  border-radius: 2px;
  box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.1);
}
#porfolio_tracker .login input:focus, #porfolio_tracker .login select:focus, #porfolio_tracker .login button:focus {
  outline: none;
}
#porfolio_tracker .login select {
  width: 200px;
}
#porfolio_tracker .login input[type="radio"]:checked,
#porfolio_tracker .login input[type="radio"]:not(:checked) {
  position: absolute;
  left: -9999px;
  display: none;
  background-color: none;
  border: solid 0px #e6e6e6;
}
#porfolio_tracker .login input[type="radio"]:checked + label,
#porfolio_tracker .login input[type="radio"]:not(:checked) + label {
  position: relative;
  padding-left: 28px;
  margin-right: 25px;
  margin-left: 12px;
  cursor: pointer;
  line-height: 20px;
  display: inline-block;
  color: #000000;
}
#porfolio_tracker .login input[type="radio"]:checked + label:before,
#porfolio_tracker .login input[type="radio"]:not(:checked) + label:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  border: 1px solid #ddd;
  border-radius: 100%;
  background: #fff;
}
#porfolio_tracker .login input[type="radio"]:checked + label:after,
#porfolio_tracker .login input[type="radio"]:not(:checked) + label:after {
  content: '';
  width: 12px;
  height: 12px;
  background: #152638;
  position: absolute;
  top: 3px;
  left: 3px;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
#porfolio_tracker .login input[type="radio"]:not(:checked) + label:after {
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}
#porfolio_tracker .login input[type="radio"]:checked + label:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}
#porfolio_tracker .benefits-ico {
  width: 50px;
  height: 50px;
  float: left;
  margin-right: 10px;
}
#porfolio_tracker .benefit-text {
  width: 330px;
  margin-top: 15px;
}

#register #page-heading {
  background: url(/images/about-us.jpg) no-repeat center;
  background-size: cover;
}
#register .finn-plan-text {
  background: url(/images/financial-planning-bg.png) no-repeat right;
  background-color: #fefefe;
  min-height: 227px;
  border: solid 1px #e6e6e6;
  border-radius: 3px;
  box-sizing: border-box;
  padding: 15px 0;
  margin-bottom: 15px;
}
@media (min-width: 0) and (max-width: 991px) {
  #register .finn-plan-text {
    background-image: none;
    min-height: 415px;
    margin-bottom: 15px;
  }
}
#register .register {
  background: url(/images/register-bg.png) no-repeat right bottom;
  background-color: #fefefe;
  min-height: 428px;
  border: solid 1px #e6e6e6;
  border-radius: 3px;
  box-sizing: border-box;
  padding: 15px 0;
}
#register .register .label-width1 {
  width: 116px;
}
@media (min-width: 0) and (max-width: 320px) {
  #register .register .label-width1 {
    width: 60px;
  }
}
@media (min-width: 321px) and (max-width: 375px) {
  #register .register .label-width1 {
    width: 80px;
  }
}
@media (min-width: 375px) and (max-width: 768px) {
  #register .register .label-width1 {
    width: 100px;
  }
}
#register .register .select1-width1 {
  width: 60px;
}
@media (min-width: 0) and (max-width: 320px) {
  #register .register .select1-width1 {
    width: 50px;
    font-size: 12px;
  }
}
@media (min-width: 321px) and (max-width: 375px) {
  #register .register .select1-width1 {
    width: 53px;
    font-size: 12px;
  }
}
@media (min-width: 376px) and (max-width: 768px) {
  #register .register .select1-width1 {
    width: 60px;
    font-size: 12px;
  }
}
#register .register .select1-width2 {
  width: 160px;
}
@media (min-width: 0) and (max-width: 320px) {
  #register .register .select1-width2 {
    width: 72px;
    font-size: 12px;
  }
}
@media (min-width: 321px) and (max-width: 375px) {
  #register .register .select1-width2 {
    width: 73px;
    font-size: 12px;
  }
}
@media (min-width: 376px) and (max-width: 768px) {
  #register .register .select1-width2 {
    width: 100px;
    font-size: 12px;
  }
}
#register .register .select1-width3 {
  width: 100px;
}
@media (min-width: 0) and (max-width: 320px) {
  #register .register .select1-width3 {
    width: 50px;
    font-size: 12px;
  }
}
@media (min-width: 321px) and (max-width: 375px) {
  #register .register .select1-width3 {
    width: 55px;
    font-size: 12px;
  }
}
@media (min-width: 376px) and (max-width: 768px) {
  #register .register .select1-width3 {
    width: 62px;
    font-size: 12px;
  }
}
#register .register .bg-color-secondry {
  position: relative;
  font-size: 20px;
  height: 40px;
  line-height: 40px;
  padding: 0 5px;
  margin-left: -15px;
  width: 95%;
}
@media (min-width: 0) and (max-width: 425px) {
  #register .register .bg-color-secondry {
    font-size: 15px;
    width: 100%;
  }
}
@media (min-width: 992px) {
  #register .register .bg-color-secondry:after {
    content: '';
    position: absolute;
    top: 0px;
    right: -22px;
    border-left: solid 23px #152638;
    border-top: solid 21px transparent;
    border-bottom: solid 19px transparent;
  }
}
@media (min-width: 376px) and (max-width: 991px) {
  #register .register {
    background-image: none;
    min-height: 415px;
    margin-bottom: 15px;
  }
}
@media (min-width: 0) and (max-width: 375px) {
  #register .register {
    background-image: none;
    min-height: 480px;
    margin-bottom: 15px;
  }
}
#register .register label {
  float: left;
  font-size: 15px;
  font-weight: 500;
  margin-top: 10px;
  width: 75px;
}
#register .register label + input {
  float: left;
}
#register .register input, #register .register select {
  width: 80%;
  height: 35px;
  padding: 5px;
  line-height: 35px;
  margin-bottom: 10px;
  box-sizing: border-box;
  background-color: #ffffff;
  border: solid 1px #e6e6e6;
  border-radius: 2px;
  box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.1);
}
#register .register input:focus, #register .register select:focus, #register .register button:focus {
  outline: none;
}
#register .register select {
  width: 200px;
}
#register .benefits-ico {
  width: 50px;
  height: 50px;
  float: left;
  margin-right: 10px;
}
#register .benefit-text {
  width: 330px;
  margin-top: 15px;
}

#financial_plannning #page-heading {
  background: url(/images/about-us.jpg) no-repeat center;
  background-size: cover;
}
#financial_plannning .finn-plan-text {
  background: url(/images/financial-planning-bg.png) no-repeat right;
  background-color: #fefefe;
  min-height: 227px;
  border: solid 1px #e6e6e6;
  border-radius: 3px;
  box-sizing: border-box;
  padding: 15px 0;
  margin-bottom: 15px;
}
@media (min-width: 0) and (max-width: 991px) {
  #financial_plannning .finn-plan-text {
    background-image: none;
    min-height: 415px;
    margin-bottom: 15px;
  }
}
#financial_plannning .user-area {
  background-color: #fafafa;
  min-height: 170px;
  border: solid 1px #e6e6e6;
  border-radius: 3px;
  box-sizing: border-box;
  padding: 15px 0;
  margin-bottom: 15px;
}
@media (min-width: 0) and (max-width: 991px) {
  #financial_plannning .user-area {
    background-image: none;
    min-height: 315px;
  }
}
#financial_plannning .financial-planning-objective {
  background-color: #fafafa;
  min-height: 285px;
  border: solid 1px #e6e6e6;
  border-radius: 3px;
  box-sizing: border-box;
  padding: 15px 0;
  margin-bottom: 15px;
}
@media (min-width: 0) and (max-width: 991px) {
  #financial_plannning .financial-planning-objective {
    background-image: none;
    min-height: 315px;
  }
}
#financial_plannning .financial-planning-objective ul {
  padding-left: 25px;
}

#Contact_Us #page-heading {
  background: url(/images/about-us.jpg) no-repeat center;
  background-size: cover;
}
#Contact_Us #map {
  width: 100%;
  min-height: 400px;
}
#Contact_Us .contact-ico {
  height: 50px;
  line-height: 20px;
}
#Contact_Us .contact-txt {
  min-height: 100px;
  margin-bottom: 15px;
}

#disclaimer #page-heading {
  background: url(/images/about-us.jpg) no-repeat center;
  background-size: cover;
}
#disclaimer #page-content {
  margin-top: 250px;
  /*--------Table Starts---------*/
  /* Zebra striping */
  /*	 
  	Max width before this PARTICULAR table gets nasty
  	This query will take effect for any screen smaller than 760px
  	and also iPads specifically.
  	*/
  /*--------------Table Ends---------*/
}
#disclaimer #page-content table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  border: 1px solid #ebebeb;
  font-family: 'latoregular';
  color: #000000;
}
#disclaimer #page-content .table-curved {
  border-collapse: separate;
  border-radius: 6px;
  overflow: hidden;
}
#disclaimer #page-content .table > thead > tr > th {
  border-bottom: 0px solid #ddd;
  border-top: 0px solid #ddd;
  padding-top: 15px;
  padding-bottom: 15px;
}
#disclaimer #page-content .table > tbody > tr > td {
  border-bottom: 0px solid #ddd;
  border-top: 0px solid #ddd;
  text-align: center;
}
@media (min-width: 0) and (max-width: 425px) {
  #disclaimer #page-content .table > tbody > tr > td {
    text-align: right;
    padding-right: 20px;
    padding-left: 170px;
  }
}
#disclaimer #page-content tr:nth-of-type(odd) {
  background: #f6f6f6;
}
#disclaimer #page-content th {
  background: #185aab;
  color: white;
  border-bottom: 0px solid #ccc;
  font-family: 'Lato-bold';
  font-size: 15px;
  font-weight: normal;
  letter-spacing: .1px;
}
#disclaimer #page-content th:nth-of-type(odd) {
  background: #152638;
}
#disclaimer #page-content td, #disclaimer #page-content th {
  border: 0px solid #ccc;
  text-align: left;
  border-top: 0px solid #cccccc;
  text-align: center;
  /*width:10%;*/
  font-size: 14px;
  padding: 15px 6px;
}
#disclaimer #page-content .table > tbody > tr > td, #disclaimer #page-content .table > tbody > tr > th, #disclaimer #page-content .table > tfoot > tr > td, #disclaimer #page-content .table > tfoot > tr > th, #disclaimer #page-content .table > thead > tr > td, #disclaimer #page-content .table > thead > tr > th {
  /* padding:15px 6px !important; */
  padding: 15px 6px;
}
#disclaimer #page-content tr td:nth-of-type(odd) {
  background: #e5e5e5;
  padding: 15px 6px;
}
#disclaimer #page-content tr td:nth-of-type(even) {
  background: #ebebeb;
  padding: 15px 6px;
}
#disclaimer #page-content tr:nth-of-type(odd) td {
  background: #f6f6f6;
  border-top: 0px solid #ccc;
  font-size: 16px;
  padding: 8px 6px;
}
@media only screen and (max-width: 760px), (min-device-width: 0px) and (max-device-width: 768px) {
  #disclaimer #page-content {
    /* Force table to not be like tables anymore */
    /* Hide table headers (but not display: none;, for accessibility) */
    /*
    Label the data
    */
  }
  #disclaimer #page-content table, #disclaimer #page-content thead, #disclaimer #page-content tbody, #disclaimer #page-content th, #disclaimer #page-content td, #disclaimer #page-content tr {
    display: block;
  }
  #disclaimer #page-content thead tr {
    position: absolute;
    top: -9999px;
    left: -9999px;
  }
  #disclaimer #page-content tr {
    border: 1px solid #ccc;
  }
  #disclaimer #page-content td {
    /* Behave  like a "row" */
    border: none;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 50%;
  }
  #disclaimer #page-content td:before {
    /* Now like a table header */
    position: absolute;
    /* Top/left values mimic padding */
    top: 6px;
    left: 6px;
    width: 45%;
    padding-right: 10px;
    white-space: nowrap;
    font-family: 'Lato-Bold';
    color: #18304d;
    text-align: left;
  }
  #disclaimer #page-content td, #disclaimer #page-content th {
    border: 0px solid #ccc;
    text-align: left;
    border-top: 0px solid #cccccc;
    text-align: center;
    width: 100%;
  }
  #disclaimer #page-content td:nth-of-type(1):before {
    content: "SL No";
  }
  #disclaimer #page-content td:nth-of-type(2):before {
    content: "Mutual Fund Type";
  }
  #disclaimer #page-content td:nth-of-type(3):before {
    content: "Commission Method";
  }
  #disclaimer #page-content td:nth-of-type(4):before {
    content: "Rate Range";
  }
  #disclaimer #page-content td:nth-of-type(5):before {
    content: "Paid from";
  }
}

#page-content .pane-left {
  position: relative;
}
@media (min-width: 992px) {
  #page-content .pane-left {
    min-height: 150px;
  }
}
#page-content .pane-left:before {
  position: absolute;
  content: '';
  background: #152638;
  right: 100%;
  top: 0;
  height: 100%;
  width: calc( 100% + ( 100vw - 1140px));
  z-index: 0;
}
@media (min-width: 0) and (max-width: 991px) {
  #page-content .pane-left:before {
    background: none;
  }
}
#page-content .pane-left:after {
  position: absolute;
  content: '';
  background-color: #f7f7f7;
  left: 0;
  top: 0;
  height: 100%;
  width: calc( 100% + ( 100vw - 1140px));
  z-index: 0;
}
@media (min-width: 0) and (max-width: 1024px) {
  #page-content .pane-left:after {
    width: 100%;
  }
}
#page-content .position-relative {
  z-index: 100;
  margin-bottom: 30px;
}
#page-content .tab-content {
  margin-top: 15px;
}
#page-content .tab-content p {
  text-align: justify;
}
#page-content img {
  max-width: 100%;
}
#page-content #knowed {
  border-top: solid 1px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  font-size: 12px;
  line-height: 18px;
  padding-top: 10px;
}

#mutual_funds #Safety {
  padding: 15px 0;
  box-sizing: border-box;
}
#mutual_funds #Safety .pane-left {
  padding-left: 15px;
}
#mutual_funds #Safety .pane-left:after {
  background-size: cover;
}
#mutual_funds #Advantage {
  padding: 15px 0;
  box-sizing: border-box;
}
#mutual_funds #Advantage .pane-left {
  padding-left: 15px;
}
#mutual_funds #Advantage .pane-left:after {
  background-size: cover;
}
#mutual_funds #Product_List {
  padding: 15px 0;
  box-sizing: border-box;
}
#mutual_funds #Product_List .pane-left {
  padding-left: 15px;
}
#mutual_funds #Product_List .pane-left:after {
  background-size: cover;
}
#mutual_funds #Product_List {
  padding: 15px 0;
  box-sizing: border-box;
}
#mutual_funds #Product_List .pane-left {
  padding-left: 15px;
}
#mutual_funds #Product_List .pane-left:after {
  background-size: cover;
}
#mutual_funds #Product_List {
  padding: 15px 0;
  box-sizing: border-box;
}
#mutual_funds #Product_List .pane-left {
  padding-left: 15px;
}
#mutual_funds #Product_List .pane-left:after {
  background-size: cover;
}

#Loans .pane-left {
  padding-left: 15px;
  min-height: calc( 100vh - 250px );
}

#nri #page-heading {
  background: url(/images/about-us.jpg) no-repeat center;
  background-size: cover;
}
#nri #page-content {
  margin-top: 250px;
}
#nri #page-content .pane-left {
  min-height: calc( 100vh - 310px );
}
#nri .faqtxt {
  font-weight: bold;
}

/* Contact Us */
/* Internal Pages Ends */
/*@import 'modules/_footer.scss';*/
/* Planning Web Area Entry */
#basket {
  /*.navbar-default {
      border-bottom: 1px solid #dadada;
  }
  	
  	.navbar-default .navbar-nav > li > a {
      padding: 24px 14px;
  	@include break(0, 768px){
  	padding: 15px 14px;
  	}
  	@include break(426px, 768px){
  	    padding: 15px 10px;
  		font-size: 13px;
  	}
  	@include break(769px, 1024px){
  	    padding: 24px 9px;
  	}
  	}*/
}

#basket-type {
  min-height: 400px;
  /* Risk Profile Radio Buttons Starts*/
  /* Risk Profile Radio Buttons Ends*/
  /*  Low and moderately low table starts */
}
#basket-type a {
  text-decoration: none;
}
#basket-type a:hover {
  color: #000000;
  outline: none;
}
#basket-type a:focus {
  color: #000000;
  outline: none;
}
#basket-type .va-table {
  min-height: 400px;
  font-family: "Poppins-Regular";
}
#basket-type .margin-bottom-30 {
  margin-bottom: 60px;
}
#basket-type .margin-top-80 {
  margin-top: 140px;
}
#basket-type .line-height-35 {
  line-height: 35px;
}
#basket-type .font-fam {
  font-family: "Poppins-Regular";
}
#basket-type .font-fam2 {
  font-family: "Poppins-SemiBold";
  font-weight: 600;
}
#basket-type .btn-custom {
  padding: 15px 30px;
  border-radius: 25px;
  background: #152638;
  border: 0px;
}
#basket-type .btn-custom:hover {
  outline: none;
  background: #152638;
  box-shadow: none;
}
#basket-type .btn-custom:focus {
  outline: none;
  background: #152638;
  box-shadow: none;
}
#basket-type .btn-custom-theme {
  padding: 7px 60px;
  margin-right: 10px;
  border-radius: 25px;
  background: #152638;
  border: 0px;
}
#basket-type .btn-custom-theme:focus {
  outline: none;
  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);
}
#basket-type .elss_info-bg {
  background: url(/images/tax-plan.png) top right no-repeat;
  min-height: 210px;
}
@media (min-width: 0) and (max-width: 425px) {
  #basket-type .elss_info-bg {
    background: none;
  }
}
#basket-type .btn-custom-padd {
  padding: 15px 60px;
}
#basket-type .carousel-inner .item {
  min-height: 250px;
}
#basket-type .carousel-control.left {
  background-image: none;
}
#basket-type .carousel-control.right {
  background-image: none;
}
#basket-type .table > tbody > tr > td, #basket-type .table > tbody > tr > th, #basket-type .table > tfoot > tr > td, #basket-type .table > tfoot > tr > th, #basket-type .table > thead > tr > td, #basket-type .table > thead > tr > th {
  padding: 5px;
}
#basket-type .risk {
  /* hide input */
  /* style label */
  /* toggle hover */
  /* toggle on */
  /* radio focus */
}
#basket-type .risk label {
  border-radius: 3px;
  border: 1px solid #D1D3D4;
  padding: 0px 10px 0 10px;
  text-align: center;
  font-weight: 200 !important;
  font-family: "Poppins-Medium";
}
#basket-type .risk input.radio:empty {
  margin-left: -999px;
  display: none;
}
#basket-type .risk input.radio:empty ~ label {
  position: relative;
  width: 200px;
  float: left;
  line-height: 40px;
  text-indent: 30px;
  margin-top: 10px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
@media (min-width: 376px) and (max-width: 425px) {
  #basket-type .risk input.radio:empty ~ label {
    margin-left: 80px;
  }
}
@media (min-width: 0) and (max-width: 375px) {
  #basket-type .risk input.radio:empty ~ label {
    margin-left: 15%;
  }
}
#basket-type .risk input.radio:empty ~ label:before {
  position: absolute;
  display: block;
  top: 0;
  bottom: 0;
  left: 0;
  content: '';
  width: 38px;
  background: #D1D3D4;
  border-radius: 3px 0 0 3px;
  content: '\2714';
  text-indent: 1px;
  color: #ffffff;
}
#basket-type .risk input.radio:hover:not(:checked) ~ label:before {
  content: '\2714';
  text-indent: 1px;
  color: #ffffff;
  background-color: #06662c;
}
#basket-type .risk input.radio:hover:not(:checked) ~ label {
  color: #000;
  border: 1px solid #06662c;
}
#basket-type .risk input.radio:checked ~ label:before {
  content: '\2714';
  text-indent: 1px;
  color: #ffffff;
  background-color: #06662c;
}
#basket-type .risk input.radio:checked ~ label {
  border: 1px solid #06662c;
}
#basket-type .risk input.radio:focus ~ label:before {
  box-shadow: 0 0 0 0px #999;
}
#basket-type .low-content {
  min-height: 100px;
  background: #f9f9f9;
  color: #000000;
  border: 1px solid #dddddd;
  border-radius: 10px;
}
#basket-type .low-content .va-table {
  min-height: 100px;
  font-family: "Poppins-Regular";
  font-size: 18px;
}
#basket-type .baskbgstrip1 {
  background: #152638;
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 8px;
}
#basket-type .baskbgstrip1 input {
  background: #ffffff;
  border: 0px;
  border-radius: 3px;
  width: 150px;
  text-align: center;
  font-size: 18px;
  color: #152638;
  box-shadow: inset 0px 0px 10px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: inset 0px 0px 10px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: inset 0px 0px 10px rgba(0, 0, 0, 0.3);
}
#basket-type .baskbgstrip1 input:hover, #basket-type .baskbgstrip1 input:focus {
  outline: none;
}
#basket-type .baskbgstrip1 button {
  background: #ff993f;
  background: -moz-linear-gradient(top, #ff993f 50%, #ff7801 50%, #ff993f 50%, #ff7801 50%, #ff7801 50%);
  background: -webkit-linear-gradient(top, #ff993f 50%, #ff7801 50%, #ff993f 50%, #ff7801 50%, #ff7801 50%);
  background: linear-gradient(to bottom, #ff993f 50%, #ff7801 50%, #ff993f 50%, #ff7801 50%, #ff7801 50%);
  border: 0px;
  border-radius: 3px;
  padding: 3px 10px;
  text-align: center;
  font-size: 13px;
  color: #ffffff;
  box-shadow: inset 0px 0px 5px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: inset 0px 0px 5px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: inset 0px 0px 5px rgba(0, 0, 0, 0.3);
  margin-left: 10px;
}
#basket-type .baskbgstrip2 {
  background: none;
  color: #152638;
  padding: 12px 20px;
  border-radius: 8px;
}
#basket-type .baskbgstrip2 input {
  background: #ffffff;
  border: 0px;
  border-radius: 3px;
  width: 150px;
  text-align: center;
  font-size: 22px;
  color: #1596b7;
  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);
}
#basket-type .baskbgstrip2 input:hover, #basket-type .baskbgstrip2 input:focus {
  outline: none;
}
#basket-type .baskbgstrip2 button {
  background: #ff993f;
  background: -moz-linear-gradient(top, #ff993f 50%, #ff7801 50%, #ff993f 50%, #ff7801 50%, #ff7801 50%);
  background: -webkit-linear-gradient(top, #ff993f 50%, #ff7801 50%, #ff993f 50%, #ff7801 50%, #ff7801 50%);
  background: linear-gradient(to bottom, #ff993f 50%, #ff7801 50%, #ff993f 50%, #ff7801 50%, #ff7801 50%);
  border: 0px;
  border-radius: 3px;
  padding: 3px 10px;
  text-align: center;
  font-size: 13px;
  color: #ffffff;
  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);
  margin-left: 10px;
}
#basket-type .border-table {
  border: 1px solid #e2e2e2;
  border-radius: 8px;
}
#basket-type .table {
  margin-bottom: 0px;
}
#basket-type .disclaimer {
  border-right: 1px solid #959595;
  min-height: 60px;
  font-size: 15px;
  line-height: 60px;
  color: #000000;
}
@media (min-width: 0) and (max-width: 425px) {
  #basket-type .disclaimer {
    border-right: 0px solid #959595;
    border-bottom: 1px solid #959595;
  }
}
#basket-type .disclaimer img {
  margin-top: -12px;
}
#basket-type .disclaimer-para {
  font-size: 11px;
  font-color: #666666;
  line-height: 20px;
}
#basket-type a {
  cursor: pointer;
}
#basket-type a .icon {
  width: 141px;
  height: 141px;
  border-radius: 128px;
  position: relative;
  margin: 0 auto;
}
#basket-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: 8px;
  left: 8px;
  content: '';
  z-index: 0;
}
#basket-type a .icon img {
  position: relative;
  z-index: 100;
}
#basket-type a .icon1 {
  width: 162px;
  height: 136px;
  position: relative;
  margin: 0 auto;
}
#basket-type a .icon-basket1 {
  background: url(/images/invest-icon1.png) center no-repeat;
}
#basket-type a .icon-basket-inner1 {
  background: url(/images/invest-icon1_hvr.png) center no-repeat;
}
#basket-type a .icon-basket2 {
  background: url(/images/invest-icon2.png) center no-repeat;
}
#basket-type a .icon-basket-inner2 {
  background: url(/images/invest-icon2_hvr.png) center no-repeat;
}
#basket-type a .icon-basket3 {
  background: url(/images/invest-icon3.png) center no-repeat;
}
#basket-type a .icon-basket-inner3 {
  background: url(/images/invest-icon2_hvr.png) center no-repeat;
}
#basket-type a .icon2 {
  width: 130px;
  height: 109px;
  position: relative;
  margin: 0 auto;
}
#basket-type a .icon-type1 {
  background: url(/images/sip-icon.png) center no-repeat;
}
#basket-type a .icon-type-inner1 {
  background: url(/images/sip-icon_hvr.png) center no-repeat;
}
#basket-type a .icon-type2 {
  background: url(/images/lumpsum-icon.png) center no-repeat;
}
#basket-type a .icon-type-inner2 {
  background: url(/images/lumpsum-icon_hvr.png) center no-repeat;
}
#basket-type a .icon-type3 {
  background: url(/images/sip-icon.png) center no-repeat;
}
#basket-type a .icon-type-inner3 {
  background: url(/images/sip-icon_hvr.png) center no-repeat;
}
#basket-type a .icon-type4 {
  background: url(/images/lumpsum-icon.png) center no-repeat;
}
#basket-type a .icon-type-inner4 {
  background: url(/images/lumpsum-icon_hvr.png) center no-repeat;
}
#basket-type a .icon-type5 {
  background: url(/images/sip-icon.png) center no-repeat;
}
#basket-type a .icon-type-inner5 {
  background: url(/images/sip-icon_hvr.png) center no-repeat;
}
#basket-type a .icon-type6 {
  background: url(/images/lumpsum-icon.png) center no-repeat;
}
#basket-type a .icon-type-inner6 {
  background: url(/images/lumpsum-icon_hvr.png) center no-repeat;
}
#basket-type a label {
  display: none;
  cursor: pointer;
  position: relative;
  padding-left: 25px;
  font-size: 13px;
}
#basket-type a .rd {
  margin-top: 10px;
  margin-bottom: 10px;
}
#basket-type a input[type=radio] {
  display: none;
}
#basket-type a label:before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 10px;
  position: absolute;
  left: 0;
  bottom: 1px;
  background-color: #e4e4e4;
  border: 3px solid #959595;
}
#basket-type a .rd label:before {
  border-radius: 8px;
}
#basket-type a input[type=radio]:checked + label:before {
  content: "\2022";
  color: #79c396;
  font-size: 35px;
  text-align: center;
  line-height: 10px;
  padding-left: 0px;
  border: 3px solid #00430b;
}
#basket-type #nav_baskt_1 {
  display: inline-block;
  border-bottom: 0px solid #ddd;
}
#basket-type #nav_baskt_1 li {
  display: inline-block;
}
#basket-type #nav_baskt_1 li.active > a, #basket-type #nav_baskt_1 li.active > a:hover, #basket-type #nav_baskt_1 li.active > a:focus {
  border: none;
  border-radius: 0px;
  color: #f47301;
}
#basket-type #nav_baskt_1 li.active > a > .icon-b, #basket-type #nav_baskt_1 li.active > a:focus > .icon-b {
  width: 128px;
  height: 126px;
  border-radius: 128px;
  position: relative;
  margin: 0 auto;
}
#basket-type #nav_baskt_1 li.active > a > .icon-b:after, #basket-type #nav_baskt_1 li.active > a:focus > .icon-b: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: 8px;
  left: 8px;
  content: '';
  z-index: 0;
}
#basket-type #nav_baskt_1 li.active > a > .icon-b img, #basket-type #nav_baskt_1 li.active > a:focus > .icon-b img {
  position: relative;
  z-index: 100;
}
#basket-type #nav_baskt_1 li.active > a > .icon-basket-inner1, #basket-type #nav_baskt_1 li.active > a:hover > .icon-basket-inner1, #basket-type #nav_baskt_1 li.active > a:focus > .icon-basket-inner1 {
  background-color: #53b9d0;
  border: solid 4px #52c8b9;
}
#basket-type #nav_baskt_1 li.active > a > .icon-basket-inner1:after, #basket-type #nav_baskt_1 li.active > a:hover > .icon-basket-inner1:after, #basket-type #nav_baskt_1 li.active > a:focus > .icon-basket-inner1:after {
  background-color: #ffffff;
  background-image: url(/images/tick.png);
  background-repeat: no-repeat;
  background-position: 50% 100% !important;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
#basket-type #nav_baskt_1 li.active > a > .icon-basket-inner1 img, #basket-type #nav_baskt_1 li.active > a:hover > .icon-basket-inner1 img, #basket-type #nav_baskt_1 li.active > a:focus > .icon-basket-inner1 img {
  margin-top: 40px;
}
#basket-type #nav_baskt_1 li.active > a > .icon-basket-inner1 .tick, #basket-type #nav_baskt_1 li.active > a:hover > .icon-basket-inner1 .tick, #basket-type #nav_baskt_1 li.active > a:focus > .icon-basket-inner1 .tick {
  display: block;
  background: url(/images/tick.png);
  position: absolute;
  bottom: 0px;
  left: 50px;
  z-index: 99;
}
#basket-type #nav_baskt_1 li.active > a > .icon-basket-inner1 li.active > a:hover > .icon-b:after, #basket-type #nav_baskt_1 li.active > a:hover > .icon-basket-inner1 li.active > a:hover > .icon-b:after, #basket-type #nav_baskt_1 li.active > a:focus > .icon-basket-inner1 li.active > a:hover > .icon-b:after {
  width: 96px;
  height: 96px;
  top: 12px;
  left: 12px;
}
#basket-type #nav_baskt_1 li > a {
  color: #000000;
  border: none;
  padding: 30px;
}
#basket-type #nav_baskt_1 li > a:hover, #basket-type #nav_baskt_1 li > a:focus {
  color: #000000;
  background: none;
}
#basket-type #nav_baskt_1 .nav li > a {
  padding: 25px;
}
#basket-type #nav_baskt_1 li > a > .icon-b {
  width: 128px;
  height: 126px;
  border-radius: 128px;
  position: relative;
  margin: 0 auto;
}
#basket-type #nav_baskt_1 li > a > .icon-b: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: 8px;
  left: 8px;
  content: '';
  z-index: 0;
}
#basket-type #nav_baskt_1 li > a > .icon-b img {
  position: relative;
  z-index: 100;
}
#basket-type #nav_baskt_1 li > a > .icon-basket-inner1 {
  background: #f6f6f6;
  border: solid 4px #e8e8e8;
}
#basket-type #nav_baskt_1 li > a > .icon-basket-inner1:after {
  background: #ffffff;
}
#basket-type #nav_baskt_1 li > a > .icon-basket-inner1 img {
  margin-top: 40px;
}
#basket-type #nav_baskt_1 li > a:hover > .icon-b:after {
  width: 96px;
  height: 96px;
  top: 12px;
  left: 12px;
}
#basket-type .description-header {
  background: #f6f6f6;
  border: 1px solid #e2e2e2;
  min-height: 77px;
  box-shadow: 3px 3px 5px #e4e4e4;
  font-family: "robotoregular", Roboto;
  font-size: 17px;
  padding: 10px;
  line-height: 27px;
}
#basket-type .border-table {
  border: 1px solid #e2e2e2;
  border-radius: 8px;
}
#basket-type .table {
  margin-bottom: 0px;
}

.nsetoolhdr {
  font-family: '$font-robotoreg', arial, helvetica, sans-serif;
  font-size: 10pt;
  color: #000000;
  font-weight: bold;
  BACKGROUND-COLOR: #52c8b9;
  border: 1px solid #1596b7;
}

.nsetoolbody {
  font-family: '$font-robotoreg', arial, helvetica, sans-serif;
  font-size: 10pt;
  color: #000000;
  font-weight: normal;
  BACKGROUND-COLOR: #ffffff;
  border-bottom: 1px solid #d2d2d3;
}

.nsetoolbutton {
  font-family: '$font-robotoreg', arial, helvetica, sans-serif;
  font-size: 10pt;
  color: #000000;
  font-weight: normal;
}

/* --------------Debt Fund Page--------------- */
#basket-type2 {
  min-height: 300px;
  margin-top: 120px;
  /* Risk Profile Radio Buttons Starts*/
  /* Risk Profile Radio Buttons Ends*/
  /*  Low and moderately low table starts */
  /* Debt Basket */
}
#basket-type2 a {
  text-decoration: none;
}
#basket-type2 a:hover {
  color: #000000;
  outline: none;
}
#basket-type2 a:focus {
  color: #000000;
  outline: none;
}
#basket-type2 .va-table {
  min-height: 400px;
  font-family: 'robotoregular';
}
#basket-type2 .margin-bottom-30 {
  margin-bottom: 60px;
}
#basket-type2 .margin-top-80 {
  margin-top: 140px;
}
#basket-type2 .line-height-35 {
  line-height: 35px;
}
#basket-type2 .font-fam {
  font-family: "open_sansregular";
}
#basket-type2 .font-fam2 {
  font-family: "open_sanssemibold";
  font-weight: 600;
}
#basket-type2 .btn-custom {
  padding: 15px 30px;
  border-radius: 25px;
  background: #152638;
  border: 0px;
}
#basket-type2 .btn-custom:focus {
  outline: none;
  background: #152638;
  box-shadow: none;
}
#basket-type2 .btn-custom-theme {
  padding: 7px 60px;
  margin-right: 10px;
  border-radius: 25px;
  background: #152638;
  border: 0px;
}
#basket-type2 .btn-custom-theme:focus {
  outline: none;
  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);
}
#basket-type2 .elss_info-bg {
  background: url(/images/tax-plan.png) top right no-repeat;
  min-height: 210px;
}
@media (min-width: 0) and (max-width: 425px) {
  #basket-type2 .elss_info-bg {
    background: none;
  }
}
#basket-type2 .btn-custom-padd {
  padding: 15px 50px;
}
#basket-type2 .carousel-inner .item {
  min-height: 250px;
}
#basket-type2 .carousel-control.left {
  background-image: none;
}
#basket-type2 .carousel-control.right {
  background-image: none;
}
#basket-type2 .table > tbody > tr > td, #basket-type2 .table > tbody > tr > th, #basket-type2 .table > tfoot > tr > td, #basket-type2 .table > tfoot > tr > th, #basket-type2 .table > thead > tr > td, #basket-type2 .table > thead > tr > th {
  padding: 5px;
}
#basket-type2 .risk {
  /* hide input */
  /* style label */
  /* toggle hover */
  /* toggle on */
  /* radio focus */
}
#basket-type2 .risk label {
  border-radius: 3px;
  border: 1px solid #D1D3D4;
  padding: 0px 10px 0 10px;
  text-align: center;
  font-weight: 200 !important;
  font-family: "Poppins-Regular";
}
#basket-type2 .risk input.radio:empty {
  margin-left: -999px;
}
#basket-type2 .risk input.radio:empty ~ label {
  position: relative;
  width: 200px;
  float: left;
  line-height: 40px;
  text-indent: 30px;
  margin-top: 10px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
#basket-type2 .risk input.radio:empty ~ label:before {
  position: absolute;
  display: block;
  top: 0;
  bottom: 0;
  left: 0;
  content: '';
  width: 38px;
  background: #D1D3D4;
  border-radius: 3px 0 0 3px;
  content: '\2714';
  text-indent: 1px;
  color: #ffffff;
}
#basket-type2 .risk input.radio:hover:not(:checked) ~ label:before {
  content: '\2714';
  text-indent: 1px;
  color: #ffffff;
  background-color: #1a9901;
}
#basket-type2 .risk input.radio:hover:not(:checked) ~ label {
  color: #000;
  border: 1px solid #d1d1d1;
}
#basket-type2 .risk input.radio:checked ~ label:before {
  content: '\2714';
  text-indent: 1px;
  color: #ffffff;
  background-color: #1a9901;
}
#basket-type2 .risk input.radio:checked ~ label {
  border: 1px solid #d1d1d1;
}
#basket-type2 .risk input.radio:focus ~ label:before {
  box-shadow: 0 0 0 0px #999;
}
#basket-type2 .low-content {
  min-height: 100px;
  background: #f9f9f9;
  color: #000000;
  border: 1px solid #dddddd;
  border-radius: 10px;
}
#basket-type2 .low-content .va-table {
  min-height: 100px;
  font-family: "open_sansregular";
  font-size: 18px;
}
#basket-type2 .baskbgstrip1 {
  background: #152638;
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 8px;
}
#basket-type2 .baskbgstrip1 input {
  background: #ffffff;
  border: 0px;
  border-radius: 3px;
  width: 150px;
  text-align: center;
  font-size: 20px;
  color: #152638;
  box-shadow: inset 0px 0px 10px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: inset 0px 0px 10px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: inset 0px 0px 10px rgba(0, 0, 0, 0.3);
}
#basket-type2 .baskbgstrip1 input:hover, #basket-type2 .baskbgstrip1 input:focus {
  outline: none;
}
#basket-type2 .baskbgstrip1 button {
  background: #ff993f;
  background: -moz-linear-gradient(top, #ff993f 50%, #ff7801 50%, #ff993f 50%, #ff7801 50%, #ff7801 50%);
  background: -webkit-linear-gradient(top, #ff993f 50%, #ff7801 50%, #ff993f 50%, #ff7801 50%, #ff7801 50%);
  background: linear-gradient(to bottom, #ff993f 50%, #ff7801 50%, #ff993f 50%, #ff7801 50%, #ff7801 50%);
  border: 0px;
  border-radius: 3px;
  padding: 3px 10px;
  text-align: center;
  font-size: 13px;
  color: #ffffff;
  box-shadow: inset 0px 0px 5px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: inset 0px 0px 5px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: inset 0px 0px 5px rgba(0, 0, 0, 0.3);
  margin-left: 10px;
}
#basket-type2 .baskbgstrip2 {
  background: none;
  color: #152638;
  padding: 12px 20px;
  border-radius: 8px;
}
#basket-type2 .baskbgstrip2 input {
  background: #ffffff;
  border: 0px;
  border-radius: 3px;
  width: 150px;
  text-align: center;
  font-size: 22px;
  color: #1596b7;
  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);
}
#basket-type2 .baskbgstrip2 input:hover, #basket-type2 .baskbgstrip2 input:focus {
  outline: none;
}
#basket-type2 .baskbgstrip2 button {
  background: #ff993f;
  background: -moz-linear-gradient(top, #ff993f 50%, #ff7801 50%, #ff993f 50%, #ff7801 50%, #ff7801 50%);
  background: -webkit-linear-gradient(top, #ff993f 50%, #ff7801 50%, #ff993f 50%, #ff7801 50%, #ff7801 50%);
  background: linear-gradient(to bottom, #ff993f 50%, #ff7801 50%, #ff993f 50%, #ff7801 50%, #ff7801 50%);
  border: 0px;
  border-radius: 3px;
  padding: 3px 10px;
  text-align: center;
  font-size: 13px;
  color: #ffffff;
  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);
  margin-left: 10px;
}
#basket-type2 .border-table {
  border: 1px solid #e2e2e2;
  border-radius: 8px;
}
#basket-type2 .table {
  margin-bottom: 0px;
}
#basket-type2 .disclaimer {
  border-right: 1px solid #959595;
  min-height: 60px;
  font-size: 15px;
  line-height: 60px;
  color: #000000;
}
@media (min-width: 0) and (max-width: 425px) {
  #basket-type2 .disclaimer {
    border-right: 0px solid #959595;
    border-bottom: 1px solid #959595;
  }
}
#basket-type2 .disclaimer img {
  margin-top: -12px;
}
#basket-type2 .disclaimer-para {
  font-size: 11px;
  font-color: #666666;
  line-height: 20px;
}
#basket-type2 .basket-type .carousel-inner .item {
  min-height: 380px;
}
#basket-type2 .basket-type .carousel-caption {
  top: 0px;
  width: 80%;
  left: 10%;
  right: 10%;
  text-shadow: none;
  color: #000000;
}
#basket-type2 .basket-type .item:nth-of-type(2) > .carousel-caption {
  top: 0px;
  width: 100%;
  left: 0%;
  right: 0%;
  text-shadow: none;
  color: #000000;
}
#basket-type2 .basket-type a.lnk {
  color: #06662c;
  text-decoration: underline !important;
}
#basket-type2 .basket-type a.lnk:hover {
  color: #152638;
  text-decoration: underline !important;
}
#basket-type2 a {
  cursor: pointer;
}
#basket-type2 a .icon {
  width: 141px;
  height: 141px;
  border-radius: 128px;
  position: relative;
  margin: 0 auto;
}
#basket-type2 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: 8px;
  left: 8px;
  content: '';
  z-index: 0;
}
#basket-type2 a .icon img {
  position: relative;
  z-index: 100;
}
#basket-type2 a .icon1 {
  width: 76px;
  height: 71px;
  position: relative;
  margin: 0 auto;
}
#basket-type2 a .icon-basket1 {
  background: url(/images/debt-fund1.png) center no-repeat;
}
#basket-type2 a .icon-basket-inner1 {
  background: url(/images/debt-fund1.png) center no-repeat;
}
#basket-type2 a .icon-basket2 {
  background: url(/images/debt-fund2.png) center no-repeat;
}
#basket-type2 a .icon-basket-inner2 {
  background: url(/images/debt-fund2.png) center no-repeat;
}
#basket-type2 a .icon-basket3 {
  background: url(/images/debt-fund3.png) center no-repeat;
}
#basket-type2 a .icon-basket-inner3 {
  background: url(/images/debt-fund3.png) center no-repeat;
}
#basket-type2 a .risk-type-head {
  font-family: "Poppins-SemiBold";
  font-size: 16px;
  color: #333333 !important;
}
#basket-type2 a .risk-type-head p {
  font-family: "Poppins-Regular";
  font-size: 14px;
}
#basket-type2 a .icon2 {
  width: 130px;
  height: 109px;
  position: relative;
  margin: 0 auto;
}
#basket-type2 a .icon-type1 {
  background: url(/images/sip-icon.png) center no-repeat;
}
#basket-type2 a .icon-type-inner1 {
  background: url(/images/sip-icon_hvr.png) center no-repeat;
}
#basket-type2 a .icon-type2 {
  background: url(/images/lumpsum-icon.png) center no-repeat;
}
#basket-type2 a .icon-type-inner2 {
  background: url(/images/lumpsum-icon_hvr.png) center no-repeat;
}
#basket-type2 a .icon-type3 {
  background: url(/images/sip-icon.png) center no-repeat;
}
#basket-type2 a .icon-type-inner3 {
  background: url(/images/sip-icon_hvr.png) center no-repeat;
}
#basket-type2 a .icon-type4 {
  background: url(/images/lumpsum-icon.png) center no-repeat;
}
#basket-type2 a .icon-type-inner4 {
  background: url(/images/lumpsum-icon_hvr.png) center no-repeat;
}
#basket-type2 a .icon-type5 {
  background: url(/images/sip-icon.png) center no-repeat;
}
#basket-type2 a .icon-type-inner5 {
  background: url(/images/sip-icon_hvr.png) center no-repeat;
}
#basket-type2 a .icon-type6 {
  background: url(/images/lumpsum-icon.png) center no-repeat;
}
#basket-type2 a .icon-type-inner6 {
  background: url(/images/lumpsum-icon_hvr.png) center no-repeat;
}
#basket-type2 a label {
  display: none;
  cursor: pointer;
  position: relative;
  padding-left: 25px;
  font-size: 13px;
}
#basket-type2 a .rd {
  margin-top: 10px;
  margin-bottom: 10px;
}
#basket-type2 a input[type=radio] {
  display: none;
}
#basket-type2 a label:before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 10px;
  position: absolute;
  left: 0;
  bottom: 1px;
  background-color: #e4e4e4;
  border: 3px solid #959595;
}
#basket-type2 a .rd label:before {
  border-radius: 8px;
}
#basket-type2 a input[type=radio]:checked + label:before {
  content: "\2022";
  color: #79c396;
  font-size: 35px;
  text-align: center;
  line-height: 10px;
  padding-left: 0px;
  border: 3px solid #00430b;
}
#basket-type2 #nav_baskt_1 {
  display: inline-block;
  border-bottom: 0px solid #ddd;
}
#basket-type2 #nav_baskt_1 li {
  display: inline-block;
}
#basket-type2 #nav_baskt_1 li.active > a, #basket-type2 #nav_baskt_1 li.active > a:hover, #basket-type2 #nav_baskt_1 li.active > a:focus {
  border: none;
  border-radius: 0px;
  color: #f47301;
}
#basket-type2 #nav_baskt_1 li.active > a > .icon-b, #basket-type2 #nav_baskt_1 li.active > a:focus > .icon-b {
  width: 128px;
  height: 126px;
  border-radius: 128px;
  position: relative;
  margin: 0 auto;
}
#basket-type2 #nav_baskt_1 li.active > a > .icon-b:after, #basket-type2 #nav_baskt_1 li.active > a:focus > .icon-b: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: 8px;
  left: 8px;
  content: '';
  z-index: 0;
}
#basket-type2 #nav_baskt_1 li.active > a > .icon-b img, #basket-type2 #nav_baskt_1 li.active > a:focus > .icon-b img {
  position: relative;
  z-index: 100;
}
#basket-type2 #nav_baskt_1 li.active > a > .icon-basket-inner1, #basket-type2 #nav_baskt_1 li.active > a:hover > .icon-basket-inner1, #basket-type2 #nav_baskt_1 li.active > a:focus > .icon-basket-inner1 {
  background-color: #53b9d0;
  border: solid 4px #52c8b9;
}
#basket-type2 #nav_baskt_1 li.active > a > .icon-basket-inner1:after, #basket-type2 #nav_baskt_1 li.active > a:hover > .icon-basket-inner1:after, #basket-type2 #nav_baskt_1 li.active > a:focus > .icon-basket-inner1:after {
  background-color: #ffffff;
  background-image: url(/images/tick.png);
  background-repeat: no-repeat;
  background-position: 50% 100% !important;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
#basket-type2 #nav_baskt_1 li.active > a > .icon-basket-inner1 img, #basket-type2 #nav_baskt_1 li.active > a:hover > .icon-basket-inner1 img, #basket-type2 #nav_baskt_1 li.active > a:focus > .icon-basket-inner1 img {
  margin-top: 40px;
}
#basket-type2 #nav_baskt_1 li.active > a > .icon-basket-inner1 .tick, #basket-type2 #nav_baskt_1 li.active > a:hover > .icon-basket-inner1 .tick, #basket-type2 #nav_baskt_1 li.active > a:focus > .icon-basket-inner1 .tick {
  display: block;
  background: url(/images/tick.png);
  position: absolute;
  bottom: 0px;
  left: 50px;
  z-index: 99;
}
#basket-type2 #nav_baskt_1 li.active > a > .icon-basket-inner1 li.active > a:hover > .icon-b:after, #basket-type2 #nav_baskt_1 li.active > a:hover > .icon-basket-inner1 li.active > a:hover > .icon-b:after, #basket-type2 #nav_baskt_1 li.active > a:focus > .icon-basket-inner1 li.active > a:hover > .icon-b:after {
  width: 96px;
  height: 96px;
  top: 12px;
  left: 12px;
}
#basket-type2 #nav_baskt_1 li > a {
  color: #000000;
  border: none;
  padding: 30px;
}
#basket-type2 #nav_baskt_1 li > a:hover, #basket-type2 #nav_baskt_1 li > a:focus {
  color: #000000;
  background: none;
}
#basket-type2 #nav_baskt_1 .nav li > a {
  padding: 25px;
}
#basket-type2 #nav_baskt_1 li > a > .icon-b {
  width: 128px;
  height: 126px;
  border-radius: 128px;
  position: relative;
  margin: 0 auto;
}
#basket-type2 #nav_baskt_1 li > a > .icon-b: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: 8px;
  left: 8px;
  content: '';
  z-index: 0;
}
#basket-type2 #nav_baskt_1 li > a > .icon-b img {
  position: relative;
  z-index: 100;
}
#basket-type2 #nav_baskt_1 li > a > .icon-basket-inner1 {
  background: #f6f6f6;
  border: solid 4px #e8e8e8;
}
#basket-type2 #nav_baskt_1 li > a > .icon-basket-inner1:after {
  background: #ffffff;
}
#basket-type2 #nav_baskt_1 li > a > .icon-basket-inner1 img {
  margin-top: 40px;
}
#basket-type2 #nav_baskt_1 li > a:hover > .icon-b:after {
  width: 96px;
  height: 96px;
  top: 12px;
  left: 12px;
}
#basket-type2 .description-header {
  background: #f6f6f6;
  border: 1px solid #e2e2e2;
  min-height: 77px;
  box-shadow: 3px 3px 5px #e4e4e4;
  font-family: "robotoregular", Roboto;
  font-size: 17px;
  padding: 10px;
  line-height: 27px;
}
#basket-type2 .border-table {
  border: 1px solid #e2e2e2;
  border-radius: 8px;
}
#basket-type2 .table {
  margin-bottom: 0px;
}

/* Transaction Login */
@media (min-width: 426px) and (max-width: 768px) {
  #trans_login .navbar-default .navbar-nav > li > a {
    padding: 15px 20px;
    font-size: 13px;
  }
}
#trans_login #page-heading {
  background: url(/images/about-us.jpg) no-repeat center;
  background-size: cover;
}
#trans_login #page-content {
  min-height: 575px;
  padding-top: 150px;
}
@media (min-width: 426px) and (max-width: 768px) {
  #trans_login #page-content {
    padding-top: 125px;
  }
}
#trans_login #page-content .va-table {
  min-height: 442px;
}
#trans_login .green-bgstrip {
  background: #152638;
  color: #ffffff;
  padding: 15px 20px;
  border-radius: 8px;
}
#trans_login .login {
  background: url(/images/transaction_Login_bg.png) no-repeat right;
  background-color: #fcfcfc;
  min-height: 296px;
  border: solid 1px #e6e6e6;
  border-radius: 6px;
  box-sizing: border-box;
  padding: 15px 0;
}
@media (min-width: 0) and (max-width: 991px) {
  #trans_login .login {
    background-image: none;
    min-height: 415px;
    margin-bottom: 15px;
  }
}
#trans_login .login label {
  font-size: 15px;
  font-weight: 500;
  margin-top: 10px;
  width: 75px;
}
#trans_login .login label + input {
  float: left;
}
#trans_login .login input, #trans_login .login select {
  width: 80%;
  height: 45px;
  padding: 5px;
  line-height: 45px;
  margin-left: 0px;
  box-sizing: border-box;
  background-color: #ffffff;
  border: solid 1px #e6e6e6;
  border-radius: 2px;
  box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.1);
}
#trans_login .login input:focus, #trans_login .login select:focus, #trans_login .login button:focus {
  outline: none;
}
#trans_login .login select {
  width: 200px;
}
#trans_login .login button {
  background: #ff993f;
  background: -moz-linear-gradient(top, #ff993f 50%, #ff7801 50%, #ff993f 50%, #ff7801 50%, #ff7801 50%);
  background: -webkit-linear-gradient(top, #ff993f 50%, #ff7801 50%, #ff993f 50%, #ff7801 50%, #ff7801 50%);
  background: linear-gradient(to bottom, #ff993f 50%, #ff7801 50%, #ff993f 50%, #ff7801 50%, #ff7801 50%);
  border: 0px;
  border-radius: 3px;
  padding: 10px 15px;
  text-align: center;
  font-size: 13px;
  color: #ffffff;
  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);
  margin-left: 0px;
}
#trans_login .login button:focus {
  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);
}
#trans_login .no-acc {
  text-decoration: none;
  color: #ee6a00;
  font-family: "robotomedium";
}
#trans_login .no-acc:hover {
  text-decoration: none;
  color: #000000;
}

/* Planning Web Area Entry Ends */

/*# sourceMappingURL=style.css.map */
