/* 
 * Main styles, written in SCSS.
 * Examples taken from http://sass-lang.com/guide
 *
 */
/* 
 * Variables and optional mixins, written in SCSS.
 * Examples taken from http://sass-lang.com/guide
 *
 */
/*
@mixin border-radius($radius...)
{
  @if lenght($radius) == 1
  {
    border-radius: nth($radius, 1);   
  }
  @else
  {
    border-radius: nth($radius, 1), nth($radius, 2), nth($radius, 3), nth($radius, 4);   
  }
}
*/
/*! normalize.css v3.0.2 | MIT License | git.io/normalize */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/**
 * Remove default margin.
 */
body {
  margin: 0;
}

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none;
}

/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
  outline: 0;
}

/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted;
}

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b,
strong {
  font-weight: bold;
}

/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
  font-style: italic;
}

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/**
 * Address styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000;
}

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9/10.
 */
img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
  margin: 1em 40px;
}

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */
}

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
}

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
  line-height: normal;
}

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome
 *    (include `-moz` to future-proof).
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  /* 2 */
  box-sizing: content-box;
}

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto;
}

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold;
}

/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

/* 	Base Classied Didn't Need to Modify */
body {
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  background: #ffffff;
  color: #000000;
  line-height: 18px;
}

* {
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

a {
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  text-decoration: none !important;
  color: inherit;
}

.black {
  color: #000000 !important;
}

.blue {
  color: #0f669b !important;
}

.orange {
  color: #86ce0a !important;
}

.white {
  color: #ffffff !important;
}

.green {
  color: #72d09e !important;
}

.yellow {
  color: #ffe23f !important;
}

.grey {
  color: #676767 !important;
}

.terquais {
  color: #54c5d3 !important;
}

.color-prime {
  color: #0f669b;
}

.color-secondry {
  color: #86ce0a;
}

.dark-blue {
  color: #1a87ec;
}

.bg-black {
  background-color: #000000 !important;
}

.bg-blue {
  background-color: #0f669b !important;
}

.bg-orange {
  background-color: #86ce0a !important;
}

.bg-white {
  background-color: #ffffff !important;
}

.bg-yellow {
  background-color: #ffe23f !important;
}

.bg-green {
  background-color: #72d09e !important;
}

.bg-grey {
  background-color: #676767 !important;
}

.bg-color-prime {
  background: #0f669b;
}

.bg-color-secondry {
  background: #86ce0a;
}

.bg-color-prime-border {
  border-color: #0b476d;
}

.bg-color-secondry {
  border-color: #669d08;
}

.no-border {
  border: none !important;
}

.no-border-top {
  border-top: none !important;
}

.no-border-right {
  border-right: none !important;
}

.no-border-bottom {
  border-bottom: none !important;
}

.no-border-left {
  border-left: none !important;
}

.no-radius {
  border-radius: 0px !important;
}

.no-mar-pad {
  margin: 0 !important;
  padding: 0 !important;
}

.no-padding {
  padding: 0 !important;
}

.no-padding-right {
  padding-right: 0 !important;
}

.no-padding-left, footer #ftr-section-2 ul {
  padding-left: 0 !important;
}

.no-padding-top {
  padding-top: 0;
}

.no-padding-bottom {
  padding-bottom: 0;
}

.no-margin {
  margin: 0 !important;
}

.no-margin-right {
  margin-right: 0 !important;
}

.no-margin-left {
  margin-left: 0 !important;
}

.no-margin-top {
  margin-top: 0 !important;
}

.no-margin-bottom {
  margin-bottom: 0 !important;
}

.position-absolute {
  position: absolute;
}

.position-relative {
  position: relative;
}

.hcentre {
  margin: 0 auto;
}

.no-border {
  border: none !important;
}

.no-border-top {
  border-top: none !important;
}

.no-border-right {
  border-right: none !important;
}

.no-border-bottom {
  border-bottom: none !important;
}

