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

/* 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));
    }
  
}
.content-wrapper {
  margin: 0 auto;
  padding: 0 20px;
}

@media screen and (min-width: 1380px) {
 
}

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

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

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

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

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



@font-face {
  font-family: 'Nexa Light';
  src: url('https://2548390.fs1.hubspotusercontent-na1.net/hubfs/2548390/Manufacturing%20Theme%202024%20Assets/NexaLight.eot') format('embedded-opentype'),
    url(//2548390.fs1.hubspotusercontent-na1.net/hubfs/2548390/raw_assets/public/Manufacturing%20Theme%202024/fonts/NexaLight.woff2) format('woff2'),
    url(//2548390.fs1.hubspotusercontent-na1.net/hubfs/2548390/raw_assets/public/Manufacturing%20Theme%202024/fonts/NexaLight.woff) format('woff'),
    url(//2548390.fs1.hubspotusercontent-na1.net/hubfs/2548390/raw_assets/public/Manufacturing%20Theme%202024/fonts/NexaLight.ttf) format('truetype'),
    url(//2548390.fs1.hubspotusercontent-na1.net/hubfs/2548390/raw_assets/public/Manufacturing%20Theme%202024/fonts/NexaLight.svg) format('svg');
  font-weight: 300;
}

@font-face {
  font-family: 'NexaRegular';
  src: url('https://2548390.fs1.hubspotusercontent-na1.net/hubfs/2548390/Manufacturing%20Theme%202024%20Assets/NexaRegular.eot') format('embedded-opentype'),
    url(//2548390.fs1.hubspotusercontent-na1.net/hubfs/2548390/raw_assets/public/Manufacturing%20Theme%202024/fonts/NexaRegular.woff2) format('woff2'),
    url(//2548390.fs1.hubspotusercontent-na1.net/hubfs/2548390/raw_assets/public/Manufacturing%20Theme%202024/fonts/NexaRegular.woff) format('woff'),
    url(//2548390.fs1.hubspotusercontent-na1.net/hubfs/2548390/raw_assets/public/Manufacturing%20Theme%202024/fonts/NexaRegular.ttf) format('truetype'),
    url(//2548390.fs1.hubspotusercontent-na1.net/hubfs/2548390/raw_assets/public/Manufacturing%20Theme%202024/fonts/NexaRegular.svg) format('svg');
  font-weight: 400;
}

@font-face {
  font-family: 'Nexa Bold';
  src: url('https://2548390.fs1.hubspotusercontent-na1.net/hubfs/2548390/Manufacturing%20Theme%202024%20Assets/NexaBold.eot') format('embedded-opentype'),
    url(//2548390.fs1.hubspotusercontent-na1.net/hubfs/2548390/raw_assets/public/Manufacturing%20Theme%202024/fonts/NexaBold.woff2) format('woff2'),
    url(//2548390.fs1.hubspotusercontent-na1.net/hubfs/2548390/raw_assets/public/Manufacturing%20Theme%202024/fonts/NexaBold.woff) format('woff'),
    url(//2548390.fs1.hubspotusercontent-na1.net/hubfs/2548390/raw_assets/public/Manufacturing%20Theme%202024/fonts/NexaBold.ttf) format('truetype'),
    url(//2548390.fs1.hubspotusercontent-na1.net/hubfs/2548390/raw_assets/public/Manufacturing%20Theme%202024/fonts/NexaBold.svg) format('svg');
  font-weight: 700;
}






body {
  line-height: 1.4;
  overflow-wrap: break-word;
}

/* 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 {
  font-size: 1rem;
  margin: 0 0 1.4rem;
}

/* Anchors */

a {
  cursor: pointer;
  text-decoration:none;
}

/* Headings */

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

/* Lists */

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

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

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

/* Code blocks */

pre {
  overflow: auto;
}

code {
  vertical-align: bottom;
}

/* Blockquotes */

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

/* Horizontal rules */

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

/* Image alt text */

img {
  font-size: 0.583rem;
  word-break: normal;
}

img {
  max-width: 100%;
  vertical-align: middle;
}
button,
.button,
.hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

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

/* No button */

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

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

/* Labels */

form label {
  display: inline-block;
  font-size: 16px;
  margin-bottom: 0.35rem;
}

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

/* 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: inline-block;
  color: #232323;
  font-family: NexaRegular;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  width: 100%;
  padding:20px 30px;
}

form textarea {
  resize: vertical;
}

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

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

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

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

.hs-error-msgs label {
  color: #EF6B51;
  margin-top: 0.35rem;
}

/* Submit button */

