@charset "UTF-8";
/*
* Sass Boilerplate v2.0
* Copyright 2015, Anoop John
* https://github.com/anupjon/sass-boilerplate
* Free to use under the MIT license.
* http://www.opensource.org/licenses/mit-license.php
*/
[class^="icon-"]:before, [class*=" icon-"]:before {
  font-family: "fontello";
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: .2em;
  text-align: center;
  /* opacity: .8; */
  /* For safety - reset parent styles, that can break glyph codes*/
  font-variant: normal;
  text-transform: none;
  /* fix buttons height, for twitter bootstrap */
  line-height: 1em;
  /* Animation center compensation - margins should be symmetric */
  /* remove if not needed */
  margin-left: .2em;
  /* you can be more comfortable with increased icons size */
  /* font-size: 120%; */
  /* Font smoothing. That was taken from TWBS */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Uncomment for 3D effect */
  /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
}

.icon-facebook:before {
  content: '\e800';
}

/* '' */
.icon-twitter:before {
  content: '\e801';
}

/* '' */
.icon-gplus:before {
  content: '\e802';
}

/* '' */
.icon-linkedin:before {
  content: '\e803';
}

/* '' */
.icon-pinterest:before {
  content: '\e804';
}

/* '' */
.icon-home:before {
  content: '\e805';
}

/* '' */
.icon-down-dir:before {
  content: '\e806';
}

/* '' */
.icon-up-dir:before {
  content: '\e807';
}

/* '' */
.icon-up-open:before {
  content: '\e808';
}

/* '' */
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS and IE text size adjust after device orientation change,
 *    without disabling user zoom.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -webkit-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
          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/10/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 of focused elements when they are also in an
 * active/hover state.
 */
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 {
  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.
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  box-sizing: content-box;
  /* 2 */
}

/**
 * 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;
}

* {
  box-sizing: border-box;
}

input,
select,
textarea,
button {
  font: 14px/1.4 Helvetica, arial, nimbussansl, liberationsans, freesans, clean, sans-serif, "Segoe UI Emoji", "Segoe UI Symbol";
}

input:hover, input:focus, input:active,
select:hover,
select:focus,
select:active,
textarea:hover,
textarea:focus,
textarea:active,
button:hover,
button:focus,
button:active {
  outline: 0;
}

body {
  font: 14px/1.4 Helvetica, arial, nimbussansl, liberationsans, freesans, clean, sans-serif, "Segoe UI Emoji", "Segoe UI Symbol";
  color: #333;
  background-color: #fff;
  padding-right: 0 !important;
}

hr {
  height: 0;
  margin: 15px 0;
  overflow: hidden;
  background: transparent;
  border: 0;
  border-bottom: 1px solid #ddd;
}

hr:before {
  display: table;
  content: "";
}

hr:after {
  display: table;
  clear: both;
  content: "";
}

.browserupgrade {
  background: #f00;
  color: #fff;
  margin: 0;
  text-align: center;
  padding: 0.8em;
  width: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9999;
}

.browserupgrade a {
  font-weight: bold;
  color: #ff0;
}

.cf:before {
  display: table;
  content: "";
}

.cf:after {
  display: table;
  clear: both;
  content: "";
}

iframe[name='google_conversion_frame'] {
  height: 0 !important;
  width: 0 !important;
  line-height: 0 !important;
  font-size: 0 !important;
  margin-top: -13px;
  float: left;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

figure {
  margin: 0;
  padding: 0;
}

@font-face {
  font-family: 'fontello';
  src: url("../font/fontello.eot?64327983");
  src: url("../font/fontello.eot?64327983#iefix") format("embedded-opentype"), url("../font/fontello.woff?64327983") format("woff"), url("../font/fontello.ttf?64327983") format("truetype"), url("../font/fontello.svg?64327983#fontello") format("svg");
  font-weight: normal;
  font-style: normal;
}

h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6 {
  margin: 0 0 0.7em;
  line-height: 1.2;
}

h1, .h1 {
  font-size: 30px;
}

h2, .h2 {
  font-size: 21px;
}

h3, .h3 {
  font-size: 16px;
}

h4, .h4 {
  font-size: 14px;
}

h5, .h5 {
  font-size: 12px;
}

h6, .h6 {
  font-size: 11px;
}

a {
  color: #4078c0;
  text-decoration: none;
}

a:hover, a:focus, a:active {
  outline: 0;
}

a:focus {
  text-decoration: none;
}

p {
  margin: 0 0 0.7em;
}

small {
  font-size: 90%;
}

blockquote {
  margin: 0;
}

ul,
ol {
  padding: 0;
  margin-top: 0;
  margin-bottom: 0;
}

ol ol,
ul ol {
  list-style-type: lower-roman;
}

ul ul ol,
ul ol ol,
ol ul ol,
ol ol ol {
  list-style-type: lower-alpha;
}

dd {
  margin-left: 0;
}

tt,
code {
  font-family: Consolas, "Liberation Mono", Menlo, Courier, monospace;
  font-size: 12px;
}

pre {
  margin-top: 0;
  margin-bottom: 0;
  font: 12px Consolas, "Liberation Mono", Menlo, Courier, monospace;
}

fieldset {
  padding: 0;
  margin: 0;
  border: 0;
}

label {
  font-size: 13px;
  font-weight: bold;
}

.form-control {
  height: 38px;
  padding: 7px 8px;
  font-size: 13px;
  color: #333;
  vertical-align: middle;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: right center;
  border: 1px solid #ccc;
  border-radius: 3px;
  outline: none;
  display: block;
  width: 100%;
  transition: all ease .1s;
}

.form-control.focus, .form-control:focus {
  border-color: #4078c0;
  box-shadow: 0 0 5px rgba(81, 167, 232, 0.5);
}

textarea {
  resize: none;
  height: auto;
}

.form-group {
  margin-bottom: 15px;
}

input[type="checkbox"],
input[type="radio"] {
  display: inline;
  margin-right: 0.35em;
}

input.input-contrast,
.input-contrast {
  background-color: #fafafa;
}

input.input-contrast:focus,
.input-contrast:focus {
  background-color: #fff;
}

::-webkit-input-placeholder {
  color: #aaa;
}

::-moz-placeholder {
  color: #aaa;
}

:-ms-input-placeholder {
  color: #aaa;
}

::placeholder {
  color: #aaa;
}

button:focus, button.focus, input[type="submit"]:focus, input[type="submit"].focus {
  outline: 0;
}

.m-rates-form input:-moz-placeholder {
  /* Firefox 18- */
  opacity: 1;
  color: #626262;
}

.m-rates-form input::-moz-placeholder {
  /* Firefox 19+ */
  opacity: 1;
  color: #626262;
}

.m-rates-form ::-webkit-input-placeholder {
  color: #626262;
  opacity: 1 !important;
  /* for chrome */
}

.m-rates-form textarea:-moz-placeholder {
  /* Firefox 18- */
  opacity: 1;
  color: #626262;
}

.m-rates-form textarea::-moz-placeholder {
  /* Firefox 19+ */
  opacity: 1;
  color: #626262;
}

.m-rates-form ::-webkit-input-placeholder {
  color: #626262;
  opacity: 1 !important;
  /* for chrome */
}

.nws-ltr input:-moz-placeholder {
  /* Firefox 18- */
  opacity: 1;
  color: #626262;
}

.nws-ltr input::-moz-placeholder {
  /* Firefox 19+ */
  opacity: 1;
  color: #626262;
}

.nws-ltr ::-webkit-input-placeholder {
  color: #626262;
  opacity: 1 !important;
  /* for chrome */
}

.m-reminder input:-moz-placeholder {
  /* Firefox 18- */
  opacity: 1;
  color: #626262;
}

.m-reminder input::-moz-placeholder {
  /* Firefox 19+ */
  opacity: 1;
  color: #626262;
}

.m-reminder ::-webkit-input-placeholder {
  color: #626262;
  opacity: 1 !important;
  /* for chrome */
}

.modal-body input:-moz-placeholder {
  /* Firefox 18- */
  opacity: 1;
  color: #7b7b7b;
}

.modal-body input::-moz-placeholder {
  /* Firefox 19+ */
  opacity: 1;
  color: #7b7b7b;
}

.modal-body ::-webkit-input-placeholder {
  color: #7b7b7b;
  opacity: 1 !important;
  /* for chrome */
}

.modal-body textarea:-moz-placeholder {
  /* Firefox 18- */
  opacity: 1;
  color: #7b7b7b;
}

.modal-body textarea::-moz-placeholder {
  /* Firefox 19+ */
  opacity: 1;
  color: #7b7b7b;
}

.modal-body ::-webkit-input-placeholder {
  color: #7b7b7b;
  opacity: 1 !important;
  /* for chrome */
}

table {
  border-collapse: collapse;
  margin: 0.7em 0;
  table-layout: fixed;
  width: 100%;
}

th {
  border-bottom: 2px solid #ddd;
  font-weight: 600;
  padding: 0.7em 0;
  text-align: left;
}

td {
  border-bottom: 1px solid #ddd;
  padding: 0.7em 0;
}

tr,
td,
th {
  vertical-align: middle;
}

.table-responsive {
  overflow-x: auto;
  min-height: 0.01%;
}

@media screen and (max-width: 767px) {
  .table-responsive {
    width: 100%;
    margin-bottom: 0px;
    overflow-y: hidden;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    border: 1px solid #dddddd;
  }
  .table-responsive > .table {
    margin-bottom: 0;
  }
  .table-responsive > .table > thead > tr > th,
  .table-responsive > .table > tbody > tr > th,
  .table-responsive > .table > tfoot > tr > th,
  .table-responsive > .table > thead > tr > td,
  .table-responsive > .table > tbody > tr > td,
  .table-responsive > .table > tfoot > tr > td {
    white-space: nowrap;
  }
  .table-responsive > .table-bordered {
    border: 0;
  }
  .table-responsive > .table-bordered > thead > tr > th:first-child,
  .table-responsive > .table-bordered > tbody > tr > th:first-child,
  .table-responsive > .table-bordered > tfoot > tr > th:first-child,
  .table-responsive > .table-bordered > thead > tr > td:first-child,
  .table-responsive > .table-bordered > tbody > tr > td:first-child,
  .table-responsive > .table-bordered > tfoot > tr > td:first-child {
    border-left: 0;
  }
  .table-responsive > .table-bordered > thead > tr > th:last-child,
  .table-responsive > .table-bordered > tbody > tr > th:last-child,
  .table-responsive > .table-bordered > tfoot > tr > th:last-child,
  .table-responsive > .table-bordered > thead > tr > td:last-child,
  .table-responsive > .table-bordered > tbody > tr > td:last-child,
  .table-responsive > .table-bordered > tfoot > tr > td:last-child {
    border-right: 0;
  }
  .table-responsive > .table-bordered > tbody > tr:last-child > th,
  .table-responsive > .table-bordered > tfoot > tr:last-child > th,
  .table-responsive > .table-bordered > tbody > tr:last-child > td,
  .table-responsive > .table-bordered > tfoot > tr:last-child > td {
    border-bottom: 0;
  }
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
}

.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* Dots */
.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -45px;
  list-style: none;
  display: block;
  text-align: right;
  padding: 0;
  width: 100%;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  height: 15px;
  width: 15px;
  margin: 0 1px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  border: 0;
  display: block;
  height: 12px;
  width: 12px;
  outline: none;
  line-height: 0px;
  background: rgba(0, 0, 0, 0.5);
  font-size: 0px;
  color: transparent;
  border-radius: 50%;
  padding: 5px;
  cursor: pointer;
}

.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
  background: #80b542;
}

.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 0.9;
}

.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 12px;
  height: 12px;
  font-family: 'Roboto', sans-serif;
  border-radius: 50%;
  font-size: 20px;
  line-height: 20px;
  text-align: center;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
  background: #80b542;
}

.slick-dots li.slick-active {
  color: #80b542;
}

.slick-dots li:last-child {
  padding-right: 0;
  margin-right: 0;
}

