/* Theme base styles */
* {
    box-sizing: border-box;
    font-family: var(--font-roboto);
}

.body-container-wrapper--blog {
    padding-top: 120px;
}

.body-container--overflow-hidden {
    overflow-x: hidden;
}

.body-container--blog-index,
.body-container--event-index {
    position: relative;
}

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

/* Variables
Global variables for the project
*/
:root {
    --speed: .3s;
}
/* Breakpoints */
:root {
    --small: 568px;
    --medium: 768px;
    --large: 1024px;
    --xlarge: 1280px;
    --xxlarge: 1440px;
}
:root {
    --card-box-shadow: 0px 0px 30px 0px rgba(0, 12, 54, 0.10);
}
/* Use https://chir.ag/projects/name-that-color/ for variable naming */

:root {
    --white: #fff;
    --black: #000;
    --grey: #A3A9B5;
    --jagged-ice: #BEE0E5;
    --silver-chalice: #a0a0a0;
    --ocean-green: rgba(88, 185, 153, 0.2);
    --san-marino: #4252a4;
    --havelock-blue: #5e71d7;
}
/* CSS variables */

:root {
  --column-gap: 2.13%;
  --column-width-multiplier: 8.333;
}
:root {
    --primary: #191f3e;
    --secondary: #29A64D;
    --tertiary: #197fc4;
    --accent-color-1: #58B999;
    --accent-color-2: #00618C;
    --accent-color-3: #191f3e;
    --accent-color-4: #79ffd3;
    --accent-color-5: #ecf5f7;
    --accent-color-6: #0e8931;
    --header-background-color: #fff;
    --header-text-color: #58B999;
    --footer-background-color: #191f3e;
    --footer-text-color: #ffffff;
    --footer-heading-color: #29A64D;
    --page-background-color: #fff;
}
:root {
    --input-border-radius: 4px;
    --form-success: green;
    --form-error: red;
}
:root {
    --giga: 4.8125rem;
    --mega: 3.5rem;
    --h1: 2.5625rem;
    --h2: 2.0625rem;
    --h3: 1.625rem;
    --h4: 1.3125rem;
    --base-text-color: var(--primary);
    --base-font-family: var(--font-roboto);
    --base-font-size: 18px;
    --base-line-height: 1.5;

    --heading-color: var(--primary);
    --heading-font: var(--font-roboto);

    --large-body-size: 19px;
    --small-body-size: 14px;
    --tiny-body-size: 11px;
    --tag-size: 11px;

    --weight-normal: 400;
    --weight-semi: 500;
    --weight-bold: 700;
}
:root {
    --checkbox-size: 24px;
    --input-border-radius: 2px;
    --spacing: 24px;
    --speed: .3s;
    --top-position: 20px;
}

/* Generic*/
/* Missing Template at Path: \'entersekt-rawnet-theme\/css\/generic\/_base.css\' */
/* Missing Template at Path: \'entersekt-rawnet-theme\/css\/generic\/_button-reset.css\' */
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

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

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

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

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

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

body {
  margin: 0;
}