form input[type=submit],
form .hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}
.contact-us-form form select.hs-input {
  background-image:url(//2548390.fs1.hubspotusercontent-na1.net/hubfs/2548390/raw_assets/public/Manufacturing%20Theme%202024/images/dropdown-arrow.svg) !important;
}
.contact-us-form form [type="checkbox"]:checked + span:after{
  background-image: url(//2548390.fs1.hubspotusercontent-na1.net/hubfs/2548390/raw_assets/public/Manufacturing%20Theme%202024/images/tick.svg) !important;
  background-repeat: no-repeat;
}

.contact-us-form .hs-button{
  background-image: url(//2548390.fs1.hubspotusercontent-na1.net/hubfs/2548390/raw_assets/public/Manufacturing%20Theme%202024/images/button-arrow.svg) !important;
  background-repeat: no-repeat;
}
/* Captcha */

.grecaptcha-badge {
  margin: 0 auto;
}


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


  


.header-main li.megaMenu .hs-menu-children-wrapper {
  display: none;
}
.header-main .hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover>.hs-menu-children-wrapper {
  display: flex;
}
.header-main {
  position: relative;
} 
.header-main .hs-menu-wrapper.flyouts .hs-menu-item.hs-menu-depth-1 {
  position: static;
  padding: 32px 0;
} 
.header-main .row-fluid .span4, .header-main .row-fluid .span3, .header-main .row-fluid .span2  {
  width: auto;
}
.header-main {
  border-style: solid;
  border-width: 0 0 1px;
  transition: background .3s,border .3s,border-radius .3s,box-shadow .3s;
  /*padding: 0 0 0 30px;*/
  z-index: 100;
  border-color: rgba(35, 35, 35, 0.2);
}
/*.header-main .header-logo {
padding-top: 23px;
}*/
.header_search svg {
  vertical-align: middle;
  display: inline-block;
}

.header-main li.hs-menu-item a {
  color: #232323;
  /*   font-family: 'Nexa Bold'; */
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  /*   text-transform: uppercase; */
  margin: 0 16px;
  transition: .4s;
  display:inline-block;
}

.hs-row .content-col .links-row .link-col a,
ul.twocol_list li a,
.menunav_content ul.twocol_list li a {

  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;

  padding: 0;
  padding-bottom: 14px;
  transition: .4s;
}
.header-main .hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  left: 0;
  opacity: 1;

}
.header-main .hs-menu-wrapper>ul>li {
  border-top: 2px solid transparent;
}
.header-main .hs-menu-wrapper>ul>li:hover,
.header-main .hs-menu-wrapper>ul>li.active-branch {
  border-top: 2px solid #FF3D00;
}

.header-main li.hs-menu-item:after, .header-main li.hs-menu-item:before {
  display: block;
  background: #FF3D00;
  position: absolute;
  transition: .3s;
  transition-timing-function: cubic-bezier(.58,.3,.005,1);
}
.header-main row-fluid {
  align-items: center;
}
.header_search {

  cursor: pointer;
  transition: none;

  position:relative;
}
header.site-header {
  max-width: 100%;
  width: 100%;
}

.header_search:hover svg.searchSvg:hover path {
  stroke: #FF3D00;
  fill: #FF3D00;
}   
span.rt_button_wrapper {     
  position: relative;
  top: 45%;
}            
a.rt_toggle_cta {
  background: #FF3D00;
  background-image: linear-gradient(270deg,transparent,transparent 50%,#191817 0,#191817);
  background-position: 100% 0;
  background-size: 200% 100%;
  /*   padding: 25px 30px 23px; */
  transition: color .3s ease,background .5s cubic-bezier(.62,.83,.34,.93);
  position: absolute;
  right: 0;
  top: 0px;
  padding: 34px 30px 23px;
}
.header-logo img {
  vertical-align: middle;
}
a.rt_toggle_cta:hover {
  background-position: 0 0;
}

.header-main .dnd-section>.row-fluid {
  max-width: 100%;
  align-items:center;
}
.header-main .dnd-section .dnd-column {
  padding: 0;
}
div#headerSearch {   
  background: #f7f7f7;
  float: right;
  padding: 15px 30px;
  transition: background .3s, border .3s, border-radius .3s, box-shadow .3s;
  width: 100%;
  position: absolute;
  right: 0;
  z-index: 100;
  top: 100%;
  right: 0;
  min-width: 440px;
  margin-top: 26px;
  padding: 10px;
}
.search_cols {
  display: flex;
  justify-content: space-around;
  width:90%;
}
span.search_cross i{
  cursor:pointer;
}
input.hs-search-field__input::placeholder {
  opacity: 0.5;
}
span.search_cross {
  padding-left: 2vw;
  padding-top: 1vh;
}
div#headerSearch form {
  background: #f7f7f7;
}
input.hs-search-field__input {
  border-radius: 0 0 0 0;
  padding: 17px 15px;
  border: 0 !important;
  display: inline-block;
  vertical-align: middle;
  white-space: normal;
  background: none;
  line-height: 1;
  min-width: 0;
  font-size: 15px !important;
  -webkit-appearance: none;
  -moz-appearance: none;
  flex-basis: 100%;
  color: #3f444b !IMPORTANT;
  transition: color .2s;
  outline:none;
}


.header-main li.megaMenu .hs-menu-children-wrapper {
  position: absolute;
  width: 100%;
  left: 0; background: #ffffff;  
  border-top: 1px solid #e6e9eb;
  width: 100%;
  padding: 20px 30px;
  text-align: left;   
}
.menunav_content .ms-row {
  display: flex;
  justify-content:space-between;
}
.sub_nav_heading p { 
  color: #232323;
  /*   font-family: 'Nexa Bold'; */
  font-size: 24px;
  line-height:1; 
  font-style: normal;
  font-weight: 700;
  /*   text-transform: uppercase;  */
  padding: 0;
  padding-bottom: 0;
  transition: .4s;
}
.ms-col.subnav_title {
  border-right: 2px solid #e6e9eb;
  padding-right: 2vw;
  max-width:240px;
} 

.header-main .hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover>.hs-menu-children-wrapper {
  left: 0;
  opacity: 1;
  /*     top: 100%; */
  transition: background .3s,border .3s,border-radius .3s,box-shadow .3s;
  padding-bottom: 10px;
}
.subnav_bgcolor {
  border-style: none;
  transition: background .3s,border .3s,border-radius .3s,box-shadow .3s;
  padding: 0;
  background: #fc5220;
  position: relative; 
  padding: 2.5vw 9vw 5vw 2vw;
}

.hs-menu-wrapper ul.twocol_list {
  display: block;
  columns: 2;
  -webkit-columns: 2;
  -moz-columns: 2;

}
.bg_colorimg_cta a {
  background: #FFF;
  padding: 25px 30px;
  position: absolute;
  padding-bottom: 23px;
  background-position: 100% 0;
  background-size: 200% 100%;
  transition: color .3s ease,background .5s cubic-bezier(.62,.83,.34,.93);
  background-image: linear-gradient(to left, transparent, transparent 50%, #191817 50%, #191817);
}
.bg_colorimg_cta {
  position: absolute;
  left: 0;
  bottom: 17%;
}
.menunav_content .subnav_bgcolor .bg_colorimg_cta a {
  color: #fff;
  padding: 30px 50px;
  padding-top: 12px;
  font-size: 0;
}
.subnav_heading p {
  color: #fff;
  /*   font-family: 'Nexa Regular'; */
  font-size: 18px;
  /*   text-transform: uppercase;  */
  margin: 0;
  padding: 0;
}
.ms-image-color {  
  /*   margin-left: 15vw; */
  position:relative;
}
.subnav_heading h2 p {
  font-size: 50px;
  /*   font-family: 'Nexa Bold'; */
} 
.menunav_content .subnav_bgcolor .bg_colorimg_cta a span {
  font-size: initial !important;
  padding-left: 2vw;
  margin-right: 0;
  position: absolute;
  left: 40%;
}



.bg_colorimg_cta a:hover {
  background-position: 0 0;
}

.header-main .menunav_content .subnav_cta a:hover {
  color:#FF3D00; 
}
.header-main .menunav_content .subnav_cta  a:hover,
.header-main .menunav_content .right_navimg + .bg_colorimg_cta a:hover {
  background-position: 0 0;
}
.header-main .menunav_content .subnav_cta a {
  border-bottom: 1px solid #fc5220;
  display: inline-block;
  width: auto;
  padding: 0;
  position: absolute; 
  background-position: 100% 0;
  background-size: 200% 100%;
  transition: color .3s ease,background .5s cubic-bezier(.62,.83,.34,.93);
  background-image: linear-gradient(to left, transparent, transparent 50%, #fff 50%, #fff);
}
.header-main .menunav_content .right_navimg + .bg_colorimg_cta a span {
  margin-left: 2vw;
}  
.header-main .hs-menu-wrapper.flyouts .hs-menu-children-wrapper a {
  white-space: normal;
  /*   text-transform:uppercase; */
}
.header-main .menunav_content .right_navimg + .bg_colorimg_cta a {
  color: #fff;
  background: #000;
  position: absolute;
  padding-top: 1vw;   
  padding-bottom: 1vw;
  padding-right: 3vw;  
  position: absolute;
  background-position: 100% 0;
  background-size: 200% 100%;
  transition: color .3s ease,background .5s cubic-bezier(.62,.83,.34,.93);
  background-image: linear-gradient(to left, transparent, transparent 50%, #FF3D00 50%, #FF3D00);
}


/* Mobile Nav */
.header-main .hs-menu-wrapper>ul>li>.hs-menu-children-wrapper {
  display: none;
  position: absolute;    
  top: 101%;     
  padding: 0;
  z-index: 22;
  text-align: left;
  /*     box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.25);
  border-radius: 5px;  */
  left: -50%;
  min-width: 200px;   
}   
.header-main .hs-menu-wrapper>ul>li>ul .content-wrapper {
  max-width: 1100px;
  width:100%;
}
.menunav_content .ms-row .ms-col {
  width: 30%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;

}
.menunav_content .ms-row .ms-col:nth-child(2) {
  width: 42%;

}
.menunav_content .ms-row .ms-col:first-child {
  width: 28%;
}
.right_navimg {
  text-align: right;
}
.header-main .menunav_content .subnav_cta a {
  white-space: normal;
  /*   text-transform: uppercase; */
  /*   font-family: NexaRegular; */
  font-size: 16px;
  font-weight: 400;
  line-height: 19.84px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  display: flex !important;
  justify-content: space-between;
  max-width: 162px;
  position: static;
  margin:0;
  /*   text-transform: uppercase; */
}
.subnav_cta.view-all {
  padding-top: 15px;
}
.header-main .menunav_content .right_navimg + .bg_colorimg_cta a {
  position: static;
  margin: 0;
  /*   font-family: NexaRegular; */
  font-size: 16px;
  font-weight: 400;
  line-height: 19.84px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  margin-left: 25px;
}
.bg_colorimg_cta {
  position: absolute;
  left: 0;
  bottom: 6px;
  width: 100%;
}
.header-main .menunav_content .right_navimg + .bg_colorimg_cta a span {
  margin-left: 0;
}
.header-main .hs-menu-wrapper>ul>li>ul .content-wrapper .menunav_content {
  padding: 15px 0;
}
.header-main .hs-menu-wrapper>ul>li>ul .content-wrapper>li{
  padding: 0 !important;
}
.header-main .dnd-section .dnd-column:last-child {
  width: 15%;
  text-align: right;
}
div#show_searchinput {
  display: none;
}
div#nav-icon1 {
  display: none;
}
.right_header div#show_searchinput {
  display: block;
}
div#headerSearch form {
  padding: 0;
}

