/* 
 * 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/roboto.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: "open_sansregular";
  font-size: 15px;
  background: #ffffff;
  color: #000000;
  line-height: 22px;
}

a {
  text-decoration: none !important;
  color: inherit;
}
a:hover {
  color: #076c7e;
}

.black {
  color: #000000 !important;
}

.blue {
  color: #005598 !important;
}

.orange {
  color: #f97b17 !important;
}

.white {
  color: #ffffff !important;
}

.green {
  color: #5db721 !important;
}

.yellow {
  color: #ffe001 !important;
}

.grey {
  color: #999999 !important;
}

.terquais {
  color: #07c8b8 !important;
}

.dark-green {
  color: #076c7e !important;
}

.brown {
  color: #675140 !important;
}

.color-prime {
  color: #076c7e;
}

.color-secondry {
  color: #1790a5;
}

.grey-blue {
  color: #0c3152;
}

.dark-grey {
  color: #797979;
}

.red {
  color: #ffc12b !important;
}

.purple {
  color: #076c7e !important;
}

.turquois-light {
  color: #53b9d0 !important;
}

.turquois-dark {
  color: #008e89 !important;
}

.green-light {
  color: #5db721 !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";
}

.ptsans-bold {
  font-family: "PTSans-Bold";
}

.merrisans-reg {
  font-family: "MerriweatherSans-Regular";
}

.merrisans-bold {
  font-family: "MerriweatherSans-Bold";
}

.merrisans-light {
  font-family: "MerriweatherSans-Light";
}

.bg-black {
  background: #000000;
}

.bg-blue {
  background: #005598;
}

.bg-yellow {
  background: #ffe001;
}

.bg-green {
  background: #076c7e;
}

.bg-light-green {
  background: #8dc023;
}

.bg-white {
  background: #ffffff;
}

.bg-grey {
  background: #56595c;
}

.bg-color-prime {
  background: #076c7e;
}

.bg-color-secondry {
  background: #1790a5;
}

.bg-brown {
  background: #675140;
}

.bg-turquois {
  background: #52c8b9;
}

.bg-red {
  background: #ffc12b;
}

.bg-orange {
  background: #f97b17;
}

.bg-green-light {
  background: #5db721;
}

.bg-color-prime-border {
  border-color: #04434e;
}

.bg-color-secondry {
  border-color: #116978;
}

.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;
  }

  .sm-margin-top-20 {
    margin-top: 20px;
  }
}
@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: #076c7e;
  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-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-20 {
  font-size: 20px;
  line-height: 27px;
}

.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-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-5 {
  padding-left: 5px;
}

.padding-left-10 {
  padding-left: 10px;
}

.padding-left-25 {
  padding-left: 25px;
}

.padding-right-5 {
  padding-right: 5px;
}

.padding-right-10 {
  padding-right: 10px;
}

.padding-right-25 {
  padding-right: 25px;
}

.padding-left-right40 {
  padding-left: 40px;
  padding-right: 40px;
}

/* Home Page Starts*/
section {
  position: relative;
}

#power-sip {
  background: #06478d;
  background-size: cover;
  min-height: 620px;
  padding-top: 50px;
  padding-bottom: 30px;
}
#power-sip .power-sip-head {
  font-family: 'muliregular';
  font-size: 24px;
  color: #ffffff;
  line-height: 30px;
  padding-top: 25px;
}
#power-sip .power-sip-head-para {
  font-family: 'mulilight';
  font-size: 14px;
  color: #ffffff;
  line-height: 24px;
  padding: 10px 10px;
  margin-top: 30px;
}
#power-sip .power-sip-subhead {
  font-family: 'muliregular';
  font-size: 30px;
  color: #8ce711;
  line-height: 40px;
  padding-top: 25px;
}
#power-sip .power-sip-number {
  font-family: 'mulibold';
  font-size: 80px;
  color: #ffffff;
  line-height: 80px;
  padding-top: 25px;
}
#power-sip .power-sip-numbertext {
  font-family: 'mulibold';
  font-size: 13px;
  color: #ffffff;
  line-height: 16px;
  padding-top: 10px;
}
#power-sip .power-sip-lastpara {
  font-family: 'mulilight';
  font-size: 13px;
  color: #ffffff;
  line-height: 16px;
  padding-top: 10px;
}
#power-sip #sip-calc {
  background: #ffffff;
  background-size: cover;
  min-height: 340px;
  border-radius: 3px;
  border: 1px solid #c5c5c5;
  margin-top: 20px;
  margin-bottom: 30px;
  padding: 10px;
  padding-top: 15px;
  padding-bottom: 15px;
  color: #3e3e3e;
  font-size: 14px;
  font-family: 'muliregular';
  /*-------------inflation checkbox -----------*/
  /* checkbox aspect */
  /* checked mark aspect */
  /* checked mark aspect changes */
  /* disabled checkbox */
  /* accessibility */
  /* hover style just for information */
  /*.rd
  {
  	margin-left:10px;
  }
  .rd input[type=radio] {
  	    display:none;
  	}
  .rd	input[type=radio] + label:before {
  	    content: "";  
  	    display: inline-block; 
  	    width: 16px;  
  	    height: 16px;  
  	    vertical-align:middle;
  	    margin-right: 8px;  
  	    background-color: #dfdfdf;  
  	    border-radius: 10px;  
  		border:5px solid #9e9e9e;
  	}
  .rd	input[type=radio]:checked + label:before {
  		content: "";  
  	    display: inline-block; 
  	    width: 16px;  
  	    height: 16px;  
  	    vertical-align:middle;
  	    background-color: #dfdfdf;  
  		border:5px solid #247000;
  	}*/
}
@media (min-width: 0px) and (max-width: 768px) {
  #power-sip #sip-calc {
    padding-bottom: 30px;
  }
}
#power-sip #sip-calc .heading-txt {
  font-family: 'mulibold';
  font-size: 25px;
  color: #06478d;
  line-height: 30px;
  text-transform: uppercase;
}
#power-sip #sip-calc .heading-txt p {
  font-family: 'mulilightitalic';
  font-size: 16px;
  color: #595959;
  line-height: 22px;
  text-transform: none;
  padding-top: 8px;
}
#power-sip #sip-calc .orange-strip {
  background: #72b913;
  min-height: 90px;
  padding: 15px;
  padding-top: 25px;
  padding-bottom: 25px;
  color: #ffffff;
  font-family: 'mulisemibold';
  font-size: '14px';
  line-height: 18px;
}
@media (min-width: 0) and (max-width: 425px) {
  #power-sip #sip-calc .orange-strip {
    min-height: 125px;
    padding-top: 15px;
    padding-bottom: 15px;
  }
}
#power-sip #sip-calc .orange-strip:before {
  position: absolute;
  content: '';
  left: -30px;
  top: 0;
  min-height: inherit;
  width: 30px;
  border-radius: 4px 0 0 4px;
  z-index: 3;
  background: #72b913;
}
#power-sip #sip-calc .orange-strip:after {
  position: absolute;
  content: '';
  right: -30px;
  top: 0;
  min-height: inherit;
  width: 30px;
  border-radius: 0 4px 4px 0;
  z-index: 3;
  background: #72b913;
}
#power-sip #sip-calc form {
  color: #3e3e3e;
}
#power-sip #sip-calc input[type=number] {
  width: 100px;
  background: none;
  border: none;
  outline: none;
}
#power-sip #sip-calc label {
  position: absolute;
  top: 7px;
  left: 40px;
  font-weight: normal;
}
@media (min-width: 0) and (max-width: 320px) {
  #power-sip #sip-calc label {
    left: 0px;
  }
}
#power-sip #sip-calc label.switch {
  position: absolute;
  top: 7px;
  left: 20px;
  font-weight: normal;
}
#power-sip #sip-calc rzslider {
  margin: 0 auto;
  height: 18px;
  padding-top: 5px;
}
#power-sip #sip-calc rzslider .rz-bar {
  height: 3px;
}
#power-sip #sip-calc rzslider .rz-bubble {
  display: block;
  color: #ffffff;
  bottom: 0px;
  z-index: 3;
  font-family: 'mulisemibold';
  font-size: 12px;
}
#power-sip #sip-calc rzslider .rz-ticks {
  top: 7px;
}
#power-sip #sip-calc rzslider .rz-ticks .tick {
  width: 1px;
  height: 7px;
  text-align: center;
  cursor: pointer;
  background: #c8c8c8;
  border-radius: 50%;
}
#power-sip #sip-calc rzslider .rz-ticks .tick .tick-value {
  top: 10px;
}
#power-sip #sip-calc rzslider .rz-pointer {
  width: 25px;
  height: 25px;
  top: -5px;
  z-index: 10;
  border-radius: 3px;
  /*		-webkit-box-shadow: -2px 2px 1px 0px rgba(0,0,0,.6);
  -moz-box-shadow: -2px 2px 1px 0px rgba(0,0,0,.6);
  box-shadow: -2px 2px 1px 0px rgba(0,0,0,.6);*/
}
#power-sip #sip-calc rzslider .rz-pointer:after {
  display: none;
}
#power-sip #sip-calc rzslider.green-bar .rz-bar {
  background-color: #e7e7e7;
}
#power-sip #sip-calc rzslider.green-bar .rz-selection {
  background-color: #136733;
}
#power-sip #sip-calc rzslider.green-bar .rz-pointer {
  background-color: #009b3c;
  color: #ffffff;
}
#power-sip #sip-calc input[type=number]::-webkit-inner-spin-button,
#power-sip #sip-calc input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
}
#power-sip #sip-calc .input-bg {
  background: none;
  padding: 9px 15px;
  border-radius: 0 4px 4px 0;
  border: 1px solid #ffffff;
  font-size: 14px;
  color: #ffffff;
  border-left: 1px solid none;
}
#power-sip #sip-calc .input-bg2 {
  background: #f4f4f4;
  padding: 9px 15px;
  border-radius: 0 4px 4px 0;
  border: 1px solid #bfbfbf;
  font-size: 16px;
  font-family: 'mulisemibold';
  color: #000000;
  border-left: 1px solid none;
}
@media (min-width: 0) and (max-width: 320px) {
  #power-sip #sip-calc .input-bg2 {
    padding: 9px 8px;
  }
}
#power-sip #sip-calc .input-group-addon {
  padding: 6px 12px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  color: #ffffff;
  text-align: center;
  background-color: transparent;
  border: 1px solid #ffffff;
  border-radius: 4px 0 0 4px;
}
#power-sip #sip-calc .input-group-addon2 {
  padding: 6px 12px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  color: #000000;
  text-align: center;
  background-color: #cdcdcd;
  border: 1px solid #cdcdcd;
  border-radius: 4px 0 0 4px;
}
@media (min-width: 0) and (max-width: 425px) {
  #power-sip #sip-calc .input-group {
    margin-bottom: 10px;
  }
}
#power-sip #sip-calc [type="checkbox"]:not(:checked),
#power-sip #sip-calc [type="checkbox"]:checked {
  position: absolute;
  left: -9999px;
  display: none;
}
#power-sip #sip-calc [type="checkbox"]:not(:checked) + label,
#power-sip #sip-calc [type="checkbox"]:checked + label {
  position: relative;
  padding-left: 20px;
  min-width: 70px;
  cursor: pointer;
  font-size: 14px;
  font-family: 'muliregular';
  color: #06478d;
}
@media (min-width: 0) and (max-width: 320px) {
  #power-sip #sip-calc [type="checkbox"]:not(:checked) + label,
  #power-sip #sip-calc [type="checkbox"]:checked + label {
    min-width: 83px;
  }
}
#power-sip #sip-calc [type="checkbox"]:not(:checked) + label:before,
#power-sip #sip-calc [type="checkbox"]:checked + label:before {
  content: '';
  position: absolute;
  left: 0;
  top: 3px;
  width: 15px;
  height: 15px;
  border: 1px solid #0fa503;
  background: #fff;
  border-radius: 3px;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}
