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




 
 





































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


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

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

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

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

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

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

body {
  margin: 0;
}
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
/**
 * 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;
}

.dnd-section > .row-fluid {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.dnd-section>.row-fluid,
.content-wrapper,
.page-center,
.footer__container,
.header__container{
  padding-left: 20px;
  padding-right: 20px;
}

@media (max-width: 768px) {
  .dnd-section .widget-type-cell {
    padding-left: 0px;
    padding-right: 0px;
  }
}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your
fonts apppear throughout your site.
*********************************************************************************
****************************************************************************** */



@font-face {
    font-family: "Font Awesome 5 Free";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src:
        url("https://9490738.fs1.hubspotusercontent-na1.net/hubfs/9490738/raw_assets/public/ThatPlumber_March2021/fonts/FontAwesome5Free-Regular.woff2") format("woff2"),
        url("https://9490738.fs1.hubspotusercontent-na1.net/hubfs/9490738/raw_assets/public/ThatPlumber_March2021/fonts/FontAwesome5Free-Regular.woff") format("woff");
}

.far {
    font-family: "Font Awesome 5 Free";
    font-weight: 400;
}

/* Font Awesome 5 Free - Solid */

@font-face {
    font-family: "Font Awesome 5 Free";
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    src:
        url("https://9490738.fs1.hubspotusercontent-na1.net/hubfs/9490738/raw_assets/public/ThatPlumber_March2021/fonts/FontAwesome5Free-Solid.woff2") format("woff2"),
        url("https://9490738.fs1.hubspotusercontent-na1.net/hubfs/9490738/raw_assets/public/ThatPlumber_March2021/fonts/FontAwesome5Free-Solid.woff") format("woff");
}