.btn {
  position: relative;
  display: inline-block;
  padding: 9px 12px;
  font-size: 13px;
  font-weight: bold;
  line-height: 20px;
  color: #333;
  white-space: nowrap;
  vertical-align: middle;
  cursor: pointer;
  background-color: #eee;
  background-image: linear-gradient(#fcfcfc, #eee);
  border-radius: 3px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-appearance: none;
}

.btn:focus {
  text-decoration: none;
  border: 0;
  outline: none;
}

.btn:focus:hover {
  border-color: #51a7e8;
}

.btn:hover, .btn:active {
  text-decoration: none;
  background-color: #ddd;
  background-image: linear-gradient(#eee, #ddd);
  border-color: #ccc;
}

.btn:active {
  background-color: #dcdcdc;
  background-image: none;
  border-color: #b5b5b5;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15);
}

.btn:disabled, .btn:disabled:hover, .btn.disabled, .btn.disabled:hover {
  color: rgba(102, 102, 102, 0.5);
  cursor: default;
  background-color: rgba(229, 229, 229, 0.5);
  background-image: none;
  border-color: rgba(197, 197, 197, 0.5);
  box-shadow: none;
}

.btn-primary {
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.15);
  background: #4078c0;
}

.btn-primary:hover {
  color: #fff;
  background: #396cad;
}

.btn-primary:active {
  background: #33609a;
}

.btn-primary:disabled, .btn-primary:disabled:hover, .btn-primary.disabled, .btn-primary.disabled:hover {
  color: #fefefe;
  background: #add39f;
}

.btn-outline {
  color: #4078c0;
  background-color: #fff;
  background-image: none;
  border: 1px solid #e5e5e5;
}

.btn-outline:focus {
  border: 1px solid #e5e5e5;
}

.btn-outline:hover, .btn-outline:active {
  color: #fff;
  background-color: #4078c0;
  background-image: none;
  border-color: #4078c0;
}

.btn-outline:disabled, .btn-outline:disabled:hover, .btn-outline.disabled, .btn-outline.disabled:hover {
  color: #767676;
  background-color: #fff;
  background-image: none;
  border-color: #e5e5e5;
}

.btn-sm {
  padding: 2px 10px;
}

.btn-block {
  display: block;
  width: 100%;
  text-align: center;
}

/*WP dynamic menu active classes*/
/*.current-page-ancestor, .current-menu-ancestor .current_page_ancestor , .current-menu-item
.current-page-parent, .current_page_parent{

}*/
.h-banner {
  background: url(../img/h-banner.jpg) center top no-repeat;
  background-size: cover;
  min-height: 750px;
  margin-bottom: 48px;
}

@media (max-width: 1024px) {
  .h-banner .covervid-video {
    display: none;
  }
}

@media (max-width: 767px) {
  .h-banner {
    min-height: 300px;
  }
}

@media (max-width: 479px) {
  .h-banner {
    min-height: 450px;
  }
}

.covervid-wrap {
  display: block;
  overflow: hidden;
  width: 100%;
  height: 568px;
}

.covervid-wrap .covervid-video {
  width: 100%;
}

@media (max-width: 767px) {
  .covervid-wrap {
    height: 300px;
  }
}

@media (max-width: 479px) {
  .covervid-wrap {
    height: 400px;
  }
}

header {
  position: fixed;
  z-index: 500;
  width: 100%;
  top: 0;
}

header .header-inner {
  padding: 5px 10px;
  background: #fff;
  transition: all 0.3s linear 0s;
}

@media (max-width: 1199px) {
  header .header-inner {
    padding: 5px 9px 5px 0px;
  }
}

@media (max-width: 767px) {
  header .header-inner {
    padding: 5px 9px 5px 0px;
  }
}

header .header-inner .logo {
  float: left;
  width: 200px;
  transition: all 0.3s linear 0s;
}

@media (max-width: 1199px) {
  header .header-inner .logo {
    width: 240px;
  }
}

@media (max-width: 767px) {
  header .header-inner .logo {
    float: left;
  }
}

@media (max-width: 479px) {
  header .header-inner .logo {
    float: none;
  }
}

header .header-inner .logo img {
  width: 100%;
  transition: all 0.3s linear 0s;
}

@media (max-width: 767px) {
  header .header-inner .logo img {
    max-width: 70%;
  }
}

@media (max-width: 479px) {
  header .header-inner .logo img {
    max-width: 50%;
    width: auto;
  }
}

@media (max-width: 1024px) {
  header {
    background: #fff;
  }
}

.container-top {
  width: 100%;
  transition: all 0.1s linear 0s;
}

.container-bottom {
  width: 100%;
  transition: all 0.1s linear 0s;
}

.header-ryt-box {
  float: right;
  padding-top: 24px;
}

@media (max-width: 1024px) {
  .header-ryt-box {
    padding: 0 15px 0 0;
  }
}

@media (max-width: 767px) {
  .header-ryt-box {
    padding: 0 30px 0px 0px;
  }
}

@media (max-width: 479px) {
  .header-ryt-box {
    float: none;
    margin: 0 auto;
    text-align: center;
    padding: 0;
  }
}

.header-ryt-box .leaf-logo {
  width: 50px;
  height: 54px;
  float: right;
  transition: all 0.3s linear 0s;
}

@media (max-width: 1199px) {
  .header-ryt-box .leaf-logo {
    height: 43px;
    width: 40px;
  }
}

@media (max-width: 767px) {
  .header-ryt-box .leaf-logo {
    display: none;
  }
}

.header-ryt-box .sm-menu-box {
  float: right;
  padding: 0 10px 0 0;
}

@media (max-width: 1199px) {
  .header-ryt-box .sm-menu-box {
    padding: 13px 10px 2px 0;
  }
}

@media (max-width: 767px) {
  .header-ryt-box .sm-menu-box {
    padding: 8px 0px 0 0;
  }
}

@media (max-width: 479px) {
  .header-ryt-box .sm-menu-box {
    padding: 6px 0px 0 0;
    float: none;
  }
}

.header-ryt-box .sm-menu-box .phn {
  font: 400 24px 'Roboto', sans-serif;
  color: #373636;
  float: right;
  padding: 0 0 8px 0;
}

@media (max-width: 1199px) {
  .header-ryt-box .sm-menu-box .phn {
    font-size: 20px;
    padding-bottom: 0;
  }
}

@media (max-width: 767px) {
  .header-ryt-box .sm-menu-box .phn {
    font: 400 20px 'Roboto', sans-serif;
  }
}

@media (max-width: 479px) {
  .header-ryt-box .sm-menu-box .phn {
    float: none;
    font: 400 20px 'Roboto', sans-serif;
  }
}

.header-ryt-box .sm-menu-box .phn a {
  cursor: default;
  color: #373636;
}

.header-ryt-box .sm-menu-box .sm {
  float: right;
  padding: 0 8px 0 0px;
}

@media (max-width: 767px) {
  .header-ryt-box .sm-menu-box .sm {
    display: none;
  }
}

.header-ryt-box .sm-menu-box .sm a {
  font-size: 17px;
  display: inline-block;
  color: #7db13f;
  padding: 0;
  margin: 0 10px 0 0;
  transition: all 0.6s ease;
}

.header-ryt-box .sm-menu-box .sm a:hover {
  color: #000;
  transition: all 0.6s ease;
}

.header-ryt-box .head-top-nav {
  float: right;
  color: #373636;
}

.header-ryt-box .head-top-nav ul {
  list-style: none;
}

.header-ryt-box .head-top-nav ul li {
  display: inline-block;
  padding: 0 13px;
  /* background: url(../img/header-nav-li-bg.png) right center no-repeat; */
}

.header-ryt-box .head-top-nav ul li a {
  font: 400 14px 'Roboto', sans-serif;
  color: #373636;
  text-transform: uppercase;
}

.header-ryt-box .head-top-nav ul li a .icon-home {
  font-size: 24px;
  color: #80b542;
}

.header-ryt-box .head-top-nav ul li a .icon-home:hover {
  color: #373636;
}

.header-ryt-box .head-top-nav ul li a:hover {
  color: #80b542;
}

.header-ryt-box .head-top-nav ul li:last-child {
  padding-right: 0;
}

@media (max-width: 1024px) {
  .header-ryt-box .head-top-nav {
    display: none;
  }
}

.banner-txt01 {
  top: 40%;
  position: absolute;
  text-align: center;
  width: 100%;
}

@media (max-width: 991px) {
  .banner-txt01 {
    top: 24%;
  }
}

@media (max-width: 767px) {
  .banner-txt01 {
    top: 22%;
  }
}

.banner-txt01 p {
  font: 900 55px/47px 'Roboto', sans-serif;
  color: #fff;
  padding-bottom: 18px;
  margin: 0;
}

@media (max-width: 991px) {
  .banner-txt01 p {
    font: 900 45px/43px "Roboto",sans-serif;
  }
}

@media (max-width: 767px) {
  .banner-txt01 p {
    font: 900 36px/31px "Roboto",sans-serif;
  }
}

@media (max-width: 479px) {
  .banner-txt01 p {
    font: 900 36px/38px "Roboto",sans-serif;
  }
}

.banner-txt01 p span {
  font: 400 25px/45px 'Roboto', sans-serif;
  color: #fff;
  display: inline-block;
}

@media (max-width: 991px) {
  .banner-txt01 p span {
    font: 400 21px/42px "Roboto",sans-serif;
  }
}

@media (max-width: 767px) {
  .banner-txt01 p span {
    font: 400 17px/39px "Roboto",sans-serif;
  }
}

@media (max-width: 479px) {
  .banner-txt01 p span {
    font: 900 18px/25px "Roboto",sans-serif;
  }
}

.banner-txt01 .btn-aply-nw {
  font: 400 22px 'Roboto', sans-serif;
  text-transform: uppercase;
  padding: 9px 52px;
  border: 2px solid #fff;
  color: #fff;
}

@media (max-width: 479px) {
  .banner-txt01 .btn-aply-nw {
    display: block;
    margin: 0 25px;
  }
}

.banner-txt01 .btn-ask-exprt {
  font: 400 22px 'Roboto', sans-serif;
  text-transform: uppercase;
  padding: 9px 32px;
  border: 2px solid #fff;
  margin-right: 9px;
  color: #fff;
}

@media (max-width: 479px) {
  .banner-txt01 .btn-ask-exprt {
    display: block;
    margin: 0 25px 15px 25px;
  }
}

.today-sp-rate {
  border-bottom: 1px solid #c6c6c6;
  margin-bottom: 28px;
  text-align: center;
  padding: 0 0 28px 0;
}

.today-sp-rate .rate-box {
  margin-bottom: 19px;
  border: 1px solid #d5d5d5;
  display: table;
}

@media (max-width: 767px) {
  .today-sp-rate .rate-box {
    display: block;
    text-align: center;
  }
}

.today-sp-rate .rate-box .r-box01 {
  display: table-cell;
  padding: 20px 17px;
  background: #80b542;
  font: 600 32px 'Roboto', sans-serif;
  color: #fff;
  text-transform: uppercase;
  vertical-align: middle;
  position: relative;
}

@media (max-width: 1024px) {
  .today-sp-rate .rate-box .r-box01 {
    font: 600 14px 'Roboto', sans-serif;
  }
}

@media (max-width: 991px) {
  .today-sp-rate .rate-box .r-box01 {
    font: 600 23px 'Roboto', sans-serif;
  }
}

@media (max-width: 767px) {
  .today-sp-rate .rate-box .r-box01 {
    width: 100%;
    display: block;
  }
}

@media (max-width: 479px) {
  .today-sp-rate .rate-box .r-box01 {
    font-size: 20px;
  }
}

.today-sp-rate .rate-box .r-box01:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-top: 22px solid transparent;
  border-bottom: 22px solid transparent;
  border-left: 12px solid #80b542;
  position: absolute;
  top: 18px;
  right: -12px;
}

@media (max-width: 767px) {
  .today-sp-rate .rate-box .r-box01:after {
    content: '';
    border-top: 0;
    border-bottom: 0;
    border-left: 0;
  }
}

