/* ******************************************************************************
*********************************************************************************
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 {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

/* 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 {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* 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.
*********************************************************************************
****************************************************************************** */

.banner-area .dnd-section {
  padding: 0;
}

.banner-area .dnd-section > .row-fluid {
  width: 100%;
  padding: 0;
}

.dnd-section > .row-fluid {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 767px) {
  .dnd-section .widget-type-cell {
    padding-left: 0px;
    padding-right: 0px;
  }
}

.lp-module-section .row-fluid {
    width: 100% !important;
}

.lp-module-section .row-fluid,
.lp-module-section .dnd-section {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}


/* ============================= Media queries =================== */
@media (min-width: 981px) {
  .page-center,
  .content-wrapper,
  .dnd-section > .row-fluid {
    padding: 2% 0;
  }
}

@media (min-width: 1350px) {
  .page-center,
  .content-wrapper,
  .dnd-section > .row-fluid {
    padding: 27px 0; 
  }
}

/* ================================================= */
@media (max-width: 980px) {
  .page-center,
  .content-wrapper,
  .dnd-section > .row-fluid {
    padding: 30px 0; 
  }
}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your
fonts apppear throughout your site.
*********************************************************************************
****************************************************************************** */

@font-face {
font-family: 'revicons';
src: url('https://19513621.fs1.hubspotusercontent-na2.net/hubfs/19513621/Chandler_Asset_Management_March2021/Fonts/revicons.eot') format('embedded-opentype'), 
url(https://19513621.fs1.hubspotusercontent-na2.net/hubfs/19513621/raw_assets/public/Chandler_Asset_Management_March2021/fonts/revicons.woff) format('woff'), 
url(https://19513621.fs1.hubspotusercontent-na2.net/hubfs/19513621/raw_assets/public/Chandler_Asset_Management_March2021/fonts/revicons.woff2) format('woff2'),
url(https://19513621.fs1.hubspotusercontent-na2.net/hubfs/19513621/raw_assets/public/Chandler_Asset_Management_March2021/fonts/revicons.ttf) format('truetype'), 
url(https://19513621.fs1.hubspotusercontent-na2.net/hubfs/19513621/raw_assets/public/Chandler_Asset_Management_March2021/fonts/revicons.svg) format('svg');
font-weight: normal;
font-style: normal;
}

@font-face {
  font-family: 'ETmodules';
  src: url('https://19513621.fs1.hubspotusercontent-na2.net/hubfs/19513621/Chandler_Asset_Management_March2021/Fonts/modules.eot') format("embedded-opentype"),
    url(https://19513621.fs1.hubspotusercontent-na2.net/hubfs/19513621/raw_assets/public/Chandler_Asset_Management_March2021/fonts/modules.ttf) format("truetype"),
    url(https://19513621.fs1.hubspotusercontent-na2.net/hubfs/19513621/raw_assets/public/Chandler_Asset_Management_March2021/fonts/modules.woff) format("woff"),
    url(https://19513621.fs1.hubspotusercontent-na2.net/hubfs/19513621/raw_assets/public/Chandler_Asset_Management_March2021/fonts/modules.woff2) format("woff2"),
    url(https://19513621.fs1.hubspotusercontent-na2.net/hubfs/19513621/raw_assets/public/Chandler_Asset_Management_March2021/fonts/modules.svg) format("svg");
  font-weight: 400;
  font-style: normal
}

body {
  font-family: Raleway, sans-serif;
  font-size: 18px;
  color: #666666;
  line-height:1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

p {
  margin: 0;
  padding-bottom: 1em;
}

p:last-of-type {
  padding-bottom: 0;
}

/* Anchor Links */
a {
  color: #cc5c30;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}

a:focus {
  outline: 0;
}

::selection {
  color: #fff;
  background: #134A30;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 15px;
  line-height: 1;
  padding-bottom: 10px;
  font-weight: 500;
  font-family: Raleway, sans-serif;
  color: #333333;
  word-break: break-word;
}

h1 {
  font-size: 30px;
}

h2 {
  font-size: 26px;
}

h3 {
  font-size: 22px;
}

h4 {
  font-size: 18px;
}

h5 {
  font-size: 16px;
}

h6 {
  font-size: 14px;
}

strong {
  font-weight: 700;
}

code {
  vertical-align: bottom;
}

ul,
ol {
  margin: 0;
  padding: 0 0 1em 1em;
}

ul li,
ol li {
  line-height: 1.5rem;
}

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

blockquote {
  padding: 0;
  quotes: none;
  margin: 20px 0 30px;
  border-left: 5px solid;
  padding-left: 20px;
  border-color: #2ea3f2;
}

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

/* TODO */
small {

}

/* TODO */
mark {

}

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

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

:focus {
  outline: auto;
  outline-color: green;
}

.disable-focus-styles :focus {
  outline: none;
}
/* ******************************************************************************
*********************************************************************************
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: 500px;
}

h3.form-title {
  margin: 0;
  padding: 5px;
  font-size: 39px;
  line-height: 1.3;
  font-weight: 500;
  position: relative;
  font-family: 'Raleway',Helvetica,Arial,Lucida,sans-serif;
}

h3.form-title:before{
  content: "";
  position: absolute;
  top: -20px;
  left: 2px;
  height: 3px;
  width: 50px;
  background: #204A36;
  border-radius: 10px;
}

.hs-button {
  margin: 0;
  cursor: pointer;
  display: -moz-inline-stack;
  display: inline-block;
  width: auto;
  margin: 16px 0 0;
  font-family: 'Gotham Medium',sans-serif;
  background-color: #CC5C30;
  padding: 0.6em 1em;
  font-size: 20px;
  border-radius: 3px;
  color: #ffffff;
  border: 0px solid;
  line-height: normal;  
}

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

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


.hs-form label {
  color: #000000;
  display: block;
  margin-bottom: 0;
}

.hs-error-msgs label,
.hs-form .hs-error-msgs label {
  display: block;
  margin-top:0;
  color: #790000 !important;
  font-family: Raleway, Helvetica, Arial, Lucida, sans-serif;
  font-weight: 700;
  font-size: 11.382px;
}
ul.no-list.hs-error-msgs.inputs-list {
  background-color: rgba(255,223,224,.25);
  margin-bottom: 6px!important;
  border-top: 1px solid #c89797;
  border-bottom: 1px solid #c89797;
  float: left;
  width: 100%;
  margin-top: 10px;
  padding: 8px 10px;
}
.hs_error_rollup .no-list.hs-error-msgs.inputs-list {
  color: #790000;
  font-size: 1em;
  font-weight: 700;
  margin-bottom: 25px;
  border-top: 2px solid #790000;
  border-bottom: 2px solid #790000;
  padding: 16px 0 16px 0;
  clear: both;
  width: 100%;
  background: transparent;
  text-align: center;
}
.hs_error_rollup .hs-error-msgs label, 
.hs_error_rollup .hs-form .hs-error-msgs label {
  font-size: 14px;
  text-align: center;
}
.hs-input,
input[type="password"] {
  display: inline-block;
  width: 100% !important;
  margin: 0;
  padding: 15px;
  background: #fff;
  border: 1px solid #E3E3E3;
  border-radius: 0;
  color: #999;
  letter-spacing: normal;
  line-height: normal;
  font-family: 'Raleway',Helvetica,Arial,Lucida,sans-serif;
  font-size: 14px;
}

input[type="password"] {
  margin: 0 !important;
  height: auto !important;
}

.hs-input[type=checkbox],
.hs-input[type=radio] {
  cursor: pointer;
  width: auto !important;
  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: #757575;
}

.hs-input::-webkit-input-placeholder {
  color: #757575;
}

.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;
}

.inputs-list label>input, 
.inputs-list label>span{
  color: #666 !important;
}
.hs-input[type=checkbox]:checked+span,
.hs-input[type=radio]:checked+span {
  font-weight: bold;
  color: #666 !important;
}

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

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 {
  border-color: #790000;
}
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: #790000;
}

.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;
}

.hs-form-field {
  padding-top: 12px;
  width: 100%;
  padding-bottom: 16px;
}

.hs-error-msgs {
  padding-left: 0;
}

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

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

.hs-richtext {
  margin-bottom: 3px;
  line-height: 1.2;
  font-size: 18px;
  color: #666666;
}
.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;
}
.hs-fieldtype-textarea.field.hs-form-field {
  padding-top: 0;
}
textarea {
  height: 160px !important;
  padding: 15px !important;
  line-height: 1.5 !important;
  display: block !important;
}
.grecaptcha-badge {
  margin: 0;
}
.inputs-list label {
  line-height: 1.5;
  font-size: .875em;
}
.hs-fieldtype-booleancheckbox.field.hs-form-field {
  padding-top: 5px;
}

.inputs-list:first-child {
  padding-top: 0;
}

.inputs-list {
  margin: 0;
  padding: 0;
}
textarea#g-recaptcha-response {
  display: none !important;
}

@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: Raleway, sans-serif;
}

@media (max-width: 767px) {
  form {
    max-width: 100%;
  }
}
@media (max-width: 640px) {
  textarea {
    height: 120px!important;
  }
  .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 {
    line-height: 2;
    min-height: 2rem;
  }
}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your
menu items appear, including the link and hover effects.
*********************************************************************************
****************************************************************************** */

.hs-menu-wrapper ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your
tables look throughout your site.
*********************************************************************************
****************************************************************************** */

table {
  border: 1px solid #eee;
  margin: 0 0 15px;
  border-collapse: collapse;
  border-spacing: 0;
}
thead tr th {
  border: 1px solid #eee;
  padding: 20px 24px;
  width: auto;
}
tbody td{
  border: 1px solid #eee;
  padding: 20px 24px;
  width: auto;
}

tfoot tr td {
  padding: 20px 24px;
  border: 1px solid #eee;
}

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

/* ******************************************************************************
*********************************************************************************
Home
*********************************************************************************
****************************************************************************** */
.cm-home1-sec {
  position: relative;
  z-index:9;
}
.cm-home-sec .dnd-section>.row-fluid {
  padding: 0;
  max-width: 100%;
  width: 100%;
}
.cm-home1-sec .dnd-section {
  padding-top: 107px !important;
}
.cm-home1-sec .dnd-section,
.cm-home-sec .dnd-section{
  background-size: initial !important;
  background-repeat: repeat !important;
}
.cm-home1-sec{
  position: relative;
  z-index:8;
}
.cm-home1-sec h2 {
  text-transform: uppercase;
  font-size: 40px;
  margin-bottom: 50px;
  line-height: 1em;
}
.cm-home1-sec h2 strong {
  transform: skewX( 15deg);
  background: #204A36;
  display: inline-block;
  color: #fff;
  padding: 15px 20px;
  font-weight: 500;
}
.cm-home1-sec h2 strong em {
  font-style: normal;
  transform: skewX( -15deg);
  display: inline-block;
  font-size: 45px;
  font-family: 'Raleway',Helvetica,Arial,Lucida,sans-serif;
}
.cm-home1-sec p {
  font-size: 26px;
  line-height: 40px;
  color: #404040;
}
.cm-home1-sec .dnd-section>.row-fluid {
  width: 60%;
}
.cm-home2-sec .dnd-section {
  background-size: cover !important;
  background-position: 50% !important;
  position: relative;
  background-color: #fff;
  background-repeat: no-repeat;
}
.cm-home4-sec .dnd-section {
  background-size: contain !important;
  background-position: bottom left !important;
  background-color: #F7F7F7;
}
.cm-home4-sec .hs_cos_wrapper_type_rich_text {
  margin-bottom: 5.82%;
  display: block;
}
.cm-home4-sec .hs_cos_wrapper_type_linked_image {
  display: block;
  min-height: 800px;
}
.title-size h3{
  font-size: 50px;
  text-transform: uppercase;
  line-height: 1.3em;
  word-break: keep-all;
  position:relative;
  margin-bottom:0;
}
.title-size h3:before {
  content: "";
  position: absolute;
  top: -15px;
  left: 4px;
  height: 3px;
  width: 50px;
  background: #204A36;
  border-radius: 10px;
}
.paragraph-text p,
.paragraph-text ul{
  font-size: 18px;
  word-spacing: 2px;
  line-height: 27px;
}
.hs-home-tabber-grp .problems-inner{
  background-image: url(https://19513621.fs1.hubspotusercontent-na2.net/hubfs/19513621/raw_assets/public/Chandler_Asset_Management_March2021/images/bar.png);
}

@media (min-width: 981px){
  .cm-home4-sec .dnd-section>.row-fluid>.dnd-column {
    margin-bottom: 5.1%;
  }
  .cm-home4-sec .span6.dnd-column{
    background: none !important;
  }
  .cm-about5-sec {
    padding-bottom: 0;
  }
}
@media (min-width: 1350px){
  .cm-home4-sec .dnd-section>.row-fluid>.dnd-column {
    margin-bottom: 5.1%;
  }
  .cm-about5-sec {
    padding-bottom: 0;
  }
}
@media (max-width: 1400px){
  .cm-home1-sec h2 {
    font-size: 30px;
  }
  .cm-home1-sec h2 strong em {
    font-size: 35px;
  }
}
@media (max-width: 1200px){
  .cm-home1-sec p {
    font-size: 21px;
  }
}
@media (max-width: 1160px){
  .cm-home1-sec .dnd-section>.row-fluid {
    width: 80%;
  }
}
@media (max-width: 980px){
  .cm-home4-sec .hs_cos_wrapper_type_linked_image {
    display: block;
    min-height: auto;
  }
  .cm-home4-sec .dnd-section>.row-fluid > .dnd-column .dnd-row > .row-fluid {
    display: flex;
    flex-wrap: wrap;
  }
  .cm-home4-sec .span6.dnd-column:first-child {
    order: 2;
  }
  .cm-home4-sec .span6.dnd-column:last-child {
    order: 1;
  }
  .cm-home4-sec .span6.dnd-column:first-child {
    border: 15px solid #ffffff;
    min-height: 529px;
    text-align: left;
    margin-left: 0;
  }
  .cm-home4-sec .hs_cos_wrapper_type_linked_image {
    min-height: auto;
    border: 15px solid #fff;
    border-left: 12px solid #fff;
    border-right: 12px solid #fff;
  }
  .cm-home4-sec .dnd-section>.row-fluid {
    margin-bottom: 31px;
  }
  .hs-counter-grp .hs-counter-inner{
    background-image:url(https://19513621.fs1.hubspotusercontent-na2.net/hubfs/19513621/raw_assets/public/Chandler_Asset_Management_March2021/images/bgbg.png) !important;
  }
  .cm-home-sec .dnd-section {
    margin-top: 0 !important;
    padding: 30px 0 !important;
  }
  .cm-home1-sec h2 {
    font-size: 26px;
  }
  .cm-home1-sec h2 strong em {
    font-size: 30px;
  }
  .cm-home1-sec .dnd-section {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }
  .cm-home2-sec .dnd-section {
    background-position: right center !important;
  }
  .cm-home2-sec .row-fluid [class*="span"] {
    min-height: 0;
  }
  .cm-home2-sec .dnd-section>.row-fluid {
    padding-top: 0;
    padding-bottom: 0;
  }
  .cm-home4-sec.title-size h3 {
    margin-top: 30px;
  }
  .cm-home4-sec .hs_cos_wrapper_type_rich_text {
    margin-bottom: 0;
    display: block;
  }
  .cm-home-sec .dnd-section {
    padding-top: 30px !important;
  }
}

/* ******************************************************************************
*********************************************************************************
About
*********************************************************************************
****************************************************************************** */
.body-about-wrapper h2 {
  position: relative;
}
.body-about-wrapper h2:after {
  content: "";
  position: absolute;
  top: -20px;
  left: 2px;
  height: 3px;
  width: 50px;
  background: #204A36;
  border-radius: 10px;
}
.body-about-wrapper .cm-about-sec .dnd-section {
  padding-top: 2%;
  padding-right: 1%;
  padding-bottom: 8.4%;
  padding-left: 1%;
  background-size: contain !important;
  background-position: bottom left !important;
  background-repeat: no-repeat !important;
}
.cm-about-sec .dnd-section>.row-fluid {
  padding-top: 0;
}
.cm-about-sec h2 {
  letter-spacing: 2px;
  font-size: 32px;
  line-height: 1.3;
  padding: 0 0 5px;
  margin: 30px 0;
}
.cm-about-sec p {
  line-height: 1.8em;
  font-size: 16px;
  text-align: justify;
  margin-bottom: 25px;
  padding: 0;
}
.cm-about-sec h2+p{
  margin-bottom: 30px;
}
.cm-about-sec h3 {
  font-weight: 800;
  margin-bottom: 0;
}
.cm-about2-sec {
  font-size: 18px;
  line-height: 27px;
  text-align: justify;
}
.cm-about2-sec .dnd-section>.row-fluid {
  margin-top: 40px;
}
.cm-about2-sec .dnd-section {
  padding-top: 48px !important;
}
.cm-about2-sec {
  font-size: 18px;
  line-height: 27px;
}
.cm-about2-sec .hs_cos_wrapper_type_rich_text {
  padding-top: 6%;
  padding-right: 8%;
  padding-left: 8%;
  display: block;
}
.cm-about2-sec p {
  margin-bottom: 6.92%;
  padding: 0;
}
.cm-about2-sec h3 {
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 3px;
  margin-bottom:0;
}
.cm-about2-sec h3+p {
  line-height: 20px;
  font-size: 14px;
  margin-bottom: 0;
}
.cm-about3-sec .dnd-section>.row-fluid {
  max-width: 100%;
  width: 100%;
  padding:0;
}
.cm-about4-sec .dnd-section{
  padding-top: 8px;
  padding-bottom: 18px;
  margin-top: -16px;
  background-size: cover;
  background-position: 50%;
  background-color: #fff;
  position: relative;
  z-index: 2;
}
.cm-about4-sec .dnd-section>.row-fluid {
  padding-top: 30px;
  padding-right: 5px;
  padding-bottom: 5%;
  padding-left: 5%;
}
.cm-about4-sec h2 {
  font-size: 36px;
  letter-spacing: 1px;
  margin-top: 13%;
  margin-bottom: 0px;
  line-height: 1.3;
  padding-bottom: 15px;
}
.cm-about4-sec p {
  line-height: 1.8em;
  font-size: 16px;
  text-align: justify;
}
.cm-about5-sec .dnd-section>.row-fluid {
  padding: 0;
  max-width: 100%;
  width: 100%;
}
.cm-about5-sec h2 {
  font-size: 36px;
  margin-top: 14.8%;
  margin-bottom: 17px;
  padding: 0;
  line-height: 1.3;
}
.cm-about5-sec h6 {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 17px;
  padding: 0;
  line-height: 23.8px;
}
.cm-about5-sec p {
  text-align: justify;
  font-size: 16px;
  padding-right: 26%;
  margin-bottom: 10px;
  line-height: 23.8px;
}

.body-about-wrapper .hs-button, 
.body-about-wrapper .button--primary {
  padding: 0.3em 1em;
  line-height: 1.7em;
  margin-top: 0;
  font-family: Raleway, Helvetica, Arial, Lucida, sans-serif;
}

/* ******************************************************************************
*********************************************************************************
APPROACH
*********************************************************************************
****************************************************************************** */
.body-approach-wrapper h1 {
  font-size: 39px;
  letter-spacing: 1px;
  line-height: 1.3em;
  position:relative;
}
.body-approach-wrapper h1:before {
  content: "";
  position: absolute;
  top: -20px;
  left: 2px;
  height: 3px;
  width: 50px;
  background: #204A36;
  border-radius: 10px;
}
.body-approach-wrapper p {
  line-height: 1.8em;
  letter-spacing: 1px;
  font-size: 16px;
    color: #000;
}
.cm-approach8-sec.cm-et54-pb .dnd-section,
.cm-approach3-sec.cm-et54-pb .dnd-section { padding: 0 !important; }
.cm-approach-sec h1 {
  margin-top: 50px;
}
.fade-ani,
.cm-approach3-sec.wow h1,
.fade-ani .span6.dnd-column{
  opacity:0;
}
.fade-ani.animated,
.cm-approach3-sec.animated h1{
  opacity: 1;
  -webkit-animation: fadeIn 1s;
  animation: fadeIn 1s;
}

.fade-ani.animated .span6.dnd-column{
  opacity: 1;
  -webkit-animation: fadeIn 2.5s ;
  animation: fadeIn 2.5s ;
}


.cm-approach2-sec .dnd-section{
  position: relative;
}

.cm-approach2-sec h1 {
  font-size: 32px;
  letter-spacing: 0;
}
.cm-approach2-sec h1 {
  font-size: 32px;
  letter-spacing: 0;
  margin-bottom: 2.75%;
  padding-bottom: 11px;
    text-align: center;
}
.body-approach-wrapper .cm-approach2-sec h1:before {
    right: 0;
    left: 0; 
    margin: auto;
}
.body-approach-wrapper .cm-approach2-sec h1,
.body-approach-wrapper .cm-approach-sec h1 {
    font-size: 40px;
    line-height: 48px;
    font-weight: 600;
}
.cm-approach2-sec,
.cm-approach3-sec{
  position: relative;
}
/*
.cm-approach2-sec:before {
  background-image: url(https://19513621.fs1.hubspotusercontent-na2.net/hubfs/19513621/raw_assets/public/Chandler_Asset_Management_March2021/images/top-descipline-elmnt.png);
  content: '';
  width: 338px;
  height: 359px;
  position: absolute;
  top: -91px;
  z-index:2;
}
.cm-approach2-sec:after {
  background-image: url(https://19513621.fs1.hubspotusercontent-na2.net/hubfs/19513621/raw_assets/public/Chandler_Asset_Management_March2021/images/contact-overlay-2.png);
  content: '';
  width: 306px;
  height: 326px;
  position: absolute;
  right: 0px;
  bottom: -142px;
  z-index: 1;
}
*/
.cm-approach2-sec ol {
  list-style: none;
  counter-reset: item;
  padding-bottom: 1em;
  padding:4px 0 16px;
  line-height: 26px;
  font-weight: 700;
  margin-bottom: 2.75%;
  margin-top: 2.75%;
  font-size: 17px;
}
.cm-approach2-sec ol li {
  counter-increment: item;
  margin-bottom: 5px;
  font-family: 'Raleway',Helvetica,Arial,Lucida,sans-serif;
  line-height: 26px;
}
.cm-approach2-sec ol li:before {
  margin-right: 10px;
  content: counter(item);
  background: #fff;
  border-radius: 100%;
  color: #134A30;
  width: 33px;
  height:32px;
  text-align: center;
  display: inline-block;
  border: 1px solid #DEE4E1;
  padding: 2px 3px;
}
.cm-approach2-sec p {
  padding-bottom: 0;
}
.cm-approach3-sec .dnd-section {
  padding-top: 4.75% !important;
}
.cm-approach3-sec:after {
  background-image: url(https://19513621.fs1.hubspotusercontent-na2.net/hubfs/19513621/raw_assets/public/Chandler_Asset_Management_March2021/images/approach-design-elmnt.png);
  content: '';
  width: 489px;
  height: 616px;
  position: absolute;
  left: 0px;
  bottom: -256px;
  z-index: -1;
}
.cm-approach3-sec .dnd-section>.row-fluid {
  width: 90%;
}
.cm-approach3-sec h1 {
  margin-top: 20px;
  margin-bottom: 10px;
}
.cm-approach3-sec .hs_cos_wrapper_type_linked_image,
.cm-about2-sec .hs_cos_wrapper_type_linked_image{
  display: block;
}
.cm-about4-sec .hs-button, 
.cm-about4-sec .button--primary,
.cm-about5-sec .hs-button, 
.cm-about5-sec .button--primary{
  display:inline-block;
  margin-bottom:5px;
}
.cm-approach3-sec.wow .hs_cos_wrapper_type_linked_image,
.cm-about2-sec.wow .hs_cos_wrapper_type_linked_image,
.cm-about2-se.wow h3,
.cm-about2-sec.wow  h3+p,
.cm-about2-sec.wow p,
.cm-about4-sec.wow .hs-button, 
.cm-about4-sec.wow .button--primary,
.cm-about5-sec.wow .hs-button, 
.cm-about5-sec.wow .button--primary{
  opacity:0;
}
.cm-approach3-sec.animated .hs_cos_wrapper_type_linked_image,
.cm-about2-sec.animated .hs_cos_wrapper_type_linked_image,
.cm-about4-sec.animated .hs-button, 
.cm-about4-sec.animated .button--primary{
  opacity: 1;
  -webkit-animation: fadeInLeft 2s;
  animation: fadeInLeft 2s;
}

.cm-about5-sec.animated .hs-button, 
.cm-about5-sec.animated .button--primary{
  -webkit-animation: fadeInRight 2s;
  animation: fadeInRight 2s;
  opacity: 1;
}

.cm-about2-sec.animated p{
  opacity: 1;
  transition:opacity 2s;
}

.cm-about2-se.animatedc h3,
.cm-about2-sec.animated  h3+p{
  opacity: 1;
  transition:opacity 4s;
}

.cm-approach3-sec .hs_cos_wrapper_type_linked_image img {
  width: 100%;
  box-shadow: 0px 2px 18px 0px rgb(0 0 0 / 30%);
  vertical-align: middle;
}
.cm-approach3-sec h1 {
  font-size: 39px;
}
.cm-approach3-sec p {
  letter-spacing: 0;
  line-height: 23.8px;
  padding-bottom: 20px;
}
.cm-approach3-sec p:last-child {
  font-size: 17px;
  padding-bottom: 0;
}
.cm-approach4-sec h1 {
  font-weight: 700;
  text-transform: capitalize;
  font-size: 32px;
  color: #FFFFFF;
  letter-spacing: 1px;
  line-height: 1.3em;
  margin-top:5px;
}
.cm-approach4-sec h1:before{
  background:#fff;
}
.cm-approach4-sec p {
  font-weight: 300;
  line-height: 23.8px;
}
.cm-approach5-sec .dnd-section {
  padding-bottom: 0 !important;
}
.cm-approach5-sec h1 {
  text-transform: uppercase;
  line-height: 1em;
  font-size: 39px;
  letter-spacing: 0;
  margin-bottom: 2.75%;
  padding-bottom: 9px;
}
.cm-approach5-sec h1:before {
  left: 0;
  right: 0;
  margin: 0 auto;
  top: -25px;
}
.cm-approach5-sec p {
  letter-spacing: 1px;
  font-size: 19px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1;
}
.cm-approach6-sec .dnd-section {
  padding: 0 !important;
}
.cm-approach6-sec .dnd-section>.row-fluid {
  width: 95%;
  padding: 0;
}
.cm-approach6-sec .widget-type-linked_image {
  display: block;
  width: 100%;
}
.cm-approach6-sec .hs_cos_wrapper_type_linked_image img {
  width: 100%;
  vertical-align: middle;
}
.cm-approach7-sec p {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 2.75%;
  padding: 0;
  letter-spacing: 0;
  line-height: 23.8px;
}
.cm-approach7-sec p:last-child {
  margin-bottom: 0;
}

.cm-approach8-sec .dnd-section {
  padding-top: 5% !important;
  padding-bottom: 5% !important;
}
.cm-approach8-sec .dnd-section>.row-fluid {
  width: 95%;
}
.cm-approach8-sec .span6.dnd-column:first-child {
  border-left: 15px solid #ffffff;
  border-bottom: 15px solid #ffffff;
}
.cm-approach8-sec h1 {
  letter-spacing: 0;
  margin-top: 27px;
}
.cm-approach8-sec p {
  font-size: 16px;
  letter-spacing: 0;
  line-height: 23.8px;
}
.migration .hs-button, 
.migration .button--primary {
  margin-bottom: 40px;
}

/* ******************************************************************************
*********************************************************************************
Website Page
*********************************************************************************
****************************************************************************** */
.banner-area .row-fluid [class*="span"] {
  min-height: 0;
}
.body-container__website .dnd-section {
  position: relative;
}
.body-container__website {
  line-height: 1.7em;
}
.body-container__website .hs_cos_wrapper_type_rich_text {
  display: block;
  margin-bottom: 2.75%;
}
.body-container__website h1 {
  font-size: 26px;
  margin-bottom:0;
}
.body-container__website h1+p {
  padding-bottom: 5px;
}
.body-container__website h1+p a {
  color: #666;
}
.body-container__website hr {
  margin: 0;
  content: "";
  width: 100%;
  border-top: 1px solid #7EBEC5;
  left: 0;
  top: 0;
  z-index: 10;
  height: 23px;
  margin-bottom:2.65%;
  background: transparent;
}
.body-container__website h3 {
  line-height: 1em;
  margin-bottom: 0;
}
.body-container__website h4,
.body-container__website h2{
  margin-bottom: 0;
}

.body-container__website .ol-list{
  padding: 0 0 23px;
  line-height: 26px;
  list-style: none;
  counter-reset: item;
  padding-bottom: 1em;
}
.body-container__website ol {
  padding: 0 0 23px;
  line-height: 26px;
  padding-bottom: 1em;
  list-style-type: decimal;
  list-style-position: inside;
}
.body-container__website ol li {
  line-height: 26px;
}
.body-container__website .ol-list li{
  counter-increment: item;
  margin-bottom: 5px;
  font-family: 'Raleway',Helvetica,Arial,Lucida,sans-serif;
}
.body-container__website .ol-list li:before {
  margin-right: 10px;
  content: counter(item);
  background: #fff;
  border-radius: 100%;
  color: #134a30;
  width: 33px;
  height: 32px;
  text-align: center;
  display: inline-block;
  border: 1px solid #dee4e1;
  padding: 2px 3px;
}

/* ******************************************************************************
*********************************************************************************
Strategies
*********************************************************************************
****************************************************************************** */
.banner-strategies-section .page-center {
  width: 100%;
}
.cm-strategies-sec .dnd-section {
  position: relative;
}
/*
.cm-strategies-sec .dnd-section:before {
  background-image: url(https://19513621.fs1.hubspotusercontent-na2.net/hubfs/19513621/raw_assets/public/Chandler_Asset_Management_March2021/images/team-top-left.png);
  content: '';
  width: 400px;
  height: 600px;
  position: absolute;
  left: 0px;
  bottom: -256px;
  z-index: -1;
}
.cm-strategies-sec .dnd-section:after {
  background-image: url(https://19513621.fs1.hubspotusercontent-na2.net/hubfs/19513621/raw_assets/public/Chandler_Asset_Management_March2021/images/right-red-corner.png);
  content: '';
  width: 591px;
  height: 501px;
  position: absolute;
  right: 0px;
  z-index: -1;
  bottom: 0px;
}
*/
.cm-strategies3-sec.pg-zero {
  position: relative;
}
.cm-strategies3-sec:after {
  background-image: url(https://19513621.fs1.hubspotusercontent-na2.net/hubfs/19513621/raw_assets/public/Chandler_Asset_Management_March2021/images/core-right-bg.png);
  content: '';
  width: 301px;
  height: 403px;
  position: absolute;
  right: 0px;
  top: -200px;
}
.cm-strategies-sec h2,
.cm-strategies3-sec .hs_cos_wrapper_type_header h2{
  font-size: 39px;
  line-height: 1.3;
  position: relative;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.cm-strategies-sec h2:before,
.cm-strategies3-sec .hs_cos_wrapper_type_header h2:before{
  content: "";
  position: absolute;
  top: -20px;
  left: 2px;
  height: 3px;
  width: 50px;
  background: #204A36;
  border-radius: 10px;
}
.cm-strategies3-sec .hs_cos_wrapper_type_header h2:before {
  margin: 0 auto;
  left: 0;
  right: 0;
  top: -25px;
}

.cm-strategies-sec .span6.dnd-column:first-child{
  padding-left: 15%;
}
.cm-strategies-sec p {
  font-size: 16px;
  line-height: 23.8px;
  color: #404040
}

.cm-strategies2-sec .dnd-section {
  padding-top: 100px;
  padding-bottom: 0px;
  margin-bottom: -3px;
  background-color: #164330;
}
.pg-zero .dnd-section>.row-fluid{
  padding: 0;
}

.cm-tabs-grp .tabs-nav .tabs-nav-coun1.active .tab-icon{
  background-image: url(https://19513621.fs1.hubspotusercontent-na2.net/hubfs/19513621/raw_assets/public/Chandler_Asset_Management_March2021/images/public.png) !important;
}
.cm-tabs-grp .tabs-nav .tabs-nav-coun2.active .tab-icon{
  background-image: url(https://19513621.fs1.hubspotusercontent-na2.net/hubfs/19513621/raw_assets/public/Chandler_Asset_Management_March2021/images/finance.png) !important;
}
.cm-strategies3-sec .dnd-section {
  background-color:#f3f3f3;
}
.cm-strategies3-sec .hs_cos_wrapper_type_header h2 {
  margin-bottom: 0;
}



/* ******************************************************************************
*********************************************************************************
Career
*********************************************************************************
****************************************************************************** */
.body-career-wrapper .dnd-section>.row-fluid {
  padding-top: 0;
  padding-bottom: 0;
}

.cm-career-sec .widget-type-linked_image {
  display: block;
  width: 100%;
}
.cm-et-column .hs_cos_wrapper_type_linked_image img,
.cm-career3-sec .hs_cos_wrapper_type_linked_image img{
  vertical-align: middle;
}
.cm-career-sec .span6.dnd-column:last-child{
  padding: 5% 10% 0 0;
}
.cm-career-sec .hs_cos_wrapper_type_header h3 {
  font-size: 40px;
  letter-spacing: 1px;
  line-height: 1.3;
  position: relative;
}
.heading-border .hs_cos_wrapper_type_header h1:before,
.heading-border .hs_cos_wrapper_type_header h3:before{
  content: "";
  position: absolute;
  top: -20px;
  left: 2px;
  height: 3px;
  width: 50px;
  background: #204A36;
  border-radius: 10px;
}
.cm-career-sec p,
.cm-career2-sec p{
  font-size: 16px;
  line-height: 23.8px;
}
.cm-career2-sec .hs_cos_wrapper_type_header h3 {
  font-size: 39px;
  position: relative;
}
.cm-career2-sec .hs_cos_wrapper_type_header h3:before{
  background: #ffffff;
}
.cm-career2-sec h3 {
  font-size: 27px;
  margin-bottom:0;
}
.cm-career2-sec .hs-button,
.cm-career2-sec .button--primary {
  text-transform: uppercase;
  padding: 0.3em 1em;
  line-height: 1.7em;
  font-family: Raleway, Helvetica, Arial, Lucida, sans-serif;
  margin-top: 0;
}

.cm-strategies2-sec .dnd-section>.row-fluid,
.cm-strategies3-sec .dnd-section>.row-fluid,
.cm-strategies4-sec .dnd-section>.row-fluid{
  max-width: 1080px;
  width:100%;
}
.cm-career3-sec .dnd-section {
  position: relative;
}
.cm-career3-sec .dnd-section:before {
  background: url(https://19513621.fs1.hubspotusercontent-na2.net/hubfs/19513621/raw_assets/public/Chandler_Asset_Management_March2021/images/how-to-apply.png);
  content: "";
  background-position: left;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  left: -12px;
  top: -65px;
  display: block;
  width: 210px;
  height: 290px;
}
.cm-career3-sec .widget-type-linked_image {
  display: block;
  text-align: right;
  width: 100%;
}
.cm-career3-sec .hs_cos_wrapper_type_linked_image {
  margin-top: -23px;
  margin-right: -21px;
  display: block;
}
.cm-career3-sec .hs_cos_wrapper_type_header h1 {
  font-size: 39px;
  letter-spacing: 1px;
  position: relative;
  line-height: 1.3;
  padding-bottom: 3px;
}
.cm-career3-sec .hs_cos_wrapper_type_header h1:before{
  background: #204A36;
}
.cm-career3-sec.et-pb-8column .span8.dnd-column {
  margin-left:-21px;
  min-height: 57px;
}
.cm-career3-sec p {
  font-size: 16px;
  line-height: 23.8px;
}
.hs-strategies-tabber-wrp .strategies-tabs-nav-coun1.active .strategies-tab-icon {
  background: url(https://19513621.fs1.hubspotusercontent-na2.net/hubfs/19513621/raw_assets/public/Chandler_Asset_Management_March2021/images/agencies-green.png) !important;
}
.hs-strategies-tabber-wrp .strategies-tabs-nav-coun2.active .strategies-tab-icon {
  background: url(https://19513621.fs1.hubspotusercontent-na2.net/hubfs/19513621/raw_assets/public/Chandler_Asset_Management_March2021/images/financial-green-1.png) !important;
}

/* ******************************************************************************
*********************************************************************************
CONTACT
*********************************************************************************
****************************************************************************** */


.cm-contact-sec .dnd-section>.row-fluid {
  padding: 0;
}
.cm-contact-sec .dnd-section{
  position:relative;
}
.cm-contact-sec .dnd-section:before {
  background: url(https://19513621.fs1.hubspotusercontent-na2.net/hubfs/19513621/raw_assets/public/Chandler_Asset_Management_March2021/images/contact-overlay.png);
  content: "";
  background-position: left;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  left: -12px;
  top: -45px;
  display: block;
  width: 310px;
  height: 350px;
}
.cm-contact-sec .hs_cos_wrapper_type_form {
  width: 80%;
  display: block;
}
.cm-contact-sec .form-title {
  padding: 0;
  line-height: 1.3;
}
.cm-contact-sec .hs-form {
  max-width: 100%;
}
.cm-contact-sec .hs-form textarea#g-recaptcha-response {
  display: none !important;
}
.cm-contact2-sec .hs_cos_wrapper_type_header h2{
  position: relative;
  line-height: 2em;
  font-family: 'Raleway',Helvetica,Arial,Lucida,sans-serif;
  font-size: 39px;
  padding: 0;
  margin-bottom:0;
}
.cm-contact2-sec .hs_cos_wrapper_type_header h2:before {
  content: "";
  position: absolute;
  top: -25px;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  width: 50px;
  background: #204A36;
  border-radius: 10px;
  margin-left: auto;
  margin-right: auto;
}
.cm-contact2-sec .dnd-section{
  position:relative;
}

.cm-contact2-sec .dnd-section:before {
  background: url(https://19513621.fs1.hubspotusercontent-na2.net/hubfs/19513621/raw_assets/public/Chandler_Asset_Management_March2021/images/contact-overlay-2.png);
  content: "";
  background-position: left;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  right: 0;
  top: -196px;
  display: block;
  width: 330px;
  height: 350px;
}
.cm-contact3-sec .dnd-section>.row-fluid {
  width: 100%;
  max-width: 100%;
  padding: 0;
}
.hs-map-grp .map-tabs-nav li a:before {
  background: url(https://19513621.fs1.hubspotusercontent-na2.net/hubfs/19513621/raw_assets/public/Chandler_Asset_Management_March2021/images/location-black.png);
}
.cm-contact4-sec .dnd-section>.row-fluid {
  padding: 0;
  width: 100%;
}
.cm-contact4-sec h2 {
  font-size: 39px;
  margin-top: 70px;
  margin-bottom: 5%;
  position: relative;
  text-align: left;
  color: #2d322f;
  padding: 0;
  line-height: 1.3;
}
.cm-contact4-sec h2:before {
  content: "";
  position: absolute;
  top: -20px;
  left: 2px;
  height: 3px;
  width: 50px;
  background: #204a36;
  border-radius: 10px;
}
.cm-contact4-sec h4 {
  margin-bottom: 2.5%;
}
.cm-contact4-sec p {
  font-size: 16px;
  line-height: 23.8px;
}
.cm-contact4-sec p:last-child {
  margin-bottom: 3.5%;
}
.cm-contact4-sec .hs-button, 
.cm-contact4-sec .button--primary {
  margin: 0 0 10px;
  text-transform: uppercase;
  padding: 0.3em 1em;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.7em;
  font-family: Raleway, Helvetica, Arial, Lucida, sans-serif;
}
.cm-approach8-sec .dnd-section {
  background-size: 700px !important;
  background-position: bottom left !important;
}


/* ******************************************************************************
*********************************************************************************
RESOURCES
*********************************************************************************
****************************************************************************** */
.hs-holiday-schedule-grp .holiday-tabs-nav li a:before {
  background-image: url(https://19513621.fs1.hubspotusercontent-na2.net/hubfs/19513621/raw_assets/public/Chandler_Asset_Management_March2021/images/2.png);
}
.hs-holiday-schedule-grp .holiday-tabs-nav li.active a:before {
  background-image: url(https://19513621.fs1.hubspotusercontent-na2.net/hubfs/19513621/raw_assets/public/Chandler_Asset_Management_March2021/images/2_hover.png);
}

.mfp-bg {
  z-index: 999999 !important;
}
.mfp-wrap {
  z-index: 999999 !important;
}
.mfp-iframe-holder .mfp-close,
.mfp-image-holder .mfp-close {
  font-size: 64px;
  font-family: Open Sans,Arial,sans-serif;
  font-weight: 200;
  top: -10px;
  opacity: .2;
}
.mfp-iframe-holder .mfp-close:hover, 
.mfp-image-holder .mfp-close:hover {
  opacity: 1;
}

.fadeZoom img {
  transform: scale(0.5);
  transition: 1s ease;
  opacity: 0;
}

.fadeZoom.animated img {
  transform: scale(1);
  transition: 1s ease;
  opacity: 1;
}
.banner-strategies-section .hs-banner-area {
  background-color: #164330;
}
.cm-approach2-sec .dnd-section>.row-fluid {
  position: relative;
  z-index: 99;
}

/* ******************************************************************************
*********************************************************************************
Key Frame
*********************************************************************************
****************************************************************************** */


@-webkit-keyframes fadeBottom {
  0% {
    opacity: 0;
    -webkit-transform: translateY(10%);
  }

  to {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}

@keyframes fadeBottom {
  0% {
    opacity: 0;
    -webkit-transform: translateY(10%);
    transform: translateY(10%)
  }

  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@-webkit-keyframes fadeLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-10%)
  }

  to {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}

@keyframes fadeLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-10%);
    transform: translateX(-10%);
  }

  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20%);
  }

  to {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20%);
    transform: translateX(-20%);
  }

  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@-webkit-keyframes fadeRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(10%);
  }

  to {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}

@keyframes fadeRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(10%);
    transform: translateX(10%);
  }

  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@-webkit-keyframes fadeOutRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }

  to {
    opacity: 0;
    -webkit-transform: translateX(100%);
  }
}

@keyframes fadeOutRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  to {
    opacity: 0;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}

@-webkit-keyframes fadeInTop {
  0% {
    opacity: 0;
    -webkit-transform: translatey(-60%);
  }

  to {
    opacity: 1;
    -webkit-transform: translatey(0);
  }
}

@keyframes fadeInTop {
  0% {
    opacity: 0;
    -webkit-transform: translatey(-60%);
    transform: translatey(-60%);
  }

  to {
    opacity: 1;
    -webkit-transform: translatey(0);
    transform: translatey(0);
  }
}

@-webkit-keyframes fadeOutTop {
  0% {
    opacity: 1;
    -webkit-transform: translatey(0);
  }

  to {
    opacity: 0;
    -webkit-transform: translatey(-60%);
  }
}

@keyframes fadeOutTop {
  0% {
    opacity: 1;
    -webkit-transform: translatey(0);
    transform: translatey(0);
  }

  to {
    opacity: 0;
    -webkit-transform: translatey(-60%);
    transform: translatey(-60%);
  }
}

@-webkit-keyframes fadeInBottom {
  0% {
    opacity: 0;
    -webkit-transform: translatey(60%);
  }

  to {
    opacity: 1;
    -webkit-transform: translatey(0);
  }
}

@keyframes fadeInBottom {
  0% {
    opacity: 0;
    -webkit-transform: translatey(60%);
    transform: translatey(60%);
  }

  to {
    opacity: 1;
    -webkit-transform: translatey(0);
    transform: translatey(0);
  }
}

@-webkit-keyframes fadeOutBottom {
  0% {
    opacity: 1;
    -webkit-transform: translatey(0);
  }

  to {
    opacity: 0;
    -webkit-transform: translatey(60%);
  }
}

@keyframes fadeOutBottom {
  0% {
    opacity: 1;
    -webkit-transform: translatey(0);
    transform: translatey(0);
  }

  to {
    opacity: 0;
    -webkit-transform: translatey(60%);
    transform: translatey(60%);
  }
}

@-webkit-keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }

  to {
    opacity: 0;
    -webkit-transform: translateX(-70%);
  }
}

@keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  to {
    opacity: 0;
    -webkit-transform: translateX(-70%);
    transform: translateX(-70%);
  }
}

@-webkit-keyframes fadeTop {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-10%);
  }

  to {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}

@keyframes fadeTop {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-10%);
    transform: translateY(-10%);
  }

  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100%);
  }

  to {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }

  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@-webkit-keyframes Grow {
  0% {
    opacity: 0;
    -webkit-transform: scaleY(.5);
  }

  to {
    opacity: 1;
    -webkit-transform: scale(1);
  }
}

@keyframes Grow {
  0% {
    opacity: 0;
    -webkit-transform: scaleY(.5);
    transform: scaleY(.5);
  }

  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0
  }

  to {
    opacity: 1;
  }
}

@-webkit-keyframes slideWidth {
  0% {
    width: 0;
  }
}

@keyframes slideWidth {
  0% {
    width: 0;
  }
}

@-webkit-keyframes gridFadeIn {
  0% {
    opacity: 0;
    -webkit-transform: translatey(-5%);
  }

  to {
    opacity: 1;
    -webkit-transform: translatey(0);
  }
}

@keyframes gridFadeIn {
  0% {
    opacity: 0;
    -webkit-transform: translatey(-5%);
    transform: translatey(-5%);
  }

  to {
    opacity: 1;
    -webkit-transform: translatey(0);
    transform: translatey(0);
  }
}

/*!
* Animate.css - http://daneden.me/animate
* Licensed under the MIT license - http://opensource.org/licenses/MIT
* Copyright (c) 2015 Daniel Eden
*/
@-webkit-keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0
  }

  40% {
    -webkit-transform: perspective(400px) rotateX(-20deg);
    transform: perspective(400px) rotateX(-20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in
  }

  60% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
    opacity: 1
  }

  80% {
    -webkit-transform: perspective(400px) rotateX(-5deg);
    transform: perspective(400px) rotateX(-5deg)
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px)
  }
}

@keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0
  }

  40% {
    -webkit-transform: perspective(400px) rotateX(-20deg);
    transform: perspective(400px) rotateX(-20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in
  }

  60% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
    opacity: 1
  }

  80% {
    -webkit-transform: perspective(400px) rotateX(-5deg);
    transform: perspective(400px) rotateX(-5deg)
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px)
  }
}

@-webkit-keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0
  }

  40% {
    -webkit-transform: perspective(400px) rotateY(-20deg);
    transform: perspective(400px) rotateY(-20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in
  }

  60% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
    opacity: 1
  }

  80% {
    -webkit-transform: perspective(400px) rotateY(-5deg);
    transform: perspective(400px) rotateY(-5deg)
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px)
  }
}

@keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0
  }

  40% {
    -webkit-transform: perspective(400px) rotateY(-20deg);
    transform: perspective(400px) rotateY(-20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in
  }

  60% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
    opacity: 1
  }

  80% {
    -webkit-transform: perspective(400px) rotateY(-5deg);
    transform: perspective(400px) rotateY(-5deg)
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px)
  }
}

.cm-about5-sec .hs-button, 
.cm-about5-sec .button--primary {
  margin-bottom: 10px;
}

/* ******************************************************************************
*********************************************************************************
Min Width Media Query
*********************************************************************************
****************************************************************************** */
@media (min-width: 768px){
  .cm-approach2-sec h1,
  .cm-approach3-sec h1{
    font-size: 39px;
    line-height: 39px;
    letter-spacing: 0;
  }
  .cm-approach2-sec h1{
    font-size:32px;
  }
  .cm-approach4-sec h1 {
    margin-bottom: 5.82%;
  }
}

@media (min-width: 981px){ 
  .cm-about4-sec .hs-button,
  .cm-about4-sec .button--primary {
    margin-top: 5.82%;
  }
  .cm-about5-sec p br {
    display: none;
  }
  .cm-approach-sec h1,
  .cm-approach8-sec h1{
    margin-bottom: 5.82%;
  }
  .cm-about-sec h2 {
    margin: 2.5% 0;
  }
  .cm-approach3-sec .span5.dnd-column{
    width: 36.7%;
    margin-right: 5.5%;
  }
  .cm-approach3-sec .span7.dnd-column{
    width: 57.8%;
    margin-left:0;
  }
  .cm-contact-sec .form-title {
    margin-bottom: 4.242%;
  }
  .cm-career-sec .dnd-section>.row-fluid {
    width: 100%;
    max-width: 100%;
  }
  .cm-et54-pb .dnd-section {
    padding: 4% 0;
  }
  .et_pb27_row .dnd-section>.row-fluid >  .dnd-column{
    padding:2.5% 0 !important;
  }
  .cm-career3-sec .dnd-section>.row-fluid >  .dnd-column{
    padding-bottom:2.5% !important;
  }
  .cm-et-column .span6.dnd-column {
    width: 47.25%;
    margin-left: 0;
  }
  .cm-et-column .span6.dnd-column:first-child{
    margin-right: 5.5%;
  }
  .heading-border .hs_cos_wrapper_type_header {
    margin-bottom: 5.82%;
    display:block;
  }
  .cm-career3-sec .hs_cos_wrapper_type_header{
    margin-bottom: 4.242%;
  }
  .et-pb-4column .span4.dnd-column{
    width: 29.6667%;
    margin-right: 5.5%;
  }
  .et-pb-8column .span8.dnd-column{
    width: 64.833%;
    margin-left:0;
  }

  .cm-strategies-sec .dnd-section>.row-fluid{
    width: 100%;
    max-width: 95%;
  }
  .cm-strategies3-sec .hs_cos_wrapper_type_header {
    padding-bottom: 2%;
    display: block;
  }
  .cm-strategies3-sec .span4.dnd-column {
    width: 29.6667%;
    margin-right: 5.5%;
    margin-left: 0;
  }
  .cm-strategies3-sec .span4.dnd-column:last-child {
    margin-right: 0;
  }
  .cm-contact-sec .span8.dnd-column {
    width: 64.833%;
    margin-right:0;
  }
  .cm-contact-sec .span4.dnd-column {
    width: 29.6667%;
    margin-left: 5.5%;
  }

}