#power-sip #sip-calc [type="checkbox"]:not(:checked) + label:after,
#power-sip #sip-calc [type="checkbox"]:checked + label:after {
  content: '\f00c';
  font-family: FontAwesome;
  position: absolute;
  top: 4px;
  left: 4px;
  font-size: 14px;
  line-height: 0.8;
  color: #0fa503;
  transition: all .2s;
}
#power-sip #sip-calc [type="checkbox"]:not(:checked) + label:after {
  opacity: 0;
  transform: scale(0);
}
#power-sip #sip-calc [type="checkbox"]:checked + label:after {
  opacity: 1;
  transform: scale(1);
}
#power-sip #sip-calc [type="checkbox"]:disabled:not(:checked) + label:before,
#power-sip #sip-calc [type="checkbox"]:disabled:checked + label:before {
  box-shadow: none;
  border-color: #bbb;
  background-color: #ddd;
}
#power-sip #sip-calc [type="checkbox"]:disabled:checked + label:after {
  color: #999;
}
#power-sip #sip-calc [type="checkbox"]:disabled + label {
  color: #aaa;
}
#power-sip #sip-calc [type="checkbox"]:checked:focus + label:before,
#power-sip #sip-calc [type="checkbox"]:not(:checked):focus + label:before {
  border: 1px solid #076c7e;
}
#power-sip #sip-calc label:hover:before {
  border: 1px solid  #06478d !important;
}
#power-sip #sip-calc .start-sip {
  background: #06478d;
  color: #ffffff;
  padding: 8px 30px;
  border-radius: 4px;
  font-family: 'mulibold';
  font-size: 14px;
  border: 0;
  outline: none;
}
#power-sip #sip-calc .start-sip:hover {
  background: #009b3c;
  color: #ffffff;
  outline: none;
}
#power-sip #sip-calc .start-sip:focus {
  background: #009b3c;
  color: #ffffff;
  outline: none;
}
#power-sip #sip-calc .center-resulttext {
  color: #000000;
  font-family: 'mulisemibold';
  font-size: 16px;
  line-height: 21px;
  background: #f4f4f4;
  border-radius: 5px;
  padding: 15px 25px;
  -webkit-box-shadow: 0px 2px 5px 0px #b8b8b8;
  -moz-box-shadow: 0px 2px 5px 0px #b8b8b8;
  box-shadow: 0px 2px 5px 0px #b8b8b8;
  margin-top: 5px;
  z-index: 1;
}
#power-sip #sip-calc .center-resulttext .side-icon-calc {
  position: absolute;
  left: -60px;
  top: -43px;
  background: url(/images/calc-icon.png) no-repeat;
  width: 104px;
  height: 82px;
  z-index: 2;
}
#power-sip #sip-calc .amount {
  color: #da534f;
  font-family: 'muliregular';
  font-size: 20px;
  margin-top: 10px;
}
#power-sip #sip-calc .result-text {
  font-family: 'muliregular';
  font-size: 16px;
  color: #202020;
  padding-left: 30px;
}
@media (min-width: 0px) and (max-width: 425px) {
  #power-sip #sip-calc .result-text {
    margin-bottom: 30px;
    margin-top: 30px;
    padding-left: 0px;
  }
}
#power-sip #sip-calc .wealth-gaintext {
  position: absolute;
  top: 2%;
  right: -1%;
  width: 24%;
  min-height: 60px;
  color: #202020;
  font-size: 16px;
  line-height: 18px;
  font-family: 'muliregular';
}
@media (min-width: 0) and (max-width: 425px) {
  #power-sip #sip-calc .wealth-gaintext {
    top: -9%;
    right: -1%;
    width: 34%;
  }
}
#power-sip #sip-calc .wealth-dot {
  width: 10px;
  height: 10px;
  border-radius: 10px;
  background: #0b72a6;
  position: absolute;
  top: 1px;
  left: -20px;
}
#power-sip #sip-calc .amount-investedtext {
  position: absolute;
  bottom: 2%;
  left: -1%;
  width: 25%;
  min-height: 60px;
  color: #202020;
  font-size: 16px;
  line-height: 18px;
  font-family: 'muliregular';
}
@media (min-width: 321px) and (max-width: 425px) {
  #power-sip #sip-calc .amount-investedtext {
    bottom: -9%;
    left: 1%;
    width: 28%;
  }
}
@media (min-width: 0) and (max-width: 320px) {
  #power-sip #sip-calc .amount-investedtext {
    bottom: -19%;
    left: 1%;
    width: 34%;
  }
}
#power-sip #sip-calc .amount-invested-dot {
  width: 10px;
  height: 10px;
  border-radius: 10px;
  background: #21cd99;
  position: absolute;
  top: 1px;
  right: 0px;
}
#power-sip #sip-calc .switch {
  position: relative;
  display: inline-block;
  vertical-align: top;
  width: 56px;
  height: 20px;
  padding: 3px;
  background-color: white;
  border-radius: 18px;
  cursor: pointer;
}
#power-sip #sip-calc .switch-input {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
#power-sip #sip-calc .switch-label {
  position: relative;
  display: block;
  height: inherit;
  font-size: 11px;
  background: #eceeef;
  border-radius: inherit;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.12), inset 0 0 2px rgba(0, 0, 0, 0.15);
  -webkit-transition: 0.15s ease-out;
  -moz-transition: 0.15s ease-out;
  -o-transition: 0.15s ease-out;
  transition: 0.15s ease-out;
  -webkit-transition-property: opacity background;
  -moz-transition-property: opacity background;
  -o-transition-property: opacity background;
  transition-property: opacity background;
}
#power-sip #sip-calc .switch-label:before, #power-sip #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;
}
#power-sip #sip-calc .switch-label:before {
  content: attr(data-off);
  right: 11px;
  color: #aaa;
  text-shadow: 0 1px rgba(255, 255, 255, 0.5);
}
#power-sip #sip-calc .switch-label:after {
  content: attr(data-on);
  left: 11px;
  color: white;
  text-shadow: 0 1px rgba(0, 0, 0, 0.2);
  opacity: 0;
}
#power-sip #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);
}
#power-sip #sip-calc .switch-input:checked ~ .switch-label:before {
  opacity: 0;
}
#power-sip #sip-calc .switch-input:checked ~ .switch-label:after {
  opacity: 1;
}
#power-sip #sip-calc .switch-handle {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 18px;
  height: 18px;
  background: white;
  border-radius: 10px;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
  background-image: -webkit-linear-gradient(top, white 40%, #f0f0f0);
  background-image: -moz-linear-gradient(top, white 40%, #f0f0f0);
  background-image: -o-linear-gradient(top, white 40%, #f0f0f0);
  background-image: linear-gradient(to bottom, white 40%, #f0f0f0);
  -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;
}
#power-sip #sip-calc .switch-handle:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -6px 0 0 -6px;
  width: 12px;
  height: 12px;
  background: #f9f9f9;
  border-radius: 6px;
  box-shadow: inset 0 1px rgba(0, 0, 0, 0.02);
  background-image: -webkit-linear-gradient(top, #eeeeee, white);
  background-image: -moz-linear-gradient(top, #eeeeee, white);
  background-image: -o-linear-gradient(top, #eeeeee, white);
  background-image: linear-gradient(to bottom, #eeeeee, white);
}
#power-sip #sip-calc .switch-input:checked ~ .switch-handle {
  left: 35px;
  box-shadow: -1px 1px 5px rgba(0, 0, 0, 0.2);
}
#power-sip #sip-calc .switch-green > .switch-input:checked ~ .switch-label {
  background: #a36819;
}
#power-sip #sip-calc #inflationRate {
  color: #c5c5c5;
}
#power-sip #sip-calc select {
  background: #f1f1f1;
  padding: 5px;
  border-radius: 5px;
  font-size: 14px;
  color: #3a3b3c;
  border: 0px;
  outline: none;
}
#power-sip #sip-calc select:focus {
  outline: none;
}

/*Services Section*/
#ser-main {
  background: url(/images/services-bg.png) center no-repeat;
  background-size: cover;
  min-height: 600px;
  padding-bottom: 20px;
  padding-top: 60px;
}
#ser-main .service-heading {
  font-family: 'mulibold';
  font-size: 25px;
  color: #000000;
  line-height: 35px;
  margin-bottom: 10px;
}
#ser-main .service-subheading {
  font-family: 'mulilight';
  font-size: 14px;
  color: #696868;
  line-height: 24px;
  margin-bottom: 50px;
}
#ser-main .goal-based-desheading {
  font-family: 'muliregular';
  font-size: 20px;
  color: #089e40;
  line-height: 26px;
  text-align: left;
}
#ser-main .goal-based-despara {
  font-family: 'mulilight';
  font-size: 16px;
  color: #5d5d5d;
  padding-top: 30px;
  line-height: 28px;
  text-align: justified;
}
#ser-main .plan-btn {
  background: #089e3f;
  font-family: 'muliregular';
  font-size: 14px;
  color: #ffffff;
  padding: 13px 30px;
  transition: all 0.5s ease;
  margin-bottom: 20px;
  text-shadow: none;
  border-radius: 50px;
  border: 0;
  margin-top: 40px;
}
#ser-main .plan-btn:hover {
  background: #f97b17;
  color: #ffffff;
}
#ser-main .media {
  padding-bottom: 10px;
  border-bottom: 1px solid #d9d9d9;
}
#ser-main .media .media-left {
  padding-right: 20px;
}
#ser-main .media .media-body .media-heading {
  color: #000000;
  font-family: 'mulibold';
  font-size: 18px;
  line-height: 22px;
  text-transform: uppercase;
}
#ser-main .media .media-body p {
  color: #606060;
  font-family: 'muliregular';
  font-size: 14px;
  line-height: 18px;
  text-align: justify;
  padding-top: 5px;
}
#ser-main .service-para {
  font-family: 'muliregular';
  font-size: 13px;
  color: #000000;
  padding: 5px 20px;
  line-height: 18px;
}