.today-sp-rate .rate-box .r-box02 {
  display: table-cell;
  vertical-align: middle;
  font-size: 22px;
  font-weight: 500;
  padding: 5px;
  width: 244px;
  height: 55px;
  line-height: 45px;
  border-right: 1px solid #c6c6c6;
}

@media (max-width: 767px) {
  .today-sp-rate .rate-box .r-box02 {
    width: 100%;
    display: block;
    border-right: none;
    border-bottom: 1px solid #c6c6c6;
  }
}

.today-sp-rate .rate-box .r-box03 {
  display: table-cell;
  padding: 15px 29px;
  border-right: 1px solid #c6c6c6;
  vertical-align: middle;
  font-size: 22px;
  font-weight: 500;
}

@media (max-width: 767px) {
  .today-sp-rate .rate-box .r-box03 {
    width: 100%;
    padding: 15px;
    display: block;
    line-height: 42px;
    height: 55px;
    text-align: center;
    border-bottom: 1px solid #c6c6c6;
  }
}

.today-sp-rate .rate-box .r-box03 .box03-sub {
  float: left;
}

@media (max-width: 767px) {
  .today-sp-rate .rate-box .r-box03 .box03-sub {
    float: none;
  }
}

.today-sp-rate .rate-box .r-box03 .box03-sub .box03-subb01 {
  display: block;
  background: #164d13;
  font: 500 16px 'Roboto', sans-serif;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  padding: 8px 10px;
  margin-right: 9px;
}

@media (max-width: 767px) {
  .today-sp-rate .rate-box .r-box03 .box03-sub .box03-subb01 {
    margin-right: 0;
  }
}

.today-sp-rate .rate-box .r-box03 .box03-sub .box03-subb02 {
  background: #f78f1e;
  font: 500 16px 'Roboto', sans-serif;
  color: #fff;
  padding: 8px 10px;
  text-align: center;
  text-transform: uppercase;
  margin-right: 9px;
  display: block;
}

@media (max-width: 767px) {
  .today-sp-rate .rate-box .r-box03 .box03-sub .box03-subb02 {
    margin-right: 0;
  }
}

.today-sp-rate .rate-box .r-box03 .box03-subb03 {
  font: 500 34px 'Roboto', sans-serif;
  color: #626262;
  display: block;
  float: left;
  margin-top: 13px;
}

@media (max-width: 767px) {
  .today-sp-rate .rate-box .r-box03 .box03-subb03 {
    float: none;
  }
}

.today-sp-rate .rate-box .r-box04 {
  display: table-cell;
  padding: 15px 29px;
  vertical-align: middle;
  font-size: 22px;
  font-weight: 500;
}

@media (max-width: 767px) {
  .today-sp-rate .rate-box .r-box04 {
    width: 100%;
    padding: 15px;
    display: block;
    line-height: 42px;
    height: 55px;
    text-align: center;
    border-bottom: 1px solid #c6c6c6;
  }
}

.today-sp-rate .rate-box .r-box04 .box04-sub {
  float: left;
}

@media (max-width: 767px) {
  .today-sp-rate .rate-box .r-box04 .box04-sub {
    float: none;
  }
}

.today-sp-rate .rate-box .r-box04 .box04-sub .box04-subb01 {
  display: block;
  background: #164d13;
  font: 500 16px 'Roboto', sans-serif;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  padding: 8px 4px;
  margin-right: 9px;
}

@media (max-width: 767px) {
  .today-sp-rate .rate-box .r-box04 .box04-sub .box04-subb01 {
    margin-right: 0;
  }
}

.today-sp-rate .rate-box .r-box04 .box04-sub .box04-subb02 {
  background: #f78f1e;
  font: 500 16px 'Roboto', sans-serif;
  color: #fff;
  padding: 8px 4px;
  text-align: center;
  text-transform: uppercase;
  margin-right: 9px;
  display: block;
}

@media (max-width: 767px) {
  .today-sp-rate .rate-box .r-box04 .box04-sub .box04-subb02 {
    margin-right: 0;
  }
}

.today-sp-rate .rate-box .r-box04 .box04-subb03 {
  font: 500 34px 'Roboto', sans-serif;
  color: #626262;
  display: block;
  float: left;
  margin-top: 13px;
}

@media (max-width: 767px) {
  .today-sp-rate .rate-box .r-box04 .box04-subb03 {
    float: none;
  }
}

.today-sp-rate .comp-rate-btn {
  background: #80b542;
  font: 400 22px 'Roboto', sans-serif;
  color: #fff;
  text-transform: uppercase;
  padding: 10px 15px;
  display: inline-block;
}

.h-m-calculate {
  padding: 40px 0;
}
.h-m-calculate h2 {
  font: 500 25px 'Roboto', sans-serif;
  text-transform: uppercase;
  color: #80b542;
  text-align: center;
  padding-bottom: 28px;
  margin: 0;
}

.h-m-calculate h2 a {
  color: #80b542;
  transition: all 0.6s ease;
}

.h-m-calculate h2 a:hover {
  color: #80b542;
  transition: all 0.6s ease;
}

.h-m-calculate p {
  margin-bottom: 25px;
}

.h-m-calculate .cta {
  width: 150px;
  height: 50px;
  font-weight: 500;
  font-size: 18px;
  text-align: center;
  color: #80b542;
  border:  2px solid #80b542;
  line-height: 50px;
  padding: 10px 35px;
}

@media (max-width: 767px) {
  .h-m-calculate h2 {
    padding-bottom: 0;
    font: 500 21px 'Roboto', sans-serif;
  }
}

.h-m-calculate .h-calculate-box {
  display: list-item;
  list-style: none;
  border-right: 1px solid #cccccc;
  text-align: center;
  float: left;
  padding: 4px 22px 20px 27px;
  min-height: 121px;
}

@media (max-width: 1024px) {
  .h-m-calculate .h-calculate-box {
    padding: 4px 8px 20px 8px;
  }
}

@media (max-width: 991px) {
  .h-m-calculate .h-calculate-box {
    border-right: none;
    border-bottom: 1px solid #cccccc;
    float: none;
    padding: 20px 8px;
  }
}

.h-m-calculate .h-calculate-box h3 {
  color: #424242;
  font: 300 13px/20px 'Roboto', sans-serif;
  text-transform: uppercase;
}

@media (max-width: 1024px) {
  .h-m-calculate .h-calculate-box h3 {
    font: 300 12px/20px 'Roboto', sans-serif;
  }
}

@media (max-width: 991px) {
  .h-m-calculate .h-calculate-box h3 {
    font: 300 14px/20px 'Roboto', sans-serif;
  }
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .h-m-calculate .h-calculate-box h3 {
    font: 300 12.5px/20px 'Roboto', sans-serif;
  }
}

.h-m-calculate .h-calculate-box h3 a {
  color: #424242;
}

.h-m-calculate .h-calculate-box h3 a:hover {
  color: #80b542;
}

.h-m-calculate .h-calculate-box:last-child {
  border-right: none;
}

.h-m-calculate .h-calculate-box:hover .calculate-icon {
  fill: #80b542;
}

.h-m-calculate .h-calculate-box:hover .calculate-icon04 {
  fill: #80b542;
}

.h-m-calculate .h-calculate-box:hover h3 {
  color: #80b542;
}

.calculate-icon {
  width: 90px;
  height: 65px;
  margin-bottom: 6px;
  fill: #c7c7c7;
}

.calculate-icon:hover {
  fill: #80b542;
}

.calculate-icon01 {
  width: 78px;
  height: 41px;
  margin-bottom: 6px;
  fill: #c7c7c7;
}

.calculate-icon01:hover {
  fill: #80b542;
}

.calculate-icon03 {
  width: 72px;
  height: 41px;
  margin-bottom: 6px;
  fill: #c7c7c7;
}

.calculate-icon03:hover {
  fill: #80b542;
}

.calculate-icon04 {
  width: 78px;
  height: 55px;
  margin-bottom: 6px;
  fill: #c7c7c7;
}

.calculate-icon04:hover {
  fill: #80b542;
}

.h-m-options {
  background: #80b542;
  padding: 41px 0 48px 0;
  text-align: center;
}

.h-m-options h2 {
  font: 500 30px/20px 'Roboto', sans-serif;
  padding-bottom: 41px;
  text-transform: uppercase;
  color: #fff;
  transition: all 0.6s ease;
}

.h-m-options h2 a {
  color: #fff;
  transition: all 0.6s ease;
}

.h-m-options h2 a:hover {
  color: #80b542;
}

@media (max-width: 767px) {
  .h-m-options h2 {
    padding-bottom: 0;
    font: 500 26px/20px "Roboto",sans-serif;
  }
}

.h-m-options-box-outer {
  margin: 0;
  padding: 0;
  color: #fff;
}

.h-m-options-box-outer .h-m-options-box {
  text-align: center;
  display: block;
  padding: 15px 33px 37px 33px;
  border-right: 1px solid #6d74b5;
  border-bottom: 1px solid #6d74b5;
  box-shadow: 1px 1px 1px #2f5f88;
}

.h-m-options-box-outer .h-m-options-box h3 {
  font: 400 20px/20px 'Roboto', sans-serif;
  color: #fff;
}

.h-m-options-box-outer .h-m-options-box h3 a {
  color: #fff;
}

@media (max-width: 1024px) {
  .h-m-options-box-outer .h-m-options-box h3 {
    font: 400 15px/20px 'Roboto', sans-serif;
  }
}

.h-m-options-box-outer .h-m-options-box:hover {
  color: #5f66d4;
}

.h-m-options-box-outer .h-m-options-box:hover h3 a {
  color: #5f66d4;
}

.h-m-options-box-outer .h-m-options-box:hover .h-m-options-icon {
  fill: #5f66d4;
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
  transition: all 0.6s;
}

.h-m-options-box-outer .h-m-options-box:hover .h-m-options-icon-03 {
  stroke: #5f66d4;
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
  transition: all 0.6s;
}

.h-m-options-box-outer .h-m-options-box:nth-child(8) {
  border-right: none;
  box-shadow: 0px 1px 0px #2f5f88;
}

@media (max-width: 991px) {
  .h-m-options-box-outer .h-m-options-box:nth-child(4) {
    border-right: none;
    box-shadow: 0px 1px 0px #2f5f88;
  }
}

@media (max-width: 767px) {
  .h-m-options-box-outer .h-m-options-box:nth-child(2) {
    border-right: none;
    box-shadow: none;
  }
  .h-m-options-box-outer .h-m-options-box:nth-child(6) {
    border-right: none;
    box-shadow: none;
  }
}

.h-m-options-box-outer .h-m-options-box02 {
  text-align: center;
  display: block;
  padding: 42px 33px 15px 33px;
  border-right: 1px solid #6d74b5;
  box-shadow: 1px 0px 0px #2f5f88;
}

.h-m-options-box-outer .h-m-options-box02 h3 {
  font: 400 20px/20px 'Roboto', sans-serif;
  color: #fff;
}

.h-m-options-box-outer .h-m-options-box02 h3 a {
  color: #fff;
}

@media (max-width: 1024px) {
  .h-m-options-box-outer .h-m-options-box02 h3 {
    font: 400 15px/20px 'Roboto', sans-serif;
  }
}

.h-m-options-box-outer .h-m-options-box02:hover {
  color: #5f66d4;
}

.h-m-options-box-outer .h-m-options-box02:hover h3 a {
  color: #5f66d4;
}

.h-m-options-box-outer .h-m-options-box02:hover .h-m-options-icon {
  fill: #5f66d4;
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
  transition: all 1s;
}

.h-m-options-box-outer .h-m-options-box02:hover .h-m-options-icon-03 {
  stroke: #5f66d4;
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
  transition: all 1s;
}

.h-m-options-box-outer .h-m-options-box02:hover .h-m-options-icon-05 {
  stroke: #5f66d4;
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
  transition: all 1s;
  fill: #5f66d4;
}

.h-m-options-box-outer .h-m-options-box02:nth-last-child(1) {
  border-right: none;
  box-shadow: 0px 0px 0px #2f5f88;
}

