/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary variables that control standard elements
in the pages. This is also the file that loads all of the other themed CSS
styleshets into just this one in each of themed templates.
*********************************************************************************
****************************************************************************** */











































/* ******************************************************************************
*********************************************************************************
The intention of this file is to reset most of the different browser, built-in
CSS styles, so that it is an empty canvas for the themed specific stylesheets.
*********************************************************************************
****************************************************************************** */

*, *:before, *:after {
  box-sizing: border-box;
}
/* ******************************************************************************
*********************************************************************************
The intention of this file is to makes browsers render all elements more
consistently and in line with modern standards.
It precisely targets only the styles that need normalizing.
*********************************************************************************
****************************************************************************** */


/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
========================================================================== */

/**
* 1. Correct the line height in all browsers.
* 2. Prevent adjustments of font size after orientation changes in iOS.
*/

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
========================================================================== */

/**
* Remove the margin in all browsers.
*/

body {
  margin: 0;
}

/**
* Render the `main` element consistently in IE.
*/

main {
  display: block;
}

/**
* Correct the font size and margin on `h1` elements within `section` and
* `article` contexts in Chrome, Firefox, and Safari.
*/

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
========================================================================== */

/**
* 1. Add the correct box sizing in Firefox.
* 2. Show the overflow in Edge and IE.
*/

hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
* 1. Correct the inheritance and scaling of font size in all browsers.
* 2. Correct the odd `em` font sizing in all browsers.
*/

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
========================================================================== */

/**
* Remove the gray background on active links in IE 10.
*/

a {
  background-color: transparent;
}

/**
* 1. Remove the bottom border in Chrome 57-
* 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
*/

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
* Add the correct font weight in Chrome, Edge, and Safari.
*/

b,
strong {
  font-weight: bolder;
}

/**
* 1. Correct the inheritance and scaling of font size in all browsers.
* 2. Correct the odd `em` font sizing in all browsers.
*/

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
* Add the correct font size in all browsers.
*/

small {
  font-size: 80%;
}

/**
* Prevent `sub` and `sup` elements from affecting the line height in
* all browsers.
*/

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  top: .5ex
}

sup {
  bottom: .5ex
}


/* Embedded content
========================================================================== */

/**
* Remove the border on images inside links in IE 10.
*/

img {
  border-style: none;
}

/* Forms
========================================================================== */

/**
* 1. Change the font styles in all browsers.
* 2. Remove the margin in Firefox and Safari.
*/

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
* Show the overflow in IE.
* 1. Show the overflow in Edge.
*/

button,
input { /* 1 */
  overflow: hidden;
}

/**
* Remove the inheritance of text transform in Edge, Firefox, and IE.
* 1. Remove the inheritance of text transform in Firefox.
*/

button,
select { /* 1 */
  text-transform: none;
}

/**
* Correct the inability to style clickable types in iOS and Safari.
*/

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
* Remove the inner border and padding in Firefox.
*/

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
* Restore the focus styles unset by the previous rule.
*/

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
* Correct the padding in Firefox.
*/

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
* 1. Correct the text wrapping in Edge and IE.
* 2. Correct the color inheritance from `fieldset` elements in IE.
* 3. Remove the padding so developers are not caught out when they zero out
*    `fieldset` elements in all browsers.
*/

legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
* Add the correct vertical alignment in Chrome, Firefox, and Opera.
*/

progress {
  vertical-align: baseline;
}

/**
* Remove the default vertical scrollbar in IE 10+.
*/

textarea {
  overflow: auto;
}

/**
* 1. Add the correct box sizing in IE 10.
* 2. Remove the padding in IE 10.
*/

[type="checkbox"],
[type="radio"] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
* Correct the cursor style of increment and decrement buttons in Chrome.
*/

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
* 1. Correct the odd appearance in Chrome and Safari.
* 2. Correct the outline style in Safari.
*/

