/* Theme base styles */

/* Tools
Any animations, or functions used throughout the project.
Note: _macros.css needs to be imported into each stylesheet where macros are used and not included here
*/
.page-center {
   max-width: 1170px;
   margin: 0 auto;
}
.header .page-center {
   padding: 0 15px;
   max-width: 1350px;
}
.header .page-center .row-fluid {
   margin: 0 -15px;
   width: auto;
}
.header .page-center .row-fluid > div {
   padding: 0 15px;
   position: relative
}

/* Logo */
.advLogo img.stickyLogo {
   position: absolute;
   left: 0;
   top: 0;
}
.advLogo img {
   opacity: 0;
   visibility: hidden;
   transition: all .2s ease;
}
.advLogo img.standardLogo {
   opacity: 1;
   visibility: visible;
}

header.header {
   position: fixed;
   width: 100%;
   left: 0;
   top: 0;
   z-index: 999;
   transition: all .2s ease;
}

@media (min-width: 768px){
  header.header {
    height:95px;
  }
}

.custom-menu-primary .hs-menu-wrapper > ul > li > a {
   font-style: normal;
   font-weight: bold;
   font-size: 16px;
   line-height: 160%;
   display: block;
}
.header .page-center .row-fluid:after,
.header .page-center .row-fluid:before {
   content: none;
}
.header .page-center .row-fluid {
   display: flex;
   align-items: center;
   padding: 20px 0;
}
.header .cta-button {
   margin-left: auto;
}
.header .custom-logo {
   font-size: 0;
   line-height: 0;
}
.custom-menu-primary .hs-menu-wrapper > ul {
   align-items: center;
   justify-content: center;
}
.custom-menu-primary .hs-menu-wrapper > ul > li {
   padding: 0 20px;
}
.header .cta-button .hs-button {
   box-sizing: border-box !important;
   padding-top: 13.5px;
   padding-bottom: 17.5px;
   line-height: normal;
   display: flex;
   align-items: center;
   justify-content: center;
}
.advLogo {
   position: relative;
}
.custom-menu-primary {
   padding-right: 0 !important;
}
/* Child Menu */
.custom-menu-primary  .hs-item-has-children {
   position: relative;
}
.custom-menu-primary .hs-item-has-children ul li a { 
   font-style: normal;
   font-weight: bold;
   font-size: 16px;
   line-height: 160%;
   display: block;
   padding: 5px 20px;
}

.fixheader .custom-menu-primary .hs-menu-wrapper > ul > li > a {
   color: #424551 !important;
}
.fixheader .advLogo img.standardLogo {
   opacity: 0;
   visibility: hidden;
}
.fixheader .advLogo img.stickyLogo {
   visibility: visible;
   opacity: 1;
}
.fixheader header.header {
   background: #fff;
}
.fixheader .custom-menu-primary .hs-item-has-children>ul {
   background: #fff !important;
}
.fixheader .custom-menu-primary .hs-item-has-children ul li a {
   color: #424551 !important;
}
body {
   padding-top: 92px;
}

@media (min-width: 768px) {
   .cta-button.mobile-cta,
   .mobile-trigger,
   .child-trigger{
      display: none !important;
   }
   .custom-menu-primary .hs-menu-wrapper {
      display: block !important;
   }
   .custom-menu-primary .hs-item-has-children > ul {
      padding-top: 32px;
      padding-bottom: 10px;
      display: block !important;
   }
}

@media (max-width: 1199px) {
   .page-center {
      max-width: 991px;
   }
}

@media (max-width: 992px) {
   .page-center {
      max-width: 750px;
   }
}

