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


@import url('https://fonts.googleapis.com/css2?family=Almarai:wght@300;400;700;800&display=swap');


@font-face {
  font-family: 'gt_pressura_mono';
  src: url('https://143935592.fs1.hubspotusercontent-eu1.net/hubfs/143935592/Ieteam-2024/fonts/gt-pressura-mono-bold-webfont.woff2') format('woff2'),
    url('https://143935592.fs1.hubspotusercontent-eu1.net/hubfs/143935592/Ieteam-2024/fonts/gt-pressura-mono-bold-webfont.woff') format('woff');
  font-weight: 700;
}
@font-face {
  font-family: 'gt_pressura_mono';
  src: url('https://143935592.fs1.hubspotusercontent-eu1.net/hubfs/143935592/Ieteam-2024/fonts/gt-pressura-mono-regular-webfont.woff2') format('woff2'),
    url('https://143935592.fs1.hubspotusercontent-eu1.net/hubfs/143935592/Ieteam-2024/fonts/gt-pressura-mono-regular-webfont.woff') format('woff');
  font-weight: 400;
}
@font-face {
  font-family: 'gt_pressura_mono';
  src: url('https://143935592.fs1.hubspotusercontent-eu1.net/hubfs/143935592/Ieteam-2024/fonts/gt-pressura-mono-light-webfont.woff2') format('woff2'),
    url('https://143935592.fs1.hubspotusercontent-eu1.net/hubfs/143935592/Ieteam-2024/fonts/gt-pressura-mono-light-webfont.woff') format('woff');
  font-weight: 300;
}



@font-face {
  font-family: 'pp_neue_montreal';
  src: url('https://143935592.fs1.hubspotusercontent-eu1.net/hubfs/143935592/Ieteam-2024/fonts/ppneuemontreal-bold-webfont.woff2') format('woff2'),
    url('https://143935592.fs1.hubspotusercontent-eu1.net/hubfs/143935592/Ieteam-2024/fonts/ppneuemontreal-bold-webfont.woff') format('woff');
  font-weight: 700;
}

@font-face {
  font-family: 'pp_neue_montreal';
  src: url('https://143935592.fs1.hubspotusercontent-eu1.net/hubfs/143935592/Ieteam-2024/fonts/ppneuemontreal-book-webfont.woff2') format('woff2'),
    url('https://143935592.fs1.hubspotusercontent-eu1.net/hubfs/143935592/Ieteam-2024/fonts/ppneuemontreal-book-webfont.woff') format('woff');
  font-weight: 400;
}

@font-face {
  font-family: 'pp_neue_montreal';
  src: url('https://143935592.fs1.hubspotusercontent-eu1.net/hubfs/143935592/Ieteam-2024/fonts/ppneuemontreal-medium-webfont.woff2') format('woff2'),
    url('https://143935592.fs1.hubspotusercontent-eu1.net/hubfs/143935592/Ieteam-2024/fonts/ppneuemontreal-medium-webfont.woff') format('woff');
  font-weight: 500;
}











:root {
  /* Theme Variable Styles */
  --body: #000000;
  --primary: #FFE000;
  --secondary: #000000;
  --tertiary: #526EE5;
  --white: #fff;
  --black: #000;
  --bold: 700;
  --medium: 500;
  --regular: 400;
  --light: 300;
  --header-bg-color:#ffffff;
  --header-link-color:#000000;
  --footer-bg-color:#000000;
  --footer-text-color:#ffffff;
  --error-text-color: #FF0201;
  --body-text-color: var(--body);
  --h1-color: var(--secondary);
  --h2-color: var(--secondary);
  --h3-color: var(--secondary);
  --h4-color: var(--secondary);
  --h5-color: var(--secondary);
  --h6-color: var(--secondary);
  --h1-weight: 400;
  --h2-weight: 400;
  --h3-weight: 400;
  --h4-weight: 400;
  --h5-weight: 400;
  --h6-weight: 400;
  --body-size: 1.375rem;
  --h1-size: 3.625rem;
  --h1-mobile-size: 3.0rem;
  --h2-size: 2.375rem;
  --h2-mobile-size: 1.75rem;
  --h3-size: 2.25rem;
  --h3-mobile-size: 1.625rem;
  --h4-size: 2.0rem;
  --h4-mobile-size: 1.375rem;
  --h5-size: 1.5625rem;
  --h5-mobile-size: 1.25rem;
  --h6-size: 1.375rem;
  --h6-mobile-size: 0.875rem;
  --label-color: var(--body);
  --help-color: #000000;
  --form-background-color: ;
  --form-border-color: var(--secondary);
  --container: 1806px;
  --container-small: 1250px;
}
html{
  font-size: 16px;
  color:var(--body-text-color);
  -webkit-text-size-adjust: 100%;
  font-variant-ligatures: none;
  -webkit-font-variant-ligatures: none;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
  -webkit-font-smoothing: antialiased;
}
body,html { 
  overflow-x: hidden; 
}
body {
  font-family: 'gt_pressura_mono', sans-serif;
  background: #fff;
  line-height: 1.3;
  word-break: break-word;
  font-weight: 400;
  font-style: normal;
  font-size: var(--body-size);
  color:var(--body-text-color);
  margin:0; 
  padding:0;
}

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

/* Custom Font Family */


/* Paragraphs */
p {
  font-size: var(--body-size);
  color:var(--body-text-color);
}
/* p:last-child{
margin:0;
}
p:first-child{
margin: 0 0 15px;
} */

/* Anchors */

a {
  color: var(--secondary);
  cursor: pointer;
  text-decoration: none;
  transition: all .3s ease-out;
  -moz-transition: all .3s ease-out;
  -ms-transition: all .3s ease-out;
  -o-transition: all .3s ease-out;
  -webkit-transition: all .3s ease-out;
  display: inline-block;
}

a:hover,
a:focus {
  text-decoration: underline;
}