.no-border-left {
  border-left: none !important;
}

.no-radius {
  border-radius: 0px !important;
}

@media (min-width: 771px) {
  .logo {
    min-height: 1px !important;
  }
}
@media (min-width: 1200px) {
  .lg-no-mar-pad {
    margin: 0 !important;
    padding: 0 !important;
  }

  .lg-no-padding {
    padding: 0 !important;
  }

  .lg-no-padding-right {
    padding-right: 0;
  }

  .lg-no-padding-left {
    padding-left: 0 !important;
  }

  .lg-no-padding-top {
    padding-top: 0;
  }

  .lg-no-padding-bottom {
    padding-bottom: 0;
  }

  .lg-no-margin {
    margin: 0 !important;
  }

  .lg-no-margin-right {
    margin-right: 0 !important;
  }

  .lg-no-margin-left {
    margin-left: 0 !important;
  }

  .lg-no-margin-top {
    margin-top: 0 !important;
  }

  .lg-no-margin-bottom {
    margin-bottom: 0 !important;
  }

  .lg-position-absolute {
    position: absolute;
  }

  .lg-position-relative {
    position: relative;
  }

  .lg-hcentre {
    margin: 0 auto;
  }

  .lg-no-border {
    border: none !important;
  }

  .lg-no-border-top {
    border-top: none !important;
  }

  .lg-no-border-right {
    border-right: none !important;
  }

  .lg-no-border-bottom {
    border-bottom: none !important;
  }

  .lg-no-border-left {
    border-left: none !important;
  }

  .lg-no-radius {
    border-radius: 0px !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .md-no-mar-pad {
    margin: 0 !important;
    padding: 0 !important;
  }

  .md-no-padding {
    padding: 0 !important;
  }

  .md-no-padding-right {
    padding-right: 0;
  }

  .md-no-padding-left {
    padding-left: 0 !important;
  }

  .md-no-padding-top {
    padding-top: 0;
  }

  .md-no-padding-bottom {
    padding-bottom: 0;
  }

  .md-no-margin {
    margin: 0 !important;
  }

  .md-no-margin-right {
    margin-right: 0 !important;
  }

  .md-no-margin-left {
    margin-left: 0 !important;
  }

  .md-no-margin-top {
    margin-top: 0 !important;
  }

  .md-no-margin-bottom {
    margin-bottom: 0 !important;
  }

  .md-position-absolute {
    position: absolute;
  }

  .md-position-relative {
    position: relative;
  }

  .md-hcentre {
    margin: 0 auto;
  }

  .md-no-border {
    border: none !important;
  }

  .md-no-border-top {
    border-top: none !important;
  }

  .md-no-border-right {
    border-right: none !important;
  }

  .md-no-border-bottom {
    border-bottom: none !important;
  }

  .md-no-border-left {
    border-left: none !important;
  }

  .md-no-radius {
    border-radius: 0px !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .sm-no-mar-pad {
    margin: 0 !important;
    padding: 0 !important;
  }

  .sm-no-padding {
    padding: 0 !important;
  }

  .sm-no-padding-right {
    padding-right: 0;
  }

  .sm-no-padding-left {
    padding-left: 0 !important;
  }

  .sm-no-padding-top {
    padding-top: 0;
  }

  .sm-no-padding-bottom {
    padding-bottom: 0;
  }

  .sm-no-margin {
    margin: 0 !important;
  }

  .sm-no-margin-right {
    margin-right: 0 !important;
  }

  .sm-no-margin-left {
    margin-left: 0 !important;
  }

  .sm-no-margin-top {
    margin-top: 0 !important;
  }

  .sm-no-margin-bottom {
    margin-bottom: 0 !important;
  }

  .sm-position-absolute {
    position: absolute;
  }

  .sm-position-relative {
    position: relative;
  }

  .sm-no-border {
    border: none !important;
  }

  .sm-no-border-top {
    border-top: none !important;
  }

  .sm-no-border-right {
    border-right: none !important;
  }

  .sm-no-border-bottom {
    border-bottom: none !important;
  }

  .sm-no-border-left {
    border-left: none !important;
  }

  .sm-no-radius {
    border-radius: 0px !important;
  }
}
@media (min-width: 0px) and (max-width: 767px) {
  .xs-no-mar-pad {
    margin: 0 !important;
    padding: 0 !important;
  }

  .xs-no-padding {
    padding: 0 !important;
  }

  .xs-no-padding-right {
    padding-right: 0;
  }

  .xs-no-padding-left {
    padding-left: 0 !important;
  }

  .xs-no-padding-top {
    padding-top: 0;
  }

  .xs-no-padding-bottom {
    padding-bottom: 0;
  }

  .xs-no-margin {
    margin: 0 !important;
  }

  .xs-no-margin-right {
    margin-right: 0 !important;
  }

  .xs-no-margin-left {
    margin-left: 0 !important;
  }

  .xs-no-margin-top {
    margin-top: 0 !important;
  }

  .xs-no-margin-bottom {
    margin-bottom: 0 !important;
  }

  .xs-position-absolute {
    position: absolute;
  }

  .xs-position-relative {
    position: relative;
  }

  .xs-no-border {
    border: none !important;
  }

  .xs-no-border-top {
    border-top: none !important;
  }

  .xs-no-border-right {
    border-right: none !important;
  }

  .xs-no-border-bottom {
    border-bottom: none !important;
  }

  .xs-no-border-left {
    border-left: none !important;
  }

  .xs-no-radius {
    border-radius: 0px !important;
  }
}
/*  Heading Font-Size */
h1 {
  font-size: 26px;
}

h2 {
  font-size: 24px;
}

h3 {
  font-size: 22px;
}

h4 {
  font-size: 20px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  color: #0f669b;
  font-weight: 700;
}

.va-table {
  display: table;
  width: 100%;
  height: inherit;
  min-height: inherit;
}

.table-cell {
  display: table-cell;
  vertical-align: middle;
}

.btn-custom {
  padding: 15px 15px;
  -webkit-border-radius: 100vw;
  -moz-border-radius: 100vw;
  -o-border-radius: 100vw;
  -ms-border-radius: 100vw;
  border-radius: 100vw;
}
.btn-custom:hover {
  box-shadow: inset 0px 0px 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);
}
.btn-custom:focus {
  box-shadow: inset 0px 0px 10px black;
  -moz-box-shadow: inset 0px 0px 10px black;
  -webkit-box-shadow: inset 0px 0px 10px black;
}

.font-italic {
  font-style: italic;
}

.font-normal {
  font-style: normal !important;
}

.font-300 {
  font-weight: 300;
}

.font-400, body {
  font-weight: 400;
}

.font-500 {
  font-weight: 500;
}

.font-600 {
  font-weight: 600;
}

.font-700 {
  font-weight: 700;
}

.font-size-40 {
  font-size: 40px;
}

.font-size-38 {
  font-size: 38px;
}

.font-size-36 {
  font-size: 36px;
}

.font-size-34 {
  font-size: 34px;
}

.font-size-32 {
  font-size: 32px;
}

.font-size-30 {
  font-size: 30px;
}

.font-size-28 {
  font-size: 28px;
}

.font-size-26 {
  font-size: 26px;
}

.font-size-24 {
  font-size: 24px;
}

.font-size-22 {
  font-size: 22px;
}

.font-size-20 {
  font-size: 20px;
}

.font-size-18 {
  font-size: 18px;
}

.font-size-16 {
  font-size: 16px;
}

.font-size-14 {
  font-size: 14px;
}

.font-size-12 {
  font-size: 12px;
}

.text-underline {
  text-decoration: underline;
}

.margin-top-5 {
  margin-top: 5px;
}

.margin-top-10 {
  margin-top: 10px;
}

.margin-top-15 {
  margin-top: 15px;
}

.margin-top-20 {
  margin-top: 20px;
}

.margin-top-25 {
  margin-top: 25px;
}

.margin-top-30 {
  margin-top: 30px;
}

.margin-top-110 {
  margin-top: 110px;
}

.margin-bottom-5 {
  margin-bottom: 5px;
}

.margin-bottom-10 {
  margin-bottom: 10px;
}

.margin-bottom-15 {
  margin-bottom: 15px;
}

.margin-bottom-20 {
  margin-bottom: 20px;
}

.margin-bottom-25 {
  margin-bottom: 25px;
}

.margin-bottom-30 {
  margin-bottom: 30px;
}

#top-link-block.affix {
  position: fixed;
  /* keeps it on the bottom once in view */
  bottom: 18px;
  /* height of link element */
  right: 10px;
  /* padding from the left side of the window */
  -webkit-border-radius: 100vw;
  -moz-border-radius: 100vw;
  -o-border-radius: 100vw;
  -ms-border-radius: 100vw;
  border-radius: 100vw;
  width: 50px;
  height: 50px;
  background: #0f669b;
  color: #ffffff;
  text-align: center;
  line-height: 50px;
}