@media only screen and (min-width: 1350px){
  .cm-et54-pb .dnd-section {
    padding: 54px 0;
  }
  .body-container__website.cm-et54-pb .dnd-section {
    padding-top: 53px;
  }
  .cm-strategies3-sec .hs_cos_wrapper_type_header {
    padding-bottom: 27px;
    display: block;
  }
  .cm-about-sec h2 {
    margin: 27px 0;
  }
}

@media (max-width: 1400px){
  .cm-strategies-sec .span6.dnd-column:first-child {
    padding-left: 5%;
  }
}
@media (max-width: 1262px){
  .cm-strategies3-sec .dnd-section>.row-fluid > .dnd-column > .dnd-row:last-child {
    margin-top: 60px;
    padding-top: 2% !important;
    padding-bottom: 2% !important;
  }
}
@media (max-width: 1024px){
  .cm-home1-sec .dnd-section {
    margin-top: -32px !important;
    padding-top: 97px !important;
  }
}
@media (max-width: 980px){
  .cm-about5-sec .dnd-section {
    background: #fff !important;
  }
  .cm-about2-sec .dnd-section>.row-fluid {
    padding-bottom: 0;
  }
  .cm-about-sec h2 {
    font-size: 26px;
  }
  .cm-about5-sec .dnd-section {
    padding-bottom:0 !important;
  }
  .cm-about5-sec h2 {
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .cm-about5-sec .span6.dnd-column:last-child {
    padding-left: 5%;
    padding-right: 5%;
  }
  .cm-about5-sec h2 {
    margin-top: 30px;
  }
  .cm-about5-sec h6 {
    display: none;
  }
  .cm-about5-sec p {
    padding-right: 0;
    font-size: 18px;
    line-height: 1.8em;
    margin-bottom: 30px;
  }
  .cm-about5-sec .hs-button, .cm-about5-sec .button--primary {
    padding: 10px 1em 10px 3%;
  }
  .cm-strategies3-sec:after {
    width: 150px;
    height: 201px;
    top: -100px;
    background-size: 100%;
  }
  .cm-approach-sec h1 {
    margin-bottom: 30px;
  }
  .cm-approach-sec .span6.dnd-column:last-child {
    margin-bottom: 0;
  }
  .cm-approach2-sec:before {
    width: 210px;
    height: 222px;
    background-size: 100%;
  }
  .cm-approach-sec .row-fluid [class*="span"] {
    min-height: 0;
  }  
  .cm-approach2-sec ol {
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .cm-approach2-sec h1 {
    line-height: 1.3;
  }
  .cm-approach2-sec h1 {
    margin-bottom:29px;
  }
  .cm-approach3-sec .dnd-section>.row-fluid {
    max-width: 90% !important;
    width: 80%;
    padding-top:30px !important;
  }
  .cm-approach3-sec:after {
    width: 189px;
    height: 416px;
    background-size: 100%;
  }
  .cm-approach2-sec:after {
    width: 150px;
    height: 160px;
    bottom: -70px;
    background-size: 100%;
  }
  .cm-approach3-sec .span5.dnd-column {
    width: 100%;
  }
  .cm-approach3-sec .span7.dnd-column {
    margin-left: 0;
  }
  .cm-approach3-sec h1 {
    margin-top: 50px;
    margin-bottom: 10px;
  }
  .cm-contact4-sec .dnd-section>.row-fluid {
    padding: 30px 0 0;
    width: 80%;
  }
  .cm-approach3-sec .span7.dnd-column {
    margin-left: 0;
    width: 100% !important;
  }
  .cm-approach3-sec h1 {
    margin-top: 50px;
  }
  .cm-approach4-sec h1,
  .cm-approach5-sec h1{
    margin-bottom: 30px;
  }
  .cm-approach4-sec .span6.dnd-column {
    width: 100%;
  }
  .cm-approach6-sec .dnd-section>.row-fluid {
    width: 100%;
    padding: 0;
  }
  .cm-contact4-sec h2 {
    line-height: 1.3;
    font-size: 35px;
  }
  .cm-approach7-sec p {
    margin-bottom: 30px;
  }
  .cm-et-column .span6.dnd-column {
    width:100%;
    margin-left: 0;
  }

  .cm-approach8-sec .dnd-section>.row-fluid .dnd-row > .row-fluid {
    display: flex;
    flex-wrap: wrap;
  }
  .cm-approach8-sec .span6.dnd-column:last-child {
    order: 1;
  }
  .cm-approach8-sec .span6.dnd-column:first-child {
    order: 2;
  }
  .cm-approach8-sec .dnd-section>.row-fluid {
    width: 85%;
  }
  .cm-approach8-sec .span6.dnd-column:first-child {
    border-right: 15px solid #ffffff;
    margin-bottom: 0;
  }
  .cm-approach8-sec h1 {
    letter-spacing: 0;
    margin-top: 55px;
    margin-bottom: 30px;
  }
  .et-pb-4column .span4.dnd-column,
  .cm-contact-sec .span8.dnd-column{
    width:100% !important;
    margin-right:0 !important;
  }
  .et-pb-8column .span8.dnd-column,
  .cm-contact-sec .span4.dnd-column{
    width:100% !important;
    margin-left:0 !important;
  }
  .cm-et54-pb .dnd-section {
    padding:50px 0 !important;
  }
  .et_pb27_row .dnd-section>.row-fluid >  .dnd-column,
  .cm-approach5-sec .hs_cos_wrapper_type_section_header{
    padding: 30px 0 !important;
  }
  .cm-career3-sec .dnd-section>.row-fluid >  .dnd-column{
    padding-bottom: 30px!important;
  }
  .cm-et-column .span6.dnd-column:first-child{
    margin-right:0;
  }
  .cm-et-column .span6.dnd-column,
  .body-container__website .hs_cos_wrapper_type_rich_text,
  .body-container__website hr,
  .cm-contact-sec .form-title,
  .cm-contact-sec .span8.dnd-column,
  .cm-contact-sec .hs_cos_wrapper_type_form{
    margin-bottom: 30px;
  }
  .cm-et-column .hs_cos_wrapper_type_header,
  .cm-career3-sec .hs_cos_wrapper_type_linked_image,
  .cm-career3-sec .hs_cos_wrapper_type_header{
    display: block;
    margin-bottom: 30px;
  }
  .cm-career2-sec .hs_cos_wrapper_type_linked_image {
    margin-bottom: 52px;
    display: block;
  }
  .cm-career2-sec.et_pb27_row .dnd-section>.row-fluid>.dnd-column {
    padding-bottom: 0 !important;
  }
  .cm-career3-sec .widget-type-linked_image {
    text-align: center;
  }
  .cm-strategies-sec.cm-et-column .dnd-section>.row-fluid {
    width: 85%;
    max-width: 85%;
    padding-bottom: 0;
  }
  .cm-strategies-sec .span6.dnd-column:first-child {
    padding-left: 0;
  }
  .cm-strategies-sec .dnd-section:after {
    width: 407px;
    height: 343px;
    background-size: 100%;
  }
  .cm-contact-sec .hs_cos_wrapper_type_form {
    width: 100%;
    float: left;
  }
  .cm-strategies-sec .dnd-section:before {
    width: 285px;
    height: 468px;
    bottom: -256px;
    background-size: 100%;
  }
  .cm-contact-sec .dnd-section:before {
    width: 196px;
    height: 284px;
    background-size: 100%;
  }
  .cm-contact2-sec .dnd-section:before {
    top: -98px;
    width: 126px;
    height: 222px;
    background-size: 100%;
  }
  .cm-contact4-sec .hs_cos_wrapper_type_header {
    margin-bottom: 0;
  }
  .cm-career3-sec.et-pb-8column .span8.dnd-column {
    margin-left: -21px !important;
  }
  .cm-approach5-sec .dnd-section {
    padding-bottom: 0 !important;
  }
  .cm-approach6-sec .dnd-section {
    padding: 0 !important;
  }
  .cm-approach7-sec .dnd-section {
    padding-bottom: 66px !important;
  }
  .cm-approach3-sec .dnd-section {
    padding-top: 4.75% !important;
  }
  .cm-strategies3-sec .hs_cos_wrapper_type_header h2 {
    margin-bottom: 30px;
  }
  .cm-strategies3-sec .span4.dnd-column {
    width: 100% !important;
    margin-left: 0 !important;
  }
  .cm-strategies3-sec .dnd-section>.row-fluid>.dnd-column>.dnd-row:last-child {
    padding-top: 30px !important;
    padding-bottom: 0 !important;
  }
  .cm-about2-sec p {
    margin-bottom: 30px;
  }
  .cm-about4-sec .dnd-section>.row-fluid {
    max-width: 100%;
    width: 100%;
    padding-left: 2%;
    padding-right: 0;
    padding-bottom: 0;
  }
  .cm-about4-sec .dnd-section {
    background: none !important;
    padding-bottom: 22px;
  }
  .cm-about4-sec.animated .hs-button, 
  .cm-about4-sec.animated .button--primary {
    margin-top: 30px;
  }
  .cm-about4-sec .hs_cos_wrapper_type_rich_text {
    padding-right: 5%;
    padding-left: 5%;
    display: block;
  }
  .cm-about4-sec.animated .hs-button,
  .cm-about4-sec.animated .button--primary {
    margin-top: 30px;
    margin: 30px 5.025% 0;
    padding: 10px 1em;
  }
  .cm-about4-sec .hs_cos_wrapper_type_linked_image {
    margin-bottom: 19px;
    display: block;
  }
  .cm-about4-sec h2 {
    padding-bottom: 0;
    margin-top: 15.9%;
  }
  .cm-about4-sec p {
    font-size: 18px;
  }
  .cm-about4-sec .row-fluid [class*="span"] {
    min-height: 0;
  }
  .cm-about4-sec .span6.dnd-column {
    margin-bottom: 0;
  }
  .cm-home-sec .dnd-section {
    padding-top: 30px !important;
  }
  .cm-home1-sec .dnd-section {
    background: none !important;
  }
  .home-onetwo-grp {
    background-image: url(https://19513621.fs1.hubspotusercontent-na2.net/hubfs/19513621/raw_assets/public/Chandler_Asset_Management_March2021/images/white-check-bx.png) !important;
  }
}

@media only screen and (max-width: 767px){ 
  .cm-about-sec h2 {
    font-size: 22px;
  }
  .cm-about-sec p {
    font-size: 14px;
  }
  .cm-about-sec h3 {
    font-size: 18px;
  }
  .cm-about2-sec .dnd-section>.row-fluid {
    margin-top: 0;
  }
  .cm-about2-sec {
    font-size: 14px;
  }
  .cm-about2-sec p {
    margin-bottom: 30px;
  }
  .body-about-wrapper .cm-about4-sec .hs-button,
  .body-about-wrapper .cm-about4-sec .button--primary {
    font-size: 16px;
    padding: 10px 1em;
  }
  .cm-about5-sec h2 {
    font-size: 22px;
  }
  .cm-about5-sec p {
    font-size: 14px;
  }
  .cm-about5-sec .hs-button, 
  .cm-about5-sec .button--primary {
    font-size: 16px;
  }
  .cm-contact-sec .form-title {
    padding: 0;
    line-height: 1.3;
    font-size: 22px;
  }
  .body-container__website h1 {
    font-size: 18px;
  }
  .body-container__website .dnd-section>.row-fluid {
    padding-bottom: 0;
  }
  .body-container__website.cm-et54-pb .dnd-section {
    padding: 0 !important;
  }
  .cm-career-sec .hs_cos_wrapper_type_header h3,
  .cm-career2-sec .hs_cos_wrapper_type_header h3,
  .cm-career3-sec .hs_cos_wrapper_type_header h1,
  .cm-contact2-sec .hs_cos_wrapper_type_header h2{
    font-size: 22px;
  }
  .cm-career2-sec h3{
    font-size: 18px;
  }
  .cm-career2-sec p,
  .cm-career3-sec p{
    font-size: 14px;
  }
  .cm-career2-sec .hs-button, 
  .cm-career2-sec .button--primary {
    font-size: 16px;
  }
  .cm-career3-sec .hs_cos_wrapper_type_header {
    margin-bottom: 19px;
  }
  .cm-contact4-sec h2 {
    line-height: 1.3;
    font-size: 22px;
    margin-top: 10px;
  }
  .cm-contact4-sec h4 {
    font-size: 16px;
  }
  .cm-contact4-sec p {
    font-size: 14px;
  }
  .cm-contact4-sec .hs-button, 
  .cm-contact4-sec .button--primary {
    font-size: 16px;
  }
  .body-approach-wrapper h1 {
    font-size: 22px;
    margin-bottom: 0;
    padding-bottom: 10px;
  }
  .cm-approach-sec p {
    line-height: 20px;
    font-size: 14px;
  }
  .cm-approach2-sec ol {
    font-size: 14px;
  }
  .cm-approach2-sec p {
    padding-bottom: 0;
    line-height: 20px;
    font-size: 14px;
  }
  .cm-approach2-sec p:last-child {
    line-height: 28.8px;
  }
  .cm-approach3-sec .span7.dnd-column {
    padding-top: 40px;
  }
  .cm-approach3-sec p,
  .cm-approach3-sec p:last-child{
    font-size: 14px;
  }
  .cm-approach3-sec h1 {
    margin-top: 66px;
    text-transform: uppercase;
    letter-spacing: 0;
    margin-bottom: 10px !important;
  }
  .cm-approach4-sec h1 {
    margin-top: 85px;
  }
  .cm-approach4-sec p {
    font-size: 14px;
  }
  .cm-approach4-sec .row-fluid [class*="span"] {
    min-height: 0;
  }
  .cm-approach4-sec .span6.dnd-column {
    padding-bottom: 15px;
  }
  .body-approach-wrapper .cm-approach5-sec h1 {
    margin-bottom: 30px;
  }
  .cm-approach5-sec p {
    font-size: 16px;
  }
  .cm-approach7-sec p {
    font-size: 14px;
  }
  .cm-approach8-sec .dnd-section>.row-fluid {
    width: 80%;
  }
  .cm-approach8-sec h1 {
    margin-top: 58px;
  }
  .cm-approach8-sec p {
    font-size: 14px;
  }
  .cm-approach8-sec .dnd-section {
    padding-top: 5% !important;
    padding-bottom: 5% !important;
  }
  .cm-strategies-sec.cm-et-column .dnd-section>.row-fluid {
    width: 80%;
    max-width: 80%;
  }
  .cm-strategies-sec h2, 
  .cm-strategies3-sec .hs_cos_wrapper_type_header h2 {
    font-size: 22px;
  }
  .cm-strategies-sec p {
    font-size: 14px;
  }
  .cm-strategies-sec .dnd-section:after {
    width: 291px;
    height: 501px;
    background-size: cover;
  }
  .cm-strategies3-sec .dnd-section>.row-fluid>.dnd-column>.dnd-row:last-child {
    margin-top: 0;
  }
  .cm-strategies3-sec .dnd-section>.row-fluid>.dnd-column>.dnd-row:last-child {
    padding-top: 0!important;
    padding-bottom: 0 !important;
  }
  .cm-contact4-sec .span6.dnd-column:first-child {
    margin-bottom: 20px;
  }
  .cm-about4-sec p {
    font-size: 14px;
  }
  .cm-about4-sec .dnd-section {
    padding-bottom: 50px;
  }
  .cm-about4-sec .hs_cos_wrapper_type_linked_image {
    margin-bottom: 25px;
  }
  .cm-home-sec .dnd-section {
    padding-top: 30px !important;
  }
  .cm-home1-sec .dnd-section>.row-fluid {
    width: 90%;
  }
  .cm-home1-sec h2 {
    font-size: 24px;
    margin-bottom: 6px;
  }
  .cm-home1-sec h2 strong em {
    font-size: 24px;
  }
  .cm-home1-sec p {
    font-size: 18px;
    line-height: 30px;
  }
  .cm-home1-sec .dnd-section {
    padding-top: 11px !important;
  }

  .cm-home4-sec.title-siz h3 {
    font-size: 22px;
  }
  .cm-home4-sec.paragraph-text p {
    font-family: 'Raleway',Helvetica,Arial,Lucida,sans-serif;
    font-size: 14px;
    word-spacing: 0px;
    line-height: 20px;
  }
  .cm-home3-sec .dnd-section>.row-fluid {
    padding-bottom: 0 !important;
  }
  .cm-home4-sec.title-size h3 {
    font-size: 22px;
  }
  .title-size h3 {
    font-size: 22px;
  }
  .paragraph-text p,
  .paragraph-text ul{
    font-family: 'Raleway',Helvetica,Arial,Lucida,sans-serif;
    font-size: 14px;
    word-spacing: 0px;
    line-height: 20px;
  }

  .cm-home4-sec .span6.dnd-column:first-child {
    margin-bottom: 0;
  }
  .cm-home4-sec .dnd-section>.row-fluid {
    margin-bottom: 0;
  }
}

@media (max-width: 640px) {
  .cm-contact-sec .hs-button, 
  .cm-contact-sec .button--primary {
    display: block;
    float: left;
    width: 100%;
    margin: 25px 0 16px 0;
  }
  .cm-home1-sec h2 strong em,
  .cm-home1-sec h2{
    font-size: 18px;
  }
}

@media only screen and (max-width: 550px){
  .body-container__website p a {
    word-break: break-all;
  }
}
@media (max-width: 479px) {
  .cm-home1-sec h2 strong em, 
  .cm-home1-sec h2,
  .cm-home1-sec p{
    font-size: 16px;
  }
  .cm-home2-sec.title-size h3 {
    font-size: 22px;
  }
  .paragraph-text p {
    font-family: 'Raleway',Helvetica,Arial,Lucida,sans-serif;
    font-size: 14px;
    word-spacing: 0px;
    line-height: 20px;
  }
  .cm-home4-sec .dnd-section {
    padding-bottom: 30px !important;
  }
}
@media (max-width: 410px) {

  .cm-home1-sec h2 strong {
    padding: 15px 10px;
  }
}

@media (max-width: 320px) {
  .cm-home1-sec h2 strong em,
  .cm-home1-sec h2{
    font-size: 13px;
  }
}

/* Website */
.body-two-column-wrapper .content-wrapper {
  padding: 0;
  padding-top: 58px;
  position: relative;
}

.custom-left-section .dnd-section, 
.custom-sidebar-section .dnd-section {
  padding: 0;
}

.custom-left-section .dnd-section > .row-fluid, 
.custom-sidebar-section .dnd-section > .row-fluid {
  width: 100%;
  padding: 0;
}

.body-two-column-wrapper .custom-left-section, 
.body-two-column-wrapper .custom-sidebar-section {
  display: block;
  width: 100%;
}

.body-two-column-wrapper .custom-sidebar-section {
  padding-bottom: 28px;
}

.body-two-column-wrapper .custom-left-section .widget-type-header h1 {
  margin-bottom: 20px;
}

.body-two-column-wrapper .custom-left-section .widget-type-rich_text {
  padding: 0 0 0 1em;
  line-height: 26px;
}

.body-two-column-wrapper .custom-left-section form {
  max-width: 100%;
  line-height: 26px;
  padding: 0 0 0 1em;
}

.body-two-column-wrapper .custom-left-section fieldset {
  max-width: none;
  margin-top: 8px;
}

.body-two-column-wrapper .custom-left-section form .hs-form-field > label {
  display: none;
}

.body-two-column-wrapper .custom-left-section fieldset > .hs-form-field {
  width: 100%;
  padding: 0;
}

.body-two-column-wrapper .custom-left-section fieldset .input {
  margin: 0 !important;
}

.body-two-column-wrapper .custom-left-section fieldset.form-columns-2:first-of-type > .hs-form-field {
  padding-top: 2px;
}

.body-two-column-wrapper .custom-left-section fieldset .hs-input {
  margin-top: 16px;
}

.body-two-column-wrapper .custom-left-section fieldset > .hs-form-field.hs-email, 
.body-two-column-wrapper .custom-left-section fieldset > .hs-form-field.hs-phone {
  width: calc(50% - 8px);
}

.body-two-column-wrapper .custom-left-section fieldset:nth-child(5), 
.body-two-column-wrapper .custom-left-section fieldset:nth-child(6), 
.body-two-column-wrapper .custom-left-section fieldset:nth-child(7) {
  margin-top: 0;
}

.body-two-column-wrapper .custom-left-section fieldset select.hs-input {
  padding: 2px 0 2px 3px;
  min-height: 45px;
  border: 1px solid #bbb;
  text-indent: 2px;
  line-height: 1.5em;
  margin-bottom: 5px;
  margin-left: 2px;
  color: #4e4e4e;
  margin-top: 14px;
}

.body-two-column-wrapper .custom-left-section fieldset:nth-child(8) {
  margin-top: 4px;
}

.body-two-column-wrapper .custom-left-section fieldset:nth-child(8) select.hs-input {
  margin-left: 1px;
}

.body-two-column-wrapper .custom-left-section fieldset:nth-child(8) .hs-form-field {
  width: calc(50% - 8px);
}

.body-two-column-wrapper .custom-left-section fieldset:nth-child(9) {
  margin-top: 0;
}

.body-two-column-wrapper .custom-left-section fieldset textarea.hs-input {
  height: 120px;
  width: 100%;
  margin-top: 13px;
  resize: none;
}

.body-two-column-wrapper .custom-left-section fieldset .hs-richtext span {
  font-size: .813em;
  padding: 24px 16px 0 0;
  line-height: 26px;
  display: block;
}

.body-two-column-wrapper .custom-left-section fieldset .hs-richtext {
  margin: 0;
  line-height: 26px;
}

.body-two-column-wrapper .custom-left-section fieldset.form-columns-0 {
  margin: 0;
}

.body-two-column-wrapper .custom-left-section form .hs-submit {
  margin-left: -14px;
}

.body-two-column-wrapper .custom-left-section form .hs-submit .actions {
  padding: 23px 0 0;
  margin: 16px 0 16px 0;
}

.custom-sidebar-section .dnd-section .dnd-row {
  margin-bottom: 30px;
  width: 100%;
  float: none;
}

.custom-sidebar-section form {
  max-width: 100%;
  position: relative;
}

.custom-sidebar-section form .hs-search-field__input {
  font-family: 'Raleway',Helvetica,Arial,Lucida,sans-serif;
  color: #999!important;
  padding: 15px!important;
  background: #fff;
  width: 100%;
  border-radius: 3px;
  height: 40px!important;
  margin: 0;
  font-size: 14px;
  line-height: normal!important;
  border: 1px solid #ddd;
}

.custom-sidebar-section form  button {
  font-family: 'Raleway',Helvetica,Arial,Lucida,sans-serif;
  cursor: pointer;
  background-color: #ddd;
  width: 70px;
  -webkit-border-top-right-radius: 3px;
  -webkit-border-bottom-right-radius: 3px;
  -moz-border-radius-topright: 3px;
  -moz-border-radius-bottomright: 3px;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  position: absolute;
  right: 0;
  top: 0;
  padding: .7em;
  height: 40px!important;
  margin: 0;
  font-size: 14px;
  line-height: normal!important;
  border: 1px solid #ddd;
  color: #666;
  outline: none;
}

.custom-sidebar-section form button svg {
  display: none;
}

.custom-sidebar-section form button:before {
  content: 'Search';
}

.custom-sidebar-section h3 {
  font-size: 18px;
  margin-bottom:0;
}

.custom-sidebar-section ul {
  margin: 0;
  padding: 0;
  list-style: none;
  line-height: 1.7em;
}

.custom-sidebar-section ul > li {
  margin-bottom: .5em;
  line-height: 1.7em;
}

.custom-sidebar-section ul > li > a {
  text-decoration: none;
  color: #666;
}

.custom-sidebar-section ul > li > a:hover {
  color: #82c0c7;
}

.custom-sidebar-section ul > li > a > .filter-link-count {
  display: none;
}

.custom-sidebar-section ul > li:last-child {
  margin: 0;
}

.custom-sidebar-section form .hs-search-field__input:focus {
  outline: none;
}

.hs-search-field--open .hs-search-field__suggestions {
  position: absolute;
  background: #fff;
  padding: 5px;
  margin-top: 5px;
}

.hs-search-field__suggestions li > a {
  background: none !important;
}

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

/* ==================================== Team Page ============================ */
.menu-fixed .body-team-wrapper {
  padding-top: 20px;
}
.cm-team-sec-one .dnd-section > .row-fluid {
  padding: 0;
  max-width: 100%;
  width: 100%;
}

.cm-team-sec-one .dnd-section .hs-menu-wrapper {
  padding-top: 10px;
  padding-bottom: 10px;
  width: 100%;
  max-width: 2560px;
  background: #fff;
}
.menu-fixed .cm-team-sec-one .dnd-section .hs-menu-wrapper {
  position: fixed;
  top: 88px;
  z-index: 100;
}
.cm-team-sec-one .dnd-section .hs-menu-wrapper > ul {
  margin: 0;
  padding: 0 0 23px 1em;
  line-height: 26px;
  text-align: center;
  padding-bottom: 0;
}

.cm-team-sec-one .dnd-section .hs-menu-wrapper > ul li {
  display: inline-block;
  padding: 0 10px;
}

.cm-team-sec-two .dnd-section {
  padding-top: 0px;
}

.cm-team-sec-two .dnd-section {
  padding-top: 0;
}

.cm-team-sec-three.pg-zero .dnd-section > .row-fluid {
  padding-top: 60px;
}

.cm-team-sec-three .dnd-section {
  padding: 0;
}

.cm-team-sec-four .dnd-section {
  padding-top: 155px;
  padding-bottom: 84px;
}

.cm-team-sec-six .dnd-section {
  padding-top: 84px;
}

.cm-team-sec-seven .dnd-section {
  padding-top: 102px;
  padding-bottom: 70px;
}

.cm-team-sec-one .dnd-section {
  padding-bottom: 54px;
  min-height: 46px;
}
.cm-team-sec-two,
.cm-team-sec-three{
  position:relative;
}
.cm-team-sec-two:before, 
.cm-team-sec-three:before {
  content: "";
  background-position: left !important;
  background-size: contain !important;
  background-repeat: no-repeat !important;
  position: absolute;
  left: 0px;
  bottom: 0px;
  display: block;
  width: 210px;
  height: 400px;
}
.cm-team-sec-two:before {
  background: url(https://19513621.fs1.hubspotusercontent-na2.net/hubfs/19513621/raw_assets/public/Chandler_Asset_Management_March2021/images/team-top-left.png);
}
.cm-team-sec-three:before{
  right:0;
  left: auto;
  background: url(https://19513621.fs1.hubspotusercontent-na2.net/hubfs/19513621/raw_assets/public/Chandler_Asset_Management_March2021/images/team-top-left.png);
}

.custom-error-page-wrapper .content-wrapper {
  padding: 0;
  padding-top: 58px;
  position: relative;
}

.custom-error-page-wrapper .not-found-title {
  margin: 0;
}

.custom-error-page-wrapper .custom-sidebar-section > div {
  margin-bottom: 30px;
  width: 100%;
  float: none;
}

.custom-error-page-wrapper .custom-left-section .entry {
  display: block;
  position: relative;
  margin-bottom: 60px;
}

.custom-error-page-wrapper .custom-sidebar-section { 
  padding-bottom: 28px;   
}
.hs_recaptcha.hs-recaptcha.field.hs-form-field {
  overflow-x: hidden;
  padding: 10px 0;
}

/* ====================================== Media queries ============================= */
@media (min-width: 641px) {
  .body-two-column-wrapper .custom-left-section form,
  .body-two-column-wrapper .custom-left-section .widget-type-rich_text {
    padding-right: 16px;
  }

  .body-two-column-wrapper .custom-left-section fieldset.form-columns-2 > .hs-form-field  {
    display: -moz-inline-stack;
    display: inline-block;
    vertical-align: top;
    padding-right: 16px;
    margin-right: -4px;
    width: 50%;
    margin-left: 0!important;
  }

  .body-two-column-wrapper .custom-left-section fieldset.form-columns-2 {
    width: calc(100% + 15px);
  }

  .body-two-column-wrapper .custom-left-section fieldset.form-columns-2 > .hs-form-field:first-child {
    margin-right: -1px;
  }

}

@media (min-width: 981px) {
  .body-two-column-wrapper .custom-left-section,
  .custom-error-page-wrapper .custom-left-section {
    width: 79.125%;
    padding-bottom: 23px;
    float: left;
    padding-right: 5.5%;
  }
  .body-two-column-wrapper .custom-sidebar-section,
  .custom-error-page-wrapper .custom-sidebar-section { 
    float: left;
    width: 20.875%;
    padding-left: 30px;
  }

  .body-two-column-wrapper .content-wrapper:before,
  .custom-error-page-wrapper .content-wrapper:before {
    content: "";
    position: absolute;
    top: 0;
    height: 100%;
    width: 1px;
    background-color: #e2e2e2;
    right: 20.875%;
  }
}

/* ==================== */
@media (max-width: 980px) {
  .menu-fixed .cm-team-sec-one .dnd-section .hs-menu-wrapper {
    top: 0;
  }

  .custom-error-page-wrapper .custom-left-section .entry {
    margin-bottom: 42px;
  }
  .hs-search-field--open .hs-search-field__suggestions {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .custom-sidebar-section ul > li:last-child {
    margin: 0;
  }

  .body-two-column-wrapper .custom-left-section fieldset.form-columns-2:first-of-type {
    margin-top: 12px;
  }

  .body-two-column-wrapper .custom-left-section fieldset>.hs-form-field {
    width: 100% !important;
    margin-bottom: 8px;
  }

  .body-two-column-wrapper .custom-left-section fieldset {
    margin-top: 0;
  }

  .body-two-column-wrapper .custom-left-section fieldset>.hs-form-field.hs-phone {
    margin-bottom: 12px;
  }

  .body-two-column-wrapper .custom-left-section fieldset .hs-access_information select.hs-input {
    margin-top: 6px;
  }

  .body-two-column-wrapper .custom-left-section fieldset textarea.hs-input {
    margin-top: 5px;
    height: 120px !important;
  }

  .body-two-column-wrapper .custom-left-section fieldset .hs-richtext span {
    padding: 16px 16px 0 0;
  }

  .body-two-column-wrapper .custom-left-section form .hs-submit .actions .hs-button {
    width: 100%;
    margin: 16px 0 0 0;
  }
}

/* ==================== */
@media (max-width: 1349px) {
  .cm-team-sec-three.pg-zero .dnd-section > .row-fluid {
    padding-top: 59px;
  }

  .cm-team-sec-four .dnd-section {
    padding-top: 196px;
    padding-bottom: 86px;
  }

  .cm-team-sec-six .dnd-section {
    padding-top: 82px;
  }

  .cm-team-sec-seven .dnd-section {
    padding-top: 99px;
    padding-bottom: 69px;
  }
}



@media (max-width: 979px) {
  .cm-team-sec-three.pg-zero .dnd-section > .row-fluid {
    padding-top: 66px;
  }

  .cm-team-sec-four .dnd-section {
    padding-top: 166px;
    padding-bottom: 86px;
  }

  .cm-team-sec-six .dnd-section {
    padding-top: 116px;
  }
  .cm-team-sec-seven .dnd-section {
    padding-top: 80px;
    padding-bottom: 77px;
  }

  .cm-team-sec-one .dnd-section {
    padding-bottom: 50px;
  }
}

@media (max-width: 767px) {
  .cm-team-sec-three.pg-zero .dnd-section > .row-fluid {
    padding-top: 51px;
  }

  .cm-team-sec-four .dnd-section {
    padding-top: 151px;
    padding-bottom: 71px;
  }

  .cm-team-sec-six .dnd-section {
    padding-top: 71px;
  }

  .cm-team-sec-seven .dnd-section {
    padding-top: 51px;
    padding-bottom: 91px;
  }
}

@media (max-width: 479px) {
  .cm-team-sec-three.pg-zero .dnd-section > .row-fluid {
    padding-top: 81px;
  }
  .cm-team-sec-four .dnd-section {
    padding-top: 181px;
    padding-bottom: 71px;
  }
  .cm-team-sec-six .dnd-section {
    padding-top: 101px;
  }
  .cm-home4-sec .dnd-section>.row-fluid {
    padding-top: 0;
  }
}


@media (max-width: 370px){
  .cm-home1-sec h2{
  font-size: 12px;
  }
}
.min-height{
  min-height:88px;
}
.header img {
  max-width: 100%;
  height: auto;
}
.custom-header {
  display: block;
  z-index: 99999;
  width: 100%;
  line-height: 23px;
  font-weight: 500;
  font-family: 'Raleway',Helvetica,Arial,Lucida,sans-serif;
  box-shadow: 0 1px 0 rgb(0 0 0 / 10%);
  -moz-box-shadow: 0 1px 0 rgba(0,0,0,.1);
  -webkit-box-shadow: 0 1px 0 rgb(0 0 0 / 10%);
  -webkit-transition: background-color .4s,color .4s,transform .4s,opacity .4s ease-in-out;
  -webkit-transition: background-color .4s,color .4s,opacity .4s ease-in-out,-webkit-transform .4s;
  transition: background-color .4s,color .4s,opacity .4s ease-in-out,-webkit-transform .4s;
  transition: background-color .4s,color .4s,transform .4s,opacity .4s ease-in-out;
  transition: background-color .4s,color .4s,transform .4s,opacity .4s ease-in-out,-webkit-transform .4s;
  position: fixed;
  top: 0px;
  min-height: 88px;
}
.custom-header .page-center {
  text-align: left;
  position: relative;
  z-index: 99;
  padding: 0;
}
.header-lp .page-center {
  max-width: 1200px !important;
}
.header-lp .min-height {
  display: flex;
  align-items: center;
}
@media screen and (max-width:767px) {
  .header-lp {
    padding: 0 20px;
  }
}
.custom-logo {
  position: absolute;
  height: 100%;
  width: 100%;
  -webkit-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
  padding-left: 4px;
}
.custom-logo .hs_cos_wrapper_type_logo,
.custom-logo .widget-type-logo{
  display: block;
  height: 100%;
}
.custom-logo .hs_cos_wrapper_type_logo:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  width: 0;
}
.custom-logo img {
  -webkit-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
  margin-bottom: 0;
  max-height: 54%;
  display: inline-block;
  float: none;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  width: auto !important;
}
.custom-menu-primary {
  font-weight: 600;
  float: right;
  font-family: 'Raleway',Helvetica,Arial,Lucida,sans-serif;
  padding: 20px 0;
  -webkit-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}
.custom-menu-primary .navigation-primary {
  display: block;
  line-height: 0;
  float: left;
}
.custom-menu-primary .navigation-primary > ul {
  line-height: 0;
  float: left;
}
.custom-menu-primary .navigation-primary > ul > li {
  position: relative;
  line-height: 1em;
  word-wrap: break-word;
  display: inline-block;
  font-size: 14px;
  padding-right: 22px;
}
.custom-menu-primary .navigation-primary > ul > li > a {
  display: block;
  position: relative;
  font-size: 16px;
  font-weight: bold;
  font-style: normal;
  text-transform: uppercase;
  text-decoration: none;
  -webkit-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}
.custom-menu-primary .navigation-primary > ul > li > a:hover {
  -webkit-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}
.custom-menu-primary .navigation-primary > ul > li.has-submenu > a:after {
  font-family: ETmodules;
  content: "3";
  font-size: 16px;
  position: absolute;
  right: 0;
  top: 0;
  font-weight: 800;
}
.custom-menu-primary .navigation-primary > ul ul {
  position: absolute;
  padding: 20px 0;
  z-index: 9999;
  width: 240px;
  visibility: hidden;
  opacity: 0;
  border-top: 3px solid #164330;
  box-shadow: 0 2px 5px rgb(0 0 0 / 10%);
  -moz-box-shadow: 0 2px 5px rgba(0,0,0,.1);
  -webkit-box-shadow: 0 2px 5px rgb(0 0 0 / 10%);
  -webkit-transform: translateZ(0);
  text-align: left;
}
.custom-menu-primary .navigation-primary > ul > li.has-submenu > a {
  padding-right: 20px;
}
.custom-menu-primary .navigation-primary > ul ul li {
  position: relative;
  line-height: 2em;
  display: inline-block;
  font-size: 14px;
  padding: 0 20px;
  margin: 0;
}
.custom-menu-primary .navigation-primary > ul ul li a {
  display: block;
  position: relative;
  font-size: 16px;
  font-weight: bold;
  font-style: normal;
  text-transform: uppercase;
  padding: 6px 20px;
  width: 200px;
  text-decoration: none;
  -webkit-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}


.custom-menu-primary .navigation-primary > ul > li.header-phone > a{
  padding: 16px 15px 16px 30px;
  transform: skew(-15deg);
}
.custom-menu-primary .navigation-primary > ul > li.header-phone > a:before {
  content: "";
  background: url(https://19513621.fs1.hubspotusercontent-na2.net/hubfs/19513621/raw_assets/public/Chandler_Asset_Management_March2021/images/phone-head.png);
  background-repeat: no-repeat;
  background-position: 1% 2px;
  background-size: auto;
  display: block;
  position: absolute;
  left: 5px;
  width: 30px;
  top: 7px;
  height: 30px;
  -webkit-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}

.custom-menu-primary .navigation-primary>ul>li.header-phone>a:hover:before {
  opacity: .7;
  -webkit-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}
.custom-menu-primary .navigation-primary > ul > li.header-phone, 
.custom-menu-primary .navigation-primary > ul > li.header-cta {
  border: 1px solid #cccccc;
  transform: skew(15deg);
  padding: 0px!important;
  -webkit-transform: skew(15deg);
}
.custom-menu-primary .navigation-primary > ul > li.header-phone {
  margin-right: 5px;
}

.custom-menu-primary .navigation-primary > ul > li.header-cta a {
  padding: 16px 20px;
  transform: skew(-15deg);
  padding-bottom: 16px;
  font-weight: bold;
  font-style: normal;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 16px;
  display:block;
  -webkit-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}
.custom-menu-primary .navigation-primary>ul ul li.header-phone, 
.custom-menu-primary .navigation-primary>ul ul li.header-cta {
  display: none;
}



/* ======================================== Media queries ================================== */

@media (min-width: 981px) {
  .scroll-header .custom-header{
    box-shadow: 0 0 7px rgba(0,0,0,.1);
    -moz-box-shadow: 0 0 7px rgba(0,0,0,.1);
    -webkit-box-shadow: 0 0 7px rgba(0,0,0,.1);
  }
  .custom-header .page-center {
    width: 100%;
    max-width: 100%;
    padding-right: 30px;
    padding-left: 30px;
  }
  .custom-logo img {
    max-height: 40%;
  }
  .custom-menu-primary .navigation-primary > ul li:hover > ul {
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
  }
}

@media (max-width: 1280px) {
  .custom-menu-primary .navigation-primary>ul>li.header-cta,
  .custom-menu-primary .navigation-primary>ul>li.header-phone {
    font-size: 12px;
  }
  .min-height{
    min-height: 86px;
  }
}

@media (min-width: 1263px) {
  .custom-menu-primary .navigation-primary > ul li:hover > ul {
    opacity: 1;
    visibility: visible;
  }
  .custom-menu-primary.mobile {
    display: none;
  }
}

@media (max-width: 1366px){
  .custom-menu-primary .navigation-primary>ul>li {
    padding-right: 15px;
  }
}

@media (min-width:1401px) and (max-width: 1500px){
  .custom-menu-primary .navigation-primary>ul>li {
    padding-right: 10px;
  }
  .custom-menu-primary .navigation-primary>ul>li.has-submenu>a {
    padding-right: 14px;
  }
}

@media (max-width: 1400px){
  .custom-menu-primary .navigation-primary>ul>li {
    padding-right: 12px;
  }
  .custom-menu-primary .navigation-primary>ul>li>a,
  .custom-menu-primary .navigation-primary>ul>li.header-cta a{
    font-size: 13px;
  }
}
@media (max-width: 1300px) and (min-width: 1263px){
  .custom-menu-primary .navigation-primary>ul>li {
    padding-right: 11px;
  }
}

@media (max-width: 1262px){
  .custom-menu-primary.desktop{
    display: none;
  }
  .min-height{
    min-height: 96px;   
  }
  .custom-logo {
    padding-left: 34px;
    position: absolute;
    height: 100%;
    width: 100%;
  }
  .mobile-trigger {
    display: block;
    line-height: 0;
    padding-bottom: 24px;
    float: right;
    position: absolute;
    top: 34px;
    right: 30px;
    margin-right: 10px;
    z-index: 999;
  }
  .mobile-trigger:before {
    content: "\61";
    font-size: 32px;
    position: relative;
    left: 0;
    top: 0;
    cursor: pointer;
    font-family: ETmodules;
    speak: none;
    font-style: normal;
    font-weight: 400;
    -webkit-font-feature-settings: normal;
    font-feature-settings: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    direction: ltr;
    color: #2ea3f2;
  }
  .mobile-open .mobile-trigger:before {
    content: "\4d";
    color: #303030;
  }
  .custom-menu-primary.mobile{
    display: block;
    min-height: 100vh;
    top: 0;
    border-top: 0;
    z-index: 99;
    transform: rotateY(90deg);
    -webkit-transform: rotateY(90deg);
    transform-origin: right;
    -webkit-transform-origin: right;
    background: #f1f1f1;
    transition: .8s ease-in-out;
    max-height: 100vh;
    overflow-y: scroll;
    position: fixed;
    box-shadow: 0 2px 5px rgb(0 0 0 / 10%);
    -moz-box-shadow: 0 2px 5px rgba(0,0,0,.1);
    -webkit-box-shadow: 0 2px 5px rgb(0 0 0 / 10%);
    visibility: visible;
    opacity: 1;
    left: 0;
    padding: 5%;
    padding-top: 80px;
    width: 300px;
    margin-left: calc(100% - 300px);
  }
  .mobile-open .custom-menu-primary.mobile {
    transform: rotateY(0deg);
    -webkit-transform: rotateY(0deg);
  }
  .mobile-open .mobile-trigger {
    z-index: 100;
    top: 34px;
  }
  .custom-menu-primary .navigation-primary>ul>li {
    padding-right: 0;
    display: block;
  }
  .custom-menu-primary .navigation-primary>ul>li>a {
    padding: 10px 5%;
    display: block;
    border-bottom: 1px solid rgba(0,0,0,.03);
    font-size: 14px;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    line-height: 23px;
    text-transform: none;
    font-weight: 600;
    color: #303030;
  }
  .custom-menu-primary .navigation-primary>ul>li.has-submenu>a:after{
    display:none;
  }
  .custom-menu-primary .navigation-primary>ul ul {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    position: static !important;
    box-shadow: none;
    border: 0;
    background: transparent !important;
    padding: 0 0 0 10px;
    width: 100%;
  }
  .custom-menu-primary .navigation-primary>ul ul li {
    padding: 0 0 0 5%;
    margin: 0;
    display: block;
  }
  .custom-menu-primary .navigation-primary>ul ul li a {
    padding: 10px 5%;
    display: block;
    border-bottom: 1px solid rgba(0,0,0,.03);
    font-size: 14px;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    font-weight: 600;
    text-transform: none;
    line-height: 23px;
    color: #303030;
    width: 100% !important;
    white-space: normal !important;
    background: transparent !important;
  }
  .custom-menu-primary .navigation-primary>ul>li.has-submenu>a {
    font-weight: 700;
    background-color: rgba(0,0,0,.03);
  }
  .custom-menu-primary .navigation-primary>ul>li.header-phone, 
  .custom-menu-primary .navigation-primary>ul>li.header-cta {
    transform: skew(0deg);
    -webkit-transform: skew(0deg);
  }
  .custom-menu-primary .navigation-primary>ul>li.header-phone>a{
    color: #204a36;
    padding: 16px 20px;
    transform: skew(0deg);
  }
  .custom-menu-primary .navigation-primary>ul>li.header-phone>a:before{
    display:none;
  }
  .custom-menu-primary .navigation-primary>ul>li.header-cta{
    border: 1px solid #d36236;
    background-color: #d36236;
    float: left;
    width: 100%;
  }
  .custom-menu-primary .navigation-primary>ul>li.header-cta a {
    font-size: 14px;
    transform: skew(0);
    border-bottom: 1px solid rgba(0,0,0,.03);
    color: #fff;
    padding: 16px 20px;
    text-decoration: none;
    display: block;
    line-height: 23px;
    text-transform: none;
    font-weight: 600;
  }
  .custom-menu-primary .navigation-primary>ul>li.header-cta {
    margin-top: 15px;
  }
  .custom-menu-primary .navigation-primary,
  .custom-menu-primary .hs_cos_wrapper,
  .custom-menu-primary .navigation-primary>ul{
    float: left;
    width: 100%;
  }
  .custom-menu-primary .navigation-primary>ul>li>a:hover,
  .custom-menu-primary .navigation-primary>ul ul li a:hover{
    background-color: rgba(0,0,0,.03) !important;
    opacity: .7;
  }
  .custom-menu-primary .navigation-primary>ul>li.header-cta a:hover {
    background-color: rgba(0,0,0,.03);
    opacity: .7;
  }
}

@media (max-width: 1199px){ 
  .custom-logo img {
    width: 350px !important;
  }
}
@media (max-width: 980px){
  .custom-header {
    position: static;
  }
  .custom-header .page-center {
    width: 100%;
    padding: 0;
  }
  .mobile-trigger {
    right: 0;
  }
  .custom-logo img {
    max-width: 50%;
  }
}
@media (max-width: 767px){
  .custom-logo {
    padding-left: 30px;
  }
  .custom-logo img {
    position: relative;
    left: 4px;
  }
  .mobile-trigger {
    right: 0;
  }
  .mobile-trigger:before {
    color: #204A36;
  }
}

@media (max-width: 640px){
  .custom-logo img {
    max-width: 70% !important;
  }
}
@media (max-width: 340px){
  .custom-menu-primary {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your
footer looks when it comes to spacing and other general styles.
*********************************************************************************
****************************************************************************** */

.footer {
  background-color: transparent;
  background-position: bottom right;
  background-image: url(https://19513621.fs1.hubspotusercontent-na2.net/hubfs/19513621/raw_assets/public/Chandler_Asset_Management_March2021/images/footer-2-1.png);
  background-size: cover;
  background-repeat: no-repeat;
}
.footer.lp {
  background-color: #ffffff !important;
  background-image: unset !important;
}
.footer.lp-bg {
  background-image: url('https://19513621.fs1.hubspotusercontent-na2.net/hubfs/19513621/images/backgrounds/lbj-footer-form-bg.png');
  background-position: bottom right;
  background-size: cover;
  background-repeat: no-repeat;
  padding-bottom: 80px !important;
}
.footer.lp-bg .footer__container {
  border-bottom: 2px solid #000;
  max-width: unset;
  width: 100%;
  padding-bottom: 20px;
}
.footer.lp .copyright .copyright-text p,
.footer.lp .copyright .copyright-text p em,
.footer.lp .copyright .copyright-text p strong {
  font-weight: 400 !important;
  font-size: 13px;
}
.footer.lp-bg .copyright {
  padding-bottom: 0 !important;
}
.footer.footer-et-pb-section {
  padding-top: 7px;
  padding-bottom: 8px;
}
.footer__container {
  margin: 0 auto;
}

/************** Logo Section **************/
.footer-logo .widget-type-logo,
.footer-logo .widget-type-rich_text {
  display: inline-block;
  vertical-align: middle;
}
.footer-logo-wrp.footer-et-pb-row {
  padding-top: 0 !important;
}
.footer-logo {
  padding-top: 3%;
  padding-bottom: 3%;
  text-align: center;
  margin-bottom: 22px;
  border-bottom: 1px solid rgba(255,255,255,0.25);
}
.footer-logo-inner {
  padding-bottom: 10px;
}
.footer-logo img {
  vertical-align: middle;
}
.footer-logo h3 {
  font-family: 'Raleway',Helvetica,Arial,Lucida,sans-serif;
  padding-bottom: 0;
  line-height: 1em;
  font-weight: 500;
  font-size: 24px;
  display: inline-block;
  margin-bottom:0;
}
.footer-logo h3 em {
  font-style: normal;
  font-weight: 800;
}

/************** Middle Section **************/

.footer-middle-grp h4 {
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1px;
  padding-bottom: 16px;
  margin-bottom: 3px;
}
.footer-middle-grp p {
  text-align: left;
  font-family: 'Raleway',Helvetica,Arial,Lucida,sans-serif;
}
.footer-middle-grp p a {
  color: #cc5c30;
}

.email-info p {
  padding-bottom:2px;
}
.footer-middle-right-link .hs-menu-wrapper > ul {
  display: block;
  margin-top: 13.174%;
}
.footer-middle-right-link .hs-menu-wrapper > ul > li {
  line-height: normal;
}
.footer-middle-right-link .hs-menu-wrapper > ul > li > a {
  padding: 0;
  margin: 0 0 7px;
  display: inline-block;
}

/************** Copyright Section **************/
.copyright {
  border-top: 1px solid rgba(255,255,255,0.25);
  padding-top: 22px;
  padding-bottom: 85px;
}
.footer.lp .copyright {
  border-top: none !important;
}
.footer.lp-bg .copyright {
  border-top: none !important;
  text-align: center;
}
.footer.lp-bg .copyright p,
.footer.lp-bg .copyright p strong,
.footer.lp-bg .copyright-text p em {
  font-size: 13px;
  font-weight: 400 !important;
}
.footer.lp .copyright .copyright-text p {
  text-align: center;
  color: #000000;
}
.copyright-text p {
  padding-bottom: 3px;
}
.copyright-text p em {
  font-weight: 800;
  font-style: normal;
}
.footer-menu .hs-menu-wrapper ul {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}
.footer-menu .hs-menu-wrapper ul li {
  line-height: normal;
}
.footer-menu .hs-menu-wrapper ul li:not(:last-child):after {
  content: " | ";
  display: inline-block;
  vertical-align: top;
  margin: 0 3px 0 4px;
}
.footer-menu .hs-menu-wrapper ul li a {
  padding: 0;
  margin: 0;
  text-decoration: none;
  display: inline-block;
}

.back-to-top {
  font-family: ETmodules;
  content: attr(data-icon);
  speak: none;
  font-weight: 400;
  -webkit-font-feature-settings: normal;
  font-feature-settings: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  direction: ltr;
  cursor: pointer;
  font-size: 30px;
  padding: 5px;
  text-align: center;
  background: rgba(0,0,0,.4);
  text-decoration: none;
  position: fixed;
  z-index: 99999;
  color: white;
  right: 22px;
  bottom: 100px!important;
  border-radius: 5px;
  background-color: #224a37;
  opacity: 0;
  -webkit-animation: fadeOutRight 1s cubic-bezier(.77,0,.175,1) 1;
  animation: fadeOutRight 1s cubic-bezier(.77,0,.175,1) 1;
}
.back-to-top:after {
  content: "!";
}
.back-to-top.back-anim{
  opacity: 1;
  -webkit-animation: fadeInRight 1s cubic-bezier(.77,0,.175,1) 1;
  animation: fadeInRight 1s cubic-bezier(.77,0,.175,1) 1;
}



@keyframes fadeOutRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0)
  }

  to {
    opacity: 0;
    -webkit-transform: translateX(100%);
    transform: translateX(100%)
  }
}


@media (min-width: 981px){
  .footer-et-pb-section {
    padding: 4% 0;
  }
  .footer-et-pb-row{
    padding:2.5% 0;
  }

  .footer-middle-right-inner.footer-et-pb-row {
    padding: 11.98% 0;
  }
  .footer-middle-left{
    width: 73.625%;
    margin-right: 5.5%;
    float: left;
  }
  .footer-middle-right{
    width: 20.875%;
    float: left;
  }
  .footer-middle-right-link .hs-menu-wrapper > ul {
    margin-top: 13.174%;
  }
  .footer.lp .footer-middle-grp .footer-middle-right {
    float: right;
  }
}

@media (min-width: 992px){
  .post-content a:after {
    background: url(https://19513621.fs1.hubspotusercontent-na2.net/hubfs/19513621/raw_assets/public/Chandler_Asset_Management_March2021/images/arrow.png);
  }
}
@media only screen and (min-width: 1350px){
  .footer-et-pb-section {
    padding: 54px 0;
  }
  .footer-et-pb-row {
    padding: 27px 0;
  }
}



@media (min-width: 992px) and (max-width: 1024px){
  .copyright {
    font-size: 11px;
    line-height: 23.8px;
    padding-bottom: 83px;
  }
  .copyright-text p {
    padding-bottom: 5px;
  }
  .footer-menu .hs-menu-wrapper ul li:not(:last-child):after {
    margin: 0 3px 0 3px;
  }
}

@media (max-width: 1070px) and (min-width: 1024px){
  .email-info p {
    font-size: 13px;
    line-height: 23.8px;
  }    
}

@media (max-width: 1023px) and (min-width: 981px){
  .email-info p {
    font-size: 12px;
    line-height: 23.8px;
  }
}


@media (max-width: 980px){
  .footer.lp-bg {
    background-position: top;
    padding-bottom: 20px !important;
  }
  .footer-logo {
    margin-bottom: 52px;
  }
  .footer-middle-grp {
    padding-bottom: 27px;
    border-bottom: 1px solid rgba(255,255,255,0.25);
    margin-bottom: 29px;
  } 

  .footer-middle-left {
    margin-bottom: 30px;
  }
  .footer-middle-right-link .hs-menu-wrapper>ul {
    margin-top: 30px;
  }
  .footer-middle-right h4 {
    display: none;
  }
  .footer.lp .copyright {
   border-top: 0 !important;
  }
  .copyright {
    border-top: 2px solid #fff !important;
    padding-top: 7px;
    text-align: center;
    padding-bottom: 4px;
  }
  .footer-menu .hs-menu-wrapper ul {
    justify-content: center;
  }
  .footer-et-pb-section {
    background-position: bottom left;
  }
}

@media (max-width: 767px){

  .footer-middle-grp {
    padding-bottom: 0;
    border-bottom: 0;
    margin-bottom: 0;
  }
  .footer-middle-right {
    margin-bottom: 27px;
  }  
  .footer-middle-right h4 {
    padding-top: 4%;
    padding-bottom: 16px;
    margin-bottom: 3px;
    display:block;
  }
  .post-content a:after {
    background: url(https://19513621.fs1.hubspotusercontent-na2.net/hubfs/19513621/raw_assets/public/Chandler_Asset_Management_March2021/images/arrow.png);
  }
  .footer.lp .copyright {
    display: block;
    padding: 20px;
  }
  .copyright {
    display: none;
  }
  .footer-logo-inner {
    padding-bottom: 7px;
  }
}
/* ******************************************************************************
*********************************************************************************
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: transparent;
  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;
}

@media screen and (min-width: 768px) {
  .blog-header__form {
    width: 500px;
    margin: 0 auto;
  }
}
.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: #666666;
}
.blog-header__author-social-links svg {
  fill: #fff;
  height: 15px;
  width: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.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 {
  background-color: transparent;
  border: 2px solid #CC5C30;
  color: #CC5C30;
}
.blog-comments .hs-button:hover {
  background-color: #CC5C30;
  color: #fff;
}
.blog-comments .comment-reply-to {
  border: 0 none;
}
.blog-comments .comment-reply-to:hover {
  background-color: transparent;
  text-decoration: underline;
  color: #CC5C30;
}
/* 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;
}
/* ================================================================================================================ */
.custom-blog-content-wrapper {
  width: 100%;
  display: block;
}

.custom-blog-content-wrapper .content-wrapper {
  padding: 0;
  padding-top: 58px;
  position: relative;
}

.custom-blog-content-wrapper .blog-content-area {
  width: 100%;
  display: block;
}

.custom-blog-content-wrapper {
  width: 100%;
  display: block;
}

.custom-blog-content-wrapper .content-wrapper {
  padding: 0;
  padding-top: 58px;
  position: relative;
}

.custom-blog-content-wrapper .blog-content-area {
  width: 100%;
  display: block;
}

.blog-content-area .custom-sidebar-section {
  padding-bottom: 28px;
}

.blog-post-items {
  display: block;
  margin-bottom: 60px;
}

.blog-post-items .entry-featured-image-url {
  display: block;
  position: relative;
  margin-bottom: 30px;
}

.blog-post-items .entry-featured-image-url img {
  vertical-align: bottom;
  max-width: 100%;
}

.blog-post-items .entry-title a {
  color: #333;
  line-height: 1.4;
  text-decoration: none;
}

.blog-post-items .entry-title a:hover {
  color: #333;
}

.post-meta {
  font-size: 14px;
  padding-bottom: 15px !important;
  margin-bottom: 6px;
}

.post-meta a {
  text-decoration: none;
  color: #666;
}

.blog-content-area .custom-sidebar-section > div {
  margin-bottom: 30px;
  width: 100%;
  float: none;
}

.blog-post__body {
  padding-top: 30px;
}

.post-meta a:hover {
  color: #666;
}

/* ====================================== Insight blog ======================= */
.custom-blog-banner-area {
  background-position: 50%;
  background-size: cover;
  position: relative;
  background-color: #224a37;
  background-repeat: no-repeat;
  padding: 50px 0;
}

.custom-blog-banner-area .inner-wrapper {
  font-family: 'Gotham Book',sans-serif;
  padding-top: 2.5%;
  padding-bottom: 2.5%;
  position: relative;
}

.custom-blog-banner-area .inner-wrapper h1 {
  font-size: 55px;
  text-align: center;
  color: #fff;
  margin: 0;
}

.custom-blog-insight-content-wrapper {
  position: relative;
  background-size: cover;
  background-color: #fff;
  background-position: 50%;
  background-repeat: no-repeat;
  padding: 50px 0;
}

.custom-blog-topics ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.custom-blog-topics ul > li {
  text-align: center;
  box-shadow: 0px 12px 18px -6px rgb(0 0 0 / 30%);
  background-color: #FFFFFF;
  padding-top: 20px!important;
  padding-right: 15px!important;
  padding-bottom: 10px!important;
  padding-left: 15px!important;
  width: 20%;
  margin: 20px;
  min-height: 149px;
  transition: all .3s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
}

.custom-blog-topics ul > li > h4 {
  line-height: 1em;
  margin: 0;
}

.custom-blog-topics ul > li > h4 > a {
  color: #333;
  text-decoration: none;
}

.custom-blog-topics ul > li.active {
  max-height: 165px;
  border: 1px solid #000;
}

.custom-blog-topics ul > li.active > h4 > a {
  font-weight: bold;
  color: #134a30;
}

.blog-listing-wrapper {
  display: block;
  width: 100%;
}

.blog-listing-wrapper .content-wrapper {
  padding-right: 20px!important;
  padding-left: 20px!important;
  margin-top: 10px!important;
  margin-bottom: 10px!important;
}

.blog-insight-post-items {
  display: block;
  margin-bottom: 60px;
  position: relative;
  border-bottom: 1px solid #00000040;
  padding-bottom: 30px;
}

.blog-insight-post-items .entry-featured-image-url {
  display: block;
  position: relative;
  margin-bottom: 30px;
  max-width: 100%;
  width: 400px;
  float: left;
  margin-right: 40px;
  border: 8px solid #ffffff;
}

.blog-insight-post-items .entry-featured-image-url img {
  vertical-align: bottom;
  max-width: 100%;
}

.blog-insight-post-items .entry-title {
  line-height: 1em;
  margin: 0;
}

.blog-insight-post-items .entry-title a {
  color: inherit;
  line-height: 1.4;
  text-decoration: none;
}

.blog-insight-post-items  .post-meta {
  color: #666;
  padding-bottom: 0 !important;
}

.blog-insight-post-items .post-meta a.tag {
  color: #D36236;
  background-color: #ffffff;
  padding: 3px 6px 3px 23px;
  border: 1px solid #00000040;
  position: relative;
}

.blog-insight-post-items .post-meta a.tag:before {
  background-image: url(https://19513621.fs1.hubspotusercontent-na2.net/hubfs/19513621/raw_assets/public/Chandler_Asset_Management_March2021/images/calender-icon.png);
  content: '';
  width: 13px;
  height: 13px;
  position: absolute; 
  left: 6px;
  top: 4px;
}

.blog-insight-post-items .post-content .post-content-inner {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -moz-line-clamp: 1;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 50px;
  min-height: 46px;
}

.blog-insight-post-items .post-content .post-content-inner p {
  color: #666;
}

.blog-insight-post-items .post-content .more-link {
  padding-top: 10px;
  display: block;
  text-transform: uppercase;
  color: #D36236;
}

.blog-insight-post-items .post-content .more-link:after {
  content: none !important;
}

.custom-blog-insight-content-wrapper .blog-pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.blog-post-items .entry-title {
  margin: 0;
}

.hs-blog-post .blog-content-area .blog-index .entry-title {
  margin: 0;
}

/* ============================= Media queries ============================= */
@media (min-width: 768px) {
  .custom-blog-topics ul {
    flex-wrap: nowrap;
  }
}

@media (min-width: 981px) {
  .custom-blog-content-wrapper .content-wrapper:before {
    content: "";
    position: absolute;
    top: 0;
    height: 100%;
    width: 1px;
    right: 20.875%;
    background-color: #e2e2e2;
  }
  .blog-content-area .blog-index {
    width: 79.125%;
    padding-bottom: 23px;
    float: left;
    padding-right: 5.5%;
  }
  .blog-content-area .custom-sidebar-section {
    float: left;
    width: 20.875%;
    padding-left: 30px;
  }
  .custom-blog-banner-area,
  .custom-blog-insight-content-wrapper {
    padding: 4% 0;
  }
}

@media (min-width: 1350px) {
  .custom-blog-banner-area,
  .custom-blog-insight-content-wrapper {
    padding: 54px 0;
  }
}

/* ================== */
@media (max-width: 980px) {
  .blog-post-items,
  .blog-insight-post-items {
    margin-bottom: 42px;
  }
  .blog-content-area .custom-sidebar-section {
    margin-top: 30px;
  }
  .blog-listing-wrapper .content-wrapper {
    padding-right: 0px!important;
    padding-left: 0px!important;
  }
}

@media (max-width: 767px) {
  .blog-post-items .entry-title {
    font-size: 18px;
  }

  .custom-blog-banner-area { 
    padding: 0px; 
  }

  .custom-blog-banner-area .inner-wrapper h1 {
    font-size: 35px;
  }

  .custom-blog-topics ul>li {
    width: 100%;
  }

  .blog-insight-post-items .entry-title {
    font-size: 18px;
  }
  .blog-insight-post-items .entry-featured-image-url {
    width: auto;
    float: none;
    margin-right: 0px;
  }
}

@media (max-width: 479px) {
  .blog-post-items .entry-title {
    font-size: 16px;
    padding-bottom: 0;
  }

  .blog-insight-post-items .entry-title {
    font-size: 16px;
    padding-bottom: 0;
  }
}

/* ============ */
.custom-content-with-background {
  background-position: 50%;
  background-size: cover;
  position: relative;
  background-color: #fff;
  padding: 50px 0;
  background-repeat: no-repeat;
}

.custom-content-with-background .page-center {
  width: 84.4%;
}

.custom-content-with-background .custom-content-section {
  width: 100%;
  display: block;
  position: relative;
}

.custom-content-with-background .content-section-inner {
  position: relative;
  min-height: 300px;
  padding-top: 13px;
  margin-bottom: 19px;
  width: 100%;
  color: #666666;
}

.custom-content-with-background .content-section-inner .bar-title {
  line-height: 1.3;
  margin-bottom: 0;
}

.custom-content-with-background .content-section-inner .bar-title:before {
  content: "";
  position: absolute;
  top: -7px;
  left: 2px;
  height: 3px;
  width: 50px;
  background: #204A36;
  border-radius: 10px;
}


/* ================================ Media queries ================================= */
@media (min-width: 981px) {
  .custom-content-with-background {
    padding: 4% 0;
  }
  .custom-content-with-background .custom-content-section {
    width: 47.25%;
    margin-right: 5.5%;
    position: relative;
    z-index: 2;
    min-height: 1px;
    float: left;
  }
}

@media (min-width: 1350px) {
  .custom-content-with-background {
    padding: 54px 0;
  }
}

/* ================== */
@media (max-width: 980px) {
  .custom-content-with-background .custom-content-section {
    width: 100%;
    padding-bottom: 30px;
  }
}

.custom-content-left-image {
  position: relative;
  background-color: #fff;
  background-size: cover;
  background-position: 50%;
  background-repeat: no-repeat;
  padding: 50px 0;
}

.custom-content-left-image .page-center {
  width: 84.4%;
}

.custom-content-left-image .custom-image-section {
  position: relative;
  z-index: 2;
  min-height: 1px;
  width: 100%;
}

.custom-content-left-image .custom-image-section .cm-image-inner {
  display: block;
  margin-right: auto;
  line-height: 0;
  padding-top: 24px;
  margin-top: -35px;
  margin-left: -20px;
  width: 105.9%;
  text-align: left;
}

.custom-content-left-image .custom-image-section .cm-img-wrp {
  display: inline-block;
  position: relative;
  max-width: 100%;
}

.custom-content-left-image .custom-image-section .cm-img-wrp img {
  position: relative;
}

.custom-content-left-image .custom-content-wrap {
  position: relative;
  z-index: 2;
  min-height: 1px;
  width: 100%;
}

.custom-content-left-image .custom-content-wrap .custom-content-inner {
  min-height: 416px;
  padding-top: 13px;
  margin-bottom: 19px;
  width: 100%;
  color: #666666;
  position: relative;
}

.custom-content-left-image .custom-content-wrap .bar-title {
  line-height: 1.3;
  margin-bottom: 0;
}

.custom-content-left-image .custom-content-wrap .bar-title:before {
  content: "";
  position: absolute;
  top: -7px;
  left: 2px;
  height: 3px;
  width: 50px;
  background: #204A36;
  border-radius: 10px;
}
/*==================================== NEW CSS ==================================*/

.custom-blog-insight-content-wrapper {
	max-width: 1408px;
	margin: 0 auto;
}
.post-items:nth-of-type(n+17) { /* all but the first six */
    display: none
}
#site-search {
	margin: 0 auto;
	display: block;
  margin-bottom: 60px;
}
.post-tags {
	padding: 16px;
}
.tag {
	font-size: 14px;
	color: #fff;
	padding: 5px 10px;
	border-radius: 4px;
  background: #7A736F;
}
.tag.maroon {
	background: #640246;
}
.tag.orange {
	background: #D75F37;
}
.tag.green {
	background: #204A36;
}
.tag.grey {
	background: #7A736F;
}

.blog-index {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 32px;
}
.blog-listing-wrapper .content-wrapper {
	width: 100% !important;
	max-width: 1408px;
  padding: 0 !important;
}
.post-items {
	background: #fff !important;
	flex-basis: calc(25% - 24px) !important;
	border-radius: 8px;
	overflow: hidden;
	box-sizing: border-box;
	box-shadow: 0px 3px 6px #00000029;
}
.post-thumbnail {
	display: block;
}
.post-thumbnail img, .post-thumbnail {
	height: 150px !important;
	width: 100% !important;
	margin: 0 !important;
	border: none !important;
	object-fit: cover;
}
.post-title {
	font-size: 20px;
	padding: 16px 16px 0 16px !important;
	box-sizing: border-box !important;
	display: block !important;
}
.post-title a {
		color: #000 !important;
	font-weight: 600;
}
.post-content a p {
	color: #7A736F;
	padding: 0 16px;
	font-size: 16px !important;
	display: block;
	font-weight: 400;
}
.post-published {
	padding: 0 16px 16px 16px;
	display: block;
	text-align: right;
}

.custom-blog-insight-content-wrapper {
	background: #fff !important;
  padding-bottom: 200px;
}
#site-search {
	border: 1px solid #7A736F !important;
	font-size: 16px;
	padding: 12px 25px;
	max-width: 1408px !important;
	border-radius: 4px;
	width: 100%;
}
.top-text {
	max-width: 928px;
	width: 100%;
	display: block;
	margin: 0 auto;
	margin-bottom: 80px;
}
.top-text h4 {
	font-size: 32px;
	font-weight: 600;
	text-align: center;
}
.top-text p {
	text-align: center;
	font-size: 20px !important;
}

#hs_cos_wrapper_module_16208087578373 {
	order: 1;
}
.post-items {
	order: 2;
}

.search-fields {
	display: flex;
}
.search-fields > * {
	border: 1px solid #7a736f !important;
	border-radius: 5px;
	padding: 10px;
	box-sizing: border-box;
}
#site-search {
	margin-right: 30px;
}
.search-cat {
	flex-basis: 328px;
	margin-bottom: 60px;
}
.post-items {
	order: 2;
}
.top-posts {
	order: -1;
	display: block !important;
}
.showmore-blogs, .showmore-search {
	display: block;
	text-align: right;
	cursor: pointer;
	margin: 40px 0 0 auto;
	width: 200px;
}
.showpost {
	display: block !important;
}

.custom-blog-insight-content-wrapper {
	padding-bottom: 100px;
}



@media only screen and (max-width: 1440px) {
	.custom-blog-insight-content-wrapper {
		padding-left: 20px;
		padding-right: 20px;
	}
}
@media only screen and (max-width: 1080px) {
	.post-items {
		min-width: 48% !important;
	}
	#blog-subscription .subs-form {
		max-width: 50%;
		text-align: center;
	}
	#blog-subscription .left > *{
		text-align: center !important;
	}
	#blog-subscription .left {
		margin-bottom: 20px !important;
	}
	#blog-subscription > * {
		flex-basis: 100% !important;
		min-width: 100%;
		
	}
	#blog-subscription {
		flex-wrap: wrap !important;
	}
	
}