div#headerSearch {
  padding: 15px;
}

span.search_cross {
  padding-top: 20px;
}
.header-main nav.menu.menu--desktop>ul>li>ul .content-wrapper {
  max-width: 1100px;
  width: 100%;
}

.header-main nav.menu.menu--desktop ul {
/*   display: flex;
  flex-wrap: wrap; */
  list-style: none;
  margin: 0;
  padding: 0;
}
.header-main nav.menu.menu--desktop .hubspot-navigation-menu .hs-menu-wrapper > ul,
.header-main nav.menu.menu--desktop ul.mega-mega-custom  {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
}
.header-main nav.menu.menu--desktop>ul>li {
  position: static;
  padding: 32px 0;
}
.header-main nav.menu.menu--desktop>ul>li>ul .content-wrapper .menunav_content {
  padding: 15px 0;
}
.header-main nav.menu.menu--desktop>ul>li {
  border-top: 2px solid transparent;
}
.header-main nav.menu.menu--desktop>ul>li:hover, .header-main nav.menu.menu--desktop>ul.active-branch {
  border-top: 2px solid #FF3D00;
}
@media screen and (min-width: 992px){
  .mobile-head-wrap {
    display: none;
  }
  .header-main .custom-menu-primary.mobile {
    display: none !important;
  }
}
@media screen and (max-width: 1500px){
  .header-main .dnd-section .dnd-column:last-child {
    text-align: center;
  }  
}
@media screen and (max-width: 1380px){
  .header-main .dnd-section .dnd-column:last-child {
    text-align: left;
  }  
}