#home-page {
  overflow-x: hidden;
}

#banner {
  width: 100%;
  min-height: 636px;
  background: url(/images/banner-bg-.jpg) no-repeat center;
  background-size: cover;
}
#banner .banner-upper {
  width: 100%;
  min-height: 441px;
}
#banner .banner-upper .btn-custom {
  width: 230px;
}
#banner .banner-lower {
  width: 100%;
  min-height: 195px;
  background-color: rgba(255, 255, 255, 0.3);
}
#banner .banner-lower .va-table {
  height: 195px;
  min-height: inherit;
}
#banner .banner-txt {
  text-align: center;
  font-weight: 600;
  color: #ffffff;
  font-size: 42px;
  line-height: 44px;
  margin-top: 200px;
  margin-bottom: 150px;
}

.hexagon {
  background: url(/images/hexagon-nrml.png) no-repeat center;
  width: 135px;
  min-height: 146px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
  text-transform: uppercase;
}
.hexagon:hover {
  background: url(/images/hexagon-hvr.png) no-repeat center;
}
.hexagon img {
  height: 42px;
  margin-bottom: 10px;
}
.hexagon .va-table {
  height: 146px;
}

@media (min-width: 1200px) {
  .heading-decore {
    position: relative;
  }
  .heading-decore:before, .heading-decore:after {
    content: '';
    position: absolute;
    width: 36vw;
    height: 14px;
    top: 7px;
  }
  .heading-decore:before {
    background: url(/images/heading-decoration-left.png) no-repeat right top;
    left: -28vw;
  }
  .heading-decore:after {
    background: url(/images/heading-decoration-right.png) no-repeat left top;
    right: -28vw;
  }
}