@media (max-width: 767px) {
   .page-center {
      max-width: 100%;
   }
   .custom-menu-primary .hs-item-has-children > ul {
      display: none;
   }
   .header .page-center .row-fluid > div.cta-button {
      display: none !important;
   }
   .header .page-center .row-fluid {
      display: block;
      padding: 35px 0;
   }
   .custom-menu-primary .hs-item-has-children > ul > li:first-child {
      padding-top: 10px;
   }
   .custom-menu-primary .hs-menu-wrapper {
      display: none;
   }
   .custom-menu-primary {
      position: static !important;
      padding: 0 15px !important;
   }

   /* ===== Mobile Toggle Button ===== */
   .mobile-trigger {
      display: flex;
      cursor: pointer;
      position: absolute;
      top: 20px;
      right: 15px;
      width: 50px;
      height: 50px;
      background: rgba(46,80,108,1.0);
      border: 1px solid rgba(46,80,108,1.0);
      border-radius: 4px;
      align-items: center;
      justify-content: center;
      transition: all .2s ease;
   }

   /* Toggle Button Icon */
   .mobile-trigger i{
      display: inline;
      position: relative;
      top: 0;
   }
   .mobile-trigger i:before, 
   .mobile-trigger i:after{
      position: absolute;
      content: '';
   }
   .mobile-trigger i,
   .mobile-trigger i:before,
   .mobile-trigger i:after{
      width: 30px; /* Icon line width */
      height: 3px; /* Icon line height */
      -webkit-border-radius: 1px;
      -moz-border-radius: 1px;
      border-radius: 1px;
      background-color: #fff; /* Icon color */
      display: inline-block;
      transition: all .2s ease;
      transform-origin: center;
   }
   .mobile-trigger i:before{ top: -9px; } /* Position top line */
   .mobile-trigger i:after{ top: 9px; } /* Position bottom line */  
   .mobile-trigger:hover {
      color: rgba(46,80,108,1.0);
      border-color: rgba(46,80,108,1.0);
      background-color: rgba(255,255,255,1.0);
   }
   .mobile-trigger:hover i,
   .mobile-trigger:hover i:before,
   .mobile-trigger:hover i:after {
      background-color: rgba(46,80,108,1.0);
   }
   .mobile-open .mobile-trigger i {background: transparent}
   .mobile-open .mobile-trigger i:before{
      top:0;
      transform: rotate(-45deg)
   }
   .mobile-open .mobile-trigger i:after{
      top: 0;
      transform: rotate(45deg)
   }

   /* ===== Mobile Child Toggle Buttons ===== */

   .child-trigger{
      display: block !important; /* Hide button on Desktop */
      cursor: pointer; /* Mouse pointer type on hover */
      position: absolute;
      top: 0px;
      right: 0px;
      width: 100% !important; /* Button width */
      min-width: 55px !important;
      height: 45px !important; /* Button height */  
      padding: 0 !important;
   }
   .child-trigger:hover{
      text-decoration: none;
   }
   .child-trigger i{
      position: relative;
      top: 50%; /* Centers icon inside button */
      margin-left:auto;
      margin-right: 0 !important;
      -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
      transform: rotate(0deg);
   }
   .child-trigger i:after{
      position: absolute;
      content: '';
   }
   .child-trigger i, .child-trigger i:after{
      width: 10px; /* Icon line width */
      height: 1px; /* Icon line height */
      background-color: #fff; /* Icon color */
      display: block;
   }
   .child-trigger i:after{
      -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
      transform: rotate(-90deg);
   }  
   .child-trigger.child-open i:after{
      -webkit-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
      transform: rotate(-180deg);
   }
   .custom-menu-primary .hs-menu-wrapper > ul {
      display: block;
      padding: 30px 0 0;
   }
   .custom-menu-primary .hs-menu-wrapper > ul > li {
      padding: 5px 0;
   }
   .cta-button.mobile-cta {
      padding-top: 10px;
   }
   .cta-button.mobile-cta .hs-button {
      padding: 7px 30px 10px;
   }
   .header .page-center .row-fluid {
      overflow-y: auto;
      max-height: 100vh;
   }
   .custom-menu-primary .hs-item-has-children ul li a{padding:10px 20px;}
}

/* Generic
This is where reset, normalize & box-sizing styles go.
*/

*, *:before, *:after {
  box-sizing: border-box;
}
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

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

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

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

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

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

body {
  margin: 0;
}

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

main {
  display: block;
}

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

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

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

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

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

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

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

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

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

a {
  background-color: transparent;
}

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

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

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

b,
strong {
  font-weight: bolder;
}

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

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

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

small {
  font-size: 80%;
}

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

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

sub {
  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: visible;
}

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

/* Objects
Non-cosmetic design patterns including grid and layout classes)
*/

/* Responsive Grid */

/* Responsive Grid */

.row-fluid {
  width: 100%;
  *zoom: 1;
}

.row-fluid:before, .row-fluid:after {
  display: table;
  content: "";
}