@media screen and (max-width: 1100px){
  .header-main li.hs-menu-item a {
    font-size: 13px;
    margin: 0 12px;
  }
}

@media screen and (max-width: 991px){

  div#mobile_nav ul li {
    border: 0;        
    padding-top: 2vw;   
  }      
  div#mobile_nav ul.open-menu-list li {
    padding: 0;
  }
  div#mobile_nav ul.open-menu-list {   
    padding-top: 3vw;
  }

  #mobile_nav li.hs-menu-item.hs-menu-depth-2 a {

    font-size: 16px ;
  }
  div#mobile_nav ul li a {
    font-size: 16px;
    line-height: 32px;
    margin: 0;
  }
  div#nav-icon1{
    display:block;
  }    
  .hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover>.hs-menu-children-wrapper {
    left: 0;
    opacity: 1;
    top: 0;
  }    
  .header-main .custom-menu-primary.mobile {
    overflow:auto;
    position: absolute;
    top: 100%;
    background: #fff;
    z-index: 1100;    
    width: 100%;
    left: 0;
    padding: 0px 20px 20px;    
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    border-top: 1px solid #E6E9EB;
    max-height: Calc(100vh - 71px);
  }
  div#show_searchinput {
    display: block;
  }
  .header-main .custom-menu-primary.mobile .dnd-section {
    padding: 0;
  }
  .header-main .child-trigger {
    cursor: pointer;
    height: 40px;
    text-align: center;      
    width: 80px;
    top: 15px;
    transform: none;
    display: block;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 0;
    margin-left: 0;
    text-align: right;
  }
  .header-main .custom-menu-primary.mobile .hs-menu-wrapper ul>li {
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
  }
  .header-main .custom-menu-primary.mobile .hs-menu-wrapper>ul>li>.hs-menu-children-wrapper {
    top: auto;
    left: 0;
    width: 100%;
    box-shadow: none;
    transform: none;
    position: relative;
    padding: 0;
    padding: 0px 20px 10px 20px;
  }
  .header-main .child-trigger svg {
    width: 14px;
  }
  .header-main .child-trigger svg {
    transition: all .3s ease-in-out;
  }
  .header-main .mobile-btns-wrap {
    align-items: center;
    display: flex;
    width: auto;
    margin-left: 15px;  
    justify-content: flex-end;
  }
  .header-main .mobile-btn {
    margin-right: 20px;
  }
  .site-header .header-main .hs-button {
    /* background-color: #185DF4; */
    border-radius: 50px;
    border: 2px solid;
    font-style: normal;
    font-size: 18px;
    line-height: 1;
    text-align: center;
    color: #fff;
    padding: 15.5px 50.5px 15.5px 21px;
    background-image: url(//2548390.fs1.hubspotusercontent-na1.net/hubfs/2548390/raw_assets/public/Manufacturing%20Theme%202024/images/rigth-arrow_white.svg);
    background-size: 20px;
    background-repeat: no-repeat;
    background-position: 87% center;
    min-width: auto;
    font-weight: 500;
  }
  .site-header .header-main .hs-button {
    background-color: rgba(24, 93, 244, 1.0);
    border-color: rgba(24, 93, 244, 1.0);    
    color: rgba(255, 255, 255, 1.0);
  }  
  div#nav-icon1 {    
    margin: 0;
    display: flex;
    vertical-align: middle;
    width:18px;
    height:18px;
  }

  .header-main .hs-menu-wrapper {
    display: none;
  }

  .right_header {
    display: none;
  }
  .header-main .dnd-section .dnd-column:last-child {
    width: auto;
  }
  .header-main .dnd-section>.row-fluid {
    width: 100%;
    flex-wrap: wrap;
  }
  .header-main .row-fluid .span4, .header-main .row-fluid .span3, .header-main .row-fluid .span2 {
    width: 100%;
  }
  .headerTop {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    align-items: center;
  }
  .header-main {
    padding: 17px 0;
  }
  .mobile-head-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
  }
  .header-main .custom-menu-primary.mobile .hs-menu-wrapper {
    display: block;
  }
  .header-main .hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover>.hs-menu-children-wrapper {
    display: none;
  }
  div#mobile_nav ul li:not(:last-child) {
    border-bottom: 2px solid #E6E9EB;
    padding: 15px 0;
  }
  .header-main .custom-menu-primary.mobile .hs-menu-wrapper ul>li{
    border:none;
    padding-top: 13px;
  }
  .header-main .custom-menu-primary.mobile .hs-menu-wrapper ul>li {
    padding: 15px 0!important;
  }
  .header-main .custom-menu-primary.mobile .hs-menu-wrapper ul>li:not(:last-child) {
    border-bottom: 2px solid #E6E9EB;
  }
  div#nav-icon1 img.close {
    display: none;
  }
  .mobile-open div#nav-icon1 img.close {
    display: block;
  }
  .mobile-open div#nav-icon1 .hamburger {
    display: none;
  }
  .header-main .custom-menu-primary.mobile .hs-menu-wrapper ul>li>a {
    font-size: 16px;
    line-height: 32px;
    margin: 0;
  }
  .header-main .custom-menu-primary.mobile .hs-menu-wrapper>ul>li>.hs-menu-children-wrapper>li>a {

    font-size: 16px;
  }
  .header-main .custom-menu-primary.mobile .hs-menu-wrapper ul>li.request-a-quote>a
