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


/*! Generated by Font Squirrel (https://www.fontsquirrel.com) on August 8, 2024 */



@font-face {
  font-family: 'fortum_sans';
  src: url('https://nordy.es/hubfs/4419174/Nordy_August_2024/Fonts/fortumsanstt-bold-webfont.woff2') format('woff2'),
    url('https://nordy.es/hubfs/4419174/Nordy_August_2024/Fonts/fortumsanstt-bold-webfont.woff') format('woff');
  font-weight: 700;
}
@font-face {
  font-family: 'fortum_sans';
  src: url('https://nordy.es/hubfs/4419174/Nordy_August_2024/Fonts/fortumsanstt-light-webfont.woff2') format('woff2'),
    url('https://nordy.es/hubfs/4419174/Nordy_August_2024/Fonts/fortumsanstt-light-webfont.woff') format('woff');
  font-weight: 300;
}
@font-face {
  font-family: 'fortum_sans';
  src: url('https://nordy.es/hubfs/4419174/Nordy_August_2024/Fonts/fortumsanstt-medium-webfont.woff2') format('woff2'),
    url('https://nordy.es/hubfs/4419174/Nordy_August_2024/Fonts/fortumsanstt-medium-webfont.woff') format('woff');
  font-weight: 500;
}
@font-face {
  font-family: 'fortum_sans';
  src: url('https://nordy.es/hubfs/4419174/Nordy_August_2024/Fonts/fortumsanstt-regular-webfont.woff2') format('woff2'),
    url('https://nordy.es/hubfs/4419174/Nordy_August_2024/Fonts/fortumsanstt-regular-webfont.woff') format('woff');
  font-weight: 400;
}















:root {
  /* Theme Variable Styles */
  --body: #141414;
  --primary: #75FBCB;
  --secondary: #003D31;
  --tertiary: #141414;
  --quaternary: #FFFFFF;
  --quinary: #F6F6F6;
  --senary: #B1B1B1;
  --septenary: #D9D9D9;  
  --white: #fff;
  --black: #000;
  --bold: 700;
  --medium: 500;
  --regular: 400;
  --light: 300;
  --header-bg-color:#ffffff;
  --header-link-color:#003D31;
  --footer-bg-color:#003D31;
  --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: 700;
  --h2-weight: 700;
  --h3-weight: 500;
  --h4-weight: 500;
  --h5-weight: 400;
  --h6-weight: 700;
  --body-size: 1.125rem;
  --h1-size: 3.25rem;
  --h1-mobile-size: 2.5rem;
  --h2-size: 2.5rem;
  --h2-mobile-size: 1.75rem;
  --h3-size: 1.625rem;
  --h3-mobile-size: 1.4375rem;
  --h4-size: 1.375rem;
  --h4-mobile-size: 1.125rem;
  --h5-size: 1.125rem;
  --h5-mobile-size: 1.0rem;
  --h6-size: 1.125rem;
  --h6-mobile-size: 1.0rem;
  --label-color: var(--body);
  --help-color: #FF0201;
  --form-background-color: var(--quinary);
  --form-border-color: var(--quinary);
  --container: 1480px;
  --container-small: 1180px;
}
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 {
  font-family: 'fortum_sans', 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: 1200px) and (min-width:992px) {
  h1, .h1 { font-size: var(--h1-mobile-size);}
  h2, .h2 { font-size: var(--h2-mobile-size);}
}



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