/* Introduction Section*/
#welcome {
  background: url(/images/about-bg.png) center no-repeat;
  background-size: cover;
  min-height: 540px;
  padding-top: 60px;
  padding-bottom: 30px;
}
@media (min-width: 0) and (max-width: 768px) {
  #welcome {
    background: url(/images/about-bg.png) right no-repeat;
    background-size: cover;
  }
}
#welcome .welcome-heading {
  font-family: 'muliregular';
  font-size: 35px;
  color: #ffffff;
  line-height: 35px;
  margin-bottom: 20px;
}
#welcome .welcome-heading:after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 0%;
  width: 70px;
  height: 1px;
  background: #f7941d;
}
#welcome .welcome-subheading {
  font-family: 'muliregular';
  font-size: 20px;
  color: #ffffff;
  line-height: 24px;
  margin-top: 20px;
}
#welcome .welcome-heading-para {
  font-family: 'mulilight';
  font-size: 14px;
  color: #ffffff;
  line-height: 27px;
  padding: 10px 10px;
}
#welcome ul {
  margin: 0 auto;
}
#welcome ul li {
  list-style: url(/images/bullet.png);
  font-family: 'mulilight';
  font-size: 18px;
  color: #ffffff;
  text-align: left;
  padding: 2px;
}
#welcome .plan-btn {
  background: #f2f2f2;
  font-family: 'muliregular';
  font-size: 14px;
  color: #000000;
  padding: 10px 0px;
  transition: all 0.5s ease;
  text-shadow: none;
  border-radius: 40px;
}
#welcome .plan-btn:hover {
  background: #1b1b1b;
  color: #ffffff;
}

/* Market Section*/
#market {
  background: #009b3c;
  min-height: 600px;
  padding-top: 30px;
  padding-bottom: 30px;
}
#market .market-heading {
  font-family: 'mulibold';
  font-size: 25px;
  color: #ffffff;
  line-height: 35px;
}
#market .market-heading-para {
  font-family: 'muliregular';
  font-size: 14px;
  color: #ffffff;
  line-height: 20px;
  padding: 10px 10px;
  padding-top: 0px;
}
#market .market-tabs {
  margin-top: 20px;
  min-height: 200px;
  /*------------tabs icons----------*/
}
#market .market-tabs .nav {
  background: none;
  border-radius: 7px 6px 0 0;
}
#market .market-tabs .nav-pills > li {
  margin-left: 0px;
  margin-right: 1px;
  padding-left: 2px;
}
@media (min-width: 0) and (max-width: 425px) {
  #market .market-tabs .nav-pills > li {
    margin-bottom: 5px;
  }
}
#market .market-tabs .nav-pills > li > a {
  background: #f5f5f5;
  color: #000000;
  border-radius: 0px;
  font-size: 14px;
  font-family: 'muliregular';
  padding: 8px 27px;
  border-radius: 3px;
}
@media (min-width: 769px) and (max-width: 1024px) {
  #market .market-tabs .nav-pills > li > a {
    padding: 10px 10px;
  }
}
@media (min-width: 426px) and (max-width: 768px) {
  #market .market-tabs .nav-pills > li > a {
    padding: 10px 3px;
  }
}
#market .market-tabs .nav-pills > li > a:hover {
  background: #f97918 !important;
  color: #ffffff;
}
#market .market-tabs .nav-pills > li.active > a, #market .market-tabs .nav-pills > li.active > a:focus, #market .market-tabs .nav-pills > li.active > a:hover {
  background: #f97918 !important;
  color: #ffffff;
}
#market .market-tabs .nav-pills > li > a > .tab1-img {
  background: url(/images/market-tab1.png) center no-repeat;
  width: 24px;
  height: 23px;
  padding: 12px;
  margin-top: -5px;
  margin-right: 10px;
}
#market .market-tabs .nav-pills > li > a:hover > .tab1-img, #market .market-tabs .nav-pills > li.active > a > .tab1-img {
  background: url(/images/market-tab1_hvr.png) center no-repeat;
}
#market .market-tabs .nav-pills > li > a > .tab2-img {
  background: url(/images/market-tab2.png) center no-repeat;
  width: 24px;
  height: 23px;
  padding: 12px;
  margin-top: -5px;
  margin-right: 10px;
}
#market .market-tabs .nav-pills > li > a:hover > .tab2-img, #market .market-tabs .nav-pills > li.active > a > .tab2-img {
  background: url(/images/market-tab2_hvr.png) center no-repeat;
}
#market .market-tabs .nav-pills > li > a > .tab3-img {
  background: url(/images/market-tab3.png) center no-repeat;
  width: 24px;
  height: 23px;
  padding: 12px;
  margin-top: -5px;
  margin-right: 10px;
}
#market .market-tabs .nav-pills > li > a:hover > .tab3-img, #market .market-tabs .nav-pills > li.active > a > .tab3-img {
  background: url(/images/market-tab3_hvr.png) center no-repeat;
}
#market .market-tabs .nav-pills > li > a > .tab4-img {
  background: url(/images/market-tab4.png) center no-repeat;
  width: 24px;
  height: 23px;
  padding: 12px;
  margin-top: -5px;
  margin-right: 10px;
}
#market .market-tabs .nav-pills > li > a:hover > .tab4-img, #market .market-tabs .nav-pills > li.active > a > .tab4-img {
  background: url(/images/market-tab4_hvr.png) center no-repeat;
}
#market .market-tabs .nav-pills > li > a > .tab5-img {
  background: url(/images/market-tab5.png) center no-repeat;
  width: 24px;
  height: 23px;
  padding: 12px;
  margin-top: -5px;
  margin-right: 10px;
}
#market .market-tabs .nav-pills > li > a:hover > .tab5-img, #market .market-tabs .nav-pills > li.active > a > .tab5-img {
  background: url(/images/market-tab5_hvr.png) center no-repeat;
}
#market .market-tabs .tools-content {
  margin-top: 0px;
  height: 300px;
  display: block;
  overflow: auto;
  padding: 10px;
  background: white;
  border: 2px solid #646464;
  margin-top: 5px;
}
#market .heading-tools {
  background: #f5bd19;
  padding: 5px 15px;
  font-family: 'muliregular';
  font-size: 12px;
  color: #f7941d;
}
#market .quick_access {
  background: #ffffff;
  min-height: 320px;
  margin-top: 20px;
  border-radius: 6px 6px 0 0;
}
#market .quick_access .quick-heading {
  font-family: 'muliregular';
  font-size: 18px;
  line-height: 30px;
  color: #f5bd19;
  padding: 5px 15px;
  background: #005598;
  margin-bottom: 20px;
}
#market .quick_access a .quick-list {
  font-family: 'robotomedium';
  font-size: 15px;
  line-height: 20px;
  color: #515151;
  padding: 5px;
  padding-left: 50px;
}
@media (min-width: 0px) and (max-width: 425px) {
  #market .quick_access a .quick-list {
    padding-left: 20px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  #market .quick_access a .quick-list {
    padding-left: 20px;
  }
}
#market .quick_access a img.quick-icon1 {
  background: url(/images/quick-link1.png) center;
  padding: 14px;
  width: 46px;
  height: 37px;
  border: 0;
  margin-right: 15px;
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
#market .quick_access a img.quick-icon2 {
  background: url(/images/quick-link2.png) center;
  padding: 14px;
  width: 46px;
  height: 37px;
  border: 0;
  margin-right: 15px;
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
#market .quick_access a img.quick-icon3 {
  background: url(/images/quick-link3.png) center;
  padding: 14px;
  width: 46px;
  height: 37px;
  border: 0;
  margin-right: 15px;
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
#market .quick_access a img.quick-icon4 {
  background: url(/images/quick-link4.png) center;
  padding: 14px;
  width: 46px;
  height: 37px;
  border: 0;
  margin-right: 15px;
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
#market .quick_access a img.quick-icon5 {
  background: url(/images/quick-link5.png) center;
  padding: 14px;
  width: 46px;
  height: 37px;
  border: 0;
  margin-right: 15px;
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
#market .quick_access a:hover {
  color: #515151;
}
#market .quick_access a:hover img.quick-icon1 {
  background: url(/images/quick-link1_hvr.png) center;
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
#market .quick_access a:hover img.quick-icon2 {
  background: url(/images/quick-link2_hvr.png) center;
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
#market .quick_access a:hover img.quick-icon3 {
  background: url(/images/quick-link3_hvr.png) center;
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
#market .quick_access a:hover img.quick-icon4 {
  background: url(/images/quick-link4_hvr.png) center;
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
#market .quick_access a:hover img.quick-icon5 {
  background: url(/images/quick-link5_hvr.png) center;
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
#market .quick_access a.start-sip {
  background: #17286e;
  color: #ffffff;
  padding: 12px 15px;
  font-family: 'mulisemibold';
  font-size: 14px;
}
#market .quick_access a.start-sip span {
  margin-left: 40px;
}
#market .quick_access a.start-sip span:after {
  content: '';
  position: absolute;
  top: -3px;
  left: -20px;
  width: 1px;
  height: 20px;
  background: #ffffff;
}
#market .quick_access a.start-sip:hover.start-sip {
  background: #498ecc;
  color: #ffffff;
}