/* Headings */

h1,
h2,
h3,
h4,
h5,
h6{
  color: var(--secondary);
  margin: 0px;
}

h1, .h1 { 
  font-size: var(--h1-size);
  font-weight: var(--h1-weight);
  line-height: 1.19230769231;
  color:var(--h1-color);
}
h2, .h2 { 
  font-size: var(--h2-size);
  font-weight: var(--h2-weight);
  line-height: 1.2;
  color:var(--h2-color);
}
h3, .h3 { 
  font-size: var(--h3-size);
  font-weight: var(--h3-weight);
  line-height: 1.19230769231;
  color:var(--h3-color);
}

h4, .h4 { 
  font-size: var(--h4-size);
  font-weight: var(--h4-weight);
  line-height: 1.2;
  color:var(--h4-color);
}

h5, .h5 { 
  font-size: var(--h5-size);
  font-weight: var(--h5-weight);
  line-height: 1.2;
  color:var(--h5-color);
}

h6, .h6 { 
  font-size: var(--h6-size);
  font-weight: var(--h6-weight);
  line-height: 1.3;
  color:var(--h6-color);
}
@media screen and (max-width: 991px) {
  h1, .h1 { font-size: var(--h1-mobile-size);}
  h2, .h2 { font-size: var(--h2-mobile-size);}
  h3, .h3 { font-size: var(--h3-mobile-size);}
  h4, .h4 { font-size: var(--h4-mobile-size);}
  h5, .h5 { font-size: var(--h5-mobile-size);}
  h6, .h6 { font-size: var(--h6-mobile-size);}
}

p { margin:0; }
* + h1, * + h2 { margin-top:15px; }
* + h3, * + h4 { margin-top:15px; }
* + h5, * + h6  { margin-top:15px; }
* + p { margin-top:15px }

/* Lists */

ul,
ol {
  color: var(--body);
  margin: 0 0 1.5rem;
}

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

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

/* Code blocks */

pre {
  overflow: auto;
}

code {
  vertical-align: bottom;
}

/* Blockquotes */

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

/* Horizontal rules */

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

/* Image alt text */

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

svg {
  display: inline-block;
  vertical-align: middle;
}

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

/* 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));
    }
  
}
.container,
.container-small, 
.content-wrapper {
  max-width: var(--container-small);
  margin: 0 auto;
  padding: 0 20px;
}
.left-container {
  padding-left: calc(50% - (var(--container-small) - 20px) / 2);
}
.right-container {
  padding-right: calc(50% - (var(--container-small) - 20px) / 2);
}
.dnd-section > .row-fluid {
  margin: 0 auto;
}
.dnd-section .dnd-column {
  padding: 0 1rem;
}
.full-container {
  width: 100%;
  max-width: 100%;
  padding: 0 20px;
}
@media screen and (min-width:1830px){
  .container {
    max-width: var(--container);
  }
  .left-container {
    padding-left: calc(50% - (var(--container) - 20px) / 2);
  }
  .right-container {
    padding-right: calc(50% - (var(--container) - 20px) / 2);
  }
}
@media screen and (min-width:992px) and (max-width:1198px){
  .left-container {
    padding-left:20px;
  }
  .right-container {
    padding-right:20px;
  }
}
@media screen and (max-width:991px) {
  .left-container {
    padding: 0 20px;
  }
  .right-container {
    padding:0 20px;
  }
}

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

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

.cta-wrap {
  display: inline-block;
}
.btn a{
  display: inline-block;
  font-size: 20px;
  line-height: 1.385;
  font-weight: 400;
  padding: 8px 28px 6px;
  text-align: center;
  text-decoration: none;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  white-space: normal;
  cursor: pointer;
  position: relative;
  letter-spacing: -0.05em;
  
  border-radius: 2.25rem;
  
  
  background:#1C1C1C;
  color:#ffffff;
  border: 2px solid #000000
}
/*---- Black Button Styles ----*/
.btn--black a{
  background:#1C1C1C;
  color:#ffffff;
  border: 2px solid #1C1C1C;
}
.btn--black a:hover,
.btn--black a:focus{
  background:var(--primary);
  color:#1C1C1C;
  border: 2px solid var(--primary);
}
.btn--blackborder a{
  background:#ffffff;
  color:#000000;
  border: 2px solid #1C1C1C;
}
.btn--blackborder a:hover,
.btn--blackborder a:focus{
  background:#1C1C1C;
  color:#ffffff;
  border: 2px solid #1C1C1C;
}
/*---- Yellow Button Styles ----*/
.btn--yellow a{
  background:var(--primary);
  color:var(--secondary);
  border: 2px solid var(--primary);
}
.btn--yellow a:hover,
.btn--yellow a:focus{
  background:var(--secondary);
  color:var(--primary);
  border: 2px solid var(--secondary);
}
.btn--yellowborder a{
  background:#ffffff;
  color:var(--secondary);
  border: 2px solid var(--primary);
}
.btn--yellowborder a:hover,
.btn--yellowborder a:focus{
  background:var(--primary);
  color:var(--secondary);
  border: 2px solid var(--primary);
}
/*---- Blue Button Styles ----*/
.btn--blue a{
  background:var(--tertiary);
  color:#ffffff;
  border: 2px solid var(--tertiary);
}
.btn--blue a:hover,
.btn--blue a:focus{
  background:#ffffff;
  color:var(--tertiary);
  border: 2px solid var(--tertiary);
}
.btn--blueborder a{
  background:#ffffff;
  color:var(--tertiary);
  border: 2px solid var(--tertiary);
}
.btn--blueborder a:hover,
.btn--blueborder a:focus{
  background:var(--tertiary);
  color:#ffffff;
  border: 2px solid var(--tertiary);
}
/* Labels */

form label {
  display: inline-block;
  margin-bottom: 0px;
  color:var(--body);
  font-size: 26px;
  font-weight: 400;
  line-height: 1.730769;
  letter-spacing: -0.04em;
}

