/* 
 * 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: "Roboto", sans-serif;
  font-size: 15px;
  background: url("/images/bg.jpg") repeat;
  color: #000000;
  line-height: 22px;
}

* {
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

a {
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  text-decoration: none !important;
  color: inherit;
}
a:hover {
  text-decoration: none;
  color: #000000;
}

.black {
  color: #000000 !important;
}

.blue {
  color: #8dc8ff !important;
}

.dark-grey {
  color: #373839 !important;
}

.orange {
  color: #ff7200 !important;
}

.white {
  color: #ffffff !important;
}

.green {
  color: #46902b !important;
}

.yellow {
  color: #f39c12 !important;
}

.grey {
  color: #999999 !important;
}

.terquais {
  color: #54c5d3 !important;
}

.brown {
  color: #675140;
}

.purple {
  color: #f1612e;
}

.color-prime {
  color: #f1612e;
}

.color-secondry {
  color: #000000;
}

.dark-blue {
  color: #1f51b0;
}

.brown {
  color: #675140 !important;
}

.red {
  color: #cb0b0b !important;
}

.dark-green {
  color: #06662c;
}

.bg-black {
  background: #000000;
}

.bg-blue {
  background: #1f51b0;
}

.bg-yellow {
  background: #f39c12;
}

.bg-green {
  background: #46902b;
}

.bg-orange {
  background: #ff7200;
}

.bg-white {
  background: #ffffff;
}

.bg-grey {
  background: #56595c;
}

.bg-purple {
  background: #f1612e;
}

.bg-color-prime {
  background: #f1612e;
}

.bg-color-secondry {
  background: #f26e41;
}

.bg-color-prime-border {
  border-color: #dd450f;
}

.bg-color-secondry {
  border-color: black;
}

.rupee {
  font-family: "rupee_foradianregular";
}

.no-border {
  border: none !important;
}

.no-border-top {
  border-top: none !important;
}

.no-border-right {
  border-right: none !important;
}

.no-border-bottom {
  border-bottom: none !important;
}

.no-border-left {
  border-left: none !important;
}

.no-radius {
  border-radius: 0px !important;
}

.no-mar-pad {
  margin: 0 !important;
  padding: 0 !important;
}

.no-padding {
  padding: 0 !important;
}

.no-padding-right {
  padding-right: 0;
}
@media (min-width: 0) and (max-width: 768px) {
  .no-padding-right {
    padding-right: 10px;
  }
}

.no-padding-left, footer #lower 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: #f1612e;
  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;
}
.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-300 {
  font-weight: 300;
}

.font-400, body {
  font-weight: 400;
}

.font-500 {
  font-weight: 500;
}

.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;
  line-height: 35px;
}

.font-size-30 {
  font-size: 30px;
}

.font-size-28 {
  font-size: 28px;
}

.font-size-26 {
  font-size: 26px;
}

.font-size-25 {
  font-size: 25px;
}

.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-13 {
  font-size: 13px;
}

.font-size-12 {
  font-size: 12px;
}

.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-60 {
  margin-top: 60px;
}

.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;
}

.margin-bottom-60 {
  margin-bottom: 60px;
}

.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-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;
}

.btn-primary.active, .btn-primary.focus, .btn-primary:active, .btn-primary:focus, .btn-primary:hover, .open > .dropdown-toggle.btn-primary {
  color: #fff;
  background-color: #000000;
  border-color: #000000;
  outline: none;
}

/* Home Page Starts*/
section {
  position: relative;
}

#services {
  position: relative;
  background: url(/images/section2.png) center no-repeat;
  background-size: cover;
  min-height: 681px;
  padding-top: 80px;
  box-sizing: border-box;
}
#services .va-table {
  min-height: 470px;
}
#services a {
  display: block;
}
#services .icon {
  width: 100%;
  min-height: 160px;
  margin-bottom: 20px;
  margin-right: 10px;
  background: #ffffff;
  box-sizing: border-box;
  padding: 0px;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
#services .icon .va-table {
  min-height: 156px;
}
#services .icon .table-cell {
  padding-left: 5px;
  padding-right: 5px;
}
#services .icon:hover {
  -moz-transform: scale(1.1);
  -o-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
#services h5 {
  font-weight: 400;
  margin-top: 5px;
  color: #ff7200;
}
#services p {
  font-size: 13px;
  color: #6b6b6b;
}
#services a {
  color: #6b6b6b;
}
#services a:hover p {
  color: #f39c12;
}