#welcome {
  min-height: 450px;
}
#welcome .va-table {
  height: 450px;
  min-height: 450px;
}

#services {
  background: url(/images/services-bg.jpg) no-repeat center;
  background-size: cover;
  width: 100%;
  min-height: 606px;
  color: #bbd0ff;
}
#services .va-table {
  height: 606px;
  min-height: inherit;
}
#services a {
  color: #bbd0ff;
}
#services a:hover {
  color: #ffffff;
}
#services .media {
  margin-bottom: 30px;
}
#services .media img {
  margin: 0 15px;
}
#services .media-heading {
  font-size: 18px;
  color: #ffffff;
  text-transform: uppercase;
}

#market-tools {
  width: 100%;
  min-height: 600px;
  background-color: #f6f6f6;
}
#market-tools .va-table {
  height: 600px;
  min-height: inherit;
}
#market-tools .nav-tabs > li {
  padding: 0 2px;
}
#market-tools .nav-tabs > li > a {
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -o-border-radius: 0px;
  -ms-border-radius: 0px;
  border-radius: 0px;
  border: none;
  background-color: #303030;
  color: #ffffff;
  position: relative;
  font-weight: 600;
}
#market-tools .nav-tabs > li > a:hover {
  background-color: #0f669b;
}
#market-tools .nav-tabs > li > a img {
  width: 20px;
  padding-right: 5px;
}
#market-tools .nav-tabs > li:first-of-type {
  padding-left: 0px;
}
#market-tools .nav-tabs > .active a {
  background-color: #0f669b;
}
#market-tools .nav-tabs > .active a:before {
  content: '';
  position: absolute;
  border-top: solid 10px #0f669b;
  border-left: solid 10px transparent;
  border-right: solid 10px transparent;
  bottom: -10px;
  left: calc( ( 100% - 10px ) / 2);
}
#market-tools .tab-content {
  background-color: #ffffff;
  height: 260px;
  border: solid 1px #e6e6e6;
  padding: 10px;
  overflow: auto;
}
#market-tools .heading-tab {
  padding: 10px 15px;
  background-color: #303030;
  color: #ffffff;
  font-weight: 600;
  text-align: center;
}
#market-tools .heading-tab img {
  width: 20px;
}
#market-tools .tool-container {
  width: 100%;
  height: 260px;
  overflow: auto;
  background-color: #ffffff;
  border: solid 1px #e6e6e6;
  padding: 5px;
}