@media screen and (min-width:1921px){
  .container {
    max-width: var(--container);
  }
}
@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: 18px;
  line-height: 1.27777777778;
  font-weight: 700;
  padding: 11px 16px 11px 16px;
  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;
  box-shadow: 0px 5px 25px 0px #003D3180;
  
  
  border-radius: 22.5px;
  
}
.btn.btn-icon a{
  padding: 11px 56px 11px 16px;
}
.btn.btn-icon a:after {
  content: '';
  position: absolute;
  top: 50%;
  border-radius: 50%;
  transform: translateY(-50%);
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  width: 33px;
  height: 33px;
  background-color: var(--white);
  right: 6px;
}
.btn.btn-icon a:before {
  content: '';
  background: url('https://4419174.fs1.hubspotusercontent-na1.net/hubfs/4419174/Nordy_August_2024/Images/arrow.svg');
  background-repeat: no-repeat;
  transition: all .5s ease-in-out;
  z-index: 1;
  height: 16px;
  width: 17px;
  right: 15px;
  background-size: 17px;
  top: 38%; 
  transition: all 300ms ease-in-out;
  position: absolute;
  transform: rotate(-41deg);
}
.btn.btn-icon a:hover:before {
  transform: rotate(0deg);
}
/*---- Primary Button Styles ----*/
.btn.btn--primary a{
  background: var(--primary);
  color: var(--secondary);
}
.btn.btn--primary a:hover,
.btn.btn--primary a.active{
  text-decoration: none;
  color: var(--white);
  background: var(--secondary);
}
.btn.btn--primary.btn-icon a:after{
  background: var(--white);
}

/*---- Secondary Button Styles ----*/

.btn.btn--secondary a {
  background: var(--white);
  color: var(--secondary);
  box-shadow: 0px 5px 20px 0px #000000;
} 
.btn.btn--secondary.btn-icon a:after{
  background-color: var(--primary);
}
.btn.btn--secondary a:hover,
.btn.btn--secondary a:focus,
.btn.btn--secondary a:active{
  text-decoration: none;
  background: var(--secondary);
  color: var(--white);
}

.site_tarifas_serv_card_btn .btn a,
.site-footer .inner-items .butn a{
  min-width: 150px;
}
/* Labels */

form label {
  display: inline-block;
  font-size: 16px;
  margin-bottom: 5px;
  color:var(--body);
  line-height:1.625;
}

/* Help text - legends */

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

/* Inputs */

form .hs-form-field {
  position: relative;
  display: inline-block;
  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: 16px;
  font-weight: 400;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  color: var(--label-color);
  line-height:26px;
  margin-bottom: 5px
}

.hs-form-field > label span:first-child {
  color: var(--body);
  font-size:16px;

}







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: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: 10px;
  padding: 8px 16px;
  
  
  
  

}