.row-fluid:after {
  clear: both;
}

.row-fluid [class*="span"] {
  display: block;
  float: left;
  width: 100%;
  min-height: 1px;
  *margin-left: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

.row-fluid [class*="span"]:first-child {
  margin-left: 0;
}

.row-fluid .span12 {
  width: 100%;
}
.row-fluid .span11 {
  width: 91.66%;
}
.row-fluid .span10 {
  width: 83.33%;
}
.row-fluid .span9 {
  width: 75%;
}
.row-fluid .span8 {
  width: 66.66%;
}
.row-fluid .span7 {
  width: 58.33%;
}
.row-fluid .span6 {
  width: 50%;
}
.row-fluid .span5 {
  width: 41.66%;
}
.row-fluid .span4 {
  width: 33.33%;
}
.row-fluid .span3 {
  width: 25%;
}
.row-fluid .span2 {
  width: 16.66%;
}
.row-fluid .span1 {
  width: 8.33%;
}

.container-fluid {
  *zoom: 1;
}

.container-fluid:before, .container-fluid:after {
  display: table;
  content: "";
}

.container-fluid:after {
  clear: both;
}

@media (max-width: 767px) {
  .row-fluid {
    width: 100%;
  }

  .row-fluid [class*="span"] {
    display: block;
    float: none;
    width: auto;
    margin-left: 0;
  }
}

.dnd-section > .row-fluid .dnd-column,
.dnd-section > .row-fluid > [class*="span"].dnd-module {
  padding-left: 15px;
  padding-right: 15px;
}
.dnd-section[class*="force-full-width-section"]  > .row-fluid > .dnd-column.span12,
.dnd-section[class*="force-full-width-section"]  > .row-fluid > .span12.dnd-module {
  padding-left: 0px;
  padding-right: 0px;
}


@media (min-width: 768px) {
  .row-fluid {
    width: 100%;
    *zoom: 1;
  }

  .row-fluid:before, .row-fluid:after {
    display: table;
    content: "";
  }

  .row-fluid:after {
    clear: both;
  }

  .row-fluid [class*="span"] {
    display: block;
    float: left;
    width: 100%;
    min-height: 1px;
    margin-left: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
  }

  .row-fluid [class*="span"]:first-child {
    margin-left: 0;
  }

  .row-fluid .span12 {
    width: 100%;
  }
  .row-fluid .span11 {
    width: 91.66%;
  }
  .row-fluid .span10 {
    width: 83.33%;
  }
  .row-fluid .span9 {
    width: 75%;
  }
  .row-fluid .span8 {
    width: 66.66%;
  }
  .row-fluid .span7 {
    width: 58.33%;
  }
  .row-fluid .span6 {
    width: 50%;
  }
  .row-fluid .span5 {
    width: 41.66%;
  }
  .row-fluid .span4 {
    width: 33.33%;
  }
  .row-fluid .span3 {
    width: 25%;
  }
  .row-fluid .span2 {
    width: 16.66%;
  }
  .row-fluid .span1 {
    width: 8.33%;
  }
}

/* Clearfix */

.clearfix {
  *zoom: 1;
}

.clearfix:before, .clearfix:after {
  display: table;
  content: "";
}

.clearfix:after {
  clear: both;
}

/* Visibilty Classes */

.hide {
  display: none;
}

.show {
  display: block;
}

.invisible {
  visibility: hidden;
}

.hidden {
  display: none;
  visibility: hidden;
}

/* Responsive Visibilty Classes */

.visible-phone {
  display: none !important;
}

.visible-tablet {
  display: none !important;
}

.hidden-desktop {
  display: none !important;
}

@media (max-width: 767px) {
  .visible-phone {
    display: inherit !important;
  }

  .hidden-phone {
    display: none !important;
  }

  .hidden-desktop {
    display: inherit !important;
  }

  .visible-desktop {
    display: none !important;
  }
}

@media (min-width: 768px) and (max-width: 1139px) {
  .visible-tablet {
    display: inherit !important;
  }

  .hidden-tablet {
    display: none !important;
  }

  .hidden-desktop {
    display: inherit !important;
  }

  .visible-desktop {
    display: none !important ;
  }
}
.content-wrapper {
  margin: 0 auto;
  padding: 0 20px;
}

@media screen and (min-width: 1380px) {
  .content-wrapper {
    padding: 0;
  }
}

.dnd-section > .row-fluid {
  margin: 0 auto;
}

.dnd-section .dnd-column {
  padding: 0 20px;
}

@media (max-width: 767px) {
  .dnd-section .dnd-column {
    padding: 0;
  }
}

/* Elements
Base HMTL elements are styled in this section (<body<, <h1>, <a>, <p>, <button> etc.)
*/

@font-face {
   font-family:'Aeonik-Regular';
   src: url("https://8794357.fs1.hubspotusercontent-na1.net/hubfs/8794357/Gillespie%20Jun%2021%20-%20New%20Theme/fonts/Aeonik-Regular.otf") format("opentype");
}
@font-face {
   font-family:'Aeonik-light';
   src: url("https://8794357.fs1.hubspotusercontent-na1.net/hubfs/8794357/Gillespie%20Jun%2021%20-%20New%20Theme/fonts/Aeonik-Light.otf") format("opentype");
}
@font-face {
   font-family:'Aeonik-Regularitalic';
   src: url("https://8794357.fs1.hubspotusercontent-na1.net/hubfs/8794357/Gillespie%20Jun%2021%20-%20New%20Theme/fonts/Aeonik-RegularItalic.otf") format("opentype");
}
@font-face {
   font-family:'Aeonik-Bold';
   src: url("https://8794357.fs1.hubspotusercontent-na1.net/hubfs/8794357/Gillespie%20Jun%2021%20-%20New%20Theme/fonts/Aeonik-Bold.otf") format("opentype");
}
@font-face {
   font-family:'Aeonik-BoldItalic';
   src: url(https://f.hubspotusercontent00.net/hubfs/8794357/Gillespie%20Jun%2021%20-%20New%20Theme/fonts/Aeonik-BoldItalic.otf") format("opentype");
}
@font-face {
   font-family:'Aeonik-Medium';
   src: url("https://8794357.fs1.hubspotusercontent-na1.net/hubfs/8794357/Gillespie%20Jun%2021%20-%20New%20Theme/fonts/Aeonik-Medium.otf") format("opentype");
}
@font-face {
   font-family: 'Arial-bold';
   src: url('https://8794357.fs1.hubspotusercontent-na1.net/hubfs/8794357/Gillespie%20Jun%2021%20-%20New%20Theme/fonts/arial-bold.ttf');
}

body {
   line-height: 1.5;
   word-break: break-word;
   -webkit-font-smoothing: antialiased;
   -moz-osx-font-smoothing: grayscale;
}

html[lang^="ja"] body,
html[lang^="zh"] body,
html[lang^="ko"] body {
   line-break: strict;
   word-break: break-all;
}

/* Anchors */

a {
   cursor: pointer;
   transition: all .2s ease;
   text-decoration: none;
}

a:hover,
a:focus {

}

/* Headings */

h1,
h2,
h3,
h4,
h5,
h6 {
   margin: 0 0 1.4rem;
   line-height: 130%;
}

/* Lists */

ul,
ol {
   margin: 0 0 1.4rem;
}

ul ul,
ol ul,
ul ol,
ol ol {
   margin: 0;
}

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

/* Code blocks */

pre {
   overflow: auto;
}

code {
   vertical-align: bottom;
}

/* Blockquotes */

blockquote {
   border-left: 2px solid;
   margin: 0 0 1.4rem;
   padding-left: 15px;
}

/* Horizontal rules */

hr {
   background-color: #CCC;
   border: none;
   color: #CCC;
   height: 1px;
}

/* Image alt text */

img {
   word-break: normal;
   max-width: 100%;
}

/* ******************************************************************************
*********************************************************************************
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: 507px;
   font-family: ;
}
html, button, input, select, textarea {
   font-family: sans-serif;
   color: #222;
}
button, input, optgroup, select, textarea {
   margin: 0;
   font: inherit;
   color: inherit;
}
input {
   line-height: normal;
}
button, input, select, textarea {
   font-family: inherit;
   font-size: inherit;
   line-height: inherit;
}
.hs-button,
.button{
   margin: 0;
   cursor: pointer;
   display: inline-block;
   letter-spacing: 0.5px; 
   font-style: normal;
   font-weight: bold;
   font-size: 16px;
   border-style: solid;
   text-decoration: none !important;
   transition:  all .2s ease;
}

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

.hs-button:active,
.button:active{
   background-color: ;
   border-color: ;
}
.hs-form label {
   color: #4c4c4c;
   display: block;
   font-size: 13px;
   font-weight: normal;
   padding: 0;
   margin: 1px 0 3px 0;
   font-weight: bold;
}
.hs-error-msgs label {
   color: red !important;
}

.hs-input,
.hs-search-field__input,
.email-edit.hs-input, 
#hs-pwd-widget-password{
   border: 1px solid #b0b0b0;
   background: #fff;
   -webkit-box-sizing: border-box;
   -moz-box-sizing: border-box;
   box-sizing: border-box;
   margin: 0;
   padding: 5px;
   -moz-border-radius: 4px;
   -webkit-border-radius: 4px;
   border-radius: 4px;
   height: auto !important;
   display: block;
   width: 100%;
   transition: all .2s ease;
}

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

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

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

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

.hs-input input,
.hs-input textarea {
   transition: border 0.2s linear;
}
.hs-input:focus,
.hs-search-field__input:focus,
.email-edit.hs-input:focus, 
#hs-pwd-widget-password:focus {
   outline: none;
   border: 1px solid rgba(245, 47, 110, 0.4);
   box-sizing: border-box;
   box-shadow: 0px 80px 80px -20px rgba(245, 47, 110, 0.08), 0px 30px 24px -10px rgba(245, 47, 110, 0.05), 0px 12px 10px -6px rgba(245, 47, 110, 0.04), 0px 4px 4px -4px rgba(30, 33, 44, 0.03);
}

textarea.hs-input {
   height: auto;
}

select[multiple].hs-input {
   height: inherit;
}
select.hs-input {
   -webkit-border-radius: 3px;
   -moz-border-radius: 3px;
   -ms-border-radius: 3px;
   border-radius: 3px;
}
textarea.hs-input {
   height: auto;
}

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

.actions {
   padding: 0;
}

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

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

.field {
   margin-bottom: 18px;
}

.hs-field-desc {
   color: ;
   margin: 0px 0px 6px;
   font-size: 14px;
}
#hs-pwd-widget-password {
   height: 40px !important;
   margin: 0 0 18px !important;
}
.hs-form-required {
   color: red;
}

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

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

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

.hs-default-font-element,
.hs-main-font-element {
   font-family: ;
}

@media (max-width: 767px) {
   form {
      max-width: 100%;
   }
}
/* Table */

table {
  border: 1px solid;
  margin-bottom: 1.4rem;
  overflow-wrap: break-word;
}

/* Table Cells */

th,
td {
  border: 1px solid;
  padding: 0.75rem;
  vertical-align: top;
}

/* Table Header */

thead th,
thead td {
  border-bottom: 2px solid;
  vertical-align: bottom;
}

/* Components
Specific pieces of UI that are stylized. Typically used for global partial styling
*/

.page-center {
   max-width: 1170px;
   margin: 0 auto;
}
.footer .page-center {
   padding: 0 15px;
}
.footer .page-center .row-fluid {
   margin: 0 -15px;
   width: auto;
}
.footer .page-center .row-fluid > div {
   padding: 0 10px;
   position: relative
}
.footer h3 { 
   font-style: normal;
   font-weight: 900;
   font-size: 14px;
   line-height: 150%;
   display: flex;
   align-items: center;
   color: #FFFFFF;
   margin: 0 0 16px;
}
.footer p { 
   font-style: normal;
   font-weight: normal;
   font-size: 18px;
   line-height: 160%;
   color: #FFFFFF;
   margin: 0;
}
footer.footer {
   padding: 60px 0;
}
.footer .hs-menu-wrapper > ul {
   display: block;
   margin: 0;
   list-style: none;
}
.footer .hs-menu-wrapper > ul > li {
   display: block;
   width: 100%;
}
.footer .hs-menu-wrapper > ul > li > a {
   display: table;
   font-weight: normal;
   font-size: 18px;
   line-height: 160%;
}
.footer .social-links {
   display: block;
}
.footer .social-links ul {
   padding: 0;
   list-style: none;
   margin: 0;
   display: flex;
}
.footer .social-links ul a {
   display: flex;
   width: 32px;
   height: 32px;
   background: rgba(255,255,255,0.12);
   border-radius: 100%;
   justify-content: center;
   align-items: center;
   color: #fff;
}
.footer .social-links ul li:not(:last-child) {
   padding-right: 8px;
}
.footer .social-links ul a:hover {
   background: #fff;
   color: #2E506C;
}
.footer .social-links ul a path {
   fill: currentColor;
   transition: all;
}
.footer h3.form-title {
   background: none;
   margin-bottom: 24px;
}

.footer .hs-form-field > label {
   display: none;
}

.footer .hs-form-field .hs-input {
   background: rgba(255, 255, 255, 0.12);
   border: 1px solid rgba(255, 255, 255, 0.2);
   box-sizing: border-box;
   border-radius: 4px;
   padding: 9px 50px 9px 12px;
   line-height: normal;
   font-style: normal;
   font-weight: normal;
   font-size: 12px;
   line-height: 150%;
   color: rgba(255,255,255,0.6);
}

.footer .hs-form-field .hs-input::-webkit-input-placeholder {
   color: inherit;
   opacity: 1;
}

.footer .hs-form-field .hs-input:-moz-placeholder {
   color: inherit;
   opacity: 1;
}
.footer .hs-form-field .hs-input:focus {
   color: #fff;
}
.footer .hs-form p { 
   font-style: normal;
   font-weight: normal;
   font-size: 10px;
   line-height: 150%;
   margin: 12px 0 0;
}
.footer .hs-form .hs-form-field {
   margin: 0;
}
.footer .hs-form {
   position: relative;
}
.footer .hs-submit {
   position: absolute;
   right: 0;
   top: 0;
}
.footer .hs-button {
   background-color: transparent !important;
   background-size: 12px 7.33px;
   background-repeat: no-repeat;
   background-position: center center;
   padding: 0;
   font-size: 0;
   height: 38px;
   border: 0 !important;
   width: 38px;
   display: block;
   background-image: url('//8794357.fs1.hubspotusercontent-na1.net/hubfs/8794357/raw_assets/public/Gillespie%20Jun%2021%20-%20New%20Theme/images/Button%20Arrow.svg');
      }

#back-to-top {
   display: flex;
   align-items: center;
   justify-content: center;
   margin-left: auto;
   cursor: pointer;
}

.backTopSection {
   display: flex !important;
}

#back-to-top > span { 
   font-style: normal;
   font-weight: normal;
   font-size: 14px;
   line-height: 150%;
   margin-right: 16px;
}
#back-to-top > p {
   margin: 0;
   width: 40px;
   height: 40px;
   display: flex;
   align-items: center;
   justify-content: center;
   background: #2E5078;
   border-radius: 4px;
   transition: all .2s ease;
}
#back-to-top:hover > p {
   background: #fff;
   color: #2E506C;
}
#back-to-top > p path {
   fill: currentColor;
}
.copyright { 
   font-style: normal;
   font-weight: normal;
   font-size: 12px;
   line-height: 150%;
}
.maker p { 
   font-style: normal;
   font-weight: normal;
   font-size: 12px;
   line-height: 150%;
   display: flex;
   align-items: center;
}
.maker p svg {
   margin: 0 4px;
}
.page-center.bottom-row {
   display: flex;
   justify-content: space-between;
   margin-top: 50px;
}
.bottom-row .left-content {
    width: 70%;
}
.bottom-row .right-content {
    width: 30%;
    display: flex;
    justify-content: flex-end;
}
.bottom-row p {
    font-size: 14px;
}