/*--- Footer ----*/
#banner a .ser-link {
  background: #ffffff;
  min-height: 163px;
  padding: 10px;
  padding-top: 0px;
  padding-bottom: 0px;
  margin-top: 20px;
  cursor: pointer;
  border-radius: 4px;
  border: 2px solid #fff;
  transition: all .3s ease-in;
}
@media (min-width: 376px) and (max-width: 425px) {
  #banner a .ser-link {
    padding: 10px;
    min-height: 120px;
  }
}
@media (min-width: 0) and (max-width: 375px) {
  #banner a .ser-link {
    padding: 3px;
    min-height: 120px;
  }
}
#banner a .ser-link img {
  margin-top: 20px;
}
@media (min-width: 0) and (max-width: 375px) {
  #banner a .ser-link img {
    margin-top: 10px;
  }
}
#banner a .ser-link .service-head {
  font-family: 'mulisemibold';
  font-size: 16px;
  line-height: 20px;
  color: #000000;
  margin-top: 15px;
  text-transform: uppercase;
}
#banner a .ser-link:hover {
  border: 2px solid #f7941d;
  transition: all .3s ease-in;
}

/* 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 #076c7e;
  color: #076c7e;
  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: #076c7e;
  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;
}

@media (min-width: 0) and (max-width: 991px) {
  .responsive-pane-bg {
    background-color: #076c7e;
    z-index: 999;
  }
  .responsive-pane-bg img {
    margin: 0px auto;
    margin-top: 15px;
  }
}
/* OOPS Classes */
#page-heading {
  top: 0;
  left: 0;
  min-height: 200px;
  width: 100%;
  margin-top: 120px;
  /*&:after{
  	width: 100%;
  	min-height: 300px;
  	background:transparentize($light-black, .52);
  	position:absolute;
  	top:0;
  	left:0;
  	content:'';
     @include break(426px, 768px)
     {
  	min-height:250px;
     }
  }*/
}
@media screen and (min-width: 992px) and (max-width: 1199px) {
  #page-heading {
    margin-top: 125px;
  }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  #page-heading {
    margin-top: 120px;
  }
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  #page-heading {
    margin-top: 85px;
  }
  #page-heading h2 {
    font-size: 19px;
  }
}
#page-heading .va-table {
  min-height: 200px;
}
#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: #5db721;
  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: #008e89;
  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;
  border-radius: 10px;
}
.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;
  border-radius: 10px;
}
.tile-block .bg-img:after {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 9999;
  border-radius: 10px;
}
.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);
  border-radius: 10px;
}
.tile-block:hover .bg-img:after {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.48);
  border-radius: 10px;
}

#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 #076c7e;
  color: #ffffff;
  background: #076c7e;
}
#nav_lvl_2 li > a {
  color: #000000;
  border: none;
}
#nav_lvl_2 li > a:hover, #nav_lvl_2 li > a:focus {
  color: #076c7e;
  background: none;
  border-bottom: solid 2px #076c7e;
}

/* OOPS Classes Ends*/
#aboutus #page-heading {
  background: url(/images/bg.jpg) no-repeat center;
  background-size: cover;
}
#aboutus .tile-block {
  height: 200px;
}

#feedback_page #page-heading {
  background: url(/images/bg.jpg) no-repeat center;
  background-size: cover;
}
#feedback_page .tile-block {
  height: 200px;
}

/* FAQs*/
#faqs #page-heading {
  background: url(/images/bg.jpg) no-repeat center;
  background-size: cover;
}
#faqs #page-content {
  min-height: 400px;
}
#faqs #page-content .panel-group .panel {
  margin-bottom: 0;
  border-radius: 5px;
}
#faqs #page-content .panel-default .panel-heading {
  color: #000000;
  background-color: #e2e2e2;
  border-color: #e2e2e2;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
#faqs #page-content .panel-default .panel-heading:hover, #faqs #page-content .panel-default .panel-heading:focus {
  color: #ffffff;
  background-color: #247000;
}
#faqs #page-content .panel-default .panel-heading a {
  color: #000000;
}
#faqs #page-content .panel-default .panel-heading a:hover {
  color: #ffffff;
}

#e_kyc #page-heading {
  background: url(/images/bg.png) no-repeat center;
  background-size: cover;
  min-height: 350px;
}
#e_kyc #page-heading .va-table {
  min-height: 350px;
}
#e_kyc #page-heading:after {
  height: 350px;
}
#e_kyc #page-heading .plan-btn {
  background: #076c7e;
  font-family: "MerriweatherSans-Regular";
  font-size: 18px;
  color: #ffffff;
  padding: 8px 5px;
  margin-top: 20px;
  border-radius: 5px;
  border: 0;
}
#e_kyc #page-heading .plan-btn:hover {
  background: #1790a5;
  color: #076c7e;
}
#e_kyc #page-heading .plan-btn img {
  padding-right: 10px;
}
#e_kyc .nav1 {
  background: #ffffff;
  border-radius: 5px;
}
#e_kyc .nav1 li .active a {
  background: #076c7e !important;
}
#e_kyc .nav1 li a {
  border-radius: 4px;
  border: 1px solid #dedede;
}
#e_kyc #page-content .nav-pills > li.active > a, #e_kyc #page-content .nav-pills > li.active > a:focus, #e_kyc #page-content .nav-pills > li.active > a:hover {
  color: #fff;
  background-color: #076c7e;
}
#e_kyc #page-content .nav > li > a:focus, #e_kyc #page-content .nav > li > a:hover {
  text-decoration: none;
  color: #fff;
  background-color: #076c7e;
}
#e_kyc #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;
}
#e_kyc #page-content .feed-txt img {
  margin-top: -50px;
  z-index: 999;
}
#e_kyc #page-content2 {
  min-height: 400px;
  background: #f9f9f9;
}
#e_kyc #page-content2 .va-table {
  min-height: 400px;
}
#e_kyc #page-content2 .services-head {
  font-family: "open_sanssemibold";
  font-size: 25px;
  color: #076c7e;
  line-height: 25px;
  text-transform: uppercase;
}
#e_kyc #page-content2 .services-head p {
  font-family: "open_sansregular";
  font-size: 18px;
  line-height: 28px;
  color: #000000;
  text-transform: none;
  padding-bottom: 40px;
}
#e_kyc #page-content2 a .ser-icon {
  padding-top: 20px;
}
#e_kyc #page-content2 a .ser-icon img {
  padding-bottom: 30px;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#e_kyc #page-content2 a .ser-icon .iconhead {
  font-family: "open_sansregular";
  font-size: 17px;
  line-height: 22px;
  color: #040404;
}
#e_kyc #page-content2 a:hover .ser-icon img {
  padding-bottom: 30px;
  -moz-transform: scale(1);
  -webkit-transform: scale(1);
  transform: scale(1);
}
#e_kyc #page-content2 a:hover .ser-icon .iconhead {
  color: #ff6618;
}

#quick-basket-main #page-heading {
  background: url(/images/bg.jpg) no-repeat center;
  background-size: cover;
}
#quick-basket-main #page-content .services-head {
  font-family: 'open_sanssemibold';
  font-size: 26px;
  line-height: 30px;
}
#quick-basket-main #page-content a .calc-icon {
  margin-top: 20px;
  margin-bottom: 20px;
}
#quick-basket-main #page-content a .calc-icon .calc-head {
  font-family: 'open_sansregular';
  font-size: 18px;
  color: #000000;
  padding-top: 10px;
}
#quick-basket-main #page-content a:hover .calc-head {
  color: #1790a5;
}

#knowledge-center #page-heading {
  background: url(/images/bg.jpg) no-repeat center;
  background-size: cover;
}
#knowledge-center #page-content {
  min-height: 350px;
  /*.video
  {
  	background:#dedede;
  	border:1px solid #dcdcdc;
  	@include radius(5px);
  	min-height:300px;
  	padding-top:10px;
  	padding-bottom:10px;
  	margin-bottom:10px;
  	@include break(769px, 1024px){
  	  min-height: 320px;
  	}
  	p{
  		font-family:'open_sansbold';
  		font-size:16px;
  		color:$color-prime;
  	}
  }*/
}