@media only screen and (max-width: 839px) {
	html {
		width: 100% !important;
		box-sizing: border-box !important;
		margin: 0 !important;
		position: absolute;

	}
	.custom-blog-insight-content-wrapper {
		padding-left: 20px;
		padding-right: 20px;
	}
	.post-items {
		min-width: 100% !important;
	}
}


/* ================================== Media queries =========================== */
@media (min-width: 981px) {
  .custom-content-left-image {
    padding: 4% 0;
  }

  .custom-content-left-image .custom-image-section {
    float: left;
    width: 47.25%;
    margin-right: 5.5%;
  }

  .custom-content-left-image .custom-content-wrap {
    float: left;
    width: 47.25%;
  }
}

@media (min-width: 1350px) {
  .custom-content-left-image {
    padding: 54px 0;
  }
}

/* ======================== */
@media (max-width: 980px) {
  .custom-content-left-image .custom-image-section {
    margin-bottom: 30px;
  }
}

@media (min-width: 768px) and (max-width: 1227px) {
  .custom-blog-topics ul>li {
    min-height: 147px;
  }
}

@media (min-width: 768px) and (max-width: 992px) {
  .custom-blog-topics ul>li {
    margin: 4px!important;
  }
  .custom-blog-topics ul>li>h4 {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .custom-blog-topics ul > li {
    min-height: auto;
  }
  	#blog-subscription {
		padding: 40px 20px !important;
		margin: 20px 0;
	}
	.subs-form a, #blog-subscription .subs-form p, #blog-subscription .subs-form span {
		display: block !important;
		width: 100% !important;
		box-sizing: border-box !important;
	}
}
/* ******************************************************************************
*********************************************************************************
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: Raleway, sans-serif;
  font-size: 40vw;
  font-weight: bold;
  color: #f1f1f1;
  z-index: -1;
}
.form-container .hs-button, 
.form-container .button--primary {
  margin-bottom: 10px;
}
@media screen and (min-width: 1100px) {
  .error-page:before {
    font-size: 20rem;
  }
}
.error-page_heading {
  margin-bottom: 1rem;
}

.systems-page {
  padding: 3rem 0;
}
.systems-page .success {
  display: inline-block;
  margin: 2rem 0;
  min-width: 650px;
  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: Raleway, sans-serif;
  font-size: 1.25rem;
  color: #666666;
  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: #666666;
}

.email-prefs .item.disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.email-prefs .item.disabled input:disabled {
  cursor: not-allowed;
}

@media (max-width: 767px) {
  .systems-page .success {
    min-width: 100%; 
  }
}



.custom-menu-primary .navigation-primary>ul ul li a {
  width: 212px;
}

/*.cta-sec {
    display: inline-block;
    background: rgb(202,97,65);
    text-align: center;
    transform: skew(15deg) !important;
    padding: 10px 20px !important;
    margin-left: 10px;
}
.cta-sec a {
    display: inline-block;
    transform: skew(-15deg) !important;
    background: none !important;
    margin: 0 !important;
    padding: 0 !important;
}*/