@media (max-width: 1199px) {
   .page-center {
      max-width: 991px;
   }
}

@media (max-width: 992px) {
   .page-center {
      max-width: 750px;
   }
}

@media (max-width: 850px) and (min-width: 768px) {
   .footer .social-links ul li:not(:last-child) {
      padding-right: 4px;
   }
}

@media (max-width: 767px) {
   .page-center {
      max-width: 100%;
   }
   .footer .page-center .row-fluid > div {
      margin-bottom: 30px;
   }
   .footer .page-center .row-fluid > div.backTopSection {
      margin: 0;
   }
   #back-to-top {
      margin: 0;
   }
   .footer h3,.footer h3.form-title {
      margin-bottom: 10px;
   }
   .page-center.bottom-row {flex-wrap: wrap;}
   .bottom-row .left-content,
   .bottom-row .right-content {
      width: 100%;
   }
   .bottom-row .right-content {
      width: 100%;
      justify-content: center;
      margin-top: 50px;
   }
}
/* Menu and simple menu */

.hs-menu-wrapper ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding-left: 0;
}

/* Horizontal menu */

.hs-menu-wrapper.hs-menu-flow-horizontal .hs-menu-children-wrapper {
  flex-direction: column;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-horizontal ul {
    flex-direction: column;
  }
}