/*   ,  .header-main .custom-menu-primary.mobile .hs-menu-wrapper>ul>li:last-child>a */
  
  {
    background: #232323;
    background-image: linear-gradient(270deg, transparent, transparent 50%, #fff 0, #fff);
    background-position: 100% 0;
    background-size: 200% 100%;
    /*     font-family: NexaRegular; */
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 19.84px;
    padding: 20px;
    /*     text-transform: uppercase; */
    transition: color .3s ease, background .5s cubic-bezier(.62,.83,.34,.93);
    display: flex;
    font-size: 13px;
    justify-content: space-between;
    line-height: 16.12px;
    vertical-align: middle;
    width: 100%;
    color: #fff;
    max-width: 347px;
    align-items: center;
    margin-top: 40px;
  }

  div#headerSearch form {
    background-color: #fff;
    border: none;
    padding: 0;
  }

  div#headerSearch {
    padding: 20px;
    float:none;
    width: 100%;
  }

  .search_cols {
    width: 100%;
    position:relative;
  }
  div#headerSearch input.hs-search-field__input {
    padding: 17px;
  }
  span.search_cross {
    position: absolute;
    right: 20px;
    padding: 0;
    top: 25%;
  }
  .right_header div#show_searchinput {
    display: none;
  }

  body.mobile-open.s-active div#nav-icon1 img.close {
    display: none;
  }
  body.mobile-open.s-active div#nav-icon1 .hamburger {
    display: block;
  }
  .header-main .custom-menu-primary.mobile {
    display: none;
  }
  .mobile-open .header-main .custom-menu-primary.mobile {
    display: block !important;
  }
}


@media screen and (max-width: 767px){
  div#headerSearch {
    min-width: 330px;
    padding: 10px;
  }
}
@media screen and (max-width: 470px){
  div#headerSearch {
    min-width: 230px;
  }
}
/* @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    */
/*****************************************/





footer.footer-container {
  max-width: 100%;
}
.footer-container .contact_address p a { 
/*   color: #FFF; */
  /*   font-family: 'NexaRegular'; */
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}