/* Help text - legends */

form legend {
  font-size: 0.875rem;
  color: var(--help-color);
  margin-bottom: 5px;
}

/* Inputs */

form .hs-form-field {
  position: relative;
  display: flex;
  width: 100%;
  margin: 0px 0px 13px;
}

.hs-form-field > label > span:first-child {
  color: var(--label-color);
}

/* Label Styles for Fields that can shift the label when filled */
.hs-form-field > label {
  display: block;
  font-size: 26px;
  font-weight: 400;
  line-height: 1.730769;
  letter-spacing: -0.04em;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  color: var(--label-color);
  margin-bottom: 0px;
  text-transform:uppercase;
}
.hs-form-field > label span:first-child {
  color: var(--body);
}




form input[type=text],
form input[type=email],
form input[type=password],
form input[type=tel],
form input[type=number],
form input[type=file],
form input[type="search"],
form select,
form textarea {
  -webkit-appearance: none;
  appearance: none;
  background-color: #F6F6F6;
  background-color: var(--form-background-color);
  border:0;
  border-bottom:1px solid var(--form-border-color);
  width: 100%!important;
  height: 34px;
  outline:0;
  display: inline-block;
  font-size: 16px;
  font-weight: 400;
  text-align: left;
  padding: 15px 20px;
  
  
  
  border-radius: 0;
  padding: 8px 0;
  
  
  

}


form select{
  
  padding: 0px 20px 0px 0px;
  
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: url('https://143935592.fs1.hubspotusercontent-eu1.net/hubfs/143935592/Ieteam-2024/line-angle-down-icon.svg') var(--form-background-color);
  background-position: 94% 54%;
  background-repeat: no-repeat;
  background-size: 20px;
  color:rgba(0, 0, 0, 1);
  line-height: 21px;
  overflow: hidden;
  text-overflow: ellipsis; 
}


form input[type=text]::placeholder,
form input[type=email]::placeholder,
form input[type=password]::placeholder,
form input[type=tel]::placeholder,
form input[type=number]::placeholder,
form input[type=file]::placeholder,
form input[type="search"]::placeholder,
form textarea::placeholder{
  
  color:var(--senary);
  

}
form textarea,
.hs-fieldtype-textarea.hs-input {
  min-height: 94px;
  resize:none !important;
}
.submitted-message,
.submitted-message *{
  color: var(--body);
  font-size: 22px;
  font-weight: 700;
  text-align:center;
}
form fieldset {
  max-width: 100% !important;
}

form input[type=text]:focus,
form input[type=email]:focus,
form input[type=password]:focus,
form input[type=tel]:focus,
form input[type=number]:focus,
form input[type=file]:focus,
form select:focus,
form textarea:focus {
  border-color: var(--primary);
}

form input[type="radio"]:focus {
  border-color: var(--primary);
}

form fieldset.form-columns-2>div,
form fieldset.form-columns-3>div,
form fieldset.form-columns-4>div{
  width: 100%!important;
}

form fieldset .input {
  margin-right: 0!important;
  display:flex;
  flex-wrap:wrap;
}
form .hs-fieldtype-booleancheckbox .inputs-list {
  width: 100%;
}


@media (min-width: 481px) {
  form fieldset.form-columns-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 20px;
  }

  form fieldset.form-columns-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 20px;
  }
  form fieldset.form-columns-4 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    column-gap: 20px;
  }
}

/* Inputs - checkbox/radio */
form .hs-fieldtype-radio .hs-form-radio-display,
form .hs-fieldtype-checkbox .hs-form-checkbox-display {
  display: grid;
  grid-template-columns: 20px 1fr;
  column-gap: 5px;
}

form .hs-fieldtype-radio .hs-form-radio-display input[type="radio"],
form .hs-fieldtype-checkbox .hs-form-checkbox-display input[type="checkbox"] {
  position: relative;
  display: block;
  -webkit-appearance: none;
  appearance: none;
  margin: 4px 0 0;
  width: 16px !important;
  height: 16px !important;
  border-radius: 3px;
  border: 2px solid var(--form-border-color);
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

form .hs-fieldtype-radio .hs-form-radio-display input[type="radio"] {
  border-radius: 50%;
}
form .hs-fieldtype-radio .hs-form-radio-display input[type="radio"]:hover,
form .hs-fieldtype-checkbox .hs-form-checkbox-display input[type="checkbox"]:hover {
  background-color: var(--secondary);
}
form .hs-fieldtype-radio .hs-form-radio-display input[type="radio"]:checked,
form .hs-fieldtype-checkbox .hs-form-checkbox-display input[type="checkbox"]:checked {
  background-color: var(--body);
}

form .hs-fieldtype-checkbox .hs-form-checkbox-display input[type="checkbox"]:before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 9px;
  color: var(--white);
  position: absolute;
  top: 1px;
  left: 2.6px;
  opacity: 0;
  visibility: hidden;
  transition: all ease-in-out .3s;
}

form .hs-fieldtype-checkbox .hs-form-checkbox-display input[type="checkbox"]:checked:before {
  opacity: 1;
  visibility: visible;
}

form .hs-fieldtype-radio .hs-form-radio-display span,
form .hs-fieldtype-checkbox .hs-form-checkbox-display span {
  font-size: 16px;
}

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