/* Vertical menu */

.hs-menu-wrapper.hs-menu-flow-vertical ul {
  flex-direction: column;
}

/* Flyouts */

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts ul {
  display: inline-flex;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-vertical ul {
    display: flex;
  }
}

.hs-menu-wrapper.flyouts .hs-item-has-children {
  position: relative;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper {
  left: -9999px;
  opacity: 0;
  position: absolute;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper a {
  display: block;
  white-space: nowrap;
}

.hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  left: 0;
  opacity: 1;
  top: 100%;
}

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  left: 100%;
  opacity: 1;
  top: 0;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.flyouts .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
    left: 0;
    opacity: 1;
    position: relative;
    top: auto;
  }
}

/* CTA, logo, and rich text images */

.hs_cos_wrapper_type_cta img,
.hs_cos_wrapper_type_logo img,
.hs_cos_wrapper_type_rich_text img {
  height: auto;
  max-width: 100%;
}
/* Home Page */
/* body.withBanner { */
/*    padding-top: 0; */
}
body.withBanner:not(.fixheader) header.header{
/*    background-color: transparent; */
}
.row {
   display: flex;
   flex-wrap: wrap;
}
.row > div {
   padding-left: 15px;
   padding-right: 15px;
}
.body-container--home .hs-button {
   padding-top: 7px;
   padding-bottom: 7px;
}
.body-container--home .hs-button.reverse {
   color: rgba(46,80,108,1.0);
   border-color: rgba(46,80,108,1.0);
   background-color: rgba(255,255,255,1.0);
}
.body-container--home .hs-button.reverse:hover {
   color: rgba(255,255,255,1.0);
   border-color: rgba(46,80,108,1.0);
   background-color: rgba(46,80,108,1.0);
}
.title {
   font-family: Aeonik-Regular,Arial;
   font-style: normal;
   font-weight: bold;
   font-size: 16px;
   line-height: 150%;
   letter-spacing: 1px;
   text-transform: uppercase;
   color: #1E212C;
   margin: 8px 0;
   width: 100%;
}
.heading {
   font-family: Aeonik-Bold,Arial-bold;
   font-style: normal;
   font-weight: 900;
   font-size: 46px;
   line-height: 130%;
   color: #1E212C;
   margin: 8px 0px;
   width: 100%;
}
.acc-content {
   display: none;
}
.acc-trigger {
   cursor: pointer;
   font-family: Aeonik-Bold,Arial-bold;
   font-style: normal;
   font-weight: bold;
   font-size: 28px;
   line-height: 150%;
   display: flex;
   align-items: center;
   color: #1E212C;
}
.acc-trigger:before {
   content: "";
   width: 22px;
   height: 22px;
   display: block;
   background-repeat: no-repeat;
   background-size: contain;
   background-position: center;
   margin-right: 20px;
   background-image: url('//8794357.fs1.hubspotusercontent-na1.net/hubfs/8794357/raw_assets/public/Gillespie%20Jun%2021%20-%20New%20Theme/images/Plus.svg');
      }