/* 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: #f1612e;
}
#inner-pages .site-map a:hover {
  color: #ffffff;
}
#inner-pages .entrty-fixer {
  z-index: 99999 !important;
  height: 95px !important;
}
#inner-pages .page-content-fixer {
  margin-top: 300px;
}
#inner-pages #foot {
  background: #000000;
  min-height: 80px;
  padding: 10px;
  color: #727272;
  font-size: 12px;
  font-family: 'robotomedium';
}
#inner-pages #foot a {
  text-decoration: none;
  color: #727272;
  text-transform: uppercase;
  padding: 10px;
}
#inner-pages #foot a:hover {
  text-decoration: underline;
  color: #ffffff;
}

@media (min-width: 0) and (max-width: 991px) {
  .responsive-pane-bg {
    background-color: #f1612e;
    z-index: 999;
  }
  .responsive-pane-bg img {
    margin: 0px auto;
    margin-top: 15px;
  }
}
/* OOPS Classes */
#page-heading {
  width: 100%;
  min-height: 350px;
  position: relative;
  z-index: 100;
}
@media (min-width: 0) and (max-width: 768px) {
  #page-heading {
    min-height: 300px;
  }
}
#page-heading .va-table {
  min-height: 350px;
}
@media (min-width: 0) and (max-width: 768px) {
  #page-heading .va-table {
    min-height: 350px;
  }
}
#page-heading:after {
  width: 100%;
  height: 350px;
  background: rgba(39, 39, 39, 0.48);
  position: absolute;
  top: 0;
  left: 0;
  content: '';
}
@media (min-width: 0) and (max-width: 768px) {
  #page-heading:after {
    min-height: 300px;
  }
}
#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.48);
}
.tile-block .va-table {
  height: 100%;
}
.tile-block:hover .bg-img {
  -moz-transform: scale(1.2);
  -o-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

#nav_lvl_2 {
  display: inline-block;
}
#nav_lvl_2 li {
  display: inline-block;
}
#nav_lvl_2 li.active > a, #nav_lvl_2 li.active > a:hover, #nav_lvl_2 li.active > a:focus {
  border: none;
  border-radius: 0px;
  border-bottom: solid 2px #f1612e;
  color: #f1612e;
}
#nav_lvl_2 li > a {
  color: #000000;
  border: none;
}
#nav_lvl_2 li > a:hover, #nav_lvl_2 li > a:focus {
  color: #f1612e;
  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 - 173px );
}

#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/mutual-fund-head.jpg) no-repeat center;
  background-size: cover;
}

#fixed_deposits #page-heading {
  background: url(/images/fixed-income-head.jpg) no-repeat center;
  background-size: cover;
}
#fixed_deposits #page-content .pane-left {
  min-height: 570px;
}

#equity #page-heading {
  background: url(/images/equity-head.jpg) no-repeat center;
  background-size: cover;
}

#insurance #page-heading {
  background: url(/images/insurance.jpg) no-repeat center;
  background-size: cover;
}
#insurance .tile-block {
  height: 300px;
}

#life_Insurance #page-heading {
  background: url(/images/life-insurance-head.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/general-insurance-head.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/download-head.jpg) no-repeat center;
  background-size: cover;
}
#downloads #page-content {
  min-height: calc( 100vh - 335px );
}

#taxation #page-heading {
  background: url(/images/taxation-head.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;
  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;
  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: 425px;
  border: solid 1px #e6e6e6;
  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 #000000;
    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: 90px;
  line-height: 90px;
}
#Contact_Us .contact-txt {
  min-height: 100px;
  margin-bottom: 50px;
}

#disclaimer #page-heading {
  background: url(/images/disclaimer-head.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: #f1612e;
  right: 100%;
  top: 0;
  height: 100%;
  width: calc( 100% + ( 100vw - 1140px));
  z-index: 0;
}
@media (min-width: 0) and (max-width: 991px) {
  #page-content .pane-left:before {
    background: none;
  }
}
#page-content .pane-left:after {
  position: absolute;
  content: '';
  background-color: #f7f7f7;
  left: 0;
  top: 0;
  height: 100%;
  width: calc( 100% + ( 100vw - 1140px));
  z-index: 0;
}
@media (min-width: 0) and (max-width: 1024px) {
  #page-content .pane-left:after {
    width: 100%;
  }
}
#page-content .position-relative {
  z-index: 100;
  margin-bottom: 30px;
}
#page-content .tab-content {
  margin-top: 15px;
}
#page-content .tab-content p {
  text-align: justify;
}
#page-content img {
  max-width: 100%;
}
#page-content #knowed {
  border-top: solid 1px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  font-size: 12px;
  line-height: 18px;
  padding-top: 10px;
}