.footer form label {
  display: initial;
}
.footer-middle-wrapper p {
  /*   font-family: NexaRegular; */
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  max-width: 210px;
  padding: 10px 0;
  margin-bottom:20px;
  color:#fff;
}
.footer_logo a {
  border: none !important;
}
.footer-middle-wrapper .dnd-section .dnd-column:first-child a{
/*   color: #FFF; */
  /*   font-family: 'NexaRegular'; */
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;  
  border-bottom: 1px solid #ff3c00;
}
.footer-middle-wrapper .dnd-section .dnd-column:first-child a:hover {
  color: #FFF;
}
.footer-container .newsletter_form h3 {
  display: none;
}
.footer-container .newsletter_form form {
  background: transparent;
}   
.footer-container .dnd-section .dnd-column {
  padding: 0;
}
.footer-container .container-fluid.footer-bottom-wrappper {
  border-top: 1px solid rgb(255 255 255 / 30%);
  padding:50px 0;
}
.footer-container .newsletter_form .hs-button {
  background-position: 50%;
  background-repeat: no-repeat;
  border: 0;
  border-radius: 0;
  font-size: 0; 
  margin-top: 0;
  padding: 20px 30px 31px 20px;  
  position: absolute;
  top: 0px;
  right: 0;
  background-color: #FF3D00;
}
.footercop_text {
  display: none;
}
.footer-container .newsletter_form form .hs_error_rollup {
  display: none;
}
.footer-container .container-fluid.footer-bottom-wrappper p a {
  border-bottom: 1px solid #fff;
  /*   font-family: Nexa-Bold; */
  font-size: 18px;
  font-weight: 400;
  line-height: 23.08px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color:#FF3D00;
}
.footer-middle-wrapper {
  padding: 80px 0;
}
.footer-container .container-fluid.footer-bottom-wrappper p{
  color: #FFF;
  /*   font-family: 'Nexa Light'; */
  font-size: 18px;
  font-weight: 400;
  line-height: 22.12px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;  
  margin-bottom:0;
}
.footer-container ul.social_listing {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  position: absolute;
  right: 0;   
  top: 0;
}
.footer-container ul.social_listing li {
  padding-right: 2vw;
}
.footer-container .footer_sociallink {
  position: relative;
}
.newsletter_form {
  padding-top: 20px;
}
.footer-container .newsletter_form form .hs-input.invalid.error {
  border-color: #ef6b51;
}
.footer-container .newsletter_form form input[type=email] {
  background: transparent;
  border-radius: 0;
  color: #787878;
  /*   font-family: Nexa Regular; */
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  height: 50px;
  line-height: normal;
  width: 100%;
  border: 1px solid #FFF;
  opacity: 0.69;
}
.footer-container .newsletter_form form .hs-error-msg {
  color: #ef6b51;
  margin-top: .35rem;
  font-size: 14px;
}
.footer-container .contact_email, 
.footer-container .contact_phone {
  padding-bottom: 12px;
}
.footer-container .contact_address {
  padding-bottom: 10px;
}
.footer-container .newsletter_form form input[type=email]::placeholder {
  color: #787878;
  /*   font-family: 'Nexa Regular'; */
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

footer.footer-container .span4 {
  width:30%;
}
footer.footer-container .span4:first-child{
  width:40%;
}
.footer-container h3 {
  color: #FFF;
  /*   font-family: 'NexaRegular'; */
  font-size: 20px;
  font-style: normal;   
  font-weight: 400;
  line-height: 24.8px;
}
footer.footer-container ul li a {
  color: #FFF;  
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 35px;
}
.footer-container .hs-menu-wrapper ul {
  display: block;
}
footer .dnd-section {
  padding: 0;
}

footer .dnd-section > .row-fluid {
  padding:0 20px;
}
.footer-container .newsletter_form form {
  background: transparent;
  padding: 0;
  max-width: 360px;
  width: 100%;
  border: none;
  position:relative;
}

/* Media Query.. */





@media screen and (max-width: 991px){

  .footer-container .newsletter_form form {
    max-width: 90%;
  }

}

@media screen and (max-width: 767px) {   

 
  .footer-container ul.social_listing {
    list-style:none;
    margin: 0;
    padding: 0;
    position: static;
  }
  .footer-container ul.social_listing li {
    padding-right: 5vw;
  }
  .footer_copyright {
    display: flex;
    flex-wrap: wrap;
  }
  .footer-bottom-wrappper .span6:first-child {
    display: none;
  }
  .footercop_text {
    display: block;
    order: 2;
    width:100%;
  }
  .footer-container .footer_sociallink {
    order: 1;
    width:100%;
  }
  .footer-container .container-fluid.footer-bottom-wrappper p {
    font-size: 18px;
    line-height: 28px;
  }
  footer.footer-container .span4:first-child {
    width: 100%;
  }
  footer.footer-container .span4{
    width: 100%;
  }
/*   .footer-container .newsletter_form .hs-button {
    top: 31px;
  } */
  .footer-container .newsletter_form form {
    max-width: 100%;
  }
  .footer-middle-wrapper p {
    font-size: 14px;
    line-height: 22px;
    max-width: 306px;
  }

  .footer-container h3 {
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 20px;
  }

  footer.footer-container ul li a {
    font-size: 14px;
    line-height: 32px;
  }
  .footer-middle-wrapper {
    padding: 50px 0;
  }

  .footer-middle-wrapper .dnd-section .dnd-column:first-child a {
    font-size: 14px;
    line-height: 22px;
  }

  .footer-middle-wrapper p {
    font-size: 14px;
    line-height: 22px;
    max-width: 306px;
  }

  footer.footer-container .span4 {
    border-bottom: 1px solid rgba(255,255,255,0.3);
    margin-bottom: 40px;
  }

  footer.footer-container .span4:last-child {
    border: none;
    margin-bottom: 0px;
  }

  .newsletter_form {
    margin-bottom: 40px;
  }

  .footer-container .hs-menu-wrapper ul {
    margin-bottom: 40px;
  }

  footer.footer-container .span4:last-child .hs-menu-wrapper ul{
    margin-bottom: 0px;
  }
}
/* Menu and simple menu */





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

/* Horizontal menu */

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

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

/* Vertical menu */

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

/* Flyouts */

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

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

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

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

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

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

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

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

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

.hs_cos_wrapper_type_cta img,
.hs_cos_wrapper_type_logo img,
.hs_cos_wrapper_type_rich_text img {
  height: auto;
  max-width: 100%;
}

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





.banner_cta a:hover span svg path,
.banner_cta a:hover span svg:hover path {
  fill: #232323;
  stroke: #232323;
}
.banner_sub_heading, 
.banner_sub_heading h5, 
.banner_heading, 
.banner_heading h1 { 
  margin: 0;
  padding: 0;
}
section.homepage-banner {
  background-repeat: no-repeat;
  background-size: 100% 100%;
  position: relative;
}
.homepage_banner_inner {
  padding-top: 351px;
}
.banner_sub_heading h5 {

  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;

}
.banner_heading {
  max-width: 820px;
}
.banner_heading h1 {

  font-size: 82px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;

  padding-top: 5px;
  padding-bottom: 3vw;
}
.banner_cta a {

  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 19.84px;

  padding: 20px 30px;
}
.scroll_section {
  bottom: 0;
  position: absolute;
  right: 0;
  cursor: pointer;
}
.banner_cta {
  padding-bottom: 90px;
}

p.scrol_text:hover{
  color:#FFFFFF;
}
p.scrol_text {
  transform: rotate(-90deg);
  flex-shrink: 0;
  cursor: pointer;
  /*   margin-bottom: 75px; */
  margin-bottom: 0;
}  
p.scroll_img {

  cursor: pointer;
  text-align: center;
  margin-top: 80px;
  margin-bottom: 30px;
}

section.homepage-banner {
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  background-position: center;
}


@media (min-width: 1025px) and (max-width: 1280px){  


  /* Services Carasoul */
  #services_slider .item .icon_title p {
    font-size: 19px;
    line-height: 29px;
    width: 85%;
  }
}