.acc-trigger.active:before {
   background-size: cover;
   background-image: url('//8794357.fs1.hubspotusercontent-na1.net/hubfs/8794357/raw_assets/public/Gillespie%20Jun%2021%20-%20New%20Theme/images/Minus.svg');
      }
.acc-item {
   margin-bottom: 15px;
}
.acc-content p {
   font-style: normal;
   font-weight: normal;
   font-size: 18px;
   line-height: 160%;
   color: #787A80;
}
.acc-content > div {
   padding-left: 45px;
}

/* Slider */
.slick-slider
{
   position: relative;

   display: block;
   box-sizing: border-box;

   -webkit-user-select: none;
   -moz-user-select: none;
   -ms-user-select: none;
   user-select: none;

   -webkit-touch-callout: none;
   -khtml-user-select: none;
   -ms-touch-action: pan-y;
   touch-action: pan-y;
   -webkit-tap-highlight-color: transparent;
}

.slick-list
{
   position: relative;

   display: block;
   overflow: hidden;

   margin: 0;
   padding: 0;
}
.slick-list:focus
{
   outline: none;
}
.slick-list.dragging
{
   cursor: pointer;
   cursor: hand;
}

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

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

   display: block;
   margin-left: auto;
   margin-right: auto;
}
.slick-track:before,
.slick-track:after
{
   display: table;

   content: '';
}
.slick-track:after
{
   clear: both;
}
.slick-loading .slick-track
{
   visibility: hidden;
}