@media (max-width: 991px) {
  .h-m-options-box-outer .h-m-options-box02:nth-child(10) {
    box-shadow: 0px 1px 0px #2f5f88;
    border-bottom: 1px solid #6d74b5;
  }
  .h-m-options-box-outer .h-m-options-box02:nth-child(12) {
    border-right: none;
    box-shadow: 0px 1px 0px #2f5f88;
    border-bottom: 1px solid #6d74b5;
  }
}

@media (max-width: 767px) {
  .h-m-options-box-outer .h-m-options-box02:nth-child(10) {
    border-right: none;
    box-shadow: none;
  }
  .h-m-options-box-outer .h-m-options-box02:nth-child(14) {
    border-right: none;
    box-shadow: none;
    border-bottom: 1px solid #6d74b5;
  }
}

.h-m-options-icon {
  width: 112px;
  height: 100px;
  margin-bottom: 33px;
  fill: #fff;
  transition: all 1s;
}

.h-m-options-icon-03 {
  width: 112px;
  height: 100px;
  margin-bottom: 33px;
  fill: none;
  stroke: #fff;
  transition: all 1s;
}

.h-m-options-icon-05 {
  width: 112px;
  height: 100px;
  margin-bottom: 33px;
  fill: #fff;
  stroke: #fff;
  transition: all 1s;
}

.h-m-types {
  background: url(../img/mortgage-types-bg.jpg) center top no-repeat;
  height: 746px;
  background-size: cover;
  padding: 20px 0 38px 0;
  /*-----------Vertical tabs-----------*/
  /*-----------Accordion styles-----------*/
}

@media (max-width: 991px) {
  .h-m-types {
    height: auto;
  }
}

.h-m-types h2 {
  font: 500 30px/20px 'Roboto', sans-serif;
  color: #fff;
  background: #80b542;
  padding: 14px 21px;
  margin-bottom: 15px;
  text-transform: uppercase;
  display: inline-block;
}

.h-m-types h2 a {
  color: #fff;
}

@media (max-width: 767px) {
  .h-m-types h2 {
    font: 500 29px/20px "Roboto",sans-serif;
  }
}

.h-m-types ul.resp-tabs-list, .h-m-types p {
  margin: 0px;
  padding: 0px;
  color: #626262;
  font: 300 15px/24px 'Roboto', sans-serif;
}

.h-m-types .resp-tab-content p {
  padding-bottom: 26px;
}

.h-m-types .resp-tabs-list {
  margin: 0 !important;
}

.h-m-types .resp-tabs-list li {
  font: 500 15px 'Roboto', sans-serif;
  display: inline-block;
  padding: 13px 15px;
  margin: 0 0px 0 0;
  list-style: none;
  cursor: pointer;
  float: left;
}

.h-m-types .resp-tabs-container {
  padding: 0px;
  background-color: #fff;
  clear: left;
}

.resp-tabs-container img {
  margin-bottom: 25px;
}

.h-m-types h2.resp-accordion {
  cursor: pointer;
  padding: 5px;
  display: none;
}

.h-m-types .resp-tab-content {
  display: none;
  padding: 36px 38px 15px 37px;
}

.h-m-types .resp-tab-active {
  border-bottom: none;
  padding: 12px 14px 14px 14px !important;
}

.h-m-types .resp-tab-active {
  border-bottom: none;
  background-color: #fff;
}

.h-m-types .resp-content-active, .h-m-types .resp-accordion-active {
  display: block;
}

.h-m-types .resp-tab-content {
  border: 1px solid #c1c1c1;
  border-top-color: #5AB1D0;
}

.h-m-types .resp-tab-content .read-more {
  background: #80b542;
  color: #fff;
  text-transform: uppercase;
  font: 500 17px 'Roboto', sans-serif;
  padding: 11px 25px;
  float: right;
  margin-top: 15px;
}

.h-m-types .resp-tab-content h3 {
  color: #626262;
  font: 400 24px/27px 'Roboto', sans-serif;
  padding-bottom: 16px;
  margin: 0;
}

.h-m-types h2.resp-accordion {
  font-size: 13px;
  border: 1px solid #c1c1c1;
  border-top: 0px solid #c1c1c1;
  margin: 0px;
  padding: 10px 15px;
}

.h-m-types h2.resp-tab-active {
  border-bottom: 0px solid #c1c1c1 !important;
  margin-bottom: 0px !important;
  padding: 10px 15px !important;
}

.h-m-types h2.resp-tab-title:last-child {
  border-bottom: 12px solid #c1c1c1 !important;
  background: blue;
}

.h-m-types .resp-vtabs ul.resp-tabs-list {
  float: left;
  width: 28%;
}

.h-m-types .resp-vtabs .resp-tabs-list li {
  display: block;
  padding: 15px 15px 15px 25px !important;
  margin: 0;
  cursor: pointer;
  float: none;
  color: #fff;
}

@media (max-width: 1024px) {
  .h-m-types .resp-vtabs .resp-tabs-list li {
    font-size: 14px;
    padding: 16px 15px 15.1px 25px !important;
  }
}

.h-m-types .resp-vtabs .resp-tabs-container {
  padding: 0px;
  background-color: #fff;
  float: left;
  width: 72%;
  min-height: 637px;
  clear: none;
}

.h-m-types .resp-vtabs .resp-tab-content {
  border: none;
  word-wrap: break-word;
}

.h-m-types .resp-vtabs li.resp-tab-active {
  position: relative;
  z-index: 1;
  padding: 15px 15px 15px 25px !important;
  margin-bottom: 0;
  color: #626262;
}

.h-m-types .resp-arrow {
  width: 0;
  height: 0;
  float: right;
  margin-top: 3px;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 12px solid #c1c1c1;
}

.h-m-types h2.resp-tab-active span.resp-arrow {
  border: none;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 12px solid #9B9797;
}

.h-m-types h2.resp-tab-active {
  background: #DBDBDB;
  /* !important;*/
  color: #000;
}

.h-m-types .resp-easy-accordion h2.resp-accordion {
  display: block;
}

.h-m-types .resp-easy-accordion .resp-tab-content {
  border: 1px solid #c1c1c1;
}

.h-m-types .resp-easy-accordion .resp-tab-content:last-child {
  border-bottom: 1px solid #c1c1c1;
  /* !important;*/
}

.h-m-types .resp-jfit {
  width: 100%;
  margin: 0px;
}

.h-m-types .resp-tab-content-active {
  display: block;
}

.h-m-types h2.resp-accordion:first-child {
  border-top: 1px solid #c1c1c1;
}

@media only screen and (max-width: 768px) {
  .h-m-types ul.resp-tabs-list {
    display: none;
  }
  .h-m-types h2.resp-accordion {
    display: block;
  }
  .h-m-types .resp-vtabs .resp-tab-content {
    border: 1px solid #C1C1C1;
  }
  .h-m-types .resp-vtabs .resp-tabs-container {
    border: none;
    float: none;
    width: 100%;
    min-height: 100px;
    clear: none;
  }
  .h-m-types .resp-accordion-closed {
    display: none !important;
  }
  .h-m-types .resp-vtabs .resp-tab-content:last-child {
    border-bottom: 1px solid #c1c1c1 !important;
  }
}

.h-m-rates {
  padding: 40px 0 38px 0;
}

.fl-iframe {
  width: 100%;
  height: 450px;
}

.h-m-rates h2 {
  color: #626262;
  font: 400 30px/32px 'Roboto', sans-serif;
  text-transform: uppercase;
  float: left;
  padding-bottom: 24px;
  margin: 0;
}

.h-m-rates .m-rates-chart table {
  margin: 0;
}

.h-m-rates .m-rates-chart th {
  width: 105px;
  border: 1px solid #d6d6d6;
  padding: 19px 0;
  text-align: center;
  font: 600 14px/24px 'Roboto', sans-serif;
  background: #5c5c5c;
  color: #fff;
  vertical-align: middle;
}

.h-m-rates .m-rates-chart th:nth-child(1) {
  background: #333333;
}

.h-m-rates .m-rates-chart td {
  width: 105px;
  border: 1px solid #d6d6d6;
  padding: 20px 0;
  text-align: center;
  font: 300 14px/24px 'Roboto', sans-serif;
  vertical-align: middle;
}

.h-m-rates .m-rates-chart td:nth-child(2) {
  background: #333333;
  color: #fff;
}

.h-m-rates .m-rates-chart .table-footer {
  background: #5c5c5c;
  width: 100%;
  padding: 9px 0 7px 0;
  margin-bottom: 15px;
  margin-top: -1px;
}

.h-m-rates .m-rates-chart .table-footer .footer-icon {
  background: url(../img/m-rate-table-icon.png) center bottom no-repeat;
  width: 30px;
  height: 30px;
  display: block;
  margin: 0 auto;
  transition: all 0.5s ease 0s;
}

.h-m-rates .m-rates-chart .table-footer .footer-icon:hover {
  background: url(../img/m-rate-table-icon.png) center top no-repeat;
  width: 30px;
  height: 30px;
}

.h-m-rates .m-rates-form {
  background: #333333;
  padding: 23px 13px 15px 13px;
}

.h-m-rates .m-rates-form h3 {
  font: 400 30px/32px 'Roboto', sans-serif;
  color: #fff;
  padding-bottom: 15px;
  text-transform: uppercase;
  float: left;
  margin: 0;
}

.h-m-rates .m-rates-form input[type="text"], .h-m-rates .m-rates-form input[type="tel"], .h-m-rates .m-rates-form input[type="email"] {
  color: #626262;
  padding: 8px 12px;
  border: 1px solid #333333;
  width: 100%;
  margin-bottom: 9px;
  font: 300 15px 'Roboto', sans-serif;
}

.h-m-rates .m-rates-form textarea {
  height: 135px;
  color: #626262;
  padding: 12px 12px;
  border: 1px solid #333333;
  width: 100%;
  margin-bottom: 9px;
  font: 300 15px 'Roboto', sans-serif;
}

.h-m-rates .m-rates-form select {
  border: 1px solid #333333;
  width: 100%;
  margin-bottom: 9px;
  padding: 8px 12px;
  font: 300 15px 'Roboto', sans-serif;
}

.h-m-rates .m-rates-form select option {
  padding: 0px 3px 0 12px;
}

.h-m-rates .m-rates-form p {
  font: 300 14px/23px 'Roboto', sans-serif;
  color: #fff;
  padding-bottom: 7px;
  text-align: right;
}

.h-m-rates .m-rates-form p span {
  text-transform: uppercase;
}

.h-m-rates .m-rates-form .submit-btn {
  color: #fff;
  background: #80b542;
  font: 500 17px 'Roboto', sans-serif;
  text-transform: uppercase;
  padding: 10px 20px;
  transition: all 0.5s ease;
  float: right;
}

.h-m-rates .m-rates-form .submit-btn:hover {
  background: #80b542;
  transition: all 0.5s ease;
}

.h-blog-reminder-sec {
  border-bottom: 1px solid #cccccc;
  padding-bottom: 45px;
}

.h-blog-reminder-sec .top-box {
  border: 1px solid #dfdfdf;
  display: block;
  padding: 35px 28px 15px 28px;
  min-height: 292px;
}

@media (max-width: 1024px) {
  .h-blog-reminder-sec .top-box {
    min-height: 359px;
  }
}

@media (max-width: 991px) {
  .h-blog-reminder-sec .top-box {
    min-height: 20px;
    height: auto;
  }
}

.h-blog-reminder-sec .top-box h2 {
  color: #626262;
  font: 600 20px 'Roboto', sans-serif;
  padding-bottom: 12px;
  text-transform: uppercase;
  margin: 0;
}

@media (max-width: 1024px) {
  .h-blog-reminder-sec .top-box h2 {
    font-size: 17px;
  }
}

.h-blog-reminder-sec .top-box p {
  color: #626262;
  font: 300 15px/24px 'Roboto', sans-serif;
}