.fa,
.fas {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

.fa,
.fas,
.far {
    display: inline-block;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

@font-face {
  font-family: eicons;
  src: url(https://9490738.fs1.hubspotusercontent-na1.net/hubfs/9490738/ThatPlumber_March2021/Fonts/eicons.eot);
  src: url(https://9490738.fs1.hubspotusercontent-na1.net/hubfs/9490738/ThatPlumber_March2021/Fonts/eicons.eot) format("embedded-opentype"),
    url(https://9490738.fs1.hubspotusercontent-na1.net/hubfs/9490738/raw_assets/public/ThatPlumber_March2021/fonts/eicons.woff2) format("woff2"),
    url(https://9490738.fs1.hubspotusercontent-na1.net/hubfs/9490738/raw_assets/public/ThatPlumber_March2021/fonts/eicons.woff) format("woff"),
    url(https://9490738.fs1.hubspotusercontent-na1.net/hubfs/9490738/raw_assets/public/ThatPlumber_March2021/fonts/eicons.ttf) format("truetype"),
    url(https://9490738.fs1.hubspotusercontent-na1.net/hubfs/9490738/raw_assets/public/ThatPlumber_March2021/fonts/eicons.svg) format("svg");
  font-weight: 400;
  font-style: normal
}
[class*=" eicon-"],[class^=eicon] {
  display: inline-block;
  font-family: eicons;
  font-size: inherit;
  font-weight: 400;
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale
}

@font-face {
  font-family: Astra;
  src: url(https://9490738.fs1.hubspotusercontent-na1.net/hubfs/9490738/ThatPlumber_March2021/Fonts/Astra.eot);
  src: url(https://9490738.fs1.hubspotusercontent-na1.net/hubfs/9490738/ThatPlumber_March2021/Fonts/Astra.eot) format("embedded-opentype"),
    url(https://9490738.fs1.hubspotusercontent-na1.net/hubfs/9490738/raw_assets/public/ThatPlumber_March2021/fonts/Astra.woff2) format("woff2"),
    url(https://9490738.fs1.hubspotusercontent-na1.net/hubfs/9490738/raw_assets/public/ThatPlumber_March2021/fonts/Astra.woff) format("woff"),
    url(https://9490738.fs1.hubspotusercontent-na1.net/hubfs/9490738/raw_assets/public/ThatPlumber_March2021/fonts/Astra.ttf) format("truetype"),
    url(https://9490738.fs1.hubspotusercontent-na1.net/hubfs/9490738/raw_assets/public/ThatPlumber_March2021/fonts/Astra.svg) format("svg");
  font-style: normal
}

.fa, .fab, .fad, .fal, .far, .fas {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}



html {
  font-size: 87.5%;
}

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

p {
  margin-top: 0;
  margin-bottom: 1.75em; 
  font-family: Lato, serif;
}

/* Anchor Links */
a {
  color: #0270E0;
  text-decoration: none;
}
a:hover, a:focus {
  text-decoration: none;
} 
ol, ul {
  margin: 0 0 1.5em 3em;
  padding:0
}
/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 20px;  
  line-height: 1.2;
  font-weight: 700;
  font-family: Merriweather, serif;
  color: #494a52;
  word-break: break-word;
}

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

h2 {
  font-size: 1.6rem;
  line-height: 1;
  letter-spacing: 5px;  
}

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

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

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

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

strong {
  font-weight: 700;
}

code {
  vertical-align: bottom;
}
::selection {
  background-color: #db5c1c;
  color: #ffffff;
}


ul li,
ol li { 

}

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

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

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

/* TODO */
small {

}

/* TODO */
mark {

}

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

@media (max-width: 768px){
  html {
    font-size: 79.8%;
  }
  body h2 {
    font-size: 25px;
  }
  body h1 {
    font-size: 30px;
  }
  body h3 {
    font-size: 20px;
  }

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

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

.hs-button {
  margin: 10px 0;
  cursor: pointer;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  font-family: inherit; 
  display: inline-block; 
}

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

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


.hs-form label { 
  color: #33475b;
  display: block;
  float: none;
  width: auto;
  text-align: left;
  line-height: 1.3;
  padding-top: 0;
  margin-bottom: 4px;
  font-weight: 700;
}
button {
  outline: 0 !important;
} 
form .hs-error-msgs label {
  margin-top: .5rem;
  color: #ff0000;
  font-weight: 700;
  letter-spacing: normal;
  font-size: .813em;
  border-bottom: 1px solid #c89797;
  background-color: rgba(255,223,224,.25);
  padding-bottom: 6px;
  padding-top: 8px;
  margin-bottom: 6px;
} 
input {
  outline: 0;
} 
.hs-input ,
.hs-search-field__input,
form .hs-input[type="text"],
form input[type="password"],
form select,
form textarea{
  display: block;
  width: 100% !important;
  max-width: 600px;
  font-size: 15px;
  padding: 12px 10px;
  font-family: inherit;
  background-color: #fafafa;
  transition: all .2s linear;
  line-height: 1;
  font-weight: 600;
  color: #666; 
}
.hs-input:focus ,
.hs-search-field__input:focus,
form .hs-input[type="text"]:focus,
form input[type="password"]:focus,
form select:focus,
form textarea:focus{ 
  color: #111; 
}


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

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

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

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

.hs-input input,
.hs-input textarea {
  transition: border 0.2s linear;
}
.hs-input:focus {
  outline: none;
  border-color: rgba(82, 168, 236, 0.8);
}

textarea.hs-input {
  height: auto;
}

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

/* Force single column fields to full width inside of fieldsets */
fieldset.form-columns-1 .hs-input:not([type=radio]):not([type=checkbox]) {
  width: 100% !important;
}

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: #c87872;
}
input.hs-input.error:focus,
div.field.error input:focus,
div.field.error textarea:focus,
div.field.error .chzn-choices:focus,
textarea.hs-input.error:focus,
select.hs-input.error:focus {
  border-color: #b9554d;
}

.actions {
  padding: 0;
}

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

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

.field {
  margin-bottom: 18px;
}

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

.hs-form-required {
  color: #790000;
  margin-left: 4px;
} 

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

.grecaptcha-badge {
  margin: 0 auto;
}

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

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

.hs-default-font-element,
.hs-main-font-element {
  font-family: Lato, serif;
}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your
menu items appear, including the link and hover effects.
*********************************************************************************
****************************************************************************** */

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

.hs-menu-item a {
  display: block; 
  text-decoration: none;
}

.hs-menu-item:hover a,
.hs-menu-item:focus a {
  text-decoration: none; 
}

.hs-menu-item.active a { 
}
.hs-menu-wrapper ul ul li {
  width: 100%;
}

.hs-menu-wrapper ul ul {
  margin-left: 0;
}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your
tables look throughout your site.
*********************************************************************************
****************************************************************************** */

table {
  margin-bottom: 1rem;
  border: 1px solid #dee2e6;
}

th,
td {
  padding: 0.75rem;
  vertical-align: top;
  border: 1px solid #dee2e6;
}

thead th,
thead td {
  color: #fff;
  background-color: #343a40;
  border-color: #454d55;
  border-bottom-width: 2px;
}

thead th {
  vertical-align: bottom;
  border-bottom: 2px solid #dee2e6;
}

tbody + tbody {
  border-top: 2px solid #dee2e6;
}

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

.nopd .dnd-section {
  padding: 0;
}

.banner-section .dnd-section>.row-fluid {
  padding: 0 !important;
}
.btn:hover {
  color: #FFFFFF;
  background-color: #DB5C1C;
  border-color: #DB5C1C;
}

.btn {
  fill: #FFFFFF;
  color: #FFFFFF;  
  background-color: #F7941C;
  border-style: solid;
  border-width: 2px 2px 2px 2px;
  border-color: #F7941C;
  border-radius: 100px 100px 100px 100px;
  padding: 15px 15px 15px 15px;
  line-height: 1;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
  display: inline-block;
  font-size: 15px; 
}
.btn i:before {
  content: "\f067";
}

.btn i {
  margin-right: 26px;
} 
.nopd .dnd-section>.row-fluid {
  max-width: 100%;
  padding: 0;
}
.gb_top .page-center {
  padding: 10px;
}
.fa-phone:before {
  content: "\f095";
}
.brd_wrap span.hs-breadcrumb-menu-divider:before {
  content: " | ";
  padding: 0 3.2px;
  display: inline-block;
}
.brd_wrap li.hs-breadcrumb-menu-item {
  padding: 0;
}
.brd_wrap {
  line-height: 1.85714285714286;
  font-size: .85em;
}

a {
  transition: all .2s linear;
}
.sd_row2 .page-center {
  padding: 0;
}
.sd_row2 .page-center > div {
  margin: 0px 50px 0px 50px;
  padding: 60px 50px 100px 50px;
}
.brd_wrap:after {
  display: block;
  clear: both;
  content: ""; 
}
.slick-arrow {
  position: absolute;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  z-index: 1;
  cursor: pointer;
  font-size: 0;
  color: hsla(0,0%,93.3%,.9);
  top: calc(50% - 20px);
  -webkit-transform: translate3d(0,-50%,1px);
  transform: translate3d(0,-50%,1px);
  border: 0;
  background: transparent;
  padding: 0;
}

.slick-arrow:before {
  display: inline-block;
  font-family: eicons;
  font-weight: 400;
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 20px;
}

button.slick-next.slick-arrow:before {
  content: '\e87d';
}

button.slick-next.slick-arrow {
  right: -30px;
}

button.slick-prev.slick-arrow:before {
  content: '\e87e';
}

button.slick-prev.slick-arrow {
  left: -30px;
} 
ul.slick-dots {
  position: absolute;
  display: flex !important;
  text-align: center;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  z-index: 10;
  bottom: 5px;
  left: 0;
  width: 100%;
  margin: 0;
  list-style: none;
  justify-content: center;
  line-height: 1.85714285714286;
  min-height: 26px;
  align-items: center;
}

ul.slick-dots li {
  width: 6px;
  height: 6px;
  display: inline-block;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  background: #000;
  opacity: .2;
  margin: 0 6px;
  cursor: pointer;
}

ul.slick-dots li button {
  display: none;
}

ul.slick-dots li.slick-active {
  opacity: 1;
}
.sr_row1 .widget-type-rich_text {
  text-align: center;
}
.pd10 {
  padding: 10px; 
}
.sr_row1 .widget-type-rich_text {
  text-align: center;
}
.sr_row1 .widget-type-rich_text p {
  padding: 25px 0px 20px 0px;
} 
.sr_row1 .widget-type-rich_text .btn {
  margin-bottom: 60px !important; 
}
.sdt2_pg .em_call .em_title {
  line-height: 1.7;
  padding-bottom: 20px;
}
.sdt2_row2 .widget-type-rich_text {
  text-align: center;
  padding: 25px 0px 0px 0px;
}
.sdt2_row2 .widget-type-header h3 {
  line-height: 1.4;
}

.sdt2_row2 .widget-type-header h2 {
  line-height: 1.3;
}
.sdt2_row2 .widget-type-header {
  text-align: center;
}
.sdt2_row2 .page-center {
  padding: 10px;
}
.sdt2_row2 .widget-type-rich_text p {
  margin-bottom: 1.6em;
}

.sdt2_row2 .widget-type-rich_text {
  text-align: center;
  padding: 25px 0px 20px 0px;
} 
.sdt2_row2 {
  padding-bottom: 50px;
} 
.sd2_bnr .banner_area .banner_content h1 { 
  padding-bottom: 0;
  line-height: 1.2;
}
.sd2_bnr .banner_area .banner_img {
  height: 100%;
  transform: translateY(0);
  background-position: center center;
}
.sd2_bnr .banner_area:before {
  opacity: 0.67;
} 
.sdt2_pg h2 {
  line-height: 1.3 !important;
}
.sdt2_pg .b_pane_wrap .b_pane_inr h2 {
  padding-bottom: 84px;
}
.coupons_row1 .page-center, .coupons_row2 .page-center { 
  padding: 10px;
}
.coupons_row1 .widget-type-rich_text p {
  margin-bottom: 1.6em;
}

.coupons_row2 .widget-type-rich_text img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
}
.coupons_row1 .widget-type-rich_text h1 {
  color: rgba(0,0,0,0.5);
  line-height: 1.2;
  padding-bottom: 20px;
}
.coupons_row2 .widget-type-rich_text {
  text-align: center;
}

.coupons_row2 .widget-type-rich_text a {
  display: inline-block;
  margin-bottom: -8px;
}
.ab_pg .banner_area .banner_img {
  height: 100%;
  background-position: center center;
  transform: translateY(0);
}
.ab_pg .banner_area .banner_content h1 {
  padding: 0;
  line-height: 1.2;
  margin-bottom: 20px;
}

.ab_row1 .hs_cos_wrapper_type_rich_text > * {
  padding-bottom: 20px;
}
.ab_row1 .widget-type-rich_text h2 {
  line-height: 1.3;
  text-align: center;
}
.ab_row1 .widget-type-rich_text blockquote {
  margin: 45.1px 1em 45.1px 3em;
  padding: 1.2em;
  font-size: 1.1em;
  line-height: inherit;
  position: relative;
  border-left: 5px solid rgba(0,0,0,.05);
}
.ab_row1 .widget-type-rich_text blockquote h6 {
  text-transform: uppercase;
  font-style: italic;
}
.ab_row1 .widget-type-rich_text p {
  margin-bottom: 1.6em;
} 

.ab_row2 .b_pane_lft h6 {
  padding-bottom: 20px;
  line-height: 1.7;
}
.ab_row2 .b_pane_inr h2 {
  line-height: 1.3 !important;
}
.ab_row2 .b_pane_wrap .b_pane_inr h2 {
  padding-bottom: 20px !important;
}
.ab_row2 .b_pane_wrap .b_pane_ryt ul li:last-child {
  padding: 0;
}
.ab_row2 .b_pane_wrap {  
  background-position: inherit; 
}
.home_row2 .page-center {
  padding: 0;
}

.home_row2 {
  margin-top: 10px;
}
.home_row2 .em_call .em_title {
  line-height: 1.7;
  padding-bottom: 20px;
}
.home_row2 .em_call .em_no_inr span+span {
  padding-left: 5px;
}
.home_row2 {
  padding: 0 25px 65px; 
}
.home_row3 {
  padding: 100px 25px;
  background-color: rgba(35,84,162,0.05);
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
  margin-top: 15px;
  position: relative;
}
.home_row3 .span8 {
  width: 64%;
  margin-left: 0;
}

.home_row3 .span4 {
  width: 36%;
  padding-right: 100px; 
}
.home_row3 .dnd-section>.row-fluid {
  align-items: flex-start;
}
.home_row3 .sr_wrap .sr_hd h2 {
  margin-top: 0;
} 
.home_row3 .page-center {
  padding: 0;
}
.home_row3 .sr_wrap .sr_item p {
  color: rgba(0,0,0,0.5);
}

.home_row3 .sr_wrap .sr_item {
  width: 100%;
  padding: 0 !important;
  text-align: center;
}
.home_row3 .sr_wrap .sr_hd {
  padding-bottom: 40px;
}
.home_row3 .sr_wrap .sr_btn .btn {
  border-width: 2px 2px 2px 2px;
}
.home_row3 .sr_btn {
  padding-top: 15px;
}
.home_row4 {
  padding: 50px 0;
}
.home_row4 .sr_wrap .sr_hd h2 {
  margin-top: 0;
}
.home_row4 .sr_wrap {
  padding-right: 75px;
}
.home_row4 .sr_wrap .sr_hd {
  padding-bottom: 46px;
}
.home_row4 .sr_icon {
  color: #2F4F4F;
}
.home_row4 .page-center {
  padding: 0;
}
.home_row4 .sr_wrap .sr_icon {
  margin-bottom: 34px;
}
.home_row4 .sr_wrap .sr_inr.two .sr_item { 
  margin-bottom: 40px;
}
.home_row4 .sr_wrap .sr_inr { 
  padding-bottom: 0; 
}
.home_row5 .em_call {
  margin: 0;
  background: #F7941C;
  padding: 50px 25px;
  text-align: left;
}
.home_row5 .em_call_inr {
  max-width: 1140px; 
  margin: 0 auto;
}
.home_row5 .em_call_inr {
  display: flex;
  flex-wrap: wrap;
  align-items: center; 
}
.home_row5 .em_call_inr > div {
  width: 50%;
} 
.home_row5 .em_call .em_title {
  font-size: 1.42857142857rem;
  line-height: 1.5;
}
.home_row5 .em_call .em_no_inr span i { 
  font-size: 45px;
}
.home_row5 .em_call .em_no_inr span+span {
  padding-left: 0;
  margin-left: -6px;
}
.home_row5 .em_call .em_no_inr {
  font-size: 50px; 
  font-weight: bold;
  justify-content: flex-end;
  color: rgba(255,255,255,0.9);
}
.tst_row1 {
  background-color: rgba(35,84,162,0.05);
  padding: 100px 25px 0;
}
.tst_row1 .page-center {
  padding: 0;
} 
.tst_row1 .span6:last-child {
  padding-left: 50px;
}

.tst_row1 .span6:first-child {
  padding-right: 50px;
}
.tst_row1 .span6 {
  width: 50%;
  margin-left: 0;
  padding-bottom: 129px;
} 
.tst_row1 .tst_wrap .tst_cnt {
  padding-bottom: 33px;
}
.tst_row1 .tst_wrap .tst_elementor_icon {
  margin-left: 0;
}
.tst_row1 .dnd-section>.row-fluid {
  align-items: flex-start;
}
.tst_row2 {
  background-color: rgba(35,84,162,0.05);
}

.tst_row2 .logo_slider_wrap {
  padding-bottom: 50px;
  margin-bottom: 0;
  margin-top: -35px;
  background: transparent;
} 
.tst_row2 .logo_slider_wrap .logo_slider_lft {
  width: 52%;
}
.tst_row2 .logo_slider_wrap .logo_slider_ryt {
  width: 48%;
  padding-top: 0;
}
.tst_row2 .logo_slider_wrap .logo_slider_lft {
  width: 52%;
}
.faq_row1 {
  background-color: rgba(35,84,162,0.05);
  padding: 100px 25px;
}
.faq_row1 .page-center {
  padding: 0;
}
.faq_row1 .span6:last-child {
  padding-left: 10px;
}

.faq_row1 .span6:first-child {
  padding-right: 10px;
}
.faq_row1 .span6 {
  width: 50%;
  margin-left: 0;
  align-self: flex-start; 
} 
.banner_cnt {
  color: #fff;
} 
.faq_row2 .banner_area {
  padding: 125px 25px;
}
.faq_row2 .banner_area .banner_content h1 {
  line-height: 1.3;
  margin-bottom: 20px;
  font-size: 2.14285714286rem;
  padding: 0px 100px 15px 100px;
}
.faq_row2 .banner_area .banner_inr {
  max-width: 900px;
  margin: 0 auto;
}
.faq_row2 .banner_cnt {
  padding-bottom: 10px;
  margin-bottom: 20px;
  padding-top: 20px;
} 
.faq_row2 .banner_area .banner_img {
  height: 100%;
  transform: translateY(0);
  background-position: center center;
}
.ab_pg .banner_area .banner_inr {
  padding: 50px 0;
}
.site_row1 .page-center {
  padding: 10px;
}
.site_row1 .widget-type-rich_text {
  max-width: 280px;
}

.site_row1 .widget-type-rich_text ul {
  list-style: none;
  display: block;
}
.site_row1 .widget-type-rich_text h2 {
  color: rgba(0,0,0,0.5);
  font-family: 'Montserrat',sans-serif;
  text-transform: uppercase;
  line-height: 1.3;
  letter-spacing: normal;
} 
.site_row2 .page-center {
  border-top: 1px solid #eee;
  max-width: 1240px;
  margin-top: 2em;
  margin-bottom: 2em;
} 
.gb_form fieldset {
  max-width: 100% !important;
} 
.gb_form .hs-richtext h3 { 
  padding-top: 1em;
}
.gb_form .hs-form-field>label { 
  margin: 0;
  color: rgba(0,0,0,0.5);
  font-weight: 600; 
} 
.gb_form .hs-fieldtype-booleancheckbox {
  padding: 19px 0 8px; 
}
.gb_form .hs-fieldtype-booleancheckbox .hs-input {
  display: inline-block !important;
  width: auto !important; 
  margin-right: 10px;
  margin-top: 0;
} 
.gb_form .hs-fieldtype-booleancheckbox .hs-input + span {
  line-height: 1.85714285714286;
}
.gb_form .hs-fieldtype-booleancheckbox label {
  color: rgba(0,0,0,0.5);
  font-weight: 600;
} 
.gb_form .hs-form-field {
  margin-bottom: 10px;
}
.gb_form  ::-webkit-input-placeholder {color: rgb(117, 117, 117); } /* Webkit Browsers */
.gb_form  :-moz-placeholder {color: rgb(117, 117, 117); } /* Firefox 18- */
.gb_form  ::-moz-placeholder {color: rgb(117, 117, 117); } /* Firefox 19+ */
.gb_form  :-ms-input-placeholder {color: rgb(117, 117, 117); } /* IE10 */

.gb_form input.hs-button.primary { 
  border: 0;
}
.site_row2 fieldset.form-columns-3 > div {
  width: 33.3% !important;
  padding: 0 20px;
}

.site_row2 fieldset.form-columns-3 {
  margin: 0 -20px;
}
.site_row2 fieldset .input {
  margin-right: 0 !important;
} 
.site_row2 fieldset.form-columns-3 {
  margin: 0 -20px;
  max-width: calc(100% + 40px) !important;
} 

.cnt_row2 {
  background-color: rgba(35,84,162,0.05);
  padding: 50px 25px 100px;
} 
.cnt_row2 .page-center {
  padding: 0;
}
.cnt_row2 .page-center {
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}
.hs_col4 {
  width: 33.3%;
}
.hs_col4.cnt_info {
  margin: 32px 0px 0px 0px;
  padding: 0px 50px 0px 0px;
}
.hs_col4.cnt_form { 
  padding: 40px 40px 40px 40px;
  background-color: #ffffff;
}
.hs_col4.cnt_slider {
  padding-left: 10px;
} 

.cnt_row2 .widget-type-rich_text h2 {
  line-height: 1.3;
  padding-bottom: 60px;
}

.fas.fa-phone:before {
  content: "\f095";    
}
h6.elementor-icon-box-title.fa-map-marker {
  letter-spacing: 2px;
}
.fas.fa-map-marker:before {
  content: "\f3c5";
} 
.cnt_row2 .widget-type-rich_text p {
  padding-bottom: 20px;
  margin-bottom: 1.6em;
}   
.contact_info_wrap i.fas.fa-map-marker {
  padding-left: 3px;
  padding-right: 3px;
}
.cnt_form .hs-form-field {
  margin-bottom: 0;
  margin-top: 16px;
}
.cnt_form .hs-form-field > label {
  display: inline-block;
}
.cnt_form .hs-input {
  margin-top: 8px;
}
.cnt_form textarea {
  min-height: 160px;
  resize: none;
}
.cnt_form .hs-richtext p {
  margin: 0;
  font-weight: 700;
  color: rgba(0,0,0,0.5);
  padding-top: 31px;
}
.cnt_form .hs_submit.hs-submit {
  margin-top: 10px;
  padding-top: 16px;
  padding-bottom: 16px;
}  
.hs_col4.cnt_slider .em_call {
  background: #f7941c;
  padding: 47px 40px 35px 40px;
  text-align: left;
  color: #fff;
} 
.hs_col4.cnt_slider .em_call { 
  color: #fff;
}
.hs_col4.cnt_slider .em_call .em_title {
  line-height: 1.7;
  padding-bottom: 20px;
}
.hs_col4.cnt_slider .em_cnt {
  padding-bottom: 40px;
}
.hs_col4.cnt_slider .em_call .em_no_inr i {
  font-size: 25px;
}
.logo_slider_wrap .logo_slider_ryt a {
  outline: 0;
} 
.hs_col4.cnt_slider .em_call .em_no_inr {
  font-size: 30px;
  font-weight: bold;
  justify-content: flex-start;
  padding-top: 13px;
  color: rgba(255,255,255,0.9);
}
.hs_col4.cnt_slider .em_call .em_no_inr span+span {
  padding-left: 5px;
}
.hs_col4.cnt_slider .tst_slider {
  margin-top: 0;
  margin-bottom: 0;
}
.hs_col4.cnt_slider .tst_slider .page-center {
  padding: 0 12px;
  padding-right: 22px;
}
.top_search button { 
  cursor: pointer;
}
.hs_col4.cnt_slider .em_call { 
  margin: 0;
}
.em_cnt {
  color: #fff;
} 
.err_pg { 
  background-size: cover;
  background-repeat: no-repeat;
}


@media (min-width: 1025px){
  .ab_row2 .b_pane_wrap { 
    padding: 150px 0; 
  }
  .hs_col4.cnt_slider .tst_slider .tst_slider_item {
    padding: 0;
    margin-top: 20px;
  } 
}  



@media (max-width: 1024px){
  .sd_row2 .page-center>div {
    margin: 0px 50px 0px 50px;
    padding: 60px 50px 75px 50px;
  }
  .sr_row1 .widget-type-rich_text .btn {
    margin-bottom: 20px !important;
  }
  .ab_row2.sd_row2 .page-center>div { 
    background: #fff;
  }
  .ab_row1 {
    margin: -175px 0 0;
    margin-bottom: 0px;
    position: relative;
    z-index: 9;
  }
  .home_row2 {
    padding: 0px 25px 100px 25px;
  }
  .home_row3 {
    margin-top: 15px; 
    padding: 100px 25px 100px 25px;
  }
  .home_row3 .span4 { 
    padding-right: 50px;
  } 
  .home_row4 {
    margin-top: 15px;
    margin-bottom: 15px;
    padding: 0px 0px 0px 25px;
  } 
  .home_row5 .em_call .em_no_inr {
    font-size: 51px;
  }
  .home_row5 .em_call .em_title {
    width: 30%;
  }
  .home_row5 .em_call_inr .em_no {
    width: 70%;
  }
  .tst_row1 { 
    padding: 60px 25px 0;
  } 
  .tst_row1 .span6:first-child {
    padding-right: 25px;
  }
  .tst_row1 .span6:last-child {
    padding-left: 25px;
  }
  .tst_row1 .span6 { 
    padding-bottom: 109px;
  }
  .tst_row2 .logo_slider_wrap .logo_slider_lft h5 {
    margin-bottom: 20px;
  }
  .tst_row2 .logo_slider_wrap {
    padding-bottom: 40px; 
    margin-top: -20px; 
  }
  .faq_row1 {
    margin-top: 15px;
    margin-bottom: 15px;
    padding: 25px 25px 25px 25px;
  }
  .faq_row2 .banner_area {
    padding: 100px 20px;
  }

  .sd_row2 .page-center>div {
    background: #fff;
  }
  .sd_row2.ab_row1 .span12 {
    float: none !important;
  }
  .site_row1 .widget-type-rich_text {
    max-width: calc( 1 / 2 * 100% );
  }

  .hs_col4 {
    width: 50%;
  }
  .hs_col4.cnt_slider {
    width: 100%;
  }
  .cnt_row2 { 
    padding: 25px;
  } 
  .hs_col4.cnt_slider {
    width: 100%;
    padding: 25px 0px 0px 0px;
  }
  .hs_col4.cnt_slider .em_call { 
    padding: 40px 40px 25px 40px; 
  }
  .hs_col4.cnt_slider  .tst_slider .page-center {
    padding: 0 0;
    padding-right: 0;
  }
  .hs_col4.cnt_slider .tst_slider .tst_slider_item {
    padding: 20px;
  }
}





@media (max-width: 767px){
  .sd_row2 .page-center>div { 
    margin: 0px 20px 0px 20px;
    padding: 40px 6px 50px 6px;
  }
  .sd_row2.ab_row1 .page-center>div { 
    padding: 40px 30px 50px 30px;
  }
  .sdt2_pg .b_pane_wrap .b_pane_inr h2 {
    padding-bottom: 59px;
  }
  .ab_row2.sd_row2 .page-center>div { 
    padding: 40px 30px 50px 30px;
    background: #fff;
  }
  .ab_pg .banner_area {
    padding: 166px 20px !important; 
  }
  .home_row2 {
    margin-top: 12px;
    margin-bottom: 0px;
    padding: 0px 0px 0px 0px;
  }
  .home_row2 .em_call .em_no_inr {
    font-size: 20px;
  }
  .home_row2 .em_call .em_no_inr span i {
    font-size: 40px;
  }
  .home_row2 .em_call .em_no_inr { 
    align-items: center;
  } 
  .home_row3 .span4 {
    width: 100%;
    padding-right: 0;
  }
  .home_row3 .span8 {
    width: 100%;
    margin-left: 0;
  } 
  .home_row3 { 
    padding: 75px 20px 50px 20px;
  }
  .home_row3 .sr_wrap .sr_inr .sr_item {
    padding: 0;
  }
  .home_row3 .sr_btn {
    padding-top: 0;
  }
  .home_row4 { 
    padding: 75px 25px 50px;
  } 
  .home_row4 .sr_wrap {
    padding-right: 0;
  } 
  .home_row4 .sr_wrap .sr_inr.two .sr_item {
    margin-bottom: 0;
  } 
  .home_row4 .sr_wrap .sr_item h5 {
    padding-bottom: 0;
  }
  .home_row4 .sr_wrap .sr_inr.two .sr_item:nth-of-type(even) {
    padding-bottom: 60px;
  }
  .home_row4 .sr_wrap .sr_inr.two .sr_item:nth-of-type(3) {
    padding-bottom: 20px;
  }

  .home_row5 .em_call_inr>div {
    width: 100% !important;
  }
  .home_row5 .em_call .em_no_inr {
    font-size: 34px; 
    justify-content: flex-start; 
  }
  .home_row5 .em_call .em_no_inr span i {
    font-size: 33px;
  }
  .home_row5 .em_call .em_no_inr span+span {
    padding-left: 5px;
    margin-left: 0;
  }
  .home_row5 .em_call { 
    padding: 50px 20px 30px 20px; 
  }
  .tst_row1 { 
    padding: 50px 20px 0;
  }
  .tst_row1 .span6:first-child {
    padding-right: 0;
  }
  .tst_row1 .span6:last-child {
    padding-left: 0;
  }
  .tst_row1 .span6 {
    width: 100%;
    margin-left: 0;
    padding-bottom: 103px;
  }
  .tst_row1 .tst_wrap .tst_elementor_icon {
    margin-left: -3px;
  }
  .tst_row2 .logo_slider_wrap .logo_slider_lft {
    width: 100%;
  }
  .tst_row2 .logo_slider_wrap .logo_slider_ryt {
    width: 100%;
    padding-top: 0;
  }  
  .tst_row2 .logo_slider_wrap {
    padding: 0px 20px 30px 20px;
    margin-top: -29px; 
  }
  .tst_row2  .logo_slider_wrap .logo_slider_lft h5 {
    margin-bottom: 20px;
    padding-bottom: 25px;
    text-align: center;
  }
  .faq_row1 { 
    padding: 20px;
  } 
  .faq_row1 .span6:last-child {
    padding-left: 0;
  }
  .faq_row1 .span6:first-child {
    padding-right: 0;
  }
  .faq_row1 .span6 {
    width: 100%;
  }
  .faq_row2 .banner_area .banner_content h1 {
    line-height: 1.3;
    margin-bottom: 20px;
    font-size: 25px;
    padding: 0 0 10px 0;
  }
  .faq_row2  .banner_cnt {
    padding-bottom: 1px; 
  }
  .faq_row1 .span6:last-child .acc_item {
    border-top: 0;
  }
  .ab_pg .banner_area .banner_inr {
    padding: 0;
  }
  .site_row1 .widget-type-rich_text {
    max-width: calc( 1 / 1 * 100% );
  }
  .site_row2 fieldset.form-columns-3 > div:last-child {
    margin-bottom: 7px;
  }
  .site_row2 fieldset.form-columns-3 > div {
    width: 100% !important; 
    margin-bottom: 32.344px;
  }
  .hs_col4 {
    width: 100%;
  }
  .hs_col4.cnt_info {
    margin: 20px 0px 0px 0px;
    padding: 0px 0px 0px 0px;
  }
  .cnt_row2 {
    padding: 20px;
  }
  .hs_col4.cnt_form {
    padding: 30px 30px 30px 30px;
    background-color: #fff;
  }

  .hs_col4.cnt_slider .em_call {
    padding: 40px 30px 30px 30px;
    margin: 0; 
  }
  .hs_col4.cnt_slider .tst_slider .page-center {
    padding: 0;
    padding-right: 0;
  } 

  .hs_col4.cnt_slider .em_call .em_no_inr {
    font-size: 26px; 
    padding-top: 10px; 
  }
  .home_row2 .sr_wrap .sr_hd h2 {
    padding: 0 15px;
  } 
  .sd_row2.sr_row1 .page-center>div {
    padding: 40px 6px 50px 6px;
  } 


}



@media only screen and (max-width: 641px){
  .cnt_form .hs-input {
    line-height: 2 !important;
    min-height: 2rem !important;
  }
  .cnt_form .hs-input {
    line-height: 2 !important;
    min-height: 2rem !important;
  }
  .cnt_form  input.hs-button.primary.large {
    line-height: 2;
    min-height: 2rem;
  }
}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your headers look
when it comes to the logo, search field, language switcher and navigation.
You will also find the mobile menu styles below.
*********************************************************************************
****************************************************************************** */

.header__container { 
  margin: 0 auto; 
}
.hd_top {
  background-color: #e05e1f;
  line-height: 40px;
  position: relative;
  transition: all .2s linear;
  text-align: right;
}
.hd_top a {
  color: #fff;
}  
.hd_bottom {
  padding: 1em 0;
}
.hd_logo img {
  display: block;
}
.hd_bottom .header__container {
  -webkit-align-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -js-display: flex;
  display: flex;
  flex-wrap: wrap;
  line-height: 4;
}
.custom-menu-primary ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.custom-menu-primary ul ul {
  display: none;
}
.custom-menu-primary { 
  margin-left: auto;
}
.custom-menu-primary nav.navigation-primary > ul {
  -js-display: flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-align-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.custom-menu-primary nav.navigation-primary > ul >li > a {
  text-decoration: none;
  padding: 0 1em;
  display: inline-block;
  transition: all .2s linear;
}
.hd_bottom { 
  border-bottom: 1px solid rgba(0,0,0,0.1);
}
.custom-menu-primary nav.navigation-primary>ul>li {
  position: relative;
}
@media(min-width:921px){
  .custom-menu-primary nav.navigation-primary > ul >li.has-submenu.menu-item > a:after {
    content: "\e900";
    display: inline-block;
    font-family: Astra; 
    font-size: 9px;
    font-size: .6rem; 
    font-weight: 700;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin-left: 10px;
    line-height: normal;
  }
  .custom-menu-primary nav.navigation-primary>ul li:hover ul {
    display: block;
  }
  .custom-menu-primary nav.navigation-primary>ul ul li:last-child a {
    border-bottom: 0;
  }

  .custom-menu-primary nav.navigation-primary>ul ul li a {
    padding: .9em 1em;
    display: block;
    word-wrap: break-word;
    border-bottom: 1px solid #eaeaea;
    transition: all .2s linear;
  }
  .custom-menu-primary ul ul {
    position: absolute;
    z-index: 99;
    border: 1px solid #eaeaea;
    line-height: 1.45;
    box-shadow: 0 4px 10px -2px rgb(0 0 0 / 10%);
    right: auto;
    left: 0;
    width: 240px;
  } 




}


.header.lp .hd_bottom .header__container {
  min-height: 56px;
}
@media(max-width:920px){
  .header.lp .hd_bottom .header__container {
    min-height: 47px;
  }
  .mb_open .hd_bottom { 
    padding-bottom: 0;
  } 
  .hd_top {
    padding: 1em 0 1em 0;
    text-align: center;
    line-height: 3;
  }
  .hd_bottom .header__container { 
    line-height: 3;
  }
  .custom-menu-primary {
    width: calc(100% + 40px);
    margin: 0 -20px;
    padding-top: 1em;
  }
  .custom-menu-primary nav.navigation-primary>ul   li > a {
    padding: 0 20px;
    display: inline-block;
    width: 100%;
    border-bottom: 1px solid #eaeaea;
    background: transparent !important;
    transition: all .2s linear; 
  }

  .custom-menu-primary nav.navigation-primary>ul {
    display: block;
    background-color: #f9f9f9;
    border-top: 1px solid #eaeaea; 
  }
  .custom-menu-primary nav.navigation-primary>ul > li {
    background: transparent !important;
  }
  .custom-menu-primary nav.navigation-primary>ul > li {
    position: relative;
  } 
  .child_trigger:after {
    font-weight: 700;
    content: "\e900";
    font-family: Astra;
    text-decoration: inherit;
    display: inline-block;
  }

  .child_trigger {
    display: inline-block;
    position: absolute;
    font-size: inherit;
    top: -1px;
    right: 20px;
    cursor: pointer;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding: 0 .907em;
    font-weight: 400;
    line-height: 3;
    transition: all .2s;
    height: auto; 
  } 
  .custom-menu-primary nav.navigation-primary>ul > li:hover .child_trigger {
    color: rgba(247,148,28,1.0);
  } 
  .custom-menu-primary ul li.child_open ul {
    display: block;
  } 
  .custom-menu-primary nav.navigation-primary>ul ul li>a {
    padding-left: 30px;
  }

  .custom-menu-primary nav.navigation-primary>ul ul li>a:before {
    content: "\e900";
    font-family: Astra;
    font-size: .65em;
    text-decoration: inherit;
    display: inline-block;
    transform: translate(0,-2px) rotateZ( 
      270deg
    );
    margin-right: 5px;
  }
  .custom-menu-primary ul li.child_open .child_trigger {
    transform: rotateX( 
      180deg
    );
  } 
  .mb_trigger span:before {
    content: "\e5d2";
    font-family: Astra;
    text-decoration: inherit;
  }

  .mb_trigger span {
    font-style: normal;
    display: inline-block;
    vertical-align: middle;
    line-height: 2.05;
  }
  .mb_trigger {
    height: 2.1em;
    font-size: 1.5em;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    vertical-align: middle;
    line-height: 1.85714285714286;
    padding: 0 .5em;
    width: auto;
    text-align: center;
    background: #ea3a1c;
    color: #ffffff;
    border-radius: 0px;
    cursor: pointer;
  }
  .hd_logo {
    padding-right: 1em;
    flex: 1;
  }
  .mb_open .mb_trigger span:before {
    content: "\e5cd";
  } 
  .custom-menu-primary {
    display: none;
  }
  .mb_open .custom-menu-primary {
    display: block;
  }



}

@media (max-width: 544px){
  .hd_phone {
    padding-top: .5em;
  }
  .hd_logo img {
    display: block;
    max-width: 100%;
    width: 200px !important;
  }
  .header.lp .hd_bottom .header__container {
    min-height: 40px;
  } 
}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your
footer looks when it comes to spacing and other general styles.
*********************************************************************************
****************************************************************************** */


.footer__container { 
  margin: 0 auto;
}

.ft_copyright {
  margin-bottom: 1em;
}
.footer {
  padding-top: 2.66666em;
  padding-bottom: 2.66666em;
  text-align: center;
  border-top: 1px solid rgba(0,0,0,0.1);
} 


@media(max-width:767px){
  .footer {
    padding-top: 2em;
    padding-bottom: 2em; 
  }
  .ft_copyright {
    margin-bottom: 12px;
  } 
}
/* ******************************************************************************
*********************************************************************************
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;
  padding: 0 20px;
  margin: 0 auto;
}
.blog-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px 0; 
}
.blog-pagination__link {
  display: inline-flex;
  padding: .25rem .4rem;
  margin: 0 .1rem;
  color: #494a52;
  text-decoration: none;
  border: 2px solid transparent;
  line-height: 1;
  border-radius: 7px;
}
.blog-pagination__link--active {
  border: 2px solid #B0C1D4;
}
.blog-pagination__link:hover,
.blog-pagination__link:focus {
  text-decoration: none;
}
.blog-pagination__prev-link,
.blog-pagination__next-link {
  display: inline-flex;
  align-items: center;
}
.blog-pagination__prev-link {
  text-align: right;
  margin-right: .25rem;
}
.blog-pagination__next-link {
  text-align: left;
  margin-left: .25rem;
}
.blog-pagination__prev-link--disabled,
.blog-pagination__next-link--disabled {
  color: #B0C1D4;
  pointer-events: none;
  cursor: default;
}
.blog-pagination__prev-link svg,
.blog-pagination__next-link svg {
  fill: #494a52;
  margin: 0 5px;
}
.blog-pagination__prev-link--disabled svg,
.blog-pagination__next-link--disabled svg {
  fill: #B0C1D4;
}
.blog-pagination__number-link:hover,
.blog-pagination__number-link:focus {
  border: 2px solid #B0C1D4;
}



.top_sr_sec {
  padding: 100px 25px;
}
.top_sr_sec_inr h1 {
  color: #c4c4c4;
  font-size: 60px;
  line-height: 1;
  text-align: center;
  font-family: 'Montserrat',sans-serif;
  text-transform: uppercase;
}
.top_sr_sec .page-center {
  padding: 10px;
}
.top_search h5 {
  color: rgba(0,0,0,0.5);
  text-transform: uppercase;
  margin: 0;
}
.top_search input.hs-search-field__input:focus {
  border-color: #f7941c;
  background: #fff; 
}

.top_search input.hs-search-field__input {
  max-width: 189px;
  border-color: #eaeaea;
  outline: 0;
  padding: .75em;
  height: auto;
  border-width: 1px;
  border-style: solid;
  border-radius: 2px;
  background: #fafafa;
  box-shadow: none;
  box-sizing: border-box;
  transition: all .2s linear;
  font-size: 1rem;
  font-family: 'Montserrat',sans-serif;
  font-weight: 600;
  line-height: 1;
  display: inline-block; 
}
::-webkit-input-placeholder {    opacity: .5;} /* Webkit Browsers */
:-moz-placeholder {    opacity: .5;} /* Firefox 18- */
::-moz-placeholder {    opacity: .5;} /* Firefox 19+ */
:-ms-input-placeholder {    opacity: .5;} /* IE10 */

.top_search button:before {
  content: "Search";
}
.comment-date {
  display: block !important;
} 
.top_search button svg {
  display: none;
}
.top_search button:hover {
  color: #ffffff;
  background-color: #db5c1c;
  border-color: #db5c1c;
}

.top_search button:before {
  content: "Search";
}
.top_search button svg {
  display: none;
}
.top_search button {
  border-style: solid;
  border-top-width: 0;
  border-right-width: 0;
  border-left-width: 0;
  border-bottom-width: 0;
  color: #ffffff;
  border-color: #f7941c;
  background-color: #f7941c;
  border-radius: 0;
  padding-top: 10px;
  padding-right: 40px;
  padding-bottom: 10px;
  padding-left: 40px;
  font-family: inherit;
  font-weight: inherit;
  line-height: 1;
  box-shadow: none;
  outline: 0 !important;
}

.top_search {
  margin-bottom: 20px;
}
.li_wrapper {
  padding: 30px 0px 0px 0px;
}
.blog-item {
  width: 33.3%;
  padding: 5px;
}
.blog-index {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -5px;
} 
a.blog-item-img {
  padding-bottom: calc( 0.66 * 100% );
  position: relative;
  display: block;
  background-position: center center;
  background-size: cover;
  margin-bottom: 20px; 
}
.blog_index_content h3 a,
h3.post-listing-simple a{
  color: inherit !important;
}

.blog_index_content h3 ,
h3.post-listing-simple{
  font-size: 18px;
  margin: 0;
  color: #f7941c;
  text-transform: uppercase;
  line-height: 1.4;
} 
.blog_item_cnt {
  margin-bottom: 10px;
  color: #7a7a7a;
  line-height: 1.5em;
  font-size: 14px;
}
.blog-post__read-more a {
  color: #db5c1c !important; 
}
 
li#results-for {
  padding: 5px 10px;
}
ul.hs-search-field__suggestions li a {
  padding: 5px 10px;
}

.blog-post__read-more {
  font-size: 12px;
  font-weight: 700;
} 
/* Post */


.post_pg_wrapper {
  background-color: #f5f5f5;
  padding: 0.1px;
}
.post_pg_wrapper .page-center {
  max-width: 1240px;
}
.post_pg_top {
  margin: 4em 0 0;
  padding: 5.34em 6.67em;
  background-color: #fff;
}
.ast-single-post-order h1 {
  line-height: 1.2;
  font-size: 2.14285714286rem;
  margin-bottom: .2em;
  font-weight: 400;
  margin: 0;
  color: rgba(0,0,0,0.5);
  font-family: 'Montserrat',sans-serif;
  text-transform: uppercase;
}
.entry-meta {
  line-height: 1.45;
  color: #f7941c;
}

.ast-single-post-order {
  margin-bottom: 2em;
}
.blog-post__body p {
  margin-bottom: 1.6em;
}

.blog-post__body {
  color: rgba(0,0,0,0.5);
  line-height: 1.85714285714286;
} 
nav.navigation.post-navigation {
  padding: 2em 0 0;
  margin: 0;
  padding-left: 3.33333em;
  padding-right: 3.33333em;
}
.nav-links > div {
  flex: auto;
}

.nav-links {
  display: flex;
}
.nav-next {
  text-align: right;
}
.nav-links a {
  transition: all .2s linear;
  padding: 0 1.5em;
  height: 2.33333em;
  line-height: calc(2.33333em - 3px);
  font-size: 1.06666rem;
  margin: 2px;
  display: inline-block;
  text-align: center;
}
.blog-comments {
  background-color: #fff;
  padding: 4em 6.67em;
  border-bottom: 0;
  margin-top: 2em;
  margin-bottom: 4em;
}
.gb_form .hs-richtext h3 {
  color: rgba(0,0,0,0.5);
  font-family: 'Montserrat',sans-serif;
  text-transform: uppercase;
  font-weight: 400;
  line-height: 1.65;
  font-size: 1.64285714286rem;
  margin: 0;
}
.gb_form .hs-richtext p {
  margin-bottom: 1.5em;
  color: rgba(0,0,0,0.5);
  line-height: 1.85714285714286;
}
.gb_form .hs-input:focus {
  border-color: #f7941c;
  outline: -webkit-focus-ring-color auto 1px;
}
.blog-comments .hs-form-field > label {
  line-height: 26px;
}
form ul.no-list.hs-error-msgs {
  max-width: 100%;
} 
.gb_form input.hs-button.primary {
  font-family: inherit;
  font-weight: inherit;
  line-height: 1;
  padding: 10px 15px;
  border-radius: 2px;
  font-size: 1rem;
  outline: 0;
  margin: 0;
} 
.gb_form  .hs-form-field > label {
  line-height: 1.85714285714286;
}
.gb_form .hs-input {
  max-width: 100% !important; 
  height: auto;
  border-width: 1px;
  border-style: solid;
  border-color: #eaeaea;
  border-radius: 2px;
  background: #fafafa;
  box-shadow: none;
  box-sizing: border-box;
  transition: all .2s linear;
  font-size: 1rem !important;
  line-height: 1 !important;
  padding: .75em !important; 
}
.blog-post__body img {
  max-width: 100%;
}
.blog-post__body {
  color: rgba(0,0,0,0.5) !important;
  line-height: 1.85714285714286;
}
.gb_form textarea {
  min-height: 231px;
}

@media (max-width: 1200px){

  .post_pg_top { 
    padding: 3.34em 2.4em; 
  }
  .blog-comments {
    background-color: #fff;
    padding: 3em 2.34em;
  }


}


@media(max-width:1024px){
  .blog-item {
    width: 50%; 
  }

}


@media(max-width:767px){

  .top_sr_sec {
    padding: 50px 15px;
  }
  .top_sr_sec_inr h1 {
    font-size: 45px;
  }
  .top_sr_sec .page-center {
    padding: 6px;
  }
  .blog-item {
    width: 100%;
    padding: 5px;
  }
  a.blog-item-img {
    padding-bottom: calc( 0.5 * 100% ); 
  }
  .top_search input.hs-search-field__input {
    max-width: 186px;
  }
  .post_pg_top {
    margin: 1.5em 0 0;
  }
  .post_pg_top {
    padding: 1.5em 2.14em;
  }
  nav.navigation.post-navigation {
    padding-top: 1.5em;
  }
  .blog-comments {
    background-color: #fff;
    padding: 2em 2.14em;
  }
  .gb_form textarea {
    min-height: 205px;
  }


}
@media (max-width: 544px){

  .hs_recaptcha.hs-recaptcha.field.hs-form-field {
    overflow: auto hidden;
  }
  .post_pg_wrapper .page-center { 
    padding-left: .54em;
    padding-right: .54em;
  }
  .blog-comments { 
    padding: 1.5em 1em;
  }
  .blog-comments { 
    margin-top: 1.5em;
    margin-bottom: 1.5em;
  }
  .post_pg_top {
    padding: 1.5em 1em;
  } 

}
@media(max-width:420px){
  .top_search form {
    display: flex;
  }
  .top_search button { 
    padding-right: 15px; 
    padding-left: 15px; 
  }
  .nav-links {
    display: block;
  }

  .nav-links > div {
    width: 100%;
    text-align: center;
  }
  .nav-links a span {
    display: none;
  }

  .nav-links a {
    width: 100%;
  }
  .nav-previous {
    margin-bottom: 1em;
  }
  nav.navigation.post-navigation {
    padding-left: 0;
    padding-right: 0; 
  }


}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your
system pages look. These pages include the error pages (404 and 500),
password protected content and search listing results.
*********************************************************************************
****************************************************************************** */

.error-page {
  padding: 10rem 0;
  text-align: center;
  position: relative;
}
.error-page:before {
  content: attr(data-error);
  position: absolute;
  width: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: Lato, sans-serif;
  font-size: 40vw;
  font-weight: bold;
  color: #c5c7ca; 
  z-index: -1;
}
@media screen and (min-width: 1100px) {
  .error-page:before {
    font-size: 20rem;
  }
}
.error-page_heading {
  margin-bottom: 1rem;
}

.systems-page {
  padding: 3rem 20px;
}
.systems-page .success {
  display: inline-block;
  margin: 2rem 0;
  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: Merriweather, serif;
  font-size: 1.25rem;
  color: #494a52;
  text-decoration: underline;
  margin-bottom: .25rem;
}
.hs-search-results__title:hover {
  text-decoration: none;
}
.hs-search-results__description {
  padding-top: .5rem;
}
.hs-search-highlight {
  font-weight: bold;
}
.hs-search-results__pagination a {
  color: #494a52;
}

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

div#hs_cos_wrapper_subscription_preferences form#email-prefs-form {
  max-width: 100%;
  border: 0;
  padding: 0;
  background: transparent;
  margin:0;
}
ul.no-list.hs-error-msgs {
  padding: 0;
}
.systems-page .hs-form-field > label,
.systems-page .hs-form-field>label + a {
  margin-bottom: 5px;
  display: block;
}
input#hs-register-widget-email {
  background: transparent;
}
input#hs-login-widget-remember {
  display: inline-block !important;
  float: left !important;
  width: auto !important;
}

div#hs_cos_wrapper_subscription_preferences form#email-prefs-form .header {
  background: transparent;
}
input#hs-pwd-widget-password {
  height: auto !important;
  margin-top: 0 !important;
}
.grecaptcha-badge {
  margin-left: 0 !important;
}
ul.no-list.hs-error-msgs {
  max-width: 600px;
}
.hs-form-field {
  margin-bottom: 18px;
}
.content-wrapper .systems-page {
  padding-left: 0;
  padding-right: 0;
}
ul.no-list.hs-error-msgs {
  margin-left: 0;
}

input#submitbutton {
  white-space: normal;
} 
.search_pg .top_search button {
  padding: 10px 15px;
}
.sr_pg_wrapper ul#hsresults li p {
  margin-bottom: 10px;
  padding: 0;
  color: #7a7a7a;
  line-height: 1.5em;
  font-size: 14px;
}

.sr_pg_wrapper ul#hsresults li a {
  font-size: 18px;
  margin: 0;
  display: block;
  color: #f7941c;
  text-transform: uppercase;
  text-decoration: none;
  font-family: 'Montserrat',sans-serif;
  font-weight: 700;
  line-height: 1.4;
}
.sr_pg_wrapper ul#hsresults {
  display: flex;
  flex-wrap: wrap;
  margin: -5px;
}
.sr_pg_wrapper ul#hsresults li {
  width: 33.3%;
  padding: 5px;
}

.search_pg .hs-search-results {
  margin-top: 35px;
}
main.err_pg {
  position: relative;
}

.err_pg_inr {
  max-width: 740px;
  min-height: 100vh;
  position: relative;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.elementor-background-overlay {}

main.err_pg .elementor-background-overlay {
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  position: absolute;
  background-color: #000000;
  opacity: 0.4;
  transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}

.err_pg_inr {}

.error-page-cnt {
  padding: 30px;
  color: #fff;
  text-align: center;
}

.error-page-cnt h1 {
  padding: 0;
  margin-bottom: 20px;
  line-height: 1;
  color: #ffffff;
  font-size: 75px;
  font-weight: bold;
  text-transform: uppercase;
}

.error-page-cnt h3 {
  line-height: 1;
  color: #ffffff;
  font-size: 21px;
  font-family: 'Montserrat',sans-serif;
  text-transform: uppercase;
}

.error-page-cnt .elementor-divider {
  text-align: center;
  padding-top: 30px;
  padding-bottom: 30px;
  margin-bottom: 20px;
}

.error-page-cnt .elementor-divider span.elementor-divider-separator {
  width: 60px;
  margin: 0 auto;
  display: block;
  border-top: 3px solid rgba(255,255,255,0.35);
}

.error-page-cnt p {
  line-height: 1;
  color: #ffffff;
  font-size: 16px;
  font-weight: normal;
  margin-bottom: 20px;
}
.error-page-cnt form {
  background-color: rgba(255,255,255,0);
  border-color: #ffffff;
  border: 2px solid #ffffff;
  border-radius: 4px;
  min-height: 55px;
  display: flex;
  flex-direction: row-reverse;
}

.error-page-cnt form input {
  max-width: 100%;
  background: transparent;
  border: 0;
  outline: 0;
  color: #fff;
  margin: 0;
  padding-left: calc(55px / 3);
  padding-right: calc(55px / 3);
}

.error-page-cnt form button svg {
  display: none;
}

.error-page-cnt form button:before {
  content: "\f002";
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

.error-page-cnt form button {
  border: 0;
  background: 0;
  padding-left: calc(55px / 3);
  cursor: pointer;
  outline: 0;
  opacity: .6;
  color: #fff;
  padding-right: 0;
}
.error-page-cnt ::-webkit-input-placeholder { color: #fff;} /* Webkit Browsers */
.error-page-cnt :-moz-placeholder { color: #fff;} /* Firefox 18- */
.error-page-cnt ::-moz-placeholder { color: #fff;} /* Firefox 19+ */
.error-page-cnt :-ms-input-placeholder { color: #fff;} /* IE10 */

@media (max-width:1024px){
  .sr_pg_wrapper ul#hsresults li {
    width: 50%; 
  }
  .error-page-cnt h1 {
    font-size: 70px;
  }
  .error-page-cnt h3 { 
    font-size: 20px;
  }
  .error-page-cnt .elementor-divider { 
    padding-top: 12px;
    padding-bottom: 12px;
  }
}
ul.hs-search-field__suggestions {
    background: #fff;
    color: #000;
} 
@media (max-width:767px){
  .systems-page .success {
    min-width: 100% !important;
  }
  body .page-header h2 {
    letter-spacing: normal;
    font-size: 23px;
  }
  .sr_pg_wrapper ul#hsresults li {
    width: 100%; 
  }
  .error-page-cnt h1 {
    font-size: 40px;
  }
  .error-page-cnt h3 { 
    font-size: 18px;
    line-height: 25px;
  }
  .error-page-cnt p { 
    font-size: 14px;
    line-height: 20px;
  }
  .error-page-cnt form button { 
    width: 33px;
  }
}