form select{
  
  padding: 0 55px 0 16px;
  color:var(--white);
  
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: url(https://nordy.es/hubfs/Nordy_August_2024/Images/arrow-down.svg) var(--form-background-color);
  background-position: 94% 54%;
  background-repeat: no-repeat;
  background-size: 20px;
  color:rgba(20, 20, 20, 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:15px;
}
.legal-consent-container * {
  font-size: 15px;
  color: var(--body);
}
.legal-consent-container .hs-richtext p { font-size: 10px; color: #999999; line-height: 1.3; display: inline; }

/* Validation */

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

.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{
  box-shadow: 0px 5px 25px 0px #003D3180;
  display: inline-block;
  font-size: 18px;
  line-height: 1.27777777778;
  font-weight: 700;
  padding: 13px 56px 13px 16px;
  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: 0px;
  
  
  border-radius: 22.5px;
  
}

form input[type=submit]:hover,
form .hs-button:hover{
  color: var(--white);
  text-decoration: none;
  background: var(--secondary);
}


form .hs-submit .actions:hover:before {
  transform: rotate(0deg);
}

form .hs-submit .actions:after {
  content: '';
  position: absolute;
  top: 50%;
  border-radius: 50%;
  transform: translateY(-50%);
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  width: 33px;
  height: 33px;
  background-color: var(--white);
  right: 6px;
  pointer-events: none;
}
form .hs-submit .actions:before {
  content: '';
  background: url('https://4419174.fs1.hubspotusercontent-na1.net/hubfs/4419174/Nordy_August_2024/Images/arrow.svg');
  background-repeat: no-repeat;
  transition: all .5s ease-in-out;
  z-index: 1;
  height: 16px;
  width: 17px;
  right: 15px;
  background-size: 17px;
  top: 38%; 
  transition: all 300ms ease-in-out;
  position: absolute;
  transform: rotate(-41deg);
  pointer-events: none;
}


.systems-page form .hs-submit .actions:before {
  content: '';
  background: url('https://4419174.fs1.hubspotusercontent-na1.net/hubfs/4419174/Nordy_August_2024/Images/arrow.svg');
  top: 42%; 
}

.hs-error-msgs li label{
  color:var(--error-text-color);
  margin-bottom: 0;
  font-size:14px;
  line-height:normal;
}

/* @media screen and (max-width: 991px) {
form input[type=submit],
form .hs-button {
font-size: 16px;
padding: 10px 68px 10px 20px;
}
form .hs-submit .actions:after {
height: 40px;
right: 10px;
width: 40px;
}
form .hs-submit .actions:before {
background-size: 26px;
height: 22px;
right: 20px;
width: 20px;
}
} */

.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 { align-items: center; cursor: pointer; display: flex; flex-wrap: wrap; padding-right: 50px; position: relative; width: auto; }
.hs-fieldtype-booleancheckbox label.hs-form-booleancheckbox-display input+span:before { background-color: var(--white); border: 2px solid var(--secondary); border-radius: 1px; content: ""; display: inline-block; height: 16px; left: unset;right: 0px; margin-right: 10px; position: absolute; top: 6px; transition: all .5s ease; width: 16px; }
.hs-fieldtype-booleancheckbox label.hs-form-booleancheckbox-display input:checked+span:before { background-color: var(--secondary); }
.hs-fieldtype-booleancheckbox label.hs-form-booleancheckbox-display input:checked+span:after { background-color: transparent; background-image: url(https://nordy.es/hubfs/Nordy_August_2024/Images/white-check-icon.svg); background-position: 50%; background-repeat: no-repeat; background-size: cover; border-radius: 100%; content: ""; height: 13px; left: unset;right: 11px; position: absolute; top: 5px; transition: all .5s ease; width: 12px; }
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://4419174.fs1.hubspotusercontent-na1.net/hubfs/4419174/Nordy_August_2024/Images/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://4419174.fs1.hubspotusercontent-na1.net/hubfs/4419174/Nordy_August_2024/Images/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;
}

@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;
  }
}
/* 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 {
  background-color: var(--header-bg-color);
  min-height: 85px;
}
.header_mdl {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  transition: all .3s ease;
  background-color: var(--header-bg-color);
}

header.header.hide .header_mdl {
  top: -90px;
}

.header_inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.header_logo img {
  height: 40px;
  width: 138.79px;
  object-fit: cover;
  object-position: center;
}

.header_logo a {
  display: block;
}

.header_menu {
  padding-left: 45px;
}

.header_menu ul {
  padding: 0px;
  margin: 0px;
  list-style: none;
}

.header_menu .hs-menu-wrapper>ul>li:not(:last-child) {
  margin-right: 22px;
}

header .header_menu ul li {
  margin: 0px;
}

.header_menu ul li a {
  display: inline-block;
  text-decoration: none;
  font-size: 16px;
  line-height:1.3;
}

.header_btn_lang {
  display: flex;
  flex-wrap: wrap;
  padding-left: 33px;
  align-items: center;
}

.header_lang {
  box-shadow: 0px 5px 20px 0px #00000040;
  background: #F6F6F6;
  border-radius: 16px;
  width: 90px;
  padding: 5px 10px;
  text-align: center;
}

.header_btns {
  display: flex;
  flex-wrap: wrap;
  padding-left: 33px;
  align-items: center;
  gap: 6px;
}

.header_btn_1 a:before, 
.header_btn_1 a:after, 
.header_btn_2 a:before, 
.header_btn_2 a:after {
  content: none;
}

.header_btn_2 a {
  padding: 6px 16px;
}

.header_btn_1 a {
  padding: 5px 9px 4px 5px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.header_menu .hs-menu-wrapper>ul>li>a {
  padding: 32px 0px;
}
.header_menu .hs-menu-wrapper>ul>li.active>a {
  color: var(--header-link-color);
 
}

.header_menu .hs-menu-wrapper>ul>li>a:after {
    background-color: var(--header-link-color);
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    bottom: 30px;
    content: "";
    height: 1px;
    opacity: 0;
    visibility: hidden;
      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;
}
.header_menu .hs-menu-wrapper>ul>li.active>a:after, .header_menu .hs-menu-wrapper>ul>li:hover>a:after {    opacity: 1;
       visibility: visible; }
.header_menu .hs-menu-wrapper>ul>li>a {
    position: relative;
}
.header_menu .hs-menu-wrapper>ul ul {
  width: 270px;
  z-index: 2;
  padding: 10px;
  transition: opacity .3s ease-in-out;
  background: var(--quinary);
  border-radius: 10px;
}

.header_menu .hs-menu-wrapper>ul ul li+li {
  margin-top: 10px;
}

.header .child-trigger {
  display: none;
}

.header_menu ul li a{
  color: var(--header-link-color);
}

.header_mobile_cont {
  display: none;
}
.header_mobile_contact {
  display: none;
}
.header-lang-switcher {
  margin-left: 0px;
}
.header-lang-switcher .globe_class {
  width: auto;
  height: auto;
  background: 0 0;
}
.header-lang-switcher .globe_class .lang_list_class {
  list-style-type: none;
  width: 80px;
}
.header-lang-switcher .lang_switcher_class > li {
  list-style-type: none;
  padding-left: 28px;
  position: relative;
}
.header-lang-switcher .globe_class .lang_list_class li {
  margin: 0;
  padding-left: 25px;
}
.header-lang-switcher .lang_switcher_class:hover .lang_list_class {
  display: block;
}
.header-lang-switcher .lang_switcher_class > li .lang_switcher_link:after {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 20px;
  height: 15px;
}
.header-lang-switcher .globe_class .lang_list_class li {
  position: relative;
}
.header-lang-switcher .globe_class .lang_list_class li .lang_switcher_link:after {
  content: '';
  position: absolute;
  left: 10px;
  top: 1px;
  width: 20px;
  height: 15px;
}
.header-lang-switcher .globe_class .lang_list_class li:first-child .lang_switcher_link:after {
  top: 17px;
}

.header-lang-switcher .lang_switcher_class>li .lang_switcher_link[data-language="sv"]:after,
.header-lang-switcher .globe_class .lang_list_class li .lang_switcher_link[data-language="sv"]:after{
  background: url("https://nordy.es/hubfs/Nordy_August_2024/Images/Flag_of_Sweden.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.header-lang-switcher .lang_switcher_class>li .lang_switcher_link[data-language="en"]:after,
.header-lang-switcher .globe_class .lang_list_class li .lang_switcher_link[data-language="en"]:after{
  background: url("https://nordy.es/hubfs/Nordy_August_2024/Images/uk-en.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.header-lang-switcher .globe_class .lang_list_class li .lang_switcher_link[data-language=ca]:after,.header-lang-switcher .lang_switcher_class>li .lang_switcher_link[data-language=ca]:after {
    background: url('https://nordy.es/hubfs/Nordy_August_2024/Images/Flag_of_Catalonia.png');
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover
}


.header-lang-switcher .lang_switcher_class>li .lang_switcher_link[data-language="es"]:after,
.header-lang-switcher .globe_class .lang_list_class li .lang_switcher_link[data-language="es"]:after{
  background: url("https://4419174.fs1.hubspotusercontent-na1.net/hubfs/4419174/Nordy_August_2024/Images/Es-flag.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}


.header-lang-switcher .lang_switcher_class>li .lang_switcher_link[data-language="no"]:after,
.header-lang-switcher .globe_class .lang_list_class li .lang_switcher_link[data-language="no"]:after{
  background: url("https://nordy.es/hubfs/Nordy_August_2024/Images/Flag_of_Norway.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}


.header-lang-switcher .globe_class .lang_list_class li .lang_switcher_link[data-language=fi]:after, 
.header-lang-switcher .lang_switcher_class>li .lang_switcher_link[data-language=fi]:after {
    background: url("https://nordy.es/hubfs/Nordy_August_2024/Images/download.png");
background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    border: 1px solid #000;
}




.header-lang-switcher .lang_switcher_class {
  background: url("https://4419174.fs1.hubspotusercontent-na1.net/hubfs/4419174/Nordy_August_2024/Images/arrow%20%281%29.svg");
  background-position: 100% 50%;
  background-size: 12px;
  background-repeat: no-repeat;
  padding-right: 20px;
}
.header-lang-switcher .lang_switcher_class li a {
  font-size: 14px;
  line-height: 1.3;
  color: var(--tertiary);
}
header.header .header_btn_1 a {
  box-shadow: 0 5px 20px 0 #00000040;
}



 .header_mdl .content-wrapper {
    max-width: 1250px;
}



@media (min-width: 1250px){
html[lang="sv"] .header_menu .hs-menu-wrapper>ul>li:not(:last-child) {
    margin-right: 22px;
}

}


@media (min-width: 1200px){
  html[lang="sv"] .header_menu .hs-menu-wrapper>ul>li:not(:last-child) {
    margin-right: 14px;
}
  .header_menu .hs-menu-wrapper>ul>li.hs-item-has-children:hover>a:after {
    transform: translateY(-50%) rotate(225deg);
  }

  .header_menu .hs-menu-wrapper>ul>li.hs-item-has-children>a {
    position: relative;
  }

  .header_menu .hs-menu-wrapper>ul>li.hs-item-has-children>a:after {
    content: "";
    border-bottom: 1px solid #000000;
    border-right: 1px solid #000000;
    display: block;
    height: 5px;
    margin-left: 16px;
    transform-origin: 3px 3px;
    transition: transform .3s ease-in-out;
    width: 5px;
    position: absolute;
    top: 50%;
    right: 0px;
    transform: translateY(-50%) rotate(45deg);
  }

  .header_menu .hs-menu-wrapper>ul>li.hs-item-has-children>a {
    padding-right: 10px;
  }
  .header_menu ul li a:hover {
    color: var(--header-link-color);
  }

  .header_menu .hs-menu-wrapper>ul>li.hs-item-has-children>a:hover:after{
    border-color: var(--primary);
  }

  html[lang="en"] .header_menu {
    padding-left: 20px;
  }

  html[lang="en"] .header_menu .hs-menu-wrapper>ul>li:not(:last-child) {
    margin-right: 18px;
  }

  html[lang="en"] .header_btns {
    padding-left: 20px;
  }

}



@media (max-width: 1199px){
  .header_mobile_contact {
    display: flex;
    align-items: center;
  }
  .header_btn_lang {
    display: none;
  }

  .header_inner {
    padding: 12px 0px;
  }
  .header_hamburger {
    cursor: pointer;
    display: inline-block;
    position: relative;
    width: 50px;
    height: 50px;
    z-index: 12;
    background-color: #fff;
    border-radius: 10px;
  }

  .header_hamburger .line {display: inline-block;border-radius: 10px;left: 12px;height: 2px;transition: all .3s;width: 50%;position: absolute;background-color: #000;overflow: hidden;}

  .header_hamburger .line-1 {
    top: 16px;
  }

  .header_hamburger .line-2 {
    top: 24px;
  }

  .header_hamburger .line-3 {
    top: 32px;
    width: 30%;
    left: 21px;
  }

  .header_hamburger.active .line-1{
    width: 45%;
    top: 18px;
    left: 14px;
    transform: translateY(6px) rotate(-45deg);
  }

  .header_hamburger.active .line-2{
    opacity: 0;
  }

  .header_hamburger.active .line-3{
    width: 45%;
    top: 30px;
    left: 14px;
    transform: translateY(-6px) rotate(45deg);
  }

  .active-menu .header_menu {max-width: 100%;opacity: 1;right: 0;visibility: visible;}

  .header_menu {
    background-color: var(--secondary);
    height: 100vh;
    max-width: 0;
    opacity: 0;
    overflow-y: scroll;
    padding: 70px 16px 100px 16px;
    position: fixed;
    right: 0;
    top: 0;
    transition: all .5s ease;
    visibility: hidden;
    width: 100%;
    z-index: 10;
    box-shadow: 0px 5px 15px 0px #23375B;
  }

  .header .child-trigger {
    display: block;
  }

  .header_menu .hs-menu-wrapper ul {
    display: block;
    position: static;
    list-style: none;
    margin: 0px;
    padding: 0px;
  }

  header.header .header_menu .hs-menu-wrapper ul ul {position: static;visibility: visible;opacity: 1;}
  .header_menu .hs-menu-wrapper>ul>li:not(:last-child) {
    margin: 0px;
  }

  .header_menu .hs-menu-wrapper>ul>li>a {
    padding: 10px 0px;
    display: block;
  }

  .header_menu .hs-menu-wrapper>ul li.hs-item-has-children {
    position: relative;
    padding-right: 50px;
    margin-right: 10px;
  }

  .header .child-trigger {
    position: absolute;
    right: 12px;
    top: 10px;
    cursor: pointer;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .4s;
  }
  .header_menu .hs-menu-wrapper>ul ul {
    width: 100%;
    background: var(--senary);
    display: none;
  }

  .header_menu ul li a {
    color: var(--white);
  }

  .header .child-trigger svg path {
    fill: var(--white);
  }
  .header .child-trigger.child-open {
    transform: rotate(180deg);
  }
  body.overflow {
    overflow-y: hidden;
  }
  .header_mobile_cont {
    display: block;
    margin-top: 50px;
  }

  .header_social-icon ul {
    padding: 0px;
    margin: 0px;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
  }

  .header_social-icon ul li {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .header_social-icon ul li img {
    width: 16px;
    height: 16px;
    display: block;
    object-fit: contain;
    object-position: center;
  }
  .header_mobile_btn {
    margin-top: 50px;
  }

  .header_mobile_btn .header_btn_lang {
    display: flex;
    padding: 0px;
  }
  .header_mobile_btn .header_btns {
    padding-left: 7px;
  }

  .header_mobile_btn .header_btns a:hover {
    background-color: var(--black);
  }
  .header_mobile_contact .header_btns {
    padding: 0px;
    gap: 21px;
    margin-right: 21px;
  }

  .header_mobile_contact .header_btns .btn a {
    padding: 0px;
    background-color: transparent;
    width: auto;
    height: auto;
    box-shadow: 0px 5px 15px 0px #00000026;
    display: block;
  }

  .header_mobile_contact .header_btns .btn a svg {
    width: 34px;
    height: 34px;
    display: block;
  }
  .header_mobile_btn .lang_switcher_class li a {
    color: var(--body);
  }
  .header .lang_list_class {
    top: 30px;
  }

  .header .lang_list_class:after {
    top: -22px;
  }

  .header .lang_list_class:after, 
  .header .lang_list_class:before {
    z-index: 1;
  }

  .header .lang_list_class:before {
    top: -24px;
  }
  header.header {
    min-height: 74px;
  }
  .header_menu .hs-menu-wrapper>ul>li>a:after { display:none;} 
  .header_menu .hs-menu-wrapper>ul>li.active>a { color: var(--header-link-color);}
  
}

@media (max-width: 767px){
  header.header {
    min-height: 62px;
  }
  .header_logo img {
    width: 121.44px;
    height: 35px;
  }

  .header_inner {
    padding: 6px 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%;
}
.site-footer{background:var(--footer-bg-color);padding:45px 0 40px 0}
.site-footer .inner-items .menu{width:70%}
.site-footer .inner-items .logo{width:15%}
.site-footer .inner-items .butn{width:15%;display: flex; justify-content: end;}
.site-footer .inner-items .logo .inner a{display:inline-block}
.site-footer .inner-items .logo .inner{max-width:142px;width:100%}
.site-footer .inner-items {display:flex;align-items:center;flex-wrap:wrap;padding-bottom:18px;margin-bottom:25px;border-bottom:1px solid var(--white);justify-content: center;}
.site-footer .inner-items .menu .inner ul li a,.site-footer .inner-items .menu .inner ul li span a{color:var(--footer-text-color);padding:0 15px;font-size:16px}
.site-footer .inner-items .menu .inner{text-align:center;justify-content:center;display:flex}
.site-footer .inner-items .menu .inner ul li{margin:0}
.site-footer .inner-items .menu .inner ul li a:hover,.site-footer .inner-items .menu .inner ul li span a:hover{opacity:.8;text-decoration:none}
.site-footer .bottom-items {display:flex;flex-wrap:wrap}
.site-footer .bottom-items .legal-policy *{font-size:12px;color:var(--footer-text-color);display:inline-block;margin:0;}
.site-footer .bottom-items .legal-policy {display:flex;justify-content:space-between;width:80%;align-items:center}
.site-footer .bottom-items .media-items {width:20%}
.site-footer .bottom-items .media-items .inner{display:flex;flex-wrap:wrap;justify-content:right}
.site-footer .bottom-items .media-items .inner .wrap {width:35px;height:35px;background:var(--white);border-radius:50%;display:flex;align-items:center;justify-content:center;line-height:0;cursor:pointer;box-shadow: 0px 4px 15px 0px #23375B;}
.site-footer .bottom-items .media-items .inner .item:last-child{margin-right:0}
.site-footer .bottom-items .media-items .inner .item{margin-right:10px;}
.site-footer .bottom-items .media-items .inner .wrap img{width:21px;height:18px!important;display:block;object-fit:contain;transition:.5s all ease-in-out}
.site-footer .bottom-items .legal-policy a:hover{opacity:.8;cursor:pointer;text-decoration: none;}
.site-footer .bottom-items .media-items .inner .wrap:hover img{transform:scale(1.2) rotate(360deg);}
.site-footer .bottom-items .legal-policy .right { width: 50%; text-align: right; }
.site-footer .bottom-items .legal-policy .left{ width: 50%; text-align: left; }

@media (min-width:992px) and (max-width:1200px){
  .site-footer .inner-items .butn .btn a {
    font-size: 16px;
  }
}

@media screen and (max-width:1199px){
  .site-footer .inner-items .menu .inner ul li a,.site-footer .inner-items .menu .inner ul li span a{padding:0 10px;}
}
@media screen and (max-width:1024px){
  .site-footer .inner-items .menu .inner ul li a,.site-footer .inner-items .menu .inner ul li span a{font-size:14px}
}
@media screen and (max-width:991px){
  .site-footer .inner-items .menu .inner ul li a,.site-footer .inner-items .menu .inner ul li span a{padding:0 5px}
  .site-footer .inner-items .logo{width:100%;margin-bottom:20px}
  .site-footer .inner-items .butn,.site-footer .inner-items .menu{width:50%}
  .site-footer .inner-items .menu .inner ul li{width:calc(50% - 3px);text-align:left;margin-bottom:14px}
  .site-footer .inner-items{align-items:unset;padding-bottom:6px;margin-bottom:17px}
  .site-footer .bottom-items .legal-policy{width:100%;display:block}
  .site-footer .bottom-items .legal-policy .left,.site-footer .bottom-items .legal-policy .right{text-align:left; width:100%}
  .site-footer .inner-items .menu .inner ul li a,.site-footer .inner-items .menu .inner ul li span a{padding:0}
  .site-footer .inner-items .menu .inner ul{flex-direction:unset;gap: 5px;}
  .site-footer .bottom-items .legal-policy *{font-size:11px}
  .site-footer{padding:24px 0 18px 0}
  .site-footer .bottom-items {position: relative; }
  .site-footer .bottom-items .media-items { width: 100%; position: absolute; right: 0px; bottom: 80px; }
}
@media screen and (max-width:480px){  
  .site-footer .inner-items .butn{width:40%}
  .site-footer .inner-items .menu{width:60%}
  .site-footer .inner-items .butn a { font-size: 16px;min-width: 100%; } 
  .site-footer .inner-items .menu .inner ul li a { position: relative; z-index: 1; }
}

/* 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;
  }
}
/* @import url('http://example.com/example_style.css'); */

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

/*****************************************/
/* Start your style declarations here    */
/*****************************************/
.slick-slider{position:relative;display:block;box-sizing:border-box;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-touch-callout:none;-khtml-user-select:none;-ms-touch-action:pan-y;touch-action:pan-y;-webkit-tap-highlight-color:transparent}.slick-list{position:relative;display:block;overflow:hidden;margin:0;padding:0}.slick-list:focus{outline:0}.slick-list.dragging{cursor:pointer;cursor:hand}.slick-slider .slick-list,.slick-slider .slick-track{-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0);-o-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.slick-track{position:relative;top:0;left:0;display:block;margin-left:auto;margin-right:auto}.slick-track:after,.slick-track:before{display:table;content:''}.slick-track:after{clear:both}.slick-loading .slick-track{visibility:hidden}.slick-slide{display:none;float:left;height:100%;min-height:1px}[dir=rtl] .slick-slide{float:right}.slick-slide img{display:block}.slick-slide.slick-loading img{display:none}.slick-slide.dragging img{pointer-events:none}.slick-initialized .slick-slide{display:block}.slick-loading .slick-slide{visibility:hidden}.slick-vertical .slick-slide{display:block;height:auto;border:1px solid transparent}.slick-arrow.slick-hidden{display:none}
/*# sourceMappingURL=slick.min.css.map */

@charset 'UTF-8';.slick-loading .slick-list{background:#fff url(ajax-loader.gif) center center no-repeat}@font-face{font-family:slick;font-weight:400;font-style:normal;src:url(fonts/slick.eot);src:url(fonts/slick.eot?#iefix) format('embedded-opentype'),url(fonts/slick.woff) format('woff'),url(fonts/slick.ttf) format('truetype'),url(fonts/slick.svg#slick) format('svg')}.slick-next,.slick-prev{font-size:0;line-height:0;position:absolute;top:50%;display:block;width:20px;height:20px;padding:0;-webkit-transform:translate(0,-50%);-ms-transform:translate(0,-50%);transform:translate(0,-50%);cursor:pointer;color:transparent;border:none;outline:0;background:0 0}.slick-next:focus,.slick-next:hover,.slick-prev:focus,.slick-prev:hover{color:transparent;outline:0;background:0 0}.slick-next:focus:before,.slick-next:hover:before,.slick-prev:focus:before,.slick-prev:hover:before{opacity:1}.slick-next.slick-disabled:before,.slick-prev.slick-disabled:before{opacity:.25}.slick-next:before,.slick-prev:before{font-family:slick;font-size:20px;line-height:1;opacity:.75;color:#fff;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.slick-prev{left:-25px}[dir=rtl] .slick-prev{right:-25px;left:auto}.slick-prev:before{content:'←'}[dir=rtl] .slick-prev:before{content:'→'}.slick-next{right:-25px}[dir=rtl] .slick-next{right:auto;left:-25px}.slick-next:before{content:'→'}[dir=rtl] .slick-next:before{content:'←'}.slick-dotted.slick-slider{margin-bottom:30px}.slick-dots{position:absolute;bottom:-25px;display:block;width:100%;padding:0;margin:0;list-style:none;text-align:center}.slick-dots li{position:relative;display:inline-block;width:20px;height:20px;margin:0 5px;padding:0;cursor:pointer}.slick-dots li button{font-size:0;line-height:0;display:block;width:20px;height:20px;padding:5px;cursor:pointer;color:transparent;border:0;outline:0;background:0 0}.slick-dots li button:focus,.slick-dots li button:hover{outline:0}.slick-dots li button:focus:before,.slick-dots li button:hover:before{opacity:1}.slick-dots li button:before{font-family:slick;font-size:6px;line-height:20px;position:absolute;top:0;left:0;width:20px;height:20px;content:'';text-align:center;opacity:.25;color:#000;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.slick-dots li.slick-active button:before{opacity:.75;color:#000}
/*# sourceMappingURL=slick-theme.min.css.map */