.slick-slide
{
   display: none;
   float: left;

   height: 100%;
   min-height: 1px;
}
[dir='rtl'] .slick-slide
{
   float: right;
}
.slick-slide img
{
   display: block;
}
.slick-slide.slick-loading img
{
   display: none;
}
.slick-slide.dragging img
{
   pointer-events: none;
}
.slick-initialized .slick-slide
{
   display: block;
}
.slick-loading .slick-slide
{
   visibility: hidden;
}
.slick-vertical .slick-slide
{
   display: block;
   height: auto;
   border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
   display: none;
}
.slick-buttons {
   display: flex;
   margin-left: auto;
   padding-bottom: 52px;
}

.slick-buttons > div {
   height: 48px;
   width: 48px;
   display: flex !important;
   align-items: center;
   justify-content: center;
   border-radius: 100%;
   transition: all .2s ease;
   background: transparent;
   cursor: pointer;
   color: #424551;
}

.slick-buttons > div:hover {
   background: #2E506C;
   color: #FFF;
}

.slick-buttons > div path {
   fill: currentColor;
}

.next.slick-arrow > svg {
   transform: rotate(180deg);
}
.full-width-page .oembed_container {
    max-height: none !important;
    max-width: 100% !important;
    display: block !important;
}

.full-width-page .oembed_custom-thumbnail {
    max-height: none !important;
    max-width: none !important;
}