.h-blog-reminder-sec .top-box p a {
  font: 400 15px/16px 'Roboto', sans-serif;
  color: #626262;
  border-bottom: 1px solid #626262;
  margin: 0;
  padding: 0;
}

@media (max-width: 767px) {
  .h-blog-reminder-sec .top-box p a {
    display: inline-block;
  }
}

.h-blog-reminder-sec .top-box p a:hover {
  color: #80b542;
}

.h-blog-reminder-sec .top-box h4 {
  color: #626262;
  font: 400 17px/24px 'Roboto', sans-serif;
  padding-bottom: 10px;
  margin: 0;
}

.h-blog-reminder-sec .top-box:nth-child(1) {
  border-right: none;
  border-bottom: none;
}

@media (max-width: 991px) {
  .h-blog-reminder-sec .top-box:nth-child(1) {
    border-right: 1px solid #dfdfdf;
  }
}

.h-blog-reminder-sec .top-box:nth-child(2) {
  border-right: none;
  border-bottom: none;
}

@media (max-width: 991px) {
  .h-blog-reminder-sec .top-box:nth-child(2) {
    border-right: 1px solid #dfdfdf;
  }
}

.h-blog-reminder-sec .top-box:nth-child(3) {
  border-bottom: none;
}

.h-blog-reminder-sec .top-box:nth-child(4) {
  border-right: none;
}

@media (max-width: 991px) {
  .h-blog-reminder-sec .top-box:nth-child(4) {
    border-right: 1px solid #dfdfdf;
  }
}

.h-blog-reminder-sec .bottom-box {
  border: 1px solid #dfdfdf;
  display: block;
  padding: 0;
  min-height: 292px;
}

.h-blog-reminder-sec .bottom-box h2 {
  color: #626262;
  font: 600 20px 'Roboto', sans-serif;
  padding-bottom: 12px;
  text-transform: uppercase;
  margin: 0;
}

.h-blog-reminder-sec .bottom-box p {
  color: #626262;
  font: 300 15px/24px 'Roboto', sans-serif;
}

.h-blog-reminder-sec .bottom-box p a {
  font: 400 15px/24px 'Roboto', sans-serif;
  color: #626262;
}

.h-blog-reminder-sec .bottom-box p a:hover {
  color: #80b542;
}

.h-blog-reminder-sec .bottom-box h4 {
  color: #626262;
  font: 400 17px/24px 'Roboto', sans-serif;
  padding-bottom: 10px;
  margin: 0;
}

.h-blog-reminder-sec .bottom-box:nth-child(4) {
  border-right: none;
}

@media (max-width: 991px) {
  .h-blog-reminder-sec .bottom-box:nth-child(4) {
    border-right: 1px solid #dfdfdf;
  }
}

.h-blog-reminder-sec .bottom-box:nth-child(5) {
  border-right: none;
}

@media (max-width: 991px) {
  .h-blog-reminder-sec .bottom-box:nth-child(5) {
    border-right: 1px solid #dfdfdf;
  }
}

.h-blog-reminder-sec .bottom-box .nws-ltr-inner {
  padding: 25px 23px 0px 23px;
}

.h-blog-reminder-sec .bottom-box .nws-ltr-inner h3 {
  font: 300 50px/32px 'Tienne', serif;
  color: #a3a3a3;
  margin: 0;
  padding-bottom: 16px;
}

.h-blog-reminder-sec .bottom-box .nws-ltr-inner h3 span {
  color: #981c24;
  font: 500 25px/24px 'Roboto', sans-serif;
}

.h-blog-reminder-sec .bottom-box .nws-ltr-inner .txt {
  font: 300 13px/16px 'Roboto', sans-serif;
  color: #626262;
  text-transform: uppercase;
  padding-bottom: 5px;
}

.h-blog-reminder-sec .bottom-box .nws-ltr-inner .txt span {
  font: 500 13px/20px 'Roboto', sans-serif;
  color: #626262;
}

.nws-ltr {
  background: #333333;
  padding: 20px 14px 21px 14px;
}

@media (max-width: 991px) {
  .nws-ltr {
    padding: 31px 14px;
  }
}

.nws-ltr p {
  color: #fff !important;
  font: 300 17px/21px "Roboto", sans-serif !important;
  margin: 0;
  padding-bottom: 8px;
}

.nws-ltr input {
  background: #fff;
  padding: 10px 11px;
  width: 60%;
  float: left;
  border: none;
  height: 41px;
}

.nws-ltr .submit-btn {
  float: left;
  font: 500 17px 'Roboto', sans-serif;
  text-transform: uppercase;
  color: #fff;
  padding: 10px 11px;
  background: #80b542;
  transition: all 0.5s ease;
  height: 41px;
}

.nws-ltr .submit-btn:hover {
  background: #80b542;
  transition: all 0.5s ease;
}

.m-reminder {
  padding: 32px 28px 15px 28px;
}

.m-reminder input[type="tel"] {
  width: 30.5%;
  font: 300 15px 'Roboto', sans-serif;
  padding: 10px 10px;
  margin-right: 7px;
  border: 1px solid #cacaca;
  margin-bottom: 11px;
  /* === Mozila Hack ===
				@-moz-document url-prefix() {
					width:31%;
				} */
}

@media (max-width: 1024px) {
  .m-reminder input[type="tel"] {
    width: 30.4%;
  }
}

@media (max-width: 991px) {
  .m-reminder input[type="tel"] {
    width: 32.2%;
  }
}

@media (max-width: 767px) {
  .m-reminder input[type="tel"] {
    width: 30%;
  }
}

.m-reminder input:nth-child(5) {
  margin-right: 0;
}

.m-reminder input[type="email"] {
  width: 100%;
  font: 300 15px 'Roboto', sans-serif;
  border: 1px solid #cacaca;
  padding: 10px 10px;
  margin-bottom: 25px;
}

.m-reminder .notify-btn {
  background: #80b542;
  float: right;
  color: #fff;
  font: 500 17px 'Roboto', sans-serif;
  padding: 10px 26px;
  text-transform: uppercase;
}

.get-started-bx {
  background: url(../img/get-started-bg.png) center center no-repeat;
  background-size: cover;
  min-height: 290px;
  widows: 100%;
}

@media (max-width: 1024px) {
  .get-started-bx {
    min-height: 239px;
  }
}

@media (max-width: 991px) {
  .get-started-bx {
    min-height: 558px;
  }
}

@media (max-width: 767px) {
  .get-started-bx {
    min-height: 225px;
  }
}

.get-started-bx .get-started-inner {
  background: #333333;
  padding: 11px 15px 10px 15px;
  position: absolute;
  width: 100%;
  bottom: 0;
}

.get-started-bx .get-started-inner h5 {
  font: 400 25px 'Roboto', sans-serif;
  color: #fff;
  margin-bottom: 13px;
  padding: 0;
}

@media (max-width: 1024px) {
  .get-started-bx .get-started-inner h5 {
    font-size: 21px;
  }
}

@media (max-width: 767px) {
  .get-started-bx .get-started-inner h5 {
    font-size: 19px;
  }
}

.get-started-bx .get-started-inner p {
  font: 300 15px/20px 'Roboto', sans-serif;
  color: #fff;
  margin: 0;
}

.get-started-bx .get-started-inner .get-start-btn {
  font: 600 14px/22px 'Roboto', sans-serif;
  padding: 12px 13px;
  color: #fff;
  text-transform: uppercase;
  background: #80b542;
}

@media (max-width: 1024px) {
  .get-started-bx .get-started-inner .get-start-btn {
    font: 600 10px/22px 'Roboto', sans-serif;
  }
}

@media (max-width: 991px) {
  .get-started-bx .get-started-inner .get-start-btn {
    font: 600 14px/22px 'Roboto', sans-serif;
  }
}

.get-started-bx .text-box {
  float: left;
  width: 60%;
}

@media (max-width: 767px) {
  .get-started-bx .text-box {
    width: 100%;
    float: none;
    padding: 0 0 16px 0;
  }
}

.get-started-bx .btn-box {
  float: right;
  width: 35%;
  padding-left: 5px;
}

@media (max-width: 991px) {
  .get-started-bx .btn-box {
    margin: 0 0 12px;
    text-align: right;
  }
}

@media (max-width: 767px) {
  .get-started-bx .btn-box {
    width: 100%;
    float: none;
  }
}

.h-flex-mortgage-sec {
  padding: 23px 0 53px 0;
  text-align: center;
}

.h-flex-mortgage-sec h2 {
  color: #626262;
  font: 500 30px/22px 'Roboto', sans-serif;
  text-transform: uppercase;
  padding-bottom: 22px;
  margin: 0;
}

@media (max-width: 767px) {
  .h-flex-mortgage-sec h2 {
    font: 500 21px/25px "Roboto",sans-serif;
  }
}

.h-flex-mortgage-sec .contact-btn {
  font: 400 17px 'Roboto', sans-serif;
  background: #80b542;
  text-transform: uppercase;
  color: #fff;
  padding: 10px 15px;
  display: inline-block;
}

footer {
  background: #80b542;
}

footer .footer-navigation {
  padding: 100px 0 30px 0;
  position: relative;
  border-bottom: 1px solid #89bf49;
}

@media (max-width: 767px) {
  footer .footer-navigation {
    padding: 70px 0 30px 0;
  }
}

footer .footer-navigation .lf-icon {
  background: url(../img/footer-leaf.png) center top no-repeat;
  height: 84px;
  width: 125px;
  position: absolute;
  left: 50%;
  margin-left: -62px;
  top: -21px;
  display: inline-block;
}

footer .footer-navigation .footer-nav01 {
  list-style: none;
  text-align: center;
}

@media (max-width: 767px) {
  footer .footer-navigation .footer-nav01 {
    text-align: center;
  }
}

footer .footer-navigation .footer-nav01 li {
  font: 300 15px 'Roboto', sans-serif;
  padding: 0 25px 13px 25px;
  display: inline-block;
}

@media (max-width: 767px) {
  footer .footer-navigation .footer-nav01 li {
    padding: 8px 0 8px 0;
  }
  footer .footer-navigation .footer-nav01 li:last-child {
    border-bottom: none;
  }
}

footer .footer-navigation .footer-nav01 li a {
  color: #eeeeee;
}

footer .footer-navigation .footer-nav01 li a span {
  color: #eeeeee;
  font: 700 15px 'Roboto', sans-serif;
  padding: 0 0 13px 0;
  text-transform: uppercase;
}

@media (max-width: 1024px) {
  footer .footer-navigation .footer-nav01 li a span {
    font-size: 13px;
  }
}

@media (max-width: 991px) {
  footer .footer-navigation .footer-nav01 li a span {
    font-size: 15px;
  }
}

footer .footer-navigation .footer-nav01 li a:hover {
  color: #000;
}

footer .footer-navigation .footer-nav01 li a:hover span {
  color: #000;
}

footer .footer-navigation .footer-nav02 {
  list-style: none;
}

@media (max-width: 767px) {
  footer .footer-navigation .footer-nav02 {
    display: none;
  }
}

footer .footer-navigation .footer-nav02 li {
  font: 300 14px 'Roboto', sans-serif;
  padding: 0 0 13px 0;
}

footer .footer-navigation .footer-nav02 li:first-child a:before {
  content: "";
  padding: 0;
}

footer .footer-navigation .footer-nav02 li a {
  color: #eeeeee;
}

footer .footer-navigation .footer-nav02 li a span {
  color: #eeeeee;
  font: 700 15px 'Roboto', sans-serif;
  padding: 0 0 13px 0;
  text-transform: uppercase;
}

@media (max-width: 1024px) {
  footer .footer-navigation .footer-nav02 li a span {
    font-size: 13px;
  }
}

@media (max-width: 991px) {
  footer .footer-navigation .footer-nav02 li a span {
    font-size: 15px;
  }
}

footer .footer-navigation .footer-nav02 li a:before {
  content: "\25C6";
  color: #a4a8d1;
  padding: 0 10px 0 0;
  transition: all 0.5s ease 0s;
}

footer .footer-navigation .footer-nav02 li a:hover {
  color: #6f77f3;
}