.body-wrapper {
  margin: 0 auto;
  max-width: 1600px;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */

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

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

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, Opera, and Safari.
 */

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Forms
   ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Remove the inheritance of text transform in Edge and Firefox.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

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

legend {
  padding: 0;
}

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

progress {
  vertical-align: baseline;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */

/*
 * Add the correct display in Edge and Firefox.
 */

details {
  display: block;
}

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

summary {
  display: list-item;
}
/* Missing Template at Path: \'entersekt-rawnet-theme\/css\/generic\/_list-reset.css\' */
.widget-type-rich_text {
    color: var(--base-text-color);
    width: 100%;
}

.widget-type-rich_text h1,
.widget-type-rich_text h2,
.widget-type-rich_text h3,
.widget-type-rich_text h4 {
    color: var(--base-text-color);
    font-family: var(--heading-font);
    font-weight: var(--weight-bold);
    margin-bottom: var(--spacing);
    letter-spacing: 0;
}

.widget-type-rich_text h1 {
    font-size: clamp(1.6875rem, 10vw, var(--h1));
}       

.widget-type-rich_text h2 {
    font-size: clamp(1.5rem, 10vw, var(--h2));
}

.widget-type-rich_text h3 {
    font-size: clamp(1.375rem, 10vw, var(--h3));
}

.widget-type-rich_text h4 {
    font-size: clamp(1.25rem, 10vw, var(--h4));
    margin-bottom: 16px;
}

.widget-type-rich_text h1:not(:first-child),
.widget-type-rich_text h2:not(:first-child),
.widget-type-rich_text h3:not(:first-child),
.widget-type-rich_text h4:not(:first-child) {
    margin-top: var(--spacing);
}

.widget-type-rich_text::after {
    clear: both;
    content: '';
    display: table;
}

.widget-type-rich_text ul,
.widget-type-rich_text ol {
    list-style: none;
    margin-bottom: 10px;
    margin-left: 0;
    margin-top: 0;
    padding-left: 0;
}

.widget-type-rich_text ul li,
.widget-type-rich_text ol li {
    font-size: var(--base-font-size);
    font-family: var(--base-font-family);
    line-height: var(--base-line-height);
    margin-bottom: 25px;
    position: relative;
}

.widget-type-rich_text ul li:last-child,
.widget-type-rich_text ol li:last-child,
.widget-type-rich_text > .hs_cos_wrapper > :last-child {
    margin-bottom: 0;
}

.widget-type-rich_text ul li {
    padding-left: 27px;
}
.widget-type-rich_text ul li p,
.widget-type-rich_text ol li p {
    margin-bottom: 0
}

.widget-type-rich_text ul li::before {
    background-color: var(--secondary);
    border-radius: 50%;
    content: '';
    height: 10px;
    left: 0;
    position: absolute;
    top: 0.9em;
    transform: translateY(-50%);
    width: 10px;
}

.widget-type-rich_text ol {
    counter-reset: item;
}

.widget-type-rich_text ol li {
    color: var(--base-text-color);
    counter-increment: item;
    margin-bottom: 5px;
    padding-left: 25px;
}

.widget-type-rich_text ol li::before {
    border-radius: 100%;
    color: var(--secondary);
    content: counter(item) '.';
    display: inline-block;
    left: 0;
    position: absolute;
    top: 2px;
}

.widget-type-rich_text hr {
    background-color: var(--base-text-color);
    border: 0;
    height: 1px;
    margin-block: calc(var(--spacing) * 2);
}

.widget-type-rich_text .table-wrapper {
    overflow-x: auto;
}

.widget-type-rich_text table {
    border-collapse: collapse;
    hyphens: auto;
    margin-bottom: var(--spacing);
    min-width: 400px;
    table-layout: fixed;
}

.widget-type-rich_text table td,
.widget-type-rich_text table th {
    border: 1px solid var(--base-text-color);
    box-sizing: border-box;
    padding: 10px;
}

.widget-type-rich_text p {
    color: var(--base-text-color);
    font-size: var(--base-font-size);
    font-family: var(--base-font-family);
    line-height: var(--base-line-height);
    margin-bottom: var(--spacing);
}
.heading--giga,
.heading--mega,
.heading--1,
.heading--2,
.heading--3,
.heading--4 {
    color: var(--primary);
    font-family: var(--heading-font);
    font-weight: var(--weight-bold);
    letter-spacing: 0;
}

.heading--giga,
.heading--mega,
.heading--1,
.heading--2,
.heading--3,
.heading--4 {
    line-height: 1;
}

.heading--giga {
    font-size: clamp(2.4375rem, 10vw, var(--giga));
}

.heading--mega {
    font-size: clamp(2rem, 10vw, var(--mega));
}

.heading--1 {
    font-size: clamp(1.6875rem, 10vw, var(--h1));
}

.heading--2 {
    font-size: clamp(1.5rem, 10vw, var(--h2));
}

.heading--3 {
    font-size: clamp(1.375rem, 10vw, var(--h3));
}

.heading--4 {
    font-size: clamp(1.25rem, 10vw, var(--h4));
}
/* Missing Template at Path: \'entersekt-rawnet-theme\/css\/generic\/_sizings.css\' */

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


/* CSS variables */

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

/* Mobile layout */

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


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

/* Desktop layout */

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

  
    .row-fluid .span1 {
      width: calc(var(--column-width-multiplier) * 1% * 1 - var(--column-gap) * (11 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span2 {
      width: calc(var(--column-width-multiplier) * 1% * 2 - var(--column-gap) * (10 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span3 {
      width: calc(var(--column-width-multiplier) * 1% * 3 - var(--column-gap) * (9 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span4 {
      width: calc(var(--column-width-multiplier) * 1% * 4 - var(--column-gap) * (8 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span5 {
      width: calc(var(--column-width-multiplier) * 1% * 5 - var(--column-gap) * (7 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span6 {
      width: calc(var(--column-width-multiplier) * 1% * 6 - var(--column-gap) * (6 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span7 {
      width: calc(var(--column-width-multiplier) * 1% * 7 - var(--column-gap) * (5 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span8 {
      width: calc(var(--column-width-multiplier) * 1% * 8 - var(--column-gap) * (4 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span9 {
      width: calc(var(--column-width-multiplier) * 1% * 9 - var(--column-gap) * (3 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span10 {
      width: calc(var(--column-width-multiplier) * 1% * 10 - var(--column-gap) * (2 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span11 {
      width: calc(var(--column-width-multiplier) * 1% * 11 - var(--column-gap) * (1 * var(--column-width-multiplier) / 100));
    }
  
}
.content-wrapper {
  margin: 0 auto;
  padding: 0 1rem;
}

@media screen and (min-width: 1380px) {
  .content-wrapper {
    padding: 0;
  }
}

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

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

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

/* Layouts
*/
/* Default width and padding are set in settings/utility.css */
:root {
    --container-small: 640px;
    --container-medium: 896px;
}

.container {
    margin-left: auto;
    margin-right: auto;
    max-width: var(--container-width);
    padding-left: calc(var(--container-padding) / 2);
    padding-right: calc(var(--container-padding) / 2);
}

.container .container {
    padding-left: 0;
    padding-right: 0;
}

.container--small {
    max-width: var(--container-small);
}

.container--medium {
    max-width: var(--container-medium);
}

@media (min-width: 768px) {
    .container {
        padding-left: var(--container-padding);
        padding-right: var(--container-padding);
    }

    .container .container {
        padding-left: 0;
        padding-right: 0;
    }
}
.island {
    box-shadow: 0px 0px 30px 0px rgba(0, 12, 54, 0.10);
}

.island--center {
    text-align: center;
}

.island__content {
    padding: 70px 55px 40px;
}
--top-position: 106px;

.nav {
    background-color: var(--white);
    height: calc(100vh - 130px);
    left: 0;
    overflow-x: hidden;
    overflow-y: scroll;
    position: absolute;
    top: var(--top-position);
    transform: translateX(100%);
    transition: transform var(--speed) ease-in-out;
    width: 100vw;
    z-index: 1;
}

.nav--active {
    height: 100vh;
    transform: translateX(0);
}

.nav__list-item {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
}

.nav__list-item:focus {
    outline: auto;
}

.nav__list-header {
    align-items: center;
    display: flex;
    justify-content: space-between;
    padding-left: 30px;
    padding-right: 0;
    padding-top: 17px;
    width: 100%;
}

.nav__link {
    color: var(--base-text-color);
    display: block;
    font-family: var(--base-font-family);
    font-size: 14px;
    font-weight: bold;
    line-height: 1.4;
    margin-bottom: 20px; 
    white-space: nowrap;
    text-decoration: underline;
}

.nav__link--parent {
    color: var(--base-text-color);
    font-size: 18px;
    margin-bottom: 24px;
}

.nav__link--parent:hover {
    color: var(--base-text-color);
    text-decoration: none;
}

.nav__button {
    align-items: center;
    display: flex;
    font-size: 0;
    height: 80px;
    justify-content: center;
    width: 60px;
}

.nav__chevron {
    display: none;
    height: auto;
    transform: rotate(90deg);
    width: 12px;
}

.nav__icon {
    fill: var(--black);
}

.nav__secondary-level {
    background-color: var(--white);
    padding: 0 30px;
    position: absolute;
    top: 97px;
    transform: translateX(100%);
    transition: transform var(--speed) ease-in-out;
    width: 100vw;
}

.nav__secondary-level .nav__link {
    white-space: break-spaces;
}

.nav--sub {
    background-color: var(--white);
    height: auto;
    padding: 24px 0 13px;
    position: relative;
    top: auto;
    transform: translateX(0);
}

.nav--sub .nav__list {
    display: flex;
    overflow-x: scroll;
}

.nav--sub .nav__list-item:not(:last-child) {
    margin-right: 16px;
}

.nav--sub .nav__link {
    color: var(--base-text-color);
    font-size: 18px;
}

.nav--sub .nav__link:hover {
    color: var(--base-text-color);
    text-decoration: none;
}

.nav--sub .nav__link:hover .nav__underline {
    opacity: 1;
}

.nav--sub .nav__link--active {
    color: var(--base-text-color);
    text-decoration: none;
}

.nav--sub .nav__link--active .nav__underline {
    opacity: 1;
}

.nav--sub .nav__underline {
    border-style: solid;
    border-width: 4px;
    display: block;
    margin: 0 auto;
    opacity: 0;
    position: relative;
    width: 100%;
}

.nav--sub .nav__underline--blue {
    border-color: var(--outline);
    border-top-left-radius: 75% 75%;
    border-top-right-radius: 75% 75%;
    z-index: 1;
}

.nav--sub .nav__underline--white {
    border-color: var(--white);
    border-top-left-radius: 65% 55%;
    border-top-right-radius: 65% 55%;
    margin-top: -5px;
    z-index: 3;
}

/* Responsive styles for max-width x-large */
@media (max-width: 1280px) {
    .nav__list-item--active {
        background-color: var(--white);
        flex-direction: column;
        position: absolute;
        top: 0;
    }

    .nav__list-item--active .nav__list-header {
        flex-direction: row-reverse;
        justify-content: flex-end;
        padding-left: 0;
        padding-right: 30px;
    }

    .nav__list-item--active .nav__icon {
        transform: rotate(180deg);
    }

    .nav__list-item--active .nav__separator {
        background-color: rgba(#000, 0.2);
        display: block;
        height: 1px;
        margin-bottom: 10px;
        width: 100%;
    }

    .nav__list-item--active .nav__secondary-level {
        transform: translateX(0);
    }
}

/* Responsive styles for min-width x-large */
@media (min-width: 1280px) {
    .nav {
        background-color: transparent;
        height: auto;
        left: auto;
        overflow: unset;
        position: unset;
        top: auto;
        transform: translateX(0);
        width: auto;
    }

    .nav__list {
        align-items: center;
        display: flex;
    }

    .nav__list-item {
        padding-left: 0;
        padding-right: 22px;
    }

    .nav__list-item:hover .nav__list-header::after {
        display: block;
    }

    .nav__list-item:hover .nav__secondary-level {
        height: auto;
        left: 0;
        overflow: visible;
        transform: translateX(0);
    }

    .nav__list-item--active .nav__list-header::after {
        display: block;
    }

    .nav__list-item--active .nav__secondary-level {
        height: auto;
        left: 50%;
        overflow: visible;
    }

    .nav__separator {
        display: none;
    }

    .nav__list-header {
        padding: 0;
        position: relative;
    }

    .nav__list-header::after {
        background-color: var(--white);
        bottom: -10px;
        content: '';
        display: none;
        height: 20px;
        left: 50%;
        position: absolute;
        transform: translateX(-50%) rotate(45deg);
        width: 20px;
        z-index: 3;
    }

    .nav__link {
        padding: 51px 10px 51px 22px;
    }

    .nav__secondary-level {
        border-radius: 12px;
        box-shadow: 2px 2px 40px rgba(63, 63, 105, 0.12);
        height: 0;
        left: -10000px;
        max-width: 928px;
        overflow: hidden;
        padding: 64px 54px;
        position: absolute;
        top: 126px;
        transform: translateX(-100%);
        transition: none;
        width: 100%;
        z-index: 2;
    }

    .nav__secondary-level .nav__link {
        padding: 0;
    }

    .nav__chevron {
        display: block;
    }

    .nav__button {
        display: none;
    }

    .nav--sub .nav__list-item {
        padding-right: 0;
    }

    .nav--sub .nav__list-item:not(:last-child) {
        margin-right: 40px;
    }

    .nav--sub .nav__link {
        padding: 0;
    }
}
.rn-page {
    margin: 0 auto;
    min-height: 100vh;
    overflow: clip;
}

.rn-page__skip {
    opacity: 0;
    pointer-events: none;
}

.rn-page__skip.button {
    position: absolute;
}

.rn-page__skip:focus {
    opacity: 1;
    pointer-events: auto;
    position: relative;
}
.scroller {
    --slide-min-width: 304px;
    display: flex;
    margin-top: -40px;
    -webkit-overflow-scrolling: touch;
    overflow-x: auto;
    overflow-y: visible;
    overscroll-behavior-inline: contain;
    padding-block: 40px;
    scroll-snap-type: x mandatory;
    scrollbar-color: #000;
    scrollbar-width: thin;
}

.scroller__item {
    min-inline-size: min(var(--slide-min-width), 100%);
    scroll-snap-align: start;
}

.scroller::-webkit-scrollbar {
    height: 6px;
}

.scroller::-webkit-scrollbar-track {
    background: #fff;
    border-radius: 3px;
    margin-left: 20px;
    margin-right: 20px;
}

.scroller::-webkit-scrollbar-thumb {
    background-color: #000;
    border-radius: 3px;
}

.scroller .card {
    height: 100%;
}
.section {
    padding: 128px 0;
}
.section.section--narrow {
    padding: 48px 0;
}

.dnd-section + .dnd-section:not(.dnd-section.section--video-bg):not(.dnd-section.section--dark):not(.dnd-section.section--dark-gradient):not(.dnd-section.section--light-gradient):not(.dnd_area-row-1-background-color):not(.dnd-section.section--keep-top-padding),
.section + .section:not(.section--video-bg):not(.section--dark):not(.section--dark-gradient):not(.section--light-gradient):not(.dnd_area-row-1-background-color):not(.section.section--keep-top-padding) {
  padding-top: 0;
}

.section.section--keep-top-padding {
  padding-top: 128px;
}

.section.section--inner-white-box > .row-fluid {
    background-color: var(--white);
    border-radius: 50px;
    max-width: 1504px !important;
    padding: 128px 96px;
}

.section.section--inner-white-box > .row-fluid > .dnd-column {
    margin: 0 auto;
    max-width: 1312px;
}

@media (max-width: 767px) {
  .dnd-section,
  .section,
  .section.section--keep-top-padding {
    padding: 64px 0;
  }

  .section.section--inner-white-box > .row-fluid {
    padding: 64px 28px;
  }
}

.section.section--dark {
    background-color: var(--primary);
}

.section.section--dark-gradient {
    background-color: #191f3e;
    overflow: hidden;
    position: relative;
}

.section.section--dark-gradient::before {
    background: url(https://315236.fs1.hubspotusercontent-na1.net/hubfs/315236/raw_assets/public/entersekt-rawnet-theme/images/brand-shapes-dark.svg) no-repeat 70% 35% / 130% auto;
    content: '';
    filter: blur(100px);
    inset: -120px;
    pointer-events: none;
    position: absolute;
    z-index: 0;
}

.section.section--dark-gradient > * {
    position: relative;
    z-index: 1;
}

.section.section--light-gradient {
    background-color: #ecf5f7;
    overflow: hidden;
    position: relative;
}

.section.section--light-gradient::before {
    background: url(https://315236.fs1.hubspotusercontent-na1.net/hubfs/315236/raw_assets/public/entersekt-rawnet-theme/images/brand-shapes-light.svg) no-repeat 70% 35% / 130% auto;
    content: '';
    filter: blur(100px);
    inset: -120px;
    pointer-events: none;
    position: absolute;
    z-index: 0;
}

.section.section--light-gradient > * {
    position: relative;
    z-index: 1;
}

.section.section--video-bg,
.dnd-section.section--video-bg {
    position: relative;
}

.section.section--light-blue {
    background-color: var(--accent-color-5);
}


.section.section--contrast-content > .row-fluid {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
    padding: 16px;
    width: auto;
    display: inline-block;
}
/* Grid Container */
.grid {
    display: grid;
}

/* Grid Columns */
.grid-cols-1 {
    grid-template-columns: repeat(1, 1fr);
}

.grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-cols-4 {
    grid-template-columns: repeat(4, 1fr);
}

.grid-cols-5 {
    grid-template-columns: repeat(5, 1fr);
}

.grid-cols-6 {
    grid-template-columns: repeat(6, 1fr);
}

/* Grid Gap */
.gap-0 {
    gap: 0;
}

.gap-1 {
    gap: .25rem; /* 4px gap */
}

.gap-2 {
    gap: .5rem; /* 8px gap */
}

.gap-3 {
    gap: .75rem; /* 12px gap */
}

.gap-4 {
    gap: 1rem;
    /* 16px gap */
}

.gap-6 {
    gap: 1.5rem;
    /* 24px gap */
}

.gap-8 {
    gap: 2rem;
    /* 32px gap */
}

.gap-12 {
    gap: 3rem;
    /* 48px gap */
}

.gap-16 {
    gap: 4rem;
    /* 64px gap */
}

/* Grid Row */
.grid-rows-1 {
    grid-template-rows: repeat(1, 1fr);
}

.grid-rows-2 {
    grid-template-rows: repeat(2, 1fr);
}

.grid-rows-3 {
    grid-template-rows: repeat(3, 1fr);
}

/* Grid Item (Span columns or rows) */
.col-span-2 {
    grid-column: span 2;
}

.row-span-2 {
    grid-row: span 2;
}

/* Center Grid Item */
.grid-center {
    place-items: center;
}

/* Justify Content (for grid) */
.justify-items-start {
    justify-items: start;
}

.justify-items-center {
    justify-items: center;
}

.justify-items-end {
    justify-items: end;
}

/* Align Content (for grid) */
.align-items-start {
    align-items: start;
}

.align-items-center {
    align-items: center;
}

.align-items-end {
    align-items: end;
}

/* Responsive Grid */
@media (max-width: 1024px) {
    .grid-cols-1-lg {
        grid-template-columns: repeat(1, 1fr);
    }

    .grid-cols-2-lg {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-cols-3-lg {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .grid-cols-1-md {
        grid-template-columns: repeat(1, 1fr);
    }

    .grid-cols-2-md {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-cols-3-md {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 480px) {
    .grid-cols-1-sm {
        grid-template-columns: repeat(1, 1fr);
    }

    .grid-cols-2-sm {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-cols-3-sm {
        grid-template-columns: repeat(3, 1fr);
    }
}
/* Flex Container */
.flex {
    display: flex;
}

/* Flex Direction */
.flex-row {
    flex-direction: row;
}

.flex-row-reverse {
    flex-direction: row-reverse;
}

.flex-col {
    flex-direction: column;
}

.flex-col-reverse {
    flex-direction: column-reverse;
}

/* Justify Content */
.justify-start {
    justify-content: flex-start;
}

.justify-center {
    justify-content: center;
}

.justify-end {
    justify-content: flex-end;
}

.justify-between {
    justify-content: space-between;
}

.justify-around {
    justify-content: space-around;
}

.justify-evenly {
    justify-content: space-evenly;
}

/* Align Items */
.items-start {
    align-items: flex-start;
}

.items-center {
    align-items: center;
}

.items-end {
    align-items: flex-end;
}

.items-baseline {
    align-items: baseline;
}

.items-stretch {
    align-items: stretch;
}

/* Align Self */
.self-start {
    align-self: flex-start;
}

.self-center {
    align-self: center;
}

.self-end {
    align-self: flex-end;
}

.self-baseline {
    align-self: baseline;
}

.self-stretch {
    align-self: stretch;
}

/* Flex Wrap */
.flex-wrap {
    flex-wrap: wrap;
}

.flex-nowrap {
    flex-wrap: nowrap;
}

.flex-wrap-reverse {
    flex-wrap: wrap-reverse;
}

/* Flex Grow/Shrink */
.flex-grow-1 {
    flex-grow: 1;
}

.flex-grow-0 {
    flex-grow: 0;
}

.flex-shrink-1 {
    flex-shrink: 1;
}

.flex-shrink-0 {
    flex-shrink: 0;
}

/* Flex Basis */
.flex-basis-auto {
    flex-basis: auto;
}

.flex-basis-0 {
    flex-basis: 0;
}

.flex-basis-1 {
    flex-basis: 1rem;
}

/* Center Flex Items */
.flex-center {
    justify-content: center;
    align-items: center;
}

/* Order (for flex) */
.order-first {
    order: -1;
}

.order-last {
    order: 1;
}

.order-0 {
    order: 0;
}

.order-1 {
    order: 1;
}

.order-2 {
    order: 2;
}
/* Hide above 1024px */
.hide {
    display: none;
}

/* Show above 1024px */
.show {
    display: block;
}


@media (max-width: 480px) {
    .show-sm {
        display: block;
    }

    .show-sm-flex {
        display: flex;
    }

    .hide-sm {
        display: none;
    }
}

@media (max-width: 768px) {
    .show-md {
        display: block;
    }

    .hide-md {
        display: none;
    }
}

@media (max-width: 1024px) {
    .hide-lg {
        display: none;
    }

    .show-lg {
        display: block;
    }
}

/* Elements
Base HMTL elements are styled in this section (<body>, <h1>, <a>, <p>, <button> etc.)
*/
/* The overflow-wrap is meant to prevent long/large words from breaking the mobile responsiveness of a page (e.g. horizontal scrolling). It is preferred to reduce font sizes on mobile to address this, with this CSS specifically helping with extreme scenarios where a reduction in font size is not possible. */

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

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

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

/* Paragraphs */

p {
  font-size: 1rem;
  margin: 0 0 1.4rem;
}

/* Anchors */

a {
  cursor: pointer;
}

/* Headings */

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 1.4rem;
}

/* Lists */

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

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

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

/* Code blocks */

pre {
  overflow: auto;
}

code {
  vertical-align: bottom;
}

/* Blockquotes */

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

/* Horizontal rules */

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

/* Image alt text */

img {
  font-size: 0.583rem;
  word-break: normal;
}
button,
.button,
.hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

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

/* No button */

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

/* Button presets */

.rn-button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 1024px;
  cursor: pointer;
  display: inline-flex;
  font-size: 15px;
  font-weight: 500;
  gap: 8px;
  justify-content: center;
  line-height: 1.3;
  padding: 12px 40px;
  text-decoration: none;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

/* Green (high emphasis) */

.rn-button--green {
  background-color: var(--secondary);
  border-color: var(--secondary);
  color: var(--white);
}

.rn-button--green:hover,
.rn-button--green:focus {
  background-color: var(--primary);
  border-color: var(--white);
  color: var(--white);
}

.rn-button--green:active {
  background-color: var(--tertiary);
  border-color: var(--tertiary);
  color: var(--white);
}

/* White + Green Text */

.rn-button--white-green {
  background-color: var(--white);
  border-color: var(--white);
  color: var(--secondary);
}

.rn-button--white-green:hover,
.rn-button--white-green:focus {
  background-color: var(--secondary);
  border-color: var(--secondary);
  color: var(--white);
}

.rn-button--white-green:active {
  background-color: var(--tertiary);
  border-color: var(--tertiary);
  color: var(--white);
}

/* White + Green Border (medium emphasis) */

.rn-button--outline-green {
  background-color: transparent;
  border-color: var(--secondary);
  color: var(--secondary);
}

.rn-button--outline-green:hover,
.rn-button--outline-green:focus {
  background-color: var(--primary);
  border-color: var(--white);
  color: var(--white);
}

.rn-button--outline-green:active {
  background-color: var(--secondary);
  border-color: var(--secondary);
  color: var(--white);
}

/* Text (low emphasis) */

.rn-button--text {
  background-color: transparent;
  border-color: transparent;
  color: var(--secondary);
  padding-left: 0;
  padding-right: 0;
}

.rn-button--text:hover,
.rn-button--text:focus {
  color: var(--secondary);
}

.rn-button--text:active {
  color: var(--secondary);
}

/* Text contrast (low emphasis on dark backgrounds) */

.rn-button--text-contrast,
.rn-button--text-contrast .rn-button__arrow  {
  color: var(--white);
}


.rn-button--text-contrast:hover,
.rn-button--text-contrast:focus,
.rn-button--text-contrast:focus-visible,
.rn-button--text-contrast:hover .rn-button__arrow ,
.rn-button--text-contrast:focus .rn-button__arrow ,
.rn-button--text-contrast:focus-visible .rn-button__arrow {
  color: var(--white);
  opacity: 0.8;
}

.rn-button--text-contrast:active {
  color: var(--white);
  opacity: 0.8;
}

.rn-button__arrow {
  color: var(--accent-color-6);
  flex-shrink: 0;
}

.rn-button__arrow--left {
  transform: rotate(180deg);
}

/* Transparent + White Border (contrast) */

.rn-button--outline-white {
  background-color: transparent;
  border-color: var(--white);
  color: var(--white);
}

.rn-button--outline-white:hover,
.rn-button--outline-white:focus {
  background-color: var(--primary);
  border-color: var(--white);
  color: var(--white);
}

.rn-button--outline-white:active {
  background-color: var(--primary);
  border-color: var(--white);
  color: var(--white);
}

/* Disabled state for all presets */

.rn-button:disabled,
.rn-button--disabled {
  background-color: rgba(0, 0, 0, 0.1);
  border-color: rgba(0, 0, 0, 0.1);
  color: rgba(0, 0, 0, 0.4);
  cursor: not-allowed;
}

/* remove padding left */
.rn-button--pl-0 {
  padding-left: 0;
}

.rn-button--small {
  padding: 7px 12px;
}
/* Table */

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

/* Table cells */

td,
th {
  vertical-align: top;
}

/* Table header */

thead th {
  vertical-align: bottom;
}

/* Components
Specific pieces of UI that are stylized. Typically used for global partial styling
*/
/* Missing Template at Path: \'entersekt-rawnet-theme\/css\/components\/_accordion.css\' */
/* Missing Template at Path: \'entersekt-rawnet-theme\/css\/components\/_card.css\' */
/* 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%;
}
.dialog {
    display: none;
    overflow: visible;
    padding: 0;
}

.dialog--form {
    border: none;
    max-width: 640px;
}

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

.dialog::backdrop {
    background: linear-gradient(0deg, rgba(0, 12, 54, 0.80) 0%, rgba(0, 12, 54, 0.80) 100%);
}

.dialog[open] {
    display: flex;
}

.dialog__header h3,
.dialog__content {
    color: var(--black);
}

.dialog__body {
    max-width: calc(100vw - 150px);
    overflow: auto;
    padding: 60px;
}

.dialog__close {
    background: transparent;
    border: none;
    color: var(--base-text-color);
    cursor: pointer;
    font-size: var(--base-font-size);
    margin: 0;
    padding: 0;
    height: 40px;
    padding: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: background var(--speed) ease;
    width: 40px;
    z-index: 9999;
}

.dialog__close:hover {
    background: var(--primary-color);
}

.dialog__close:hover::before,
.dialog__close:hover::after {
    background: var(--white);
}

.dialog__close::before,
.dialog__close::after {
    background: var(--primary-color);
    border-radius: 4px;
    content: '';
    height: 60%;
    left: calc(50% - 1px);
    position: absolute;
    top: 20%;
    transition: background var(--speed) ease;
    width: 3px;
}

.dialog__close::before {
    transform: rotate(45deg);
}

.dialog__close::after {
    transform: rotate(135deg);
}

.dialog--image .dialog__body {
    padding: 0;
}

/* Image button that triggers video modal */

.dialog-trigger {
    display: flex;
    position: relative;
    margin: 0 auto;
}

.dialog-trigger__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@media (max-width: 480px) {
    .dialog {
        width: 98%;
    }

    .dialog__body {
        max-width: calc(100vw);
        padding: 30px;
    }
}
/* Header DND sections */

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

/* Header container */

.header__container {
  display: flex;
  justify-content: space-between;
}

.header__row-1 {
  padding-top: 1rem;
}

.header__row-1,
.header__row-2 {
  align-items: center;
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

@media (max-width: 1150px) and (min-width: 767px) {
  .header__column {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .header__container {
    flex-direction: column;
    padding: 1rem 0 0;
  }

  .header__column {
    position: relative;
  }

  .header__row-1 {
    padding-top: 0;
  }

  .header__row-2 {
    justify-content: center;
    padding: 1.05rem;
  }
}

/* Navigation skipper */

.header__skip {
  height: 1px;
  left: -1000px;
  overflow: hidden;
  position: absolute;
  text-align: left;
  top: -1000px;
  width: 1px;
}

.header__skip:hover,
.header__skip:focus,
.header__skip:active {
  height: auto;
  left: 0;
  overflow: visible;
  top: 0;
  width: auto;
}

/* Logo */

.header__logo {
  align-items: center;
  display: flex;
  height: auto;
  margin-right: auto;
  max-width: 200px;
  overflow: hidden;
}

@media (max-width: 767px) {
  .header__logo {
    margin: 0 auto;
    width: 100%;
  }
}

.header__logo img {
  max-width: 100%;
}

.header__logo .logo-company-name {
  font-size: 1.167rem;
  margin-top: 0.7rem;
}

.header__logo--main {
  padding-top: 1rem;
}

/* Search bar */

.header__search {
  padding: 0 1rem;
  width: auto;
}




.header__search .hs-search-field__input {
  
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiIHZpZXdCb3g9IjAgMCAyNCAyNCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5TZWFyY2g8L3RpdGxlPiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4gICAgPGRlZnM+ICAgICAgICA8cGF0aCBkPSJNOS4xMzg2MTUzNCwxNS44OTI1Njg1IEM1LjQxMzk1NzQyLDE1Ljg5MjU2ODUgMi4zODM4ODUyNywxMi44NjM0NDc1IDIuMzgzODg1MjcsOS4xMzkwMDM3NiBDMi4zODM4ODUyNyw1LjQxNDU2MDA1IDUuNDEzOTU3NDIsMi4zODM4ODUyNyA5LjEzODYxNTM0LDIuMzgzODg1MjcgQzEyLjg2MzI3MzMsMi4zODM4ODUyNyAxNS44OTI1Njg1LDUuNDE0NTYwMDUgMTUuODkyNTY4NSw5LjEzOTAwMzc2IEMxNS44OTI1Njg1LDEyLjg2MzQ0NzUgMTIuODYzMjczMywxNS44OTI1Njg1IDkuMTM4NjE1MzQsMTUuODkyNTY4NSBNOS4xMzg3NTI0NSwyLjQzMzYwODg3ZS0xMyBDMTQuMTc3OTk1NSwyLjQzMzYwODg3ZS0xMyAxOC4yNzY0NTM3LDQuMTAwMzI0NzEgMTguMjc2NDUzNyw5LjEzOTI3Nzk2IEMxOC4yNzY0NTM3LDExLjIyOTgyMTEgMTcuNTcxMDE2OSwxMy4xNTg0NDM0IDE2LjM4NTYzMTMsMTQuNjk5NjY5NiBMMjMuNjUwODg4MSwyMS45NjUyMjY2IEMyNC4xMTYzNzA2LDIyLjQzMDcwOTIgMjQuMTE2MzcwNiwyMy4xODU0MDU1IDIzLjY1MDg4ODEsMjMuNjUwODg4MSBDMjMuMTg1NDA1NSwyNC4xMTYzNzA2IDIyLjQzMDcwOTIsMjQuMTE2MzcwNiAyMS45NjUyMjY2LDIzLjY1MDg4ODEgTDE0LjY5OTgxMzMsMTYuMzg1NDcxMyBDMTMuMTU4NDQwNSwxNy41NzA5NTA5IDExLjIyOTU3MzgsMTguMjc2NDUzNyA5LjEzODc1MjQ1LDE4LjI3NjQ1MzcgQzQuMDk5NTA5MzgsMTguMjc2NDUzNyAtMy43MzAzNDkzNmUtMTQsMTQuMTc4MjMxMiAtMy43MzAzNDkzNmUtMTQsOS4xMzkyNzc5NiBDLTMuNzMwMzQ5MzZlLTE0LDQuMTAwMzI0NzEgNC4wOTk1MDkzOCwyLjQzMzYwODg3ZS0xMyA5LjEzODc1MjQ1LDIuNDMzNjA4ODdlLTEzIFoiIGlkPSJwYXRoLTEiPjwvcGF0aD4gICAgPC9kZWZzPiAgICA8ZyBpZD0iU2VhcmNoIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4gICAgICAgIDxtYXNrIGlkPSJtYXNrLTIiIGZpbGw9IndoaXRlIj4gICAgICAgICAgICA8dXNlIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICAgICAgPC9tYXNrPiAgICAgICAgPHVzZSBpZD0iSWNvbnMvQWN0aW9ucy9TZWFyY2giIGZpbGw9IiM0OTRBNTIiIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICA8L2c+PC9zdmc+);
    background-position: center right 15px;
    background-repeat: no-repeat;
  
  height: 45px;
  padding: 0 0.7rem;
}




.header__search .hs-search-field--open .hs-search-field__input {
  border-bottom: none;
  border-radius: 6px 6px 0 0;
  max-width: 100%;
}

.header__search .hs-search-field--open .hs-search-field__suggestions {
  background-color: #FFF;
  border: 2px solid #D1D6DC;
  border-radius: 0 0 6px 6px;
  border-top-width: 1px;
  position: absolute;
  width: 100%;
  z-index: 10;
}

.header__search .hs-search-field__suggestions li {
  border-top: 1px solid #D1D6DC;
  font-size: 0.875rem;
}

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

.header__search .hs-search-field__suggestions #results-for {
  display: none;
}

@media (min-width: 767px) {
  .header__search form {
    align-items: center;
    display: flex;
    flex-direction: row;
  }

  .header__search label {
    margin: 0 1rem 0 0;
  }

  .header__search .hs-search-field__input {
    width: auto;
  }
}

@media (max-width: 767px) {
  .header__search {
    border-top: 2px solid #CED4DB;
    order: 1;
    padding: 1.05rem;
  }
}

/* Language switcher */

.header__language-switcher {
  cursor: pointer;
  padding-right: 1.4rem;
}

.header__language-switcher .lang_switcher_class {
  position: static;
}

.header__language-switcher .lang_list_class {
  border: 2px solid;
  border-radius: 3px;
  box-shadow: 0 2px 9px 0 rgba(0, 0, 0, 0.2);
  display: block;
  left: calc(100% - 24px);
  opacity: 0;
  min-width: 100px;
  padding-top: 0;
  text-align: left;
  top: 100%;
  transition: opacity 0.3s;
  visibility: hidden;
}

.header__language-switcher:hover .lang_list_class,
.header__language-switcher:focus .lang_list_class {
  opacity: 1;
  transition: opacity 0.3s;
  visibility: visible;
}

.header__language-switcher .lang_list_class:before {
  left: 70%;
  top: -25px;
}

.header__language-switcher .lang_list_class:after {
  left: 70%;
  top: -22px;
}

.header__language-switcher .lang_list_class.first-active::after {
  top: -22px;
  transition: 0.3s;
}

.header__language-switcher .lang_list_class li {
  border: none;
  font-size: 18px;
  padding: 0.35rem 0.7rem;
}

.header__language-switcher .lang_list_class li:first-child {
  border-radius: 6px 6px 0 0;
  border-top: none;
}

.header__language-switcher .lang_list_class li:last-child {
  border-bottom: none;
  border-radius: 0 0 6px 6px;
}

.header__language-switcher .lang_list_class li:hover {
  transition: background-color 0.3s;
}

.header__language-switcher--label {
  display: flex;
  position: relative;
}

.header__language-switcher--label-current {
  align-items: center;
  display: flex;
  font-size: 0.75rem;
  margin-bottom: 0.175rem;
  margin-left: 0.7rem;
}

.header__language-switcher--label-current:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 6px solid #494A52;
  content: "";
  display: block;
  height: 0px;
  margin-left: 0.7rem;
  margin-top: 0.175rem;
  width: 0px;
}

@media (max-width: 767px) {
  .header__language-switcher {
    border-top: 2px solid #CED4DB;
    padding-left: 1.05rem;
    padding-right: 0;
  }

  .header__language-switcher .lang_list_class {
    border: none;
    box-shadow: unset;
    display: block;
    left: 30px;
    opacity: 1;
    padding: 0 1.05rem;
    top: 0;
    visibility: visible;
  }

  .header__language-switcher .lang_list_class li {
    background-color: inherit;
    font-size: 0.917rem;
  }

  .header__language-switcher--label-current {
    display: none;
  }

  .header__language-switcher .globe_class {
    background-image: none;
  }

  .header__language-switcher .lang_list_class li:hover{
    background-color: inherit;
  }

  .header__language-switcher .lang_list_class:before,
  .header__language-switcher .lang_list_class:after {
    content: none;
  }}

/* Navigation */

#nav-toggle {
  display: none;
}

/* Mobile toggles */

@media (max-width: 767px) {
  .header__navigation,
  .header__search,
  .header__language-switcher {
    display: none;
    width: 100%;
  }

  .header__navigation.open,
  .header__search.open,
  .header__language-switcher.open {
    background-color: #F8FAFC;
    display: block;
    left: 0;
    min-height: calc(100vh - 115px);
    position: absolute;
    right: 0;
    top: 75px;
    z-index: 2;
  }

  .header__navigation--toggle,
  .header__search--toggle,
  .header__language-switcher--toggle,
  .header__close--toggle {
    cursor: pointer;
    margin: 0 5vw;
    position: relative;
  }

  .header__navigation--toggle.hide,
  .header__search--toggle.hide,
  .header__language-switcher--toggle.hide {
    display: none;
  }

  .header__navigation--toggle.open,
  .header__search--toggle.open,
  .header__language-switcher--toggle.open {
    display: block;
    margin-left: 0;
    margin-right: auto;
  }

  .header__navigation--toggle:after,
  .header__search--toggle:after,
  .header__language-switcher--toggle:after {
    display: none;
    font-size: 1.083rem;
    font-weight: 600;
    position: absolute;
    left: 40px;
    text-transform: uppercase;
    top: -10px;
  }

  .header__navigation--toggle.open:after,
  .header__search--toggle.open:after,
  .header__language-switcher--toggle.open:after {
    display: block;
    word-break: normal;
  }

  .header__navigation--toggle {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiIHZpZXdCb3g9IjAgMCAyNCAxOSIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5oYW1idXJnZXI8L3RpdGxlPiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4gICAgPGcgaWQ9ImhhbWJ1cmdlciIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+ICAgICAgICA8ZyBpZD0iR3JvdXAiIHN0cm9rZT0iIzQ5NEE1MiIgc3Ryb2tlLXdpZHRoPSIzIj4gICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlIiB4PSIxLjUiIHk9IjEuNSIgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHJ4PSIwLjUiPjwvcmVjdD4gICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlLUNvcHktNCIgeD0iMS41IiB5PSI5LjUiIHdpZHRoPSIyMSIgaGVpZ2h0PSIxIiByeD0iMC41Ij48L3JlY3Q+ICAgICAgICAgICAgPHJlY3QgaWQ9IlJlY3RhbmdsZS1Db3B5LTUiIHg9IjEuNSIgeT0iMTcuNSIgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHJ4PSIwLjUiPjwvcmVjdD4gICAgICAgIDwvZz4gICAgPC9nPjwvc3ZnPg==);
    background-size: cover;
    height: 25px;
    width: 25px;
  }

  .header__navigation--toggle:after {
    content: "Menu";
  }

  .header__language-switcher--toggle {
    background-image: url(//static.hsappstatic.net/cos-LanguageSwitcher/static-1.1/img/globe.png);
    background-size: cover;
    height: 25px;
    width: 25px;
  }

  .header__language-switcher--toggle:after {
    content: "Language";
  }

  .header__search--toggle {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiIHZpZXdCb3g9IjAgMCAyNCAyNCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5TZWFyY2g8L3RpdGxlPiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4gICAgPGRlZnM+ICAgICAgICA8cGF0aCBkPSJNOS4xMzg2MTUzNCwxNS44OTI1Njg1IEM1LjQxMzk1NzQyLDE1Ljg5MjU2ODUgMi4zODM4ODUyNywxMi44NjM0NDc1IDIuMzgzODg1MjcsOS4xMzkwMDM3NiBDMi4zODM4ODUyNyw1LjQxNDU2MDA1IDUuNDEzOTU3NDIsMi4zODM4ODUyNyA5LjEzODYxNTM0LDIuMzgzODg1MjcgQzEyLjg2MzI3MzMsMi4zODM4ODUyNyAxNS44OTI1Njg1LDUuNDE0NTYwMDUgMTUuODkyNTY4NSw5LjEzOTAwMzc2IEMxNS44OTI1Njg1LDEyLjg2MzQ0NzUgMTIuODYzMjczMywxNS44OTI1Njg1IDkuMTM4NjE1MzQsMTUuODkyNTY4NSBNOS4xMzg3NTI0NSwyLjQzMzYwODg3ZS0xMyBDMTQuMTc3OTk1NSwyLjQzMzYwODg3ZS0xMyAxOC4yNzY0NTM3LDQuMTAwMzI0NzEgMTguMjc2NDUzNyw5LjEzOTI3Nzk2IEMxOC4yNzY0NTM3LDExLjIyOTgyMTEgMTcuNTcxMDE2OSwxMy4xNTg0NDM0IDE2LjM4NTYzMTMsMTQuNjk5NjY5NiBMMjMuNjUwODg4MSwyMS45NjUyMjY2IEMyNC4xMTYzNzA2LDIyLjQzMDcwOTIgMjQuMTE2MzcwNiwyMy4xODU0MDU1IDIzLjY1MDg4ODEsMjMuNjUwODg4MSBDMjMuMTg1NDA1NSwyNC4xMTYzNzA2IDIyLjQzMDcwOTIsMjQuMTE2MzcwNiAyMS45NjUyMjY2LDIzLjY1MDg4ODEgTDE0LjY5OTgxMzMsMTYuMzg1NDcxMyBDMTMuMTU4NDQwNSwxNy41NzA5NTA5IDExLjIyOTU3MzgsMTguMjc2NDUzNyA5LjEzODc1MjQ1LDE4LjI3NjQ1MzcgQzQuMDk5NTA5MzgsMTguMjc2NDUzNyAtMy43MzAzNDkzNmUtMTQsMTQuMTc4MjMxMiAtMy43MzAzNDkzNmUtMTQsOS4xMzkyNzc5NiBDLTMuNzMwMzQ5MzZlLTE0LDQuMTAwMzI0NzEgNC4wOTk1MDkzOCwyLjQzMzYwODg3ZS0xMyA5LjEzODc1MjQ1LDIuNDMzNjA4ODdlLTEzIFoiIGlkPSJwYXRoLTEiPjwvcGF0aD4gICAgPC9kZWZzPiAgICA8ZyBpZD0iU2VhcmNoIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4gICAgICAgIDxtYXNrIGlkPSJtYXNrLTIiIGZpbGw9IndoaXRlIj4gICAgICAgICAgICA8dXNlIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICAgICAgPC9tYXNrPiAgICAgICAgPHVzZSBpZD0iSWNvbnMvQWN0aW9ucy9TZWFyY2giIGZpbGw9IiM0OTRBNTIiIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICA8L2c+PC9zdmc+);
    background-size: cover;
    height: 25px;
    width: 25px;
  }

  .header__search--toggle:after {
    content: "Search";
  }

  .header__close--toggle {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjE5cHgiIHZpZXdCb3g9IjAgMCAyNCAxOSIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5jbG9zZTwvdGl0bGU+ICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPiAgICA8ZyBpZD0iY2xvc2UiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPiAgICAgICAgPGcgaWQ9Ikdyb3VwIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgyLjAwMDAwMCwgLTEuMDAwMDAwKSIgc3Ryb2tlPSIjNDk0QTUyIiBzdHJva2Utd2lkdGg9IjMiPiAgICAgICAgICAgIDxyZWN0IGlkPSJSZWN0YW5nbGUiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDEwLjAwMDAwMCwgMTAuNTAwMDAwKSByb3RhdGUoLTQ1LjAwMDAwMCkgdHJhbnNsYXRlKC0xMC4wMDAwMDAsIC0xMC41MDAwMDApICIgeD0iLTAuNSIgeT0iMTAuNSIgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHJ4PSIwLjUiPjwvcmVjdD4gICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlLUNvcHktNSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTAuMDAwMDAwLCAxMC41MDAwMDApIHJvdGF0ZSg0NS4wMDAwMDApIHRyYW5zbGF0ZSgtMTAuMDAwMDAwLCAtMTAuNTAwMDAwKSAiIHg9Ii0wLjUiIHk9IjEwLjUiIHdpZHRoPSIyMSIgaGVpZ2h0PSIxIiByeD0iMC41Ij48L3JlY3Q+ICAgICAgICA8L2c+ICAgIDwvZz48L3N2Zz4=);
    background-repeat: no-repeat;
    background-size: 110%;
    display: none;
    height: 25px;
    margin-right: 0;
    width: 25px;
  }

  .header__close--toggle.show {
    display: block;
  }
}
.logo-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 20px 0;
    gap: 40px 0;
}

.logo-grid__img {
    display: flex;
    flex-basis: 15%;
    justify-content: center;
}

@media (max-width: 768px) {
    .logo-grid__img {
        flex-basis: 30%;
    }
}

@media (max-width: 480px) {
    .logo-grid__img {
        flex-basis: 45%;
    }
}
.message {
    border: 1px solid rgba(0, 0, 0, 0.1);
    display: inline-flex;
    justify-content: flex-start;
    padding: 10px;
    position: relative;
    gap: 12px;
}

.message--error {
    color: var(--error);
}

.message--success {
    color: var(--success);
}

.message--full {
    display: grid;
    grid-column: 1 / -1;
}
.pagination {
    display: flex;
}

.pagination__previous,
.pagination__next {
    display: none;
}

.pagination__select {
    flex-grow: 1;
}

.pagination__item {
    align-items: center;
    display: flex;
    justify-content: center;
}

.pagination__select .select {
    margin-bottom: 0;
    margin-left: 16px;
    margin-right: 16px;
}

@media (min-width: 767px) {
    .pagination__previous,
    .pagination__next {
        display: block;
    }
}
/* Missing Template at Path: \'entersekt-rawnet-theme\/css\/components\/_tag.css\' */
.video {
    cursor: pointer;
    display: block;
    position: relative;
    transition: background 0.3s;
}

.video__button {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

.video__button:before {
    background: var(--primary-color);
    border-radius: 50%;
    content: '';
    height: 70px;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: background 0.3s, transform 0.3s;
    width: 70px;
}

.video__button:after {
    border-color: transparent transparent transparent var(--white);
    border-style: solid;
    border-width: 9px 0 9px 15px;
    content: '';
    height: 0;
    left: 50%;
    margin-left: 2px;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: background 0.3s, transform 0.3s;
    width: 0;
    z-index: 99;
}

.video__img {
    display: block;
    margin: 0 auto;
}

.video__player {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

/* Settings
*/
/* Spacing */
:root {
    --site-width: 1600px;
    --container-width: 1408px;
    --container-padding: 48px;
}

/* 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;
  }
}
/* For content that needs to be visually hidden but stay visible for screenreaders */

.off-screen {
  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: 768px) {
  .off-screen--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;
  }
}
/* Stick to multiples of 4 */

.mr-16 {
    margin-right: 16px;
}

.mr-32 {
    margin-right: 32px;
}

.mb-8 {
    margin-bottom: 8px;
}

.mb-12 {
    margin-bottom: 12px;
}

.mb-32 {
    margin-bottom: 32px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mb-56 {
    margin-bottom: 56px;
}

.mb-80 {
    margin-bottom: 80px;
}

/* Forms
*/
/* Missing Template at Path: \'entersekt-rawnet-theme\/css\/form\/_form_base.css\' */
.checkbox {
    display: flex;
    gap: 10px;
}

.checkbox__input {
    accent-color: var(--check-color);
    cursor: pointer;
    flex-shrink: 0;
    height: var(--checkbox-size);
    width: var(--checkbox-size);
}

.checkbox__label {
    cursor: pointer;
}
.form {
    position: relative;
}

.form__item {
    margin-bottom: 20px;
}

.form .pristine-error {
    color: var(--form-error);
    font-size: 14px;
    margin-bottom: 10px;
}

.form .loading {
    align-items: center;
    background: rgba(255, 255, 255, 0.5);
    display: flex;
    height: 100%;
    justify-content: center;
    left: 0;
    pointer-events: none;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 10;
}

label.hs-error-msg {
    color: var(--form-error);
    font-size: 12px;
    margin-bottom: 10px;
    margin-top: 5px;
}
.rn-input, .hs-input {
    appearance: none;
    background: var(--white);
    border: none;
    border-bottom: 1px solid rgba(0, 12, 54, 0.2);
    color: var(--base-text-color);
    display: block;
    font-size: var(--base-font-size);
    line-height: var(--base-line-height);
    padding: 10px;
    transition: border-color var(--speed) ease, background var(--speed) ease;
    width: 100%;
}

select.hs-input {
    background-image: url();
    background-position: calc(100% - 15px) 50%;
    background-repeat: no-repeat;
    background-size: 20px 20px;
}

.rn-input:hover, .hs-input:hover {
    background-color: rgba(0, 123, 255, 0.1);
}

.rn-input::-webkit-input-placeholder, .hs-input::-webkit-input-placeholder {
    color: rgba(51, 51, 51, 0.6);
}

.rn-input:-ms-input-placeholder, .hs-input:-ms-input-placeholder {
    color: rgba(51, 51, 51, 0.6);
}

.rn-input::placeholder, .hs-input::placeholder {
    color: rgba(51, 51, 51, 0.6);
}

.form__success .rn-input, .form__success .hs-input {
    border-color: var(--success);
}

.form__error .rn-input, .form__error .hs-input {
    border-color: var(--error);
}
.label, label {
    color: var(--base-text-color);
}

label .hs-form-required {
    color: var(--primary-color);
}
.radio {
    display: flex;
    gap: 10px;
}

.radio__input {
    accent-color: var(--outline);
    cursor: pointer;
    flex-shrink: 0;
    height: 24px;
    width: 24px;
}

.radio__label {
    cursor: pointer;
}
/* Custom Select
 * ──────────────────────────────────────────────
 * A reusable custom dropdown with an inset floating label.
 *
 * Markup:
 *   <div class="custom-select" data-behaviour="custom-select">
 *     <select class="custom-select__native" aria-label="…">
 *       <option value="">Choose…</option>
 *       <option value="x">X</option>
 *     </select>
 *     <div class="custom-select__display">
 *       <fieldset class="custom-select__fieldset">
 *         <legend class="custom-select__legend">Label</legend>
 *       </fieldset>
 *       <span class="custom-select__value">Choose…</span>
 *       <svg class="custom-select__arrow" …></svg>
 *     </div>
 *     <ul class="custom-select__dropdown" role="listbox">
 *       <li class="custom-select__option" role="option">…</li>
 *     </ul>
 *   </div>
 */

/* ── Container ── */

.custom-select {
    position: relative;
    width: 100%;
}

/* ── Native select (visible by default, hidden after JS enhancement) ── */

.custom-select__native {
    background: var(--primary, #191f3e);
    border: 1px solid var(--accent-color-1, #29a64d);
    border-radius: 8px;
    color: var(--white, #fff);
    font-family: var(--base-font-family);
    font-size: var(--base-font-size, 17px);
    padding: 20px 16px;
    width: 100%;
}

.custom-select--enhanced .custom-select__native {
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    height: 1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    width: 1px;
}

/* ── Display trigger (only visible after JS enhancement) ── */

.custom-select__display {
    align-items: center;
    cursor: pointer;
    display: none;
    justify-content: space-between;
    padding: 20px 16px 20px;
    position: relative;
}

.custom-select--enhanced .custom-select__display {
    display: flex;
}

/* ── Fieldset border with inset label gap ── */

.custom-select__fieldset {
    border: 1px solid var(--accent-color-1, #29a64d);
    border-radius: 8px;
    bottom: 0;
    left: 0;
    margin: 0;
    padding: 0 8px;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: -8px;
}

.custom-select__legend {
    color: var(--white, #fff);
    float: unset;
    font-family: var(--base-font-family);
    font-size: var(--small-body-size, 13px);
    font-weight: normal;
    line-height: 20px;
    padding: 0 4px;
    width: auto;
}

/* ── Selected value ── */

.custom-select__value {
    color: var(--white, #fff);
    font-family: var(--base-font-family);
    font-size: var(--base-font-size, 17px);
    line-height: 1.5;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.custom-select__value--placeholder {
    opacity: 0.6;
}

/* ── Arrow icon ── */

.custom-select__arrow {
    flex-shrink: 0;
    height: 24px;
    margin-left: 8px;
    transition: transform var(--speed, 0.2s) ease;
    width: 24px;
}

.custom-select--open .custom-select__arrow {
    transform: rotate(180deg);
}

/* ── Dropdown list ── */

.custom-select__dropdown {
    background: var(--primary, #191f3e);
    border: 1px solid var(--accent-color-1, #29a64d);
    border-radius: 8px;
    display: none;
    left: 0;
    list-style: none;
    margin: 4px 0 0;
    max-height: 240px;
    overflow-y: auto;
    padding: 4px 0;
    position: absolute;
    right: 0;
    top: 100%;
    z-index: 50;
}

.custom-select--open .custom-select__dropdown {
    display: block;
}

/* ── Options ── */

.custom-select__option {
    color: var(--white, #fff);
    cursor: pointer;
    font-family: var(--base-font-family);
    font-size: var(--base-font-size, 17px);
    line-height: 1.5;
    padding: 10px 16px;
    transition: background var(--speed, 0.2s) ease;
}

.custom-select__option:hover,
.custom-select__option:focus-visible,
.custom-select__option--active {
    background: rgba(41, 166, 77, 0.15);
}

.custom-select__option[aria-selected="true"] {
    background: rgba(41, 166, 77, 0.25);
}

/* ── Focus state ── */

.custom-select__display:focus-visible .custom-select__fieldset,
.custom-select--open .custom-select__fieldset {
    border-color: var(--accent-color-3, #79ffd3);
    outline: none;
}
.textarea {
    appearance: none;
    background: var(--white);
    border: 2px solid var(--black);
    border-radius: var(--input-border-radius);
    color: var(--base-text-color);
    display: block;
    font-size: var(--base-font-size);
    line-height: var(--base-line-height);
    min-height: 100px;
    padding: 10px;
    resize: vertical;
    transition: border-color var(--speed) ease;
    width: 100%;
}

.textarea::-webkit-input-placeholder {
    color: rgba(51, 51, 51, 0.6);
}

.textarea:-ms-input-placeholder {
    color: rgba(51, 51, 51, 0.6);
}

.textarea::placeholder {
    color: rgba(51, 51, 51, 0.6);
}

.textarea:active,
.textarea:focus {
    border-color: var(--black);
    box-shadow: none;
    outline: none;
}

.form__success .textarea {
    border-bottom-color: var(--success);
}

.form__error .textarea {
    border-bottom-color: var(--error);
}
.toggle {
    --border-radius: 23px;
    display: inline-block;
    position: relative;
}

.toggle__input {
    opacity: 0;
    position: absolute;
}

.toggle__input:hover + .toggle__label::after {
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
}

.toggle__input[disabled] + .toggle__label {
    filter: grayscale(1);
    opacity: 0.7;
    pointer-events: none;
}

.toggle__input:checked + .toggle__label::before {
    background: var(--outline);
    opacity: 1;
}

.toggle__input:checked + .toggle__label::after {
    transform: translateX(0);
}

.toggle__label {
    align-items: center;
    color: var(--base-text-color);
    cursor: pointer;
    display: flex;
    font-size: var(--base-font-size);
    height: 32px;
    padding-right: calc(51px + 10px);
    position: relative;
    user-select: none;
}

.toggle__label::before {
    background: var(--outline);
    border-radius: var(--border-radius);
    content: '';
    height: 32px;
    opacity: 0.1;
    position: absolute;
    right: 0;
    top: 0;
    transition: opacity var(--speed);
    width: 51px;
}

.toggle__label::after {
    background: var(--white);
    border-radius: 50%;
    content: '';
    height: 26px;
    position: absolute;
    right:  calc((32px - 26px) / 2);
    top:  calc((32px - 26px) / 2);
    transform: translateX(-18px);
    transition: box-shadow var(--speed), transform var(--speed);
    width: 26px;
}