div.tip-sheet-section p.cta-sec {
    background: none!important;
    
}

div.tip-sheet-section p.cta-sec a {
    background: #fff !important;
    padding: 10px 20px !important;
}

/*---------------------------*/ 

.orange-cta {
	display: inline-block;
	background: #ca6141;
	transform: skew(15deg);
	padding: 10px 20px;
  margin-left: 10px;
}
.orange-cta span, .orange-cta a {
	display: inline-block;
	color: #fff;
	font-weight: 600;
	transform: skew(-10deg);
}

.orange-cta:hover {
  background: #fff;
  color: #ca6141 !important;
  border: 1px solid #ca6141;
}

.orange-cta {
    cursor: pointer;
    padding: 0 !important;
}
.orange-cta a, .orange-cta span {
    padding: 10px 20px;
}

.tip-sheet-section .cta-sec a:hover, .tip-sheet:hover {
    background: #7b726f !important;
}

.cta_button.home-cta:hover {
    background: #ca6140 !important;
}

p, .et_pb_toggle_content-inner {
    font-size: 18px !important;
}


#two-col-section p.orange-cta { background: transparent; transform: skew(0); margin: 0; }
#two-col-section p.orange-cta a { padding: 0; position: relative; color: #486E5C; font-style: normal; transform: skew(0); padding-right: 40px; }
#two-col-section p.orange-cta a:before { position: absolute; content: ""; top: 0; right: 0; background: url(https://19513621.fs1.hubspotusercontent-na2.net/hubfs/19513621/right-arrows-1.png)no-repeat center/cover; width: 28px; height: 16px; bottom: 0; margin: auto 0; transition: all .3s ease-in-out; }
#two-col-section p.orange-cta a:hover { border: none; }
#two-col-section p.orange-cta:hover { border: none; }
#two-col-section p.orange-cta a:hover:before { right: -5px; }

 
.small_device p.cta-sec a.home-cta { padding: 0; position: relative; color: #486E5C; font-style: normal; padding-right: 30px; }
.small_device p.cta-sec a.home-cta:before { position: absolute; content: ""; top: 0; right: 0; background: url(https://19513621.fs1.hubspotusercontent-na2.net/hubfs/19513621/right-arrows-1.png)no-repeat center/cover; width: 21px; height: 12px; bottom: 0; margin: auto 0; transition: all .3s ease-in-out; }
.small_device p.cta-sec a.home-cta:hover { border: none; color:#486E5C !important; }
.small_device p.cta-sec a.home-cta:hover:before { right: -5px; }

.cm-approach3-sec p { margin: 0;} 

#back-img-cta-section .dnd-section { padding-bottom: 75px; padding-top: 75px; }

.about-cta-mn.cm-about4-sec .dnd-section { padding-bottom: 0; padding-top: 0; margin-top: 0; }
.about-cta-mn.cm-about4-sec .dnd-section:not(:first-child) .row-fluid { width: 100%; max-width: 100% !important; padding: 0 !important; }
.about-cta-mn.cm-about4-sec .dnd-section>.row-fluid { padding-top: 0; padding-bottom: 0;}
.about-cta-mn.cm-about4-sec .widget-type-cell + .row-fluid-wrapper.dnd-section > .row-fluid { padding: 75px 15px; }
.about-cta-mn.cm-about4-sec .dnd-section:first-child { padding: 75px 15px !important; }
/* .about-cta-mn.cm-about4-sec .row-fluid .widget-type-cell > .dnd-section > .row-fluid { padding: 75px 15px; } */
.about-cta-mn.cm-about4-sec .dnd-section>.row-fluid #cta-section { padding: 0; }
.about-cta-mn.cm-about4-sec .dnd-section>.row-fluid #cta-section .content-sec h3 { font-size: 24px; line-height: 28px; margin-bottom: 20px; }
.about-cta-mn.cm-about4-sec .dnd-section>.row-fluid #cta-section .content-sec h5 { font-size: 20px; line-height: 28px; }
.about-cta-mn.cm-about4-sec .dnd-section>.row-fluid #cta-section .cta-sec span { display: inline-block; }
.about-cta-mn.cm-about4-sec .dnd-section>.row-fluid #cta-section .cta-sec span a#cta_button_19513621_d1562597-100c-4552-8a98-42cd48169be3 { min-width: 140px; font-size: 16px; background-color: #fff; color: rgb(202, 97, 65); padding: 10px 20px; text-transform: capitalize; border: 1px solid #fff; }
.about-cta-mn.cm-about4-sec .dnd-section>.row-fluid #cta-section .cta-sec { display: block; margin-top: 30px; }
.about-cta-mn.cm-about4-sec .dnd-section>.row-fluid #cta-section .cta-sec span a#cta_button_19513621_d1562597-100c-4552-8a98-42cd48169be3:hover { color: #fff; background-color: rgb(202, 97, 65); }

.body-approach-wrapper .cm-approach2-sec.cm-et54-pb .dnd-section>.row-fluid #cta-section { padding: 0; }
.body-approach-wrapper .cm-approach2-sec.cm-et54-pb .dnd-section>.row-fluid #cta-section .content-sec h3 { font-size: 24px; line-height: 28px; margin-bottom: 20px; }
.body-approach-wrapper .cm-approach2-sec.cm-et54-pb .dnd-section>.row-fluid #cta-section .content-sec h5 { font-size: 20px; line-height: 28px; }
.body-approach-wrapper .cm-approach2-sec.cm-et54-pb .dnd-section>.row-fluid #cta-section .cta-sec span { display: inline-block; }
.body-approach-wrapper .cm-approach2-sec.cm-et54-pb .dnd-section>.row-fluid #cta-section .cta-sec span a#cta_button_19513621_d1562597-100c-4552-8a98-42cd48169be3 { min-width: 140px; font-size: 16px; background-color: #fff; color: rgb(202, 97, 65); padding: 10px 20px; text-transform: capitalize; border: 1px solid #fff; }
.body-approach-wrapper .cm-approach2-sec.cm-et54-pb .dnd-section>.row-fluid #cta-section .cta-sec { display: block; margin-top: 30px; }
.body-approach-wrapper .cm-approach2-sec.cm-et54-pb .dnd-section>.row-fluid #cta-section .cta-sec span a#cta_button_19513621_d1562597-100c-4552-8a98-42cd48169be3:hover { color: #fff; background-color: rgb(202, 97, 65); }
.body-approach-wrapper .dnd-section>.row-fluid #cta-section .row-fluid { justify-content: center; }
.body-approach-wrapper .dnd-section>.row-fluid #cta-section .row-inner>.dnd-row .img-sec img { height: 240px !important;width: auto; }

.cm-about5-sec .dnd-section { background: transparent !important; }

.twocol-mn .inner { display: flex; flex-flow: row wrap; width: 100%; }
.twocol-mn .inner .left { width: 50%; min-height: 650px; }
.twocol-mn .inner .left .thumbnail_wrap { height: 100%; }
.twocol-mn .inner .right { display: flex; align-self: center; }
.twocol-mn .inner .right { width: 50%; padding-right: 110px; padding-left: 30px; }
.twocol-mn:not(.right-image) .inner .right { padding-left: 110px; padding-right: 30px; }

.twocol-mn .inner .thumbnail_wrap img { display: block; width: 100%; height: 100%; }
.twocol-mn .inner .detail_wrap { padding: 100px 0;max-width: 615px; margin-left: auto; }
.twocol-mn:not(.right-image) .inner .detail_wrap { margin-left: 0; }
.twocol-mn .inner .detail_wrap h4 { font-size: 32px; line-height: 40px; font-weight: 700; margin: 0 0 18px; padding-bottom: 0; letter-spacing: 0.64px; }

.twocol-mn .inner .detail_wrap .content,
.twocol-mn .inner .detail_wrap .content p { font-size: 18px!important;  line-height: 28px; color: #000; }
.twocol-mn .inner .detail_wrap .action_wrap { margin-top: 40px; }
.twocol-mn .inner .detail_wrap .action_wrap .button-outline a { display: inline-block; min-width: 210px; font-weight: 700; font-size: 16px; padding: 13px 25px; border: 2px solid #CA6141; -webkit-transition: 0.5s all ease !important; -moz-transition: 0.5s all ease !important; -o-transition: 0.5s all ease !important; -ms-transition: 0.5s all ease !important; transition: 0.5s all ease !important; }
.twocol-mn .inner .detail_wrap .action_wrap .button-outline a:hover { background-color: #CA6141; color: #fff; }
.twocol-mn .inner .detail_wrap .action_wrap .arrow-link a { color: #486E5C; position: relative; display: inline-block; font-size: 18px;font-weight: 700;line-height: 28px; padding: 0 30px 0 0; -webkit-transition: 0.5s all ease !important; -moz-transition: 0.5s all ease !important; -o-transition: 0.5s all ease !important; -ms-transition: 0.5s all ease !important; transition: 0.5s all ease !important; }
.twocol-mn .inner .detail_wrap .action_wrap .arrow-link a:after { content:''; background: url('https://19513621.fs1.hubspotusercontent-na2.net/hubfs/19513621/Chandler_Asset_Management_March2021/Images/green-arrow.svg') no-repeat center / contain; position: absolute; right: 14px; top: 50%; transform: translate(14px, -50%); width: 14px; height: 14px; -webkit-transition: 0.5s all ease !important; -moz-transition: 0.5s all ease !important; -o-transition: 0.5s all ease !important; -ms-transition: 0.5s all ease !important; transition: 0.5s all ease !important; }
.twocol-mn .inner .detail_wrap .action_wrap .arrow-link a:hover:after { transform: translate(20px, -50%); }
.twocol-mn.right-image .inner { flex-flow: row-reverse wrap; }
.twocol-mn .inner .detail_wrap .content a { color: #640246; text-decoration: underline; font-weight: 700; transition: all 0.5s ease-in-out; }
.twocol-mn .inner .detail_wrap .content a:hover { text-decoration: none; }

.twocol-mn.smallcontainer { padding: 75px 0; }
.twocol-mn.smallcontainer .inner { max-width: 1160px; margin: auto;align-items: flex-start; }
.twocol-mn.smallcontainer .inner .left { width: 470px; min-height: 100%; }
.twocol-mn.smallcontainer .inner .right { align-self: flex-start; width: calc(100% - 470px);padding-left: 30px; padding-right: 30px; }
.twocol-mn.smallcontainer .inner .detail_wrap { padding: 0; }

.usr_intr_card { padding: 90px 0 45px; }
.usr_intr_card .inner { display: flex; align-items: center; max-width: 770px; margin: auto; }
.usr_intr_card .inner .left { max-width: 270px; width: 270px; margin-right: -20px; }
.usr_intr_card .inner .left .thumbnail_wrap { width: 100%; height: 100%; margin-right: 40px; display: block; }
.usr_intr_card .inner .right { width: calc(100% - 270px); }
.usr_intr_card .inner .right .detail_wrap { font-size: 20px; line-height: 28px; font-weight: 500; color: #000; }
.usr_intr_card .inner .right .detail_wrap .quote .author { }
.usr_intr_card .inner .right .detail_wrap .author { font-weight: 700; font-size: 16px; line-height: 24px; margin-top: 25px; }

.img-threebox-sm { padding: 50px 0; }
.img-threebox-sm .content-part .box_grid { display: flex; flex-flow: row wrap; }
.img-threebox-sm .content-part .box_grid .box { width: calc(100% / 3 - 52px); margin: 0 26px; }
.img-threebox-sm .content-part .box_grid .box .thumbnail_wrap { width: 100%; display: block; }
.img-threebox-sm .content-part .box_grid .box .thumbnail_wrap img { display: block; width: 100%; }
.img-threebox-sm .content-part .box_grid .box .detail h4 { font-weight: 700; font-size: 24px; margin: 15px 0; padding-bottom: 0; line-height: 32px; }
.img-threebox-sm .content-part .box_grid .box .detail { font-size: 16px; color: #000; }
.img-threebox-sm .inner { max-width: 1100px; margin: auto; }
.img-threebox-sm .inner .title-part h3 { font-size: 40px; font-weight: 600; line-height: 47px; margin: 0 0 15px 0; padding-bottom: 0; }
.img-threebox-sm .inner .title-part .content { color: #000; font-size: 20px; font-weight: 500; line-height: 28px; }
.img-threebox-sm .inner .title-part { margin-bottom: 40px; }



.cm-approach7-sec .dnd_area7-row-1-force-full-width-section > .row-fluid { padding: 0; }
.img-tltcnt-row .inner-wrap { padding: 40px 0; }
.img-tltcnt-row .inner-wrap .card_box { padding: 40px 0; }
.img-tltcnt-row .inner-wrap .card_box .inner { display: flex; flex-flow: row wrap; width: 100%; max-width: 1368px; margin: auto; }
.img-tltcnt-row .inner-wrap .card_box:nth-child(even) .inner .right { padding-right: 40px; padding-left: 0; }
.img-tltcnt-row .inner-wrap .card_box:nth-child(even) .inner { flex-flow: row-reverse wrap; }
.img-tltcnt-row .inner-wrap .card_box .inner .left { width: 472px; }
.img-tltcnt-row .inner-wrap .card_box .inner .left .thumbnail_wrap { height: 100% }
.img-tltcnt-row .inner-wrap .card_box .inner .right { align-self: center; display: flex; padding-left: 40px; width: calc(100% - 472px); max-width: 610px; }
.img-tltcnt-row .inner-wrap .card_box .inner .right .detail_wrap h3 { font-weight: 700; font-size: 31px; color: #000000; line-height: 40px; }
.img-tltcnt-row .inner-wrap .card_box .inner .right .detail_wrap h3 span { color: #D75F37; }
.img-tltcnt-row .inner-wrap .card_box .inner .right .detail_wrap .content,
.img-tltcnt-row .inner-wrap .card_box .inner .right .detail_wrap .content p { font-weight: 400; font-size: 18px; color: #000000; }
.img-tltcnt-row .inner-wrap .card_box .inner .thumbnail_wrap img { border-radius: 10px; background: #EBEBEB; box-shadow: 0px 3px 6px #00000029; display: block; height: 100%; width: 100% }

.disclsure-list-mn .content-wrapper { padding: 0; }
.disclsure-list-mn .content-wrapper .inner { display: flex; flex-flow: row wrap; width: 100%;padding: 0 20px; padding-top: 100px; }
.disclsure-list-mn .content-wrapper .inner .list-secttion ul { list-style: none; padding: 0; margin: 0; position: -webkit-sticky; position: sticky; top: 88px; max-width: 280px; }
.disclsure-list-mn .content-wrapper .inner .list-secttion { width: 30%; }
.disclsure-list-mn .content-wrapper .inner .content-section { width: 70%; }
.disclsure-list-mn .content-wrapper .inner .list-secttion ul li { font-weight: 500; font-size: 18px; line-height: 28px; transition: 0.5s; color: #000; padding: 4px 0; cursor: pointer; }
.disclsure-list-mn .content-wrapper .inner .list-secttion ul li.active,
.disclsure-list-mn .content-wrapper .inner .list-secttion ul li:hover { font-weight: 700; color: #486E5C; }
.disclsure-list-mn .content-wrapper .inner .content-section .card_wrap h2 { font-size: 32px; line-height: 40px; font-weight: 700; margin: 70px 0 18px 0; padding-bottom: 0; letter-spacing: 0; }
.disclsure-list-mn .content-wrapper .inner .content-section .card_wrap h2:first-child { margin-top: 0; } 
.disclsure-list-mn .content-wrapper .inner .content-section .card_wrap p,
.disclsure-list-mn .content-wrapper .inner .content-section .card_wrap { color: #000; }

.heronew-banner .wrapper .inner-wrap { display: flex; flex-flow: row wrap;     align-items: center; }
.heronew-banner .wrapper .inner-wrap .left { width: 55%; }
.heronew-banner .wrapper .inner-wrap .left .thumbnail_wrap { max-height: 800px; height: 800px; }
.heronew-banner .wrapper .inner-wrap .right { width: 45%; }
.heronew-banner .wrapper .inner-wrap .right .detail_wrap { padding: 60px; }
.heronew-banner .wrapper .inner-wrap .right .detail_wrap h1 { font-weight: 700; line-height: 64px; }
.heronew-banner .wrapper .inner-wrap .right .detail_wrap h1 span { color: #cc5c30; }
.heronew-banner .wrapper .inner-wrap .right .detail_wrap .content { font-size: 26px; line-height: 36px; }
.heronew-banner .wrapper .inner-wrap .right .detail_wrap .action a { margin-top: 35px; border: 1px solid #cc5c30; color: #fff; }
.heronew-banner .wrapper .inner-wrap .right .detail_wrap .action a:hover { background-color: hsla(0, 0%, 100%, 0); color: #cc5c30; transition: all .5s !important; }

.heronew-banner .wrapper .inner-wrap .right .detail_wrap .list_grp { display: flex; flex-flow: row wrap; width: 100%;margin-top: 100px; }
.heronew-banner .wrapper .inner-wrap .right .detail_wrap .list_grp .box { width: calc(100% / 4); display: flex; flex-flow: column wrap; align-items: center; text-align: center;  font-size: 14px; line-height: 24px; padding: 5px; color: #333333; }
.heronew-banner .wrapper .inner-wrap .right .detail_wrap .list_grp .box .icon { width: 52px; height: 52px; margin-bottom: 15px; }
.heronew-banner .wrapper .inner-wrap .right .detail_wrap .list_grp .box .icon img { display: block; width: 100%; }

.two_col_number_list .inner .title-part h2 { font-size: 40px; font-weight: 600; line-height: 48px; text-align: center; position: relative; }
.two_col_number_list .inner .title-part h2:after { background: #204a36; border-radius: 10px; content: ""; height: 4px; position: absolute; top: -40px; width: 90px; left: 0; margin: auto; right: 0; }

.two_col_number_list .inner .content-part { display: flex; flex-flow: row wrap; width: 100%; }
.two_col_number_list .inner .content-part .left { width: 50%; padding: 30px; }
.two_col_number_list .inner .content-part .right { width: 50%; padding: 30px; }
.two_col_number_list .inner .content-part .left p { line-height: 28px; letter-spacing: 0px; }
.two_col_number_list .inner .content-part .right ol { margin: 0; padding: 0; }
.two_col_number_list .inner .content-part .right ol li { font-size: 16px;line-height: 24px; font-weight: 500; color: #000;  padding-left: 50px; position: relative; }
.two_col_number_list .inner .content-part .right ol li + li { margin-top: 30px; }
.two_col_number_list .inner .content-part .right ol li:before { content: counter(item); position: absolute; top: 0; left: 0; margin: auto; z-index: 1;font-size: 16px;line-height: 24px; font-weight: 500; background: transparent; border: none; width: 35px; height: 35px; display: flex; align-items: center; justify-content: center; color: #fff; padding: 0; }
.two_col_number_list .inner .content-part .right ol li:after { content: ''; position: absolute; top: 0; left: 0; width: 35px; height: 35px; background: #224a37; -webkit-clip-path: circle(50% at 50% 50%); clip-path: circle(50% at 50% 50%); }

@media(min-width: 768px) {
    .body-approach-wrapper .dnd-section>.row-fluid #cta-section .row-inner>.dnd-row { display: flex; align-items: center; }
}
@media(max-width: 1199px) {
    .heronew-banner .wrapper .inner-wrap .right .detail_wrap { padding: 20px; }
    .heronew-banner .wrapper .inner-wrap .right .detail_wrap .list_grp { margin-top: 50px; }
    .heronew-banner .wrapper .inner-wrap .right .detail_wrap .list_grp .box {  width: calc(100% / 2); }
    .heronew-banner .wrapper .inner-wrap .right .detail_wrap .action a { font-size: 18px; }
    .heronew-banner .wrapper .inner-wrap .right .detail_wrap .content{ font-size: 20px; }
}
@media(max-width: 991px) {
    .twocol-mn.right-image .inner,
    .twocol-mn .inner { flex-flow: column wrap; }
    .twocol-mn .inner .detail_wrap { max-width: 100%; }
    .twocol-mn .inner .detail_wrap { padding: 50px 30px; }
    .twocol-mn .inner .detail_wrap h4 { font-size: 28px; }
    .twocol-mn .inner .left { width: 100%; }
    .twocol-mn.smallcontainer .inner .left { width: 100%; text-align: center; }
    .twocol-mn.smallcontainer { padding: 30px 15px; } 
    .twocol-mn .inner .right { width: 100%; padding-left: 0; padding-right: 0; }
    .twocol-mn.smallcontainer .inner .right { width: 100%;}
    .twocol-mn .inner .left .thumbnail_wrap { max-height: 450px; height: 450px; }
    .twocol-mn:not(.right-image) .inner .right { padding-left: 0; padding-right: 0; }
    
    .usr_intr_card { padding: 50px 15px; }
    .usr_intr_card .inner .right .detail_wrap { font-size: 18px; }
    .img-threebox-sm .inner .title-part .content{ font-size: 18px; }
    .img-tltcnt-row .inner-wrap .card_box .inner .left { width: 250px; }
    .img-tltcnt-row .inner-wrap .card_box .inner .right { width: calc(100% - 250px); }
    .heronew-banner .wrapper .inner-wrap .right .detail_wrap .content{ font-size: 18px; }
    .heronew-banner .wrapper .inner-wrap .right .detail_wrap .list_grp .box { padding: 10px 5px }
    .heronew-banner .wrapper .inner-wrap .right .detail_wrap h1 { font-size: 42px;  line-height: 52px; }
    .heronew-banner .wrapper .inner-wrap .right .detail_wrap .action a { font-size: 16px; padding-left: 20px; padding-right: 20px; padding-top: 10px; padding-bottom: 10px; line-height: 30px; }
}

@media (max-width: 980px) {
    .about-cta-mn.cm-about4-sec .dnd-section:first-child { background-image: url(https://19513621.fs1.hubspotusercontent-na2.net/hubfs/19513621/cta_orange_bg.png) !important; }
    .about-cta-mn.cm-about4-sec .dnd-section>.row-fluid #cta-section .cta-sec { text-align: center; }
}

@media(max-width: 767px) {
/*     .twocol-mn .inner .detail_wrap { padding: 15px 30px; } */
    .twocol-mn .inner .detail_wrap .action_wrap .button-outline a { font-size: 14px; min-width: 180px; padding: 10px 20px; }
    .twocol-mn .inner .detail_wrap h4 { font-size: 26px; margin: 0 0 10px; }
    .twocol-mn .inner .left { min-height: 100%; }
    .twocol-mn .inner .left .thumbnail_wrap { max-height: 100%; }
    
    .usr_intr_card { padding: 15px; }
    .img-threebox-sm { padding: 30px 0; } 
    .usr_intr_card .inner { flex-flow: column wrap; }
    .usr_intr_card .inner .left { width: 100%; }
    .usr_intr_card .inner .left { margin: auto; margin-bottom: 20px; }
    .usr_intr_card .inner .right { width: 100%; }
    
    .img-threebox-sm .inner .title-part h3 { font-size: 28px; line-height: 38px; }
    .img-threebox-sm .content-part .box_grid { flex-flow: column wrap; }
    .img-threebox-sm .content-part .box_grid .box { margin: auto; width: 100%; }
    .img-threebox-sm .content-part .box_grid .box + .box  { margin-top: 35px; } 
    .img-threebox-sm .content-part .box_grid .box .detail h4 { font-size: 22px; line-height: 27px; margin: 15px 0 10px 0; }

    .body-about-wrapper #back-img-cta-section { padding: 0 !important;}
    .body-about-wrapper #back-img-cta-section .dnd-section { padding-bottom: 60px !important; padding-top: 60px!important; }
    .body-about-wrapper #back-img-cta-section .cm-et-column .span6.dnd-column { margin-bottom: 0 !important; }
    .body-about-wrapper #back-img-cta-section .dnd-section .dnd-column { margin-bottom: 0 !important; }
    .body-about-wrapper #back-img-cta-section .dnd-section p { margin-bottom: 0 !important; }
    .body-about-wrapper .cm-about5-sec .dnd-section { background: rgb(255 255 255 / 67%) !important;}
    .img-threebox-sm .inner .title-part .content { font-size: 16px; }
    .twocol-mn .inner .detail_wrap .content, .twocol-mn .inner .detail_wrap .content p { font-size: 16px !important; line-height: 26px; }
    
    .disclsure-list-mn .content-wrapper .inner { padding: 30px 0 0; }
    .disclsure-list-mn .content-wrapper .inner { flex-flow: column wrap; }
    .disclsure-list-mn .content-wrapper .inner .list-secttion { width: 100% }
    .disclsure-list-mn .content-wrapper .inner .content-section { width: 100%; margin-top: 50px; }
    .disclsure-list-mn .content-wrapper .inner .list-secttion ul li { display: block; font-size: 17px; line-height: 30px; }
    .disclsure-list-mn .content-wrapper .inner .content-section .card_wrap h2 { font-size: 28px; margin: 35px 0 15px 0; }
    .disclsure-list-mn .content-wrapper .inner .content-section .card_wrap, .disclsure-list-mn .content-wrapper .inner .content-section .card_wrap p { font-size: 16px !important; line-height: 26px; }
    .img-tltcnt-row .inner-wrap .card_box .inner,
    .img-tltcnt-row .inner-wrap .card_box:nth-child(2n) .inner { flex-flow: column wrap; }
    .img-tltcnt-row .inner-wrap .card_box .inner .right,
    .img-tltcnt-row .inner-wrap .card_box .inner .left { width: 100%; max-width: 100%; padding-left: 0; padding-right: 0; }
    .img-tltcnt-row .inner-wrap { padding: 0; } 
    .img-tltcnt-row .inner-wrap .card_box { padding: 0 0 30px 0; }
    .img-tltcnt-row .inner-wrap .card_box .inner .right .detail_wrap { margin-top: 25px; }
    .img-tltcnt-row .inner-wrap .card_box .inner .right .detail_wrap h3 { font-size: 26px;line-height: 38px; }
    
    .heronew-banner .wrapper .inner-wrap { flex-flow: column wrap; }
    .heronew-banner .wrapper .inner-wrap .left { width: 100% }
    .heronew-banner .wrapper .inner-wrap .right { width: 100%; }
    
    .heronew-banner .wrapper .inner-wrap .left .thumbnail_wrap { max-height: 600px; min-height: 600px; }
    .heronew-banner .wrapper .inner-wrap .right .detail_wrap h1 { font-size: 38px;  line-height: 48px; }
    .heronew-banner .wrapper .inner-wrap .right .detail_wrap { text-align: center; }
    .heronew-banner .wrapper .inner-wrap .right .detail_wrap .content{ font-size: 18px; line-height: 28px; }
    
    .two_col_number_list .inner .content-part .left, .two_col_number_list .inner .content-part .right { width: 100%; padding: 0 30px; }
    .two_col_number_list .inner .content-part .right { margin-top: 30px; }
    .two_col_number_list .inner .content-part .left p { line-height: 24px; font-size: 16px !important; }
}

@media(max-width: 600px) {
    .heronew-banner .wrapper .inner-wrap .right .detail_wrap h1 { font-size: 32px; line-height: 40px; }
    .twocol-mn .inner .left .thumbnail_wrap { height: auto; min-height: 300px; }    
}