[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
* Remove the inner padding in Chrome and Safari on macOS.
*/

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
* 1. Correct the inability to style clickable types in iOS and Safari.
* 2. Change font properties to `inherit` in Safari.
*/

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
========================================================================== */

/*
* Add the correct display in Edge, IE 10+, and Firefox.
*/

details {
  display: block;
}

/*
* Add the correct display in all browsers.
*/

summary {
  display: list-item;
}

/* Misc
========================================================================== */

/**
* Add the correct display in IE 10+.
*/

template {
  display: none;
}

/**
* Add the correct display in IE 10.
*/

[hidden] {
  display: none;
}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your
Drag and Drop (DND) sections look when editing content in the page editor.
*********************************************************************************
****************************************************************************** */

dnd-section {
  padding: 80px 20px;
}
.banner-area .dnd-section {
  padding: 0;
}

.dnd-section > .row-fluid {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.dnd-section .widget-type-cell {
  padding-left: 20px;
  padding-right: 20px;
}

@media (max-width: 767px) {
  .dnd-section .widget-type-cell {
    padding-left: 0px;
    padding-right: 0px;
  }
}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your
fonts apppear throughout your site.
*********************************************************************************
****************************************************************************** */
@font-face {
  font-family: 'FontAwesome';
  src: url('https://7741413.fs1.hubspotusercontent-na1.net/hubfs/7741413/AFS_Financial_Group_March2021/Fonts/fontawesome-webfont.eot') format('embedded-opentype'),
    url(https://7741413.fs1.hubspotusercontent-na1.net/hubfs/7741413/raw_assets/public/AFS_Financial_Group_March2021/Fonts/fontawesome-webfont.woff2) format('woff2'),
    url(https://7741413.fs1.hubspotusercontent-na1.net/hubfs/7741413/raw_assets/public/AFS_Financial_Group_March2021/Fonts/fontawesome-webfont.woff) format('woff'),
    url(https://7741413.fs1.hubspotusercontent-na1.net/hubfs/7741413/raw_assets/public/AFS_Financial_Group_March2021/Fonts/fontawesome-webfont.ttf) format('truetype'),
    url(https://7741413.fs1.hubspotusercontent-na1.net/hubfs/7741413/raw_assets/public/AFS_Financial_Group_March2021/Fonts/fontawesome-webfont.svg) format('svg');
  font-weight: normal;
  font-style: normal
}

@font-face {
  font-family: 'ElegantIcons';
  src: url('https://7741413.fs1.hubspotusercontent-na1.net/hubfs/7741413/AFS_Financial_Group_March2021/Fonts/ElegantIcons.eot') format('embedded-opentype'),
    url(https://7741413.fs1.hubspotusercontent-na1.net/hubfs/7741413/raw_assets/public/AFS_Financial_Group_March2021/Fonts/ElegantIcons.woff) format('woff'),
    url(https://7741413.fs1.hubspotusercontent-na1.net/hubfs/7741413/raw_assets/public/AFS_Financial_Group_March2021/Fonts/ElegantIcons.ttf) format('truetype'),
    url(https://7741413.fs1.hubspotusercontent-na1.net/hubfs/7741413/raw_assets/public/AFS_Financial_Group_March2021/Fonts/ElegantIcons.svg) format('svg');
  font-weight: normal;
  font-style: normal
}

@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 400;
  src: url(https://7741413.fs1.hubspotusercontent-na1.net/hubfs/7741413/raw_assets/public/AFS_Financial_Group_March2021/Fonts/1Ptug8zYS_SKggPNyC0ITw.woff2) format('woff2');
}


html {
  -webkit-transition: all 1.3s ease-out;
  -moz-transition: all 1.3s ease-out;
  -o-transition: all 1.3s ease-out;
  -ms-transition: all 1.3s ease-out;
  transition: all 1.3s ease-out;
  overflow-y: scroll;
}

body {
  font-family: Lato, serif;
  font-size: 1rem;
  color: #494a52;
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
  font-family: Lato, serif;
}

/* Anchor Links */
a {
  color: #0270E0;
  text-decoration: none;
}
a:hover, a:focus {

}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  line-height: 1.2;
  font-weight: 700;
  font-family: Merriweather, serif;
  color: #494a52;
  word-break: break-word;
}

h1 {
  font-size: 2.1rem;
  line-height: 1.3;
}

h2 {
  font-size: 1.6rem;
  line-height: 1.2;
}

h3 {
  font-size: 1.25rem;
  line-height: 1.5;
}

h4 {
  font-family: Lato, sans-serif;
  font-weight: normal;
  font-size: 1.175rem;
  line-height: 1.5;
}

h5 {
  font-size: 1rem;
  line-height: 1.5;
}

h6 {
  font-size: .9rem;
  line-height: 1.5;
}

strong {
  font-weight: 700;
}

code {
  vertical-align: bottom;
}

ul,
ol {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

ul li,
ol li {

}

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

blockquote {
  line-height: 1.5rem;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  border-left: 2px solid #A9A9A9;
  padding-left: 15px;
}

/* Horizontal Rules */
hr {
  color: #ccc;
  background-color: #ccc;
  height: 1px;
  border: none;
}

/* TODO */
small {

}

/* TODO */
mark {

}

sub, sup {
  font-size: 75%;
  height: 0;
  line-height: 0;
  vertical-align: baseline;
}
sub {
  top: .5ex
}

sup {
  bottom: .5ex
}


:focus {
  outline: auto;

}

.disable-focus-styles :focus {
  outline: none;
}

@media (max-width: 767px) {

}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your forms looks
throughout your site. Styles for form fields, buttons, inputs, etc.
*********************************************************************************
****************************************************************************** */

form {
  max-width: 100%;
  font-family: Lato, sans-serif;
}

.hs-button {
  margin: 0;
  border-style: solid;
  position: relative;
  display: inline-block;
  width: auto;
  line-height: 44px;
  margin: 0;
  padding: 0 40px;
  border: 2px solid #bfa97d;
  font-size: 12px;
  font-weight: 700;
  font-family: inherit;
  text-align: left;
  color: #fff;
  background-color: #bfa97d;
  text-decoration: none;
  cursor: pointer;
  outline: 0;
  text-transform: uppercase;
  text-shadow: none;
  letter-spacing: 1px;
  white-space: nowrap;
  -webkit-transition: color .15s ease-out,background-color .15s ease-out,border-color .15s ease-out;
  -moz-transition: color .15s ease-out,background-color .15s ease-out,border-color .15s ease-out;
  -ms-transition: color .15s ease-out,background-color .15s ease-out,border-color .15s ease-out;
  -o-transition: color .15s ease-out,background-color .15s ease-out,border-color .15s ease-out;
  transition: color .15s ease-out,background-color .15s ease-out,border-color .15s ease-out;
  -webkit-box-sizing: initial!important;
  -moz-box-sizing: initial!important;
  box-sizing: initial!important;
  font-style: normal;
  border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  background-color: #336699;
  border-color: #336699;
  margin: 10px 0px;
}

.hs-button:hover, .hs-button:focus {
  background-color: #21222a;
  border-color: #21222a;
  
  color: #fff;
}

.hs-button:active {
  background-color: #71727a;
  border-color: #71727a;
}


.hs-form label {
  font-size: .83rem;
  color: #33475b;
  display: block;
  float: none;
  width: auto;
  font-weight: normal;
  text-align: left;
  line-height: 1.2;
  padding-top: 0;
  margin-bottom: 4px;
}

.hs-error-msgs label {
  margin-top: .5rem;
  color: #f2545b;
}

.hs-input {
  display: inline-block;
  width: 100%;
  height: 58px;
  padding: 9px 10px;
  font-size: 16px;
  font-weight: normal;
  line-height: 22px;
  color: #33475b;
  background-color: #ffffff;
  border: 2px solid #D1D6DC;
  box-sizing: border-box;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;

  padding: 10px 17px;
  border: 1px solid #e9e9e9;
  outline: 0;
  resize: none;
  font-family: inherit;
  line-height: 18px;
  background-color: #f6f6f5;
  color: #7f8385;
  height: auto;
  font-size: 13px;
}

.hs-input[type=checkbox],
.hs-input[type=radio] {
  cursor: pointer;
  width: auto;
  height: auto;
  padding: 0;
  margin: 3px 5px 3px 0px;
  line-height: normal;
  border: none;
}

.hs-input[type=file] {
  background-color: #fff;
  padding: initial;
  border: initial;
  line-height: initial;
  box-shadow: none;
}

.hs-input:-moz-placeholder {
  color: #bfbfbf;
}

.hs-input::-webkit-input-placeholder {
  color: #bfbfbf;
}
form {
  max-width: 767px;
}

.hs-form label {
  font-size: inherit;
  line-height: 25px;
}

.hs-form-field {
  margin-bottom: 18px;
}

div#hs-search-module form input {
  margin-bottom: 18px;
}
.hs-input input,
.hs-input textarea {
  transition: border 0.2s linear;
}
.hs-input:focus {
  outline: none;
  border-color: rgba(82, 168, 236, 0.8);
}

textarea.hs-input {
  height: auto;
}

select[multiple].hs-input {
  height: inherit;
}

/* Force single column fields to full width inside of fieldsets */
fieldset.form-columns-1 .hs-input:not([type=radio]):not([type=checkbox]) {
  width: 100% !important;
}
ul.no-list.hs-error-msgs.inputs-list label.hs-error-msg,ul.no-list.hs-error-msgs.inputs-list label.hs-main-font-element {
    color: #dc3232;
    font-size: 14px;
    text-align: left;
    position: relative;
}
input.hs-input.error,
div.field.error input,
div.field.error textarea,
div.field.error .chzn-choices,
textarea.hs-input.error,
select.hs-input.error {

}
input.hs-input.error:focus,
div.field.error input:focus,
div.field.error textarea:focus,
div.field.error .chzn-choices:focus,
textarea.hs-input.error:focus,
select.hs-input.error:focus {
  border-color: #b9554d;
}

.actions {
  padding: 0;
}

.inputs-list {
  margin: 0 0 5px;
  width: 100%;
  padding-left: 0;
}
.inputs-list > li {
  display: block;
  padding: 0;
  width: 100%;
  padding-top: 0;
}
.inputs-list label {
  display: block;
  float: none;
  width: auto;
  padding: 0;
  line-height: 18px;
  text-align: left;
  white-space: normal;
  font-weight: normal;
}
.inputs-list:first-child {
  padding-top: 6px;
}
.inputs-list > li + li {
  padding-top: 2px;
}
.inputs-list label > input,
.inputs-list label > span {
  vertical-align: middle;
}

ul.no-list {
  list-style: none;
}

.field {
  margin-bottom: 18px;
}

.hs-field-desc {
  color: #7c98b6;
  margin: 0px 0px 6px;
  font-size: 14px;
}

.hs-form-required {
  color: red;
}

.hs-richtext {
  margin-bottom: 3px;
  line-height: 1.2;
  font-size: 1rem;
  color: #494a52;
}
.hs-richtext hr {
  text-align: left;
  margin-left: 0;
  width: 91%;
}

.grecaptcha-badge {
  margin: 0 auto;
}

.email-correction, .email-validation {
  padding-top: 3px;
  font-size: 12px;
}
.email-correction a,
.email-validation a {
  cursor: pointer;
}
@media (max-width: 400px),
  (min-device-width: 320px) and (max-device-width: 480px) {
    .email-correction form .form-columns-2 .hs-form-field,
    .email-correction form .form-columns-3 .hs-form-field,
    .email-validation form .form-columns-2 .hs-form-field,
    .email-validation form .form-columns-3 .hs-form-field {
      float: none;
      width: 100%;
    }
    .email-correction form .form-columns-2 .hs-form-field .hs-input,
    .email-correction form .form-columns-3 .hs-form-field .hs-input,
    .email-validation form .form-columns-2 .hs-form-field .hs-input,
    .email-validation form .form-columns-3 .hs-form-field .hs-input {
      width: 90%;
    }
    .email-correction form .form-columns-2 .hs-form-field input[type=checkbox],
    .email-correction form .form-columns-2 .hs-form-field input[type=radio],
    .email-correction form .form-columns-3 .hs-form-field input[type=checkbox],
    .email-correction form .form-columns-3 .hs-form-field input[type=radio],
    .email-validation form .form-columns-2 .hs-form-field input[type=checkbox],
    .email-validation form .form-columns-2 .hs-form-field input[type=radio],
    .email-validation form .form-columns-3 .hs-form-field input[type=checkbox],
    .email-validation form .form-columns-3 .hs-form-field input[type=radio] {
      width: 24px;
    }
}

.hs-button,
.hs-form-field input[type=text],
.hs-form-field input[type=email],
.hs-form-field input[type=phone],
.hs-form-field input[type=number],
.hs-form-field input[type=tel],
.hs-form-field input[type=date],
.hs-form-field textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
}

.hs-default-font-element,
.hs-main-font-element {
  font-family: Lato, serif;
}
button,
.button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

button:disabled,
.button:disabled {
  background-color: #D0D0D0;
  border-color: #D0D0D0;
  color: #E6E6E6;
}

/* No button */

.no-button,
.no-button:hover,
.no-button:focus,
.no-button:active {
  background: none;
  border: none;
  border-radius: 0;
  color: initial;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  margin-bottom: 0;
  padding: 0;
  text-align: left;
  text-decoration: none;
  transition: none;
}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your
menu items appear, including the link and hover effects.
*********************************************************************************
****************************************************************************** */

.hs-menu-wrapper ul {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.hs-menu-item a {
  display: block;
  padding: 0.5rem 1rem;
  color: rgba(0, 0, 0, 0.5);
  text-decoration: none;
}

.hs-menu-item:hover a,
.hs-menu-item:focus a {
  text-decoration: none;
  color: rgba(0, 0, 0, 0.7);
}

.hs-menu-item.active a {
  color: rgba(0, 0, 0, 0.9);
}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your
tables look throughout your site.
*********************************************************************************
****************************************************************************** */

table {
  margin-bottom: 1rem;
  border: 1px solid #dee2e6;
}

th,
td {
  padding: 0.75rem;
  vertical-align: top;
  border: 1px solid #dee2e6;
}

thead th,
thead td {
  color: #fff;
  background-color: #343a40;
  border-color: #454d55;
  border-bottom-width: 2px;
}

thead th {
  vertical-align: bottom;
  border-bottom: 2px solid #dee2e6;
}

tbody + tbody {
  border-top: 2px solid #dee2e6;
}

/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your landing pages
look if there is anything specific to your landing pages.
*********************************************************************************
****************************************************************************** */

.lp .f-col-left {
    min-height: auto !important;
}
.lp .f-col-left {
    margin-bottom: 0px !important;
}
.lp .f-col-left>.col-pad {
    margin-bottom: 0px !important;
}
form.hs-form fieldset, form.hs-form fieldset.form-columns-1 .hs-input {
    max-width: 100%;
    width: 100%;
}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your landing pages
look if there is anything specific to your landing pages.
*********************************************************************************
****************************************************************************** */

/* our-team-page-css */


.hs-our-team-page-inner {
  margin-top: -105px;
  position: relative;
}

.hs-our-team-page-inner .dnd-section {
  padding: 0;
}

.hs-our-team-page-inner .dnd-section>.row-fluid {
  max-width: 100%;
  padding: 0;
}

.hs-our-team-page-inner .widget-span.widget-type-cell {
  padding: 0;
}


.hs-our-team-page-inner .content-wrapper {
  max-width: 1100px;
  padding: 0;
  padding-top: 44px;
}

.hs-our-team-page-inner .content-wrapper > .row {
  margin-left: -15px;
  margin-right: -15px;
}

.our-team-row-1 > .row-pad {
  box-sizing: border-box;
  padding-left: 25px;
  padding-right: 25px;
  width: 100%;
}

.hs-our-team-page-row1 {
  margin-top: 106px;
}

.hs-our-team-page-row1 h2 {
  margin: 0;
  color: #2f2e2e;
  font-family: 'Raleway', sans-serif;
  font-size: 34px;
  line-height: 45px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: none;
  margin-bottom: 0;
  text-align: center;
  font-size: 45px;
  margin-bottom: 40px;
}

.hs-our-team-page-row1 p {
  margin: 0;
  font-family: Raleway, sans-serif;
  font-size: 18px;
  line-height: 25px;
  letter-spacing: 0px;
  font-weight: 400;
  font-style: normal;
  text-transform: none;
  color: #2b2b2b;
  text-align: left;
}



.our-team-row-2 {
  padding-top: 20px;
  padding-bottom: 75px;
  text-align: center;
}

.our-team-row-2 > .row-mar-center {
  width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 20;
}

.our-team-row-2 > .row-mar-center > .row {
  margin-left: -15px;
  margin-right: -15px;
}

.our-team-row-2 > .row-mar-center > .row > .row-pad {
  box-sizing: border-box;
  padding-left: 25px;
  padding-right: 25px;
  width: 100%;
}

.section-row {
  margin-top: 45px;
}

.hs-our-team-page-row2 .row-fluid-wrapper.row-number-1 {
  margin-left: -15px;
  margin-right: -15px;
}

.hs-our-team-page-row2 .span4.widget-span {
  margin: 0;
  position: relative;
  min-height: 1px;
  padding-left: 0;
  padding-right: 0;
}


.icon_mail:before {
  content: "\e076";
}

.social_linkedin_square:before {
  content: "\e0cb";
}


.hs-our-team-page-row2 .row-fluid-wrapper.row-number-5 {
  margin-left: -15px;
  margin-right: -15px;
}

.hs-our-team-page-row2 .row-fluid-wrapper.row-number-1 {
  margin-bottom: 41px;
}
.hs-our-team-page-row2 .row-fluid-wrapper.row-number-5 .meet-the-team-wrap .m-team-info {
  margin-top: 19px;
}
.hs-our-team-page-row2 .row-fluid-wrapper.row-number-9 {
  margin-left: -15px;
  margin-right: -15px;
  margin-bottom: 42px;
}

.hs-our-team-page-row2 .row-fluid-wrapper.row-number-5 {
  margin-bottom: 41px;
}
.hs-our-team-page-inner .content-wrapper {
  overflow: hidden;
}
@media (min-width: 768px){
  .hs-our-team-page-row2 .span4.widget-span {
    float: left;
    width: 33.33333333%;
  }

}


@media(max-width:1200px){
  .hs-our-team-page-inner .content-wrapper {
    max-width: 950px;
  }

  .our-team-row-2>.row-mar-center {
    width: 950px;
  }
}


@media(max-width:1000px){
  .hs-our-team-page-inner .content-wrapper {
    max-width: 768px;
  }

  .our-team-row-2>.row-mar-center {
    width: 768px;
  }

  .hs-our-team-page-inner {
    margin: 0;
  }
  .hs-our-team-page-row1 {
    margin: 0;
  }

}



@media(max-width:768px){
  .hs-our-team-page-inner .content-wrapper {
    max-width: 600px;
  }

  .our-team-row-2>.row-mar-center {
    width: 600px;
  }
}

@media(max-width:767px){
  .hs-our-team-page-row2 .span4.widget-span {
    margin-bottom: 41px;
  }

  .hs-our-team-page-row2 .row-fluid-wrapper.row-number-1 {
    margin-bottom: 0;
  }

  .hs-our-team-page-row2 .row-fluid-wrapper.row-number-5 {
    margin-bottom: 0;
  }

  .hs-our-team-page-row2 .row-fluid-wrapper.row-number-9 {
    margin-bottom: 0;
  }

  .hs-our-team-page-row2 .row-fluid-wrapper.row-number-9 .span4.widget-span:last-child {
    display: none;
  }
}


@media(max-width:600px){
  .hs-our-team-page-inner .content-wrapper {
    max-width: 420px;
  }

  .our-team-row-2>.row-mar-center {
    width: 420px;
  }
}

@media(max-width:480px){
  .hs-our-team-page-inner .content-wrapper {
    max-width: 300px;
  }

  .our-team-row-2>.row-mar-center {
    width: 300px;
  }
}





/* .hs-our-team-inner-page-css */
.hs-our-team-inner-page-inner .dnd-section {
  padding: 0;
}

.hs-our-team-inner-page-inner .dnd-section>.row-fluid {
  max-width: 100%;
  padding: 0;
}

.hs-our-team-inner-page-inner .widget-span.widget-type-cell {
  padding: 0;
}

.hs-our-team-inner-page-inner {
  margin-top: -105px;
  position: relative;
}


.hs-our-team-inner-page-inner .content-wrapper {
  padding: 0;
  padding-top: 44px;
}

.hs-our-team-inner-page-inner .content-wrapper > .row {
  margin-left: -15px;
  margin-right: -15px;
}

.our-team-innerpage-row1 {
  margin-top: 140px;
}




.our-team-innerpage-row2 {
  padding-top: 20px;
}

.our-team-innerpage-row2 > .pad-inner {
  box-sizing: border-box;
  padding-left: 25px;
  padding-right: 25px;
  width: 100%;
}
.our-team-innerpage-row2 {
  padding-bottom: 30px;
}

.hs-our-team-inner-page-inner {
  overflow: hidden;
}


@media(max-width:1000px){
  .hs-our-team-inner-page-inner {
    margin: 0;
  }

  .our-team-innerpage-row1 {
    margin-top: 10px;
  }

}



@media(max-width:480px){

  .our-team-innerpage-row2 {
    padding-bottom: 32px;
  }
}



/* hello-again-page-css */


.DND_banner-row-0-force-full-width-section > .row-fluid {
  padding: 0px !important;
}

.body-container__website .hs-responsive-embed-wrapper.hs-responsive-embed {
  margin: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
}


@media(max-width:1000px){
  .body-container__website {
    padding-top: 44px;
  }

}





/* .hs-workshops-page-css {} */

.hs-workshops-page-inner .dnd-section {
  padding: 0;
}

.hs-workshops-page-inner .dnd-section>.row-fluid {
  max-width: 100%;
  padding: 0;
}

.hs-workshops-page-inner .span12.widget-span {
  padding: 0;
}

.hs-workshops-page-inner {
  overflow: hidden;
}

.hs-workshops-page-inner .content-wrapper {
  max-width: 100%;
  padding: 0;
}

.hs-workshops-page-inner .content-wrapper > .row {
  margin-left: -15px;
  margin-right: -15px;
}

.hs-workshops-page-inner .content-wrapper > .row > .row-pad {
  box-sizing: border-box;
  padding-left: 25px;
  padding-right: 25px;
  width: 100%;
}

.hs-workshops-page-row1 {
  margin-top: 151px;
}

.hs-workshops-page-row1 h1 {
  margin: 0;
  font-style: normal;
  line-height: 68px;
  letter-spacing: 3px;
  color: #797979;
  font-family: 'Raleway', sans-serif;
  font-size: 50px;
  text-transform: none;
  font-weight: 400;
}


.hs-workshops-page-row1 .row-fluid-wrapper.row-number-1 {
  margin-bottom: 100px;
}

.hs-workshops-page-row1 .row-fluid-wrapper.row-number-3 {
  margin-left: -15px;
  margin-right: -15px;
}

.hs-workshops-page-row1 .span3.widget-span {
  margin: 0;
  width: 100%;
}
.hs-workshops-page-row1 .span6.widget-span {
  margin: 0;
  width: 100%;
}

@media (min-width: 768px){
  .hs-workshops-page-row1 .span3.widget-span {
    float: left;
    width: 25%;
  }
  .hs-workshops-page-row1 .span6.widget-span {
    width: 50%;
    float: left;
  }
}

.hs-workshops-page-inner .widget-span.widget-type-cell {
  padding: 0;
}

.hs-workshops-page-row1 .span6.widget-span > div {
  box-sizing: border-box;
  padding-left: 25px;
  padding-right: 25px;
  width: 100%;
}

.hs-workshops-page-row1 h2 {
  margin: 0;
  color: #2f2e2e;
  font-family: 'Raleway', sans-serif;
  font-size: 34px;
  line-height: 45px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: none;
  text-align: left;
}

.hs-workshops-page-row1 .span3.widget-span > div {
  box-sizing: border-box;
  padding-left: 25px;
  padding-right: 25px;
  width: 100%;
}

.hs-workshops-page-row1 .qbutton {
  white-space: nowrap;
  -webkit-transition: color .15s ease-out,background-color .15s ease-out,border-color .15s ease-out;
  -moz-transition: color .15s ease-out,background-color .15s ease-out,border-color .15s ease-out;
  -ms-transition: color .15s ease-out,background-color .15s ease-out,border-color .15s ease-out;
  -o-transition: color .15s ease-out,background-color .15s ease-out,border-color .15s ease-out;
  transition: color .15s ease-out,background-color .15s ease-out,border-color .15s ease-out;
  -webkit-box-sizing: initial!important;
  -moz-box-sizing: initial!important;
  box-sizing: initial!important;
  text-decoration: none;
  cursor: pointer;
  outline: 0;
  border: 2px solid #bfa97d;
  font-family: Raleway;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-width: 0px;
  color: #ffffff;
  padding-left: 25px;
  padding-right: 25px;
  font-size: 12px;
  line-height: 40px;
  height: 40px;
  border-width: 2px;
  font-style: normal;
  font-weight: 400;
  background-color: rgb(191, 169, 125);
  border-color: rgb(51, 102, 153);
  display: inline-block;
}

.hs-workshops-page-row1 .qbutton:hover {
  background-color: rgb(201, 201, 201);
  border-color: rgb(191, 169, 125);
}

.hs-workshops-page-row1 .row-fluid-wrapper.row-number-1 {
  margin-bottom: 100px;
}

.hs-workshops-page-row1 .row-fluid-wrapper.row-number-3 {
  margin-left: -15px;
  margin-right: -15px;
}

.hs-workshops-page-row1 .span3.widget-span {
  margin: 0;
  width: 100%;
}
.hs-workshops-page-row1 .span6.widget-span {
  margin: 0;
  width: 100%;
}

@media (min-width: 768px){
  .hs-workshops-page-row1 .span3.widget-span {
    float: left;
    width: 25%;
  }
  .hs-workshops-page-row1 .span6.widget-span {
    width: 50%;
    float: left;
  }
}

.hs-workshops-page-inner .widget-span.widget-type-cell {
  padding: 0;
}

.hs-workshops-page-row1 .span6.widget-span > div {
  box-sizing: border-box;
  padding-left: 25px;
  padding-right: 25px;
  width: 100%;
}

.hs-workshops-page-row1 h2 {
  margin: 0;
  color: #2f2e2e;
  font-family: 'Raleway', sans-serif;
  font-size: 34px;
  line-height: 45px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: none;
  text-align: left;
}

.hs-workshops-page-row1 .span3.widget-span > div {
  box-sizing: border-box;
  padding-left: 25px;
  padding-right: 25px;
  width: 100%;
}

.hs-workshops-page-row1 .qbutton {
  white-space: nowrap;
  -webkit-transition: color .15s ease-out,background-color .15s ease-out,border-color .15s ease-out;
  -moz-transition: color .15s ease-out,background-color .15s ease-out,border-color .15s ease-out;
  -ms-transition: color .15s ease-out,background-color .15s ease-out,border-color .15s ease-out;
  -o-transition: color .15s ease-out,background-color .15s ease-out,border-color .15s ease-out;
  transition: color .15s ease-out,background-color .15s ease-out,border-color .15s ease-out;
  -webkit-box-sizing: initial!important;
  -moz-box-sizing: initial!important;
  box-sizing: initial!important;
  text-decoration: none;
  cursor: pointer;
  outline: 0;
  border: 2px solid #bfa97d;
  font-family: Raleway;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-width: 0px;
  color: #ffffff;
  padding-left: 25px;
  padding-right: 25px;
  font-size: 12px;
  line-height: 40px;
  height: 40px;
  border-width: 2px;
  font-style: normal;
  font-weight: 400;
  background-color: rgb(191, 169, 125);
  border-color: rgb(51, 102, 153);
  display: inline-block;
}

.hs-workshops-page-row1 .qbutton:hover {
  background-color: rgb(201, 201, 201);
  border-color: rgb(191, 169, 125);
}

.hs-workshops-page-row1 {
  margin-bottom: 100px;
}

.hs-workshops-page-row1.hs-workshops-page-row2 {
  margin-bottom: 64px;
}

.hs-workshops-page-row1.hs-workshops-page-row2 .row-fluid-wrapper.row-number-1 {
  margin-bottom: 49px;
}

.hs-workshops-page .banner img {
  left: 0;
}


@media(max-width:1000px){
  .hs-workshops-page-inner {
    padding-top: 44px;
  }
}


@media(max-width:767px){
  .hs-workshops-page-row1 .span3.widget-span:first-child {
    display: none;
  }

  .hs-workshops-page-row1 .span6.widget-span {
    margin-bottom: 100px;
  }

  .hs-workshops-page-row1 {
    margin-bottom: 101px;
  }

  .hs-workshops-page-row1.hs-workshops-page-row2 {
    margin-top: 0;
  }
  .hs-workshops-page-row1.hs-workshops-page-row2 .row-fluid-wrapper.row-number-3 .span6.widget-span {
    margin-bottom: 0;
  }

  .hs-workshops-page-row1.hs-workshops-page-row2 h1 {
    margin-bottom: 2px;
    word-break: inherit;
  }
}





/* .hs-whatwedo-page-css */

.hs-whatwedo-page-inner {
  overflow: hidden;
}

.hs-whatwedo-page-inner .dnd-section {
  padding: 0;
}

.hs-whatwedo-page-inner .widget-span.widget-type-cell {
  padding: 0;
}

.hs-whatwedo-page-inner .dnd-section>.row-fluid {
  padding: 0;
  max-width: 100%;
}


.hs-whatwedo-page-inner .body-container-wrapper > .row {
  margin-left: -15px;
  margin-right: -15px;
}

.row.whatwedo-page-row1 {}

.whatwedo-page-row1 > .content-wrapper {
  position: relative;
  z-index: 20;
  padding: 0;
}

.whatwedo-page-row1 > .content-wrapper > .mar-inner {
  margin-left: -15px;
  margin-right: -15px;
}

.whatwedo-page-row1 > .content-wrapper > .mar-inner > .pad-inner {
  box-sizing: border-box;
  padding-left: 25px;
  padding-right: 25px;
  width: 100%;
}


.whatwedo-page-row1 h2 {
  margin: 0;
  font-family: 'Raleway', sans-serif;
  font-size: 34px;
  line-height: 45px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: none;
  text-align: center;
  margin-top: 45px;
  padding-bottom: 30px;
}

.whatwedo-page-row1  h3 {
  padding-bottom: 30px;
  letter-spacing: 1px;
  font-family: 'Raleway', sans-serif;
  font-size: 20px;
  line-height: 31px;
  font-style: normal;
  color: #2f2e2e;
  text-transform: none;
  font-weight: 400;
  text-align: center;
  margin: 0;
  margin-bottom: 15px;
}

.whatwedo-page-row2 {
  padding-bottom: 30px;
  position: relative;
}

.whatwedo-page-row2 > .content-wrapper {
  padding: 0;
  position: relative;
  z-index: 20;
}

.whatwedo-page-row2 > .content-wrapper > .mar-inner {
  margin-left: -15px;
  margin-right: -15px;
}

.whatwedo-page-row2 .column {
  position: relative;
  min-height: 1px;
  padding: 0 15px;
  text-align: center;
}


@media (min-width: 768px){
  .whatwedo-page-row2 .column {
    width: 50%;
    float: left;
  }

}

.whatwedo-page-row2 .column .widget-span[class*="background-image"] {
  margin-bottom: 30px;
  padding-top: 35px;
  box-sizing: border-box;
  padding-left: 25px;
  padding-right: 25px;
  width: 100%;
}

.whatwedo-page-row2 .column a {
  -webkit-transition: color .15s ease-out,background-color .15s ease-out,border-color .15s ease-out;
  -moz-transition: color .15s ease-out,background-color .15s ease-out,border-color .15s ease-out;
  -ms-transition: color .15s ease-out,background-color .15s ease-out,border-color .15s ease-out;
  -o-transition: color .15s ease-out,background-color .15s ease-out,border-color .15s ease-out;
  transition: color .15s ease-out,background-color .15s ease-out,border-color .15s ease-out;
  -webkit-box-sizing: initial!important;
  -moz-box-sizing: initial!important;
  box-sizing: initial!important;
  text-decoration: none;
  cursor: pointer;
  outline: 0;
  position: relative;
  display: inline-block;
  width: auto;
  font-family: Raleway;
  letter-spacing: 1px;
  text-transform: uppercase;
  height: auto;
  font-size: 18px;
  padding: 23px 40px;
  font-weight: 500 !important;
  white-space: pre-line;
  text-align: center;
  line-height: 1.5;
  color: rgb(255, 255, 255);
  border-color: rgb(255, 255, 255);
  border-width: 2px;
  font-style: normal;
  font-weight: 400;
  border-radius: 0px;
  background-color: rgba(0, 0, 0, 0.01);
  border: 2px solid #fff;
}

.whatwedo-page-row2 .column .widget-span[class*="background-image"] > div {
  margin-top: 120px;
  margin-bottom: 120px;
}

.whatwedo-page-row2 .column a:hover {
  border-color: rgb(191, 169, 125);
  background-color: rgb(191, 169, 125);
}

.whatwedo-page-row3 {
  position: relative;
  background-color: #bfa97d;
  text-align: left;
}

.whatwedo-page-row3 > .pad-inner {
  box-sizing: border-box;
  padding-left: 25px;
  padding-right: 25px;
  width: 100%;
}

.whatwedo-page-row3 > .pad-inner > div {
  padding-top: 40px;
  padding-bottom: 40px;
  text-align: center;
}

.whatwedo-page-row3 h1 {
  margin: 0;
  line-height: 68px;
  letter-spacing: 3px;
  font-family: 'Raleway', sans-serif;
  font-size: 50px;
  text-transform: none;
  text-align: center;
  color: #fff;
  font-weight: 400;
}

.whatwedo-page-row4 .content-wrapper {
  position: relative;
  z-index: 20;
  padding: 0;
}

.whatwedo-page-row4 .content-wrapper > .mar-inner {
  margin-left: -15px;
  margin-right: -15px;
}

.whatwedo-page-row4 .content-wrapper > .mar-inner > .pad-inner {
  box-sizing: border-box;
  padding-left: 25px;
  padding-right: 25px;
  width: 100%;
}

.whatwedo-page-row4 .content-wrapper > .mar-inner > .pad-inner > div {
  padding-top: 60px;
  padding-bottom: 60px;
  text-align: center;
}

.whatwedo-page-row4 img {
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}



@media(max-width:1000px){
  .hs-whatwedo-page .banner img {
    left: 0;
  }

  .hs-whatwedo-page-inner {
    padding-top: 44px;
  }

  .whatwedo-page-row3 h1 {
    font-size: 40px;
  }
}
@media(max-width:768px){
  .whatwedo-page-row3 h1 {
    font-size: 35px;
    line-height: 45px;
  }
}
@media(max-width:767px){
  .whatwedo-page-row2 .column .widget-span[class*="background-image"]>div {
    margin: 0;
  }

  .whatwedo-page-row2 .column2 .widget-span[class*="background-image"]{
    margin-bottom: 0px;
  }
  .whatwedo-page-row2 .column a {
    margin-top: 120px;
    margin-bottom: 120px;
  }

}

@media(max-width:480px){
  .whatwedo-page-row3 h1 {
    font-size: 26px;
    line-height: 36px;
  }
}


.hs-social-security-page-inner {
  overflow: hidden;
}
.hs-social-security-page-inner .dnd-section {
  padding: 0;
}

.hs-social-security-page-inner .widget-span.widget-type-cell {
  padding: 0;
}

.hs-social-security-page-inner .dnd-section>.row-fluid {
  padding: 0;
  max-width: 100%;
}
.hs-social-security-page-row1 > .content-wrapper {
  padding: 0;
  padding-top: 44px;
}

.hs-social-security-page-row1 > .content-wrapper > .row {
  margin-left: -15px;
  margin-right: -15px;
  padding-top: 10px;
  padding-bottom: 20px;
  text-align: left;
}

.hs-social-security-page-row1 > .content-wrapper > .row > .row-pad {
  box-sizing: border-box;
  padding-left: 25px;
  padding-right: 25px;
  width: 100%;
}

.hs-social-security-page-row1 h2 {
  margin: 0;
  color: #2f2e2e;
  font-family: 'Raleway', sans-serif;
  font-size: 34px;
  line-height: 45px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: none;
  padding-bottom: 5px;
}

.hs-social-security-page-row1  iframe {
  margin: 0;
  width: 100%;
}

.hs-social-security-page-row1  p {
  margin: 0;
  font-family: Raleway, sans-serif;
  font-size: 18px;
  line-height: 25px;
  letter-spacing: 0px;
  font-weight: 400;
  font-style: normal;
  text-transform: none;
  color: #2b2b2b;
  margin-top: 6px;
}


@media(max-width:1000px){
  .hs-social-security-page .banner img {
    left: 0;
  }

}



/* .hs-seminar-offerings-css */


.hs-seminar-offerings-inner {
  overflow: hidden;
}

.hs-seminar-offerings-inner .dnd-section {
  padding: 0;
}

.hs-seminar-offerings-inner .widget-span.widget-type-cell {
  padding: 0;
}

.hs-seminar-offerings-inner .dnd-section>.row-fluid {
  padding: 0;
  max-width: 100%;
}

.hs-seminar-offerings-inner .content-wrapper {
  padding: 0;
  padding-top: 44px;
}

.hs-seminar-offerings-inner .content-wrapper > .row {
  margin-left: -15px;
  margin-right: -15px;
}

.hs-seminar-offerings-row1 > .row-pad {
  box-sizing: border-box;
  padding-left: 25px;
  padding-right: 25px;
  width: 100%;
}

.hs-seminar-offerings-row1 > .row-pad > div {
  margin-left: -15px;
  margin-right: -15px;
}

.hs-seminar-offerings-row1 > .row-pad > div > div {
  box-sizing: border-box;
  padding-left: 25px;
  padding-right: 25px;
  width: 100%;
}

.hs-seminar-offerings-row1 h2 {
  margin: 0;
  color: #2f2e2e;
  font-family: 'Raleway', sans-serif;
  font-size: 34px;
  line-height: 45px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: none;
  padding-bottom: 30px;
}

.hs-seminar-offerings-row1 h3 {
  margin: 0;
  letter-spacing: 1px;
  font-family: 'Raleway', sans-serif;
  font-size: 20px;
  line-height: 31px;
  font-style: normal;
  color: #2f2e2e;
  text-transform: none;
  font-weight: 400;
  padding-bottom: 30px;
}



.hs-seminar-offerings-row2 .row-depth-1.row-number-3 
.content-with-background-wrap .content-wrap p:nth-child(2),
.hs-seminar-offerings-row2 .row-depth-1.row-number-3 
.content-with-background-wrap .content-wrap p:nth-child(3) {
  margin-bottom: 1em;
}


.hs-seminar-offerings-row3 {
  padding-top: 35px;
  text-align: left;
}

.hs-seminar-offerings-row3 > .row-pad {
  box-sizing: border-box;
  padding-left: 25px;
  padding-right: 25px;
}

.hs-seminar-offerings-row3 h2 {
  padding-bottom: 30px;
  margin: 0;
  color: #2f2e2e;
  font-family: 'Raleway', sans-serif;
  font-size: 34px;
  line-height: 45px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: none;
}

.hs-seminar-offerings-row3 h3 {
  padding-bottom: 3em;
  margin: 0;
  letter-spacing: 1px;
  font-family: 'Raleway', sans-serif;
  font-size: 20px;
  line-height: 31px;
  font-style: normal;
  color: #2f2e2e;
  text-transform: none;
  font-weight: 400;
  padding-bottom: 54px;
}


@media(max-width:1000px){
  .hs-seminar-offerings-page .banner img {
    left: 0;
  }
}


/* .hs-planning-page-css */



.hs-planning-page-inner {
  overflow: hidden;
}

.hs-planning-page-inner .dnd-section {
  padding: 0;
}

.hs-planning-page-inner .dnd-section>.row-fluid {
  padding: 0;
  max-width: 100%;
}

.hs-planning-page-inner .widget-span.widget-type-cell {
  padding: 0;
}


.hs-planning-page-inner .body-container-wrapper > .row {
  margin-left: -15px;
  margin-right: -15px;
}


.hs-planning-page-row1 > .content-wrapper {
  padding: 0;
  position: relative;
  z-index: 20;
}

.hs-planning-page-row1 > .content-wrapper > .mar-in {
  margin-left: -15px;
  margin-right: -15px;
}

.hs-planning-page-row1 > .content-wrapper > .mar-in > .row-pad {
  box-sizing: border-box;
  padding-left: 25px;
  padding-right: 25px;
  width: 100%;
}

.hs-planning-page-row1 > .content-wrapper > .mar-in > .row-pad > div {
  margin-top: 45px;
  margin-bottom: 60px;
}

.hs-planning-page-row1 .row-fluid-wrapper.row-number-2 {
  padding-bottom: 40px;
}

.hs-planning-page-row1 h2 {
  margin: 0;
  letter-spacing: 1px;
  text-transform: none;
  line-height: 45px;
  font-style: normal;
  font-family: 'Raleway', sans-serif;
  color: #336699;
  font-weight: 700;
  font-size: 40px;
  margin-bottom: 20px;
  text-align: center;
}

.hs-planning-page-row1 h3 {
  margin: 0;
  letter-spacing: 1px;
  font-family: 'Raleway', sans-serif;
  font-size: 20px;
  line-height: 31px;
  font-style: normal;
  color: #2f2e2e;
  text-transform: none;
  font-weight: 400;
  margin-bottom: 0;
  text-align: center;
}


.your-plan-sec  h4 {
  letter-spacing: 1px;
  text-transform: none;
  font-family: 'Raleway', sans-serif;
  font-size: 27px;
  line-height: 38px;
  margin-bottom: 0;
  text-align: left;
  color: #336699;
  font-weight: bold;
  margin-top: 65px;
}

.your-plan-sec ul {
  margin: 0;
  padding: 0;
  list-style: none;
  padding-left: 18px;
}


.your-plan-sec ul li {
  font-size: 20px;
  padding-bottom: 16px;
  line-height: 1.3;
  list-style-position: outside;
  list-style-image: url(https://7741413.fs1.hubspotusercontent-na1.net/hubfs/7741413/raw_assets/public/AFS_Financial_Group_March2021/images/caret-right.png);
}

.hs-planning-page-row1 > .content-wrapper > .mar-in > .row-pad > div {
  margin-bottom: 0;
}


.your-plan-sec > .content-wrapper {
  padding: 0;
  position: relative;
  z-index: 20;
}

.your-plan-sec > .content-wrapper > .mar-in {
  margin-left: -15px;
  margin-right: -15px;
}

.your-plan-sec > .content-wrapper > .mar-in > .pad {
  box-sizing: border-box;
  padding-left: 25px;
  padding-right: 25px;
  width: 100%;
}

.your-plan-sec .row-mar {
  margin-left: -15px;
  margin-right: -15px;
}

.your-plan-sec .row-mar > .content-wrapper {
  position: relative;
  z-index: 20;
  padding: 0;
}

.your-plan-sec .row-mar > .content-wrapper > .rowmar {
  margin-left: -15px;
  margin-right: -15px;
}

.your-plan-sec .column {
  position: relative;
  min-height: 1px;
}

@media (min-width: 768px){
  .your-plan-sec .column {
    width: 50%;
    float: left;
  }

}

.your-plan-sec .column > div {
  box-sizing: border-box;
  padding-left: 25px;
  padding-right: 25px;
  width: 100%;
}

.your-plan-sec {
  margin-bottom: 60px;
}

.hs-planning-page-row2 {
  margin-left: -15px;
  margin-right: -15px;
  background-color: #ededed;
  text-align: left;
}

.hs-planning-page-row2 > .row-pad {
  box-sizing: border-box;
  padding-left: 25px;
  padding-right: 25px;
  width: 100%;
}

.hs-planning-page-row2 > .row-pad > div {
  margin-left: -15px;
  margin-right: -15px;
  padding-top: 80px;
  text-align: left;
}

.hs-planning-page-row2 > .row-pad > div .content-wrapper {
  position: relative;
  z-index: 20;
  padding: 0;
}

.hs-planning-page-row2  h2 {
  margin: 0;
  color: #2f2e2e;
  font-family: 'Raleway', sans-serif;
  font-size: 34px;
  line-height: 45px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: none;
}

.hs-planning-page-row3 {
  background-color: #ededed;
  text-align: left;
  margin-left: -15px;
  margin-right: -15px;
}



.hs-planning-page-row2 > .row-pad > div {
  padding-bottom: 0;
}

.hs-planning-page-row3 {
  padding-top: 60px;
  padding-bottom: 70px;
}

.hs-planning-page-row3 > .row-pad {
  box-sizing: border-box;
  padding-left: 25px;
  padding-right: 25px;
}

.hs-planning-page-row3 > .row-pad > .content-wrapper {
  padding: 0;
}

.hs-planning-page-row3 .row-fluid-wrapper.row-number-1,
.hs-planning-page-row3 .row-fluid-wrapper.row-number-5,
.hs-planning-page-row3 .row-fluid-wrapper.row-number-9 {
  margin-left: -15px;
  margin-right: -15px;
}

.hs-planning-page-row3 .span4.widget-span {
  position: relative;
  min-height: 1px;
  margin: 0;
  float: left;
  width: 100%;
}


@media (min-width: 768px){
  .hs-planning-page-row3 .span4.widget-span {
    width: 100%;
  }

}

@media (min-width: 992px){
  .hs-planning-page-row3 .span4.widget-span {
    width: 33.33333333%;
  }

}
@media (min-width: 1200px){
  .hs-planning-page-row3 .span4.widget-span {
    width: 33.33333333%;
  }

}


.hs-planning-page-row3 .span4.widget-span > div {
  padding-bottom: 30px;
  box-sizing: border-box;
  padding-left: 25px;
  padding-right: 25px;
  width: 100%;
}



.hs-planning-page-row4 .row-fluid-wrapper[class*="background-image"] {
  position: relative;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 140px;
  padding-bottom: 130px;
}

.hs-planning-page-row4 .row-fluid-wrapper[class*="background-image"] > div {
  padding-left: 25px;
  padding-right: 25px;
  padding: 0;
}

.hs-planning-page-row4 .dnd-section>.row-fluid {
  width: 1100px;
  margin: 0 auto;
}

.hs-planning-page-row4 .dnd-section>.row-fluid > div > div {

  width: 100%;
}

.hs-planning-page-row4 div.hs_cos_wrapper {
  padding: 0 150px;
}

.hs-planning-page-row4 h2 {
  margin: 0;
  font-family: 'Raleway', sans-serif;
  font-size: 34px;
  line-height: 45px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: none;
  text-align: center;
  color: #fff;
}



@media (min-width: 768px){
  .hs-planning-page-row5 .column {
    width: 50%;
    float: left;
  }

}

.hs-planning-page-row5 .column > .row-pad {
  padding-left: 25px;
  padding-right: 25px;
  width: 100%;
}


.hs-planning-page-row5 .column > .row-pad > div {
  padding-top: 60px;
  padding-bottom: 60px;
}

.hs-planning-page-row5 .column a {
  -webkit-transition: color .15s ease-out,background-color .15s ease-out,border-color .15s ease-out;
  -moz-transition: color .15s ease-out,background-color .15s ease-out,border-color .15s ease-out;
  -ms-transition: color .15s ease-out,background-color .15s ease-out,border-color .15s ease-out;
  -o-transition: color .15s ease-out,background-color .15s ease-out,border-color .15s ease-out;
  transition: color .15s ease-out,background-color .15s ease-out,border-color .15s ease-out;
  -webkit-box-sizing: initial!important;
  -moz-box-sizing: initial!important;
  box-sizing: initial!important;
  text-decoration: none;
  cursor: pointer;
  outline: 0;
  border: 2px solid #bfa97d;
  position: relative;
  display: inline-block;
  width: auto;
  font-family: Raleway;
  letter-spacing: 1px;
  font-weight: 500 !important;
  white-space: pre-line;
  text-align: center;
  line-height: 1.5;
  height: auto;
  font-size: 18px;
  text-transform: none!important;
  padding: 16px 35px!important;
  min-width: 210px;
  color: rgb(66, 66, 66);
  border-color: rgb(66, 66, 66);
  border-width: 2px;
  font-weight: 400;
  border-radius: 0px;
  background-color: rgba(191, 169, 125, 0.01);
}

.hs-planning-page-row5 .column a i {
  line-height: inherit;
  vertical-align: top;
  display: inline-block;
  text-align: center;
  top: 2px;
  font-size: 18px;
  margin: 0 17px 0 0;
  color: #424242;
  width: inherit;
}

.fa-angle-double-left:before {
  content: "\f100";
}

.fa-angle-double-right:before {
  content: "\f101";
}

.hs-planning-page-row5 .column1 a {
  margin-left: 60px;
}

.hs-planning-page-row5 .column2 {
  text-align: right;
}

.hs-planning-page-row5 .column2 a {
  margin-right: 60px!important;
}

.hs-planning-page-row5 .column2 a i {
  margin: 0 0 0 17px;
}

.hs-planning-page-row5 .column a:hover {
  color: #fff;
  border-color: rgb(51, 102, 153);
  background-color: rgb(51, 102, 153);
}

.hs-planning-page-row5 .column a:hover i {
  color: #fff;
}

.hs-planning-page-row4 .row-fluid-wrapper[class*="background-image"]>div {
  padding-left: 15px;
  padding-right: 15px;
}

@media(max-width:1200px){
  .hs-planning-page-row5 .column a {
    font-size: 16px;
    line-height: 24px;
  }

  .hs-planning-page-row4 .dnd-section>.row-fluid {
    width: 950px;
  }

}


@media(max-width:1000px){
  .hs-planning-page-inner {
    padding-top: 44px;
  }

  .hs-planning-page-row4 .dnd-section>.row-fluid {
    width: 768px;
  }

  .hs-planning-page-row4 .row-fluid-wrapper[class*="background-image"]>div {
    padding-left: 10px;
    padding-right: 10px;
  }

  .hs-planning-page-row5 .column a {
    padding: 20px 28px!important;
  }
  .hs-planning-page-row3 .row-fluid-wrapper.row-number-9 .span4.widget-span>div {
    padding-bottom: 0;
  }

  .hs-planning-page-row3 {
    padding-bottom: 100px;
  }



}
@media(max-width:991px){
  .hs-planning-page-row4 div.hs_cos_wrapper {
    padding: 0 24px;
  }
}

@media(max-width:768px){
  .hs-planning-page-row4 .dnd-section>.row-fluid {
    width: 600px;
  }

  .hs-planning-page-row5 .column a {
    padding: 15px 25px!important;
  }
}



@media(max-width:767px){
  .your-plan-sec h4 {
    text-align: center!important;
    padding-bottom: 20px;
    margin-top: 0;
  }


  .hs-planning-page-row5 .column>.row-pad>div {padding-bottom: 0;}

  .hs-planning-page-row5 .column {
    text-align: center!important;
  }

  .hs-planning-page-row5 .column a {
    margin-left: 0px;
  }

  .hs-planning-page-row5 .column2>.row-pad>div {
    padding-top: 20px;
    padding-bottom: 60px;
  }

  .hs-planning-page-row5 .column2 a {
    margin-right: 0px !important;
  }
}


@media(max-width:600px){
  .hs-planning-page-row4 .dnd-section>.row-fluid {
    width: 420px;
  }

  .hs-planning-page-row5 {
    padding: 30px 0;
  } 
}


@media(max-width:480px){
  .hs-planning-page-row4 .dnd-section>.row-fluid {
    width: 300px;
  }

  .hs-planning-page-row4 div.hs_cos_wrapper {
    padding: 0;
  }

  .hs-planning-page-row5 .column a {
    font-size: 14px!important;
    padding: 15px 22px!important;
    min-width: 220px;
    line-height: 1;
  }

  .hs-planning-page-row5 .column a i {
    font-size: 16px!important;
  }
}




/* .investments-page-css {} */

.investments-page .hs-planning-page-row1 h3 {
  font-size: 22px;
  line-height: 35px;
  letter-spacing: 0px;
  font-weight: 400;
  font-style: normal;
  text-transform: none;
  color: #2b2b2b;
}


.investments-page .hs-planning-page-row1 {
  padding-bottom: 15px;
}

.investments-page .your-plan-sec .row-mar>.content-wrapper {
  max-width: 100%;
  padding: 0;
  width: 100%;
}

.investments-page .your-plan-sec .row-mar>.content-wrapper .rowmar {
  margin: 0;
}



.investments-page  .your-plan-sec {
  margin-bottom: 40px;
}


.investments-page .hs-planning-page-row4 .row-fluid-wrapper[class*="background-image"]>div > div > div {
  width: 100%;
}

.investments-page .hs-planning-page-row4 div.hs_cos_wrapper {
  padding: 0;
}


@media(max-width:1000px){
  .investments-page .banner img {
    left: -300px;
  }
}

@media(max-width:480px){
  .investments-page .banner img {
    left: -500px;
  }

  .investments-page .hs-planning-page-row4 .row-fluid-wrapper[class*="background-image"] {
    background-position: 43% center!important;
  }
}




/* website-page-css-start */
.body-container__website .row-fluid-wrapper.row-number-2{
  height: 45px;
}

.body-container__website .row-fluid-wrapper.row-number-4 {
  height: 47px;
}

@media(max-width:1000px){
  .website-pg .banner img {
    left: 0;
  }
}

/* website-page-css-end */

/* .hs-join-digital-page-css */

.hs-join-digital-page-inner .dnd-section {
  padding: 0;
}

.hs-join-digital-page-inner .widget-span.widget-type-cell {
  padding: 0;
}

.hs-join-digital-page-inner .dnd-section>.row-fluid {
  max-width: 100%;
  padding: 0;
}

.hs-join-digital-page-inner {
  overflow: hidden;
}


.hs-join-digital-page-inner .body-container-wrapper > .row {
  margin-left: -15px;
  margin-right: -15px;
}

.hs-join-digital-page-inner .body-container-wrapper > .row > .row-pad {
  box-sizing: border-box;
  padding-left: 25px;
  padding-right: 25px;
  width: 100%;
}

.hs-join-digital-page-row1 h1 {
  margin: 0;
  line-height: 68px;
  letter-spacing: 3px;
  font-weight: 400;
  color: #797979;
  font-family: 'Raleway', sans-serif;
  font-size: 50px;
  text-transform: none;
  text-align: center;
}

.hs-join-digital-page-row1 {
  margin-top: 151px;
  margin-bottom: 100px;
}

.row.hs-join-digital-page-row2 {
  margin-left: -15px;
  margin-right: -15px;
}

.hs-join-digital-page-row2 .column3 {}
.hs-join-digital-page-row2 .column6 {}

@media (min-width: 768px){
  .hs-join-digital-page-row2 .column3 {
    float: left;
    width: 25%;
  }
  .hs-join-digital-page-row2 .column6 {
    float: left;
    width: 50%;
  }
}

.hs-join-digital-page-row2 .column3 .inner:before,.hs-join-digital-page-row2 .column3 .inner:after {
  content: " ";
  display: table;
}

.hs-join-digital-page-row2 .column {
  position: relative;
  min-height: 1px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}

.hs-join-digital-page-row2 .column > div {
  box-sizing: border-box;
  padding-left: 25px;
  padding-right: 25px;
  width: 100%;
}

.hs-join-digital-page-row2 h2 {
  color: #2f2e2e;
  margin: 0;
  font-family: 'Raleway', sans-serif;
  font-size: 34px;
  line-height: 45px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: none;
  margin-bottom: 100px;
}

.hs-join-digital-page-row2 a.qbutton {
  white-space: nowrap;
  -webkit-transition: color .15s ease-out,background-color .15s ease-out,border-color .15s ease-out;
  -moz-transition: color .15s ease-out,background-color .15s ease-out,border-color .15s ease-out;
  -ms-transition: color .15s ease-out,background-color .15s ease-out,border-color .15s ease-out;
  -o-transition: color .15s ease-out,background-color .15s ease-out,border-color .15s ease-out;
  transition: color .15s ease-out,background-color .15s ease-out,border-color .15s ease-out;
  -webkit-box-sizing: initial!important;
  -moz-box-sizing: initial!important;
  box-sizing: initial!important;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid #bfa97d;
  position: relative;
  display: inline-block;
  width: auto;
  font-family: Raleway;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-width: 0px;
  border-radius: 0px;
  -moz-border-radius: 0px;
  -webkit-border-radius: 0px;
  color: #ffffff;
  padding-left: 25px;
  padding-right: 25px;
  font-size: 12px;
  line-height: 40px;
  height: 40px;
  border-width: 2px;
  font-style: normal;
  font-weight: 400;
  background-color: rgb(191, 169, 125);
  border-color: rgb(51, 102, 153);
  display: table;
  margin-bottom: 100px;
}

.hs-join-digital-page-row2 a.qbutton:hover {
  background-color: rgb(201, 201, 201);
  border-color: rgb(191, 169, 125);
}

.hs-join-digital-page-row3 h1 {
  margin: 0;
  line-height: 68px;
  letter-spacing: 3px;
  font-weight: 400;
  color: #797979;
  font-family: 'Raleway', sans-serif;
  font-size: 50px;
  text-transform: none;
  text-align: center;
}

.hs-join-digital-page-row2 {
  margin-bottom: 214px;
}

.hs-join-digital-page-row3 {
  margin-bottom: 50px;
}

.hs-join-digital-page-row2.hs-join-digital-page-row4 {
  margin-bottom: 64px;
}

.hs-join-digital-page-row2.hs-join-digital-page-row4 h2 {
  margin: 0;
}

.hs-join-digital-page-row2.hs-join-digital-page-row4 a.qbutton {
  margin-bottom: 0;
}


.hs-join-digital-page-row2 {
  margin-bottom: 0;
}

.hs-join-digital-page-row2.hs-join-digital-page-row2-add {
  margin-bottom: 214px;
}




@media(max-width:1000px){
  .hs-join-digital-page .banner img {
    left: 0;
  }
  .hs-join-digital-page-inner {
    padding-top: 44px;
  }
}


/* faqs-page-css */


.hs-faqs-page-inner {
  overflow: hidden;
}


.hs-faqs-page-inner .body-container-wrapper > .content-wrapper {
  padding: 0;
  padding-top: 44px;
}

.hs-faqs-page-inner .body-container-wrapper > .content-wrapper > .row {
  margin-left: -15px;
  margin-right: -15px;
}


.hs-faqs-page-inner .body-container-wrapper > .content-wrapper > .row > div {
  box-sizing: border-box;
  padding-left: 25px;
  padding-right: 25px;
  width: 100%;
}


.hs-faqs-page-row1 .container-fluid {
  margin-top: 30px;
  margin-bottom: 25px;
  margin-left: -15px;
  margin-right: -15px;
}

.hs-faqs-page-row1 h2 {
  color: #2f2e2e;
  margin: 0;
  font-family: 'Raleway', sans-serif;
  font-size: 34px;
  line-height: 45px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: none;
  margin-bottom: 0;
}

.hs-faqs-page-inner .dnd-section {
  padding: 0;
}

.hs-faqs-page-inner  .widget-span.widget-type-cell {
  padding: 0;
}

.hs-faqs-page-inner .dnd-section>.row-fluid {
  padding: 0;
  max-width: 100%;
}

.hs-faqs-page-row1 h2 span {
  color: #bfa97d;
}

.hs-faqs-page-row1 hr {
  height: 0;
  position: relative;
  display: block;
  border-bottom: 1px solid #b2b2b2;
  margin: 10px 0;
  border-color: #efefef;
  border-bottom-width: 1px;
  margin-top: 35px;
  margin-bottom: 35px;
}

.hs-faqs-page-row1 .container-fluid > div {
  padding-left: 25px;
  padding-right: 25px;
  width: 100%;
}


.hs-faqs-page-row2 .accordion-wrapper .title {
  letter-spacing: 1px;
  font-style: normal;
  font-family: 'Raleway', sans-serif;
  -moz-transition: background-color .15s ease-out,border-color .15s ease-out,color .15s ease-out;
  -ms-transition: background-color .15s ease-out,border-color .15s ease-out,color .15s ease-out;
  -o-transition: background-color .15s ease-out,border-color .15s ease-out,color .15s ease-out;
  transition: background-color .15s ease-out,border-color .15s ease-out,color .15s ease-out;
  cursor: pointer;
  position: relative;
  display: block;
  padding: 0 27px;
  color: #333;
  background-color: #ded5c2;
  border: 1px solid #ded5c2;
  text-align: center;
  margin: 0;
  height: auto;
  line-height: 1.75;
  padding-top: 15px;
  padding-bottom: 10px;
  text-transform: none!important;
  font-weight: 400!important;
  font-size: 20px!important;
  margin-top: 16px;
}

.hs-faqs-page-row2 .accordion-wrapper .title span.tab-title {
  padding: 0;
  color: inherit;
  line-height: inherit;
}

.hs-faqs-page-row2 .accordion-wrapper .title span.tab-title span.tab-title-inner {
  color: inherit;
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
}

.hs-faqs-page-row2 .accordion-wrapper .title:hover {
  background-color: #336699;
  border-color: #336699;
  color: #fff;
}

.hs-faqs-page-row2 .accordion-wrapper .set:first-child .title {
  margin: 0;
}

.hs-faqs-page-row2 .accordion-wrapper .title.active {
  background-color: #bfa97d;
  border-color: #bfa97d;
  color: #fff;
}

.hs-faqs-page-row2 .accordion-wrapper .content {
  padding: 22px 0 14px;
  text-align: center;
}

.hs-faqs-page-row2 .accordion-wrapper .content .content-inner {
  padding: 0;
  padding-top: 18px;
}

.hs-faqs-page-row2 .accordion-wrapper .content .content-inner p {
  font-family: Raleway, sans-serif;
  font-size: 18px;
  line-height: 25px;
  letter-spacing: 0px;
  font-weight: 400;
  font-style: normal;
  text-transform: none;
  color: #2b2b2b;
  margin-bottom: 1em;
  text-align: center;
}

.hs-faqs-page-row2 .accordion-wrapper .content .content-inner p:last-child {
  margin-bottom: 0;
}


.hs-faqs-page-row2 .accordion-wrapper .set:nth-child(4) .content .content-inner {
  padding: 0;
}

.hs-faqs-page-row2 {
  margin-bottom: 85px;
}


@media(max-width:768px){
  .hs-faqs-page .banner img {
    left: -500px;
  }

}


@media(max-width:480px){
  .hs-faqs-page .banner img {
    left: -700px;
  }
}









/* .hs-client-access-page-css {} */

.hs-client-access-page-inner .dnd-section {
  padding: 0;
}

.hs-client-access-page-inner .widget-span.widget-type-cell {
  padding: 0;
}

.hs-client-access-page-inner .dnd-section>.row-fluid {
  padding: 0;
  max-width: 100%;
}

.hs-client-access-page-inner .content-wrapper {
  padding: 0;
  position: relative;
  z-index: 20;
}

.hs-client-access-page-inner .content-wrapper > .row-mar {
  margin-left: -15px;
  margin-right: -15px;
}

.hs-client-access-page-inner .content-wrapper > .row-mar > .row-pad {
  box-sizing: border-box;
  padding-left: 25px;
  padding-right: 25px;
  width: 100%;
}

.hs-client-access-page-row1 {
  margin-top: 80px;
  margin-left: -15px;
  margin-right: -15px;
  padding-bottom: 32px;
}

.hs-client-access-page-row1 .content-with-image-col-wrap .img-col-wrap {
  width: 100%;
}
.hs-client-access-page-row1 .content-with-image-col-wrap .con-col-wrap {
  width: 100%;
}


@media (min-width: 768px){
  .hs-client-access-page-row1 .content-with-image-col-wrap .img-col-wrap {
    width: 25%;
    float: left;
  }
  .hs-client-access-page-row1 .content-with-image-col-wrap .con-col-wrap {
    width: 75%;
    float: left;
  }
}



.hs-client-access-page-row1 .content-with-image-col-wrap .img-col-wrap a {
  pointer-events: all;
  cursor: pointer;
}

.hs-client-access-page-row1 .content-with-image-col-wrap .con-col-wrap h5 {
  margin: 0;
  font-family: 'Raleway', sans-serif;
  font-size: 34px;
  line-height: 45px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: none;
  color: #bfa97d;
}

.hs-client-access-page-row1 .content-with-image-col-wrap .con-col-wrap p {
  font-family: Raleway, sans-serif;
  font-size: 18px;
  line-height: 25px;
  letter-spacing: 0px;
  font-weight: 400;
  font-style: normal;
  text-transform: none;
  color: #2b2b2b;
  margin-bottom: 1em;
}

.hs-client-access-page-row1 .content-with-image-col-wrap .con-col-wrap p:nth-child(3) {
  margin: 0;
  padding-bottom: 27px;
}

.hs-client-access-page-row1 .content-with-image-col-wrap .con-col-wrap a.login-btn {
  -webkit-transition: color .15s ease-out,background-color .15s ease-out,border-color .15s ease-out;
  -moz-transition: color .15s ease-out,background-color .15s ease-out,border-color .15s ease-out;
  -ms-transition: color .15s ease-out,background-color .15s ease-out,border-color .15s ease-out;
  -o-transition: color .15s ease-out,background-color .15s ease-out,border-color .15s ease-out;
  transition: color .15s ease-out,background-color .15s ease-out,border-color .15s ease-out;
  -webkit-box-sizing: initial!important;
  -moz-box-sizing: initial!important;
  box-sizing: initial!important;
  text-decoration: none;
  cursor: pointer;
  outline: 0;
  margin: 0;
  padding: 0 40px;
  border: 2px solid #bfa97d;
  position: relative;
  display: inline-block;
  width: auto;
  padding-left: 50px;
  padding-right: 50px;
  font-family: Raleway;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 18px;
  line-height: 42px;
  height: 42px;
  color: rgb(51, 102, 153);
  border-color: rgb(51, 102, 153);
  border-width: 2px;
  font-style: normal;
  font-weight: 400;
  border-radius: 0px;
  background-color: rgb(255, 255, 255);
}

.hs-client-access-page-row1 .content-with-image-col-wrap .con-col-wrap a.login-btn:hover {
  background-color: rgb(51, 102, 153);
  border-color: rgb(51, 102, 153);
  color: #fff;
}

.hs-client-access-page-inner .separator {
  position: relative;
  display: block;
  border-bottom: 1px solid #b2b2b2;
  margin: 10px 0;
  border-bottom-width: 1px;
  border-color: #ededed;
}

.hs-client-access-page-row1.hs-client-access-page-row2 {
  margin-top: 0;
  padding-bottom: 0;
}

.hs-client-access-page-row2 .content-with-image-col-wrap .con-col-wrap .pad-inner {
  padding-top: 2em;
}

.hs-client-access-page-row2 .content-with-image-col-wrap .con-col-wrap .pad-inner p {
  margin: 0;
  padding-bottom: 1.5em;
}

.hs-client-access-page-row2 {
  margin-bottom: 100px;
}

.hs-client-access-page-inner {
  overflow: hidden;
}

@media(max-width:1000px){
  .hs-client-access-page .banner img {
    left: -500px;
  }

}



@media(max-width:768px){
  .hs-client-access-page .banner img {
    width: auto!important;
    max-width: none;
    max-height: 350px;
    left: -160px;
  }
}


@media(max-width:767px){
  .hs-client-access-page-row1 .content-with-image-col-wrap .img-col-wrap .img-col {
    padding: 0;
  }
}

@media(max-width:490px){
  .hs-client-access-page .banner img {
    left: -360px;
  }
}









/* .hs-client-access-2-page-css
*/



.hs-client-access-2-page-inner {
  overflow: hidden;
  position: relative;
  z-index: 100;
  margin-top: -103px;
}

.hs-client-access-2-page-inner .dnd-section {
  padding: 0;
}

.hs-client-access-2-page-inner .widget-span.widget-type-cell {
  padding: 0;
}

.hs-client-access-2-page-inner .dnd-section>.row-fluid {
  padding: 0;
  max-width: 100%;
}



.hs-client-access-2-page-inner .body-container-wrapper > .row {
  margin-left: -15px;
  margin-right: -15px;
  position: relative;
}

.client-access-2-img-col {
  position: relative;
  min-height: 1px;
  padding-left: 0;
  padding-right: 0;
}

@media (min-width: 768px){
  .client-access-2-img-col {
    float: left;
    width: 33.33333333%;
  }
  .client-access-2-con-col{
    float: left;
    width: 66.66666667%;
  }
}



@media (min-width: 1001px){
  .client-access-2-img-col {
    float: left;
    width: 33.33333333%;
  }
  .client-access-2-con-col{
    float: left;
    width: 66.66666667%;
  }
}

.client-access-2-con-col {
  position: relative;
  min-height: 1px;
}

.client-access-2-img-col .row-fluid-wrapper[class*="background-image"] {
  padding-top: 35px;
  box-sizing: border-box;
  padding-left: 25px;
  padding-right: 25px;
  width: 100%;
}

.client-access-2-img-col .row-fluid-wrapper[class*="background-image"] > div {
  height: 775px;
}

.client-access-2-img-col .row-fluid-wrapper[class*="background-image"] > div > div {
  display: block;
  height: 100%;
}

.client-access-2-con-col > .row-pad {
  box-sizing: border-box;
  padding-left: 25px;
  padding-right: 25px;
  width: 100%;
  padding-top: 162px;
}

.client-access-2-con-col > .row-pad > .row {
  margin-left: -15px;
  margin-right: -15px;
}

.hs-client-access-2-row1 .content-with-image-col-wrap .img-col-wrap {
  width: 100%;
}
.hs-client-access-2-row1 .content-with-image-col-wrap .con-col-wrap {
  width: 100%;
}

@media (min-width: 768px){
  .hs-client-access-2-row1 .content-with-image-col-wrap .img-col-wrap {
    width: 25%;
    float: left;
  }
  .hs-client-access-2-row1 .content-with-image-col-wrap .con-col-wrap {
    width: 75%;
    float: left;
  }
}



.hs-client-access-2-row1 .content-with-image-col-wrap .img-col-wrap .img-col {
  padding: 0;
}


.hs-client-access-2-row1 .content-with-image-col-wrap .con-col-wrap .pad-inner {
  padding-top: 2em;
  padding-bottom: 32px;
}

.hs-client-access-2-row1  .content-with-image-col-wrap .con-col-wrap h2 {
  margin: 0;
  font-family: 'Raleway', sans-serif;
  font-size: 34px;
  line-height: 45px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: none;
}

.hs-client-access-2-row1 .content-with-image-col-wrap .con-col-wrap p {
  font-family: Raleway, sans-serif;
  font-size: 18px;
  line-height: 25px;
  letter-spacing: 0px;
  font-weight: 400;
  font-style: normal;
  text-transform: none;
  color: #2b2b2b;
  margin-bottom: 1em;
}

.hs-client-access-2-row1 .content-with-image-col-wrap .con-col-wrap p:nth-child(3) {
  margin: 0;
  padding-bottom: 1.5em;
}

.hs-client-access-2-row1 .content-with-image-col-wrap  a.login-btn {
  -webkit-transition: color .15s ease-out,background-color .15s ease-out,border-color .15s ease-out;
  -moz-transition: color .15s ease-out,background-color .15s ease-out,border-color .15s ease-out;
  -ms-transition: color .15s ease-out,background-color .15s ease-out,border-color .15s ease-out;
  -o-transition: color .15s ease-out,background-color .15s ease-out,border-color .15s ease-out;
  transition: color .15s ease-out,background-color .15s ease-out,border-color .15s ease-out;
  -webkit-box-sizing: initial !important;
  -moz-box-sizing: initial !important;
  box-sizing: initial !important;
  text-decoration: none;
  cursor: pointer;
  outline: 0;
  margin: 0;
  padding: 0 40px;
  border: 2px solid #bfa97d;
  position: relative;
  display: inline-block;
  width: auto;
  padding-left: 50px;
  padding-right: 50px;
  font-family: Raleway;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 18px;
  line-height: 42px;
  height: 42px;
  color: #369;
  border-color: #369;
  border-width: 2px;
  font-style: normal;
  font-weight: 400;
  border-radius: 0px;
  background-color: #fff;
}

.hs-client-access-2-row1 .content-with-image-col-wrap a.login-btn:hover {
  background-color: #369;
  border-color: #369;
  color: #fff;
}


.separator-wrap > .row-pad {
  box-sizing: border-box;
  padding-left: 25px;
  padding-right: 25px;
  width: 100%;
}

.separator-wrap > .row-pad .separator {
  position: relative;
  display: block;
  border-bottom: 1px solid #b2b2b2;
  margin: 10px 0;
  border-bottom-width: 1px;
  border-color: #ededed;
}

.hs-client-access-2-row1.hs-client-access-2-row2 .content-with-image-col-wrap .con-col-wrap p {
  margin: 0;
  padding-bottom: 1.5em !important;
}
.hs-client-access-2-row1 .content-with-image-col-wrap .img-col-wrap .img-col a {
  cursor: pointer;
  pointer-events: all;
}


@media(max-width:1627px){
  .client-access-2-img-col .row-fluid-wrapper[class*="background-image"]>div {
    height: 850px;
  }
}

@media(max-width:1104px){
  .client-access-2-img-col .row-fluid-wrapper[class*="background-image"]>div {
    height: 880px;
  }
}

@media(max-width:1001px){
  .client-access-2-img-col .row-fluid-wrapper[class*="background-image"]>div {
    height: 580px;
  }
}

@media(max-width:1000px){
  .client-access-2-img-col {
    width: 100%;
  }

  .client-access-2-con-col {
    width: 100%;
  }


  .hs-client-access-2-page-inner {
    margin: 0;
    margin-top: 2px;
  }
}

@media(max-width:767px){
  .hs-client-access-2-page-inner {
    margin: 0;
    margin-top: 4px;
  }
}




/* .hs-home-backup-page-css */

.hs-home-backup-page .dnd-section {
  padding: 0;
}

.hs-home-backup-page .widget-span.widget-type-cell {
  padding: 0;
}

.hs-home-backup-page .dnd-section>.row-fluid {
  padding: 0;
  max-width: 100%;
}


.hs-home-backup-page-inner {
  overflow: hidden;
  margin-top: -105px;
}

.hm-full_width {
  position: relative;
  z-index: 100;
}

.hm-full_width > .row {
  margin-left: -15px;
  margin-right: -15px;
}

.hs-home-backup-page-row1 {
  background-color: #ffffff;
  padding-top: 35px;
  padding-bottom: 35px;
  text-align: center;
}

.hs-home-backup-page-row1 > .content-wrapper {
  padding: 0;
  position: relative;
  z-index: 20;
}

.hs-home-backup-page-row1 > .content-wrapper > div {
  margin-left: -15px;
  margin-right: -15px;
}

.hs-home-backup-page-row1 > .content-wrapper .row-pad {
  box-sizing: border-box;
  padding-left: 25px;
  padding-right: 25px;
  width: 100%;
}

.hs-home-backup-page-row1 h2 {
  margin: 0;
  color: #2f2e2e;
  font-family: 'Raleway', sans-serif;
  font-size: 34px;
  line-height: 45px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: none;
  text-align: center;
  font-size: 48px;
  margin-bottom: 31px;
}

.hs-home-backup-page-row1 h3 {
  margin: 0;
  color: #2f2e2e;
  font-family: 'Raleway', sans-serif;
  font-size: 34px;
  line-height: 45px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: none;
  text-align: center;
  margin-bottom: 30px;
}

.hs-home-backup-page-row1 p {
  font-family: Raleway, sans-serif;
  font-size: 18px;
  line-height: 25px;
  letter-spacing: 0px;
  font-weight: 400;
  font-style: normal;
  text-transform: none;
  color: #2b2b2b;
  margin: 0;
  text-align: center;
  font-size: 24px;
}

.hm-images-area-wrap {
  background-color: #ffffff;
  padding-top: 88px;
  padding-bottom: 52px;
  text-align: center;
}


.hm-images-area-wrap > .content-wrapper {
  padding: 0;
  position: relative;
  z-index: 20;
}

.hm-images-area-wrap > .content-wrapper > .row-mar {
  margin-left: -15px;
  margin-right: -15px;
}

.hm-images-area-wrap > .content-wrapper > .row-mar > .row-pad {
  padding-left: 25px;
  padding-right: 25px;
  width: 100%;
}


.hm-images-area-wrap .row-fluid-wrapper.row-number-1 {
  margin-left: -15px;
  margin-right: -15px;
}

.hm-images-area-wrap .span4.widget-span {
  margin: 0;
  position: relative;
  min-height: 1px;
  width: 100%;
}


@media (min-width: 768px){
  .hm-images-area-wrap .span4.widget-span {
    width: 33.33333333%;
    float: left;
  }

}

.hm-images-area-wrap .span4.widget-span > div {
  box-sizing: border-box;
  padding-left: 25px;
  padding-right: 25px;
  width: 100%;
  margin-bottom: 69px;
}

.hm-images-area-wrap img {
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}

.hm-icon-bg-area-sec {
  background-color: #f6f6f6;
  padding-top: 105px;
  text-align: left;
}


.hm-icon-bg-area-sec > .content-wrapper {
  padding: 0;
  position: relative;
  z-index: 20;
}


.hm-icon-bg-area-sec .row-fluid-wrapper.row-number-1,
.hm-icon-bg-area-sec .row-fluid-wrapper.row-number-5 {
  margin-left: -15px;
  margin-right: -15px;
}

.hm-icon-bg-area-sec .span4.widget-span {
  position: relative;
  min-height: 1px;
  width: 100%;
  margin: 0;
}


@media (min-width: 768px){
  .hm-icon-bg-area-sec .span4.widget-span {
    float: left;
    width: 33.33333333%;
  }

}

.hm-icon-bg-area-sec .span4.widget-span > div {
  box-sizing: border-box;
  padding-left: 25px;
  padding-right: 25px;
  width: 100%;
}


.icon_lightbulb_alt:before {
  content: "\e007";
}

.icon_gift_alt:before {
  content: "\e008";
}

.icon_house_alt:before {
  content: "\e009";
}

.icon_ribbon_alt:before {
  content: "\e012";
}

.icon_bag_alt:before {
  content: "\e013";
}
.icon_pin_alt:before {
  content: "\e01d";
}




.hm-about-skills-outer {
  padding-top: 102px;
  padding-bottom: 55px;
}

.hm-about-skills-outer > .content-wrapper {
  padding: 0;
  position: relative;
  z-index: 20;
}

.hm-about-skills-outer > .content-wrapper > .row-mar {
  margin-left: -15px;
  margin-right: -15px;
}

.hm-about-skills-outer .col {
  position: relative;
  min-height: 1px;
}


@media (min-width: 768px){

  .hm-about-skills-outer .col {
    width: 50%;
    float: left;
  }
}

.hm-about-skills-outer .col > .row-pad {
  padding-left: 25px;
  padding-right: 25px;
  width: 100%;
}

.hm-about-skills-outer .about-col {}

.hm-about-skills-outer .about-col h2 {
  color: #2f2e2e;
  margin: 0;
  font-family: 'Raleway', sans-serif;
  font-size: 34px;
  line-height: 45px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: none;
  margin-bottom: 47px;
}

.hm-icon-bg-area-sec {
  padding-bottom: 65px;
}

.hm-about-skills-outer .about-col p {
  margin: 0;
  font-family: Raleway, sans-serif;
  font-size: 18px;
  line-height: 25px;
  letter-spacing: 0px;
  font-weight: 400;
  font-style: normal;
  text-transform: none;
  color: #2b2b2b;
}

.hm-about-skills-outer .about-col p:nth-child(2) {
  margin-bottom: 26px;
}

.hm-about-skills-outer .about-col p:nth-child(3) {
  margin-bottom: 77px;
}


.hm-meet-the-team-sec {
  padding-top: 106px;
  padding-bottom: 80px;
}

.hm-meet-the-team-sec h2 {
  color: #2f2e2e;
  font-family: 'Raleway', sans-serif;
  font-size: 34px;
  line-height: 45px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: none;
  text-align: center;
}

.hm-meet-the-team-sec > .content-wrapper {
  padding: 0;
  position: relative;
  z-index: 20;
}

.hm-meet-the-team-sec > .content-wrapper > .row-mar {
  margin-left: -15px;
  margin-right: -15px;
}

.hm-meet-the-team-sec > .content-wrapper > .row-mar > .row-pad {
  box-sizing: border-box;
  padding-left: 25px;
  padding-right: 25px;
  width: 100%;
}

.hm-meet-the-team-sec h5 {
  margin: 0;
  font-family: 'Raleway', sans-serif;
  font-size: 16px;
  line-height: 28px;
  font-style: normal;
  font-weight: 300;
  letter-spacing: 0px;
  text-transform: none;
  color: #8c8c8c;
  text-align: center;
  margin-bottom: 83px;
}

.hm-meet-the-team-sec h2 {
  margin-bottom: 42px;
}


.meet_the_team_card .row-fluid-wrapper.row-number-1 {
  margin-left: -15px;
  margin-right: -15px;
  position: relative;
}

.meet_the_team_card .span3.widget-span {
  margin: 0;
  width: 100%;
  position: relative;
}


@media (min-width: 768px){
  .meet_the_team_card .span3.widget-span {
    width: 25%;
    float: left;
  }

}

.meet_the_team_card .span3.widget-span > div {
  box-sizing: border-box;
  padding-left: 25px;
  padding-right: 25px;
  width: 100%;
}

.meet_the_team_card .span3.widget-span .pad-inner {
  padding: 0;
}

.meet_the_team_card .span3.widget-span .meet-the-team-wrap .image-wrap {
  position: relative;
}

.meet_the_team_card .span3.widget-span .meet-the-team-wrap .image-wrap .image_overlay {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background-color: #bfa97b;
  opacity: 0;
  -webkit-transition: opacity .3s ease-out;
  -moz-transition: opacity .3s ease-out;
  -o-transition: opacity .3s ease-out;
  transition: opacity .3s ease-out;
}

.meet_the_team_card .span3.widget-span .meet-the-team-wrap .image-wrap img:hover {
  opacity: 1;
  transition: unset;
}

.meet_the_team_card .span3.widget-span .meet-the-team-wrap .image-wrap:hover .image_overlay {
  opacity: .7;
  cursor: pointer;
  background-color: #4b4747;
}


.meet_the_team_card .span3.widget-span .meet-the-team-wrap .m-team-info h4 {
  font-family: Raleway, sans-serif;
  font-size: 20px !important;
  line-height: 30px;
  letter-spacing: 1px;
  font-weight: 700;
  font-style: normal;
  margin-bottom: 10px;
  color: #2f2e2e;
  text-transform: none;
}

.meet_the_team_card .span3.widget-span .meet-the-team-wrap .m-team-info {
  margin-top: 37px;
}

.meet_the_team_card .span3.widget-span .meet-the-team-wrap .m-team-info h6 {
  margin-top: -8px;
}

.meet_the_team_card .span3.widget-span .meet-the-team-wrap .meet-social {
  margin-top: 16px;
}

.social_linkedin:before {
  content: "\e09d";
}

.meet_the_team_card .span3.widget-span .pad-inner {
  margin-bottom: 71px;
}

.meet_the_team_card .span3.widget-span .meet-the-team-wrap .meet-social {
  margin-bottom: 82px;
}

.hm-contact-sec {
  padding-top: 86px;
  text-align: left;
  text-align: center;
}


.hm-contact-sec > .content-wrapper {
  position: relative;
  z-index: 20;
  padding: 0;
}

.hm-contact-sec > .content-wrapper > .row-mar {
  margin-left: -15px;
  margin-right: -15px;
}

.hm-contact-sec > .content-wrapper > .row-mar > .row-pad {
  box-sizing: border-box;
  padding-left: 25px;
  padding-right: 25px;
  width: 100%;
}

.hm-contact-sec h2 {
  color: #2f2e2e;
  margin: 0;
  font-family: 'Raleway', sans-serif;
  font-size: 34px;
  line-height: 45px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: none;
  text-align: center;
  margin-bottom: 43px;
}

.hm-contact-sec h5 {
  font-family: 'Raleway', sans-serif;
  font-size: 16px;
  line-height: 28px;
  font-style: normal;
  font-weight: 300;
  letter-spacing: 0px;
  text-transform: none;
  color: #8c8c8c;
  margin: 0;
}

.hm-icon-bottom-sec {
  padding-top: 90px;
  padding-bottom: 100px;
}

.hm-icon-bottom-sec > .content-wrapper {
  padding: 0;
  position: relative;
  z-index: 20;
}

.hm-icon-bottom-sec > .content-wrapper .row-fluid-wrapper.row-number-1 {
  margin-left: -15px;
  margin-right: -15px;
}

.hm-icon-bottom-sec .span3.widget-span {
  margin: 0;
  width: 100%;
}


@media (min-width: 768px){
  .hm-icon-bottom-sec .span3.widget-span {
    float: left;
    width: 25%;
  }

}

.hm-icon-bottom-sec .span3.widget-span > div {
  box-sizing: border-box;
  padding-left: 25px;
  padding-right: 25px;
  width: 100%;
}

.hm-icon-bottom-sec .span3.widget-span .icon-with-content-wrapper .icon_text_holder h4.icon_title {
  font-weight: 400;
}

.hm-icon-bottom-sec .span3.widget-span .icon-with-content-wrapper .add-bar {
  padding-left: 70px;
  margin-top: 73px;
}

.hm-icon-bottom-sec .span3.widget-span .icon-with-content-wrapper .add-bar p {
  font-family: Raleway, sans-serif;
  font-size: 18px;
  line-height: 25px;
  letter-spacing: 0px;
  font-weight: 400;
  font-style: normal;
  text-transform: none;
  color: #2b2b2b;
  margin-bottom: 1em;
}

.hm-icon-bottom-sec .span3.widget-span .icon-with-content-wrapper .add-bar p:last-child {
  margin: 0;
}

.icon_phone:before {
  content: "\e090";
}

.icon_printer:before {
  content: "\e103";
}

.icon_mail_alt:before {
  content: "\e010";
}
.hm-icon-bottom-sec .span3.widget-span .icon-with-content-wrapper .icon_text_holder h4.icon_title {
  word-break: inherit;
}
@media(max-width:1000px){
  .hs-home-backup-page-inner {
    margin: 0;
  }
}

@media(max-width:780px) and (min-width:769px){
  .hm-icon-bg-area-sec,
  .hm-about-skills-outer{
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media(max-width:767px){
  .meet-the-team-wrap .image-wrap img {
    object-fit: cover;
    width: 560px;
  }
}

@media(max-width:615px) and (min-width:601px){
  .hm-icon-bg-area-sec {
    padding-left: 15px;
    padding-right: 15px;
  }

  .hm-about-skills-outer {
    padding-right: 15px;
    padding-left: 15px;
  }

  .hm-icon-bottom-sec {
    padding-left: 15px;
  }
}

/* contact-css */

.hs-contact-page-inner {
  overflow: hidden;
}

.hs-contact-page-inner .dnd-section {
  padding: 0;
}

.hs-contact-page-inner .dnd-section>.row-fluid {
  padding: 0;
  max-width: 100%;
}

.hs-contact-page-inner .widget-span.widget-type-cell {
  padding: 0;
}



.hs-contact-page-inner .body-container-wrapper > .row {
  margin-left: -15px;
  margin-right: -15px;
  position: relative;
}

.hs-contact-page-row1 .content-wrapper {
  padding: 0;
  position: relative;
  z-index: 20;
}

.hs-contact-page-row1 .content-wrapper > .row-mar {
  margin-left: -15px;
  margin-right: -15px;
}

.hs-contact-page-row1 .content-wrapper > .row-mar > .row-pad {
  box-sizing: border-box;
  padding-left: 25px;
  padding-right: 25px;
  width: 100%;
}

.hs-contact-page-row1 h2 {
  margin: 0;
  color: #2f2e2e;
  font-family: 'Raleway', sans-serif;
  font-size: 34px;
  line-height: 45px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: none;
  text-align: center;
  margin-top: 30px;
  margin-bottom: 25px;
}

.hs-contact-page-row1 h3 {
  margin: 0;
  letter-spacing: 1px;
  font-family: 'Raleway', sans-serif;
  font-size: 20px;
  line-height: 31px;
  font-style: normal;
  color: #2f2e2e;
  text-transform: none;
  font-weight: 400;
}

.hs-contact-page-row1 hr {
  height: 0;
  position: relative;
  display: block;
  border-bottom: 1px solid #b2b2b2;
  margin: 10px 0;
  border-color: #e5e5e5;
  border-bottom-width: 1px;
  margin-top: 60px;
  margin-bottom: 10px;
}


.hs-contact-page-row2 > .content-wrapper {
  padding: 0;
  position: relative;
  z-index: 20;
}

.hs-contact-page-row2 > .content-wrapper > .row-mar {
  margin-left: -15px;
  margin-right: -15px;
}

.hs-contact-page-row2 > .content-wrapper > .row-mar > .row-pad {
  padding-left: 25px;
  padding-right: 25px;
  width: 100%;
  padding-top: 1em !important;
}

.hs-contact-page-row2 p {
  font-family: Raleway, sans-serif;
  font-size: 18px;
  line-height: 25px;
  letter-spacing: 0px;
  font-weight: 400;
  font-style: normal;
  text-transform: none;
  color: #2b2b2b;
  margin-bottom: 1em;
  text-align: center;
  text-align: center;
  font-size: 21px;
}

.hs-contact-page-row2 form {
  max-width: 100%;
  margin-top: 8px;
}

.hs-contact-page-row2 .hs-form label {
  margin: 0;
  font-family: Raleway, sans-serif;
  font-size: 18px;
  line-height: 25px;
  letter-spacing: 0px;
  font-weight: 400;
}

.hs-contact-page-row2 form .hs-form-field {
  margin-bottom: 18px;
}

.hs-contact-page-row2 form textarea {
  min-height: 212px;
}

.hs-contact-page-row2 form input.hs-button.primary.large {
  margin: 0;

}

.hs-contact-page-row2 hr {
  height: 0;
  position: relative;
  display: block;
  border-bottom: 1px solid #b2b2b2;
  margin: 10px 0;
  border-color: #e5e5e5;
  border-bottom-width: 1px;
  margin-top: 40px;
  margin-bottom: 10px;
}


.contact-map-wrap {
  margin-top: 10px;
}

.contact-map-wrap .row-fluid-wrapper[class*="background-image"] {
  text-align: center;
}

.contact-map-wrap a {
  display: inline-block;
}

.contact-map-wrap a img {
  clear: both;
  display: block;
  margin: 10px auto;
  margin-bottom: 0;
}


@media(max-width:1300px){

  .contact-map-wrap a img {
    height: 410px;
    margin: 0;
  }

  .contact-map-wrap .row-fluid-wrapper[class*="background-image"] {
    background-size: auto!important;
    height: 426px;
  }



  .contact-map-wrap a {
    display: inherit;
  }
}

@media(max-width:1000px){
  .contact-map-wrap .row-fluid-wrapper[class*="background-image"] {
    background-size: auto !important;
    height: 416px;
  }
}

@media(max-width:775px) and (min-width:769px){
  .hs-contact-page-row2 {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media(max-width:615px) and (min-width:601px){
  .hs-contact-page-row2 {
    padding-left: 15px;
    padding-right: 15px;
  }
}


@media(max-width:480px){
  .banner-slider-outer {
    display: none;
  }

  .hs-contact-page-row1 {
    margin-top: 31px;
  }
}




/* about-page-css */

.hs-about-page-inner {
  overflow: hidden;
}

.hs-about-page-inner .dnd-section {
  padding: 0;
}

.hs-about-page-inner .widget-span.widget-type-cell {
  padding: 0;
}

.hs-about-page-inner .dnd-section>.row-fluid {
  padding: 0;
  max-width: 100%;
}

.hs-about-page-row1 {
  margin-left: -15px;
  margin-right: -15px;
  padding-top: 80px;
  padding-bottom: 100px;
}

.hs-about-page-row1 > .content-wrapper {
  padding: 0;
  position: relative;
  z-index: 20;
}

.hs-about-page-row1 > .content-wrapper > .row-mar {
  margin-left: -15px;
  margin-right: -15px;
}

.hs-about-page-row1 > .content-wrapper > .row-mar > .row-pad {
  box-sizing: border-box;
  padding-left: 25px;
  padding-right: 25px;
  width: 100%;
}

.hs-about-page-row1 h2 {
  color: #2f2e2e;
  font-family: 'Raleway', sans-serif;
  font-size: 34px;
  line-height: 45px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: none;
  margin-bottom: 0;
  padding-bottom: 30px;
}

.hs-about-page-row1 p {
  font-family: Raleway, sans-serif;
  font-size: 18px;
  line-height: 25px;
  letter-spacing: 0px;
  font-weight: 400;
  font-style: normal;
  text-transform: none;
  color: #2b2b2b;
  margin: 0;
}

.hs-about-page-row1 > .content-wrapper > .row-mar > .row-pad > div {
  margin-left: -15px;
  margin-right: -15px;
}

.hs-about-page-row1 > .content-wrapper > .row-mar > .row-pad > div > div {
  padding-left: 25px;
  padding-right: 25px;
  width: 100%;
}

.hs-about-page-row2 {
  background-color: #bfa97d;
  padding-top: 90px;
  padding-bottom: 50px;
}

.hs-about-page-row2 > .content-wrapper {
  padding: 0;
  position: relative;
  z-index: 20;
}

.hs-about-page-row2 > .content-wrapper > .row-mar {
  margin-left: -15px;
  margin-right: -15px;
}

.hs-about-page-row2 > .content-wrapper > .row-mar > .row-pad {
  box-sizing: border-box;
  padding-left: 25px;
  padding-right: 25px;
  width: 100%;
}

.hs-about-page-row2 h2 {
  padding-bottom: 20px;
  font-family: 'Raleway', sans-serif;
  font-size: 34px;
  line-height: 45px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: none;
  margin: 0;
  color: #fff;
  font-size: 40px;
}


.hs-about-page-row3 {
  margin-left: -15px;
  margin-right: -15px;
  padding-top: 80px;
  padding-bottom: 80px;
}

.hs-about-page-row3 > .content-wrapper {
  padding: 0;
  position: relative;
  z-index: 20;
}

.hs-about-page-row3 > .content-wrapper > .row-mar {
  margin-left: -15px;
  margin-right: -15px;
}

.hs-about-page-row3 > .content-wrapper > .row-mar > .row-pad {
  box-sizing: border-box;
  padding-left: 25px;
  padding-right: 25px;
  width: 100%;
}

.hs-about-page-row3 h2 {
  margin: 0;
  color: #2f2e2e;
  font-family: 'Raleway', sans-serif;
  font-size: 34px;
  line-height: 45px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: none;
  text-align: center;
  padding-bottom: 20px;
}

.hs-about-page-row3 p {
  font-family: Raleway, sans-serif;
  font-size: 18px;
  line-height: 25px;
  letter-spacing: 0px;
  font-weight: 400;
  font-style: normal;
  text-transform: none;
  color: #2b2b2b;
  margin: 0;
}

.hs-about-page-row3 .row-fluid-wrapper.row-number-3 {
  padding-top: 50px;
  margin-left: -15px;
  margin-right: -15px;
}

.hs-about-page-row3 .span2.widget-span {
  margin: 0;
  width: 100%;
}

.hs-about-page-row3 .span8.widget-span {
  margin: 0;
  width: 100%;
}

@media (min-width: 768px){
  .hs-about-page-row3 .span2.widget-span {
    float: left;
    width: 16.66666667%;
  }

  .hs-about-page-row3 .span8.widget-span {
    width: 66.66666667%;
    float: left;
  }
}



.hs-about-page-row3 .span8.widget-span > div {
  box-sizing: border-box;
  padding-left: 25px;
  padding-right: 25px;
  width: 100%;
}

.hs-about-page-row3 img {
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}

.hs-about-page-row4 {
  background-color: #262f36;
  text-align: center;
  margin-left: -15px;
  margin-right: -15px;
}

.hs-about-page-row4 > .row-pad {
  box-sizing: border-box;
  padding-left: 25px;
  padding-right: 25px;
  width: 100%;
}

.hs-about-page-row4 > .row-pad > .row {
  margin-left: -15px;
  margin-right: -15px;
}

.hs-about-page-row4,.hs-about-page-row4 h1,
.hs-about-page-row4 h2,.hs-about-page-row4 h3,
.hs-about-page-row4 h4 , .hs-about-page-row4 h5,.hs-about-page-row4 h6 {
  color: #fff;
}

.hs-about-page-row4 > .row-pad > .row > .content-wrapper {
  padding: 0;
  position: relative;
  z-index: 20;
}

.hs-about-page-row4 > .row-pad > .row > .content-wrapper > .row-mar {
  margin-left: -15px;
  margin-right: -15px;
}

.hs-about-page-row4 > .row-pad > .row > .content-wrapper > .row-mar > .row-pad {
  box-sizing: border-box;
  padding-left: 25px;
  padding-right: 25px;
  width: 100%;
}

.hs-about-page-row4 h3 {
  margin: 0;
  display: inline-block;
  top: 0;
  background-color: transparent;
  position: relative;
  vertical-align: middle;
  font-weight: 700;
  letter-spacing: 5px;
  text-align: center;
  line-height: 50px;
  color: #ffffff;
  font-size: 15px;
  padding: 0 15px;
}

.hs-about-page-row4 h3 span {
  position: relative;
  display: block;
  font-size: inherit!important;
}


.row.hs-about-page-row4-full-con.clearfix {
  margin-bottom: 30px;
}

.hs-about-page-row4-full-con div.hs_cos_wrapper > span {
  position: relative;
  display: block;
}

.hs-about-page-row4 h3:after {
  content: '';
  padding: 0;
  top: auto;
  position: absolute;
  bottom: 50%;
  right: 100%;
  width: 450px;
  border-bottom-width: 1px;
  margin-bottom: -1px;
  height: 0;
  border-bottom: 1px solid #fff;
}

.hs-about-page-row4 h3:before {
  content: '';
  content: '';
  padding: 0;
  top: auto;
  position: absolute;
  bottom: 50%;
  width: 450px;
  border-bottom-width: 1px;
  margin-bottom: -1px;
  height: 0;
  border-bottom: 1px solid #fff;
  left: 100%;
}

.hs-about-page-row4-4wrap .row-fluid-wrapper.row-number-1 {
  margin-left: -15px;
  margin-right: -15px;
}

.hs-about-page-row4-4wrap .span3.widget-span {
  margin: 0;
  width: 100%;
}


@media (min-width: 768px){
  .hs-about-page-row4-4wrap .span3.widget-span {
    float: left;
    width: 50%;
  }

}


@media (min-width:992px){
  .hs-about-page-row4-4wrap .span3.widget-span {
    float: left;
    width: 50%;
  }

}


@media (min-width:1200px){
  .hs-about-page-row4-4wrap .span3.widget-span {
    width: 25%;
    float: left;
  }

}

.hs-about-page-row4-4wrap .span3.widget-span > div {
  box-sizing: border-box;
  padding-left: 25px;
  padding-right: 25px;
  width: 100%;
  margin-bottom: 30px;
}

.hs-about-page-row4-4wrap h2 {
  margin: 0;
  letter-spacing: 1px;
  text-transform: none;
  color: #fff;
  font-size: 52px;
  padding-bottom: 13px;
  line-height: 1;
  font-weight: 700;
  font-family: 'Open Sans', sans-serif;
}

.hs-about-page-row4-4wrap h2 span {
  font-size: 25px;
}

.hs-about-page-row4-4wrap p {
  font-style: normal;
  text-transform: none;
  line-height: 25px;
  letter-spacing: 0px;
  font-family: Raleway, sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  padding: 0 40px;
  margin-bottom: 0;
}

.hs-about-page-row4-4wrap h2 span.small-2 {
  font-size: 42px;
}


.hs-about-page-row5 {
  margin-left: -15px;
  margin-right: -15px;
  padding-top: 80px;
  text-align: left;
}

.hs-about-page-row5 > .row-pad {
  padding-left: 25px;
  padding-right: 25px;
}

.hs-about-page-row5 > .row-pad > .row {
  margin-left: -15px;
  margin-right: -15px;
}

.hs-about-page-row5 > .row-pad > .row > .content-wrapper {
  padding: 0;
  position: relative;
  z-index: 20;
}

.hs-about-page-row5 > .row-pad > .row > .content-wrapper > .row-mar {
  margin-left: -15px;
  margin-right: -15px;
}

.hs-about-page-row5 > .row-pad > .row > .content-wrapper > .row-mar > .row-pad {
  padding-left: 25px;
  padding-right: 25px;
  width: 100%;
}

.row.hs-about-page-row5-con.clearfix {
  padding-bottom: 50px;
  text-align: left;
}

.hs-about-page-row5-con h2 {
  margin: 0;
  color: #2f2e2e;
  font-family: 'Raleway', sans-serif;
  font-size: 34px;
  line-height: 45px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: none;
  text-align: center;
  padding-bottom: 20px;
}

.hs-about-page-row5-con p {
  font-family: Raleway, sans-serif;
  font-size: 18px;
  line-height: 25px;
  letter-spacing: 0px;
  font-weight: 400;
  font-style: normal;
  text-transform: none;
  color: #2b2b2b;
  margin-bottom: 0;
}


.hs-about-page-row5-5wrap .row-fluid-wrapper.row-number-1 {
  margin-left: -15px;
  margin-right: -15px;
}

.hs-about-page-row5-5wrap .span3.widget-span {
  margin: 0;
  width: 100%;
}



@media (min-width: 768px){
  .hs-about-page-row5-5wrap .span3.widget-span {
    float: left;
    width: 25%;
  }

}

.hs-about-page-row5-5wrap .span3.widget-span > div {
  box-sizing: border-box;
  padding-left: 25px;
  padding-right: 25px;
  width: 100%;
  padding-bottom: 20px;
  text-align: center;
}

.hs-about-page-row5-5wrap  a {
  border: none;
  outline: 0;
}

.hs-about-page-row5-5wrap a span {
  display: inline-block;
  vertical-align: top;
  max-width: 100%;
}

.hs-about-page-row5-5wrap a span img {
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}

.row.hs-about-page-row5-5wrap.clearfix {
  padding-bottom: 40px;
}
.hs-about-page .banner img {
  left: 0;
}

.hs-about-page-row4-full-con div.hs_cos_wrapper>span{

  overflow: hidden;
}



@media(max-width:1000px){
  .hs-about-page-row4-4wrap p {
    font-size: 13px;
  }
}


@media(max-width:768px){
  .hs-about-page-row4 h3 {
    padding: 0 40px;
  }
}


@media(max-width:767px){
  .hs-about-page-row3 .span2.widget-span:nth-child(1),.hs-about-page-row3 .span2.widget-span:nth-child(3) {
    display: none;
  }

  .hs-about-page-row3 {
    padding-bottom: 82px;
  }
}




/* .hs-home-page-css {} */

.hs-home-page-inner {
  overflow: hidden;
}

.hs-home-page-inner .dnd-section {
  padding: 0;
}

.hs-home-page-inner .dnd-section>.row-fluid {
  max-width: 100%;
  padding: 0;
}

.hs-home-page-inner .widget-span.widget-type-cell {
  padding: 0;
}

.hs-home-page .banner h1 span {
  line-height: 89px;
  letter-spacing: 2px;
  font-weight: 600;
  font-size: 66px;
  color: rgb(255, 255, 255);
  font-family: Raleway;
  text-shadow: rgb(0 0 0 / 90%) 0px 1px 5px;
  position: relative;
  top: -4px;
}

.hs-home-page .banner img {
  height: 868px !important;
  object-fit: cover;

  max-height: initial;
}


.hs-home-page-inner .body-container-wrapper > .row {
  margin-left: -15px;
  margin-right: -15px;
}

.hs-home-page-row2 {
  background-color: #262f36;
  text-align: left;
}

.hs-home-page-row2 > .row-pad {
  box-sizing: border-box;
  padding-left: 25px;
  padding-right: 25px;
  width: 100%;
}

.hs-home-page-row2 > .row-pad >  div {
  padding-top: 100px;
  padding-bottom: 100px;
}

.hs-home-page-row2,.hs-home-page-row2 h1,.hs-home-page-row2 h2,
.hs-home-page-row2 h3, .hs-home-page-row2 h4,.hs-home-page-row2 h5,
.hs-home-page-row2 h6 {
  color: #fff;
}

.hs-home-page-row2 > .row-pad > div > div {
  margin-left: -15px;
  margin-right: -15px;
}

.hs-home-page-row2 > .row-pad > div > div > div {
  box-sizing: border-box;
  padding-left: 25px;
  padding-right: 25px;
  width: 100%;
}

.hs-home-page-row2 h2 {
  margin: 0;
  font-family: 'Raleway', sans-serif;
  font-size: 34px;
  line-height: 45px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: none;
  text-align: center;
  font-size: 38px;
  font-weight: 800;
  color: #bfa97d;
  margin-bottom: 0;
  padding-bottom: 40px;
}



.hs-home-page-row2 p {
  margin: 0;
  padding: 0 19%;
  text-align: center;
  margin: 0;
  letter-spacing: 0px;
  font-weight: 400;
  font-style: normal;
  text-transform: none;
  font-family: Raleway, sans-serif;
  text-align: center;
  font-size: 26px;
  color: #fff;
  line-height: 1.6em;
}


.hs-home-page-row3 > .row-pad {
  box-sizing: border-box;
  padding-left: 25px;
  padding-right: 25px;
  width: 100%;
}

.hs-home-page-row3 > .row-pad > .row {
  margin-left: -15px;
  margin-right: -15px;
}

.hs-home-page-row3 > .row-pad > .row > .content-wrapper {
  padding: 0;
  position: relative;
  z-index: 20;
}

.hs-home-page-row3 > .row-pad > .row > .content-wrapper .row-fluid-wrapper.row-number-1 {
  margin-left: -15px;
  margin-right: -15px;
}

.hs-home-page-row3 > .row-pad > .row > .content-wrapper  .span4.widget-span {
  margin: 0;
  width: 100%;
}

.hs-home-page-row3 > .row-pad > .row > .content-wrapper  .span8.widget-span{
  margin: 0;
  width: 100%;
}
@media (min-width: 768px){

  .hs-home-page-row3 > .row-pad > .row > .content-wrapper  .span4.widget-span {
    width: 25%;
    float: left;
  }


  .hs-home-page-row3 > .row-pad > .row > .content-wrapper  .span8.widget-span{
    width: 75%;
    float: left;
  }
}

.hs-home-page-row3 > .row-pad > .row > .content-wrapper .span4.widget-span > div {
  box-sizing: border-box;
  padding-left: 25px;
  padding-right: 25px;
  width: 100%;
}

.hs-home-page-row3 h2 {
  margin: 0;
  letter-spacing: 1px;
  text-transform: none;
  line-height: 45px;
  font-style: normal;
  font-family: 'Raleway', sans-serif;
  text-align: left;
  font-size: 46px;
  font-weight: 700;
  color: #336699;
  float: right;
  margin-top: 30px;
}

.hs-home-page-row3 p {
  letter-spacing: 0px;
  font-weight: 400;
  font-style: normal;
  text-transform: none;
  margin: 0;
  font-family: Raleway, sans-serif;
  text-align: center;
  font-size: 28px;
  line-height: 1.3em;
  color: #537282;
  margin-top: 45px;
}

.hs-home-page-row3 > .row-pad > .row > .content-wrapper .span8.widget-span > div {
  box-sizing: border-box;
  padding-left: 25px;
  padding-right: 25px;
  width: 100%;
}

.row.hs-home-page-row3-bottom {
  padding-top: 50px;
  text-align: center;
}

.hs-home-page-row3-bottom .span2.widget-span {
  margin: 0;
  width: 100%;
}
.hs-home-page-row3-bottom .span8.widget-span {
  margin: 0;
  width: 100%;
}

@media (min-width: 768px){
  .hs-home-page-row3-bottom .span2.widget-span {
    width: 16.66666667%;
    float: left;
  }
  .hs-home-page-row3-bottom .span8.widget-span {
    width: 66.66666667%;
    float: left;
  }
}



.hs-home-page-row3-bottom .span8.widget-span > div {
  box-sizing: border-box;
  padding-left: 25px;
  padding-right: 25px;
  width: 100%;
}

.hs-home-page-row3-bottom  a {
  -webkit-transition: color .15s ease-out,background-color .15s ease-out,border-color .15s ease-out;
  -moz-transition: color .15s ease-out,background-color .15s ease-out,border-color .15s ease-out;
  -ms-transition: color .15s ease-out,background-color .15s ease-out,border-color .15s ease-out;
  -o-transition: color .15s ease-out,background-color .15s ease-out,border-color .15s ease-out;
  transition: color .15s ease-out,background-color .15s ease-out,border-color .15s ease-out;
  text-decoration: none;
  cursor: pointer;
  outline: 0;
  border: 2px solid #bfa97d;
  position: relative;
  display: inline-block;
  width: auto;
  font-family: Raleway;
  letter-spacing: 1px;
  text-transform: uppercase;
  height: auto;
  font-size: 18px;
  padding: 23px 40px;
  font-weight: 500 !important;
  text-align: center;
  line-height: 1.5;
  padding: 23px 30px;
  color: #424242;
  border-color: #424242;
  border-width: 2px;
  font-style: normal;
  font-weight: 400;
  border-radius: 0px;
  -moz-border-radius: 0px;
  -webkit-border-radius: 0px;
  background-color: rgba(0,0,0,0.01);
}

.hs-home-page-row3-bottom a:hover {
  border-color: rgb(51, 102, 153);
  background-color: rgb(51, 102, 153);
  color: #fff;
}


.hs-home-page-row4 .content-wrapper {
  max-width: 100%;
  padding: 0;
}

.hs-home-page-row4 .row-fluid-wrapper[class*="background-image"] {
  background-position: top!important;
  position: relative;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
  margin-left: -15px;
  margin-right: -15px;
}

.hs-home-page-row4 .row-fluid-wrapper[class*="background-image"] > div {
  padding-left: 25px;
  padding-right: 25px;
}

.hs-home-page-row4  .span6.widget-span {
  position: relative;
  min-height: 1px;
  text-align: center;
  width: 100%;
  margin: 0;
}

@media (min-width: 768px){

  .hs-home-page-row4  .span6.widget-span {
    width: 50%;
    float: left;
  }
}

.hs-home-page-row4  .dnd-section>.row-fluid {
  width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 20;
  padding-bottom: 150px;
  padding-top: 200px;
}

.hs-home-page-row4 h2 {
  margin: 0;
  color: #2f2e2e;
  font-family: 'Raleway', sans-serif;
  font-size: 34px;
  line-height: 45px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: none;
  padding-top: 10px;
  padding-bottom: 15px;
}

.hs-home-page-row4 a {
  -webkit-transition: color .15s ease-out,background-color .15s ease-out,border-color .15s ease-out;
  -moz-transition: color .15s ease-out,background-color .15s ease-out,border-color .15s ease-out;
  -ms-transition: color .15s ease-out,background-color .15s ease-out,border-color .15s ease-out;
  -o-transition: color .15s ease-out,background-color .15s ease-out,border-color .15s ease-out;
  transition: color .15s ease-out,background-color .15s ease-out,border-color .15s ease-out;
  -webkit-box-sizing: initial!important;
  -moz-box-sizing: initial!important;
  box-sizing: initial!important;
  text-decoration: none;
  cursor: pointer;
  outline: 0;
  border: 2px solid #bfa97d;
  position: relative;
  display: inline-block;
  width: auto;
  font-family: Raleway;
  letter-spacing: 1px;
  text-transform: uppercase;
  height: auto;
  font-size: 18px;
  padding: 23px 40px;
  font-weight: 500 !important;
  text-align: center;
  line-height: 1.5;
  color: rgb(255, 255, 255);
  border-color: rgb(255, 255, 255);
  border-width: 2px;
  font-style: normal;
  font-weight: 400;
  border-radius: 0px;
  background-color: rgba(0, 0, 0, 0.01);
}

.hs-home-page-row4 a:hover {
  border-color: rgb(51, 102, 153);
  background-color: rgb(51, 102, 153);
}
.hs-home-page-row4 a:hover {
  border-color: #369;
  background-color: #369;
  color: #fff;
}
.hs-home-page-row4 .row-fluid-wrapper[class*="background-image"] {
  margin: 0;
}

.hs-home-page-row4 .row-fluid-wrapper[class*="background-image"]>div {
  width: 100%;
  max-width: 1130px;
  padding-left: 0;
  padding-right: 0;
}
.hs-home-page-row3 h2 {
  word-break: inherit;
}

.hs-contact-page-row2 form span.hs-form-required {
  display: none;
}


.hs-home-page-row2 {
  text-align: center;
}

.hs-home-page-row4 h1,
.hs-home-page-row4 h2, 
.hs-home-page-row4 h3, 
.hs-home-page-row4 h4,
.hs-home-page-row4 h5,
.hs-home-page-row4 h6,
.hs-home-page-row4 {
  color: #fff;
}
.hs-planning-page-row4,
.hs-planning-page-row4 h1,
.hs-planning-page-row4 h2,
.hs-planning-page-row4 h3,
.hs-planning-page-row4 h4,
.hs-planning-page-row4 h5,
.hs-planning-page-row4 h6 {
  color: #fff;
}
.whatwedo-page-row3,
.whatwedo-page-row3 h1,
.whatwedo-page-row3 h2,
.whatwedo-page-row3 h3,
.whatwedo-page-row3 h4,
.whatwedo-page-row3 h5,
.whatwedo-page-row3 h6 {
  color: #fff;
}


.banner h1 span {
  -webkit-font-smoothing: antialiased !important;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -moz-osx-font-smoothing: grayscale;
}



.hs-client-access-2-row1 .content-with-image-col-wrap .con-col-wrap h2 {
  word-break: inherit;
}


.skrollr-desktop body {
  height: 100% !important;
}
.hm-icon-bottom-sec .span3.widget-span .icon-with-content-wrapper .add-bar p {
  word-break: break-word;
}

.hs-home-page .banner-section .dnd-section>.row-fluid {
  padding: 0;
  max-width: 100%;
}
.hs-home-page .banner-section .widget-span.widget-type-cell {
  padding: 0;
}


.hs-home-page .banner-section .dnd-section>.row-fluid {
    padding: 0 !IMPORTANT;
    max-width: 100% !important;
}




@media(max-width:1200px){
  

  .hs-home-page-row3 h2 {
    word-break: inherit;
  }

  .hs-home-page-row4 h2 {
    font-size: 30px;
  }

  .hs-home-page-row4 .row-fluid-wrapper[class*="background-image"]>div {
    max-width: 980px;
  }

  .hs-home-page-row4 a {
    margin-right: 1em;
  }

  .hs-home-page-row3 p {
    font-size: 24px;
  }

  .hs-home-page-row2 p {
    padding: 0px 15%;
  }

 
}






@media(max-width:1000px){
 
  .hs-home-page-row2 p {
    padding: 0px 11%;
  }


  .hs-home-page-row4 h2 {
    font-size: 24px;
  }

  .hs-home-page-row4 .row-fluid-wrapper[class*="background-image"]>div {
    max-width: 798px;
  }

  .hs-home-page-row4 a {
    margin-right: 0.5em;
    margin-bottom: 1em;
  }
}










@media(max-width:900px) and (min-width:768px){
  .row.hs-home-page-row3.clearfix {
    padding-left: 20px;
    margin: 0;
    margin: 0;
    padding: 0;
  }

  .hs-home-page-row3>.row-pad>.row {
    margin: 0;
  }

  .hs-home-page-row3>.row-pad>.row>.content-wrapper .row-fluid-wrapper.row-number-1 {
    margin: 0;
  }

  .hs-home-page-row3 h2 {
    font-size: 34px;
  }
}




@media(max-width:768px){
 
  .hs-home-page-row4 .row-fluid-wrapper[class*="background-image"]>div {
    max-width: 630px;
  }

  .hs-home-page-row2 p {
    padding: 0;
  }

  .hs-about-page-row2 h2 {
    padding-bottom: 30px;
  }

  .hs-about-page-row4 h3 {
    padding: 0px 25px;
  }

}


@media(max-width:767px){
  .hs-home-page-row3 h2 {
    font-size: 36px;
    text-align: center;
    float: none;
  }

  .hs-home-page-row3-bottom .span2.widget-span {
    display: none;
  }

  .hs-home-page-row4 h2 {
    font-size: 34px;
    padding-bottom: 20px;
    margin-bottom: 15px;
  }

  .hs-home-page-row4 .span6.widget-span:last-child {
    display: none;
  }
  .content-with-para-wrapper>.content-wrapper>.mar>.pad {
    padding-bottom: 0;
  }
  .hs-home-page-row1 .content-with-para-wrapper>.content-wrapper>.mar>.pad {
    padding-bottom: 0;
  }
}

@media(max-width:600px){
  .content-with-para-wrapper>.content-wrapper>.mar>.pad {
    padding-bottom: 0;
  }

  .hs-home-page-row2 p {
    padding: 0;
  }

  .hs-home-page-row4 .row-fluid-wrapper[class*="background-image"]>div {
    max-width: 450px;
  }
}



@media(max-width:480px){

  .hs-home-page-row2 h2 {
    font-size: 36px;
  }

  .hs-home-page-row2 p {
    font-size: 24px;
    line-height: 1.5em;
  }

  .hs-home-page-row4 .row-fluid-wrapper[class*="background-image"]>div {
    max-width: 330px;
  }

  .hs-about-page .banner img {
    left: -223px;
  }
}

@media(max-width:350px){


  .hs-home-page-row4 .row-fluid-wrapper[class*="background-image"]>div {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media(max-width:320px){

}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your headers look
when it comes to the logo, search field, language switcher and navigation.
You will also find the mobile menu styles below.
*********************************************************************************
****************************************************************************** */

.header {
  background-color: #F8FAFC;
}

.header__container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Navigation skipper */

.header__skip {
  height: 1px;
  left: -1000px;
  overflow: hidden;
  position: absolute;
  text-align: left;
  top: -1000px;
  width: 1px;
}

.header__skip:hover,
.header__skip:focus,
.header__skip:active {
  height: auto;
  left: 0;
  overflow: visible;
  top: 0;
  width: auto;
}

/* header-css */

header.header {
  width: 100%;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  z-index: 110;
}

.header_top_bottom_holder {
  position: relative;
}

.header_top_bottom_holder .header_bottom {
  position: relative;
  /*   background-color: #fff; */
  -webkit-transition: all .2s ease-out 0s;
  -moz-transition: all .2s ease-out 0s;
  -o-transition: all .2s ease-out 0s;
  transition: all .2s ease-out 0s;
}

.header_inner_left {
  /* position: absolute; */
  /* left: 45px; */
  /* top: 0; */
}

.custom-menu-primary {
  z-index: 100;
  text-align: left;
  position: relative;
  left: auto;
  float: right;
}

.logo-wrapper {
  float: left;
  height: 105px;
}

.logo-wrapper .custom-logo {
  position: relative;
  top: 16px;
}

.logo-wrapper .custom-logo a {
  color: #336699;
  font-style: normal;
  font-weight: 400;
  text-decoration: none;
  /* height: 62px!important; */
}

.logo-wrapper .custom-logo a img {
  max-width: none;
  display: block;
  /* opacity: 1; */
  /* position: absolute; */
  /* top: -50%; */
  width: auto;
  -webkit-transition: opacity .15s ease-in-out;
  -moz-transition: opacity .15s ease-in-out;
  -o-transition: opacity .15s ease-in-out;
  -ms-transition: opacity .15s ease-in-out;
  /* height: 100%; */
  max-width: 241px;
}
.custom-menu-primary nav.navigation-primary {
  display: inherit;
}
.custom-menu-primary ul.submenu.level-1 {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  left: auto;
  display: inherit;

}

.custom-menu-primary ul.submenu.level-1 > li {
  position: relative;
  display: inline-block;
  padding: 0;
  margin: 0;
  background-repeat: no-repeat;
  background-position: right;
  margin: 0 18px;
}

.custom-menu-primary ul.submenu.level-1 > li > a {
  display: inline-block;
  position: relative;
  height: 100%;
  -webkit-transition: color .15s ease-out,color .15s ease-out,border-color .15s ease-out,background-color .15s ease-out;
  -moz-transition: color .15s ease-out,border-color .15s ease-out,background-color .15s ease-out;
  -o-transition: color .15s ease-out,border-color .15s ease-out,background-color .15s ease-out;
  -ms-transition: color .15s ease-out,border-color .15s ease-out,background-color .15s ease-out;
  transition: color .15s ease-out,border-color .15s ease-out,background-color .15s ease-out;
  line-height: 105px;
  font-family: 'Raleway', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 1px;
}
.custom-menu-primary ul.submenu.level-1>li>a> span {
  position: relative;
  -webkit-transition: text-decoration .2s ease-out,border-color .2s ease-out,background-color .2s ease-out;
  -moz-transition: text-decoration .2s ease-out,border-color .2s ease-out,background-color .2s ease-out;
  -o-transition: text-decoration .2s ease-out,border-color .2s ease-out,background-color .2s ease-out;
  -ms-transition: text-decoration .2s ease-out,border-color .2s ease-out,background-color .2s ease-out;
  transition: text-decoration .2s ease-out,border-color .2s ease-out,background-color .2s ease-out;
  display: inline-block;
  line-height: 31px;
  color: #5b5b5b;
}

.custom-menu-primary ul.submenu.level-1>li>a>span > span {
/*   border: 2px solid #336699;
  padding: 5px; */
}

.custom-menu-primary ul.submenu.level-1>li>a.active-item>span {
  border-bottom: 2px solid #336699;
  padding-bottom: 3px;
}

.custom-menu-primary-mobile {
  display: none;
}

.custom-menu-primary ul.submenu.level-1>li ul.submenu.level-2 {
/*   width: 105px; */
/*   left: -10px; */
  background-color: #fff;
  transform: translateX(-50%);
  text-align: center;
  top: 105px;
}

.custom-menu-primary ul.submenu.level-1>li ul.submenu.level-2 > li {
  padding: 10px 0 17px;
  text-align: center;
}

.custom-menu-primary ul.submenu.level-1>li ul.submenu.level-2 > li > a {
  font-family: 'Raleway',sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  color: #5b5b5b;
  padding: 10px 0px;
  border-bottom: 2px solid rgba(255,255,255,0);
  padding-bottom: 3px;
  display: inline-block;
}

.custom-menu-primary ul.submenu.level-1>li ul.submenu.level-2 > li > a:hover {
  border-bottom-color: #369;
}


@media(min-width:1001px){
  .custom-menu-primary ul.submenu.level-1>li.has-submenu:before {
    content: '';
    display: block;
    position: absolute;
    bottom: 2px;
    height: 40px;
    width: 100%;
  }
}



/* scroll-header
*/



@media(min-width:1001px){
  header.header.sticky.animated {
    top: 0;
    -webkit-transition: left .2s ease,top .33s cubic-bezier(.694,.0482,.335,1);
    -moz-transition: left .2s ease,top .33s cubic-bezier(.694,.0482,.335,1);
    transition: left .2s ease,top .33s cubic-bezier(.694,.0482,.335,1);
  }
  header.header.sticky {
    top: -120px;
    left: 0;
    position: fixed;
  }

  header.header {
/*     position: absolute; */
/*     top: 0; */
  }
  body {
/*     padding-top: 105px; */
  }

  header.header.sticky.animated .custom-menu-primary ul.submenu.level-1>li>a {
    line-height: 110px;
  }

  header.header.sticky.animated .logo-wrapper .custom-logo {
    top: 19px;
  }
  header.header.sticky.animated .custom-menu-primary ul.submenu.level-1>li>a > span {
    text-transform: none;
    font-weight: 500;
    font-size: 16px;
  }
}




@media(max-width:1200px){
  header.header.sticky.animated .custom-menu-primary ul.submenu.level-1>li>a>span {
    font-size: 16px;
  }
}
@media(max-width:1080px){
  header.header.sticky.animated .logo-wrapper .custom-logo {
    top: 26px;
  }
}



  /* banner-css */
  .banner-section-row-0-force-full-width-section > .row-fluid {
    padding: 0px !important;
  }

  .banner.no_img {
    background-color: #2d3c43;
    min-height: 400px;
  }




  @media(max-width:1300px){
    .custom-menu-primary ul.submenu.level-1>li>a {
      font-size: 16px;
    }

    .custom-menu-primary ul.submenu.level-1>li {
      margin: 0 12px;
    }
  }


  @media(max-width:1200px){
    .logo-wrapper .custom-logo a img {
      max-width: 232px;
    }

    .logo-wrapper .custom-logo {
      top: 17px;
    }
  }


  @media(max-width:1080px){
    .logo-wrapper .custom-logo a img {
      max-width: 185.59px;
    }

    .logo-wrapper .custom-logo {
      top: 23px;
    }
    .custom-menu-primary ul.submenu.level-1>li {
      margin: 0 8px;
    }
  }


  @media(max-width:1000px){
    .custom-menu-primary {
      display: none;
    }


    .logo-wrapper {
      height: 70px !important;
      display: table;
      height: 90px;
      left: 50%;
      position: absolute;
      width: 241.109px;
    }

    .header_inner_left {
      position: relative!important;
      left: 0!important;
      margin-bottom: 0;
    }

    .logo-wrapper > div {
      display: table-cell;
      position: relative;
      top: auto;
      vertical-align: middle;
      left: 0;
      top: 0%!important;
    }

    .logo-wrapper > div > .custom-logo {
      top: 0;
      left: -50%;
      width: auto!important;
      height: 62px!important;
    }

    .logo-wrapper > div > .custom-logo img {
      width: auto!important;
      max-width: none;
      top: 0;
      left: 0;
      display: block!important;
      opacity: 1!important;
      position: relative;
      margin: 0 auto;
      height: 100%;
    }

    header.header {
      min-height: 75px;
    }

    .mobile_menu_button {
      height: 70px;
      display: table;
      margin: 0px 20px -10px 0;
      top: 5px;
      position: relative;

      float: left;
    }

    .mobile_menu_button  span {
      width: 19px;
      height: 17px;
      font-size: 14px;
      z-index: 50;
      display: table-cell;
      position: relative;
      cursor: pointer;
      vertical-align: middle;
      color: #2f2e2e;
      font-size: 40px;
    }

    .mobile_menu_button > span > span {}

    .icon_menu:before {
      content: "\61";
    }

    span.qode_icon_font_elegant.icon_menu {
      font-family: ElegantIcons!important;
      font-family: 'ElegantIcons';
      speak: none;
      font-style: normal;
      font-weight: normal;
      font-variant: normal;
      text-transform: none;
      line-height: 1;
      -webkit-font-smoothing: antialiased;
    }

    .header_top_bottom_holder .header_bottom {
      padding-bottom: 15px;
    }

    .header_inner_left {
      overflow: hidden;
    }

    .logo-wrapper {
      z-index: 9;
    }

    .mobile_menu_button span:hover {
      color: #bfa97d!important;
    }


    .custom-menu-primary-mobile {}

    .custom-menu-primary-mobile ul.submenu.level-1 {
      margin-bottom: -1px!important;
    }

    .custom-menu-primary-mobile ul.submenu.level-1 > li {
      margin: 0;
      padding: 0;
      position: relative;
      border-bottom: 1px solid #fff;
      border-color: #333230;
    }

    .custom-menu-primary-mobile ul.submenu.level-1 > li > a {
      -webkit-transition: all .2s ease;
      -moz-transition: all .2s ease;
      -o-transition: all .2s ease;
      -webkit-tap-highlight-color: transparent;
      padding: 9px 0;
      display: block;
      position: relative;
      line-height: 17px;
      color: #5b5b5b;
      font-family: 'Raleway', sans-serif;
      font-size: 12px;
      font-style: normal;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      text-transform: none;
    }

    .custom-menu-primary-mobile ul.submenu.level-1 > li:last-child {
      border: none;
    }

    .custom-menu-primary-mobile ul.submenu.level-1 > li > a:hover,.custom-menu-primary-mobile ul.submenu.level-1 > li > a.active-item {
      color: #336699;
    }

    .submenu-toggle {
      display: block !important;
      position: absolute;
      right: 0;
      height: 36px;
      width: 50px;
      top: 0;
      background-color: transparent;
      cursor: pointer;
    }

    .submenu-toggle:after {
      content: '';
      border: 2px solid transparent;
      display: inline-block;
      width: 8px;
      height: 8px;
      margin: auto;
      position: absolute;
      top: 0;
      bottom: 0;
      -webkit-transform: rotate(-45deg);
      -moz-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
      -o-transform: rotate(-45deg);
      transform: rotate(45deg);
      border-top: 0;
      border-left: 0;
      right: 23px;
      border-color: #6f7071;
    }

    .custom-menu-primary-mobile ul.submenu.level-1>li ul.submenu.level-2 > li {
      margin: 0;
      padding: 0;
      position: relative;
      border-bottom: 1px solid #fff;
      border-color: #333230;
    }

    .custom-menu-primary-mobile ul.submenu.level-1>li ul.submenu.level-2 > li:last-child {
      border: none;
    }

    .custom-menu-primary-mobile ul.submenu.level-1>li ul.submenu.level-2 > li > a {
      -webkit-transition: all .2s ease;
      -moz-transition: all .2s ease;
      -o-transition: all .2s ease;
      -webkit-tap-highlight-color: transparent;
      padding: 9px 0;
      display: block;
      position: relative;
      line-height: 17px;
      color: #5b5b5b;
      font-family: 'Raleway',sans-serif;
      font-size: 12px;
      font-style: normal;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      text-transform: none;
    }

    .custom-menu-primary-mobile ul.submenu.level-1>li ul.submenu.level-2 > li > a:hover {
      color: #369;

    }
    .logo-wrapper>div>.custom-logo img {
      max-width: 239.22px;
    }


  }


  @media(max-width:480px){
    .header_top_bottom_holder .header_bottom {
      padding: 0 25px;
      padding-bottom: 15px;
    }

    .logo-wrapper>div>.custom-logo {
      height: 50px!important;
    }
  }


  @media(max-width:420px){
    .header_top_bottom_holder .header_bottom {
      padding-left: 15px;
      padding-right: 15px;
    }
  }


  @media(max-width:320px){
    .logo-wrapper>div>.custom-logo img {
      max-width: 193.33px;
    }
  }
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your
footer looks when it comes to spacing and other general styles.
*********************************************************************************
****************************************************************************** */
a#back-to-top {
  color: #336699;
  font-style: normal;
  font-weight: 400;
  text-decoration: none;
  opacity: 0;
  filter: alpha(opacity=0);
  margin: 0;
  z-index: 10000;
  -webkit-transition: opacity .15s ease-out;
  -moz-transition: opacity .15s ease-out;
  -o-transition: opacity .15s ease-out;
  transition: opacity .15s ease-out;
  visibility: hidden;
  position: fixed;
  width: 48px;
  height: 48px;
  bottom: 25px;
  right: 25px;
}

a#back-to-top > span {
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  border: 1px solid transparent;
  -webkit-transition: background-color .15s ease-out,color .15s ease-out,border-color .15s ease-out;
  -moz-transition: background-color .15s ease-out,color .15s ease-out,border-color .15s ease-out;
  -ms-transition: background-color .15s ease-out,color .15s ease-out,border-color .15s ease-out;
  -o-transition: background-color .15s ease-out,color .15s ease-out,border-color .15s ease-out;
  transition: background-color .15s ease-out,color .15s ease-out,border-color .15s ease-out;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  text-decoration: none;
  font-size: 24px;
  color: #ffffff;
  height: 48px;
  width: 48px;
  border-radius: 30px;
  background-color: rgba(51,102,153,1);
  border-width: 0px;
  line-height: 48px;
  border-color: #ffffff;
}

a#back-to-top > span > span.qode_icon_font_elegant {
  font-family: ElegantIcons!important;
  font-family: 'ElegantIcons';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  display: block;
  line-height: inherit;
  margin-left: -1px;
}


.arrow_carrot-up:before {
  content: "\32";
}

.scroll-back-to-top a#back-to-top {
  opacity: 1;
  filter: alpha(opacity=100);
  visibility: visible;
  right: 25px;
}


a#back-to-top:hover > span {
  color: #ffffff;
  background-color: rgba(102,102,102,1);
}
.footer-nav ul.submenu.level-1 li .submenu-toggle {
  display: none !important;
}

.footer {
  background-color: #F8FAFC;

}
.footer__container {
  margin: 0 auto;
}
.footer__copyright {
  font-family: Lato, sans-serif;
  font-size: .7rem;
  margin: .5rem 0;
}


footer.footer {
  display: block;
  width: 100%;
  margin: 0 auto;
  z-index: 100;
  position: relative;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
}

.footer_top_holder {
  display: block;

  position: relative;
  background-position: center center;
  background-size: cover;

}

.footer_top {
  text-align: left;
  font-family: Raleway, sans-serif;
  font-size: 14px;
  line-height: 25px;
  letter-spacing: 0px;
  font-weight: 400;
  font-style: normal;
  text-transform: none;
  color: #ffffff;
}

.footer_top > .footer__container {

  max-width: 1100px;
  margin: 0 auto;
  padding: 82px 0 76px;
  padding-top: 63px;
  padding-bottom: 63px;
}

.f-col-left {
  width: 50%;
  float: left;
  width: 40%;
  min-height: 254px;
}

.f-col-right {
  width: 50%;
  float: left;
  min-height: 254px;
  text-align: left;
}
.footer-nav ul.submenu.level-1 li ul.submenu.level-2 {
  display: none !important;
}
.f-col-left > .col-pad {
  padding: 0 10px 0 0;
}

.copy-col {
  font-family: Raleway, sans-serif;
  font-size: 14px;
  line-height: 25px;
  letter-spacing: 0px;
  font-weight: 400;
  font-style: normal;
  text-transform: none;
  color: #ffffff;
}

.copy-col a {
  font-family: Raleway, sans-serif;
  font-size: 15px;
  line-height: 32px;
  letter-spacing: 0px;
  font-weight: 400;
  font-style: normal;
  text-transform: none;
  color: #bfa97d;
}

.footer-logo {
  margin-bottom: 11px;
}

.footer-logo img {
  max-width: 100%;
  height: auto;
  border: none;
  vertical-align: middle;
  width: 290px !important;
}

.copy-col p {
  font-family: Raleway, sans-serif;
  font-size: 14px;
  line-height: 25px;
  letter-spacing: 0px;
  font-weight: 400;
  font-style: normal;
  text-transform: none;
  color: #ffffff;
  margin-bottom: 0.5em;
}

.copy-col a:hover {
  color: #fff;
}

.broker-logo img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border: none;
  width: auto !important;
}

.f-btn {
  padding-top: 1.5em;
}

.f-btn a {
  font-size: 15px;
  line-height: 32px;
  letter-spacing: 0px;
  font-weight: 400;
  font-style: normal;
  text-transform: none;
  padding: 10px 15px;
  font-family: Raleway, sans-serif;
  background: none;
  border: 1px solid white;
  color: white;
}

.f-btn a:hover {
  color: black;
  background-color: white;
}

.f-col-right > .pad-inner {
  padding: 0 0 0 10px;
}

.f-col-right-1 {
  width: 50%;
  float: left;
  width: 50%;
  min-height: 254px;
}

.f-col-right-2 {
  width: 50%;
  float: left;
  min-height: 254px;
}

.f-col-right-1 > .pad {
  padding: 0 10px 0 0;
}

.f-col-right-1 h4,.f-contact-text h4 {
  margin: 0;
  margin: 0 0 15px;
  font-family: Raleway, sans-serif;
  font-size: 20px;
  line-height: 40px;
  letter-spacing: 1px;
  font-weight: 700;
  font-style: normal;
  text-transform: none;
  color: #bfa97d;
}

.footer-nav ul {}

.footer-nav ul.submenu.level-1 {}

.footer-nav ul.submenu.level-1 li {
  display: block;
}

.footer-nav ul.submenu.level-1 li a {
  font-family: Raleway, sans-serif;
  font-size: 15px;
  line-height: 32px;
  letter-spacing: 0px;
  font-weight: 400;
  font-style: normal;
  text-transform: none;
  display: inline-block;
  color: #fff;
}

.f-col-right-2 > .pad {
  padding: 0 0 0 10px;
}

.f-contact-text {}

.f-contact-text p {
  margin-bottom: 1em;
  font-family: Raleway, sans-serif;
  font-size: 14px;
  line-height: 25px;
  letter-spacing: 0px;
  font-weight: 400;
  font-style: normal;
  text-transform: none;
  color: #ffffff;
}

.f-contact-text p a {
  font-family: Raleway, sans-serif;
  font-size: 15px;
  line-height: 32px;
  letter-spacing: 0px;
  font-weight: 400;
  font-style: normal;
  text-transform: none;
  color: #fff;
}

.f-contact-text a.foot-directions {
  color: #bfa97d;
}



.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.social-links ul li i {
  font-size: 32px;
}

.fa-linkedin-square:before {
  content: "\f08c";
}

.fa-facebook-square:before {
  content: "\f082";
}

.fa-youtube-square:before {
  content: "\f166";
}

.fa-twitter-square:before {
  content: "\f081";
}



.footer-nav ul.submenu.level-1 li a:hover {
  color: #bfa97d;
}

.f-contact-text p a:hover {
  color: #bfa97d;
}

.broker-logo {
  margin-top: 7px;

  margin-top: 32px;
}


@media(max-width:1200px){
  .footer_top>.footer__container {
    max-width: 950px;
  }
}


@media(max-width:1000px){
  .footer_top>.footer__container {
    max-width: 768px;
  }
}


@media(max-width:800px) and (min-width:769px){
  .f-col-left>.col-pad {
    padding-left: 10px;
  }
}


@media(max-width:768px){
  .footer_top>.footer__container {
    max-width: 600px;
    padding-left: 15px;
  }

  .f-col-left {
    width: 100%;
    min-height: auto;
  }

  .f-col-right {
    width: 100%;
    min-height: auto;
  }

  .f-col-right-1 {
    width: 100%;
    min-height: auto!important;
    padding: 30px 0;
  }

  .f-col-right-2 {
    width: 100%;
    min-height: auto;
  }

  .f-col-right-2>.pad {
    padding: 0;
  }

  .f-col-right>.pad-inner {
    padding-left: 15px;
  }
}


@media(max-width:600px){
  .footer_top>.footer__container {
    max-width: 420px;
    padding-left: 0;
  }

  .f-col-right {
    text-align: center;
  }

  .f-col-right>.pad-inner {
    padding: 0;
  }

  .f-col-right-1 {
    margin: 0 0 25px;
  }

  .f-col-right-1>.pad {
    padding: 0;
  }

  .f-col-left>.col-pad {
    padding: 0;
  }

  .f-col-left {
    margin: 0 0 25px;
    text-align: center;
  }
}

.body-wrapper {
  overflow: hidden;
}
@media(max-width:480px){
  .footer_top>.footer__container {
    max-width: 100%;
    width: auto;
  }

  .f-col-right>.pad-inner {
  }

  .f-col-right-2 {
    margin: 0 0 25px!important;
  }

  .social-link-outer {
    margin: 0 0 25px!important;
  }

  .f-contact-text {
    margin: 0 0 25px!important;
  }

  .f-col-right-1>.pad {
    margin: 0 0 25px!important;
  }

  .f-col-left>.col-pad {
    margin: 0 0 25px;
  }
}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles for your blog. The styles included
are for the listing and post templates, featured images and pagination.
Also for the post meta infromation like tags, author and published date
*********************************************************************************
****************************************************************************** */

/* TODO: Find a better place for this */
.content-wrapper {
  max-width: 1240px;
  margin: 0 auto;
}

.blog-header {
  background-color: #F8FAFC;
  text-align: center;
}

.blog-header__inner {
  max-width: 600px;
  margin: 0 auto;
  padding: 3.3rem 0;
}
.blog-header__title {
  font-size: 2rem;
}
.blog-header__subtitle {
  margin: 1rem 0 2rem;
}

.blog-header__form {
  margin: 0 1rem;
}
.blog-post__body .hs-responsive-embed-wrapper.hs-responsive-embed {
  height: 100% !important;
  margin: 0 !important;
  width: 100% !important;
  min-width: 100% !important;
  max-height: 100% !important;
}
@media screen and (min-width: 768px) {
  .blog-header__form {
    width: 500px;
    margin: 0 auto;
  }
}

.blog-index {
  display: flex;
  flex-wrap: wrap;
  padding: 3.3rem 0;
}
.blog-index:after {
  content: "";
  flex: auto;
}
.blog-index__tag-header {
  flex: 1 0 100%;
  padding: 1rem;
}
.blog-index__tag-subtitle {
  font-size: 1.16rem;
  line-height: 1.1;
}
.blog-index__tag-heading {
  padding-bottom: 1rem;
  border-bottom: 3px solid #D1D6DC;
}
.blog-index__post {
  flex:  0 0 100%;
  padding: 1rem;
}
@media screen and (min-width: 768px) {
  .blog-index__post {
    flex:  0 0 calc(100%/2);
  }
}
@media screen and (min-width: 1000px) {
  .blog-index__post {
    flex:  0 0 calc(100%/3);
  }
}
@media screen and (min-width: 768px) {
  .blog-index__post--large {
    flex: 1 0 100%;
    display: flex;
    justify-items: space-between;
  }
}
.blog-post img {
  max-width: 100%;
}
.blog-index__post-image {
  display: block;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding-bottom: 63%;
  background-image: url('./images/grayscale-mountain.png');
    }
@media screen and (min-width: 768px) {
  .blog-index__post-image--large {
    flex: 1 1 100%;
    padding-bottom: 0;
  }
  .blog-index__post-content--large {
    flex: 1 1 100%;
    padding-left: 2rem;
  }
  .blog-index__post-image--large {
    flex: 1 1 48%;
  }
  .blog-index__post-content--large {
    flex: 1 1 48%;
    padding-left: 2rem;
  }
}
.blog-index__post-content h2 {
  margin: .5rem 0;
}
.blog-index__post-content--small h2 {
  font-size: 1.25rem;
}
.blog-index__post-content p {
  font-family: Lato, sans-serif;
}
.blog-index__post-content a {
  color: #494a52;
}
.blog-index__post img {
  max-width: 100%;
  height: auto;
}

.blog-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-family: Lato, sans-serif;
  margin-bottom: 3.3rem;
}
.blog-pagination__link {
  display: inline-flex;
  padding: .25rem .4rem;
  margin: 0 .1rem;
  color: #494a52;
  text-decoration: none;
  border: 2px solid transparent;
  line-height: 1;
  border-radius: 7px;
}
.blog-pagination__link--active {
  border: 2px solid #B0C1D4;
}
.blog-pagination__link:hover,
.blog-pagination__link:focus {
  text-decoration: none;
}
.blog-pagination__prev-link,
.blog-pagination__next-link {
  display: inline-flex;
  align-items: center;
}
.blog-pagination__prev-link {
  text-align: right;
  margin-right: .25rem;
}
.blog-pagination__next-link {
  text-align: left;
  margin-left: .25rem;
}
.blog-pagination__prev-link--disabled,
.blog-pagination__next-link--disabled {
  color: #B0C1D4;
  pointer-events: none;
  cursor: default;
}
.blog-pagination__prev-link svg,
.blog-pagination__next-link svg {
  fill: #494a52;
  margin: 0 5px;
}
.blog-pagination__prev-link--disabled svg,
.blog-pagination__next-link--disabled svg {
  fill: #B0C1D4;
}
.blog-pagination__number-link:hover,
.blog-pagination__number-link:focus {
  border: 2px solid #B0C1D4;
}

.blog-header__author-avatar {
  height: 200px;
  width: 200px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 50%;
  box-shadow: 0 0 12px 0 rgba(0,0,0,0.15);
  margin: 0 auto 1.5rem;
}
.blog-header__author-social-links a {
  display: inline-block;
  position: relative;
  background-color: #000;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  margin: 0 5px;
}
.blog-header__author-social-links a:hover {
  background-color: #494a52;
}
.blog-header__author-social-links svg {
  fill: #fff;
  height: 15px;
  width: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.blog-post {
  max-width: 960px;
  margin: 0 auto;
  padding: 3.3rem 0;
}
.blog-post h1 {
  font-size: 1.6rem;
}
.blog-post__meta {
  margin: 1rem 0;
}
.blog-post__meta a {
  color: #494a52;
  text-decoration: underline;
}

.blog-post__tags {
  font-family: Lato, sans-serif;
  color: #000;
}
.blog-post__tags svg {
  width: 15px;
  height: auto;
  margin-right: 10px;
}
.blog-post__tag-link {
  font-size: .8rem;
  color: #000;
}

.blog-recent-posts {
  margin-top: 3rem;
  background-color: #F8FAFC;
  padding: 2rem 0;
}
.blog-recent-posts h2 {
  text-align: center;
}
.blog-recent-posts__list {
  display: flex;
}
.blog-recent-posts__post {
  display: block;
  flex:  0 0 100%;
  color: #494a52;
  padding: 1rem;
}
@media screen and (min-width: 768px) {
  .blog-recent-posts__post {
    flex:  0 0 calc(100%/2);
  }
}
@media screen and (min-width: 1000px) {
  .blog-recent-posts__post {
    flex:  0 0 calc(100%/3);
  }
}
.blog-recent-posts__post:hover {
  text-decoration: none;
}
.blog-recent-posts__image {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding-bottom: 63%;
}
.blog-recent-posts__title {
  margin: 1rem 0 .5rem;
}

.blog-comments {
  max-width: 680px;
  margin: 0 auto;
}
.blog-comments form {
  max-width: 100%;
}
.blog-comments .hs-submit {
  text-align: center;
}
.blog-comments .hs-button {

}
.blog-comments .hs-button:hover {

}
.blog-comments .comment-reply-to {
  border: 0 none;
}
.blog-comments .comment-reply-to:hover {
  background-color: transparent;
  text-decoration: underline;
  color: #494A52;
}

/*             Blog Listing with Sidebar            */

.post-item .page-center{
  display: -webkit-flex; /* Safari */
  display: flex; /* Standard syntax */
  margin-bottom: 20px;
}
.post-item .page-center .span4, .post-item .page-center .span8 {
  -webkit-flex: 1; /* Safari */
  -ms-flex: 1; /* IE 10 */
  flex: 1; /* Standard syntax */
}
.post-item .page-center .span8 {
  flex-basis: 31.914893614%;

}
img.featured-image {
  height: 100% !important;
  width: 100% !important;
  object-fit: cover;
}
@media(max-width: 480px){
  .blog-post img {
    width: 100% !important;
    float: none !important;
  }
}

/*             Blog Grid Listing            */

.blog-index__post.blog-index__post--small {
  display: flex;
}

.blog-index__post-inner-card {
  display: flex;
  flex-flow: column nowrap;
  width: 100%;
  border-radius: 5px;
  background: #fff;
}

.blog-index__post-image {
  border-radius: 5px 5px 0 0;
}

.blog-index__post-inner-card .blog-index__post-content {
  display: flex;
  flex-direction: column;
  padding: 24px 30px 30px 30px;
  height: 100%;
}

.blog-post__tag-link,
.blog-post__tags {
  font-size: 12px;
  font-weight: 200;
  text-transform: uppercase;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: 0.01rem;
}

.blog-post__tag-link:hover{
  text-decoration: none;
}

.blog-index__post-content--small h2 {
  font-size: 18px;
  line-height: 26px;
}

.blog-index__post-content--small h2 a:hover {
  text-decoration: none;
  transition: all .5s;
}

.blog-post__meta-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: auto;
  padding-top: 30px;
  font-size: 14px;
}

.blog-post__read-more a:hover {
  text-decoration: none;
}

.read-more__arrow {
  position: relative;
  top: 3px;
  padding-left: 10px;
}

.blog-post__read-more svg {
  width: 15px;
  height: auto;
}

.blog-post__read-more a svg {
  -webkit-transition: all 0.15s linear;
  -moz-transition: all 0.15s linear;
  -o-transition: all 0.15s linear;
  transition: all 0.15s linear;
}

@media screen and (max-width: 767px) {
  .blog-index.sidebar {
    padding: 1rem 0;
    padding-bottom: 3.3rem;
  }
}

/*             Blog Grid Listing with Sidebar            */

.blog-index.sidebar {
  display:flex;
}

@media screen and (min-width: 1000px) {
  .blog-index.sidebar .blog-index__post {
    flex: 0 0 calc(100%/2);
  }
}

@media screen and (max-width: 999px) {
  .blog-index.sidebar .blog-index__post {
    flex: 0 0 calc(100%/1);
  }
}

.blog-sidebar {
  padding-top: 3.9rem;
}

@media screen and (max-width: 767px) {
  .blog-sidebar {
    padding: 2rem 1rem;
    padding-bottom: 0;
  }
}

.blog-sidebar h3 {
  margin-bottom: 20px;
  font-size: 21px;
  font-weight: 600;
  line-height: 37px;
}

.blog-sidebar ul {
  padding: 30px;
  margin: 0 0 40px 0;
  list-style: none;
  border-radius: 5px;
  background: #fff;
}

.blog-sidebar ul li {
  padding: 10px 0;
  border-top: 1px solid #dfddd9;
  font-weight: 600;
}

.blog-sidebar ul li:first-child {
  border-top-color: transparent;
}

.blog-sidebar a {
  text-decoration: none;
}

.blog-sidebar a:hover {
  text-decoration: none;
}

.blog-sidebar .filter-link-count {
  display: none;
}

.blog-sidebar .filter-expand-link {
  position: relative;
  top: -15px;
  display: block;
  margin-bottom: 25px;
  text-transform: capitalize;
  text-align: center;
}

.blog-sidebar-post-listing ul li {
  padding-left: 2.3em;
  line-height: 24px;
  text-indent: -2.3em;
}

.blog-sidebar-post-listing li:before {
  position: relative;
  width: 22px;
  float: left;
  content: counter(list-item);
  margin-right: 25px;
  font-size: 36px;
  font-weight: 600;
}

.blog-sidebar-post-listing li a {
  position: relative;
  top: -3px;
}

.blog-pagination.span12 {
  display: flex;
  margin-left: 0;
}

/* Mobile Blog Sidebar */

@media(max-width: 767px) {
  .hs-blog-listing .content-wrapper > .row-fluid {
    display: flex;
    flex-direction: column;
  }

  .hs-blog-listing .span3 {
    order: 1;
  }

  .hs-blog-listing .span9 {
    order: 2;
  }

  .hs-blog-listing .blog-pagination {
    order: 3;
  }

  .blog-sidebar.mobile .blog-sidebar-topic-filter ul,
  .blog-sidebar.mobile .blog-sidebar-post-listing ul {
    visibility: hidden;
    opacity: 0;
    transition: all 5s;
    display: none;
  }

  .blog-sidebar.mobile .blog-sidebar-topic-filter h3,
  .blog-sidebar.mobile .blog-sidebar-post-listing h3 {
    cursor: pointer;
  }
  .blog-sidebar.mobile .blog-sidebar-topic-filter h3:after,
  .blog-sidebar.mobile .blog-sidebar-post-listing h3:after {
    content: "+";
    padding-left: 6px;
  }

  .blog-sidebar.mobile .blog-sidebar-topic-filter.clicked h3:after,
  .blog-sidebar.mobile .blog-sidebar-post-listing.clicked h3:after {
    content: "-";
    padding-left: 7px;
  }

  .blog-sidebar.mobile .clicked ul {
    display: block;
    visibility: visible;
    transition: all 1s;
    opacity: 1;
  }
}

/* Blog Subscription Section */

.subscription-form {
  display: block;
  margin: 0 auto;
  padding: 60px 0;
  width: 40%;
  text-align: center;
}

@media (max-width: 767px) {
  .subscription-form {
    width: 85%;
  }
}

.subscription-form label {
  text-align: center;
}

/*             Blog Post Layout          */

.post-featured-image {
  margin-bottom: -110px;
  min-height: 300px;
  background-size: cover;
  border-radius: 5px;
  margin-top: 40px;
  background-position: center center;
}

.blog-post {
  position: relative;
  width: 90%;
  margin: 0 auto;
  padding: 84px 100px 80px 100px;
  background: #fff;
  border-radius: 5px;
}

.blog-post.no-image {
  margin-top: 50px;
}

.blog-post__title {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.25;
}

.blog-post__meta a {
  text-decoration: none;
}

.blog-post__links {
  display: block;
  padding: 26px 0;
  margin-top: 20px;
}

.blog-post__back-to-blog {
  text-decoration: none;
}

.blog-post__back-to-blog svg {
  position: relative;
  top: 6px;
  margin-right: 10px;
  width: 20px;
  -webkit-transition: all 0.15s linear;
  -moz-transition: all 0.15s linear;
  -o-transition: all 0.15s linear;
  transition: all 0.15s linear;
}

@media (max-width: 767px) {
  .blog-post {
    width: 90%;
    padding: 30px;
  }
}

/* Blog Comments */

.blog-comments {
  max-width: 100%;
}

.comment.depth-0:first-child {
  margin-top: 2em;
}

.comment.depth-1 {
  padding-left: 2em;
  padding-top: 1em;
  margin-top: 1em;
}

.blog-comments form {
  margin-top: 2em;
  padding-top: 2em;
}

/* Related Articles */

.blog-recent-posts__list {
  flex-wrap: wrap;
}

.blog-recent-posts .blog-index__post-content h2 {
  text-align: left;
}

.blog-recent-posts .blog-post__meta-section {
  justify-content: flex-end;
}


/* blog-banner-css */


.blog-banner {
  text-align: left;
  width: 100%;
  display: block;
  background-color: #336699;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
  z-index: 101;
  height: 685px;
  background-position: center 0px;
}

.blog-banner .image {
  display: none;
}

.blog-banner .image img {
  max-width: 100%;
  width: 100%;
  position: relative;
  height: auto;
  display: block;
}

.blog-banner .title_holder {
  display: table;
  height: 100%;
  left: 0;
  position: relative;
  width: 100%;
  position: absolute;
  top: 0;
  display: block;
  padding-top: 105px;

}

.blog-banner .content-wrapper {
  max-width: 100%;
  width: 1100px;
  margin: 0 auto;
  position: relative;
  padding: 0!important;
  display: table;
  height: 100%;
}

.blog-banner .title_subtitle_holder {
  padding: 0;
  position: relative;
  z-index: 25;
  text-align: center;
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}

.blog-banner .title_subtitle_holder_inner {
  position: relative;
}

.blog-banner h1 {
  margin: 0;
  display: inline-block;
  vertical-align: middle;
  word-break: break-all;
  color: #ffffff;
  font-family: 'Raleway', sans-serif;
  font-size: 46px;
  line-height: 66px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: none;
}

.blog-banner h1 > span {
  display: inline-block;
  word-break: keep-all;
  font-size: 66px;
  line-height: 89px;
  font-weight: 700;
  letter-spacing: 5px;
  font-family: Raleway;
  padding-bottom: 0;
}

.blog-banner .wrap-outer {
  position: relative;
  z-index: 100;
  vertical-align: middle;
  background-color: transparent;
  display: block;
  height: 100%;
}

@media(max-width:1200px){
  .blog-banner .content-wrapper {
    width: 950px;
  }

}
@media(max-width:1000px){
  .blog-banner .content-wrapper {
    width: 768px;
  }

  .blog-banner {
    background: none!important;
    height: auto!important;
    padding: 0!important;
    overflow: hidden;
  }

  .blog-banner .image {
    display: block;
  }

  .blog-banner .image img {
    width: auto!important;
    max-width: none;
    max-height: 600px;
    max-width: none !important;
  }

  .blog-banner .title_holder {
    height: 100%!important;
    padding: 10px 0!important;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }

}

@media(max-width:768px){
  .blog-banner .content-wrapper {
    width: 600px;
  }
}

@media(max-width:600px){
  .blog-banner .content-wrapper {
    width: 420px;
  }
  .blog-banner h1 {
    float: none;
    line-height: 1em;
  }
}

@media(max-width:480px){
  .blog-banner .content-wrapper {
    width: 300px;
  }

  .blog-banner h1 > span {
    font-size: 47px;
    line-height: 60px;
    letter-spacing: 2px;
  }


}




/* blog-css */
.blog-wrap {
  margin-top: -105px;
}

.blog-wrap > .content-wrapper {
  padding: 0;
  max-width: 1100px;
  position: relative;
  padding-top: 44px;
}

.post-item {
  display: inline-block;
  width: 100%;
  margin: 0 0 40px;
  margin-bottom: 65px;
}

.post-item h2 {
  margin: 0;
  color: #2f2e2e;
  -webkit-transition: color .15s ease-out;
  -moz-transition: color .15s ease-out;
  -ms-transition: color .15s ease-out;
  -o-transition: color .15s ease-out;
  transition: color .15s ease-out;
  padding: 0 0 10px;
  word-break: break-word;
  padding-bottom: 13px;
  font-family: Raleway, sans-serif;
  font-size: 28px;
  line-height: 31px;
  letter-spacing: 1px;
  font-weight: 700;
  font-style: normal;
  text-transform: uppercase;
}

.post-item h2 a {
  color: #2f2e2e;
}

.post-item h2 a:hover {
  color: #bfa97d;
}

.post-item .post_info {
  display: inline-block;
  width: 100%;
  font-size: 11px;
  line-height: 1.5em;
  vertical-align: top;
  margin: 0 0 30px;
  font-family: 'Raleway', sans-serif;
  margin-bottom: 23px;
}

.post-item .post_info > div {
  float: left;
  -webkit-transition: color .15s ease-out;
  -moz-transition: color .15s ease-out;
  -ms-transition: color .15s ease-out;
  -o-transition: color .15s ease-out;
  transition: color .15s ease-out;
  padding: 0 5px 0 0;
  font-family: Lora, sans-serif;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0px;
  font-weight: 400;
  font-style: italic;
  text-transform: none;
  color: #bfa97d;
  padding: 0 5px;
}

.post-item .post_info > div:not(:first-child):before {
  content: '|';
  position: relative;
  left: -5px;
}

.post-item .post_info > div:first-child {
  padding: 0 5px 0 0;
}

.post-item .post_info > div a {
  color: #bfa97d;
  -webkit-transition: color .15s ease-out;
  -moz-transition: color .15s ease-out;
  -ms-transition: color .15s ease-out;
  -o-transition: color .15s ease-out;
  transition: color .15s ease-out;
  font-family: inherit;
}

.post-item .post_info > div a:hover {
  color: #2f2e2e;
}

.blog_share {
  display: inline-block;
}

.blog_share i.social_share.social_share_icon {
  font-family: 'ElegantIcons';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  float: left;
  line-height: inherit;
}

.social_share:before {
  content: "\e0a0";
}

.blog_share span.social_share_title {
  display: inline-block;
  line-height: 15px;
  margin-left: 5px;
}

.blog_share .social_share_dropdown {
  visibility: hidden;
  z-index: 950;
  font-family: Lora, sans-serif;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0px;
  font-weight: 400;
  font-style: italic;
  text-transform: none;
  color: #bfa97d;
  margin-top: 27px;
  margin: 0;
}

.blog_share .social_share_dropdown ul {
  margin: 0;
  padding: 0;
  list-style: none;
  list-style: none;
  position: relative;
  display: block;
  z-index: 990;
  padding: 0!important;
  min-width: 50px;
  font-weight: 400;
}

.blog_share .social_share_dropdown ul li {
  visibility: hidden;
  position: absolute;
  text-align: center;
  min-width: 50px;
  float: left;
  opacity: .2;
  -webkit-transition: opacity .1s ease-out,position .1s ease-out,color .1s ease-out,background-color .1s ease-out;
  -moz-transition: opacity .1s ease-out,position .1s ease-out,color .1s ease-out,background-color .1s ease-out;
  -o-transition: opacity .1s ease-out,position .1s ease-out,color .1s ease-out,background-color .1s ease-out;
  -ms-transition: opacity .1s ease-out,position .1s ease-out,color .1s ease-out,background-color .1s ease-out;
  transition: opacity .1s ease-out,position .1s ease-out,color .1s ease-out,background-color .1s ease-out;
}

.blog_share .social_share_dropdown ul li a {
  text-align: center;
  display: block;
  height: 50px;
  line-height: 50px!important;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  font-style: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  color: #bfa97d;
  -webkit-transition: color .15s ease-out;
  -moz-transition: color .15s ease-out;
  -ms-transition: color .15s ease-out;
  -o-transition: color .15s ease-out;
  transition: color .15s ease-out;
  background-color: #f6f6f6;
  color: #bfa97d;
}

.blog_share .social_share_dropdown ul li a span {
  font-family: 'ElegantIcons';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  position: relative;
  vertical-align: middle;
  font-size: 17px;
  color: #bfa97d;
}

.social_facebook:before {
  content: "\e093";
}

.social_twitter:before {
  content: "\e094";
}

.social_googleplus:before {
  content: "\e096";
}

.social_pinterest:before {
  content: "\e095";
}

.social_share_holder {
  position: relative;
  display: inline-block;
  cursor: default;
  font-family: Lora, sans-serif;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0px;
  font-weight: 400;
  font-style: italic;
  text-transform: none;
}

.social_share_holder:hover .social_share_dropdown ul li {
  opacity: 1;
  visibility: visible;
  cursor: pointer;
}

.social_share_holder:hover .social_share_dropdown ul li:nth-child(2) {
  left: 50px;
  transition-delay: .1s;
}

.social_share_holder:hover .social_share_dropdown ul li:nth-child(3) {
  left: 100px;
  transition-delay: .2s;
}

.social_share_holder:hover .social_share_dropdown ul li:nth-child(4) {
  left: 150px;
  transition-delay: .3s;
}

.social_share_holder a {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  font-style: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  color: #bfa97d;
  -webkit-transition: color .15s ease-out;
  -moz-transition: color .15s ease-out;
  -ms-transition: color .15s ease-out;
  -o-transition: color .15s ease-out;
  transition: color .15s ease-out;
  color: #bfa97d;
}

.blog_share .social_share_dropdown ul li:hover {
  color: #333230 !important;
}

.blog_share .social_share_dropdown ul li:hover a span {
  color: #333230 !important;
}
.post-item p.post_excerpt {
  margin: 0;
  font-family: Raleway, sans-serif;
  font-size: 18px;
  line-height: 25px;
  letter-spacing: 0px;
  font-weight: 400;
  font-style: normal;
  text-transform: none;
  color: #2b2b2b;
}

.post-item a.more-link {
  white-space: nowrap;
  -webkit-transition: color .15s ease-out,background-color .15s ease-out,border-color .15s ease-out;
  -moz-transition: color .15s ease-out,background-color .15s ease-out,border-color .15s ease-out;
  -ms-transition: color .15s ease-out,background-color .15s ease-out,border-color .15s ease-out;
  -o-transition: color .15s ease-out,background-color .15s ease-out,border-color .15s ease-out;
  transition: color .15s ease-out,background-color .15s ease-out,border-color .15s ease-out;
  text-decoration: none;
  cursor: pointer;
  outline: 0;
  position: relative;
  display: inline-block;
  width: auto;
  border-color: #336699;
  font-family: Raleway;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-width: 0px;
  border-radius: 0px;
  -moz-border-radius: 0px;
  -webkit-border-radius: 0px;
  background-color: #bfa97d;
  font-style: normal;
  color: #ffffff;
  padding: 0 20px;
  font-size: 12px;
  line-height: 40px;
  height: 40px;
  font-weight: 700;
  padding-left: 25px;
  padding-right: 25px;
  margin-top: 20px;
}

.post-item a.more-link:hover {
  color: #ffffff;
  background-color: #666666;
}


@media(max-width:1200px){

  .blog-wrap>.content-wrapper {
    max-width: 950px;
  }
}


@media(max-width:1000px){
  .blog-wrap>.content-wrapper {
    max-width: 768px;
  }

  .blog-wrap {
    margin: 0;
  }
}

@media(max-width:845px) and (min-width:769px){
  .blog_share .social_share_dropdown{
    margin-left: -135px;
  }
}

@media(max-width:795px) and (min-width:769px){
  .blog-wrap>.content-wrapper {
    padding-left: 15px;
    padding-right: 15px;
  }
}



@media(max-width:768px){
  .blog-wrap>.content-wrapper {
    max-width: 600px;
  }
}

@media(max-width:630px) and (min-width:601px){
  .blog-wrap>.content-wrapper {
    padding-left: 15px;
    padding-right: 15px;
  }
}


@media(max-width:600px) and (min-width:481px){
  .blog_share .social_share_dropdown{
    margin-left: -135px;
  }
  .post-item.blog-post-mata .social_share_dropdown {
    margin-left: 0;
  }
}


@media(max-width:600px){
  .blog-wrap>.content-wrapper {
    max-width: 420px;
  }

  .post-item h2 {
    margin: 0 0 20px;
  }

}


@media(max-width:480px){

  .blog-wrap>.content-wrapper {
    max-width: 300px;
  }

  .post-item h2 {
    margin: 0 0 15px;
  }


}




/* post-css */
.blog-left-col {}

.blog-left-col {
  width: 75%;
  float: left;
}

.blog-right-col {
  width: 25%;
  float: left;
}

.blog-left-col-inner {
  padding: 0 20px 0 0;
}

.post-item.blog-post-mata {
  margin-bottom: 0;
}

.post-item.blog-post-mata h2:hover {
  color: #bfa97d;
}

.blog-left-col-inner img {
  width: auto;
  max-width: 100%;
  vertical-align: middle;
}

.blog-left-col-inner p {
  font-family: Raleway, sans-serif;
  font-size: 18px;
  line-height: 25px;
  letter-spacing: 0px;
  font-weight: 400;
  font-style: normal;
  text-transform: none;
  color: #2b2b2b;
  margin-bottom: 1em;
}

.author_description {
  display: block;
  position: relative;
  background-color: #fff;
  padding: 28px 35px;
  border: 1px solid transparent;
}

.author_description .author_description_inner {
  display: block;
}

.author_description .image {
  display: block;
  float: left;
  height: 102px;
  width: 102px;
}

.author_description .image img {
  max-width: 100%;
  height: auto;
}

.author_description .author_text_holder {
  min-height: 102px;
  padding: 0 0 0 130px;
  position: relative;
}

.author_description .author_text_holder h6 {
  font-family: 'Lora', sans-serif;
  font-size: 16px;
  line-height: 31px;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0px;
  display: block;
  margin: 0 0 4px 0;
  color: #393939;
}

.author_description .author_text_holder span.author_email {
  display: block;
  margin: 0 0 6px 0;
}
.blog-comments form {
  margin-bottom: 2em;
  padding-top: 0;
}


.blog-right-col-inner {
  padding: 0 0 0 20px;
}

.sidebar-col {
  position: relative;
  z-index: 11;
}

.site-serach {
}

.sidebar-col > div {
  margin: 26px 0 0;
}

.sidebar-col > div:first-child {
  margin: 0;
}

.site-serach {}

.site-serach form {
  display: inline-block;
  width: 90%;
  overflow: hidden;
  background-color: transparent;
  border: 1px solid #595959;
  border-radius: 2px;
  vertical-align: middle;
  border-color: #ede8de;
  color: #8c8c8c;
  width: 100%;
  box-sizing: border-box;
}

.site-serach form input.hs-search-field__input {
  height: 30px;
  float: left;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 2px 10px;
  width: 85%;
  background-color: transparent;
  display: inline-block;
  text-decoration: none;
  border: 0;
  outline: 0;
  font-family: Lora, sans-serif;
  font-size: 16px;
  letter-spacing: 0px;
  font-weight: 400;
  font-style: italic;
  text-transform: none;
  color: #2e2f2f;
}

.site-serach form input.hs-search-field__input::placeholder {
  color: #2e2f2f;
}

.site-serach form  button#searchsubmit {
  width: 15%;
  height: 30px;
  line-height: 30px;
  display: inline-block;
  margin: 0;
  padding: 0;
  text-align: center;
  outline: 0;
  border: none;
  text-decoration: none;
  background-color: transparent;
  color: #595959;
  font-family: FontAwesome,sans-serif;
  cursor: pointer;
  white-space: nowrap;
  float: right;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  -ms-transition: all .2s ease-out;
  border-color: #ede8de;
  color: #8c8c8c;
}

.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale
}

.site-serach form button#searchsubmit:after {content: "";font-size: inherit;font-size: 13.3333px;}

.sidebar-col h3 {
  margin-bottom: 18px;
  font-family: Lora, sans-serif;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0px;
  font-weight: 400;
  font-style: italic;
  text-transform: none;
  color: #2e2f2f;
}

.sidebar-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.sidebar-col ul li {
  font-size: 14px;
  line-height: 36px;
  letter-spacing: 0px;
  font-weight: 400;
  font-style: normal;
  text-transform: none;
  color: #336699;
  font-family: 'Raleway', sans-serif;
}

.sidebar-col ul li a {
  -webkit-transition: color .15s ease-out;
  -moz-transition: color .15s ease-out;
  -o-transition: color .15s ease-out;
  -ms-transform: color .15s ease-out;
  transition: color .15s ease-out;
  font-family: Raleway, sans-serif;
  font-size: 14px;
  line-height: 32px;
  letter-spacing: 0px;
  font-weight: 400;
  font-style: normal;
  text-transform: none;
  color: #8c8c8c;
}

.sidebar-col ul li a:hover {
  color: #bfa97d;
}

.sidebar-col ul li a span.filter-link-count {
  display: none;
}
.sidebar-col>div:last-child {
  margin-bottom: 26px;
}
.hs-search-field--open .hs-search-field__suggestions {
  padding: 10px;
}

.blog-banner.no_featured_image {
  min-height: 300px;
  background-color: #336699 !important;
}
.blog-banner h1 > span {
  word-break: break-word;
/*   padding-left: 15px;
  padding-right: 15px; */
}

.no-cmnt {
  padding: 50px 0 40px;
  margin: 0;
}

.no-cmnt h6 {
  font-family: 'Lora', sans-serif;
  font-size: 16px;
  line-height: 31px;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0px;
  text-transform: none;
  margin: 0;
  color: #2f2e2e;
}

.no-cmnt p {
  font-family: Raleway, sans-serif;
  font-size: 18px;
  line-height: 25px;
  letter-spacing: 0px;
  font-weight: 400;
  font-style: normal;
  text-transform: none;
  color: #2b2b2b;
  margin-bottom: 1em;
}

.post-item .post_comments_holder {
  padding-left: 2px !important;
}

.post-item .post_comments_holder a.post_comments {
    position: relative;
}

.post-item .post_comments_holder:before {
    left: -1px !important;
}

.blog-post__body .hs-responsive-embed-inner-wrapper {
    padding-bottom: 0 !IMPORTANT;
}
.blog-post__body .hs-responsive-embed-inner-wrapper iframe.hs-responsive-embed-iframe {
    position: static !IMPORTANT;
    height: 458px !IMPORTANT;
}

.blog-post__body .hs-responsive-embed-inner-wrapper iframe.hs-responsive-embed-iframe {
    margin-bottom: 1em;
}



@media only screen and (min-width: 768px) and (max-width: 820px){
  .post-mata-outer {
    width: 95%;
    margin: 0 auto;
  }
}


@media only screen and (min-width: 600px) and (max-width: 670px){
  .post-mata-outer {
    width: 93%;
    margin: 0 auto;
  }
}



@media(max-width:600px){
  .blog-left-col {
    width: 100%;
  }

  .blog-left-col-inner {
    padding: 0;
  }

  .post-item.blog-post-mata {
    padding: 30px;
  }

  .post-mata-outer {
  }

  .blog-post__body {
    padding: 30px;
  }

  .blog-comments {
    padding: 30px;
  }

  .blog-right-col {
    width: 100%;
  }

  .blog-right-col-inner {
    padding: 0;
  }

  .sidebar-col>div:last-child {
    margin-bottom: 26px;
  }
}


@media(max-width:480px){
  .post-item.blog-post-mata {
    padding: 25px;
  }

  .blog-post__body {
    padding: 25px;
  }

  .author_description .image {
    float: none;
  }

  .author_description .author_text_holder {
    padding: 10px 0 0;
  }

  .blog-comments {
    padding: 25px;
  }
}


@media(max-width:420px){
  .post-item.blog-post-mata .social_share_dropdown {
    margin-left: -135px;
  }
}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your
system pages look. These pages include the error pages (404 and 500),
password protected content and search listing results.
*********************************************************************************
****************************************************************************** */

.error-page {
  padding: 10rem 0;
  text-align: center;
  position: relative;
}
.error-page:before {
  content: attr(data-error);
  position: absolute;
  width: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: Lato, sans-serif;
  font-size: 40vw;
  font-weight: bold;
  color: #F3F6F9;
  z-index: -1;
}
@media screen and (min-width: 1100px) {
  .error-page:before {
    font-size: 20rem;
  }
}
.error-page_heading {
  margin-bottom: 1rem;
}

.systems-page {
  padding: 3rem 20px;
}
.systems-page .success {

  display: inline-block;
  margin: 2rem 0;
  background-color: #cde3cc;
  border: 1.5px solid #4f7d24;
  border-radius: 6px;
  font-size: .75rem;
  color: #4f7d24;
  padding: .1rem .75rem;
}

.hs-search-results {
  margin-top: 2rem;
}
ul.hs-search-results__listing li {
  margin-bottom: 2rem;
}
.hs-search-results__title {
  font-family: Merriweather, serif;
  font-size: 1.25rem;
  color: #494a52;
  text-decoration: underline;
  margin-bottom: .25rem;
}
.hs-search-results__title:hover {
  text-decoration: none;
}
.hs-search-results__description {
  padding-top: .5rem;
}
.hs-search-highlight {
  font-weight: bold;
}
.hs-search-results__pagination a {
  color: #494a52;
}

.email-prefs .item.disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.email-prefs .item.disabled input:disabled {
  cursor: not-allowed;
}

ul.no-list.hs-error-msgs {
  padding-left: 0;
}
.sp .systems-page {
  padding-left: 0;
  padding-right: 0;
}

.subscription form input.email-edit.hs-input {
  width: 100% !important;
}

main.body-container-wrapper.sp.prompt {}

.prompt input#hs-pwd-widget-password {
  display: inline-block;
  width: 100%;
  height: 58px;
  padding: 9px 10px;
  font-size: 16px;
  font-weight: normal;
  line-height: 22px;
  color: #33475b;
  background-color: #fff;
  border: 2px solid #d1d6dc;
  box-sizing: border-box;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  padding: 10px 17px;
  border: 1px solid #e9e9e9;
  outline: 0;
  resize: none;
  font-family: inherit;
  line-height: 18px;
  background-color: #f6f6f5;
  color: #7f8385;
  height: auto;
  font-size: 13px;
  border-color: rgba(233,233,233,1.0);
  color: ;
  border-radius: 0px;
  background-color: rgba(246,246,245,1.0);
  height: auto !important;
  margin-bottom: 10px;
}
.subscriptions form {
  max-width: 100%;
}
.body-container__landing h1 {
  font-size: 38px;
}
.hs-button {
  white-space: normal;
}
.prompt input#hs-pwd-widget-password:focus {
  border-color: rgba(51,102,153,1.0);
}