/* MF NFO Starts */
.mf-nfo {
  width: 100%;
  height: 100%;
}
.mf-nfo ul {
  width: 100%;
  padding: 0;
  list-style: none;
}
.mf-nfo li {
  padding: 10px 0px;
  border-bottom: 1px solid #dfdfdf;
}
.mf-nfo li .media-left {
  padding: 0;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.mf-nfo li .media-left img {
  width: 0px;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.mf-nfo li #date {
  color: #d41212;
  font-size: 13px;
  transition: all .2s ease;
}
.mf-nfo li #news-title {
  font-size: 14px;
  line-height: 22px;
  color: #000;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.mf-nfo li:first-of-type .media-left {
  padding-right: 10px;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.mf-nfo li:first-of-type .media-left img {
  width: 65px;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.mf-nfo li:first-of-type #date {
  font-weight: bold;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.mf-nfo li:first-of-type #news-title {
  font-weight: 600;
  color: #1b628e;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.mf-nfo li:after {
  content: '';
  display: block;
  clear: both;
}

.news-tool {
  width: 100%;
  height: 100vh;
}
.news-tool ul {
  width: 100%;
  padding: 0;
  list-style: none;
}
.news-tool li {
  padding: 5px 0px;
  border-bottom: 1px solid #dfdfdf;
}
.news-tool li #date {
  color: #d41212;
  font-size: 13px;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.news-tool li #news-title {
  font-size: 14px;
  line-height: 22px;
  color: #000;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.news-tool li:first-of-type #date {
  font-weight: 600;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.news-tool li:first-of-type #news-title {
  font-weight: bold;
  color: #1b628e;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.news-tool li:after {
  content: '';
  display: block;
  clear: both;
}

.mf_dividend {
  width: 100%;
  height: 100vh;
}
.mf_dividend ul {
  width: 100%;
  padding: 0;
  list-style: none;
}
.mf_dividend li {
  padding: 10px 0px;
  border-bottom: 1px solid #dfdfdf;
}
.mf_dividend li .media-left {
  padding: 0;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.mf_dividend li .media-left img {
  width: 0px;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.mf_dividend li #date {
  color: #d41212;
  font-size: 13px;
  transition: all .2s ease;
}
.mf_dividend li #news-title {
  font-size: 14px;
  line-height: 22px;
  color: #000;
  transition: all .2s ease;
}
.mf_dividend li #dividend {
  transition: all .2s ease;
  color: #000;
}
.mf_dividend li:first-of-type .media-left {
  padding-right: 10px;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.mf_dividend li:first-of-type .media-left img {
  width: 65px;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.mf_dividend li:first-of-type #date {
  font-weight: 600;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.mf_dividend li:first-of-type #news-title {
  font-weight: 600;
  color: #1b628e;
  transition: all .5s ease;
}
.mf_dividend li:first-of-type #dividend {
  font-family: 600;
  color: #438013;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  padding-top: 5px;
}
.mf_dividend li:after {
  content: '';
  display: block;
  clear: both;
}