form .inputs-list > li {
  display: block;
  margin: 16px 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 - datepicker */

.hs-dateinput {
  position: relative;
}

.hs-dateinput:before {
  content:'\01F4C5';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.hs_error_rollup {
  display: none;
}
.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;
  color:transparent !important;
}

/* Headings and text */

form .hs-richtext{
  font-size: 15px;
  margin: 0 0 10px;
}
form .hs-richtext * {
  font-size: 12px;
  line-height: 1.3;
}
form .hs-richtext img {
  max-width: 100% !important;
}
form fieldset .hs-richtext {
  max-width: 717px;
  margin-top: 13px;
  margin-bottom: 5px;
}
form .hs-richtext a {
  text-decoration: underline;
}

/* GDPR */

.legal-consent-container .hs-form-booleancheckbox-display > span,
.legal-consent-container .hs-form-booleancheckbox-display > span p {
  margin-left: 0 !important;
  font-size: 16px;
  font-weight: 400;
  line-height: 22.16px;
}

.legal-consent-container * {
  font-size: 15px;
  color: var(--body);
}

/* Validation */

.hs-form-required {
  color: var(--secondary);
}

.hs-input.invalid.error {
  border-color: var(--error-text-color);
}

form .inputs-list.hs-error-msgs > li {
  margin: 0;
}

form .inputs-list.hs-error-msgs > li:after {
  display:none;
}

.hs-error-msg {
  /*   color: var(--help-color); */
  margin-top: 0.35rem;
}

/* Submit button */
form .hs-submit {
  margin-top: 10px;
  text-align:right;
}
.systems-page form .hs-submit {  
  text-align:left;
  margin-bottom: 10px;
}
form .hs-submit .actions {
  display: inline-block;
  position: relative;
}
form input[type=submit],
form .hs-button{
  display: inline-block;
  font-size: 24px;
  line-height: normal;
  font-weight: 400;
  padding: 12px 30px;
  text-align: center;
  text-decoration: none;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  white-space: normal;
  cursor: pointer;
  background: var(--primary);
  color: var(--secondary);
  border: 1px solid #000000
    
  border-radius: 2.25rem;
  
  
}



form input[type=submit]:hover,
form .hs-button:hover{
  color: var(--white);
  text-decoration: none;
  background: var(--secondary);
}
.hs-error-msgs li label{
  color:var(--error-text-color);
  margin-bottom: 0;
  font-size:14px;
  line-height:normal;
}
.grecaptcha-badge {
  margin: 10px 0 0;
}
.hs-fieldtype-booleancheckbox:not(:last-child) { margin-bottom: 29px }
.hs-fieldtype-booleancheckbox label.hs-form-booleancheckbox-display { display: inline-flex; flex-wrap: wrap; margin: 0; }
.hs-form-booleancheckbox-display .hs-input { display: none }
.hs-fieldtype-booleancheckbox label.hs-form-booleancheckbox-display input+span { cursor: pointer; display: block; padding-left: 31px; position: relative; width: auto; }
.hs-fieldtype-booleancheckbox label.hs-form-booleancheckbox-display input+span:before { background-color: var(--primary); content: ""; display: inline-block; height: 18px; left: 0;position: absolute; top: 3px; transition: all .5s ease; width: 18px; }
.hs-fieldtype-booleancheckbox label.hs-form-booleancheckbox-display input:checked+span:after { content: "x"; left: 2px; position: absolute; top: -4px; transition: all .5s ease; font-size: 26px; font-weight: 400; line-height: 1; letter-spacing: -0.04em; }
li.hs-form-booleancheckbox { margin: 0 !important; }
form .hs-fieldtype-booleancheckbox {
  margin-bottom: 10px;
}

form .hs-message {
  margin-bottom: 30px;
}

ul.hs-search-field__suggestions li:after {
  content: none !important;
}

.hs-search-field.hs-search-field--open .hs-search-field__suggestions {
  padding: 15px;
  border-radius: 20px;
  margin: 0px;
  list-style: none;
  background-color: var(--quinary);
  margin-top: 10px;
  font-size: 16px;
}

.hs-search-field__suggestions a {
  text-decoration: none;
}

form .hs-fieldtype-file .input input:after {
  content: "";
  display: block;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background-color: var(--white);
  box-shadow: 0px 3px 10px 0px #00000040;
  position: absolute;
  top: 0;
  left: 6px;
  transition: all 0.3s ease-in-out;
}

form .hs-fieldtype-file .input input:before {
  content: "";
  background-image: url("https://143935592.fs1.hubspotusercontent-eu1.net/hubfs/143935592/Ieteam-2024/Plus-icob.svg");
  background-repeat: no-repeat;
  position: absolute;
  background-size: 100% 100%;
  display: block;
  width: 13px;
  height: 13px;
  z-index: 1;
  left: 13px;
  top: 6px;
}

form .hs-fieldtype-file .input input {
  padding-left: 42px;
  padding-top: 2px;
  border: 0;
  appearance: none;
  color: unset !important;
  position: relative;
  cursor: pointer;
  width: auto !important;
}

form .hs-fieldtype-file .input input::-webkit-file-upload-button {
  display: none;
}

form .hs-fieldtype-file .input input:hover:after {
  background-color: var(--secondary);
}

form .hs-fieldtype-file .input input:hover:before {
  background-image: url('https://143935592.fs1.hubspotusercontent-eu1.net/hubfs/143935592/Ieteam-2024/white-plus-icon.svg');
}


form .hs-fieldtype-phonenumber .hs-fieldtype-intl-phone {
  width: 100% !important;
}
form .hs-fieldtype-phonenumber .hs-fieldtype-intl-phone select {
  width: 12% !important;
  padding-right: 36px;
}

form .hs-fieldtype-phonenumber .hs-fieldtype-intl-phone.hs-input input {
  width: 86% !important;
}
.legal-consent-container a {
  text-decoration: underline;
  font-size: 16px;
}
@media screen and (max-width:1830px) and (min-width:1050px){
  .hs-form-field > label {font-size: 18px;}
}



@media(max-width:991px){
  form input[type=text],
  form input[type=email],
  form input[type=password],
  form input[type=tel],
  form input[type=number],
  form input[type=file],
  form select,
  form textarea { 
    height:40px;
  }
  .hs-fieldtype-textarea.hs-input, form textarea {
    height:80px;
  }
  form .hs-fieldtype-phonenumber .hs-fieldtype-intl-phone select {
    width: 20% !important;
  }
  form .hs-fieldtype-phonenumber .hs-fieldtype-intl-phone.hs-input input {
    width: 78% !important;
  }
}


@media screen and (max-width:767px){
  form fieldset.form-columns-2,
  form fieldset.form-columns-3,
  form fieldset.form-columns-4{
    margin: 0 -5px;
    max-width: unset !important;
    display: flex !important;
    flex-wrap: wrap;
    column-gap: unset !important;
  }
  form fieldset.form-columns-2>div,
  form fieldset.form-columns-3>div,
  form fieldset.form-columns-3>div{
    width: 100% !important;
    padding: 0 5px;
    display: block;
  }
  form label{margin-bottom:10px;}
  form .hs-form-field{
    margin-bottom: 10px;
  }
  form .hs-message {
    margin-bottom: 25px;
  }
  form fieldset .hs-richtext {
    margin-top: 5px;
  }
  form .hs-fieldtype-phonenumber .hs-fieldtype-intl-phone select {
    width: 31% !important;
  }
  form .hs-fieldtype-phonenumber .hs-fieldtype-intl-phone.hs-input input {
    width: 67% !important;
  }
  .hs-form-field > label{
    font-size:22px;
  }
}
/* Table */

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

/* Table Cells */

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

/* Table Header */

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

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

header.header .header-wrap {background-color: var(--header-bg-color);border-bottom: 1px solid #000000;transition: all 500ms ease-in-out;position: fixed; top: 0; z-index: 999; left: 0; width: 100%;}
header.header.hide .header-wrap{ transform: translateY(-100%); }
header.header .header-inner{width:100%}
header.header .header-inner .logo-wrap{width:18%;}
header.header .header-inner .menu-wrap{width:82%;}
header.header .header-inner .logo-wrap img{width:120px}
header.header .header-inner .logo-wrap .column-inner{display: flex; align-items: center; justify-content: flex-start; height: 100%;}
header.header .header-inner .menu-wrap .column-inner{height:100%;display:flex;align-items:center;justify-content:flex-end}
header.header .header-inner .menu-wrap .hs-menu-wrapper>ul>li>a{color:var(--header-link-color);text-decoration: none;font-size:20px;font-weight:400;line-height:27.7px;letter-spacing:-.05em}
header.header .header-inner .menu-wrap .hs-menu-wrapper>ul>li>a:hover{color:var(--primary);}
header.header .header-inner .menu-wrap .hs-menu-wrapper>ul>li.active>a{color:var(--primary);}
header.header .header-inner .menu-wrap .hs-menu-wrapper>ul>li{padding:39px 20px;margin:0;}
header.header .header-inner .menu-wrap .column-inner .menu-group{margin-right:94px;border-left: 1px solid #000000; padding-left: 23px;}
header.header .header-inner .menu-wrap .column-inner .button-group{margin:0 43px}
header.header .header-inner .menu-wrap .column-inner .lang-group{width: 290px;padding: 0; border-left: 1px solid var(--secondary); height: 100%; display: flex; align-items: center; justify-content: center; position: relative;}
header.header .lang-group .lang_switcher_class{position: unset;padding:0 10px}
header.header .lang-group .lang_switcher_class li{list-style-type:none}
header.header .lang-group .lang_switcher_class>li>a{border:2px solid #000;font-size:20px;font-weight:400;line-height:27.7px;letter-spacing:-.05em;padding:7px 14px 7px 51px;position:relative;text-decoration:none;border-radius:25px}
header.header .lang-group .lang_switcher_class .globe_class{width:calc(100% + 2px);position:absolute;background:#fff;border:1px solid #000;height:auto;border-radius:0;padding:22px 7px;left:-1px;top:100%;opacity:0;visibility:hidden;z-index:9;}
header.header .lang-group .lang_switcher_class .globe_class .lang_list_class{position:relative;top:0;left:0;transform:unset;display:block;border:0;padding:0;margin:0;z-index:unset}
header.header .lang-group .lang_switcher_class .globe_class .lang_list_class::after,header.header .lang-group .lang_switcher_class .globe_class .lang_list_class::before{display:none}
header.header .lang-group .lang_switcher_class .globe_class .lang_list_class li{border:0;margin:0;padding:0}
header.header .lang-group .lang_switcher_class .globe_class .lang_list_class li a{font-size:20px;font-weight:400;line-height:27.7px;text-align:center}
header.header .header-inner .menu-wrap .column-inner .lang-group:hover .globe_class{opacity:1;visibility:visible}
header.header .lang-group .lang_switcher_class>li>a:after{content:'';position:absolute;left:14px;width:22px;height:22px;background:url('https://143935592.fs1.hubspotusercontent-eu1.net/hubfs/143935592/Ieteam-2024/globe.svg');background-position: center; background-repeat: no-repeat; background-size: 22px;transform:translateY(-50%);top:50%}
header.header .header-inner .menu-wrap .hs-menu-wrapper>ul>li.hs-item-has-children .child-trigger{width:10px;height:10px;background:url('https://143935592.fs1.hubspotusercontent-eu1.net/hubfs/143935592/Ieteam-2024/chevron-down.svg');background-position:center;background-repeat:no-repeat;background-size:10px;margin-left:7px;margin-top: 6px;}
header.header .header-inner .menu-wrap .hs-menu-wrapper>ul>li.hs-item-has-children{display:flex;align-items:center}
header.header .header-inner .menu-wrap .hs-menu-wrapper>ul>li.hs-item-has-children .hs-menu-children-wrapper{z-index:2;width:auto;top:calc(100% + 1px);padding:24px 55px;background:#fff;border:1px solid #000;border-top: 0;left:-24px;}
header.header .header-inner .menu-wrap .hs-menu-wrapper>ul>li.hs-item-has-children .hs-menu-children-wrapper li a{font-size:20px;line-height:27.7px;letter-spacing:-.05em;text-decoration:none;color:var(--header-link-color);}
header.header .header-inner .menu-wrap .hs-menu-wrapper>ul>li.hs-item-has-children .hs-menu-children-wrapper li{margin:0}
header.header .header-inner .menu-wrap .hs-menu-wrapper>ul>li.hs-item-has-children .hs-menu-children-wrapper li a:hover{color:var(--primary)}
header.header .header-inner .searchBox{position: absolute; transform: translate(-50%, -50%); background: transparent; height: 100%; width: 100%; top: 50%; left: 50%; display: flex; align-items: center; justify-content: center;}
header.header .header-inner .searchBox:hover .searchInput{width:402px !important;padding:0 15px}
/* header.header .header-inner .searchBox:hover .searchButton{background:#fff;color:#2f3640} */
header.header .header-inner .searchButton{width: 40px; height: 40px; border-radius: 50%; background: url(https://143935592.fs1.hubspotusercontent-eu1.net/hubfs/143935592/Ieteam-2024/search-icon.svg); display: flex; justify-content: center; align-items: center; transition: .4s; background-position: center; background-repeat: no-repeat;background-size: 30px; border: 0;z-index: 1; position: relative;cursor:pointer;}
header.header .header-inner .searchInput{border: none; background: 0 0; outline: 0; padding: 0; color: #000000; font-size: 16px; transition: .4s; line-height: 40px; width: 0 !important; right: 0; background: #F5F5F5; position: absolute; top: 0; right: 0; height: 100%; border-radius: 0;}
header.header .header-inner .searchInput::placeholder { color: #686868; }
header.header .header-inner .menu-wrap .search-group{position:relative;width:113px;height:100%;border-left: 1px solid var(--secondary);}
header.header .searchInput::placeholder{color:#fff}
html.mobile-open {overflow: hidden;}
header.header .header-inner .logo-wrap .column-inner .blinking-cursor {line-height: 0; font-size: 28px; font-weight: bold; color: var(--primary); position: relative; left: 1px; bottom: -11px; animation-name: blinker; animation-iteration-count: infinite; animation-timing-function: cubic-bezier(1,0,0,1); animation-duration: 1s;}
@keyframes blinker { 
  from { opacity: 1.0; } to { opacity: 0.0; }
}
header.header .header-inner .logo-wrap .column-inner a { text-decoration: none; }


@media screen and (max-width:1829px) and (min-width:1601px){
  header.header .header-inner .menu-wrap .hs-menu-wrapper>ul>li>a{font-size: 17px;}
  header.header .header-inner .menu-wrap .column-inner .menu-group{margin-right:0}
  header.header .header-inner .menu-wrap .column-inner .button-group{margin:0 15px}
  header.header .btn a{font-size: 17px;}
  header.header .header-inner .logo-wrap{width:15%}
  header.header .header-inner .menu-wrap{width:85%}
  header.header .lang-group .lang_switcher_class{padding:0 15px}
  header.header .lang-group .lang_switcher_class>li>a{font-size: 17px;}
  header.header .header-inner .menu-wrap .search-group{width:100px}
  header.header .header-inner .menu-wrap .hs-menu-wrapper>ul>li {padding: 39px 18px;}
  header.header .header-inner .menu-wrap .column-inner .lang-group { width: 265px; }
  header.header .header-inner .searchBox:hover .searchInput { width: 364px !important;}
}
@media screen and (max-width:1600px) and (min-width:1150px){
  header.header .header-inner .menu-wrap .hs-menu-wrapper>ul>li>a{font-size:16px}
  header.header .header-inner .menu-wrap .column-inner .menu-group{margin-right:0}
  header.header .header-inner .menu-wrap .column-inner .button-group{margin:0 15px}
  header.header .btn a{font-size:16px}
  header.header .header-inner .menu-wrap .hs-menu-wrapper>ul>li{padding:39px 7px}
  header.header .header-inner .logo-wrap{width:15%}
  header.header .header-inner .menu-wrap{width:85%}
  header.header .lang-group .lang_switcher_class{padding:0 15px}
  header.header .lang-group .lang_switcher_class>li>a{font-size:16px}
  header.header .header-inner .menu-wrap .search-group{width:100px}
  header.header .header-inner .menu-wrap .column-inner .lang-group { width: 260px; }
  header.header .header-inner .searchBox:hover .searchInput { width: 358px !important;}
}






@media screen and (max-width:1150px){
  header.header .header-inner .logo-wrap .column-inner{border:0;font-size: 0;}
  header.header .header-inner .menu-wrap .column-inner .lang-group > span { font-size: 0; }
  header.header .header-inner .logo-wrap{width:40%; padding: 30px 0;}
  header.header .header-inner .menu-wrap{width:60%}
  .search-group,header.header .header-inner .menu-wrap .column-inner .button-group{display:none}
  header.header .header-inner .menu-wrap .column-inner .menu-group{margin:0;border:0}
  header.header .custom-menu-primary .hs_cos_wrapper_type_menu>.hs-menu-wrapper{background:#fff;border-radius:0;display:none;height:calc(100vh - 85px);left:0;max-width:100%;overflow:auto;padding:115px 50px 50px;position:absolute;top:calc(100% + 1px);width:100%;z-index:99}
  header.header .mobile-trigger{position:absolute;top:0;right:0;width:92px;height:100%;border-left:1px solid #000;background:url('https://143935592.fs1.hubspotusercontent-eu1.net/hubfs/143935592/Ieteam-2024/plus-menu.svg');background-position:center;background-repeat:no-repeat;background-size:28px}
  header.header{position:relative}
  header.header .mobile-trigger.active-re{background:url('https://143935592.fs1.hubspotusercontent-eu1.net/hubfs/143935592/Ieteam-2024/minus-menu.svg') var(--primary);background-position:center;background-repeat:no-repeat;background-size:28px}
  header.header .header-inner .menu-wrap .hs-menu-wrapper>ul>li>a{font-size:25px}
  header.header .header-inner .menu-wrap .hs-menu-wrapper>ul>li{margin:0 0 20px;padding: 0;}
  header.header .header-inner .menu-wrap .hs-menu-wrapper>ul>li.hs-item-has-children .hs-menu-children-wrapper{display:none;width:100%;position:relative;border:0;padding:24px 0 0;background:transparent;left:0;}
  header.header .header-inner .menu-wrap .hs-menu-wrapper>ul>li.hs-item-has-children{flex-wrap:wrap;align-items:flex-start}
  header.header .header-inner .menu-wrap .hs-menu-wrapper>ul>li.hs-item-has-children .child-trigger{width:25px;height:25px}
  header.header .header-inner .menu-wrap .hs-menu-wrapper>ul>li.hs-item-has-children.open>a{text-decoration:underline}
  header.header .header-inner .menu-wrap .hs-menu-wrapper>ul { flex-direction: column; }
  header.header .custom-menu-primary .hs_cos_wrapper_type_menu>.hs-menu-wrapper.menu-close,header.header .header-inner .menu-wrap .column-inner .lang-group:hover { background: var(--primary); }
  header.header .lang-group .lang_switcher_class>li>a{pointer-events: none;padding:0;font-size:0;border:0;width: 28px; height: 28px;}
  header.header .header-inner .menu-wrap .column-inner .lang-group{width:92px;border-right:0;margin-right:92px;position: unset;}
  header.header .lang-group .lang_switcher_class{padding:0;display:block;width:100%;position: unset;}
  header.header .left-container{padding-right:0}
  header.header .lang-group .lang_switcher_class>li>a:after{left:0;width: 28px; height: 28px; background-size: 28px;}
  header.header .lang-group .lang_switcher_class .globe_class{background:var(--secondary);border-radius:0;height:calc(100vh - 72px);left:0;max-width:100%;overflow:auto;padding:150px 50px;position:absolute;top:calc(100% + 1px);width:100%;z-index:99;display: none; opacity: 1; visibility: visible;}
  header.header .lang-group .lang_switcher_class .globe_class .lang_list_class li{background:0 0}
  header.header .lang-group .lang_switcher_class .globe_class .lang_list_class li a{color:#fff}
  header.header .lang-group .lang_switcher_class .globe_class .lang_list_class li a:hover,
  header.header .lang-group .lang_switcher_class .globe_class .lang_list_class li a:focus{text-decoration:underline}
  header.header .lang-group .lang_switcher_class .globe_class .lang_list_class{height:100%;display:flex;align-items:center;justify-content:center;flex-direction:column}
  header.header .header-inner .logo-wrap img { width: 100px; }
  header.header .custom-menu-primary .hs_cos_wrapper_type_menu>.hs-menu-wrapper .button-group{display:block;margin:150px 0 0}
  header.header .custom-menu-primary .hs_cos_wrapper_type_menu>.hs-menu-wrapper .button-group .btn a{font-size:18px;line-height:20px;padding:10px 20px}
}
/* 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%;
}
footer.footer{padding:64px 0 68px;background:var(--footer-bg-color)}
footer.footer .site-footer-top .footer-title{padding-top:22px;font-size:64px;font-weight:400;line-height:52px;color:var(--footer-text-color)}
footer.footer .site-footer-top .footer-title span{font-size: 50px; font-weight: bold; font-family: "Almarai", sans-serif; color: var(--primary); animation-name: blinker; animation-iteration-count: infinite; animation-timing-function: cubic-bezier(1,0,0,1); animation-duration: 1s; width: 28px; display: inline-block; height: 4px; background: var(--primary); border-radius: 1px;}
footer.footer .site-footer-top{padding-bottom:118px;border-bottom:1px solid var(--footer-text-color);margin-bottom:95px;padding-top: 47px;}
footer.footer .site-footer-top .column-inner{align-items:center;justify-content: space-between;}
footer.footer .site-footer-middle{padding-bottom:95px}
footer.footer .site-footer-middle .column-inner{margin:0 -15px}
footer.footer .site-footer-middle .column-inner .footer-menu-wrap{width:60%;padding:0 15px}
footer.footer .site-footer-middle .column-inner .footer-social-media-wrap{width:40%;padding:0 15px}
footer.footer .site-footer-middle .footer-title h4{font-family: "Almarai", sans-serif;font-size:16px;font-weight:700;line-height:25.6px;letter-spacing:.2em;color:var(--footer-text-color);text-transform:uppercase}
footer.footer .site-footer-middle .footer-title{margin-bottom:43px}
footer.footer .site-footer-middle .column-inner .footer-menu-wrap .footer-menu ul li a{font-family: "Almarai", sans-serif;font-size:24px;font-weight:400;line-height:43.2px;color:var(--footer-text-color);text-decoration:none}
footer.footer .site-footer-middle .column-inner .footer-menu-wrap .footer-menu ul li a:hover{color:var(--primary)}
footer.footer .site-footer-middle .column-inner .footer-menu-wrap .footer-menu ul{display:block}
footer.footer .site-footer-middle .column-inner .footer-menu-wrap .footer-menu ul li{margin:0}
footer.footer .site-footer-middle .column-inner .footer-social-media-wrap .footer-social-media ul{display:flex;padding:0;list-style-type:none;flex-wrap:wrap}
footer.footer .site-footer-middle .column-inner .footer-social-media-wrap .footer-social-media ul li{margin:0 30px 0 0}
footer.footer .site-footer-middle .column-inner .footer-social-media-wrap .footer-social-media ul li a img{width:43px;transition:all .5s ease-in-out}
footer.footer .site-footer-bottom .site-footer-copyright p{font-family: "Almarai", sans-serif;color:var(--footer-text-color);font-size:17px;font-weight:400;line-height:20.06px}
footer.footer .site-footer-bottom .column-inner{justify-content:space-between;margin:0 -15px;align-items: flex-end;}
footer.footer .site-footer-bottom .site-footer-copyright{width:60%;padding:0 15px}
footer.footer .site-footer-bottom .site-footer-privacy-menu{padding:0 15px;width:40%;}
footer.footer .site-footer-bottom .site-footer-privacy-menu ul{display:flex;align-items:center;justify-content:flex-start;margin:0 -15px;}
footer.footer .site-footer-bottom .site-footer-privacy-menu ul li a{font-family: "Almarai", sans-serif;color:var(--footer-text-color);font-size:16px;font-weight:400;line-height:25.6px;text-decoration:none}
footer.footer .site-footer-bottom .site-footer-privacy-menu ul li{padding:0 15px;margin:0;}
footer.footer .site-footer-bottom .site-footer-privacy-menu ul li a:hover{color:var(--primary)}
footer.footer .site-footer-middle .column-inner .footer-social-media-wrap .footer-social-media ul li a:hover img{transform:rotate(360deg)}
footer.footer .footer-form-wrap form{display:flex}
footer.footer .footer-form-wrap form .hs-form-field{width:170px;margin:0}
footer.footer .footer-form-wrap form .hs-form-field input{color:#1c1c1c;background:#fff;border:1px solid var(--form-border-color);height:86px;padding:0 34px;font-size:20px;font-weight:400;line-height:27.7px;letter-spacing:-.05em}
footer.footer .footer-form-wrap form .hs_submit.hs-submit{margin:0}
footer.footer .footer-form-wrap form .hs_submit .actions{height:100%}
footer.footer .footer-form-wrap form .hs_submit .actions input{height:100%;border:1px solid #000;font-size:0;width:87px}
footer.footer .footer-form-wrap form .hs-form-field input:hover,
footer.footer .footer-form-wrap form .hs-form-field input:focus { background: var(--primary); }
footer.footer .footer-form-wrap .hs-error-msgs { position: absolute; left: 0; width: 100%; bottom: -46px; }
footer.footer .site-footer-top .column-inner .footer-form-wrap a { border: 1px solid #000; width: 257px; background: #ffffff; position: relative; display: flex; height: 86px; align-items: center; justify-content: flex-start; padding: 0 100px 0 34px; font-size: 20px; font-weight: 400; line-height: 27.7px; letter-spacing: -.05em; text-decoration: none; } 
footer.footer .site-footer-top .column-inner .footer-form-wrap a .icon-btns { height: 100%; font-size: 0; width: 87px; display: flex; align-items: center; justify-content: center; position: absolute; top: 0; right: 0; }
footer.footer .site-footer-top .column-inner .footer-form-wrap a:hover { background: var(--primary); }
.footer-two footer.footer .site-footer-top .column-inner {display: none;} 
.footer-two footer.footer .site-footer-top { padding-bottom: 0; }



@media screen and (max-width:1200px) and (min-width:992px){
  footer.footer .site-footer-top .footer-title {font-size: 48px;line-height: normal;}
}


@media screen and (max-width:991px){
  footer.footer{padding:51px 0}
  footer.footer .site-footer-top .footer-title{font-size:22px;line-height:24px;letter-spacing:-.04em;width:40%;padding:0 15px}
  footer.footer .site-footer-top .column-inner{margin:0 -10px}
  footer.footer .site-footer-top .column-inner .footer-form-wrap{width:60%;padding:0 10px;display:flex;align-items:center;justify-content:flex-end}
  footer.footer .footer-form-wrap form .hs-form-field input{height:53px;padding:0 17px;font-size:16px}
  footer.footer .footer-form-wrap form .hs_submit .actions input{width:53px;background-size:26px !important;}
  footer.footer .site-footer-top{border:0;padding-bottom:0;margin-bottom:93px;padding-top:0;}
  footer.footer .site-footer-middle .footer-title{margin-bottom:25px;min-height:51px}
  footer.footer .site-footer-middle .column-inner .footer-menu-wrap .footer-menu ul li a{font-size:16px;line-height:20px}
  footer.footer .site-footer-middle .column-inner .footer-social-media-wrap .footer-social-media ul li{margin:0 18px 0 0}
  footer.footer .site-footer-middle .column-inner .footer-social-media-wrap .footer-social-media ul li a img{width:23px}
  footer.footer .site-footer-bottom .column-inner{flex-direction:column-reverse}
  footer.footer .site-footer-bottom .site-footer-privacy-menu ul{justify-content:flex-start;align-items:flex-start}
  footer.footer .site-footer-bottom .site-footer-privacy-menu{padding-bottom:60px}
  footer.footer .site-footer-bottom .site-footer-privacy-menu ul li{margin:0 10px 0 0}
  footer.footer .site-footer-bottom .site-footer-copyright p{font-size:16px}
  footer.footer .footer-form-wrap form .hs-form-field { width: 115px; }
  footer.footer .site-footer-top .column-inner .footer-form-wrap a { width: 168px; height: 53px; font-size: 16px; padding: 0 60px 0 17px; } 
  footer.footer .site-footer-top .column-inner .footer-form-wrap a .icon-btns img { width: 26px; } 
  footer.footer .site-footer-top .column-inner .footer-form-wrap a .icon-btns { width: 53px; }
  .footer-two footer.footer .site-footer-top { margin: 0; }
  footer.footer .site-footer-top .footer-title span { width: 17px; height: 3px; margin-left: 2px; }
  footer.footer .site-footer-bottom .site-footer-copyright {width: 100%;}
  footer.footer .site-footer-bottom .site-footer-privacy-menu {width: 100%;}
}

@media screen and (max-width:767px){
  footer.footer .site-footer-bottom .site-footer-privacy-menu ul li{margin:0}
}

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