footer .footer-navigation .footer-nav02 li a:hover span {
  color: #6f77f3;
}

footer .footer-navigation .footer-nav02 li a:hover:before {
  color: #6f77f3;
  /* padding: 0 8px 0 0; */
}

footer .footer-navigation .footer-nav02 li ul {
  list-style: none;
  padding: 5px 0 0 23px;
}

footer .footer-navigation .footer-nav02 li ul li {
  padding: 10px 0 0px 0;
}

footer .footer-navigation .footer-nav02 li ul li:first-child a:before {
  content: "\25C6";
  color: #a4a8d1;
  padding: 0 10px 0 0;
}

footer .footer-navigation .footer-nav02 li ul li a {
  color: #eeeeee;
}

footer .footer-navigation .footer-nav02 li ul li a:before {
  content: "\25C6";
  color: #a4a8d1;
  padding: 0 10px 0 0;
  transition: all 0.5s ease 0s;
}

footer .footer-sm-phn-sec {
  padding: 15px 0;
  border-bottom: 1px solid #89bf49;
  text-align: center;
}

footer .footer-sm-phn-sec p {
  font: 300 25px 'Roboto', sans-serif;
  color: #fff;
  margin: 0;
  padding-bottom: 6px;
}

footer .footer-sm-phn-sec p span {
  font: 400 35px 'Roboto', sans-serif;
  color: #fff;
}

footer .footer-sm-phn-sec .sm-icons a {
  font-size: 18px;
  margin-right: 7px;
  color: #fff;
  display: inline-block;
  transition: all 0.6s ease;
}

footer .footer-sm-phn-sec .sm-icons a:hover {
  color: #000;
  transition: all 0.6s ease;
}

footer .footer-tw-sec {
  padding: 26px 0 12px 0;
  text-align: center;
}

footer .footer-tw-sec p {
  font: 300 15px 'Roboto', sans-serif;
  color: #fff;
  margin: 0;
  padding: 0 0 6px 0;
}

footer .footer-tw-sec a {
  font: 300 15px 'Roboto', sans-serif;
  color: #fff;
  margin-bottom: 15px;
}

footer .footer-tw-sec a:hover {
  color: #a4a8d1;
}

footer .footer-tw-sec .tw-logo {
  display: inline-block;
  margin: 0 auto;
}

@media (max-width: 991px) {
  footer .footer-device-menu01 {
    width: 50%;
    float: left;
    clear: left;
  }
  footer .footer-device-menu02 {
    width: 50%;
    float: right;
  }
}

.inner-banner {
  background: url(../img/inner-banner.jpg) center top no-repeat;
  height: 437px;
}

.inner-banner .banner-txt01 {
  top: 21%;
  position: absolute;
  text-align: center;
  width: 100%;
}

@media (max-width: 991px) {
  .inner-banner .banner-txt01 {
    top: 18%;
  }
}

@media (max-width: 767px) {
  .inner-banner .banner-txt01 {
    top: 20%;
  }
}

.inner-banner .banner-txt01 p {
  font: 900 50px/44px 'Roboto', sans-serif;
  color: #fff;
  padding-bottom: 10px;
  margin: 0;
}

@media (max-width: 991px) {
  .inner-banner .banner-txt01 p {
    font: 900 35px/43px "Roboto",sans-serif;
  }
}

@media (max-width: 767px) {
  .inner-banner .banner-txt01 p {
    font: 900 25px/31px "Roboto",sans-serif;
  }
}

@media (max-width: 479px) {
  .inner-banner .banner-txt01 p {
    font: 900 20px/28px "Roboto",sans-serif;
  }
}

.inner-banner .banner-txt01 p span {
  font: 400 21px/30px 'Roboto', sans-serif;
  color: #fff;
}

@media (max-width: 991px) {
  .inner-banner .banner-txt01 p span {
    font: 400 26px/32px "Roboto",sans-serif;
  }
}

@media (max-width: 767px) {
  .inner-banner .banner-txt01 p span {
    font: 400 17px/25px "Roboto",sans-serif;
  }
}

@media (max-width: 479px) {
  .inner-banner .banner-txt01 p span {
    font: 900 18px/25px "Roboto",sans-serif;
  }
}

.inner-banner .banner-txt01 .btn-aply-nw {
  font: 400 22px 'Roboto', sans-serif;
  text-transform: uppercase;
  padding: 9px 52px;
  border: 2px solid #fff;
}

@media (max-width: 479px) {
  .inner-banner .banner-txt01 .btn-aply-nw {
    display: block;
    margin: 0 25px;
  }
}

.inner-banner .banner-txt01 .btn-ask-exprt {
  font: 400 22px 'Roboto', sans-serif;
  text-transform: uppercase;
  padding: 9px 32px;
  border: 2px solid #fff;
  display: inline-block;
  margin-top: 15px;
}

@media (max-width: 479px) {
  .inner-banner .banner-txt01 .btn-ask-exprt {
    display: block;
    margin: 0 25px 15px 25px;
  }
}

.address p {
  font: 500 16px/27px 'Roboto', sans-serif!important;
}

.breadcrumb {
  padding: 24px 0;
}

.breadcrumb ul {
  list-style: none;
}

.breadcrumb ul li {
  display: inline-block;
  color: #80b542;
  font: 400 13px/22px 'Roboto', sans-serif;
}

.breadcrumb ul li a {
  color: #898989;
  font: 400 13px/22px 'Roboto', sans-serif;
}

.breadcrumb ul li a:hover {
  color: #80b542;
}

.inner-page {
  padding: 50px 0 20px 0;
}

.inner-page .inner-sidebar .m-types {
  margin-bottom: 35px;
  background: #ebebeb;
}

.inner-page .inner-sidebar .m-types h4 {
  background: #80b542;
  color: #fff;
  font: 500 25px/28px 'Roboto', sans-serif;
  margin: 0;
  padding: 9px 0 8px 15px;
  text-align: left;
  text-transform: uppercase;
}

.inner-page .inner-sidebar .m-types ul {
  list-style: none;
  overflow: hidden;
}

.inner-page .inner-sidebar .m-types ul li {
  display: block;
  border-bottom: 1px dashed #bfbfbf;
}

.inner-page .inner-sidebar .m-types ul li a {
  font: 300 15px/24px 'Roboto', sans-serif;
  padding: 6px 0 6px 15px;
  color: #111111;
  display: block;
}

.inner-page .inner-sidebar .m-types ul li a:hover {
  color: #fff;
}

.inner-page .inner-sidebar .m-types ul li:last-child {
  border-bottom: none;
}

.inner-page .inner-sidebar .m-calculate {
  border: 1px solid #e1e1e1;
  margin-bottom: 38px;
}

.inner-page .inner-sidebar .m-calculate h4 {
  background: #80b542;
  color: #fff;
  font: 500 20px/25px 'Roboto', sans-serif;
  margin: 0;
  padding: 11px 0 10px 7px;
  text-align: left;
  text-transform: uppercase;
}

@media (max-width: 1024px) {
  .inner-page .inner-sidebar .m-calculate h4 {
    font-size: 16px;
  }
}

@media (max-width: 991px) {
  .inner-page .inner-sidebar .m-calculate h4 {
    font-size: 20px;
  }
}

.inner-page .inner-sidebar .m-calculate ul {
  list-style: none;
  overflow: hidden;
}

.inner-page .inner-sidebar .m-calculate ul li {
  display: block;
  border-bottom: 1px solid #e1e1e1;
  position: relative;
}

.inner-page .inner-sidebar .m-calculate ul li a {
  font: 300 14px/24px 'Roboto', sans-serif;
  padding: 12px 0 13px 57px;
  color: #111111;
  display: block;
}

.inner-page .inner-sidebar .m-calculate ul li a:hover {
  color: #fff;
}

.inner-page .inner-sidebar .m-calculate ul li a:hover .calculate-icon {
  fill: #80b542;
}

.inner-page .inner-sidebar .m-calculate ul li:last-child {
  border-bottom: none;
}

.inner-page .inner-sidebar .m-calculate .calculate-icon {
  display: inline-block;
  position: absolute;
  width: 33px;
  height: 30px;
  left: 8px;
  top: 7px;
  fill: #c7c7c7;
}

.inner-page .inner-sidebar .m-options {
  border: 1px solid #e1e1e1;
}

.inner-page .inner-sidebar .m-options h4 {
  background: #80b542;
  color: #fff;
  font: 500 20px/25px 'Roboto', sans-serif;
  margin: 0;
  padding: 11px 0 10px 7px;
  text-align: left;
  text-transform: uppercase;
}

.inner-page .inner-sidebar .m-options ul {
  list-style: none;
  overflow: hidden;
}

.inner-page .inner-sidebar .m-options ul li {
  display: block;
  border-bottom: 1px solid #e1e1e1;
  position: relative;
}

.inner-page .inner-sidebar .m-options ul li a {
  font: 300 14px/24px 'Roboto', sans-serif;
  padding: 12px 0 13px 57px;
  color: #111111;
  display: block;
}

.inner-page .inner-sidebar .m-options ul li a:hover {
  color: #fff;
}

.inner-page .inner-sidebar .m-options ul li a:hover .m-options-icon {
  fill: #80b542;
}

.inner-page .inner-sidebar .m-options ul li a:hover .m-options-icon-fm {
  stroke: #80b542;
}

.inner-page .inner-sidebar .m-options ul li a:hover .m-options-icon-mp {
  stroke: #80b542;
}

.inner-page .inner-sidebar .m-options ul li:last-child {
  border-bottom: none;
}

.inner-page .inner-sidebar .m-options .m-options-icon {
  display: inline-block;
  position: absolute;
  width: 33px;
  height: 30px;
  left: 8px;
  top: 7px;
  fill: #929090;
}

.inner-page .inner-sidebar .m-options .m-options-icon-fm {
  display: inline-block;
  position: absolute;
  width: 33px;
  height: 30px;
  left: 8px;
  top: 7px;
  fill: #929090;
  stroke: #929090;
}

.inner-page .inner-sidebar .m-options .m-options-icon-mp {
  display: inline-block;
  position: absolute;
  width: 33px;
  height: 30px;
  left: 8px;
  top: 7px;
  fill: none;
  stroke: #929090;
}

.inner-page .inner-content-area h1 {
  color: #111111;
  font: 600 25px/28px 'Roboto', sans-serif;
  margin: 0;
  padding-bottom: 30px;
  text-transform: uppercase;
}

.inner-page .inner-content-area p {
  font: 300 15px/24px 'Roboto', sans-serif;
  color: #111111;
  padding-bottom: 30px;
  margin: 0;
}

.inner-page .inner-content-area p a {
  color: #80b542;
}

.inner-page .inner-content-area p a:hover {
  color: #111111;
}

.inner-page .inner-content-area h2 {
  font: 700 20px/24px 'Roboto', sans-serif;
  color: #80b542;
  margin: 0;
  padding-bottom: 24px;
}

.inner-page .inner-content-area h3 {
  font: 400 18px/24px 'Roboto', sans-serif;
  color: #111111;
  margin: 0;
  padding-bottom: 18px;
}

.inner-page .inner-content-area img {
  margin: 0 auto;
  max-width: 100%;
  margin-bottom: 33px;
}

.inner-page .inner-content-area ul {
  list-style: none;
  padding: 0 0 0 10px;
}

.inner-page .inner-content-area ul li {
  font: 300 15px/24px 'Roboto', sans-serif;
  color: #111111;
  padding: 0 0 4px 0;
  margin: 0;
}

.inner-page .inner-content-area ul li:before {
  content: "\25C6";
  color: #80b542;
  padding: 0 10px 0 0;
  transition: all 0.5s ease 0s;
}

.m-l-box {
  border: 1px solid #e1e1e1;
  padding: 14px;
  margin-bottom: 34px;
}

.m-l-box .img-wrap {
  min-height: 165px;
  margin-bottom: 17px;
  background: #e1e1e1;
  width: 100%;
  overflow: hidden;
  position: relative;
  text-align: center;
}