#Online-investment {
  /*#page-heading{
  	background:url(/images/bg.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/InvestOnline_banner.png) no-repeat top center;
  background-size: cover;
  min-height: 300px;
}
@media (min-width: 426px) and (max-width: 768px) {
  #Online-investment #page-heading {
    min-height: 300px;
    margin-top: 100px;
  }
}
#Online-investment #page-heading .va-table {
  min-height: 300px;
}
@media (min-width: 426px) and (max-width: 768px) {
  #Online-investment #page-heading .va-table {
    min-height: 200px;
    margin-top: 60px;
  }
}
#Online-investment #page-heading:after {
  height: 300px;
}
@media (min-width: 426px) and (max-width: 768px) {
  #Online-investment #page-heading:after {
    min-height: 200px;
    margin-top: 60px;
  }
}
#Online-investment #page-heading .feed-name {
  font-family: "MerriweatherSans-Regular";
  font-size: 18px;
  color: #ffd324;
  padding: 5px 0px;
}
#Online-investment .nav1 {
  background: #ffffff;
  border-radius: 5px;
}
#Online-investment .nav1 li .active a {
  background: #076c7e !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: #076c7e;
}
#Online-investment #page-content .nav > li > a:focus, #Online-investment #page-content .nav > li > a:hover {
  text-decoration: none;
  color: #fff;
  background-color: #076c7e;
}
#Online-investment #page-content .plan-btn {
  background: #000000;
  font-family: 'MerriweatherSans-Regular';
  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: #1790a5;
  color: #076c7e;
  border: 2px solid #1790a5;
}
#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: "MerriweatherSans-Regular";
  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: "MerriweatherSans-Regular";
  font-size: 25px;
  color: #4ebe71;
  line-height: 25px;
  text-transform: uppercase;
}
#Online-investment #page-content2 .services-head p {
  font-family: 'Poppins-Light';
  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: 'Poppins-Medium';
  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: #ff6618;
}

#investment #page-heading {
  background: url(/images/bg.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: #076c7e !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: #076c7e;
}
#mutual_funds #page-content .nav > li > a:focus, #mutual_funds #page-content .nav > li > a:hover {
  text-decoration: none;
  color: #fff;
  background-color: #076c7e;
}

#mutual_funds2 #page-heading {
  width: 100%;
  min-height: 300px;
  background: url(/images/mf-banner.png) 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: 300px;
}
@media (min-width: 0) and (max-width: 768px) {
  #mutual_funds2 #page-heading .va-table {
    min-height: 320px;
  }
}
#mutual_funds2 #page-heading:after {
  width: 100%;
  min-height: 300px;
  background: rgba(0, 0, 0, 0.48);
  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 #076c7e;
  border-radius: 3px;
}
#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: #ffffff;
  background-color: #1790a5 !important;
}
#mutual_funds2 #page-content .nav > li > a:focus, #mutual_funds2 #page-content .nav > li > a:hover {
  text-decoration: none;
  color: #ffffff;
  background-color: #1790a5 !important;
}

#fixed_deposits #page-heading {
  background: url(/images/bg.jpg) no-repeat center;
  background-size: cover;
}
#fixed_deposits #page-content .pane-left {
  min-height: 601px;
}
#fixed_deposits #page-content .investnow-btn {
  background: #1790a5;
  border: 1px solid #1790a5;
}
#fixed_deposits #page-content .investnow-btn:hover {
  background: #076c7e;
  border: 1px solid #076c7e;
}

#insurance #page-heading {
  background: url(/images/bg.jpg) no-repeat center;
  background-size: cover;
}
#insurance .tile-block {
  height: 300px;
}

#life_Insurance #page-heading {
  background: url(/images/bg.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/bg.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;
}

#health_insurance #page-heading {
  background: url(/images/bg.jpg) no-repeat center;
  background-size: cover;
}
#health_insurance .form-area {
  overflow: hidden;
}
#health_insurance .form-area p {
  text-align: left !important;
}
#health_insurance #page-content .pane-left {
  min-height: 555px;
}

#downloads #page-heading {
  background: url(/images/bg.jpg) no-repeat center;
  background-size: cover;
}
#downloads #page-content {
  min-height: calc( 100vh - 335px );
  margin-top: 25px;
  margin-bottom: 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 .download-btn {
  background: #0f5998;
  border-radius: 3px;
  padding: 10px 15px;
  font-family: 'robotoregular';
  color: #ffffff;
  border: 0;
  margin-bottom: 30px;
}
#downloads #page-content #online_forms table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  border: 1px solid #ebebeb;
  font-family: 'robotoregular';
  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 #0573a0;
}
@media (min-width: 0) and (max-width: 768px) {
  #downloads #page-content #online_forms .table > thead > tr > th {
    border-right: 0px solid #0573a0;
  }
}
#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: #357bd8;
  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: #3d89ef;
}
#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: #056288;
    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: #1790a5;
  color: #000000;
  /* 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: #000000;
  font-size: 14px;
}
#downloads #page-content #online_forms .oi-download-btn-kyc a:hover {
  color: #076c7e;
}
#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: #076c7e;
  margin-right: 10px;
  vertical-align: middle;
  border-radius: 25px;
}
#downloads #page-content #online_forms .oi-download-btn {
  background: #1790a5;
  color: #000000;
  /* 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-download-btn:hover {
  background: #076c7e;
  color: #ffffff;
}
#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: #f6f6f6;
  min-height: 331px;
  color: #56595c;
  /*:after {
  			content: '';
  			position: absolute;
  			background: #999999;
  			width: 2px;
  			height: 25px;
  			bottom: -14px;
  			left: 50%;
  		}*/
}
@media (min-width: 425px) and (max-width: 769px) {
  #downloads #page-content .section1 {
    min-height: 240px;
  }
}
#downloads #page-content .section1 .section-heading {
  background: #da4b4c;
  color: #ffffff;
  padding: 5px 10px;
  margin-bottom: 20px;
}
#downloads #page-content .section1 .form-head {
  font-family: 'robotoregular';
  font-size: 16px;
  color: #da4b4c;
  margin-top: 10px;
}
#downloads #page-content .section1 p {
  padding: 10px;
  min-height: 115px;
}
#downloads #page-content .section1 span:after {
  content: '';
  position: absolute;
  display: none;
}
#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;
}
#taxation #page-content {
  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;
}
#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;
}
#taxation #page-content .side-contact .butn {
  padding: 8px;
  background: #ff7000;
  color: #fff;
  margin-top: 10px;
  margin-bottom: 10px;
  border-radius: 0px;
  outline: none;
}

#Our-Recommendation #page-heading {
  background: url(/images/about-us.jpg) no-repeat center;
  background-size: cover;
}