.full-width-page .oembed_custom-thumbnail_icon {
    display: none !important;
}

.full-width-page .oembed_container_iframe {
    max-width: 100% !important;
    max-height: 100% !important;
}
.close {
  float: right;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: .5;
}

.close:focus, .close:hover {
  color: #000;
  text-decoration: none;
  opacity: .75;
}

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

.modal-open {
  overflow: hidden;
}

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

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

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

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

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

.modal-content {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
  outline: 0;
}

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

.modal-backdrop.fade {
  opacity: 0;
}

.modal-backdrop.show {
  opacity: 0.5;
}

.modal-header {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: justify;
      justify-content: space-between;
  padding: 15px;
  border-bottom: 1px solid #e9ecef;
  border-top-left-radius: 0.3rem;
  border-top-right-radius: 0.3rem;
}

.modal-header .close {
  padding: 15px;
  margin: -15px -15px -15px auto;
}

.modal-title {
  margin-bottom: 0;
  line-height: 1.5;
}

.modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
      flex: 1 1 auto;
  padding: 15px;
}

.modal-footer {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: end;
      justify-content: flex-end;
  padding: 15px;
  border-top: 1px solid #e9ecef;
}

.modal-footer > :not(:first-child) {
  margin-left: .25rem;
}

.modal-footer > :not(:last-child) {
  margin-right: .25rem;
}

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

@media (min-width: 576px) {
  .modal-dialog {
    max-width: 500px;
    margin: 30px auto;
  }
  .modal-sm {
    max-width: 300px;
  }
}

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



@media (min-width: 768px) {
   .hide-desktop {
      display: none !important;
   }
}

@media (max-width: 767px) {
   .body-container--home .hs-button {
      font-size: 14px;
      line-height: normal;
      padding-top: 16px;
      padding-bottom: 16px;
   }
   body.mobile-open.withBanner:not(.fixheader) header.header {
      background: rgba(30,33,44,1.0);
   }
   .hide-phone {
      display: none !important;
   }
}

@media (max-width: 480px) {
   .body-container--home .hs-button {
      font-size: 13px;
      padding-left: 15px;
      padding-right: 15px;
   }
}