@media screen and (min-width: 800px) and (max-width: 1280px) {     
  #services_slider .item .icon_title p {
    font-size: 19px;
    line-height: 29px;
    width: 89%;     
  }
}

@media (min-width: 768px) and (max-width: 1024px){ 

}      

/* Ipad PRO */
@media (min-width: 992px) and (max-width: 1199px) {
  #services_slider .item .icon_title p {
    font-size: 19px;
    line-height: 29px;
    width: 100%;
  }
}

/* Ipad */    
@media (min-width: 768px) and (max-width: 991px) {
  .banner_heading h1 {
    font-size: 60px;
  }
  .homepage_banner_inner {
    padding-top: 250px;
  }
  .banner_heading {
    max-width: 600px;
  }
}

/* Mobile Devices... */   
@media screen and (max-width: 767px) {

  .homepage_banner_inner {

    padding-top: 12vw;
  }     
  .banner_sub_heading h5 {
    font-size: 16px;
    line-height: 16px;
  }    
  .banner_heading h1 {
    font-size: 34px;
    line-height: 44px;
    padding-bottom: 50px;
  }
  .banner_cta a {
    font-size: 13px;
    line-height: 16.12px;
  }
  .scroll_section {
    bottom: 0;
    cursor: pointer;
    position: unset;
    right: 0;
    text-align: center;
  }
  p.scrol_text {
    cursor: pointer;
    flex-shrink: 0;
    margin-bottom: 0;
    transform: rotate(0deg);
    font-size: 13px;
    line-height: 16.12px;
    padding-bottom: 5px;
  }
  p.scroll_img {
    bottom: 0;
    cursor: pointer;    
    position: static;
    right: 48%;
    top: 90%; 
    margin-bottom: 0;
    padding-bottom: 20px;
    margin-top: 15px;
  }

  .banner_heading {
    padding: 0 10px;
  }
  p.scroll_img img {
    width: 10px;
  }
}   