#why-mf {
  width: 100%;
  min-height: 600px;
  background-color: #ffffff;
}
#why-mf .va-table {
  height: 600px;
  min-height: inherit;
}
#why-mf .mf-radio {
  margin-top: 15px;
  padding-left: 15px;
}
#why-mf .mf-radio:first-of-type {
  margin-top: 40px;
}
#why-mf .mf-radio li {
  font-size: 16px;
  list-style-image: url(/images/bullet.png);
  margin: 0 15px;
  margin-bottom: 30px;
  position: relative;
  box-sizing: border-box;
}
#why-mf .mf-radio li:after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: -25px;
  width: 100%;
  height: 1px;
  background-color: #cccccc;
}
#why-mf .mf-radio:last-of-type li {
  float: left;
  width: calc( 50% - 30px );
}

#amc {
  width: 100%;
  margin-top: 15px;
  margin-bottom: 15px;
}
#amc .amc-slider {
  width: 100%;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -o-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
  box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.5);
  min-height: 60px;
  border: solid 1px #cccccc;
}
#amc #amcs {
  width: 95%;
  margin: 0 auto;
}
#amc #amcs .item {
  padding: 5px;
  margin-top: 0px;
  text-align: center;
}
#amc .customNavigation {
  color: #b3b3b3;
  width: 100%;
  position: absolute;
  top: 15px;
  padding: 0 5px;
}
#amc .customNavigation .prev, #amc .customNavigation .next {
  background: #f2f2f2;
  height: 35px;
  width: 15px;
  line-height: 35px;
  border: solid 1px #d9d9d9;
  color: #4d4d4d;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -o-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
}
#amc .customNavigation a {
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

#feedback {
  width: 100%;
  height: 600px;
  background: url(/images/feed-back-bg.jpg) no-repeat center;
  background-size: cover;
}
#feedback .va-table {
  height: 600px;
  min-height: inherit;
}
#feedback .page-heading {
  margin-bottom: 150px;
}
#feedback .media-body .va-table {
  height: 60px;
  min-height: 60px;
}

/* Home Page Ends */
/* 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: #86ce0a;
}
#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: #0f669b;
    z-index: 99999999999;
  }
  .responsive-pane-bg img {
    margin: 0px auto;
    margin-top: 15px;
  }
}
/* OOPS Classes */
#page-heading {
  width: 100%;
  min-height: 280px;
  position: relative;
  z-index: 100;
}
#page-heading .va-table {
  min-height: 280px;
}
#page-heading:after {
  width: 100%;
  height: 280px;
  background: rgba(0, 0, 0, 0.81);
  position: absolute;
  top: 0;
  left: 0;
  content: '';
}
#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;
}

.tile-block {
  height: 250px;
  position: relative;
  background: #07a9f4;
  overflow: hidden;
  margin-bottom: 30px;
}
.tile-block .bg-img {
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
.tile-block .bg-img:after {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.75);
}
.tile-block .va-table {
  height: 100%;
}
.tile-block:hover .bg-img {
  -moz-transform: scale(1.2);
  -o-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

#nav_lvl_2 {
  display: inline-block;
}
#nav_lvl_2 li {
  display: inline-block;
}
#nav_lvl_2 li.active > a, #nav_lvl_2 li.active > a:hover, #nav_lvl_2 li.active > a:focus {
  border: none;
  border-radius: 0px;
  border-bottom: solid 2px #0f669b;
  color: #0f669b;
}
#nav_lvl_2 li > a {
  color: #000000;
  border: none;
}
#nav_lvl_2 li > a:hover, #nav_lvl_2 li > a:focus {
  color: #0f669b;
  background: none;
}