.m-l-box .img-wrap img {
  max-width: 100%;
  max-height: 100%;
  bottom: 0;
  top: 0;
  right: 0;
  left: 0;
  margin: auto;
  padding: 0;
  position: absolute;
}

.m-l-box h4 {
  font: 600 15px/24px 'Roboto', sans-serif;
  color: #111111;
  padding-bottom: 8px;
  text-transform: uppercase;
  margin: 0;
}

@media (max-width: 1024px) {
  .m-l-box h4 {
    font-size: 13px;
  }
}

@media (max-width: 991px) {
  .m-l-box h4 {
    font-size: 15px;
  }
}

.m-l-box h4 a {
  color: #111111;
}

.m-l-box h4 a:hover {
  color: #80b542;
}

.m-l-box p {
  font: 300 15px/24px 'Roboto', sans-serif;
  color: #111111;
  margin: 0;
  padding: 0 !important;
}

.m-l-box p a {
  color: #80b542;
}

.m-l-box p a:hover {
  color: #111111;
}

.fade {
  opacity: 0;
  transition: opacity 0.15s linear;
}

.fade.in {
  opacity: 1;
}

.collapse {
  display: none;
}

.collapse.in {
  display: block;
}

tr.collapse.in {
  display: table-row;
}

tbody.collapse.in {
  display: table-row-group;
}

.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  transition-property: height, visibility;
  transition-duration: 0.35s;
  transition-timing-function: ease;
}

.close {
  float: right;
  font: 100 38px 'Roboto', sans-serif;
  color: #fff;
  filter: alpha(opacity=20);
}

.close:hover,
.close:focus {
  color: #981C24;
  text-decoration: none;
  cursor: pointer;
  opacity: 0.5;
  filter: alpha(opacity=50);
}

button.close {
  padding: 0px 20px 0px 0;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
}

body .modal-open {
  overflow: hidden;
  padding-right: 0 !important;
}

.modal {
  display: none;
  overflow: hidden;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  -webkit-overflow-scrolling: touch;
  outline: 0;
}

.modal.fade .modal-dialog {
  -webkit-transform: translate(0, -25%);
  -ms-transform: translate(0, -25%);
  transform: translate(0, -25%);
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}

.modal.in .modal-dialog {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
}

.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 10px;
}

.modal-content {
  position: relative;
  border: 1px solid #999999;
  border: 1px solid rgba(0, 0, 0, 0.2);
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  background-clip: padding-box;
  outline: 0;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000000;
}

.modal-backdrop.fade {
  opacity: 0;
  filter: alpha(opacity=0);
}

.modal-backdrop.in {
  opacity: 0.8;
  filter: alpha(opacity=50);
}

.modal-header {
  padding: 0px;
  background: rgba(0, 0, 0, 0.1);
}

.modal-header .close {
  margin-top: -2px;
}

.modal-title {
  margin: 0;
  line-height: 1.42857143;
  color: #fff;
  text-transform: uppercase;
  font: 400 20px 'Roboto', sans-serif;
  padding: 10px 0 10px 30px;
  background: #981c24;
  width: 155px;
}

.modal-title:after {
  height: 0;
  width: 40px;
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-bottom: 70px solid #981c24;
  border-right: 70px solid transparent;
  margin: auto;
  left: 155px;
  top: 0;
}

.modal-body {
  position: relative;
  padding: 25px 30px;
  background-color: #ffffff;
}

@media (min-width: 900px) {
  .modal-body .lft-wrp {
    float: left;
    width: 100%;
  }
  .modal-body .ryt-wrp {
    float: left;
    width: 100%;
  }
}

@media (min-width: 1024px) {
  .modal-body .lft-wrp {
    float: left;
    width: 50%;
    padding-right: 13px;
  }
  .modal-body .ryt-wrp {
    float: left;
    width: 50%;
    padding-left: 13px;
  }
}

.modal-body input[type="text"], .modal-body [type="email"], .modal-body [type="tel"], .modal-body textarea, .modal-body select {
  background: #f1f1f1;
  color: #7b7b7b;
  font: 300 15px 'Roboto', sans-serif;
  padding: 9px 0 9px 15px;
  width: 100%;
  margin-bottom: 10px;
  border: none;
}

.modal-body textarea {
  height: 77px;
  width: 100%;
  background: #f1f1f1;
  color: #7b7b7b;
  padding: 10px 0 10px 15px;
  border: none;
}

.modal-body p {
  font: 300 14px/22px 'Roboto', sans-serif;
  color: #75706d;
  margin-top: 8px;
  margin-bottom: 13px;
}

.modal-body p span {
  text-transform: uppercase;
  color: #000;
}

.modal-body .submit-btn {
  background: #2d338b;
  color: #fff;
  font: 400 19px/22px 'Roboto', sans-serif;
  text-transform: uppercase;
  padding: 10px 30px;
  float: right;
}

.modal-footer {
  padding: 15px;
  text-align: right;
  border-top: 1px solid #e5e5e5;
}

.modal-footer .btn + .btn {
  margin-left: 5px;
  margin-bottom: 0;
}

.modal-footer .btn-group .btn + .btn {
  margin-left: -1px;
}

.modal-footer .btn-block + .btn-block {
  margin-left: 0;
}

.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

@media (min-width: 768px) {
  .modal-dialog {
    width: 600px;
    margin: 60px auto 0;
  }
  .modal-content {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  }
  .modal-sm {
    width: 300px;
  }
}

@media (min-width: 992px) {
  .modal-lg {
    width: 900px;
  }
}

@media (min-width: 1024px) {
  .modal-dialog {
    width: 800px;
    margin: 150px auto 0;
  }
}

.clearfix:before,
.clearfix:after,
.modal-header:before,
.modal-header:after,
.modal-footer:before,
.modal-footer:after {
  content: " ";
  display: table;
}

.clearfix:after,
.modal-header:after,
.modal-footer:after {
  clear: both;
}

.b-f-box01 .image-box01 {
  position: relative;
}

.b-f-box01 .image-box01 img {
  width: 100%;
}

.b-f-box01 .image-box01 .featured-ribon {
  background: #981c24;
  color: #fff;
  font: 500 16px/22px 'Roboto', sans-serif;
  padding: 7px 12px 7px 0px;
  position: absolute;
  text-transform: uppercase;
  top: 15px;
  right: 0;
}

.b-f-box01 .image-box01 .featured-ribon:before {
  content: '';
  display: inline-block;
  float: left;
  height: 0;
  width: 0;
  border: 18px solid #981c24;
  border-left: 10px solid transparent;
  position: absolute;
  top: 0px;
  left: -28px;
}

.b-f-box01 .txt-box01 {
  position: absolute;
  background: #fff;
  padding: 15px 12px;
  border: 1px solid #ebebeb;
  width: 85%;
  right: 0;
  bottom: -54px;
}

.b-f-box01 .txt-box01 h2 {
  color: #333333;
  font: 500 19px/22px 'Roboto', sans-serif;
  margin: 0;
}

.b-f-box01 .txt-box01 h2 a {
  color: #333333;
}

.b-f-box01 .txt-box01 h2 a:hover {
  color: #80b542;
}

.b-f-box01 .date-box {
  width: 15%;
  left: 0;
  position: absolute;
  padding-top: 15px;
}

.b-f-box01 .date-box h3 {
  color: #80b542;
  font: 700 16px/22px 'Roboto', sans-serif;
  text-transform: uppercase;
  margin: 0;
}

.b-f-box01 .content-box01 {
  margin-top: 72px;
  margin-bottom: 15px;
  padding-bottom: 7px;
}

.b-f-box01 .content-box01 p {
  color: #333333;
  font: 300 15px/24px 'Roboto', sans-serif;
}

.b-f-box01 .content-box01 p a {
  color: #80b542;
}

.b-f-box01 .content-box01 p a:hover {
  color: #333;
}

.b-f-box01 .sm-cmnt-box01 .pb {
  float: left;
  margin-right: 15px;
}

.b-f-box01 .sm-cmnt-box01 .pb p {
  color: #6a6a6a;
  font: 300 12px/24px 'Roboto', sans-serif;
}

.b-f-box01 .sm-cmnt-box01 .pb p a {
  color: #80b542;
}

.b-f-box01 .sm-cmnt-box01 .pb p a:hover {
  color: #333;
}

.b-f-box01 .sm-cmnt-box01 .cmnt {
  float: left;
  color: #6a6a6a;
  font: 300 12px/24px 'Roboto', sans-serif;
  margin-right: 15px;
}

.b-f-box01 .sm-cmnt-box01 .sm {
  float: left;
}

.b-f-box01 .sm-cmnt-box01 .sm a {
  font-size: 13px;
  margin-right: 3px;
  color: #b2b3b4;
  display: inline-block;
}

.b-f-box01 .sm-cmnt-box01 .sm a:hover {
  color: #80b542;
}

.b-f-box02 {
  width: 100%;
}

.b-f-box02 .image-box02 {
  position: relative;
}

.b-f-box02 .image-box02 img {
  width: 100%;
  height: auto;
}

.b-f-box02 .txt-box02 {
  position: absolute;
  background: #fff;
  padding: 15px 12px;
  border: 1px solid #ebebeb;
  width: 85%;
  right: 0;
  bottom: -93px;
}

.b-f-box02 .txt-box02 h2 {
  color: #333333;
  font: 400 15px/21px 'Roboto', sans-serif;
  margin: 0;
}

.b-f-box02 .txt-box02 h2 a {
  color: #333333;
}

.b-f-box02 .txt-box02 h2 a:hover {
  color: #80b542;
}

.b-f-box02 .date-box02 {
  width: 15%;
  left: 0;
  position: absolute;
  padding-top: 15px;
}

.b-f-box02 .date-box02 h3 {
  color: #80b542;
  font: 700 16px/22px 'Roboto', sans-serif;
  text-transform: uppercase;
  margin: 0;
}

.b-f-box02 .content-box02 {
  margin-top: 111px;
  margin-bottom: 8px;
  padding-bottom: 7px;
  min-height: 92px;
}

.b-f-box02 .content-box02 p {
  color: #333333;
  font: 300 15px/24px 'Roboto', sans-serif;
}

.b-f-box02 .content-box02 p a {
  color: #80b542;
}

.b-f-box02 .content-box02 p a:hover {
  color: #333;
}

.b-f-box02 .sm-cmnt-box02 {
  min-height: 30px;
  margin-bottom: 35px;
}

.b-f-box02 .sm-cmnt-box02 .pb {
  float: left;
  margin-right: 8px;
}

.b-f-box02 .sm-cmnt-box02 .pb p {
  color: #6a6a6a;
  font: 300 12px/24px 'Roboto', sans-serif;
}

.b-f-box02 .sm-cmnt-box02 .pb p a {
  color: #80b542;
}

.b-f-box02 .sm-cmnt-box02 .pb p a:hover {
  color: #333;
}

.b-f-box02 .sm-cmnt-box02 .cmnt {
  float: left;
  color: #6a6a6a;
  font: 300 12px/24px 'Roboto', sans-serif;
  margin-right: 8px;
}

.b-f-box02 .sm-cmnt-box02 .sm {
  float: left;
}

.b-f-box02 .sm-cmnt-box02 .sm a {
  font-size: 13px;
  margin-right: 0px;
  color: #b2b3b4;
  display: inline-block;
}

.b-f-box02 .sm-cmnt-box02 .sm a:hover {
  color: #80b542;
}

.b-r-post {
  margin-bottom: 20px;
}