#my_sip_world #page-heading {
  background: url(/images/bg.jpg) no-repeat center;
  background-size: cover;
  /*@include break(426px, 768px)
  {
    min-height:350px;
    margin-top:10px;
  }
  .va-table{
  	min-height: 300px;
  @include break(426px, 768px)
  {
    min-height:350px;
    margin-top:10px;
  }
  }
  &:after{
  	height: 300px;
  @include break(426px, 768px)
  {
    min-height:350px;
    margin-top:10px;
  }
  }
  */
}
#my_sip_world #page-heading .plan-btn {
  background: #ffffff;
  border-radius: 30px;
  font-family: 'robotoregular';
  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: #076c7e !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: #076c7e;
}
#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: #076c7e;
}
#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: 'robotoregular';
  font-size: 25px;
  color: #0469be;
  line-height: 25px;
  padding-bottom: 15px;
}
#my_sip_world #page-content2 .services-head p {
  font-family: 'robotolight';
  font-size: 18px;
  line-height: 28px;
  color: #000000;
  text-transform: none;
  padding-bottom: 40px;
}
#my_sip_world #page-content2 #inflation_value {
  display: none;
}
#my_sip_world #page-content2 .plan-btn {
  background: #f74945;
  font-family: 'robotomedium';
  font-size: 14px;
  color: #ffffff;
  border: 0px solid #ffffff;
  padding: 10px 15px;
  border-radius: 4px;
  transition: all 0.5s ease;
  margin-bottom: 20px;
  text-shadow: none;
  outline: none;
}
#my_sip_world #page-content2 .plan-btn:hover {
  background: #28166f;
}
#my_sip_world #page-content2 .lastpara {
  font-family: 'robotoregular';
  font-size: 14px;
  color: #383838;
  line-height: 20px;
  border-top: 1px solid #c4c4c4;
  padding-top: 20px;
  margin-top: 10px;
}
#my_sip_world #page-content2 #sip-calc {
  background: #ffffff;
  border: 1px solid #e8e8e8;
  min-height: 365px;
  margin-bottom: 30px;
  padding: 10px;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #3a3b3c;
  font-size: 16px;
  font-family: 'robotoregular';
}
#my_sip_world #page-content2 #sip-calc input[type=number] {
  width: 100px;
  background: none;
  border: none;
  outline: none;
}
#my_sip_world #page-content2 #sip-calc label {
  position: absolute;
  top: 7px;
  left: 40px;
  font-weight: normal;
}
#my_sip_world #page-content2 #sip-calc rzslider {
  margin: 0 auto;
  height: 18px;
  padding-top: 5px;
}
#my_sip_world #page-content2 #sip-calc rzslider .rz-bar {
  height: 8px;
}
#my_sip_world #page-content2 #sip-calc rzslider .rz-bubble {
  display: none;
}
#my_sip_world #page-content2 #sip-calc rzslider .rz-pointer {
  width: 0px;
  height: 0px;
  top: 0px;
  border-radius: 0px;
}
#my_sip_world #page-content2 #sip-calc rzslider .rz-pointer:after {
  display: none;
}
#my_sip_world #page-content2 #sip-calc rzslider.blue-bar .rz-bar {
  background-color: #f1f1f1;
}
#my_sip_world #page-content2 #sip-calc rzslider.blue-bar .rz-selection, #my_sip_world #page-content2 #sip-calc rzslider.blue-bar .rz-pointer {
  background-color: #438aca;
}
#my_sip_world #page-content2 #sip-calc rzslider.green-bar .rz-bar {
  background-color: #f1f1f1;
}
#my_sip_world #page-content2 #sip-calc rzslider.green-bar .rz-selection, #my_sip_world #page-content2 #sip-calc rzslider.green-bar .rz-pointer {
  background-color: #1daf9a;
}
#my_sip_world #page-content2 #sip-calc rzslider.red-bar .rz-bar {
  background-color: #f1f1f1;
}
#my_sip_world #page-content2 #sip-calc rzslider.red-bar .rz-selection, #my_sip_world #page-content2 #sip-calc rzslider.red-bar .rz-pointer {
  background-color: #da534f;
}
#my_sip_world #page-content2 #sip-calc rzslider.yellow-bar .rz-bar {
  background-color: #f1f1f1;
}
#my_sip_world #page-content2 #sip-calc rzslider.yellow-bar .rz-selection, #my_sip_world #page-content2 #sip-calc rzslider.yellow-bar .rz-pointer {
  background-color: #f2ad50;
}
#my_sip_world #page-content2 #sip-calc input[type=number]::-webkit-inner-spin-button,
#my_sip_world #page-content2 #sip-calc input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
}
#my_sip_world #page-content2 #sip-calc .input-bg {
  background: #f1f1f1;
  padding: 6px 15px;
  border-radius: 5px;
  font-size: 14px;
  color: #3a3b3c;
}
#my_sip_world #page-content2 #sip-calc #inflationRate {
  color: #c5c5c5;
}
#my_sip_world #page-content2 #sip-calc select {
  background: #f1f1f1;
  padding: 5px;
  border-radius: 5px;
  font-size: 14px;
  color: #3a3b3c;
  border: 0px;
  outline: none;
}
#my_sip_world #page-content2 #sip-calc select:focus {
  outline: none;
}
#my_sip_world #page-content2 .graph-bg {
  background: url(/images/graph-bg.png) center no-repeat;
  background-size: cover;
  min-height: 300px;
}
#my_sip_world #page-content2 .center-resulttext {
  position: absolute;
  top: 11%;
  left: 30%;
  width: 185px;
  min-height: 185px;
  color: #ffffff;
  font-family: 'robotoregular';
  font-size: 16px;
  line-height: 21px;
  background: #0c3152;
  border-radius: 100px;
}
#my_sip_world #page-content2 .center-resulttext .va-table {
  display: table;
  width: 100%;
  min-height: 185px;
}
@media (min-width: 769px) and (max-width: 1024px) {
  #my_sip_world #page-content2 .center-resulttext {
    left: 26%;
  }
}
@media (min-width: 426px) and (max-width: 768px) {
  #my_sip_world #page-content2 .center-resulttext {
    left: 37%;
  }
}
@media (min-width: 376px) and (max-width: 425px) {
  #my_sip_world #page-content2 .center-resulttext {
    left: 25%;
  }
}
@media (min-width: 320px) and (max-width: 375px) {
  #my_sip_world #page-content2 .center-resulttext {
    left: 21%;
  }
}
@media (min-width: 0px) and (max-width: 320px) {
  #my_sip_world #page-content2 .center-resulttext {
    left: 15%;
  }
}
#my_sip_world #page-content2 .amount {
  color: #fff;
  background: #fab612;
  font-family: 'robotobold';
  font-size: 18px;
  padding: 10px;
  line-height: 21px;
}
#my_sip_world #page-content2 .amount:before {
  content: '';
  position: absolute;
  left: -16px;
  top: 0;
  border-top: 42px solid #fab612;
  border-left: 16px solid transparent;
}
#my_sip_world #page-content2 .amount:after {
  content: '';
  position: absolute;
  background: #fab612;
  width: 28px;
  min-height: 41px;
  right: -27px;
  top: 0;
}
#my_sip_world #page-content2 .result-text {
  font-family: 'robotomedium';
  font-size: 19px;
  color: #202020;
}
#my_sip_world #page-content2 .wealth-gaintext {
  position: absolute;
  top: 2%;
  right: -1%;
  width: 35%;
  min-height: 60px;
  color: #202020;
  font-size: 15px;
  line-height: 18px;
}
#my_sip_world #page-content2 .wealth-dot {
  width: 10px;
  height: 10px;
  border-radius: 10px;
  background: #008e89;
  position: absolute;
  top: 1px;
  left: 10px;
}
#my_sip_world #page-content2 .amount-investedtext {
  position: absolute;
  bottom: 2%;
  left: -1%;
  width: 35%;
  min-height: 60px;
  color: #202020;
  font-size: 15px;
  line-height: 18px;
}
#my_sip_world #page-content2 .amount-invested-dot {
  width: 10px;
  height: 10px;
  border-radius: 10px;
  background: #005db2;
  position: absolute;
  top: 1px;
  right: 0px;
}
#my_sip_world #page-content2 a.start-sip {
  background: #12773d;
  color: #ffffff;
  padding: 12px 60px;
  border-radius: 25px;
  font-family: 'robotobold';
  font-size: 15px;
  text-transform: uppercase;
  margin-bottom: 30px;
}
#my_sip_world #page-content2 a.start-sip:hover.start-sip {
  background: #0c5f9f;
  color: #ffffff;
}
#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.jpg) no-repeat right;
  background-size: contain;
  background-color: #fefefe;
  min-height: 286px;
  border: solid 1px #e6e6e6;
  border-radius: 3px;
  box-sizing: border-box;
  padding: 15px 0;
  margin-bottom: 10px;
}
@media (min-width: 0) and (max-width: 767px) {
  #porfolio_tracker .login {
    background-image: none;
    min-height: 415px;
    margin-bottom: 15px;
  }
}
@media (min-width: 0) and (max-width: 320px) {
  #porfolio_tracker .login {
    background-image: none;
    min-height: 480px;
    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 .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: 375px) {
  #register .register .bg-color-secondry {
    font-size: 15px;
    width: 110%;
  }
}
@media (min-width: 376px) and (max-width: 425px) {
  #register .register .bg-color-secondry {
    font-size: 16px;
    width: 100%;
  }
}
@media (min-width: 992px) {
  #register .register .bg-color-secondry:after {
    content: '';
    position: absolute;
    top: 0px;
    right: -22px;
    border-left: solid 23px #1790a5;
    border-top: solid 21px transparent;
    border-bottom: solid 19px transparent;
  }
}
@media (min-width: 0) and (max-width: 991px) {
  #register .register {
    background-image: none;
    min-height: 415px;
    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: 70px;
  line-height: 70px;
}
#Contact_Us .contact-txt {
  min-height: 100px;
  margin-bottom: 22px;
}

#disclaimer #page-heading {
  background: url(/images/about-us.jpg) no-repeat center;
  background-size: cover;
}
#disclaimer #page-content {
  margin-top: 250px;
}

#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: #076c7e;
  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: #fff;
  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 );
  }*/
}
#Loans #page-heading {
  background: url(/images/bg.jpg) no-repeat center;
  background-size: cover;
}

#estate_planning #page-heading {
  background: url(/images/bg.jpg) no-repeat center;
  background-size: cover;
}

#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 */
#history-back {
  display: none;
  position: fixed;
  bottom: 100px;
  left: 40px;
}

@media (min-width: 769px) and (max-width: 1024px) {
  #quick_basket .navbar-default .navbar-nav > li > a {
    padding: 8px 15px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  #tax_basket .navbar-default .navbar-nav > li > a {
    padding: 8px 15px;
  }
}
@media (min-width: 0px) and (max-width: 375px) {
  #tax_basket #basket-type iframe {
    height: 800px;
  }
}
@media (min-width: 376px) and (max-width: 425px) {
  #tax_basket #basket-type iframe {
    height: 700px;
  }
}
@media (min-width: 426px) and (max-width: 768px) {
  #tax_basket #basket-type iframe {
    height: 450px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  #tax_basket #basket-type iframe {
    height: 400px;
  }
}