/* OOPS Classes Ends*/
#aboutus #page-heading {
  background: url(/images/about-us.jpg) no-repeat center;
  background-size: cover;
}
#aboutus .tile-block {
  height: 200px;
}

#Online-investment #page-heading {
  background: url(/images/about-us.jpg) no-repeat center;
  background-size: cover;
}
#Online-investment #page-content {
  margin-top: 250px;
}
#Online-investment #page-content .pane-left {
  min-height: calc( 100vh - 310px );
}

#investment #page-heading {
  background: url(/images/about-us.jpg) no-repeat center;
  background-size: cover;
}
#investment .tile-block {
  height: 300px;
}

#mutual_funds #page-heading {
  background: url(/images/about-us.jpg) no-repeat center;
  background-size: cover;
}

#fixed_deposits #page-heading {
  background: url(/images/about-us.jpg) no-repeat center;
  background-size: cover;
}
#fixed_deposits #page-content .pane-left {
  min-height: 570px;
}

#insurance #page-heading {
  background: url(/images/about-us.jpg) no-repeat center;
  background-size: cover;
}
#insurance .tile-block {
  height: 300px;
}

#life_Insurance #page-heading {
  background: url(/images/about-us.jpg) no-repeat center;
  background-size: cover;
}
#life_Insurance .form-area {
  overflow: hidden;
}
#life_Insurance #page-content {
  margin-top: 250px;
}

#general_insurance #page-heading {
  background: url(/images/about-us.jpg) no-repeat center;
  background-size: cover;
}
#general_insurance .form-area {
  overflow: hidden;
}
#general_insurance .form-area p {
  text-align: left !important;
}
#general_insurance #page-content .pane-left {
  min-height: 555px;
}

#downloads #page-heading {
  background: url(/images/about-us.jpg) no-repeat center;
  background-size: cover;
}
#downloads #page-content {
  min-height: calc( 100vh - 335px );
}

#taxation #page-heading {
  background: url(/images/about-us.jpg) no-repeat center;
  background-size: cover;
}
#taxation #page-content {
  min-height: calc( 100vh - 335px );
}

#Our-Recommendation #page-heading {
  background: url(/images/about-us.jpg) no-repeat center;
  background-size: cover;
}

#sip-planning #page-heading {
  background: url(/images/about-us.jpg) no-repeat center;
  background-size: cover;
}
#sip-planning #page-content {
  margin-top: 250px;
}

#sip-planning #page-heading {
  background: url(/images/about-us.jpg) no-repeat center;
  background-size: cover;
}

#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-color: #fefefe;
  min-height: 286px;
  border: solid 1px #e6e6e6;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -o-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  box-sizing: border-box;
  padding: 15px 0;
}
@media (min-width: 0) and (max-width: 991px) {
  #porfolio_tracker .login {
    background-image: none;
    min-height: 415px;
    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;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -o-border-radius: 2px;
  -ms-border-radius: 2px;
  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;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -o-border-radius: 3px;
  -ms-border-radius: 3px;
  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: 435px;
  border: solid 1px #e6e6e6;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -o-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  box-sizing: border-box;
  padding: 15px 0;
}
#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: 992px) {
  #register .register .bg-color-secondry:after {
    content: '';
    position: absolute;
    top: 0px;
    right: -22px;
    border-left: solid 23px #86ce0a;
    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;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -o-border-radius: 2px;
  -ms-border-radius: 2px;
  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;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -o-border-radius: 3px;
  -ms-border-radius: 3px;
  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;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -o-border-radius: 3px;
  -ms-border-radius: 3px;
  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;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -o-border-radius: 3px;
  -ms-border-radius: 3px;
  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: 90px;
  line-height: 90px;
}
#Contact_Us .contact-txt {
  min-height: 100px;
  margin-bottom: 50px;
}

