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

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

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

/**
 * Add the correct box sizing in Firefox.
 */

hr {
  box-sizing: content-box;
  height: 0;
}

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

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, 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: bold;
}

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

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

/**
 * Remove the inheritance of text transform in Edge and Firefox.
 * 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;
}

/**
 * Remove the padding so developers are not caught out when they zero out `fieldset` elements in all browsers.
 */

legend {
  padding: 0;
}

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

progress {
  vertical-align: baseline;
}

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

details {
  display: block;
}

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

summary {
  display: list-item;
}

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



/* CSS variables */

:root {
  --column-gap: 2.13%;
  --column-width-multiplier: 8.333;
}

/* Mobile layout */

.row-fluid {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}


  .row-fluid .span1,
  .row-fluid .span2,
  .row-fluid .span3,
  .row-fluid .span4,
  .row-fluid .span5,
  .row-fluid .span6,
  .row-fluid .span7,
  .row-fluid .span8,
  .row-fluid .span9,
  .row-fluid .span10,
  .row-fluid .span11,
  .row-fluid .span12{
  min-height: 1px;
  width: 100%;
}

/* Desktop layout */

@media (min-width: 768px) {
  .row-fluid {
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  
    .row-fluid .span1 {
      width: calc(var(--column-width-multiplier) * 1% * 1 - var(--column-gap) * (11 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span2 {
      width: calc(var(--column-width-multiplier) * 1% * 2 - var(--column-gap) * (10 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span3 {
      width: calc(var(--column-width-multiplier) * 1% * 3 - var(--column-gap) * (9 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span4 {
      width: calc(var(--column-width-multiplier) * 1% * 4 - var(--column-gap) * (8 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span5 {
      width: calc(var(--column-width-multiplier) * 1% * 5 - var(--column-gap) * (7 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span6 {
      width: calc(var(--column-width-multiplier) * 1% * 6 - var(--column-gap) * (6 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span7 {
      width: calc(var(--column-width-multiplier) * 1% * 7 - var(--column-gap) * (5 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span8 {
      width: calc(var(--column-width-multiplier) * 1% * 8 - var(--column-gap) * (4 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span9 {
      width: calc(var(--column-width-multiplier) * 1% * 9 - var(--column-gap) * (3 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span10 {
      width: calc(var(--column-width-multiplier) * 1% * 10 - var(--column-gap) * (2 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span11 {
      width: calc(var(--column-width-multiplier) * 1% * 11 - var(--column-gap) * (1 * var(--column-width-multiplier) / 100));
    }
  
}
div[class*="force-full-width-section"]>.row-fluid {
  padding-left: 0;  
  padding-right: 0;
} 
.dnd-section > .row-fluid, .page-center, .content-wrapper {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
}

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

/* .dnd-section .dnd-column {
padding: 0 1rem;
} */

@media (max-width: 767px) {
  .dnd-section .dnd-column {
    padding: 0;
  }
  .dnd-section > .row-fluid, .page-center, .content-wrapper {
    padding-left: 16px;
    padding-right: 16px;
  }
}

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

/* The overflow-wrap is meant to prevent long/large words from breaking the mobile responsiveness of a page (e.g. horizontal scrolling). It is preferred to reduce font sizes on mobile to address this, with this CSS specifically helping with extreme scenarios where a reduction in font size is not possible. */

body {
  line-height: 1.8;
  overflow-wrap: break-word;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #fff;
}

/* Handles word breaking for a few specific languages which handle breaks in words differently. If your content is not translated into these languages, you can safely remove this.  */

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


/* Paragraphs */

p {
  margin: 0 0 24px;
}
p:last-child {
  margin-bottom: 0;
}

/* Anchors */

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


/* Headings */

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 1.5rem;
  line-height: 1.3;
}

/* Lists */

ul,
ol {
  margin: 0 0 1.5rem;
  padding-left: 18px;
}

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

ul li,
ol li{
  margin-bottom: 15px;
}

ul.no-list {
  list-style: none;
  margin: 0;
  padding-left: 0;
}

/* Code blocks */

pre {
  overflow: auto;
}

code {
  vertical-align: bottom;
}

/* Blockquotes */

blockquote {
  border-left: 4px solid;
  margin: 0 0 1.2rem;
  padding-left: 0.7rem;
  font-size: 1.2rem;
  font-weight: 500;
}

/* Horizontal rules */

hr {
  border: none;
  border-bottom: 1px solid #CCC;
}

/* Image alt text */

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

/* Clearfix */
.clearfix:before, .clearfix:after{
  content: '';
  display: table;
}
.clearfix:after{
  clear: both;
}


/*== Hidden Phone and Desktop ==*/

@media (min-width: 768px){
  .hidden-desktop, .visible-phone, .visible-tablet {
    display: none!important;
  }
}

@media (max-width: 768px){
  .hidden-phone {
    display: none!important;
  }
}


/*========= HsCol Width Css=========*/
.hsrow {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.hscol{
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}
.no-gutters {
  margin-right: 0;
  margin-left: 0
}
.no-gutters > .hscol , .no-gutters > [class*=hscol-] {
  padding-right: 0;
  padding-left: 0
}

@media (min-width: 300px) {
  .hscol-1{
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .hscol-2{
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .hscol-3{
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .hscol-4{
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .hscol-5{
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .hscol-6{
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .hscol-7{
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .hscol-8{
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .hscol-9{
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .hscol-10{
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .hscol-11{
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .hscol-12{
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (min-width: 480px) {
  .hscol-sm-1{
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .hscol-sm-2{
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .hscol-sm-3{
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .hscol-sm-4{
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .hscol-sm-5{
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .hscol-sm-6{
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .hscol-sm-7{
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .hscol-sm-8{
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .hscol-sm-9{
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .hscol-sm-10{
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .hscol-sm-11{
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .hscol-sm-12{
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (min-width: 768px) { 
  .hscol-md-1{
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .hscol-md-2{
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .hscol-md-3{
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .hscol-md-4{
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .hscol-md-5{
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .hscol-md-6{
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .hscol-md-7{
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .hscol-md-8{
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .hscol-md-9{
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .hscol-md-10{
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .hscol-md-11{
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .hscol-md-12{
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  } 
}

@media (min-width: 992px) {
  .hscol-lg-1{
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .hscol-lg-2{
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .hscol-lg-3{
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .hscol-lg-4{
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .hscol-lg-5{
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .hscol-lg-6{
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .hscol-lg-7{
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .hscol-lg-8{
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .hscol-lg-9{
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .hscol-lg-10{
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .hscol-lg-11{
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .hscol-lg-12{
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  } 
}

@media (min-width: 1200px) {
  .hscol-xl-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%
  }
  .hscol-xl-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%
  }
  .hscol-xl-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%
  }
  .hscol-xl-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%
  }
  .hscol-xl-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%
  }
  .hscol-xl-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%
  }
  .hscol-xl-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%
  }
  .hscol-xl-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%
  }
  .hscol-xl-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%
  }
  .hscol-xl-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%
  }
  .hscol-xl-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%
  }
  .hscol-xl-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%
  }
}
button,
.button {
  cursor: pointer;
  border-style: solid;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 1;
  text-decoration: none;
  outline: none;
}
button:hover,
.button:hover{
  text-decoration: none;
  outline: none;
}

button:focus,
.button:focus{
  outline: none;
}

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


/* Button Type 2 */
.button-type2{
  border-style: solid;
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.3s linear;
  white-space: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
  text-decoration: none;
  outline: none;
}
.button-type2:hover{
  text-decoration: none;
  outline: none;
}
.button-type2:focus{
  outline: none;
}

/* No button */

.no-button,
.no-button:hover,
.no-button:focus,
.no-button:active {
  background: none;
  border: none;
  border-radius: 0;
  color: initial;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  margin-bottom: 0;
  padding: 0;
  text-align: left;
  text-decoration: none;
  transition: none;
}

@media only screen and (max-width: 767px) {
  .button-type2{
    font-size: 16px;
  }
}
/* Fields */

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

/* Labels */

form label {
  display: block;
  font-size: 14px;
  margin-bottom: 5px;
  font-weight: 400;
  line-height: 1.2;
}

/* Form Title */
.form-title {
  margin-bottom: 20px;
}

/* Help text */

form legend {
  font-size: 0.875rem;
}

/* Inputs */

form input[type=text],
form input[type=search],
form input[type=email],
form input[type=password],
form input[type=tel],
form input[type=number],
form input[type=file],
form select,
form textarea {
  display: block;
  font-size: 14px;
  padding: 6px 16px;
  width: 100% !important;
  max-width: 100%;
  min-height: 56px;
  line-height: normal;
  border-style: solid;
  font-weight: 500;
  outline: none;
}

form textarea {
  resize: vertical;
  min-height: 70px;
}

form .hs-input:focus{
  outline: none;
} 

form fieldset {
  max-width: 100% !important;
}

.hs-dateinput .hs-datepicker{
  bottom: 0;
}

/* Inputs - checkbox/radio */

form .inputs-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

form .inputs-list > li {
  display: block;
  margin: 0.7rem 0;
}

form .inputs-list input,
form .inputs-list span {
  vertical-align: middle;
}

form input[type=checkbox],
form input[type=radio] {
  cursor: pointer;
  margin-right: 0.35rem;
}

/* Placeholder */
::-webkit-input-placeholder {
  opacity: 0.6;
  font-weight: 500;
}

::-webkit-input-placeholder,
::-moz-placeholder,
:-ms-input-placeholder,
:-moz-placeholder,
::placeholder,
.hs-fieldtype-date .input .hs-dateinput:before {
  opacity: 0.6;
  font-weight: 500;
}


/* Inputs - date picker */

.hs-dateinput {
  position: relative;
}

.hs-dateinput:before {
  content:'\01F4C5';
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
}

.fn-date-picker .pika-table thead th {
  color: #FFF;
}

.fn-date-picker td.is-selected .pika-button {
  border-radius: 0;
  box-shadow: none;
}

.fn-date-picker td .pika-button:hover,
.fn-date-picker td .pika-button:focus {
  border-radius: 0 !important;
  color: #FFF;
}

/* Inputs - file picker */

/* form input[type=file] {
  background-color: transparent;
  border: initial;
  padding: initial;
} */

/* Headings and text */

form .hs-richtext,
form .hs-richtext p {
  font-size: 0.875rem;
  margin: 0 0 1.4rem;
}

form .hs-richtext img {
  max-width: 100% !important;
}

/* GDPR */

.legal-consent-container .hs-form-booleancheckbox-display > span,
.legal-consent-container .hs-form-booleancheckbox-display > span p {
  margin-left: 1rem !important;
}

/* Validation */

.hs-form-required {
  color: #e81c18;
}

.hs-input.invalid.error {
  color: #e81c18;
}

.hs-error-msg {
  color: #e81c18;
  margin-top: 0.35rem;
  font-size: 14px;
  line-height: 1.3;
}

ul.hs-error-msgs.inputs-list li {
  margin-bottom: 0;
}

form .hs_error_rollup {
    display: none;
}

/* Submit button */

form input[type=submit],
form .hs-button, .hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.3s linear;
  white-space: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.2;
  text-decoration: none;
  outline: none;
  border-style: solid;
  min-width: 150px;
}

form input[type=submit]:hover,
form .hs-button:hover,
.hs-button:hover{
  text-decoration: none;
  outline: none;
}

form input[type=submit]:focus,
form .hs-button:focus,
.hs-button:focus{
  outline: none;
}

h3.form-title:empty {
  display: none;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  display: none;
}

/* Captcha */

.grecaptcha-badge {
  margin: 0 auto;
}

.hs_recaptcha.hs-recaptcha.field.hs-form-field {
  display: none;
}


@media only screen and (min-width: 551px) {
  form fieldset.form-columns-3 .hs-form-field{
    width: 33.333% !important; 
  }
  form fieldset.form-columns-3 .hs-form-field:not(:last-child) .input,
  form fieldset.form-columns-2 .hs-form-field:not(:last-child) .input{
    margin-right: 10px;
  }
  form fieldset.form-columns-3 .hs-form-field:last-child .input,
  form fieldset.form-columns-2 .hs-form-field:last-child .input,
  form fieldset.form-columns-1 .hs-form-field .input{
    margin-right: 0;
  }
}

@media only screen and (max-width: 550px) {
  form .hs-form-field, form fieldset .hs-form-field {
    width: 100% !important;
  }
  form .hs-form-field > .input, form fieldset .hs-form-field > .input {
    margin-right: 0 !important;
  }
}




  /* Search button input field and suggestions */
  .body-container-wrapper .hs-search-field__button {
    padding: 15px;
  }

  .body-container-wrapper .hs-search-field__bar--button-inline .hs-search-field__button {
    margin-left: 6px;
    margin-bottom: 0;
  }

  .body-container-wrapper .hs-search-field__button svg {
    height: 18px;
    fill: #000;
  }

  .body-container-wrapper .hs-search-field__bar > form > .hs-search-field__input {
    padding: 10px;
  }

  .body-container-wrapper .hs-search-field__suggestions li a {
    color: #494A52;
    padding: 0.35rem 0.7rem;
    text-decoration: none;
    transition: background-color 0.3s;
  }

/* Table */

table {
  border-collapse: collapse;
  margin-bottom: 1.4rem;
  overflow-wrap: break-word;
}

/* Table cells */

td,
th {
  vertical-align: top;
}

/* Table header */

thead th {
  vertical-align: bottom;
}

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

.custom-header {
  padding-top: 20px;
  padding-bottom: 20px;
  position: relative;
  line-height: 1.3;
  position: fixed;
  z-index: 5;
  width: 100%;
  top: 0;
  left: 0;
  backdrop-filter: blur(30px);
}
.body-wrapper {
  padding-top: 88px;
}
.custom-header .page-center{
  max-width: 100%;
}
.custom-header .header-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.custom-header .header-logo a img {
  max-width: 205px;
}


.header-menu .hs-menu-wrapper > ul{
  margin: 0;
  padding: 0;
  list-style: none;
}
.header-menu .hs-menu-wrapper > ul  li,
.menu-mobile .hs-menu-wrapper > ul  li{
  margin-bottom: 0;
}


@media only screen and (min-width: 1200px)  {
  .custom-header .page-center{
    padding-left: 72px;
    padding-right: 72px;
    max-width: 1600px;  
  }
}

@media only screen and (min-width: 992px)  {
  .custom-header .header-contact-button .hs-button {
    min-width: 200px;
  }
}

@media only screen and (min-width: 768px)  {
  .custom-header .mobile-menu{
    display: none;
  }
  .header-menu .hs-menu-wrapper > ul{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .header-menu .hs-menu-wrapper > ul > li > a {
    padding: 10px 16px;
    display: inline-block; 
    border-radius: 25px;
    font-weight: 500;
  }
  .header-menu .hs-menu-wrapper > ul > li > a:hover{
    text-decoration: underline;
  }
  .custom-header .header-menu .hs-menu-wrapper > ul > li.active > a{
    text-decoration: underline;
  }
  .custom-header .mobile-trigger{
    display: none;
  }
}

@media only screen and (max-width: 991px) and (min-width: 768px) {
  .custom-header .header-logo a img {
    max-width: 200px;
  }
  .header-menu .hs-menu-wrapper > ul > li > a {
    padding: 10px 15px;
  }
}

@media only screen and (max-width: 767.9px)  {
  .custom-header {
    padding-bottom: 26px;
    padding-top: 26px;
  }
  .custom-header .header-menu, .custom-header .header-contact-button{
    display: none;
  }
  .custom-header .header-logo a img {
    max-width: 176px;
  }
  .mobile-trigger {
    cursor: pointer;
    position: relative;
    z-index: 11;
    background-color: transparent;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
  }
  body.mobile-open .mobile-trigger {
    background-color: #f5f5f5;
  }
  .custom-header .mobile-trigger-cross,
  body.mobile-open .custom-header .mobile-trigger-line{
    display: none;
  }
  body.mobile-open .custom-header .mobile-trigger-cross{
    display: initial;
  }
  .mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #fff;
    z-index: 10;
    opacity: 0;
    transition: none;
    visibility: hidden;
    padding: 114px 40px 30px;
  }
  body.mobile-open .mobile-menu {
    opacity: 1;
    visibility: visible;
    transition: opacity .3s ease;
  }
  body.mobile-open {
    overflow: hidden;
  }
  .mobile-menu .mobile-menu-wrap {
    width: 100%;
    height: 100%;
    overflow-y: auto;
  }
  .mobile-menu .mobile-logo a img {
    max-width: 176px;
  }
  .mobile-menu .mobile-contact-button .hs-button {
    min-width: 100%;
  }
  .mobile-menu .menu-mobile {
    margin-top: 44px;
    margin-bottom: 44px;
  }
  .mobile-menu .menu-mobile .hs-menu-wrapper > ul{
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .mobile-menu .menu-mobile .hs-menu-wrapper > ul li > a {
    font-size: 24px;
    display: block;
    font-weight: normal;
    line-height: 29px;
    position: relative;
    padding: 20px 0;
  }
  .mobile-menu .menu-mobile .hs-menu-wrapper > ul li > a:after {
    font-family: 'Material Icons';
    content: 'chevron_right';
    vertical-align: middle;
    position: absolute;
    right: 0;
    color: #999999;
  }
}
/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/

.custom-footer{
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
}
.custom-footer .top-footer{
  padding-top: 80px;
  padding-bottom: 50px;
}
.custom-footer .page-center {
  max-width: 1600px;
}
.top-footer .footer-menu1 {
  width: 20%;
}
.top-footer .footer-menu2 {
  width: 24%;
}
.top-footer .footer-address{
  width: 26%;
}
.top-footer .footer-form {
  width: 30%;
}
.custom-footer .top-footer .footer-title{
  margin-bottom: 40px;
  font-size: 22px;
}
.custom-footer a:hover{
  text-decoration: underline;
}
.custom-footer .footer-menu .hs-menu-wrapper ul{
  margin: 0;
  padding: 0;
  list-style: none;
}
.custom-footer .footer-menu .hs-menu-wrapper ul li{
  margin-bottom: 24px;
}
.custom-footer .footer-menu .hs-menu-wrapper ul li:last-child{
  margin-bottom: 0px;
}
.custom-footer .footer-menu .hs-menu-wrapper ul li.linkedin > a:after{
  content: "arrow_outward";
  font-family: Material Icons;
  color: #676767;
  font-size: 16px;
  margin-left: 5px;
  vertical-align: middle;
} 
.custom-footer .footer-contact p{
  margin-bottom: 30px;
}
.custom-footer .footer-contact p:last-child{
  margin-bottom: 0;
}
.custom-footer .footer-contact p svg {
  height: 20px;
  margin-right: 5px;
  vertical-align: top;
  width: 20px;
}
.custom-footer .footer-contact p span {
  display: inline-block;
}
.custom-footer .top-footer .footer-form h4.footer-title {
  margin-bottom: 16px;
}
.custom-footer .footer-form .footer-form-title{
  margin-bottom: 40px;
  font-size: 16px;
}
.custom-footer .footer-form form{
  position: relative;
}
.custom-footer .footer-form form .hs-form-field {
  margin-bottom: 0px;
}
.custom-footer .footer-form form ::-webkit-input-placeholder {
  opacity: 1;
}
.custom-footer .footer-form .hs-submit {
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
}
.custom-footer .footer-form .hs-submit .actions{
  position: relative;
}
.custom-footer .footer-form .hs-submit .actions:after{
  content: '';
  background-image: url(//46086670.fs1.hubspotusercontent-na1.net/hubfs/46086670/raw_assets/public/Downtown_Engineers_2024/images/check-sign.png);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
  background-position: center center;
  background-size: contain;
}
.custom-footer .footer-form .hs-submit .hs-button {
  text-indent: -1000px;
  min-height: 56px;
  padding: 18px 36px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  position: relative;
  min-width: unset;
}
.footer-form .submitted-message {
  box-shadow: 0px 4.8px 8px 3.04px #00000026, 0px 0.96px 3.04px 0px #0000004D;
  background: #4A9D63;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  padding: 18.9px 20px;
  border-radius: 4px;
}
.footer-form .submitted-message:before {
  content: 'check';
  font-family: 'Material Icons';
  font-size: 20px;
  line-height: 1;
  vertical-align: middle;
  margin-right: 10px;
}



.custom-footer .bottom-footer{
  padding-top: 30px;
  padding-bottom: 40px;
  text-align: center;
}
.custom-footer .footer-copyright p {
  margin-bottom: 0;
}

@media only screen and (min-width: 991px)  {
  .custom-footer .footer-form .footer-form-title {
    font-size: 14px;
    margin-bottom: 24px;
  }
  .custom-footer .top-footer .footer-form h4.footer-title {
    margin-bottom: 40px;
  }
}

@media only screen and (min-width: 1200px)  {
  .custom-footer .page-center {
    padding-left: 72px;
    padding-right: 72px;
  }
}


@media only screen and (max-width: 991px)  {
  .custom-footer .top-footer {
    padding-bottom: 50px;
    padding-top: 64px;
  }
  .top-footer .footer-menu1 {
    width: 50%;
    order: 2;
  }
  .top-footer .footer-menu2 {
    width: 50%;
    order: 3;
  }
  .top-footer .footer-address{
    width: 100%;
    order: 4;
    margin-top: 64px;
  }
  .top-footer .footer-form {
    width: 100%;
    order: 1;
    margin-bottom: 64px;
  }
  .custom-footer .bottom-footer {
    padding-top: 14px;
  }
  .custom-footer .footer-form .footer-form-title, .custom-footer .top-footer .footer-title {
    margin-bottom: 32px;
  }
  .custom-footer .footer-menu .hs-menu-wrapper ul li {
    margin-bottom: 20px;
  }
}


@media only screen and (max-width: 480px)  {
  .top-footer .footer-menu1{
    margin-bottom: 64px;
  }
  .top-footer .footer-menu1, .top-footer .footer-menu2 {
    width: 100%;
  }
  .top-footer .footer-col {
    text-align: center;
  }
  .top-footer .footer-address .footer-contact {
    max-width: 220px;
    margin: 0 auto;
    text-align: left;
  }
}
/* Menu and simple menu */

.hs-menu-wrapper ul {
  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%;
}

/* Utilities
Helper classes with ability to override anything that comes before it
*/

/* For content that needs to be visually hidden but stay visible for screenreaders */

.show-for-sr {
  border: 0 !important;
  clip: rect(0, 0, 0, 0) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
}

@media (max-width: 767px) {
  .show-for-sr--mobile {
    border: 0 !important;
    clip: rect(0, 0, 0, 0) !important;
    height: 1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    white-space: nowrap !important;
    width: 1px !important;
  }
}

/* Templates
All the website styles
*/

/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/

/*=== Slick Dot Style Start ===*/
.slick-slider ul.slick-dots {
  margin: 40px 0 0 0;
  padding: 0;
  list-style: none;
  text-align: center;
  line-height: 1;
}
.slick-slider ul.slick-dots button {
  display: none;
}
.slick-slider ul.slick-dots li {
  margin-bottom: 0;
  width: 8px;
  height: 8px;
  background-color: #CCCCCC;
  border-radius: 50%;
  display: inline-block;
}
.slick-slider ul.slick-dots li:not(:last-child) {
  margin-right: 24px;
}
.slick-slider ul.slick-dots li.slick-active{
  background-color: #0074D2;
}
/*=== Slick Dot Style End ===*/


.section-title{
  font-size: 36px;
  font-weight: 400;
  text-align: center;
  color: #999999;
  margin-bottom: 64px;
}
.about-page .body-container-wrapper .page-center, .about-page .body-container-wrapper .dnd-section > .row-fluid{
  max-width: 712px;
}
.about-page .why-choose-us .wcu-item .wcu-item-title {
  color: #343434;
  margin-bottom: 0;
}
.about-page .about-row1 .widget-type-linked_image img {
  border-radius: 6px;
}

.contact-row1 .multi-step-form-wrapper .section-title {
  margin-bottom: 40px;
  color: #343434;
  font-weight: 600;
  font-size: 28px;
}


.service-detail-page .service-detail-wrap {
  max-width: 100%;
  padding-left: 20px;
  padding-right: 20px;
  margin: 0 auto;
}
.service-detail-page .bottom-pane .page-center,
.service-detail-page .related-project .page-center,
.service-detail-page .related-posts .page-center{
  padding-left: 0;
  padding-right: 0;
}
.service-detail-page .bottom-pane {
  padding-bottom: 64px;
}

/*====== Privacy Policy Page ========*/
.privacy-policy-page .dnd-section > .row-fluid {
  max-width: 712px;
}
.privacy-policy-page .privacy-policy-row1 .widget-type-rich_text{
  text-align: center;
}
.privacy-policy-page .privacy-policy-row1 .widget-type-rich_text h1 {
  font-size: 26px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 12px;
}
.privacy-policy-page .privacy-policy-row1 .widget-type-rich_text p{
  font-size: 14px;
  line-height: 1.3;
  color: #676767;
}
.privacy-policy-page .privacy-policy-row2 .widget-type-rich_text h6{
  line-height: 1.2;
}
.privacy-policy-page .privacy-policy-row2{
  font-size: 14px;
}




@media only screen and (min-width: 768px)  {
  .service-detail-page .sdp-row-wrap{
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
  }
  .service-detail-page .sdp-row{
    padding-left: 15px;
    padding-right: 15px;
  }
  .service-detail-page .sdp-row1, .service-detail-page .sdp-row3 {
    width: 25%;
  }
  .service-detail-page .sdp-row2 {
    width: 75%;
    max-width: 702px;
  }
  .service-detail-page .sd-sticky-menu{
    position: sticky;
    top: 88px;
  }
}

@media only screen and (min-width: 992px)  {
  .service-detail-page .sdp-row1, .service-detail-page .sdp-row3 {
    width: 20%;
  }
  .service-detail-page .sdp-row2 {
    width: 80%;
  }
}

@media only screen and (min-width: 1200px)  {
  .service-detail-page .sdp-row1, .service-detail-page .sdp-row3 {
    width: 17%;
  }
  .service-detail-page .sdp-row2 {
    width: 66%;
    margin: 0 auto;
  }
}

@media only screen and (min-width: 1540px)  {
  .service-detail-page .sdp-row1, .service-detail-page .sdp-row3 {
    width: 25%;
  }
  .service-detail-page .sdp-row2 {
    width: 50%;
  }
}


@media only screen and (min-width: 1200px)  {
  .service-detail-page .service-detail-wrap{
    max-width: 1600px;
    padding-left: 72px;
    padding-right: 72px;
  }
}

@media only screen and (max-width: 991px) and (min-width: 768px)  {
  .service-detail-page .related-posts .related-post-wrap {
    gap:0 24px;
  }
  .service-detail-page .related-project .related-project-item,
  .service-detail-page .related-posts .related-post-item{
    width: 47.5%;
  }
}

@media only screen and (max-width: 1199.9px)  {
  .service-detail-page .sdp-row3 {
    display: none;
  }
}

@media only screen and (max-width: 767.9px)  {
  .section-title {
    color: #999;
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 40px;
    text-align: center;
  }
  .about-page .about-row1 .widget-type-linked_image {
    margin-left: -16px;
    margin-right: -16px;
    max-width: max-content;
  }
  .contact-page .contact-row1 {
    background-color: #f5f5f5;
    border-bottom: 1px solid #CCCCCC;
  }
  .contact-row1 .multi-step-form-wrapper .msf-container {
    padding-top: 0;
    padding-bottom: 0;
  }
  .about-page .about-row1 .widget-type-linked_image img {
    border-radius: 0px;
  }
  .service-detail-page .service-detail-wrap {
    padding-left: 16px;
    padding-right: 16px;
  }
  .privacy-policy-page .privacy-policy-row1 .widget-type-rich_text h1 {
    font-size: 22px;
  }
}