/*--------Risk Basket------*/
#basket-type1 {
  min-height: 300px;
  margin-top: 160px;
  /* Risk Profile Radio Buttons Starts*/
  /* Risk Profile Radio Buttons Ends*/
  /*  Low and moderately low table starts */
}
#basket-type1 a {
  text-decoration: none;
}
#basket-type1 a:hover {
  color: #000000;
  outline: none;
}
#basket-type1 a:focus {
  color: #000000;
  outline: none;
}
#basket-type1 .va-table {
  min-height: 400px;
  font-family: "Poppins-Regular";
}
#basket-type1 .margin-bottom-30 {
  margin-bottom: 60px;
}
#basket-type1 .margin-top-80 {
  margin-top: 140px;
}
#basket-type1 .line-height-35 {
  line-height: 35px;
}
#basket-type1 .font-fam {
  font-family: "Poppins-Regular";
}
#basket-type1 .font-fam2 {
  font-family: "open_sanssemibold";
  font-weight: 600;
}
#basket-type1 .btn-custom {
  padding: 15px 30px;
  border-radius: 25px;
  background: #076c7e;
  border: 0px;
}
@media (min-width: 0) and (max-width: 425px) {
  #basket-type1 .btn-custom {
    padding: 15px 15px;
  }
}
#basket-type1 .btn-custom:hover {
  outline: none;
  background: #1790a5;
  box-shadow: none;
}
#basket-type1 .btn-custom:focus {
  outline: none;
  background: #1790a5;
  box-shadow: none;
}
#basket-type1 .btn-custom-theme {
  padding: 7px 60px;
  margin-right: 10px;
  border-radius: 25px;
  background: #1790a5;
  border: 0px;
}
#basket-type1 .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-type1 .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-type1 .elss_info-bg {
    background: none;
  }
}
#basket-type1 .btn-custom-padd {
  padding: 15px 60px;
}
#basket-type1 .carousel-inner .item {
  min-height: 250px;
}
#basket-type1 .carousel-control.left {
  background-image: none;
}
#basket-type1 .carousel-control.right {
  background-image: none;
}
#basket-type1 .table > tbody > tr > td, #basket-type1 .table > tbody > tr > th, #basket-type1 .table > tfoot > tr > td, #basket-type1 .table > tfoot > tr > th, #basket-type1 .table > thead > tr > td, #basket-type1 .table > thead > tr > th {
  padding: 5px;
}
#basket-type1 .risk {
  /* hide input */
  /* style label */
  /* toggle hover */
  /* toggle on */
  /* radio focus */
}
#basket-type1 .risk label {
  border-radius: 3px;
  border: 1px solid #D1D3D4;
  padding: 0px 10px 0 10px;
  text-align: center;
  font-weight: 200 !important;
  font-family: "open_sansregular";
}
#basket-type1 .risk input.radio:empty {
  margin-left: -999px;
  display: none;
}
#basket-type1 .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-type1 .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-type1 .risk input.radio:hover:not(:checked) ~ label:before {
  content: '\2714';
  text-indent: 1px;
  color: #ffffff;
  background-color: #06662c;
}
#basket-type1 .risk input.radio:hover:not(:checked) ~ label {
  color: #000;
  border: 1px solid #5db721;
}
#basket-type1 .risk input.radio:checked ~ label:before {
  content: '\2714';
  text-indent: 1px;
  color: #ffffff;
  background-color: #06662c;
}
#basket-type1 .risk input.radio:checked ~ label {
  border: 1px solid #5db721;
}
#basket-type1 .risk input.radio:focus ~ label:before {
  box-shadow: 0 0 0 0px #999;
}
#basket-type1 .low-content {
  min-height: 100px;
  background: #f9f9f9;
  color: #000000;
  border: 1px solid #dddddd;
  border-radius: 10px;
}
#basket-type1 .low-content .va-table {
  min-height: 100px;
  font-family: "open_sansregular";
  font-size: 18px;
}
#basket-type1 .baskbgstrip1 {
  background: #076c7e;
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 8px;
}
#basket-type1 .baskbgstrip1 input {
  background: #ffffff;
  border: 0px;
  border-radius: 3px;
  width: 150px;
  text-align: center;
  font-size: 18px;
  color: #000000;
  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-type1 .baskbgstrip1 input:hover, #basket-type1 .baskbgstrip1 input:focus {
  outline: none;
}
#basket-type1 .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-type1 .baskbgstrip2 {
  background: none;
  color: #076c7e;
  padding: 12px 20px;
  border-radius: 8px;
}
#basket-type1 .baskbgstrip2 input {
  background: #ffffff;
  border: 0px;
  border-radius: 3px;
  width: 150px;
  text-align: center;
  font-size: 22px;
  color: #008e89;
  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-type1 .baskbgstrip2 input:hover, #basket-type1 .baskbgstrip2 input:focus {
  outline: none;
}
#basket-type1 .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-type1 .border-table {
  border: 1px solid #e2e2e2;
  border-radius: 8px;
}
#basket-type1 .table {
  margin-bottom: 0px;
}
#basket-type1 .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-type1 .disclaimer {
    border-right: 0px solid #959595;
    border-bottom: 1px solid #959595;
  }
}
@media (min-width: 426px) and (max-width: 768px) {
  #basket-type1 .disclaimer {
    line-height: 45px;
  }
}
#basket-type1 .disclaimer img {
  margin-top: -12px;
}
#basket-type1 .disclaimer-para {
  font-size: 11px;
  font-color: #666666;
  line-height: 20px;
}
#basket-type1 a {
  cursor: pointer;
}
#basket-type1 a .icon {
  width: 141px;
  height: 141px;
  border-radius: 128px;
  position: relative;
  margin: 0 auto;
}
#basket-type1 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-type1 a .icon img {
  position: relative;
  z-index: 100;
}
#basket-type1 a .icon1 {
  width: 162px;
  height: 136px;
  position: relative;
  margin: 0 auto;
}
#basket-type1 a .icon-basket1 {
  background: url(/images/invest-icon1.png) center no-repeat;
}
#basket-type1 a .icon-basket-inner1 {
  background: url(/images/invest-icon1_hvr.png) center no-repeat;
}
#basket-type1 a .icon-basket2 {
  background: url(/images/invest-icon2.png) center no-repeat;
}
#basket-type1 a .icon-basket-inner2 {
  background: url(/images/invest-icon2_hvr.png) center no-repeat;
}
#basket-type1 a .icon-basket3 {
  background: url(/images/invest-icon3.png) center no-repeat;
}
#basket-type1 a .icon-basket-inner3 {
  background: url(/images/invest-icon2_hvr.png) center no-repeat;
}
#basket-type1 a .icon2 {
  width: 130px;
  height: 109px;
  position: relative;
  margin: 0 auto;
}
#basket-type1 a .icon-type1 {
  background: url(/images/sip-icon.png) center no-repeat;
}
#basket-type1 a .icon-type-inner1 {
  background: url(/images/sip-icon_hvr.png) center no-repeat;
}
#basket-type1 a .icon-type2 {
  background: url(/images/lumpsum-icon.png) center no-repeat;
}
#basket-type1 a .icon-type-inner2 {
  background: url(/images/lumpsum-icon_hvr.png) center no-repeat;
}
#basket-type1 a .icon-type3 {
  background: url(/images/sip-icon.png) center no-repeat;
}
#basket-type1 a .icon-type-inner3 {
  background: url(/images/sip-icon_hvr.png) center no-repeat;
}
#basket-type1 a .icon-type4 {
  background: url(/images/lumpsum-icon.png) center no-repeat;
}
#basket-type1 a .icon-type-inner4 {
  background: url(/images/lumpsum-icon_hvr.png) center no-repeat;
}
#basket-type1 a .icon-type5 {
  background: url(/images/sip-icon.png) center no-repeat;
}
#basket-type1 a .icon-type-inner5 {
  background: url(/images/sip-icon_hvr.png) center no-repeat;
}
#basket-type1 a .icon-type6 {
  background: url(/images/lumpsum-icon.png) center no-repeat;
}
#basket-type1 a .icon-type-inner6 {
  background: url(/images/lumpsum-icon_hvr.png) center no-repeat;
}
#basket-type1 a label {
  display: none;
  cursor: pointer;
  position: relative;
  padding-left: 25px;
  font-size: 13px;
}
#basket-type1 a .rd {
  margin-top: 10px;
  margin-bottom: 10px;
}
#basket-type1 a input[type=radio] {
  display: none;
}
#basket-type1 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-type1 a .rd label:before {
  border-radius: 8px;
}
#basket-type1 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-type1 #nav_baskt_1 {
  display: inline-block;
  border-bottom: 0px solid #ddd;
}
#basket-type1 #nav_baskt_1 li {
  display: inline-block;
}
#basket-type1 #nav_baskt_1 li.active > a, #basket-type1 #nav_baskt_1 li.active > a:hover, #basket-type1 #nav_baskt_1 li.active > a:focus {
  border: none;
  border-radius: 0px;
  color: #f47301;
}
#basket-type1 #nav_baskt_1 li.active > a > .icon-b, #basket-type1 #nav_baskt_1 li.active > a:focus > .icon-b {
  width: 128px;
  height: 126px;
  border-radius: 128px;
  position: relative;
  margin: 0 auto;
}
#basket-type1 #nav_baskt_1 li.active > a > .icon-b:after, #basket-type1 #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-type1 #nav_baskt_1 li.active > a > .icon-b img, #basket-type1 #nav_baskt_1 li.active > a:focus > .icon-b img {
  position: relative;
  z-index: 100;
}
#basket-type1 #nav_baskt_1 li.active > a > .icon-basket-inner1, #basket-type1 #nav_baskt_1 li.active > a:hover > .icon-basket-inner1, #basket-type1 #nav_baskt_1 li.active > a:focus > .icon-basket-inner1 {
  background-color: #53b9d0;
  border: solid 4px #52c8b9;
}
#basket-type1 #nav_baskt_1 li.active > a > .icon-basket-inner1:after, #basket-type1 #nav_baskt_1 li.active > a:hover > .icon-basket-inner1:after, #basket-type1 #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-type1 #nav_baskt_1 li.active > a > .icon-basket-inner1 img, #basket-type1 #nav_baskt_1 li.active > a:hover > .icon-basket-inner1 img, #basket-type1 #nav_baskt_1 li.active > a:focus > .icon-basket-inner1 img {
  margin-top: 40px;
}
#basket-type1 #nav_baskt_1 li.active > a > .icon-basket-inner1 .tick, #basket-type1 #nav_baskt_1 li.active > a:hover > .icon-basket-inner1 .tick, #basket-type1 #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-type1 #nav_baskt_1 li.active > a > .icon-basket-inner1 li.active > a:hover > .icon-b:after, #basket-type1 #nav_baskt_1 li.active > a:hover > .icon-basket-inner1 li.active > a:hover > .icon-b:after, #basket-type1 #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-type1 #nav_baskt_1 li > a {
  color: #000000;
  border: none;
  padding: 30px;
}
#basket-type1 #nav_baskt_1 li > a:hover, #basket-type1 #nav_baskt_1 li > a:focus {
  color: #000000;
  background: none;
}
#basket-type1 #nav_baskt_1 .nav li > a {
  padding: 25px;
}
#basket-type1 #nav_baskt_1 li > a > .icon-b {
  width: 128px;
  height: 126px;
  border-radius: 128px;
  position: relative;
  margin: 0 auto;
}
#basket-type1 #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-type1 #nav_baskt_1 li > a > .icon-b img {
  position: relative;
  z-index: 100;
}
#basket-type1 #nav_baskt_1 li > a > .icon-basket-inner1 {
  background: #f6f6f6;
  border: solid 4px #e8e8e8;
}
#basket-type1 #nav_baskt_1 li > a > .icon-basket-inner1:after {
  background: #ffffff;
}
#basket-type1 #nav_baskt_1 li > a > .icon-basket-inner1 img {
  margin-top: 40px;
}
#basket-type1 #nav_baskt_1 li > a:hover > .icon-b:after {
  width: 96px;
  height: 96px;
  top: 12px;
  left: 12px;
}
#basket-type1 .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-type1 .border-table {
  border: 1px solid #e2e2e2;
  border-radius: 8px;
}
#basket-type1 .table {
  margin-bottom: 0px;
}