#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: #0f669b;
  right: 100%;
  top: 0;
  height: 100%;
  width: calc( 100% + ( 100vw - 1140px));
  z-index: 0;
}
@media (min-width: 0) and (max-width: 991px) {
  #page-content .pane-left:before {
    background: none;
  }
}
#page-content .pane-left:after {
  position: absolute;
  content: '';
  background-color: #f7f7f7;
  left: 0;
  top: 0;
  height: 100%;
  width: calc( 100% + ( 100vw - 1140px));
  z-index: 0;
}
@media (min-width: 0) and (max-width: 991px) {
  #page-content .pane-left:after {
    width: 100%;
  }
}
#page-content .position-relative {
  z-index: 100;
  margin-bottom: 30px;
}
#page-content .tab-content {
  margin-top: 15px;
}
#page-content .tab-content p {
  text-align: justify;
}
#page-content img {
  max-width: 100%;
}
#page-content #knowed {
  border-top: solid 1px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  font-size: 12px;
  line-height: 18px;
  padding-top: 10px;
}

#mutual_funds #Safety {
  padding: 15px 0;
  box-sizing: border-box;
}
#mutual_funds #Safety .pane-left {
  padding-left: 15px;
}
#mutual_funds #Safety .pane-left:after {
  background-size: cover;
}
#mutual_funds #Advantage {
  padding: 15px 0;
  box-sizing: border-box;
}
#mutual_funds #Advantage .pane-left {
  padding-left: 15px;
}
#mutual_funds #Advantage .pane-left:after {
  background-size: cover;
}
#mutual_funds #Product_List {
  padding: 15px 0;
  box-sizing: border-box;
}
#mutual_funds #Product_List .pane-left {
  padding-left: 15px;
}
#mutual_funds #Product_List .pane-left:after {
  background-size: cover;
}
#mutual_funds #Product_List {
  padding: 15px 0;
  box-sizing: border-box;
}
#mutual_funds #Product_List .pane-left {
  padding-left: 15px;
}
#mutual_funds #Product_List .pane-left:after {
  background-size: cover;
}
#mutual_funds #Product_List {
  padding: 15px 0;
  box-sizing: border-box;
}
#mutual_funds #Product_List .pane-left {
  padding-left: 15px;
}
#mutual_funds #Product_List .pane-left:after {
  background-size: cover;
}

#Loans .pane-left {
  padding-left: 15px;
  min-height: calc( 100vh - 250px );
}

#nri #page-heading {
  background: url(/images/about-us.jpg) no-repeat center;
  background-size: cover;
}
#nri #page-content {
  margin-top: 250px;
}
#nri #page-content .pane-left {
  min-height: calc( 100vh - 310px );
}
#nri .faqtxt {
  font-weight: bold;
}

/* Contact Us */
/* Internal Pages Ends */
/* Footer */
footer {
  position: relative;
}
footer #ftr-section-2 {
  background: #000000;
  min-height: 60px;
  color: gray;
  font-size: 12px;
  line-height: 12px;
}
footer #ftr-section-2 .va-table {
  min-height: 60px;
}
footer #ftr-section-2 a {
  display: initial;
}
footer #ftr-section-2 a:hover {
  color: #86ce0a;
}
footer #ftr-section-2 ul {
  list-style: none;
}
footer #ftr-section-2 ul li {
  float: left;
  list-style: none;
  border-left: solid 1px gray;
  box-sizing: border-box;
  color: gray;
  padding: 0 10px;
  line-height: 12px;
  text-transform: uppercase;
}
footer #ftr-section-2 ul li:first-of-type {
  border-left: none;
}
@media (min-width: 0) and (max-width: 991px) {
  footer #ftr-section-2 .text-right {
    text-align: left;
  }
}

/*# sourceMappingURL=style.css.map */