@media screen and (max-width: 480px){
  .banner_cta a {
    display: flex;
    justify-content: space-between;
  }
}


/* Landing Page */

.lp .contact-us {
  padding: 0;
}

.lp .contact-us .contact-items-wrap {
  padding: 0;
}
.lp .form-section .form_title h2 {
  font-size: 82px;
  line-height: 1;
}
.lp .form-section .form-sub-title h5 {
  font-size: 24px;
  line-height: 1;
  text-transform:none;
}
.lp .header-logo img {
  max-width: 70px !important;
}
.lp .header-main .content-wrapper {
  max-width: 1320px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.lp .header-btn a {
  /*   font-family: NexaRegular; */
  font-size: 16px;
  font-weight: 400;
  line-height: 19.84px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #FFFFFF;
  display: flex;
  background-color: #232323;
  padding: 20px;
  min-width: 400px;
  align-items: center;
  justify-content: space-between;

  margin: 14px 0;
  background-image: linear-gradient(270deg, transparent, transparent 50%, #fff 0, #fff);
  background-position: 100% 0;
  background-size: 200% 100%;
  transition: color .3s ease, background .5s cubic-bezier(.62,.83,.34,.93);
  border:1px solid #232323;
}
.lp div#nav-icon1 {
  display: none;
}
.lp div#show_searchinput {
  display: none;
}
footer.footer-container.lp {
  padding: 30px 0;
  text-align: center;

}
footer.footer-container.lp .copyright p a{
  color: #FF3D00;
  border-bottom: 1px solid #232323;
}
footer.footer-container.lp .dnd-section {
  padding: 0;
}
footer.footer-container.lp .copyright p {
  /*   font-family: Nexa-Light; */
  font-size: 18px;
  font-weight: 400;
  line-height: 22.12px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #232323;
}

footer.footer-container.lp .footer_logo {
  margin-bottom: 19px;
}

@media(max-width:991px){
  .lp .header-btn a {
    min-width: 280px;
  }
  .lp .form-section .form_title h2 {
    font-size: 50px;
  }
  .lp .header-main {
    padding: 0;
  }
}
@media(max-width:767px){
  .lp .header-btn a {
    min-width: unset;
    font-size: 14px;
    line-height: 17.36px;
    padding: 15.5px;
    margin: 10.5px 0;
  }

  .lp .header-btn a span {
    display: inline-block;
    margin-right: 15px;
  }
  .lp div#show_searchinput {
    display: none !important;!i;!;
  }

  .lp div#nav-icon1 {
    display: none !important;!i;!;
  }
  .lp .form-section .form_title h2 {
    font-size: 34px;
    line-height: 44px;
  }
  .lp .form-section .form-sub-title h5 {
    font-size: 16px;
    line-height: 1;
  }
}

.featured-post .casestudy_cta a:hover svg {
  stroke: #FF3D00;
}
.breadcrumb-content h1, .breadcrumb-content h6 {
  color: #232323;
}
.case_cta a {
  background: #FFFFFF;
  background-image: linear-gradient(270deg,transparent,transparent 50%,#FF3D00 0,#FF3D00);
}
.tabitems .tab.active a.tab-title {
  background-color: ;
}
.tabitems .tab.active a.tab-title{
  color: #FFFFFF;
  background-color: #FF3D00 !important;
}
.tabitems .tab-title{
  color: #232323;
}
.social-links__icon:hover svg,
.social-links__icon:focus svg,
.social-links__icon:active svg,
.social-links__icon svg{
  fill: #FFFFFF;
}
ul.social_listing li a svg {
  color: #FFFFFF;
  fill:  #FFFFFF;
}

p.scrol_text {
  color: #FFFFFF;

}
.panaroma-slider-wrapper .cmp-carousel-accessibility-border-next-btn {
  transform: none!important;
}
.panaroma-slider-wrapper .slider-btn button {
  background-color: #fff !important;
  border-radius: 0 !important;
  width: 100%!important;
  height: 100%!important;
  padding: 20px !important;
  font-size: 100%!important;
  line-height: 100%!important;
}
.panaroma-slider-wrapper .slider-btn button:hover {
  background-color: #FF3D00!important;
}
.panaroma-slider-wrapper .slider-btn button i {
  font-size: 22px;
  color: #FF3D00;
}
.panaroma-slider-wrapper .slider-btn button:hover i {
  color: #fff!important;
}
.panaroma-slider-wrapper .slider-item .cmp-bp-card__title {
  margin-bottom: 10px!important;
}

.cmp-carousel__dots button.cmp-carousel__dot.cmp-carousel__dot--active  {
  background-color: #232323;
}
.growbus_cta a {
  align-items: center;
}
.featuredPost_layout {
  background-color: ;
}
.casestudy_cta a {
  background-color: #FFFFFF;
}
.imageoverCTA:hover .casestudy_cta a {
  background-color: #FF3D00;
}
button#loadMore {
  border-bottom-color: #FF3D00;
}

.header-main .custom-menu-primary.mobile .hs-menu-wrapper ul li {
  position: relative!important;
  z-index: 0;
}