/*Tenure Basket*/
#basket-type {
  min-height: 300px;
  margin-top: 150px;
  /* Risk Profile Radio Buttons Starts*/
  /* Risk Profile Radio Buttons Ends*/
  /*  Low and moderately low table starts */
}
@media (min-width: 0) and (max-width: 426px) {
  #basket-type {
    margin-top: 80px;
  }
}
#basket-type a {
  text-decoration: none;
}
#basket-type a:hover {
  color: #000000;
  outline: none;
}
#basket-type a:focus {
  color: #000000;
  outline: none;
}
#basket-type .carousel-caption {
  top: 35px;
}
@media (min-width: 425px) and (max-width: 769px) {
  #basket-type .carousel-caption {
    top: 70px;
  }
}
#basket-type .va-table {
  min-height: 400px;
  font-family: "open_sansregular";
}
#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: "open_sansregular";
}
#basket-type .font-fam2 {
  font-family: "open_sanssemibold";
  font-weight: 600;
}
#basket-type .btn-custom {
  padding: 15px 30px;
  border-radius: 25px;
  background: #076c7e;
  border: 0px;
}
#basket-type .btn-custom:focus {
  outline: none;
  background: #1790a5;
  box-shadow: none;
}
#basket-type .btn-custom-theme {
  padding: 7px 60px;
  margin-right: 10px;
  border-radius: 25px;
  background: #1790a5;
  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 .debt_info-bg {
  background: url(/images/debt-icon.png) top center no-repeat;
  min-height: 210px;
}
#basket-type .btn-custom-padd {
  padding: 15px 50px;
}
#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 */
  /*--radio--btn-2*/
  /*----radio-button-3-------*/
  /*-------radio button 4------------*/
  /*----*/
  /*----*/
  /* 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: 'Gotham-Book';
}
#basket-type .risk input.radio1:empty {
  display: none;
}
#basket-type .risk input.radio2:empty {
  display: none;
}
#basket-type .risk input.radio3:empty {
  display: none;
}
#basket-type .risk input.radio4:empty {
  display: none;
}
#basket-type .risk input.radio1:empty ~ label {
  position: relative;
  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;
  border: 5px solid #707070;
  height: 150px;
  width: 150px;
  border-radius: 85px;
  height: 150px;
  width: 150px;
}
#basket-type .risk input.radio1:checked ~ label {
  border: 5px solid #337ab7;
  height: 150px;
  width: 150px;
  border-radius: 85px;
}
#basket-type .risk input.radio1:empty ~ label:before {
  position: relative;
  display: block;
  top: 12px;
  bottom: 0;
  left: 10px;
  content: '';
  width: 101px;
  height: 101px;
  background: url(/images/sport-car.png) center no-repeat;
  border-radius: 3px 0 0 3px;
  content: '';
  text-indent: 1px;
  font-size: 40px;
  color: #ffffff;
}
#basket-type .risk input.radio1:hover:not(:checked) ~ label:hover {
  color: #000;
  border: 5px solid #337ab7;
}
#basket-type .risk input.radio1:hover:not(:checked) ~ label:hover:before {
  content: '';
  text-indent: 1px;
  color: #ffffff;
  background: url(/images/sport-car-1.png) center no-repeat;
}
#basket-type .risk input.radio2:empty ~ label {
  position: relative;
  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;
  border: 5px solid #707070;
  height: 150px;
  width: 150px;
  border-radius: 85px;
  height: 150px;
  width: 150px;
}
#basket-type .risk input.radio2:empty ~ label {
  position: relative;
  height: 150px;
  width: 150px;
  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-type .risk input.radio2:checked ~ label {
  border: 5px solid #0d913b;
  height: 150px;
  width: 150px;
  border-radius: 85px;
}
#basket-type .risk input.radio2:empty ~ label:before {
  position: relative;
  display: block;
  top: 12px;
  bottom: 0;
  left: 10px;
  content: '';
  width: 101px;
  height: 101px;
  background: url(/images/house-1.png) center no-repeat;
  border-radius: 3px 0 0 3px;
  content: '';
  text-indent: 1px;
  font-size: 40px;
  color: #ffffff;
}
#basket-type .risk input.radio2:hover:not(:checked) ~ label:hover {
  color: #000;
  border: 5px solid #0d913b;
}
#basket-type .risk input.radio2:hover:not(:checked) ~ label:hover:before {
  content: '';
  text-indent: 1px;
  color: #ffffff;
  background: url(/images/house.png) center no-repeat;
}
#basket-type .risk input.radio3:empty ~ label {
  position: relative;
  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;
  border: 5px solid #707070;
  height: 150px;
  width: 150px;
  border-radius: 85px;
  height: 150px;
  width: 150px;
}
#basket-type .risk input.radio3:empty ~ label {
  position: relative;
  height: 150px;
  width: 150px;
  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-type .risk input.radio3:checked ~ label {
  border: 5px solid #ce0012;
  height: 150px;
  width: 150px;
  border-radius: 85px;
}
#basket-type .risk input.radio3:empty ~ label:before {
  position: relative;
  display: block;
  top: 12px;
  bottom: 0;
  left: 10px;
  content: '';
  width: 101px;
  height: 101px;
  background: url(/images/nest-1.png) center no-repeat;
  border-radius: 3px 0 0 3px;
  content: '';
  text-indent: 1px;
  font-size: 40px;
  color: #ffffff;
}
#basket-type .risk input.radio3:hover:not(:checked) ~ label:hover {
  color: #000;
  border: 5px solid #ce0012;
}
#basket-type .risk input.radio3:hover:not(:checked) ~ label:hover:before {
  content: '';
  text-indent: 1px;
  color: #ffffff;
  background: url(/images/nest.png) center no-repeat;
}
#basket-type .risk input.radio4:empty ~ label {
  position: relative;
  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;
  border: 5px solid #707070;
  height: 150px;
  width: 150px;
  border-radius: 85px;
  height: 150px;
  width: 150px;
}
#basket-type .risk input.radio4:checked ~ label {
  border: 5px solid #ffc855;
  height: 150px;
  width: 150px;
  border-radius: 85px;
}
#basket-type .risk input.radio4:empty ~ label:before {
  position: relative;
  display: block;
  top: 12px;
  bottom: 0;
  left: 10px;
  content: '';
  width: 101px;
  height: 101px;
  background: url(/images/wallet-2.png) center no-repeat;
  border-radius: 3px 0 0 3px;
  content: '';
  text-indent: 1px;
  font-size: 40px;
  color: #ffffff;
}
#basket-type .risk input.radio4:hover:not(:checked) ~ label:hover {
  color: #000;
  border: 5px solid #ffc855;
}
#basket-type .risk input.radio4:hover:not(:checked) ~ label:hover:before {
  content: '';
  text-indent: 1px;
  color: #ffffff;
  background: url(/images/wallet-1.png) center no-repeat;
}
#basket-type .risk input.radio1:checked ~ label:before {
  content: '';
  text-indent: 1px;
  color: #ffffff;
  background: url(/images/sport-car-1.png) center no-repeat;
}
#basket-type .risk input.radio2:checked ~ label:before {
  content: '';
  text-indent: 1px;
  color: #ffffff;
  background: url(/images/house.png) center no-repeat;
}
#basket-type .risk input.radio3:checked ~ label:before {
  content: '';
  text-indent: 1px;
  color: #ffffff;
  background: url(/images/nest.png) center no-repeat;
}
#basket-type .risk input.radio4:checked ~ label:before {
  content: '';
  text-indent: 1px;
  color: #ffffff;
  background: url(/images/wallet-1.png) center no-repeat;
}
#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: "open_sansregular";
  font-size: 18px;
}
#basket-type .baskbgstrip1 {
  background: #076c7e;
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 8px;
  line-height: 30px;
}
#basket-type .baskbgstrip1 input {
  background: #ffffff;
  border: 0px;
  border-radius: 3px;
  width: 150px;
  text-align: center;
  font-size: 20px;
  color: #076c7e;
  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;
}
@media (min-width: 0) and (max-width: 767px) {
  #basket-type .baskbgstrip1 button {
    margin-top: 15px;
  }
}
#basket-type .baskbgstrip2 {
  background: none;
  color: #076c7e;
  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: #008e89;
  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 .baskbgstrip3 {
  background: #5db721;
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 8px;
}
#basket-type .baskbgstrip3:after {
  top: -20px;
  left: 60%;
  content: '';
  position: absolute;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-bottom: 20px solid #5db721;
}
#basket-type .baskbgstrip3 input {
  background: #ffffff;
  border: 0px;
  border-radius: 3px;
  width: 150px;
  text-align: center;
  font-size: 22px;
  color: #008e89;
  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 .baskbgstrip3 input:hover, #basket-type .baskbgstrip3 input:focus {
  outline: none;
}
#basket-type .baskbgstrip3 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 .baskbgstrip4 {
  background: #5db721;
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 8px;
}
#basket-type .baskbgstrip4:after {
  top: -20px;
  left: 85%;
  content: '';
  position: absolute;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-bottom: 20px solid #5db721;
}
#basket-type .baskbgstrip4 input {
  background: #ffffff;
  border: 0px;
  border-radius: 3px;
  width: 150px;
  text-align: center;
  font-size: 22px;
  color: #008e89;
  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 .baskbgstrip4 input:hover, #basket-type .baskbgstrip4 input:focus {
  outline: none;
}
#basket-type .baskbgstrip4 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;
  }
}
@media (min-width: 426px) and (max-width: 768px) {
  #basket-type .disclaimer {
    line-height: 40px;
  }
}
#basket-type .disclaimer img {
  margin-top: -12px;
}
#basket-type .disclaimer-para {
  font-size: 11px;
  font-color: #666666;
  line-height: 20px;
}

.nsetoolhdr {
  font-family: '$font-robotoreg', arial, helvetica, sans-serif;
  font-size: 10pt;
  color: #000000;
  font-weight: bold;
  BACKGROUND-COLOR: #52c8b9;
  border: 1px solid #008e89;
}

.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;
}

/* Transaction Login */
#trans_login #page-heading {
  background: url(/images/about-us.jpg) no-repeat center;
  background-size: cover;
}
#trans_login #page-content {
  min-height: 442px;
  padding-top: 170px;
}
#trans_login #page-content .va-table {
  min-height: 442px;
}
#trans_login .green-bgstrip {
  background: #076c7e;
  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 */