#mutual_funds #Safety {
  padding: 15px 0;
  box-sizing: border-box;
}
#mutual_funds #Safety .pane-left {
  padding-left: 15px;
}
#mutual_funds #Safety .pane-left:after {
  background-size: cover;
}
#mutual_funds #Advantage {
  padding: 15px 0;
  box-sizing: border-box;
}
#mutual_funds #Advantage .pane-left {
  padding-left: 15px;
}
#mutual_funds #Advantage .pane-left:after {
  background-size: cover;
}
#mutual_funds #Product_List {
  padding: 15px 0;
  box-sizing: border-box;
}
#mutual_funds #Product_List .pane-left {
  padding-left: 15px;
}
#mutual_funds #Product_List .pane-left:after {
  background-size: cover;
}
#mutual_funds #Product_List {
  padding: 15px 0;
  box-sizing: border-box;
}
#mutual_funds #Product_List .pane-left {
  padding-left: 15px;
}
#mutual_funds #Product_List .pane-left:after {
  background-size: cover;
}
#mutual_funds #Product_List {
  padding: 15px 0;
  box-sizing: border-box;
}
#mutual_funds #Product_List .pane-left {
  padding-left: 15px;
}
#mutual_funds #Product_List .pane-left:after {
  background-size: cover;
}

#Loans .pane-left {
  padding-left: 15px;
  min-height: calc( 100vh - 250px );
}

#nri #page-heading {
  background: url(/images/about-us.jpg) no-repeat center;
  background-size: cover;
}
#nri #page-content {
  margin-top: 250px;
}
#nri #page-content .pane-left {
  min-height: calc( 100vh - 310px );
}
#nri .faqtxt {
  font-weight: bold;
}

/* Contact Us */
/* Internal Pages Ends */
/* Planning web Area Footer */
footer a:hover {
  color: #f1612e;
}
footer .social-links {
  padding: 0 5px;
}
footer #upper {
  background: url(/images/ftr-bg-section-1.jpg) repeat-y top center;
  min-height: 333px;
  height: 100%;
  color: #a6a6a6;
}
footer #upper .icon {
  width: auto;
  height: 100%;
  float: left;
  padding-right: 15px;
  overflow: hidden;
}
footer #upper .text {
  width: auto;
  height: 100%;
  overflow: hidden;
  margin-bottom: 5px;
  color: #a6a6a6;
  font-size: 12px;
  font-weight: 300;
  line-height: 18px;
}
footer .va-table {
  min-height: 333px;
  box-sizing: border-box;
  padding: 25px 0;
}
footer #lower {
  min-height: 110px;
  background: #000000;
  color: #a6a6a6;
  font-size: 12px;
}
footer #lower .va-table {
  min-height: 110px;
  box-sizing: border-box;
  padding: 25px 0;
}
@media (min-width: 0px) and (max-width: 991px) {
  footer #lower .text-right {
    text-align: left;
  }
}
footer #lower a {
  display: initial;
}
footer #lower ul {
  list-style: none;
  margin-top: 10px;
}
footer #lower ul li {
  float: left;
  list-style: none;
  border-left: solid 1px gray;
  box-sizing: border-box;
  color: gray;
  padding: 0 7px;
  line-height: 11px;
  text-transform: uppercase;
}
footer #lower ul li:first-of-type {
  border-left: none;
}
@media (min-width: 0) and (max-width: 991px) {
  footer #lower ul {
    margin: 20px 0;
  }
  footer #lower ul li {
    float: none;
    border: none;
    margin: 10px 0;
    text-align: center;
  }
}

.form-area header {
  background: #f1612e;
}

/*Footer*/
footer#type-2 {
  margin: 0px 0 0 0;
  background: #303030;
  color: #bfbfbf;
  font-size: 13px;
  box-sizing: border-box;
  padding: 10px 0;
}
footer#type-2 .margin-20 {
  margin: 0px 0 20px 0px;
}
footer#type-2 a {
  color: #b3b3b3;
  font-size: 12px;
  text-decoration: none;
  display: initial;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
footer#type-2 a:hover {
  color: #ff7200;
  text-decoration: none;
}
footer#type-2 img {
  margin-bottom: 10px;
}
footer#type-2 .nav li {
  padding-right: 8px;
}
footer#type-2 .nav li a {
  text-transform: uppercase;
  padding: 0px 0px;
}
footer#type-2 .nav li a:hover {
  background: none;
}
footer#type-2 .nav li + li {
  padding: 0 8px;
  position: relative;
}
footer#type-2 .nav li + li:after {
  position: absolute;
  content: '';
  width: 1px;
  height: 11px;
  background: #b3b3b3;
  top: 5px;
  left: 0px;
}
footer#type-2 .powered-by {
  text-align: right;
}
@media (min-width: 0px) and (max-width: 768px) {
  footer#type-2 .powered-by {
    text-align: center;
  }
}

/* Footer Ends */
/* Planning web Area Footer Ends*/

/*# sourceMappingURL=style.css.map */