.b-r-post h2 {
  color: #fff;
  font: 700 18px/22px 'Roboto', sans-serif;
  background: #7d7d7d;
  padding: 14px 16px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.b-r-post ul {
  list-style: none;
}

.b-r-post ul li {
  border-bottom: 1px solid #eeeeee;
  padding: 12px 0;
}

.b-r-post ul li a {
  font: 300 15px/22px 'Roboto', sans-serif;
  color: #252525;
}

.b-r-post ul li a:hover {
  color: #80b542;
}

.b-r-post ul li:last-child {
  border-bottom: none;
}

.category {
  margin-bottom: 20px;
}

.category h2 {
  color: #fff;
  font: 700 18px/22px 'Roboto', sans-serif;
  background: #7d7d7d;
  padding: 14px 16px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.category ul {
  list-style: none;
}

.category ul li {
  border-bottom: 1px solid #eeeeee;
  padding: 12px 0;
}

.category ul li a {
  font: 300 15px/22px 'Roboto', sans-serif;
  color: #252525;
}

.category ul li a:hover {
  color: #80b542;
}

.category ul li:last-child {
  border-bottom: none;
}

.archives {
  margin-bottom: 20px;
}

.archives h2 {
  color: #fff;
  font: 700 18px/22px 'Roboto', sans-serif;
  background: #7d7d7d;
  padding: 14px 16px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.archives ul {
  list-style: none;
}

.archives ul li {
  padding: 3px 0;
  display: inline-block;
}

.archives ul li a {
  font: 300 15px/22px 'Roboto', sans-serif;
  color: #252525;
  display: block;
  padding: 3px 9px;
  border: 1px solid #ebebeb;
  border-radius: 2px;
}

.archives ul li a:hover {
  color: #fff;
  border: 1px solid #80b542;
  background: #80b542;
  border-radius: 2px;
}

.feeds {
  margin-bottom: 20px;
}

.feeds h2 {
  color: #fff;
  font: 700 18px/22px 'Roboto', sans-serif;
  background: #7d7d7d;
  padding: 14px 16px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.feeds ul {
  list-style: none;
}

.feeds ul li {
  padding: 3px 0;
  display: inline-block;
}

.feeds ul li a {
  font: 300 15px/22px 'Roboto', sans-serif;
  color: #252525;
  display: block;
  padding: 3px 12px;
  border: 1px solid #ebebeb;
  border-radius: 2px;
}

.feeds ul li a:hover {
  color: #fff;
  border: 1px solid #80b542;
  background: #80b542;
  border-radius: 2px;
}

.main-menu > a {
  color: #fff;
  background: #d6302a;
}

@media (max-width: 1199px) {
  .main-menu > a {
    background: #031D39;
  }
}

@media (min-width: 1025px) {
  .main-menu {
    background: #333333;
  }
  .main-menu a {
    color: #fff;
  }
  .menu {
    list-style: none;
    padding: 0 25px;
    margin: 0px;
    display: block;
    text-align: right;
  }
  .menu li {
    display: inline-block;
    position: relative;
    padding: 0 35px;
    /* &:last-child{
                >a{
                    padding-right: 0;
                }
            }*/
  }
  .menu li:first-child > a {
    padding-left: 8px;
  }
  .menu li a {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    color: #fff;
    padding: 11px 16px;
    display: block;
    transition: all 0.5s ease;
  }
  .menu li.active a {
    font-weight: 500;
    color: #7db13f;
  }
  .menu li a:hover {
    text-decoration: none;
    color: #7db13f;
    transition: all 0.5s ease;
  }
  .menu ul {
    background-color: #333333;
    display: none;
    margin: 0;
    padding: 0;
  }
  .menu li:hover > ul {
    display: list-item;
    transition: all ease 0.2s;
    list-style: none;
    position: absolute;
  }
  .menu li li {
    display: block;
    position: relative;
    width: 200px;
    padding: 0;
    border-bottom: dashed 1px #80b542;
  }
  .menu li li:last-child {
    border-bottom: none;
  }
  .menu li li:first-child > a {
    padding-left: 24px;
  }
  .menu li li:first-child:last-child > a {
    padding-right: 10px;
  }
  .menu li li a {
    color: #fff;
    padding: 7px 23px;
    font-family: 'Roboto', sans-serif;
    font-size: 13px;
    text-transform: uppercase;
  }
  .menu li li a:hover {
    color: #80b542;
  }
  .main-menu .head-top-nav ul {
    display: none;
  }
  .menu li.submenu:after {
    content: "";
    height: 0;
    width: 0;
    border-left: 3px solid transparent;
    border-right: 3px solid transparent;
    border-top: 3px solid #fff;
    position: absolute;
    pointer-events: none;
    right: 3px;
    top: 50%;
    margin-top: 0px;
  }
  .menu .submenu:hover:after {
    border-top: 3px solid #80b542;
    border-left: 3px solid transparent;
    border-right: 3px solid transparent;
    pointer-events: none;
  }
  /* .menu .submenu .submenu:hover::after{
     border-top: 4px solid transparent;
     border-left: 5px solid #80b542;
     border-bottom: 4px solid transparent;
}  */
  .menu li li ul {
    position: absolute;
    left: 200px;
    top: 0px;
  }
  .menu li li li {
    display: block;
    position: relative;
    width: 200px;
  }
  .menu li li li:first-child > a {
    padding-left: 24px;
  }
  .menu li li li a {
    background-color: rgba(34, 33, 34, 0.6);
  }
  .menu li li li a:hover {
    color: #d6302a;
  }
  .menu li li.submenu:after {
    content: "";
    height: 0;
    width: 0;
    border-top: 3px solid transparent;
    border-left: 3px solid #d6302a;
    border-bottom: 3px solid transparent;
    position: absolute;
    right: 7px;
    top: 30%;
    margin-top: 5px;
  }
  .mob-btn {
    display: none;
  }
  .menu li > .mega-dd {
    visibility: hidden;
    height: 160px;
    width: 1140px;
    position: absolute;
    left: -130px;
    z-index: 100;
    opacity: 0;
    transition: all ease-out 0.5s;
  }
  .menu li > .mega-dd ul {
    display: block;
    background: #fff;
  }
  .menu li > .mega-dd ul li {
    border-right: 1px solid #e0e0e0;
    width: 143px;
    height: 160px;
    color: #000;
    text-align: center;
    display: block;
    float: left;
    border-bottom: none;
    background: #fff;
    position: relative;
  }
  .menu li > .mega-dd ul li:last-child {
    border-right: none;
    width: 138px;
  }
  .menu li > .mega-dd ul li a {
    color: #000;
    text-transform: capitalize;
    font-size: 15px;
  }
  .menu li > .mega-dd ul li span {
    color: #000;
  }
  .menu li > .mega-dd ul li ul {
    position: absolute;
    top: 160px;
    left: 0;
    z-index: 100;
  }
  .menu li > .mega-dd ul li ul li {
    height: auto;
    width: 281px;
    border-right: none;
    border-bottom: 1px solid #e0e0e0;
    text-align: left;
  }
  .menu li > .mega-dd ul li ul li:last-child {
    width: 100%;
  }
  .menu li > .mega-dd ul li ul li:hover {
    border-bottom: 1px solid #e0e0e0;
  }
  .menu li > .mega-dd ul li ul li a {
    color: #000;
    background: #fff;
  }
  .menu li > .mega-dd ul li ul li a:hover {
    background: #790e15;
    color: #fff !important;
  }
  .menu li > .mega-dd ul li.submenu:after {
    content: "";
    height: 0;
    width: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #fff;
    position: absolute;
    pointer-events: none;
    right: 45%;
    top: 90%;
    margin-top: 0px;
  }
  .menu li:hover > .mega-dd {
    visibility: visible;
    transition: all 0.5s ease-in;
    opacity: 1;
  }
  .menu li > .mega-dd ul li:hover {
    background: #790e15;
    color: #fff;
    transition: none;
  }
  .menu li > .mega-dd ul li:hover a {
    color: #fff;
    transition: none;
  }
  .menu li > .mega-dd ul li:hover ul li a {
    color: #000;
    transition: none;
  }
  .menu li > .mega-dd ul li:hover .dd-icon {
    fill: #fff;
    transition: none;
  }
  .menu li > .mega-dd ul li > .sb-dd {
    visibility: hidden;
    opacity: 0;
    transition: 0.1s all ease-out;
  }
  .menu li > .mega-dd ul li:hover > .sb-dd {
    visibility: visible;
    opacity: 1;
    transition: 0.1s all ease;
  }
}

.dd-icon {
  width: 70px;
  height: 70px;
  fill: #2d338b;
  margin-top: 15px;
  margin-bottom: 0px;
  transition: none;
}

.slim-header .container-top {
  background: #fff;
  transition: all ease-out 0.3s;
}

.slim-header .container-bottom {
  background: #333333;
  transition: all ease-out 0.3s;
}

@media (max-width: 1199px) {
  .slim-header .container-bottom {
    background: none;
  }
}

.slim-header {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.slim-header .header-inner {
  padding: 5px 9px 5px 15px;
}

@media (max-width: 1199px) {
  .slim-header .header-inner {
    padding: 5px 9px 5px 0px;
  }
}

.slim-header .logo {
  width: 140px !important;
}

.slim-header .phn {
  padding-bottom: 0px !important;
  font-size: 20px !important;
}

.slim-header .icon-home {
  font-size: 20px !important;
  left: -2px !important;
  top: 1px !important;
}

.slim-header .head-top-nav ul li {
  padding: 4px 15px 0 !important;
  /* background: url(../img/header-nav-li-bg.png) 0px 7px no-repeat!important; */
}

.slim-header .head-top-nav ul li:first-child {
  background: none !important;
}

.slim-header .head-top-nav ul li:last-child {
  padding-right: 0px !important;
}

.slim-header .leaf-logo {
  width: 40px !important;
  height: 43px !important;
}

.slim-header .sm {
  padding-top: 0px !important;
}

@media (max-width: 1199px) {
  .main-menu {
    width: 250px;
    position: fixed;
    right: 0px;
    background: #80b542;
    list-style: none;
    padding: 0;
    margin: 0;
    right: -250px;
    overflow-y: scroll;
    transition: all 0.3s;
    height: 100%;
    display: block;
    top: 0;
    z-index: 1002;
  }
  .main-menu .container {
    width: 100%;
    padding: 0;
  }
  .main-menu .container .row {
    margin-left: 0px;
    margin-right: 0px;
  }
  .main-menu li {
    color: #fff;
    list-style: none;
    position: relative;
    display: block;
  }
  .main-menu li a {
    color: #fff;
    display: block;
    padding: 11px 18px 11px 18px;
    transition: all 1s;
    border-bottom: solid 1px #000;
  }
  .main-menu li a:hover {
    background: #2D338B;
    text-decoration: none;
  }
  .main-menu li ul {
    display: none;
    overflow: hidden;
    padding: 0 0 0 0px;
  }
  .main-menu li.open > ul {
    display: list-item;
    transition: all ease 0.2s;
    padding: 0 0 0 0px;
    margin: 0px;
  }
  .main-menu li li {
    position: relative;
    display: block;
  }
  .main-menu li li a {
    display: block;
    padding: 11px 0 11px 29px;
  }
  .main-menu ul li.submenu i {
    position: absolute;
    width: 43px;
    height: 43px;
    top: 0;
    right: 0;
    cursor: pointer;
    border-left: solid 1px #000;
  }
  .main-menu ul li.submenu i:after {
    content: "";
    height: 0;
    width: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 8px solid #fff;
    position: absolute;
    right: 17px;
    top: 16px;
    z-index: 10;
  }
  .mob-btn {
    border-radius: 2px;
    border: none;
    color: #20242e;
    text-transform: uppercase;
    padding: 3px 5px 9px;
    right: 5px;
    top: 9px;
    float: right;
    position: absolute;
    background: none;
    display: block;
    z-index: 999;
  }
  .mob-btn .icon-bar {
    background: none repeat #80b542;
    border-radius: 1px;
    display: block;
    height: 3px;
    position: relative;
    transition: all 0.5s ease-in-out 0s;
    width: 28px;
    margin-top: 6px;
  }
  .open .main-menu {
    right: 0px;
    top: 0;
  }
  .show-menu .main-menu {
    right: 0px;
  }
  .open .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1001;
  }
  .main-nav {
    display: none;
  }
}

@media (max-width: 1024px) {
  .top-nav-li {
    display: none;
  }
}

@media (max-width: 767px) {
  .mob-btn {
    top: 5px;
  }
}

@media (max-width: 479px) {
  .mob-btn {
    top: 33px;
  }
}
