/* Theme base styles */

/* Tools
Any animations, or functions used throughout the project.
Note: _macros.css needs to be imported into each stylesheet where macros are used and not included here
*/

/* Generic
This is where reset, normalize & box-sizing styles go.
*/

*, *:before, *:after {
  box-sizing: border-box;
}
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

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

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

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

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

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

body {
  margin: 0;
}

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

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

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

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

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

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

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

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

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

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

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

b,
strong {
  font-weight: bolder;
}

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

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

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

small {
  font-size: 80%;
}

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

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

legend {
  padding: 0;
}

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

progress {
  vertical-align: baseline;
}

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

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

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

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

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

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

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

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

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

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

details {
  display: block;
}

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

summary {
  display: list-item;
}

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



/* CSS variables */

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

/* Mobile layout */

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


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

/* Desktop layout */

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

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

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

.hs-form-field {
  margin-bottom: 1.4rem;
}

/* Labels */

form label {
  display: block;
  font-size: 0.875rem;
  margin-bottom: 0.35rem;
}

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

/* Help text */

form legend {
  font-size: 0.875rem;
}

/* Inputs */

form input[type=text],
form input[type=search],
form input[type=email],
form input[type=password],
form input[type=tel],
form input[type=number],
form input[type=file],
form select,
form textarea {
  display: inline-block;
  font-size: 0.875rem;
  padding: 0.7rem;
  width: 100%;
}

form textarea {
  resize: vertical;
}

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

/* Inputs - checkbox/radio */

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

form .inputs-list > li {
  display: block;
  margin: 0.7rem 0;
}

form .inputs-list input,
form .inputs-list span {
  vertical-align: middle;
}

form input[type=checkbox],
form input[type=radio] {
  cursor: pointer;
  margin-right: 0.35rem;
}

/* Inputs - date picker */

.hs-dateinput {
  position: relative;
}

.hs-dateinput:before {
  content:'\01F4C5';
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
}

.fn-date-picker .pika-table thead th {
  color: #FFF;
}

.fn-date-picker td.is-selected .pika-button {
  border-radius: 0;
  box-shadow: none;
}

.fn-date-picker td .pika-button:hover,
.fn-date-picker td .pika-button:focus {
  border-radius: 0 !important;
  color: #FFF;
}

/* Inputs - file picker */

form input[type=file] {
  background-color: transparent;
  border: initial;
  padding: initial;
}

/* Headings and text */

form .hs-richtext,
form .hs-richtext p {
  font-size: 0.875rem;
  margin: 0 0 1.4rem;
}

form .hs-richtext img {
  max-width: 100% !important;
}

/* GDPR */

.legal-consent-container .hs-form-booleancheckbox-display > span,
.legal-consent-container .hs-form-booleancheckbox-display > span p {
  margin-left: 1rem !important;
}

/* Validation */

.hs-form-required {
  color: #EF6B51;
}

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

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

/* Submit button */

form input[type=submit],
form .hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

/* Captcha */

.grecaptcha-badge {
  margin: 0 auto;
}

*/
/*/* Table */

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

/* Table cells */

td,
th {
  vertical-align: top;
}

/* Table header */

thead th {
  vertical-align: bottom;
}*/

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

/*/* Header 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;
  }
}*/
/*/* Menu and simple menu */

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

/* Horizontal menu */

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

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

/* Vertical menu */

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

/* Flyouts */

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

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

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

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

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

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

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

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

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

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

/* Utilities
Helper classes with ability to override anything that comes before it
*/

/* For content that needs to be visually hidden but stay visible for screenreaders */

.show-for-sr {
  border: 0 !important;
  clip: rect(0, 0, 0, 0) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
}

@media (max-width: 767px) {
  .show-for-sr--mobile {
    border: 0 !important;
    clip: rect(0, 0, 0, 0) !important;
    height: 1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    white-space: nowrap !important;
    width: 1px !important;
  }
}

@font-face {
    font-family: 'webflow-icons';
    src: url("data:application/x-font-ttf;charset=utf-8;base64,AAEAAAALAIAAAwAwT1MvMg8SBiUAAAC8AAAAYGNtYXDpP+a4AAABHAAAAFxnYXNwAAAAEAAAAXgAAAAIZ2x5ZmhS2XEAAAGAAAADHGhlYWQTFw3HAAAEnAAAADZoaGVhCXYFgQAABNQAAAAkaG10eCe4A1oAAAT4AAAAMGxvY2EDtALGAAAFKAAAABptYXhwABAAPgAABUQAAAAgbmFtZSoCsMsAAAVkAAABznBvc3QAAwAAAAAHNAAAACAAAwP4AZAABQAAApkCzAAAAI8CmQLMAAAB6wAzAQkAAAAAAAAAAAAAAAAAAAABEAAAAAAAAAAAAAAAAAAAAABAAADpAwPA/8AAQAPAAEAAAAABAAAAAAAAAAAAAAAgAAAAAAADAAAAAwAAABwAAQADAAAAHAADAAEAAAAcAAQAQAAAAAwACAACAAQAAQAg5gPpA//9//8AAAAAACDmAOkA//3//wAB/+MaBBcIAAMAAQAAAAAAAAAAAAAAAAABAAH//wAPAAEAAAAAAAAAAAACAAA3OQEAAAAAAQAAAAAAAAAAAAIAADc5AQAAAAABAAAAAAAAAAAAAgAANzkBAAAAAAEBIAAAAyADgAAFAAAJAQcJARcDIP5AQAGA/oBAAcABwED+gP6AQAABAOAAAALgA4AABQAAEwEXCQEH4AHAQP6AAYBAAcABwED+gP6AQAAAAwDAAOADQALAAA8AHwAvAAABISIGHQEUFjMhMjY9ATQmByEiBh0BFBYzITI2PQE0JgchIgYdARQWMyEyNj0BNCYDIP3ADRMTDQJADRMTDf3ADRMTDQJADRMTDf3ADRMTDQJADRMTAsATDSANExMNIA0TwBMNIA0TEw0gDRPAEw0gDRMTDSANEwAAAAABAJ0AtAOBApUABQAACQIHCQEDJP7r/upcAXEBcgKU/usBFVz+fAGEAAAAAAL//f+9BAMDwwAEAAkAABcBJwEXAwE3AQdpA5ps/GZsbAOabPxmbEMDmmz8ZmwDmvxmbAOabAAAAgAA/8AEAAPAAB0AOwAABSInLgEnJjU0Nz4BNzYzMTIXHgEXFhUUBw4BBwYjNTI3PgE3NjU0Jy4BJyYjMSIHDgEHBhUUFx4BFxYzAgBqXV6LKCgoKIteXWpqXV6LKCgoKIteXWpVSktvICEhIG9LSlVVSktvICEhIG9LSlVAKCiLXl1qal1eiygoKCiLXl1qal1eiygoZiEgb0tKVVVKS28gISEgb0tKVVVKS28gIQABAAABwAIAA8AAEgAAEzQ3PgE3NjMxFSIHDgEHBhUxIwAoKIteXWpVSktvICFmAcBqXV6LKChmISBvS0pVAAAAAgAA/8AFtgPAADIAOgAAARYXHgEXFhUUBw4BBwYHIxUhIicuAScmNTQ3PgE3NjMxOAExNDc+ATc2MzIXHgEXFhcVATMJATMVMzUEjD83NlAXFxYXTjU1PQL8kz01Nk8XFxcXTzY1PSIjd1BQWlJJSXInJw3+mdv+2/7c25MCUQYcHFg5OUA/ODlXHBwIAhcXTzY1PTw1Nk8XF1tQUHcjIhwcYUNDTgL+3QFt/pOTkwABAAAAAQAAmM7nP18PPPUACwQAAAAAANciZKUAAAAA1yJkpf/9/70FtgPDAAAACAACAAAAAAAAAAEAAAPA/8AAAAW3//3//QW2AAEAAAAAAAAAAAAAAAAAAAAMBAAAAAAAAAAAAAAAAgAAAAQAASAEAADgBAAAwAQAAJ0EAP/9BAAAAAQAAAAFtwAAAAAAAAAKABQAHgAyAEYAjACiAL4BFgE2AY4AAAABAAAADAA8AAMAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAADgCuAAEAAAAAAAEADQAAAAEAAAAAAAIABwCWAAEAAAAAAAMADQBIAAEAAAAAAAQADQCrAAEAAAAAAAUACwAnAAEAAAAAAAYADQBvAAEAAAAAAAoAGgDSAAMAAQQJAAEAGgANAAMAAQQJAAIADgCdAAMAAQQJAAMAGgBVAAMAAQQJAAQAGgC4AAMAAQQJAAUAFgAyAAMAAQQJAAYAGgB8AAMAAQQJAAoANADsd2ViZmxvdy1pY29ucwB3AGUAYgBmAGwAbwB3AC0AaQBjAG8AbgBzVmVyc2lvbiAxLjAAVgBlAHIAcwBpAG8AbgAgADEALgAwd2ViZmxvdy1pY29ucwB3AGUAYgBmAGwAbwB3AC0AaQBjAG8AbgBzd2ViZmxvdy1pY29ucwB3AGUAYgBmAGwAbwB3AC0AaQBjAG8AbgBzUmVndWxhcgBSAGUAZwB1AGwAYQByd2ViZmxvdy1pY29ucwB3AGUAYgBmAGwAbwB3AC0AaQBjAG8AbgBzRm9udCBnZW5lcmF0ZWQgYnkgSWNvTW9vbi4ARgBvAG4AdAAgAGcAZQBuAGUAcgBhAHQAZQBkACAAYgB5ACAASQBjAG8ATQBvAG8AbgAuAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==") format('truetype');
    font-weight: normal;
    font-style: normal;
}
[class^="w-icon-"],
[class*=" w-icon-"] {
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: 'webflow-icons' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.w-icon-slider-right:before {
    content: "\e600";
}
.w-icon-slider-left:before {
    content: "\e601";
}
.w-icon-nav-menu:before {
    content: "\e602";
}
.w-icon-arrow-down:before,
.w-icon-dropdown-toggle:before {
    content: "\e603";
}
.w-icon-file-upload-remove:before {
    content: "\e900";
}
.w-icon-file-upload-icon:before {
    content: "\e903";
}
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
html {
    height: 100%;
}
body {
    margin: 0;
    min-height: 100%;
    background-color: #fff;
    font-family: Outfit, sans-serif;
    font-size: 12px;
    line-height: 20px;
    color: #333;
}
img {
    max-width: 100%;
    vertical-align: middle;
    display: inline-block;
}
html.w-mod-touch * {
    background-attachment: scroll !important;
}
.w-block {
    display: block;
}
.w-inline-block {
    max-width: 100%;
    display: inline-block;
}
.w-clearfix:before,
.w-clearfix:after {
    content: " ";
    display: table;
    grid-column-start: 1;
    grid-row-start: 1;
    grid-column-end: 2;
    grid-row-end: 2;
}
.w-clearfix:after {
    clear: both;
}
.w-hidden {
    display: none;
}
.w-button {
    display: inline-block;
    padding: 9px 15px;
    background-color: #3898EC;
    color: white;
    border: 0;
    line-height: inherit;
    text-decoration: none;
    cursor: pointer;
    border-radius: 0;
}
input.w-button {
    -webkit-appearance: button;
}
html[data-w-dynpage] [data-w-cloak] {
    color: transparent !important;
}
.w-code-block {
    margin: unset;
}
pre.w-code-block code {
    all: inherit;
}
.w-optimization {
    display: contents;
}
.w-webflow-badge,
.w-webflow-badge > img {
    box-sizing: unset;
    width: unset;
    height: unset;
    max-height: unset;
    max-width: unset;
    min-height: unset;
    min-width: unset;
    margin: unset;
    padding: unset;
    float: unset;
    clear: unset;
    border: unset;
    border-radius: unset;
    background: unset;
    background-image: unset;
    background-position: unset;
    background-size: unset;
    background-repeat: unset;
    background-origin: unset;
    background-clip: unset;
    background-attachment: unset;
    background-color: unset;
    box-shadow: unset;
    transform: unset;
    transition: unset;
    direction: unset;
    font-family: unset;
    font-weight: unset;
    color: unset;
    font-size: unset;
    line-height: unset;
    font-style: unset;
    font-variant: unset;
    text-align: unset;
    letter-spacing: unset;
    text-decoration: unset;
    text-indent: unset;
    text-transform: unset;
    list-style-type: unset;
    text-shadow: unset;
    vertical-align: unset;
    cursor: unset;
    white-space: unset;
    word-break: unset;
    word-spacing: unset;
    word-wrap: unset;
}
.w-webflow-badge {
    position: fixed !important;
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 2147483647 !important;
    top: auto !important;
    right: 12px !important;
    bottom: 12px !important;
    left: auto !important;
    color: #aaadb0 !important;
    background-color: #fff !important;
    border-radius: 3px !important;
    padding: 6px !important;
    font-size: 12px !important;
    line-height: 14px !important;
    text-decoration: none !important;
    transform: none !important;
    margin: 0 !important;
    width: auto !important;
    height: auto !important;
    overflow: unset !important;
    white-space: nowrap;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 0px 1px 3px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}
.w-webflow-badge > img {
    position: unset;
    display: inline-block !important;
    visibility: unset !important;
    opacity: 1 !important;
    vertical-align: middle !important;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: bold;
    margin-bottom: 10px;
}
h1 {
    font-size: 38px;
    line-height: 44px;
    margin-top: 20px;
}
h2 {
    font-size: 32px;
    line-height: 36px;
    margin-top: 20px;
}
h3 {
    font-size: 24px;
    line-height: 30px;
    margin-top: 20px;
}
h4 {
    font-size: 18px;
    line-height: 24px;
    margin-top: 10px;
}
h5 {
    font-size: 14px;
    line-height: 20px;
    margin-top: 10px;
}
h6 {
    font-size: 12px;
    line-height: 18px;
    margin-top: 10px;
}
p {
    margin-top: 0;
    margin-bottom: 10px;
}
blockquote {
    margin: 0 0 10px 0;
    padding: 10px 20px;
    border-left: 5px solid #E2E2E2;
    font-size: 18px;
    line-height: 22px;
}
figure {
    margin: 0;
    margin-bottom: 10px;
}
figcaption {
    margin-top: 5px;
    text-align: center;
}
ul,
ol {
    margin-top: 0px;
    margin-bottom: 10px;
    padding-left: 40px;
}
.w-list-unstyled {
    padding-left: 0;
    list-style: none;
}
.w-embed:before,
.w-embed:after {
    content: " ";
    display: table;
    grid-column-start: 1;
    grid-row-start: 1;
    grid-column-end: 2;
    grid-row-end: 2;
}
.w-embed:after {
    clear: both;
}
.w-video {
    width: 100%;
    position: relative;
    padding: 0;
}
.w-video iframe,
.w-video object,
.w-video embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}
fieldset {
    padding: 0;
    margin: 0;
    border: 0;
}
button,
[type='button'],
[type='reset'] {
    border: 0;
    cursor: pointer;
    -webkit-appearance: button;
}
.w-form {
    margin: 0 0 15px;
}
.w-form-done {
    display: none;
    padding: 20px;
    text-align: center;
    background-color: #dddddd;
}
.w-form-fail {
    display: none;
    margin-top: 10px;
    padding: 10px;
    background-color: #ffdede;
}
label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}
.w-input,
.w-select {
    display: block;
    width: 100%;
    height: 38px;
    padding: 8px 12px;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #333333;
    vertical-align: middle;
    background-color: #ffffff;
    border: 1px solid #cccccc;
}
.w-input::placeholder,
.w-select::placeholder {
    color: #999;
}
.w-input:focus,
.w-select:focus {
    border-color: #3898EC;
    outline: 0;
}
.w-input[disabled],
.w-select[disabled],
.w-input[readonly],
.w-select[readonly],
fieldset[disabled] .w-input,
fieldset[disabled] .w-select {
    cursor: not-allowed;
}
.w-input[disabled]:not(.w-input-disabled),
.w-select[disabled]:not(.w-input-disabled),
.w-input[readonly],
.w-select[readonly],
fieldset[disabled]:not(.w-input-disabled) .w-input,
fieldset[disabled]:not(.w-input-disabled) .w-select {
    background-color: #eeeeee;
}
textarea.w-input,
textarea.w-select {
    height: auto;
}
.w-select {
    background-color: #f3f3f3;
}
.w-select[multiple] {
    height: auto;
}
.w-form-label {
    display: inline-block;
    cursor: pointer;
    font-weight: normal;
    margin-bottom: 0px;
}
.w-radio {
    display: block;
    margin-bottom: 5px;
    padding-left: 20px;
}
.w-radio:before,
.w-radio:after {
    content: " ";
    display: table;
    grid-column-start: 1;
    grid-row-start: 1;
    grid-column-end: 2;
    grid-row-end: 2;
}
.w-radio:after {
    clear: both;
}
.w-radio-input {
    margin: 4px 0 0;
    line-height: normal;
    float: left;
    margin-left: -20px;
}
.w-radio-input {
    margin-top: 3px;
}
.w-file-upload {
    display: block;
    margin-bottom: 10px;
}
.w-file-upload-input {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -100;
}
.w-file-upload-default,
.w-file-upload-uploading,
.w-file-upload-success {
    display: inline-block;
    color: #333333;
}
.w-file-upload-error {
    display: block;
    margin-top: 10px;
}
.w-file-upload-default.w-hidden,
.w-file-upload-uploading.w-hidden,
.w-file-upload-error.w-hidden,
.w-file-upload-success.w-hidden {
    display: none;
}
.w-file-upload-uploading-btn {
    display: flex;
    font-size: 14px;
    font-weight: normal;
    cursor: pointer;
    margin: 0;
    padding: 8px 12px;
    border: 1px solid #cccccc;
    background-color: #fafafa;
}
.w-file-upload-file {
    display: flex;
    flex-grow: 1;
    justify-content: space-between;
    margin: 0;
    padding: 8px 9px 8px 11px;
    border: 1px solid #cccccc;
    background-color: #fafafa;
}
.w-file-upload-file-name {
    font-size: 14px;
    font-weight: normal;
    display: block;
}
.w-file-remove-link {
    margin-top: 3px;
    margin-left: 10px;
    width: auto;
    height: auto;
    padding: 3px;
    display: block;
    cursor: pointer;
}
.w-icon-file-upload-remove {
    margin: auto;
    font-size: 10px;
}
.w-file-upload-error-msg {
    display: inline-block;
    color: #ea384c;
    padding: 2px 0;
}
.w-file-upload-info {
    display: inline-block;
    line-height: 38px;
    padding: 0 12px;
}
.w-file-upload-label {
    display: inline-block;
    font-size: 14px;
    font-weight: normal;
    cursor: pointer;
    margin: 0;
    padding: 8px 12px;
    border: 1px solid #cccccc;
    background-color: #fafafa;
}
.w-icon-file-upload-icon,
.w-icon-file-upload-uploading {
    display: inline-block;
    margin-right: 8px;
    width: 20px;
}
.w-icon-file-upload-uploading {
    height: 20px;
}
.w-container {
    margin-left: auto;
    margin-right: auto;
    max-width: 940px;
}
.w-container:before,
.w-container:after {
    content: " ";
    display: table;
    grid-column-start: 1;
    grid-row-start: 1;
    grid-column-end: 2;
    grid-row-end: 2;
}
.w-container:after {
    clear: both;
}
.w-container .w-row {
    margin-left: -10px;
    margin-right: -10px;
}
.w-row:before,
.w-row:after {
    content: " ";
    display: table;
    grid-column-start: 1;
    grid-row-start: 1;
    grid-column-end: 2;
    grid-row-end: 2;
}
.w-row:after {
    clear: both;
}
.w-row .w-row {
    margin-left: 0;
    margin-right: 0;
}
.w-col {
    position: relative;
    float: left;
    width: 100%;
    min-height: 1px;
    padding-left: 10px;
    padding-right: 10px;
}
.w-col .w-col {
    padding-left: 0;
    padding-right: 0;
}
.w-col-1 {
    width: 8.33333333%;
}
.w-col-2 {
    width: 16.66666667%;
}
.w-col-3 {
    width: 25%;
}
.w-col-4 {
    width: 33.33333333%;
}
.w-col-5 {
    width: 41.66666667%;
}
.w-col-6 {
    width: 50%;
}
.w-col-7 {
    width: 58.33333333%;
}
.w-col-8 {
    width: 66.66666667%;
}
.w-col-9 {
    width: 75%;
}
.w-col-10 {
    width: 83.33333333%;
}
.w-col-11 {
    width: 91.66666667%;
}
.w-col-12 {
    width: 100%;
}
.w-hidden-main {
    display: none !important;
}
@media screen and (max-width: 991px) {
    .w-container {
        max-width: 728px;
    }
    .w-hidden-main {
        display: inherit !important;
    }
    .w-hidden-medium {
        display: none !important;
    }
    .w-col-medium-1 {
        width: 8.33333333%;
    }
    .w-col-medium-2 {
        width: 16.66666667%;
    }
    .w-col-medium-3 {
        width: 25%;
    }
    .w-col-medium-4 {
        width: 33.33333333%;
    }
    .w-col-medium-5 {
        width: 41.66666667%;
    }
    .w-col-medium-6 {
        width: 50%;
    }
    .w-col-medium-7 {
        width: 58.33333333%;
    }
    .w-col-medium-8 {
        width: 66.66666667%;
    }
    .w-col-medium-9 {
        width: 75%;
    }
    .w-col-medium-10 {
        width: 83.33333333%;
    }
    .w-col-medium-11 {
        width: 91.66666667%;
    }
    .w-col-medium-12 {
        width: 100%;
    }
    .w-col-stack {
        width: 100%;
        left: auto;
        right: auto;
    }
}
@media screen and (max-width: 767px) {
    .w-hidden-main {
        display: inherit !important;
    }
    .w-hidden-medium {
        display: inherit !important;
    }
    .w-hidden-small {
        display: none !important;
    }
    .w-row,
    .w-container .w-row {
        margin-left: 0;
        margin-right: 0;
    }
    .w-col {
        width: 100%;
        left: auto;
        right: auto;
    }
    .w-col-small-1 {
        width: 8.33333333%;
    }
    .w-col-small-2 {
        width: 16.66666667%;
    }
    .w-col-small-3 {
        width: 25%;
    }
    .w-col-small-4 {
        width: 33.33333333%;
    }
    .w-col-small-5 {
        width: 41.66666667%;
    }
    .w-col-small-6 {
        width: 50%;
    }
    .w-col-small-7 {
        width: 58.33333333%;
    }
    .w-col-small-8 {
        width: 66.66666667%;
    }
    .w-col-small-9 {
        width: 75%;
    }
    .w-col-small-10 {
        width: 83.33333333%;
    }
    .w-col-small-11 {
        width: 91.66666667%;
    }
    .w-col-small-12 {
        width: 100%;
    }
}
@media screen and (max-width: 479px) {
    .w-container {
        max-width: none;
    }
    .w-hidden-main {
        display: inherit !important;
    }
    .w-hidden-medium {
        display: inherit !important;
    }
    .w-hidden-small {
        display: inherit !important;
    }
    .w-hidden-tiny {
        display: none !important;
    }
    .w-col {
        width: 100%;
    }
    .w-col-tiny-1 {
        width: 8.33333333%;
    }
    .w-col-tiny-2 {
        width: 16.66666667%;
    }
    .w-col-tiny-3 {
        width: 25%;
    }
    .w-col-tiny-4 {
        width: 33.33333333%;
    }
    .w-col-tiny-5 {
        width: 41.66666667%;
    }
    .w-col-tiny-6 {
        width: 50%;
    }
    .w-col-tiny-7 {
        width: 58.33333333%;
    }
    .w-col-tiny-8 {
        width: 66.66666667%;
    }
    .w-col-tiny-9 {
        width: 75%;
    }
    .w-col-tiny-10 {
        width: 83.33333333%;
    }
    .w-col-tiny-11 {
        width: 91.66666667%;
    }
    .w-col-tiny-12 {
        width: 100%;
    }
}
.w-widget {
    position: relative;
}
.w-widget-map {
    width: 100%;
    height: 400px;
}
.w-widget-map label {
    width: auto;
    display: inline;
}
.w-widget-map img {
    max-width: inherit;
}
.w-widget-map .gm-style-iw {
    text-align: center;
}
.w-widget-map .gm-style-iw > button {
    display: none !important;
}
.w-widget-twitter {
    overflow: hidden;
}
.w-widget-twitter-count-shim {
    display: inline-block;
    vertical-align: top;
    position: relative;
    width: 28px;
    height: 20px;
    text-align: center;
    background: white;
    border: #758696 solid 1px;
    border-radius: 3px;
}
.w-widget-twitter-count-shim * {
    pointer-events: none;
    user-select: none;
}
.w-widget-twitter-count-shim .w-widget-twitter-count-inner {
    position: relative;
    font-size: 15px;
    line-height: 12px;
    text-align: center;
    color: #999;
    font-family: serif;
}
.w-widget-twitter-count-shim .w-widget-twitter-count-clear {
    position: relative;
    display: block;
}
.w-widget-twitter-count-shim.w--large {
    width: 36px;
    height: 28px;
}
.w-widget-twitter-count-shim.w--large .w-widget-twitter-count-inner {
    font-size: 18px;
    line-height: 18px;
}
.w-widget-twitter-count-shim:not(.w--vertical) {
    margin-left: 5px;
    margin-right: 8px;
}
.w-widget-twitter-count-shim:not(.w--vertical).w--large {
    margin-left: 6px;
}
.w-widget-twitter-count-shim:not(.w--vertical):before,
.w-widget-twitter-count-shim:not(.w--vertical):after {
    top: 50%;
    left: 0;
    border: solid transparent;
    content: ' ';
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
}
.w-widget-twitter-count-shim:not(.w--vertical):before {
    border-color: rgba(117, 134, 150, 0);
    border-right-color: #5d6c7b;
    border-width: 4px;
    margin-left: -9px;
    margin-top: -4px;
}
.w-widget-twitter-count-shim:not(.w--vertical).w--large:before {
    border-width: 5px;
    margin-left: -10px;
    margin-top: -5px;
}
.w-widget-twitter-count-shim:not(.w--vertical):after {
    border-color: rgba(255, 255, 255, 0);
    border-right-color: white;
    border-width: 4px;
    margin-left: -8px;
    margin-top: -4px;
}
.w-widget-twitter-count-shim:not(.w--vertical).w--large:after {
    border-width: 5px;
    margin-left: -9px;
    margin-top: -5px;
}
.w-widget-twitter-count-shim.w--vertical {
    width: 61px;
    height: 33px;
    margin-bottom: 8px;
}
.w-widget-twitter-count-shim.w--vertical:before,
.w-widget-twitter-count-shim.w--vertical:after {
    top: 100%;
    left: 50%;
    border: solid transparent;
    content: ' ';
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
}
.w-widget-twitter-count-shim.w--vertical:before {
    border-color: rgba(117, 134, 150, 0);
    border-top-color: #5d6c7b;
    border-width: 5px;
    margin-left: -5px;
}
.w-widget-twitter-count-shim.w--vertical:after {
    border-color: rgba(255, 255, 255, 0);
    border-top-color: white;
    border-width: 4px;
    margin-left: -4px;
}
.w-widget-twitter-count-shim.w--vertical .w-widget-twitter-count-inner {
    font-size: 18px;
    line-height: 22px;
}
.w-widget-twitter-count-shim.w--vertical.w--large {
    width: 76px;
}
.w-background-video {
    position: relative;
    overflow: hidden;
    height: 500px;
    color: white;
}
.w-background-video > video {
    background-size: cover;
    background-position: 50% 50%;
    position: absolute;
    margin: auto;
    width: 100%;
    height: 100%;
    right: -100%;
    bottom: -100%;
    top: -100%;
    left: -100%;
    object-fit: cover;
    z-index: -100;
    border-radius: 8px;
}
.w-background-video > video::-webkit-media-controls-start-playback-button {
    display: none !important;
    -webkit-appearance: none;
}
.w-background-video--control {
    position: absolute;
    bottom: 1em;
    right: 1em;
    background-color: transparent;
    padding: 0;
}
.w-background-video--control > [hidden] {
    display: none !important;
}
.w-slider {
    position: relative;
    height: 300px;
    text-align: center;
    background: #dddddd;
    clear: both;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    tap-highlight-color: rgba(0, 0, 0, 0);
}
.w-slider-mask {
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 1;
    left: 0;
    right: 0;
    height: 100%;
    white-space: nowrap;
}
.w-slide {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: 100%;
    height: 100%;
    white-space: normal;
    text-align: left;
}
.w-slider-nav {
    position: absolute;
    z-index: 2;
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    padding-top: 10px;
    height: 40px;
    text-align: center;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    tap-highlight-color: rgba(0, 0, 0, 0);
}
.w-slider-nav.w-round > div {
    border-radius: 100%;
}
.w-slider-nav.w-num > div {
    width: auto;
    height: auto;
    padding: 0.2em 0.5em;
    font-size: inherit;
    line-height: inherit;
}
.w-slider-nav.w-shadow > div {
    box-shadow: 0 0 3px rgba(51, 51, 51, 0.4);
}
.w-slider-nav-invert {
    color: #fff;
}
.w-slider-nav-invert > div {
    background-color: rgba(34, 34, 34, 0.4);
}
.w-slider-nav-invert > div.w-active {
    background-color: #222;
}
.w-slider-dot {
    position: relative;
    display: inline-block;
    width: 1em;
    height: 1em;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    margin: 0 3px 0.5em;
    transition: background-color 100ms, color 100ms;
}
.w-slider-dot.w-active {
    background-color: #fff;
}
.w-slider-dot:focus {
    outline: none;
    box-shadow: 0px 0px 0px 2px #fff;
}
.w-slider-dot:focus.w-active {
    box-shadow: none;
}
.w-slider-arrow-left,
.w-slider-arrow-right {
    position: absolute;
    width: 80px;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    cursor: pointer;
    overflow: hidden;
    color: white;
    font-size: 40px;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    tap-highlight-color: rgba(0, 0, 0, 0);
    user-select: none;
}
.w-slider-arrow-left [class^='w-icon-'],
.w-slider-arrow-right [class^='w-icon-'],
.w-slider-arrow-left [class*=' w-icon-'],
.w-slider-arrow-right [class*=' w-icon-'] {
    position: absolute;
}
.w-slider-arrow-left:focus,
.w-slider-arrow-right:focus {
    outline: 0;
}
.w-slider-arrow-left {
    z-index: 3;
    right: auto;
}
.w-slider-arrow-right {
    z-index: 4;
    left: auto;
}
.w-icon-slider-left,
.w-icon-slider-right {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 1em;
    height: 1em;
}
.w-slider-aria-label {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}
.w-slider-force-show {
    display: block !important;
}
.w-dropdown {
    display: inline-block;
    position: relative;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
    z-index: 900;
}
.w-dropdown-btn,
.w-dropdown-toggle,
.w-dropdown-link {
    position: relative;
    vertical-align: top;
    text-decoration: none;
    color: #222222;
    padding: 20px;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
    white-space: nowrap;
}
.w-dropdown-toggle {
    user-select: none;
    display: inline-block;
    cursor: pointer;
    padding-right: 40px;
}
.w-dropdown-toggle:focus {
    outline: 0;
}
.w-icon-dropdown-toggle {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    margin-right: 20px;
    width: 1em;
    height: 1em;
}
.w-dropdown-list {
    position: absolute;
    background: #dddddd;
    display: none;
    min-width: 100%;
}
.w-dropdown-list.w--open {
    display: block;
}
.w-dropdown-link {
    padding: 10px 20px;
    display: block;
    color: #222222;
}
.w-dropdown-link.w--current {
    color: #0082f3;
}
.w-dropdown-link:focus {
    outline: 0;
}
@media screen and (max-width: 767px) {
    .w-nav-brand {
        padding-left: 10px;
    }
}
/**
 * ## Note
 * Safari (on both iOS and OS X) does not handle viewport units (vh, vw) well.
 * For example percentage units do not work on descendants of elements that
 * have any dimensions expressed in viewport units. It also doesn’t handle them at
 * all in `calc()`.
 */
/**
 * Wrapper around all lightbox elements
 *
 * 1. Since the lightbox can receive focus, IE also gives it an outline.
 * 2. Fixes flickering on Chrome when a transition is in progress
 *    underneath the lightbox.
 */
.w-lightbox-backdrop {
    cursor: auto;
    font-style: normal;
    letter-spacing: normal;
    list-style: disc;
    text-indent: 0;
    text-shadow: none;
    text-transform: none;
    visibility: visible;
    white-space: normal;
    word-break: normal;
    word-spacing: normal;
    word-wrap: normal;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    color: #fff;
    font-family: "Helvetica Neue", Helvetica, Ubuntu, "Segoe UI", Verdana, sans-serif;
    font-size: 17px;
    line-height: 1.2;
    font-weight: 300;
    text-align: center;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    outline: 0;
    /* 1 */
    opacity: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-transform: translate(0, 0);
    /* 2 */
}
/**
 * Neat trick to bind the rubberband effect to our canvas instead of the whole
 * document on iOS. It also prevents a bug that causes the document underneath to scroll.
 */
.w-lightbox-backdrop,
.w-lightbox-container {
    height: 100%;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}
.w-lightbox-content {
    position: relative;
    height: 100vh;
    overflow: hidden;
}
.w-lightbox-view {
    position: absolute;
    width: 100vw;
    height: 100vh;
    opacity: 0;
}
.w-lightbox-view:before {
    content: "";
    height: 100vh;
}
/* .w-lightbox-content */
.w-lightbox-group,
.w-lightbox-group .w-lightbox-view,
.w-lightbox-group .w-lightbox-view:before {
    height: 86vh;
}
.w-lightbox-frame,
.w-lightbox-view:before {
    display: inline-block;
    vertical-align: middle;
}
/*
 * 1. Remove default margin set by user-agent on the <figure> element.
 */
.w-lightbox-figure {
    position: relative;
    margin: 0;
    /* 1 */
}
.w-lightbox-group .w-lightbox-figure {
    cursor: pointer;
}
/**
 * IE adds image dimensions as width and height attributes on the IMG tag,
 * but we need both width and height to be set to auto to enable scaling.
 */
.w-lightbox-img {
    width: auto;
    height: auto;
    max-width: none;
}
/**
 * 1. Reset if style is set by user on "All Images"
 */
.w-lightbox-image {
    display: block;
    float: none;
    /* 1 */
    max-width: 100vw;
    max-height: 100vh;
}
.w-lightbox-group .w-lightbox-image {
    max-height: 86vh;
}
.w-lightbox-caption {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 0.5em 1em;
    background: rgba(0, 0, 0, 0.4);
    text-align: left;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
.w-lightbox-embed {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.w-lightbox-control {
    position: absolute;
    top: 0;
    width: 4em;
    background-size: 24px;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
.w-lightbox-left {
    display: none;
    bottom: 0;
    left: 0;
    /* <svg xmlns="http://www.w3.org/2000/svg" viewBox="-20 0 24 40" width="24" height="40"><g transform="rotate(45)"><path d="m0 0h5v23h23v5h-28z" opacity=".4"/><path d="m1 1h3v23h23v3h-26z" fill="#fff"/></g></svg> */
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ii0yMCAwIDI0IDQwIiB3aWR0aD0iMjQiIGhlaWdodD0iNDAiPjxnIHRyYW5zZm9ybT0icm90YXRlKDQ1KSI+PHBhdGggZD0ibTAgMGg1djIzaDIzdjVoLTI4eiIgb3BhY2l0eT0iLjQiLz48cGF0aCBkPSJtMSAxaDN2MjNoMjN2M2gtMjZ6IiBmaWxsPSIjZmZmIi8+PC9nPjwvc3ZnPg==");
}
.w-lightbox-right {
    display: none;
    right: 0;
    bottom: 0;
    /* <svg xmlns="http://www.w3.org/2000/svg" viewBox="-4 0 24 40" width="24" height="40"><g transform="rotate(45)"><path d="m0-0h28v28h-5v-23h-23z" opacity=".4"/><path d="m1 1h26v26h-3v-23h-23z" fill="#fff"/></g></svg> */
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ii00IDAgMjQgNDAiIHdpZHRoPSIyNCIgaGVpZ2h0PSI0MCI+PGcgdHJhbnNmb3JtPSJyb3RhdGUoNDUpIj48cGF0aCBkPSJtMC0waDI4djI4aC01di0yM2gtMjN6IiBvcGFjaXR5PSIuNCIvPjxwYXRoIGQ9Im0xIDFoMjZ2MjZoLTN2LTIzaC0yM3oiIGZpbGw9IiNmZmYiLz48L2c+PC9zdmc+");
}
/*
 * Without specifying the with and height inside the SVG, all versions of IE render the icon too small.
 * The bug does not seem to manifest itself if the elements are tall enough such as the above arrows.
 * (http://stackoverflow.com/questions/16092114/background-size-differs-in-internet-explorer)
 */
.w-lightbox-close {
    right: 0;
    height: 2.6em;
    /* <svg xmlns="http://www.w3.org/2000/svg" viewBox="-4 0 18 17" width="18" height="17"><g transform="rotate(45)"><path d="m0 0h7v-7h5v7h7v5h-7v7h-5v-7h-7z" opacity=".4"/><path d="m1 1h7v-7h3v7h7v3h-7v7h-3v-7h-7z" fill="#fff"/></g></svg> */
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ii00IDAgMTggMTciIHdpZHRoPSIxOCIgaGVpZ2h0PSIxNyI+PGcgdHJhbnNmb3JtPSJyb3RhdGUoNDUpIj48cGF0aCBkPSJtMCAwaDd2LTdoNXY3aDd2NWgtN3Y3aC01di03aC03eiIgb3BhY2l0eT0iLjQiLz48cGF0aCBkPSJtMSAxaDd2LTdoM3Y3aDd2M2gtN3Y3aC0zdi03aC03eiIgZmlsbD0iI2ZmZiIvPjwvZz48L3N2Zz4=");
    background-size: 18px;
}
/**
 * 1. All IE versions add extra space at the bottom without this.
 */
.w-lightbox-strip {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0 1vh;
    line-height: 0;
    /* 1 */
    white-space: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
}
/*
 * 1. We use content-box to avoid having to do `width: calc(10vh + 2vw)`
 *    which doesn’t work in Safari anyway.
 * 2. Chrome renders images pixelated when switching to GPU. Making sure
 *    the parent is also rendered on the GPU (by setting translate3d for
 *    example) fixes this behavior.
 */
.w-lightbox-item {
    display: inline-block;
    width: 10vh;
    padding: 2vh 1vh;
    box-sizing: content-box;
    /* 1 */
    cursor: pointer;
    -webkit-transform: translate3d(0, 0, 0);
    /* 2 */
}
.w-lightbox-active {
    opacity: 0.3;
}
.w-lightbox-thumbnail {
    position: relative;
    height: 10vh;
    background: #222;
    overflow: hidden;
}
.w-lightbox-thumbnail-image {
    position: absolute;
    top: 0;
    left: 0;
}
.w-lightbox-thumbnail .w-lightbox-tall {
    top: 50%;
    width: 100%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
}
.w-lightbox-thumbnail .w-lightbox-wide {
    left: 50%;
    height: 100%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
}
/*
 * Spinner
 *
 * Absolute pixel values are used to avoid rounding errors that would cause
 * the white spinning element to be misaligned with the track.
 */
.w-lightbox-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    box-sizing: border-box;
    width: 40px;
    height: 40px;
    margin-top: -20px;
    margin-left: -20px;
    border: 5px solid rgba(0, 0, 0, 0.4);
    border-radius: 50%;
    -webkit-animation: spin 0.8s infinite linear;
    animation: spin 0.8s infinite linear;
}
.w-lightbox-spinner:after {
    content: "";
    position: absolute;
    top: -4px;
    right: -4px;
    bottom: -4px;
    left: -4px;
    border: 3px solid transparent;
    border-bottom-color: #fff;
    border-radius: 50%;
}
/*
 * Utility classes
 */
.w-lightbox-hide {
    display: none;
}
.w-lightbox-noscroll {
    overflow: hidden;
}
@media (min-width: 768px) {
    .w-lightbox-content {
        height: 96vh;
        margin-top: 2vh;
    }
    .w-lightbox-view,
    .w-lightbox-view:before {
        height: 96vh;
    }
    /* .w-lightbox-content */
    .w-lightbox-group,
    .w-lightbox-group .w-lightbox-view,
    .w-lightbox-group .w-lightbox-view:before {
        height: 84vh;
    }
    .w-lightbox-image {
        max-width: 96vw;
        max-height: 96vh;
    }
    .w-lightbox-group .w-lightbox-image {
        max-width: 82.3vw;
        max-height: 84vh;
    }
    .w-lightbox-left,
    .w-lightbox-right {
        display: block;
        opacity: 0.5;
    }
    .w-lightbox-close {
        opacity: 0.8;
    }
    .w-lightbox-control:hover {
        opacity: 1;
    }
}
.w-lightbox-inactive,
.w-lightbox-inactive:hover {
    opacity: 0;
}
.w-richtext:before,
.w-richtext:after {
    content: " ";
    display: table;
    grid-column-start: 1;
    grid-row-start: 1;
    grid-column-end: 2;
    grid-row-end: 2;
}
.w-richtext:after {
    clear: both;
}
.w-richtext[contenteditable="true"]:before,
.w-richtext[contenteditable="true"]:after {
    white-space: initial;
}
.w-richtext ol,
.w-richtext ul {
    overflow: hidden;
}
.w-richtext .w-richtext-figure-selected.w-richtext-figure-type-video div:after,
.w-richtext .w-richtext-figure-selected[data-rt-type="video"] div:after {
    outline: 2px solid #2895f7;
}
.w-richtext .w-richtext-figure-selected.w-richtext-figure-type-image div,
.w-richtext .w-richtext-figure-selected[data-rt-type="image"] div {
    outline: 2px solid #2895f7;
}
.w-richtext figure.w-richtext-figure-type-video > div:after,
.w-richtext figure[data-rt-type="video"] > div:after {
    content: '';
    position: absolute;
    display: none;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
}
.w-richtext figure {
    position: relative;
    max-width: 60%;
}
.w-richtext figure > div:before {
    cursor: default!important;
}
.w-richtext figure img {
    width: 100%;
}
.w-richtext figure figcaption.w-richtext-figcaption-placeholder {
    opacity: 0.6;
}
.w-richtext figure div {
    /* fix incorrectly sized selection border in the data manager */
    font-size: 0px;
    color: transparent;
}
.w-richtext figure.w-richtext-figure-type-image,
.w-richtext figure[data-rt-type="image"] {
    display: table;
}
.w-richtext figure.w-richtext-figure-type-image > div,
.w-richtext figure[data-rt-type="image"] > div {
    display: inline-block;
}
.w-richtext figure.w-richtext-figure-type-image > figcaption,
.w-richtext figure[data-rt-type="image"] > figcaption {
    display: table-caption;
    caption-side: bottom;
}
.w-richtext figure.w-richtext-figure-type-video,
.w-richtext figure[data-rt-type="video"] {
    width: 60%;
    height: 0;
}
.w-richtext figure.w-richtext-figure-type-video iframe,
.w-richtext figure[data-rt-type="video"] iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.w-richtext figure.w-richtext-figure-type-video > div,
.w-richtext figure[data-rt-type="video"] > div {
    width: 100%;
}
.w-richtext figure.w-richtext-align-center {
    margin-right: auto;
    margin-left: auto;
    clear: both;
}
.w-richtext figure.w-richtext-align-center.w-richtext-figure-type-image > div,
.w-richtext figure.w-richtext-align-center[data-rt-type="image"] > div {
    max-width: 100%;
}
.w-richtext figure.w-richtext-align-normal {
    clear: both;
}
.w-richtext figure.w-richtext-align-fullwidth {
    width: 100%;
    max-width: 100%;
    text-align: center;
    clear: both;
    display: block;
    margin-right: auto;
    margin-left: auto;
}
.w-richtext figure.w-richtext-align-fullwidth > div {
    display: inline-block;
    /* padding-bottom is used for aspect ratios in video figures
        we want the div to inherit that so hover/selection borders in the designer-canvas
        fit right*/
    padding-bottom: inherit;
}
.w-richtext figure.w-richtext-align-fullwidth > figcaption {
    display: block;
}
.w-richtext figure.w-richtext-align-floatleft {
    float: left;
    margin-right: 15px;
    clear: none;
}
.w-richtext figure.w-richtext-align-floatright {
    float: right;
    margin-left: 15px;
    clear: none;
}
.w-nav {
    position: relative;
    background: #dddddd;
    z-index: 1000;
}
.w-nav:before,
.w-nav:after {
    content: " ";
    display: table;
    grid-column-start: 1;
    grid-row-start: 1;
    grid-column-end: 2;
    grid-row-end: 2;
}
.w-nav:after {
    clear: both;
}
.w-nav-brand {
    position: relative;
    float: left;
    text-decoration: none;
    color: #333333;
}
.w-nav-link {
    position: relative;
    display: inline-block;
    vertical-align: top;
    text-decoration: none;
    color: #222222;
    padding: 20px;
    text-align: left;
}
.w-nav-link.w--current {
    color: #0082f3;
}
.w-nav-menu {
    position: relative;
    float: right;
}
[data-nav-menu-open] {
    display: block !important;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #C8C8C8;
    text-align: center;
    overflow: visible;
    min-width: 200px;
}
.w--nav-link-open {
    display: block;
    position: relative;
}
.w-nav-overlay {
    position: absolute;
    overflow: hidden;
    display: none;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
}
.w-nav-overlay [data-nav-menu-open] {
    top: 0;
}
.w-nav[data-animation='over-left'] .w-nav-overlay {
    width: auto;
}
.w-nav[data-animation='over-left'] .w-nav-overlay,
.w-nav[data-animation='over-left'] [data-nav-menu-open] {
    right: auto;
    z-index: 1;
    top: 0;
}
.w-nav[data-animation='over-right'] .w-nav-overlay {
    width: auto;
}
.w-nav[data-animation='over-right'] .w-nav-overlay,
.w-nav[data-animation='over-right'] [data-nav-menu-open] {
    left: auto;
    z-index: 1;
    top: 0;
}
.w-nav-button {
    position: relative;
    float: right;
    padding: 18px;
    font-size: 24px;
    display: none;
    cursor: pointer;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    tap-highlight-color: rgba(0, 0, 0, 0);
    user-select: none;
}
.w-nav-button:focus {
    outline: 0;
}
.w-nav-button.w--open {
    background-color: #C8C8C8;
    color: white;
}
.w-nav[data-collapse='all'] .w-nav-menu {
    display: none;
}
.w-nav[data-collapse='all'] .w-nav-button {
    display: block;
}
.w--nav-dropdown-open {
    display: block;
}
.w--nav-dropdown-toggle-open {
    display: block;
}
.w--nav-dropdown-list-open {
    position: static;
}
@media screen and (max-width: 991px) {
    .w-nav[data-collapse='medium'] .w-nav-menu {
        display: none;
    }
    .w-nav[data-collapse='medium'] .w-nav-button {
        display: block;
    }
}
@media screen and (max-width: 767px) {
    .w-nav[data-collapse='small'] .w-nav-menu {
        display: none;
    }
    .w-nav[data-collapse='small'] .w-nav-button {
        display: block;
    }
    .w-nav-brand {
        padding-left: 10px;
    }
}
@media screen and (max-width: 479px) {
    .w-nav[data-collapse='tiny'] .w-nav-menu {
        display: none;
    }
    .w-nav[data-collapse='tiny'] .w-nav-button {
        display: block;
    }
}
.w-tabs {
    position: relative;
}
.w-tabs:before,
.w-tabs:after {
    content: " ";
    display: table;
    grid-column-start: 1;
    grid-row-start: 1;
    grid-column-end: 2;
    grid-row-end: 2;
}
.w-tabs:after {
    clear: both;
}
.w-tab-menu {
    position: relative;
}
.w-tab-link {
    position: relative;
    display: inline-block;
    vertical-align: top;
    text-decoration: none;
    padding: 9px 30px;
    text-align: left;
    cursor: pointer;
    color: #222222;
    background-color: #dddddd;
}
.w-tab-link.w--current {
    background-color: #C8C8C8;
}
.w-tab-link:focus {
    outline: 0;
}
.w-tab-content {
    position: relative;
    display: block;
    overflow: hidden;
}
.w-tab-pane {
    position: relative;
    display: none;
}
.w--tab-active {
    display: block;
}
@media screen and (max-width: 479px) {
    .w-tab-link {
        display: block;
    }
}
.w-ix-emptyfix:after {
    content: "";
}
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.w-dyn-empty {
    padding: 10px;
    background-color: #dddddd;
}
.w-dyn-hide {
    display: none !important;
}
.w-dyn-bind-empty {
    display: none !important;
}
.w-condition-invisible {
    display: none !important;
}
.wf-layout-layout {
    display: grid;
}
.w-code-component > * {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
/* theme */
:root {
    --relume-library-lite--rl-black: black;
    --relume-library-lite--rl-white: white;
    --white: white;
    --black: black;
    --btn-radius: 8px;
}

.w-layout-vflex {
    flex-direction: column;
    align-items: flex-start;
    display: flex;
}

.w-backgroundvideo-backgroundvideoplaypausebutton:focus-visible {
    outline-offset: 2px;
    border-radius: 50%;
    outline: 2px solid #3b79c3;
}

.w-embed-youtubevideo {
    background-image: url('https://d3e54v103j8qbb.cloudfront.net/static/youtube-placeholder.2b05e7d68d.svg');
    background-position: 50%;
    background-size: cover;
    width: 100%;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
    position: relative;
}

.hero-setion{
  min-height: 740px;
}

.w-embed-youtubevideo:empty {
    min-height: 75px;
    padding-bottom: 56.25%;
}

.w-layout-blockcontainer {
    max-width: 940px;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.w-checkbox {
    margin-bottom: 5px;
    padding-left: 20px;
    display: block;
}

.w-checkbox:before {
    content: " ";
    grid-area: 1 / 1 / 2 / 2;
    display: table;
}

.w-checkbox:after {
    content: " ";
    clear: both;
    grid-area: 1 / 1 / 2 / 2;
    display: table;
}

.w-checkbox-input {
    float: left;
    margin: 4px 0 0 -20px;
    line-height: normal;
}

.w-checkbox-input--inputType-custom {
    border: 1px solid #ccc;
    border-radius: 2px;
    width: 12px;
    height: 12px;
}

.w-checkbox-input--inputType-custom.w--redirected-checked {
    background-color: #3898ec;
    background-image: url('https://d3e54v103j8qbb.cloudfront.net/static/custom-checkbox-checkmark.589d534424.svg');
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    border-color: #3898ec;
}

.w-checkbox-input--inputType-custom.w--redirected-focus {
    box-shadow: 0 0 3px 1px #3898ec;
}

.w-layout-grid {
    grid-row-gap: 16px;
    grid-column-gap: 16px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
}

@media screen and (max-width: 991px) {
    .w-layout-blockcontainer {
        max-width: 728px;
    }
}

@media screen and (max-width: 767px) {
    .w-layout-blockcontainer {
        max-width: none;
    }
}

.navbar-no-shadow-container {
    z-index: 5;
    background-color: #0000;
    width: 100%;
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
    padding: 20px;
}

.container-regular {
    width: 100%;
    max-width: 1260px;
    min-height: 30px;
    margin-left: auto;
    margin-right: auto;
}

.navbar-wrapper {
    justify-content: space-between;
    align-items: center;
    display: flex;
}

.nav-menu {
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0;
    padding-bottom: 0;
    padding-left: 0;
    display: flex;
}

.nav-link {
    color: #1a1b1f;
    letter-spacing: .25px;
    margin-left: 5px;
    margin-right: 5px;
    padding: 5px 10px;
    font-size: 14px;
    line-height: 20px;
    text-decoration: none;
}

.nav-link:hover {
    color: #1a1b1fbf;
}

.nav-link:focus-visible {
    outline-offset: 0px;
    color: #0050bd;
    border-radius: 4px;
    outline: 2px solid #0050bd;
}

.nav-link[data-wf-focus-visible] {
    outline-offset: 0px;
    color: #0050bd;
    border-radius: 4px;
    outline: 2px solid #0050bd;
}

.nav-dropdown {
    margin-left: 5px;
    margin-right: 5px;
}

.nav-dropdown-toggle {
    letter-spacing: .25px;
    padding: 5px 30px 5px 10px;
    font-size: 14px;
    line-height: 20px;
}

.nav-dropdown-toggle:hover {
    color: #1a1b1fbf;
}

.nav-dropdown-toggle:focus-visible {
    outline-offset: 0px;
    color: #0050bd;
    border-radius: 5px;
    outline: 2px solid #0050bd;
}

.nav-dropdown-toggle[data-wf-focus-visible] {
    outline-offset: 0px;
    color: #0050bd;
    border-radius: 5px;
    outline: 2px solid #0050bd;
}

.nav-dropdown-icon {
    margin-right: 10px;
}

.nav-dropdown-list {
    background-color: #fff;
    border-radius: 12px;
}

.nav-dropdown-list.w--open {
    padding-top: 10px;
    padding-bottom: 10px;
}

.nav-dropdown-link {
    padding-top: 5px;
    padding-bottom: 5px;
    font-size: 14px;
}

.nav-dropdown-link:focus-visible {
    outline-offset: 0px;
    color: #0050bd;
    border-radius: 5px;
    outline: 2px solid #0050bd;
}

.nav-dropdown-link[data-wf-focus-visible] {
    outline-offset: 0px;
    color: #0050bd;
    border-radius: 5px;
    outline: 2px solid #0050bd;
}

.nav-button-wrapper {
    margin-left: 120px;
}

.button-primary {
    color: #fff;
    letter-spacing: 2px;
    text-transform: uppercase;
    background-color: #1a1b1f;
    padding: 12px 25px;
    font-size: 12px;
    line-height: 20px;
    transition: all .2s;
}

.button-primary:hover {
    color: #fff;
    background-color: #32343a;
}

.button-primary:active {
    background-color: #43464d;
}

.rl_navbar2_menu-button {
    padding: 0;
}

.rl_navbar2_button {
    border: 1px solid var(--relume-library-lite--rl-black);
    background-color: var(--relume-library-lite--rl-black);
    color: var(--relume-library-lite--rl-white);
    text-align: center;
    padding: .5rem 1.25rem;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    text-decoration: none;
}

.rl_navbar2_button-wrapper {
    grid-column-gap: 1rem;
    margin-left: 1rem;
    display: flex;
}

.rl_navbar2_dropdown-link {
    color: #000;
    padding: .5rem 1rem;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
}

.rl_navbar2_dropdown-link.w--current {
    color: #000;
}

.rl_navbar2_dropdown-list.w--open {
    background-color: #fff;
    border: 1px solid #000;
    padding: .5rem;
    position: absolute;
}

.rl-dropdown-icon {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 1rem;
    height: 1rem;
    margin-top: auto;
    margin-bottom: auto;
    margin-right: 1rem;
    display: flex;
    position: absolute;
    top: 0%;
    bottom: 0%;
    right: 0%;
}

.rl_navbar2_dropdwn-toggle {
    color: var(--relume-library-lite--rl-black);
    padding: .5rem 2.5rem .5rem 1rem;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
}

.rl_navbar2_link {
    color: var(--relume-library-lite--rl-black);
    padding: .5rem 1rem;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
}

.rl_navbar2_link.w--current {
    color: #000;
}

.rl_navbar2_menu {
    justify-content: center;
    align-items: center;
    display: flex;
    position: static;
}

.rl_navbar2_logo-link {
    padding-left: 0;
}

.rl_navbar2_container {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto;
    grid-template-columns: .25fr 1fr .25fr;
    grid-auto-columns: 1fr;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
    display: grid;
}

.rl_navbar2_component {
    border-bottom: 1px solid var(--relume-library-lite--rl-black);
    background-color: var(--relume-library-lite--rl-white);
    align-items: center;
    width: 100%;
    height: auto;
    min-height: 4.5rem;
    padding-left: 5%;
    padding-right: 5%;
    display: flex;
}

.rl-button-secondary-alternate {
    border: 1px solid var(--relume-library-lite--rl-white);
    color: var(--relume-library-lite--rl-white);
    text-align: center;
    background-color: #0000;
    padding: .75rem 1.5rem;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
    font-size: 1rem;
}

.rl-button {
    border: 1px solid var(--relume-library-lite--rl-black);
    background-color: var(--relume-library-lite--rl-black);
    color: var(--relume-library-lite--rl-white);
    text-align: center;
    padding: .75rem 1.5rem;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
    font-size: 1rem;
}

.rl-button-group {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
    display: flex;
}

.rl_heading1_spacing-block-2 {
    width: 100%;
    padding-bottom: 2rem;
}

.rl-text-style-medium {
    color: var(--relume-library-lite--rl-black);
    margin-top: 0;
    margin-bottom: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.5;
}

.rl-text-style-medium.is-white {
    color: #fff;
}

.rl_heading1_spacing-block-1 {
    width: 100%;
    padding-bottom: 1.5rem;
}

.rl-heading-style-h1 {
    color: var(--relume-library-lite--rl-black);
    margin-top: 0;
    margin-bottom: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.rl-heading-style-h1.is-white {
    color: #fff;
}

.rl_header5_content {
    color: #fff;
    width: 100%;
    max-width: 35rem;
}

.header5_component {
    align-items: center;
    min-height: 100vh;
    max-height: 60rem;
    display: flex;
}

.rl-container-large {
    width: 100%;
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
}

.rl-padding-global {
    padding-left: 5%;
    padding-right: 5%;
}

.rl_section_header5 {
    background-image: linear-gradient(#00000080, #00000080), url('../images/66795c8fe841bbf56bfc61af_placeholder-image.svg');
    background-position: 0 0, 50%;
    background-repeat: repeat, no-repeat;
    background-size: auto, cover;
    position: relative;
}

.rl-button-link-icon {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 1rem;
    height: 1rem;
    display: flex;
}

.rl-button-link {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
    border: 1px none var(--relume-library-lite--rl-black);
    color: var(--relume-library-lite--rl-black);
    text-align: center;
    background-color: #0000;
    padding: .25rem 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
    font-size: 1rem;
    line-height: 1;
    text-decoration: none;
    display: flex;
}

.rl-button-secondary {
    border: 1px solid var(--relume-library-lite--rl-black);
    background-color: var(--relume-library-lite--rl-white);
    color: var(--relume-library-lite--rl-black);
    text-align: center;
    padding: .75rem 1.5rem;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
    font-size: 1rem;
}

.rl_layout1_spacing-block-3 {
    width: 100%;
    padding-bottom: 2rem;
}

.rl_layout1_spacing-block-2 {
    width: 100%;
    padding-bottom: 1.5rem;
}

.rl-heading-style-h2 {
    color: var(--relume-library-lite--rl-black);
    margin-top: 0;
    margin-bottom: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
}

.rl_layout1_spacing-block-1 {
    width: 100%;
    padding-bottom: 1rem;
}

.rl-text-style-subheading {
    color: #000;
    margin-top: 0;
    margin-bottom: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5;
}

.rl_layout1_component {
    grid-column-gap: 5rem;
    grid-row-gap: 4rem;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    align-items: center;
    display: grid;
}

.rl-padding-section-large {
    padding-top: 7rem;
    padding-bottom: 7rem;
}

.rl_section_layout1 {
    background-color: var(--relume-library-lite--rl-white);
}

.rl-text-style-link {
    color: var(--relume-library-lite--rl-black);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
    font-weight: 400;
    text-decoration: underline;
}

.rl_contact20_spacing-block-6 {
    width: 100%;
    padding-bottom: 1.5rem;
}

.rl-text-style-regular {
    color: var(--relume-library-lite--rl-black);
    margin-top: 0;
    margin-bottom: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
}

.rl_contact20_spacing-block-5 {
    width: 100%;
    padding-bottom: 1rem;
}

.rl-heading-style-h4 {
    color: var(--relume-library-lite--rl-black);
    margin-top: 0;
    margin-bottom: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.3;
}

.rl_contact20_spacing-block-4 {
    width: 100%;
    padding-bottom: 1.5rem;
}

.rl_contact20_icon {
    width: 3rem;
    height: 3rem;
}

.rl_contact20_item {
    text-align: center;
    width: 100%;
}

.rl_contact20_content {
    grid-column-gap: 3rem;
    grid-row-gap: 4rem;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    place-items: start center;
    display: grid;
}

.rl_contact20_spacing-block-3 {
    width: 100%;
    padding-bottom: 5rem;
}

.rl_contact20_spacing-block-2 {
    width: 100%;
    padding-bottom: 1.5rem;
}

.rl_contact20_spacing-block-1 {
    width: 100%;
    padding-bottom: 1rem;
}

.rl_contact20_heading-wrapper {
    text-align: center;
    width: 100%;
    max-width: 48rem;
}

.rl_contact20_component {
    flex-direction: column;
    align-items: center;
    display: flex;
}

.rl_section_contact20 {
    background-color: var(--relume-library-lite--rl-white);
}

.rl_testimonial15_slide-nav {
    height: 1.75rem;
    font-size: .5rem;
    inset: auto auto 0% 0%;
}

.rl_testimonial15_arrow-icon {
    flex-direction: column;
    flex: none;
    justify-content: center;
    align-items: center;
    width: 1.5rem;
    height: 1.5rem;
    display: flex;
}

.rl_testimonial15_arrow-right {
    border: 1px solid var(--relume-library-lite--rl-black);
    background-color: var(--relume-library-lite--rl-white);
    color: var(--relume-library-lite--rl-black);
    border-radius: 100%;
    justify-content: center;
    align-items: center;
    width: 3rem;
    height: 3rem;
    display: flex;
    inset: auto 0% 0% auto;
}

.rl_testimonial15_arrow-left {
    border: 1px solid var(--relume-library-lite--rl-black);
    background-color: var(--relume-library-lite--rl-white);
    color: var(--relume-library-lite--rl-black);
    border-radius: 100%;
    justify-content: center;
    align-items: center;
    width: 3rem;
    height: 3rem;
    display: flex;
    inset: auto 4rem 0% auto;
}

.rl_testimonial15_logo {
    max-height: 3rem;
}

.rl_testimonial15_divider {
    background-color: var(--relume-library-lite--rl-black);
    align-self: stretch;
    width: 1px;
}

.rl_testimonial15_client-name-text {
    color: var(--relume-library-lite--rl-black);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5;
}

.rl_testimonial15_client {
    grid-column-gap: 1.25rem;
    grid-row-gap: 1.25rem;
    text-align: left;
    align-items: center;
    display: flex;
}

.rl_testimonial_spacing-block-1 {
    width: 100%;
    padding-bottom: 2rem;
}

.rl-heading-style-h5 {
    color: var(--relume-library-lite--rl-black);
    margin-top: 0;
    margin-bottom: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.4;
}

.rl_testimonial15_rating-icon {
    color: var(--relume-library-lite--rl-black);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 1.25rem;
    height: 1.25rem;
    display: flex;
}

.rl_testimonial15_rating-wrapper {
    grid-column-gap: .25rem;
    grid-row-gap: .25rem;
    display: flex;
}

.rl_testimonial15_content-right {
    flex-direction: column;
    align-items: flex-start;
    display: flex;
}

.rl_testimonial15_client-image {
    object-fit: cover;
}

.rl_testimonial15_content {
    grid-column-gap: 5rem;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    align-items: center;
    display: grid;
}

.rl_testimonial15_slide {
    margin-right: 5rem;
}

.rl_testimonial15_component {
    background-color: #0000;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: auto;
    padding-bottom: 5rem;
}

.rl_section_testimonial15 {
    background-color: var(--relume-library-lite--rl-white);
}

.rl_team8_spacing-block-9 {
    width: 100%;
    padding-bottom: 2rem;
}

.rl_team8_spacing-block-8 {
    width: 100%;
    padding-bottom: 1rem;
}

.rl_team8_cta-wrapper {
    width: 100%;
    max-width: 35rem;
}

.rl_team8_spacing-block-7 {
    width: 100%;
    padding-bottom: 6rem;
}

.rl-social-icon {
    width: 1.5rem;
    height: 1.5rem;
}

.rl_team8_social-link {
    color: var(--relume-library-lite--rl-black);
}

.rl_team8_social {
    grid-column-gap: .875rem;
    grid-row-gap: .875rem;
    grid-template-rows: auto;
    grid-template-columns: max-content;
    grid-auto-columns: 1fr;
    grid-auto-flow: column;
    align-self: flex-start;
    display: grid;
}

.rl_team8_spacing-block-6 {
    width: 100%;
    padding-bottom: 1.5rem;
}

.rl_team8_spacing-block-5 {
    width: 100%;
    padding-bottom: 1rem;
}

.rl_team8_name-text {
    color: var(--relume-library-lite--rl-black);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.5;
}

.rl_team8_spacing-block-4 {
    width: 100%;
    padding-bottom: 1.5rem;
}

.rl_team8_image {
    object-fit: cover;
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0%;
}

.rl_team8_image-wrapper {
    width: 100%;
    padding-top: 100%;
    position: relative;
    overflow: hidden;
}

.rl_team8_item {
    flex-direction: column;
    align-items: stretch;
    display: flex;
}

.rl_team8_list {
    grid-column-gap: 3rem;
    grid-row-gap: 4rem;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    place-items: start center;
    display: grid;
}

.rl_team8_spacing-block-3 {
    width: 100%;
    padding-bottom: 5rem;
}

.rl_team8_spacing-block-2 {
    width: 100%;
    padding-bottom: 1.5rem;
}

.rl_team8_spacing-block-1 {
    width: 100%;
    padding-bottom: 1rem;
}

.rl_team8_heading-wrapper {
    width: 100%;
    max-width: 48rem;
}

.rl_team8_component {
    flex-direction: column;
    align-items: flex-start;
    display: flex;
}

.rl_section_team8 {
    background-color: var(--relume-library-lite--rl-white);
}

.rl-error-text {
    color: #e23939;
}

.rl-error-message-2 {
    margin-top: 1.5rem;
    padding: .875rem 1rem;
}

.rl-success-text {
    font-weight: 600;
}

.rl-success-message-2 {
    background-color: #0000;
    padding: 1.5rem;
}

.rl_contact6_spacing-block-7 {
    width: 100%;
    padding-bottom: .5rem;
}

.rl-checkbox-label-small {
    color: var(--relume-library-lite--rl-black);
    margin-bottom: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
    font-size: .875rem;
    font-weight: 400;
    line-height: 1.5;
}

.rl-form-checkbox-icon {
    border: 1px solid var(--relume-library-lite--rl-black);
    cursor: pointer;
    border-radius: 0;
    width: 1.125rem;
    min-width: 1.125rem;
    height: 1.125rem;
    min-height: 1.125rem;
    margin-top: 0;
    margin-left: -1.25rem;
    margin-right: .5rem;
    transition: all .2s;
}

.rl-form-checkbox-icon.w--redirected-checked {
    border-width: 1px;
    border-color: var(--relume-library-lite--rl-black);
    background-color: var(--relume-library-lite--rl-black);
    box-shadow: none;
    background-size: 16px 16px;
}

.rl-form-checkbox-icon.w--redirected-focus {
    border-color: var(--relume-library-lite--rl-black);
    box-shadow: none;
}

.rl-form-checkbox {
    align-items: center;
    margin-bottom: 0;
    padding-left: 1.25rem;
    display: flex;
}

.rl-form-text-area {
    border: 1px solid var(--relume-library-lite--rl-black);
    background-color: var(--relume-library-lite--rl-white);
    color: var(--relume-library-lite--rl-black);
    height: auto;
    min-height: 11.25rem;
    margin-bottom: 0;
    padding: .75rem;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
    overflow: auto;
}

.rl-form-text-area:focus {
    border-color: var(--relume-library-lite--rl-black);
}

.rl-form-text-area::placeholder {
    color: var(--relume-library-lite--rl-black);
}

.rl-field-label {
    color: var(--relume-library-lite--rl-black);
    margin-bottom: .5rem;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
    font-size: 1rem;
    font-weight: 400;
}

.rl_contact6_form-field-wrapper {
    position: relative;
}

.rl_contact6_spacing-block-5 {
    width: 100%;
    padding-bottom: .5rem;
}

.rl-form-radio-label {
    color: var(--relume-library-lite--rl-black);
    margin-bottom: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
}

.rl-form-radio-icon {
    border: 1px solid var(--relume-library-lite--rl-black);
    cursor: pointer;
    border-radius: 100px;
    width: 1.125rem;
    min-width: 1.125rem;
    height: 1.125rem;
    min-height: 1.125rem;
    margin-top: 0;
    margin-left: -1.125rem;
    margin-right: .5rem;
}

.rl-form-radio-icon.w--redirected-checked {
    border-width: 6px;
    border-color: var(--relume-library-lite--rl-black);
    background-color: var(--relume-library-lite--rl-white);
    background-image: none;
}

.rl-form-radio-icon.w--redirected-focus {
    border-color: var(--relume-library-lite--rl-black);
    box-shadow: none;
    margin-top: 0;
}

.rl-form-radio {
    align-items: center;
    margin-bottom: 0;
    padding-left: 1.125rem;
    display: flex;
}

.rl-form-radio-2col {
    grid-column-gap: 1.5rem;
    grid-row-gap: .875rem;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
}

.rl_contact6_spacing-block-6 {
    width: 100%;
    padding-bottom: .5rem;
}

.rl-form-select-input {
    border: 1px solid var(--relume-library-lite--rl-black);
    background-color: var(--relume-library-lite--rl-white);
    color: var(--relume-library-lite--rl-black);
    background-image: none;
    height: auto;
    min-height: 2.75rem;
    margin-bottom: 0;
    padding: .5rem .75rem;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
}

.rl-form-select-input::placeholder {
    color: #0009;
}

.rl-form-input {
    border: 1px solid var(--relume-library-lite--rl-black);
    background-color: var(--relume-library-lite--rl-white);
    color: var(--relume-library-lite--rl-black);
    height: auto;
    min-height: 2.75rem;
    margin-bottom: 0;
    padding: .5rem .75rem;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
}

.rl-form-input:focus {
    border-color: var(--relume-library-lite--rl-black);
}

.rl-form-input::placeholder {
    color: var(--relume-library-lite--rl-black);
    font-size: 1rem;
}

.rl_contact6_form-field-2col {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
}

.rl_contact6_form {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    display: grid;
}

.rl_contact6_form-block {
    flex-direction: column;
    align-items: stretch;
    margin-bottom: 0;
}

.rl_contact6_icon {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 1.5rem;
    height: 1.5rem;
    display: flex;
}

.rl_contact6_icon-wrapper {
    color: var(--relume-library-lite--rl-black);
    flex: none;
    align-self: flex-start;
}

.rl_contact6_item {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    display: flex;
}

.rl_contact6_contact-list {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    padding-top: .5rem;
    padding-bottom: .5rem;
    display: grid;
}

.rl_contact6_spacing-block-3 {
    width: 100%;
    padding-bottom: 2rem;
}

.rl_contact6_spacing-block-2 {
    width: 100%;
    padding-bottom: 1.5rem;
}

.rl_contact6_spacing-block-1 {
    width: 100%;
    padding-bottom: 1rem;
}

.rl_content6_component {
    grid-column-gap: 5rem;
    grid-row-gap: 4rem;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    align-items: start;
    display: grid;
}

.rl_section_contact6 {
    background-color: var(--relume-library-lite--rl-white);
}

.rl-error-text-2 {
    color: #e23939;
}

.rl-error-message-2-2 {
    margin-top: 1.5rem;
    padding: .875rem 1rem;
}

.rl-success-text-2 {
    font-weight: 600;
}

.rl-success-message-2-2 {
    background-color: #0000;
    padding: 1.5rem;
}

.rl-button-2 {
    border: 1px solid var(--relume-library-lite--rl-black);
    background-color: var(--relume-library-lite--rl-black);
    color: var(--relume-library-lite--rl-white);
    text-align: center;
    padding: .75rem 1.5rem;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
    font-size: 1rem;
}

.rl_contact6_spacing-block-7-2 {
    width: 100%;
    padding-bottom: .5rem;
}

.rl-text-style-link-2 {
    color: var(--relume-library-lite--rl-black);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
    font-weight: 400;
    text-decoration: underline;
}

.rl-checkbox-label-small-2 {
    color: var(--relume-library-lite--rl-black);
    margin-bottom: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
    font-size: .875rem;
    font-weight: 400;
    line-height: 1.5;
}

.rl-form-checkbox-icon-2 {
    border: 1px solid var(--relume-library-lite--rl-black);
    cursor: pointer;
    border-radius: 0;
    width: 1.125rem;
    min-width: 1.125rem;
    height: 1.125rem;
    min-height: 1.125rem;
    margin-top: 0;
    margin-left: -1.25rem;
    margin-right: .5rem;
    transition: all .2s;
}

.rl-form-checkbox-icon-2.w--redirected-checked {
    border-width: 1px;
    border-color: var(--relume-library-lite--rl-black);
    background-color: var(--relume-library-lite--rl-black);
    box-shadow: none;
    background-size: 16px 16px;
}

.rl-form-checkbox-icon-2.w--redirected-focus {
    border-color: var(--relume-library-lite--rl-black);
    box-shadow: none;
}

.rl-form-checkbox-2 {
    align-items: center;
    margin-bottom: 0;
    padding-left: 1.25rem;
    display: flex;
}

.rl-form-text-area-2 {
    border: 1px solid var(--relume-library-lite--rl-black);
    background-color: var(--relume-library-lite--rl-white);
    color: var(--relume-library-lite--rl-black);
    height: auto;
    min-height: 11.25rem;
    margin-bottom: 0;
    padding: .75rem;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
    overflow: auto;
}

.rl-form-text-area-2:focus {
    border-color: var(--relume-library-lite--rl-black);
}

.rl-form-text-area-2::placeholder {
    color: var(--relume-library-lite--rl-black);
}

.rl-field-label-2 {
    color: var(--relume-library-lite--rl-black);
    margin-bottom: .5rem;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
    font-size: 1rem;
    font-weight: 400;
}

.rl_contact6_form-field-wrapper-2 {
    position: relative;
}

.rl_contact6_spacing-block-5-2 {
    width: 100%;
    padding-bottom: .5rem;
}

.rl-form-radio-label-2 {
    color: var(--relume-library-lite--rl-black);
    margin-bottom: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
}

.rl-form-radio-icon-2 {
    border: 1px solid var(--relume-library-lite--rl-black);
    cursor: pointer;
    border-radius: 100px;
    width: 1.125rem;
    min-width: 1.125rem;
    height: 1.125rem;
    min-height: 1.125rem;
    margin-top: 0;
    margin-left: -1.125rem;
    margin-right: .5rem;
}

.rl-form-radio-icon-2.w--redirected-checked {
    border-width: 6px;
    border-color: var(--relume-library-lite--rl-black);
    background-color: var(--relume-library-lite--rl-white);
    background-image: none;
}

.rl-form-radio-icon-2.w--redirected-focus {
    border-color: var(--relume-library-lite--rl-black);
    box-shadow: none;
    margin-top: 0;
}

.rl-form-radio-2 {
    align-items: center;
    margin-bottom: 0;
    padding-left: 1.125rem;
    display: flex;
}

.rl-form-radio-2col-2 {
    grid-column-gap: 1.5rem;
    grid-row-gap: .875rem;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
}

.rl_contact6_spacing-block-6-2 {
    width: 100%;
    padding-bottom: .5rem;
}

.rl-form-select-input-2 {
    border: 1px solid var(--relume-library-lite--rl-black);
    background-color: var(--relume-library-lite--rl-white);
    color: var(--relume-library-lite--rl-black);
    background-image: none;
    height: auto;
    min-height: 2.75rem;
    margin-bottom: 0;
    padding: .5rem .75rem;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
}

.rl-form-select-input-2::placeholder {
    color: #0009;
}

.rl-form-input-2 {
    border: 1px solid var(--relume-library-lite--rl-black);
    background-color: var(--relume-library-lite--rl-white);
    color: var(--relume-library-lite--rl-black);
    height: auto;
    min-height: 2.75rem;
    margin-bottom: 0;
    padding: .5rem .75rem;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
}

.rl-form-input-2:focus {
    border-color: var(--relume-library-lite--rl-black);
}

.rl-form-input-2::placeholder {
    color: var(--relume-library-lite--rl-black);
    font-size: 1rem;
}

.rl_contact6_form-field-2col-2 {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
}

.rl_contact6_form-2 {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    display: grid;
}

.rl_contact6_form-block-2 {
    flex-direction: column;
    align-items: stretch;
    margin-bottom: 0;
}

.rl-text-style-regular-2 {
    color: var(--relume-library-lite--rl-black);
    margin-top: 0;
    margin-bottom: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
}

.rl_contact6_icon-2 {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 1.5rem;
    height: 1.5rem;
    display: flex;
}

.rl_contact6_icon-wrapper-2 {
    color: var(--relume-library-lite--rl-black);
    flex: none;
    align-self: flex-start;
}

.rl_contact6_item-2 {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    display: flex;
}

.rl_contact6_contact-list-2 {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    padding-top: .5rem;
    padding-bottom: .5rem;
    display: grid;
}

.rl_contact6_spacing-block-3-2 {
    width: 100%;
    padding-bottom: 2rem;
}

.rl-text-style-medium-2 {
    color: var(--relume-library-lite--rl-black);
    margin-top: 0;
    margin-bottom: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.5;
}

.rl_contact6_spacing-block-2-2 {
    width: 100%;
    padding-bottom: 1.5rem;
}

.rl-heading-style-h2-2 {
    color: var(--relume-library-lite--rl-black);
    margin-top: 0;
    margin-bottom: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
}

.rl_contact6_spacing-block-1-2 {
    width: 100%;
    padding-bottom: 1rem;
}

.rl-text-style-subheading-2 {
    color: #000;
    margin-top: 0;
    margin-bottom: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5;
}

.rl_content6_component-2 {
    grid-column-gap: 5rem;
    grid-row-gap: 4rem;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    align-items: start;
    display: grid;
}

.rl-padding-section-large-2 {
    padding-top: 7rem;
    padding-bottom: 7rem;
}

.rl-container-large-2 {
    width: 100%;
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
}

.rl-padding-global-2 {
    padding-left: 5%;
    padding-right: 5%;
}

.rl_section_contact6-2 {
    background-color: var(--relume-library-lite--rl-white);
}

.rl_footer3_legal-link {
    color: var(--relume-library-lite--rl-black);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
    font-size: .875rem;
    font-weight: 400;
    line-height: 1.5;
    text-decoration: underline;
}

.rl_footer3_legal-list {
    grid-column-gap: 1.5rem;
    grid-row-gap: 0rem;
    white-space: normal;
    grid-template-rows: auto;
    grid-template-columns: max-content;
    grid-auto-columns: max-content;
    grid-auto-flow: column;
    justify-content: center;
    display: grid;
}

.rl_footer3_credit-text {
    color: var(--relume-library-lite--rl-black);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
    font-size: .875rem;
    font-weight: 400;
    line-height: 1.5;
}

.rl_footer3_bottom-wrapper {
    justify-content: space-between;
    align-items: center;
    display: flex;
}

.rl_footer3_spacing-block-5 {
    width: 100%;
    padding-bottom: 2rem;
}

.rl_footer3_line-divider {
    background-color: var(--relume-library-lite--rl-black);
    width: 100%;
    height: 1px;
}

.rl_footer3_spacing-block-4 {
    width: 100%;
    padding-bottom: 5rem;
}

.rl_footer3_link {
    color: var(--relume-library-lite--rl-black);
    padding-top: .5rem;
    padding-bottom: .5rem;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
    font-size: .875rem;
    font-weight: 600;
    line-height: 1.5;
    text-decoration: none;
}

.rl_footer3_link-list {
    flex-direction: column;
    grid-template-rows: auto;
    grid-template-columns: 100%;
    grid-auto-columns: 100%;
    place-items: flex-start start;
    display: flex;
}

.rl_footer3_menu-wrapper {
    grid-column-gap: 2rem;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    align-items: start;
}

.rl-social-icon-2 {
    width: 1.5rem;
    height: 1.5rem;
}

.rl_footer3_social-link {
    color: var(--relume-library-lite--rl-black);
    align-items: center;
    text-decoration: none;
    display: flex;
}

.rl_footer3_social-list {
    grid-column-gap: .75rem;
    grid-row-gap: 0rem;
    white-space: normal;
    grid-template-rows: auto;
    grid-template-columns: max-content;
    grid-auto-columns: max-content;
    grid-auto-flow: column;
    place-items: start;
    display: grid;
}

.rl_footer3_spacing-block-3 {
    width: 100%;
    padding-bottom: 2rem;
}

.rl-text-style-small {
    color: var(--relume-library-lite--rl-black);
    margin-top: 0;
    margin-bottom: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
    font-size: .875rem;
    font-weight: 400;
    line-height: 1.5;
}

.rl_footer3_text {
    color: var(--relume-library-lite--rl-black);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5;
}

.rl_footer3_spacing-block-2 {
    width: 100%;
    padding-bottom: 1.5rem;
}

.rl_footer3_spacing-block-1 {
    width: 100%;
    padding-bottom: 2rem;
}

.rl_footer3_logo-link {
    float: none;
    padding-left: 0;
}

.rl_footer3_top-wrapper {
    grid-column-gap: 4vw;
    grid-template-rows: auto;
    grid-template-columns: 1fr .5fr;
    align-items: start;
    display: grid;
}

.rl-padding-section-medium {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.rl_footer3_component {
    background-color: var(--relume-library-lite--rl-white);
}

.frame-5797 {
    grid-row-gap: 40px;
    background-color: #fff;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    max-width: 1920px;
    padding: 80px 320px;
    text-decoration: none;
    display: flex;
}

.text {
    color: #141623;
    letter-spacing: -.02em;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 56px;
    font-weight: 700;
    line-height: 100%;
    text-decoration: none;
}

.frame-5890 {
    background-color: #f5f5f5;
    border-radius: 12px;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 760px;
    padding: 4px;
    text-decoration: none;
    display: flex;
}

.frame-5762 {
    grid-row-gap: 8px;
    background-color: #4b4bff;
    border-radius: 8px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 76px;
    padding: 24px;
    text-decoration: none;
    display: flex;
}

.day-1---11-09 {
    color: #fff;
    text-align: center;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 20px;
    font-weight: 800;
    line-height: 28px;
    text-decoration: none;
}

.frame-5761 {
    grid-row-gap: 8px;
    border-radius: 8px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 76px;
    padding: 24px;
    text-decoration: none;
    display: flex;
}

.day-2---12-09 {
    color: #1e1e1e;
    text-align: center;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 20px;
    font-weight: 800;
    line-height: 28px;
    text-decoration: none;
}

.frame-5785 {
    grid-column-gap: 40px;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    max-width: 1280px;
    padding-left: 40px;
    padding-right: 40px;
    text-decoration: none;
    display: flex;
}

.frame-5778 {
    grid-row-gap: 80px;
    background-color: #fff;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-decoration: none;
    display: flex;
}

.frame-5832 {
    grid-row-gap: 40px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    max-width: 720px;
    text-decoration: none;
    display: flex;
}

.frame-5750 {
    grid-column-gap: 16px;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: 56px;
    display: flex;
}

.frame-5748 {
    grid-row-gap: 24px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    text-decoration: none;
    display: flex;
}

.text-2 {
    color: #141623;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 40px;
    font-weight: 800;
    line-height: 100%;
    text-decoration: none;
}

.frame-5829 {
    grid-row-gap: 24px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    text-decoration: none;
    display: flex;
}

.frame-5824 {
    grid-column-gap: 16px;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    text-decoration: none;
    display: flex;
}

.frame-5881 {
    grid-column-gap: 10px;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100px;
    text-decoration: none;
    display: flex;
}

.text-3 {
    color: #141623;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    text-decoration: none;
}

.frame-5826 {
    grid-row-gap: 24px;
    background-color: #fff;
    border: 1px solid #b0c4c480;
    border-radius: 16px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    padding: 40px;
    text-decoration: none;
    display: flex;
}

.frame-5891 {
    grid-row-gap: 10px;
    background-color: #f5f5f5;
    border-radius: 8px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 4px 16px;
    text-decoration: none;
    display: flex;
}

.text-4 {
    color: #4b4bff;
    text-align: right;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-decoration: none;
}

.frame-5828 {
    grid-column-gap: 48px;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    text-decoration: none;
    display: flex;
}

.frame-5819 {
    grid-row-gap: 8px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    height: 112px;
    text-decoration: none;
    display: flex;
}

.text-5 {
    color: #141623;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 20px;
    font-weight: 700;
    line-height: 32px;
    text-decoration: none;
}

.text-6 {
    color: #141623;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-decoration: none;
}

.frame-5827 {
    grid-column-gap: 40px;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    text-decoration: none;
    display: flex;
}

.frame-5820 {
    grid-column-gap: 12px;
    flex: 0 auto;
    justify-content: flex-start;
    align-items: center;
    text-decoration: none;
    display: flex;
}

.ellipse-24 {
    object-fit: cover;
}

.frame-5821 {
    grid-row-gap: 4px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    text-decoration: none;
    display: flex;
}

.text-7 {
    color: #141623;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 700;
    line-height: 100%;
    text-decoration: none;
}

.text-8 {
    color: #141623;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 12px;
    font-weight: 400;
    line-height: 100%;
    text-decoration: none;
}

.frame-5892 {
    grid-column-gap: 10px;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100px;
    height: 80px;
    text-decoration: none;
    display: flex;
}

.frame-5893 {
    grid-row-gap: 24px;
    background-color: #f5f5f5;
    border-radius: 16px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    height: 80px;
    padding: 24px;
    text-decoration: none;
    display: flex;
}

.frame-5894 {
    grid-row-gap: 8px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    height: 32px;
    text-decoration: none;
    display: flex;
}

.text-9 {
    color: #1e1e1e;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 20px;
    font-weight: 700;
    line-height: 32px;
    text-decoration: none;
}

.text-10 {
    color: #1e1e1e;
    text-align: right;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-decoration: none;
}

.frame-5882 {
    grid-column-gap: 10px;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100px;
    height: 309px;
    text-decoration: none;
    display: flex;
}

.frame-5895 {
    grid-column-gap: 48px;
    justify-content: flex-start;
    align-items: flex-end;
    width: 100%;
    text-decoration: none;
    display: flex;
}

.frame-5896 {
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    text-decoration: none;
    display: flex;
}

.frame-5884 {
    grid-row-gap: 24px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    text-decoration: none;
    display: flex;
}

.frame-5897 {
    grid-column-gap: 16px;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    max-width: 720px;
    text-decoration: none;
    display: flex;
}

.frame-5898 {
    grid-column-gap: 10px;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100px;
    height: 192px;
    text-decoration: none;
    display: flex;
}

.frame-5899 {
    grid-row-gap: 24px;
    background-color: #fff;
    border: 1px solid #b0c4c480;
    border-radius: 16px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    height: 192px;
    padding: 40px;
    text-decoration: none;
    display: flex;
}

.frame-5900 {
    grid-column-gap: 10px;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100px;
    height: 224px;
    text-decoration: none;
    display: flex;
}

.frame-5901 {
    grid-row-gap: 24px;
    background-color: #fff;
    border: 1px solid #b0c4c480;
    border-radius: 16px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    height: 224px;
    padding: 40px;
    text-decoration: none;
    display: flex;
}

.frame-5902 {
    grid-row-gap: 8px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    height: 144px;
    text-decoration: none;
    display: flex;
}

.vectors-wrapper {
    object-fit: cover;
    flex: 0 auto;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    display: flex;
}

.agendasection {
    z-index: auto;
    grid-row-gap: 40px;
    background-color: #fff;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: none;
    padding-top: 80px;
    padding-bottom: 80px;
    text-decoration: none;
    display: flex;
    position: relative;
}

.conteneragenda {
    grid-row-gap: 40px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    max-width: 1280px;
    text-decoration: none;
    display: flex;
}

.text-11 {
    color: #141623;
    letter-spacing: -.02em;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 56px;
    font-weight: 700;
    line-height: 100%;
    text-decoration: none;
}

.tabs {
    background-color: #8a1313;
    border-radius: 12px;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 4px;
    text-decoration: none;
    display: flex;
}

.layout {
    grid-column-gap: 40px;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    text-decoration: none;
    display: flex;
}

.leftside {
    grid-row-gap: 40px;
    background-color: #fff;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    text-decoration: none;
    display: flex;
}

.agendatype {
    grid-row-gap: 16px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    text-decoration: none;
    display: flex;
}

.text-12 {
    color: #141623;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 40px;
    font-weight: 800;
    line-height: 100%;
    text-decoration: none;
}

.agendabox {
    grid-column-gap: 16px;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    text-decoration: none;
    display: flex;
}

.leftsideagenda {
    grid-column-gap: 10px;
    justify-content: flex-start;
    align-items: flex-start;
    width: 8rem;
    height: 100%;
    text-decoration: none;
    display: flex;
}

.time {
    color: #141623;
    text-align: left;
    flex: 1;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 1rem;
    font-weight: 700;
    line-height: 140%;
    text-decoration: none;
}

.rightsideagenda {
    grid-row-gap: 24px;
    background-color: #fff;
    border: 1px solid #b0c4c480;
    border-radius: 16px;
    flex-direction: column;
    flex: 0 auto;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    height: auto;
    padding: 12px;
    text-decoration: none;
    display: flex;
    position: relative;
}

.frame-5903 {
    grid-column-gap: 48px;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    text-decoration: none;
    display: flex;
}

.agendatext {
    grid-column-gap: 8%;
    grid-row-gap: 8%;
    flex-flow: row;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    height: auto;
    text-decoration: none;
    display: flex;
}

.agendaheading {
    color: #141623;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 1.15rem;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    text-decoration: none;
}

.agendabodytext {
    color: #141623;
    margin-top: 8px;
    margin-bottom: 0;
    padding-top: 10px;
    font-size: 1rem;
    font-weight: 400;
    line-height: 140%;
    text-decoration: none;
}

.timetext {
    color: #7a7dd3;
    text-align: right;
    justify-content: flex-end;
    align-items: flex-end;
    width: 120px;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 1rem;
    font-weight: 400;
    line-height: 140%;
    text-decoration: none;
    display: flex;
    position: static;
    inset: 0% 0% auto auto;
}

.timetext.forms {
    text-align: right;
    width: 90px;
}

.speakers {
    grid-column-gap: 40px;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    text-decoration: none;
    display: flex;
}

.speakers_1 {
    grid-column-gap: 12px;
    flex: 0 auto;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    max-width: 246px;
    text-decoration: none;
    display: flex;
}

.speaker-photo {
    object-fit: cover;
    border-radius: 20px;
}

.text-speaker {
    grid-row-gap: 4px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    text-decoration: none;
    display: flex;
}

.name {
    color: #141623;
    margin-top: 0;
    margin-bottom: 0;
    font-size: .9rem;
    font-weight: 700;
    line-height: 100%;
    text-decoration: none;
}

.company {
    color: #141623;
    margin-top: 0;
    margin-bottom: 0;
    font-size: .8rem;
    font-weight: 400;
    line-height: 100%;
    text-decoration: none;
}

.frame-5904 {
    grid-column-gap: 10px;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100px;
    height: 80px;
    text-decoration: none;
    display: flex;
}

.rightsideagendabrake {
    background-color: #f5f5f5;
    border-radius: 16px;
    justify-content: space-between;
    align-items: baseline;
    width: 100%;
    padding: 12px 24px;
    text-decoration: none;
    display: flex;
}

.agendaheading-2 {
    color: #1e1e1e;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 20px;
    font-weight: 700;
    line-height: 32px;
    text-decoration: none;
}

.timetext-2 {
    color: #1e1e1e;
    text-align: right;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-decoration: none;
}

.rightsidephoto {
    grid-column-gap: 8px;
    background-color: red;
    border-radius: 24px;
    justify-content: flex-start;
    align-items: flex-start;
    width: 45%;
    height: 330px;
    margin-top: 124px;
    text-decoration: none;
    display: flex;
}

.h2 {
    color: #141623;
    letter-spacing: -.02em;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 100%;
    text-decoration: none;
}

.h2.white {
    color: var(--white);
    flex-flow: row;
    flex: 0 auto;
    align-self: stretch;
    width: 100%;
    max-width: 100%;
    margin-bottom: 0;
    padding-bottom: 0;
    display: block;
}

.h2.white.clock-number {
    text-align: center;
    flex-flow: row;
    justify-content: center;
    align-self: stretch;
    align-items: center;
    width: 100%;
    max-width: 100%;
    display: block;
}

.h3 {
    color: #141623;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 100%;
    text-decoration: none;
}

.h3.whitte {
    color: var(--white);
    display: block;
}

.frame-5906 {
    grid-column-gap: 48px;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    text-decoration: none;
    display: flex;
}

.speakersbox {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    flex-flow: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    text-decoration: none;
    display: flex;
}

.frame-5907 {
    grid-column-gap: 10px;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100px;
    height: 80px;
    text-decoration: none;
    display: flex;
}

.agendaheading-3 {
    color: #1e1e1e;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 20px;
    font-weight: 700;
    line-height: 32px;
    text-decoration: none;
}

.timetext-3 {
    color: #1e1e1e;
    text-align: right;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-decoration: none;
}

.body {
    font-family: Outfit, sans-serif;
    font-size: 1rem;
    line-height: 120%;
}

.agendaall {
    display: flex;
    width: 100%;
    margin-top:40px;
}

.tabs-menu {
    margin-bottom: 40px;
}

.tab_element {
    background-color: #f5f5f5;
    border-radius: 12px;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 760px;
    margin-bottom: 40px;
    padding: 4px;
    font-size: 1.25rem;
    text-decoration: none;
    display: flex;
}

.tab_1 {
    grid-row-gap: 8px;
    color: var(--black);
    background-color: #0000;
    border-radius: 8px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 76px;
    padding: 24px;
    text-decoration: none;
    display: flex;
}

.tab_1.w--current {
    color: var(--white);
    background-color: #7a7dd3;
}

.tabtext {
    text-align: center;
    margin-top: 0;
    margin-bottom: 0;
    font-family: Outfit, sans-serif;
    font-weight: 800;
    line-height: 28px;
    text-decoration: none;
}

.tabtext.black {
    color: var(--black);
}

.tab_2 {
    grid-row-gap: 8px;
    background-color: #0000;
    border-radius: 8px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 76px;
    padding: 24px;
    text-decoration: none;
    display: flex;
}

.tab_2.w--current {
    color: var(--white);
    background-color: #7a7dd3;
}

.day-2---12-09-2 {
    color: #1e1e1e;
    text-align: center;
    margin-top: 0;
    margin-bottom: 0;
    font-family: Outfit, sans-serif;
    font-size: 20px;
    font-weight: 800;
    line-height: 28px;
    text-decoration: none;
}

.agendacontent {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    flex-flow: column;
    display: flex;
}

.div-block {
    background-color: #eb0000;
    border-radius: 24px;
    width: 40%;
    height: 360px;
    margin-top: 124px;
}

.tabs-2 {
    width: 100%;
}

.contact-form {
    grid-row-gap: 64px;
    background-color: #fff;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    max-width: none;
    margin-left: auto;
    margin-right: auto;
    padding: 64px 24px;
    text-decoration: none;
    display: block;
    position: relative;
}

.container {
    grid-row-gap: 40px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
    text-decoration: none;
    display: block;
}

.section-title {
    grid-row-gap: 16px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    max-width: 1280px;
    text-decoration: none;
    display: flex;
}

.title {
    color: #141623;
    margin-top: 0;
    margin-bottom: 0;
    font-family: Outfit, sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 120%;
    text-decoration: none;
}

.forms {
    grid-column-gap: 48px;
    flex: 0 auto;
    justify-content: flex-start;
    align-items: flex-start;
    margin-top: 0;
    text-decoration: none;
    display: block;
}

.form-wrapper {
    grid-row-gap: 10px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 50%;
    min-width: 400px;
    text-decoration: none;
    display: flex;
}

.input-wrapper {
    grid-row-gap: 8px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    text-decoration: none;
    display: flex;
}

.form-block-label {
    color: #000;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 150%;
    text-decoration: none;
}

.form-text-input {
    grid-column-gap: 8px;
    color: #1c1c1c;
    background-color: #fff;
    border: 1px solid #b0c4c4;
    border-radius: 8px;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: 48px;
    margin-top: 0;
    margin-bottom: 0;
    padding: 12px;
    font-size: 1rem;
    font-weight: 400;
    line-height: 140%;
    text-decoration: none;
    display: flex;
}

.form-text-input:focus {
    border-width: 2px;
    border-color: var(--black);
    color: var(--black);
    font-size: 1rem;
}

.form-text-input::placeholder {
    color: #979797;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 1rem;
    font-weight: 500;
    line-height: 140%;
    text-decoration: none;
}

.textinput {
    color: #979797;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 500;
    line-height: 140%;
    text-decoration: none;
}

.form-text-input-2 {
    grid-column-gap: 8px;
    color: #1c1c1c;
    background-color: #fff;
    border: 1px solid #b0c4c4;
    border-radius: 8px;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    height: 48px;
    margin-top: 0;
    margin-bottom: 0;
    padding: 12px;
    font-size: 1rem;
    font-weight: 400;
    line-height: 140%;
    text-decoration: none;
    display: flex;
}

.form-text-input-2:focus {
    border-width: 2px;
    border-color: var(--black);
    color: var(--black);
}

.form-text-input-2::placeholder {
    color: #979797;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 1rem;
    font-weight: 500;
    line-height: 140%;
    text-decoration: none;
}

.form-text-input-3 {
    grid-column-gap: 8px;
    color: #1c1c1c;
    background-color: #fff;
    border: 1px solid #b0c4c4;
    border-radius: 8px;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    height: 48px;
    margin-top: 0;
    margin-bottom: 0;
    padding: 12px;
    font-size: 1rem;
    font-weight: 400;
    line-height: 140%;
    text-decoration: none;
    display: flex;
}

.form-text-input-3:focus {
    border-width: 2px;
    border-color: var(--black);
    color: var(--black);
}

.form-text-input-3::placeholder {
    color: #979797;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 1rem;
    font-weight: 500;
    line-height: 140%;
    text-decoration: none;
}

.workshops {
    grid-row-gap: 16px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    padding-top: 24px;
    padding-bottom: 24px;
    text-decoration: none;
    display: flex;
}

.textbase {
    color: var(--black);
    margin-top: 0;
    margin-bottom: 0;
    font-family: Outfit, sans-serif;
    font-weight: 400;
    line-height: 140%;
    text-decoration: none;
}

.textbase.terms {
    margin-left: 16px;
    padding-top: 16px;
    display: block;
}

.textbase.terms-3 {
    width: 100%;
    max-width: 530px;
    margin-left: 16px;
    padding-left: 24px;
    padding-right: 24px;
}

.checkbox-group {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    text-decoration: none;
    display: flex;
}

.checkboxframe {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    background-color: #fff;
    border: 1px solid #b0c4c480;
    border-radius: 16px;
    flex-direction: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    padding: 24px;
    text-decoration: none;
    display: block;
    box-shadow: 0 11px 25px #0000000d, 0 46px 46px #0000000a, 0 103px 62px #00000005, 0 184px 73px #00000003, 0 287px 80px #0000;
}

.checkboxframe.conf {
    background-color: #f2f2fb;
    border-color: #7a7dd3;
}

.checkboxframe.genai, .checkboxframe.digital-sales {
    background-color: #f5f5f5;
    display: block;
}

.checkbox-2 {
    grid-column-gap: 10px;
    cursor: pointer;
    background-color: #fff;
    border: 1px solid #000;
    border-radius: 8px;
    flex: none;
    order: 0;
    justify-content: center;
    align-items: center;
    width: 24px;
    min-width: 24px;
    height: 24px;
    min-height: 24px;
    margin-top: 0;
    margin-left: 0;
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
    text-decoration: none;
    display: block;
}

.checkbox-2.w--redirected-checked {
    border-width: 0;
    border-color: var(--black);
    background-color: #7a7dd3;
    background-image: url(//20219060.fs1.hubspotusercontent-na1.net/hubfs/20219060/raw_assets/public/Innovation-Forum-2025/images/check.svg);
}

.checkbox-2.w--redirected-focus {
    border-width: 2px;
    border-color: var(--black);
    box-shadow: none;
}

.checkbox-2.disable {
    display: none;
}

.checkbox_desc {
    grid-row-gap: 16px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    text-decoration: none;
    display: flex;
}

.frame-5909 {
    grid-row-gap: 4px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    text-decoration: none;
    display: flex;
}

.h5_imie-i-nazwisko {
    color: #000;
    margin-top: 0;
    margin-bottom: 0;
    font-family: Outfit, sans-serif;
    font-size: 20px;
    font-weight: 800;
    line-height: 28px;
    text-decoration: none;
}

.h5_imie-i-nazwisko.checkbox {
    margin-top: 16px;
    margin-bottom: 8px;
    display: none;
}

.zgoda {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    padding-bottom: 24px;
    text-decoration: none;
    display: flex;
}

.form-button {
    color: #fff;
    background-color: #7a7dd3;
    border-radius: 8px;
    flex: 0 auto;
    justify-content: center;
    align-items: center;
    margin-top: 0;
    margin-bottom: 0;
    padding: 14px 40px 16px;
    font-family: Outfit, sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 140%;
    text-decoration: none;
    display: flex;
}

.text-13 {
    color: #fff;
    margin-top: 0;
    margin-bottom: 0;
    font-family: Outfit, sans-serif;
    font-size: 20px;
    font-weight: 800;
    line-height: 140%;
    text-decoration: none;
}

.terms {
    grid-row-gap: 24px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    max-width: 530px;
    padding-left: 24px;
    padding-right: 24px;
    text-decoration: none;
    display: flex;
}

.terms-2 {
    color: #000;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-decoration: none;
}

.terms-1 {
    color: #000;
    margin-top: 0;
    margin-bottom: 0;
    font-family: Outfit, sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    text-decoration: underline;
}

.checkbox-field {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    cursor: pointer;
    flex-flow: row;
    flex: 0 auto;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    margin-bottom: 0;
    padding-left: 0;
    display: flex;
}

.divaider {
    background-color: #e7e7e7;
    width: 100%;
    height: 1px;
    display: block;
}

.checkbox-field-2 {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 0;
    padding-left: 0;
    display: flex;
}

.checkbox-label {
    flex: 1;
    margin-bottom: 0;
}

.testimonial-image-left {
    box-sizing: border-box;
    grid-column-gap: 80px;
    grid-row-gap: 64px;
    object-fit: fill;
    background-color: #0a0a0a;
    flex-flow: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    padding: 80px 40px;
    text-decoration: none;
    display: flex;
    position: relative;
}

.small-columns {
    grid-column-gap: 40px;
    flex: 0 auto;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    max-width: 1280px;
    padding-left: 40px;
    padding-right: 40px;
    text-decoration: none;
    display: flex;
    position: relative;
}

.testimonialcontent {
    grid-column-gap: 40px;
    flex: 0 auto;
    justify-content: space-between;
    align-items: stretch;
    text-decoration: none;
    display: flex;
}

.image-wrapper {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 50%;
    text-decoration: none;
    display: flex;
}

.image {
    background-color: #7a7dd3;
    background-image: url('../images/Katarzyna-Tomczyk-Czykier_.png');
    background-position: 50%;
    background-size: cover;
    border-radius: 8px;
    justify-content: center;
    align-items: center;
    width: 50%;
    max-width: 340px;
    text-decoration: none;
    display: flex;
}

.column {
    grid-row-gap: 24px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    max-width: none;
    height: 100%;
    text-decoration: none;
    display: flex;
}

.content {
    grid-row-gap: 40px;
    background-color: #1c1c1c;
    border: 1px solid #555;
    border-radius: 8px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    height: 100%;
    max-height: none;
    padding: 80px;
    text-decoration: none;
    display: flex;
}

.title-2 {
    color: #fff;
    margin-top: 0;
    margin-bottom: 0;
    font-family: Outfit, sans-serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 130%;
    text-decoration: none;
}

.description {
    color: #fff;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 100%;
    text-decoration: none;
}

.description.aif24-participant {
    font-size: 1.25rem;
}

.arrowbox {
    grid-column-gap: 8px;
    -webkit-backdrop-filter: blur(22.5px);
    backdrop-filter: blur(22.5px);
    background-color: #7a7dd34d;
    border: 1px solid #7a7dd3;
    border-radius: 8px;
    justify-content: center;
    align-items: center;
    width: 72px;
    height: 72px;
    padding: 4px 12px;
    text-decoration: none;
    display: flex;
    position: relative;
    inset: 0% -21% 0% 0%;
}

.vectors-wrapper-2 {
    object-fit: cover;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 24px;
    text-decoration: none;
    display: flex;
}

.arrowbox-2 {
    grid-column-gap: 8px;
    -webkit-backdrop-filter: blur(22.5px);
    backdrop-filter: blur(22.5px);
    background-color: #7a7dd34d;
    border: 1px solid #7a7dd3;
    border-radius: 8px;
    justify-content: center;
    align-items: center;
    width: 72px;
    height: 72px;
    padding: 4px 12px;
    text-decoration: none;
    display: flex;
    position: absolute;
    top: 174px;
    left: 1208px;
}

.description-0 {
    color: #fff;
    margin-top: 0;
    margin-bottom: 0;
    font-family: Outfit, sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 100%;
    text-decoration: none;
}

.description-1 {
    color: #fff;
    margin-top: 0;
    margin-bottom: 0;
    font-family: Outfit, sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 130%;
    text-decoration: none;
}

.slider {
    background-color: #0000;
    width: 100%;
    max-width: 1280px;
    height: 100%;
    margin-left: 40px;
    margin-right: 40px;
    display: block;
}

.left-arrow {
    justify-content: center;
    align-items: center;
    display: flex;
    inset: 0% auto 0% -3%;
}

.right-arrow {
    justify-content: center;
    align-items: center;
    display: flex;
    inset: 0% -3% 0% auto;
}

.slide {
    margin-right: 56px;
}

.slide-nav {
    justify-content: flex-end;
    align-items: flex-end;
    display: flex;
    inset: auto 0% -9%;
}

.team-section {
    grid-row-gap: 64px;
    background-color: #0a0a0a;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    padding: 64px 24px;
    text-decoration: none;
    display: flex;
    position: relative;
}

.container-speakers {
    grid-row-gap: 64px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    max-width: 1280px;
    padding-left: 40px;
    padding-right: 40px;
    text-decoration: none;
    display: flex;
}

.title-3 {
    color: #fff;
    letter-spacing: -.02em;
    margin-top: 0;
    margin-bottom: 0;
    font-family: Outfit, sans-serif;
    font-size: 56px;
    font-weight: 700;
    line-height: 100%;
    text-decoration: none;
}

.prelegenci_kafle {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    text-decoration: none;
    display: flex;
}

.card {
    border-radius: 8px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 227.2px;
    height: 300px;
    text-decoration: none;
    display: flex;
    position: relative;
    overflow: hidden;
}

.image_speaker_1 {
    grid-column-gap: 8px;
    background-color: #7a7dd3;
    background-image: url('../images/maciek.png');
    background-position: 50% 0;
    background-size: cover;
    justify-content: flex-end;
    align-items: flex-start;
    width: 100%;
    height: 300px;
    padding: 16px;
    text-decoration: none;
    display: flex;
}

.opis-prelegenci {
    grid-row-gap: 16px;
    background-color: #fff;
    border: 1px solid #d5dede;
    border-radius: 8px;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    height: 156px;
    padding: 16px;
    text-decoration: none;
    display: flex;
    position: absolute;
    inset: auto 0% -53%;
    box-shadow: 0 11px 25px #0000000d, 0 46px 46px #0000000a, 0 103px 62px #00000005, 0 184px 73px #00000003, 0 287px 80px #0000;
}

.speaker-text {
    grid-row-gap: 4px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    text-decoration: none;
    display: flex;
}

.title-4 {
    color: #1c1c1c;
    margin-top: 0;
    margin-bottom: 0;
    font-family: Outfit, sans-serif;
    font-size: 20px;
    font-weight: 800;
    line-height: 140%;
    text-decoration: none;
}

.position {
    color: #1c1c1c;
    margin-top: 0;
    margin-bottom: 0;
    font-family: Outfit, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-decoration: none;
}

.links {
    justify-content: space-between;
    align-items: center;
    width: 195.2px;
    height: 24px;
    text-decoration: none;
    display: flex;
}

.company-name {
    color: #909090;
    margin-top: 0;
    margin-bottom: 0;
    font-family: Outfit, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    text-decoration: none;
}

.vectors-wrapper-3 {
    object-fit: cover;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 24px;
    text-decoration: none;
    display: flex;
}

.aboutsection {
    grid-column-gap: 80px;
    background-color: #0a0a0a;
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: auto;
    padding: 80px 0;
    text-decoration: none;
    display: flex;
    position: relative;
}

.hero-container {
    grid-column-gap: 2%;
    grid-row-gap: 2%;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    max-width: 1280px;
    padding-left: 16px;
    padding-right: 16px;
    text-decoration: none;
    display: flex;
}

.column-2 {
    grid-row-gap: 16px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    margin-right: 40px;
    text-decoration: none;
    display: flex;
}

.chip {
    grid-column-gap: 8px;
    -webkit-backdrop-filter: blur(22.5px);
    backdrop-filter: blur(22.5px);
    background-color: #7a7dd34d;
    border: 1px solid #7a7dd3;
    border-radius: 8px;
    flex: 0 auto;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 4px 12px;
    text-decoration: none;
    display: flex;
    box-shadow: 0 0 50px #00000080;
}

.textbase-2 {
    color: #fff;
    margin-top: 0;
    margin-bottom: 0;
    font-family: Outfit, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-decoration: none;
}

.herocontent {
    grid-row-gap: 40px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    text-decoration: none;
    display: flex;
}

.about {
    grid-row-gap: 24px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    text-decoration: none;
    display: flex;
}

.about.about-more {
    display: flex;
}

.h2-2 {
    color: #fff;
    letter-spacing: -.02em;
    margin-top: 0;
    margin-bottom: 0;
    font-family: Outfit, sans-serif;
    font-size: 56px;
    font-weight: 700;
    line-height: 100%;
    text-decoration: none;
}

.textmain {
    color: #fff;
    margin-top: 0;
    margin-bottom: 0;
    font-family: Outfit, sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 32px;
    text-decoration: none;
}

.h3-2 {
    color: #fff;
    letter-spacing: -.02em;
    margin-top: 0;
    margin-bottom: 0;
    font-family: Outfit, sans-serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 100%;
    text-decoration: none;
}

.localization {
    grid-column-gap: 24px;
    flex: 0 auto;
    justify-content: flex-start;
    align-self: auto;
    align-items: stretch;
    width: 100%;
    text-decoration: none;
    display: flex;
}

.localizationbox {
    grid-row-gap: 32px;
    background-color: #1c1c1c;
    border: 1px solid #555;
    border-radius: 8px;
    flex-flow: column;
    flex: 0 auto;
    justify-content: space-between;
    align-self: auto;
    align-items: flex-start;
    width: 100%;
    height: auto;
    padding: 24px;
    text-decoration: none;
    display: flex;
    box-shadow: 0 11px 25px #0000000d, 0 46px 46px #0000000a, 0 103px 62px #00000005, 0 184px 73px #00000003, 0 287px 80px #0000;
}

.top-localizationbox {
    justify-content: space-between;
    align-items: center;
    width: 100%;
    text-decoration: none;
    display: flex;
}

.vectors-wrapper-4 {
    object-fit: cover;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 24px;
    text-decoration: none;
    display: flex;
}

.localizationtext {
    grid-row-gap: 8px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    text-decoration: none;
    display: flex;
}

.title-5 {
    color: #fff;
    margin-top: 0;
    margin-bottom: 0;
    font-family: Outfit, sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 100%;
    text-decoration: none;
}

.text_base {
    color: #a4a4a4;
    margin-top: 0;
    margin-bottom: 0;
    font-family: Outfit, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-decoration: none;
}

.hero-image {
    background-color: #b3b3b3;
    border-radius: 8px;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 400px;
    height: 625px;
    text-decoration: none;
    display: flex;
}

.h4 {
    color: var(--white);
    font-size: 2rem;
    line-height: 120%;
}

.h4.black {
    color: var(--black);
    margin-top: 0;
    margin-bottom: 0;
}

.h4.balck {
    color: var(--black);
}

.navbar-logo-left {
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    background-color: #0a0a0a99;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    max-width: none;
    padding-left: 24px;
    padding-right: 24px;
    text-decoration: none;
    display: flex;
    position: fixed;
    inset: 0% 0% auto;
}

.navbarcontainer {
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    text-decoration: none;
    display: flex;
}

.navbar-content {
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    text-decoration: none;
    display: flex;
}

.navbar-brand-2 {
    flex: 0 auto;
    justify-content: flex-start;
    align-items: flex-start;
    text-decoration: none;
    display: flex;
}

.vectors-wrapper-5 {
    object-fit: cover;
    justify-content: center;
    align-items: center;
    width: 118.588px;
    height: 28px;
    text-decoration: none;
    display: flex;
}

.navbar-menu {
    grid-column-gap: 32px;
    flex: 0 auto;
    justify-content: flex-end;
    align-items: center;
    text-decoration: none;
    display: flex;
}

.navbar-link {
    flex: 0 auto;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 24px 12px;
    text-decoration: none;
    display: inline-flex;
}

.navbartext {
    color: #fff;
    text-align: center;
    margin-top: 0;
    margin-bottom: 0;
    font-family: Outfit, sans-serif;
    font-size: 1rem;
    font-weight: 800;
    line-height: 28px;
    text-decoration: none;
}

.navbartext.black {
    color: var(--black);
}

.navbar-button {
    grid-column-gap: 8px;
    background-color: #fff;
    border-radius: 4px;
    flex: 0 auto;
    justify-content: center;
    align-items: center;
    height: 40px;
    padding: 8px 20px;
    text-decoration: none;
    display: none;
}

.text-15 {
    color: #1c1c1c;
    text-align: center;
    margin-top: 0;
    margin-bottom: 0;
    font-family: Outfit, sans-serif;
    font-size: 14px;
    font-weight: 800;
    line-height: 24px;
    text-decoration: none;
}

.background-video {
    width: 100%;
    position: relative;
    inset: 0%;
}

.background-video-2 {
    border: 1px solid red;
    border-radius: 24px;
    width: 100%;
    max-width: 380px;
    height: 625px;
}

.hero-setion {
    z-index: 0;
    background-color: #000;
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    height: 100%;
    display: flex;
    position: relative;
    top: auto;
}

.container-2 {
    grid-column-gap: 147px;
    flex: 1;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1280px;
    padding-top: 80px;
    padding-left: 40px;
    padding-right: 40px;
    text-decoration: none;
    display: flex;
}

.herocontent-2 {
    grid-row-gap: 40px;
    flex-flow: column;
    flex: 0 auto;
    justify-content: flex-start;
    align-self: auto;
    align-items: flex-start;
    width: 100%;
    height: auto;
    text-decoration: none;
    display: flex;
}

.title-6 {
    z-index: 3;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    text-decoration: none;
    display: flex;
    position: relative;
}

.title-7 {
    color: #fff;
    letter-spacing: -.02em;
    margin-top: 0;
    margin-bottom: 0;
    font-family: Outfit, sans-serif;
    font-size: 72px;
    font-weight: 700;
    line-height: 100%;
    text-decoration: none;
}

.title-8 {
    color: #fff;
    letter-spacing: -.02em;
    margin-top: 0;
    margin-bottom: 0;
    font-family: Outfit, sans-serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 100%;
    text-decoration: none;
}

.timer {
    grid-column-gap: 4px;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    padding-right: 48px;
    text-decoration: none;
    display: flex;
}

.timerbox {
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    background-color: #0a0a0a99;
    border: 1px solid #555;
    border-radius: 8px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 208px;
    height: 208px;
    padding: 40px;
    text-decoration: none;
    display: flex;
}

.timerbox.sec {
    flex: 0 auto;
    align-self: auto;
}

.title-9 {
    color: #fff;
    letter-spacing: -.02em;
    margin-top: 0;
    margin-bottom: 0;
    font-family: Outfit, sans-serif;
    font-size: 56px;
    font-weight: 700;
    line-height: 100%;
    text-decoration: none;
}

.timerdesc {
    color: #fff;
    margin-top: 0;
    margin-bottom: 0;
    font-family: Outfit, sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 32px;
    text-decoration: none;
}

.dividericon {
    grid-column-gap: 8px;
    justify-content: center;
    align-items: center;
    width: 24px;
    text-decoration: none;
    display: flex;
}

.vectors-wrapper-6 {
    z-index: 3;
    object-fit: cover;
    justify-content: center;
    align-items: center;
    width: 9.08108px;
    height: 24px;
    text-decoration: none;
    display: flex;
    position: relative;
}

.button {
    grid-column-gap: 10px;
    z-index: 100;
    background-color: #fff;
    border-radius: 8px;
    flex: 0 auto;
    justify-content: center;
    align-items: center;
    height: 56px;
    padding: 14px 40px 16px;
    text-decoration: none;
    display: flex;
}

.button.register-btn {
    object-fit: fill;
    display: inline-flex;
}

.button.cta-gallery {
    margin-top: 40px;
    display: inline-flex;
}

.buttontext {
    color: #1c1c1c;
    text-align: center;
    margin-top: 0;
    margin-bottom: 0;
    font-family: Outfit, sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 24px;
    text-decoration: none;
}

.h1 {
    color: var(--white);
    line-height: 100%;
}

.chipplace {
    grid-column-gap: 8px;
    -webkit-backdrop-filter: blur(22.5px);
    backdrop-filter: blur(22.5px);
    background-color: #f5f5f5;
    border: 1px solid #e7e7e7;
    border-radius: 4px;
    flex: 0 auto;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 4px 12px;
    text-decoration: none;
    display: flex;
}

.chiptext {
    color: #1c1c1c;
    margin-top: 0;
    margin-bottom: 0;
    font-family: Outfit, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-decoration: none;
}

.subheading-agenda {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    justify-content: flex-start;
    align-items: center;
    display: flex;
}

.checkbox-field-3 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 0;
    padding-left: 0;
    font-weight: 400;
    display: flex;
}

.checkbox-text {
    margin-left: 16px;
}

.background-video-3 {
    width: 100%;
}

.background-video-4 {
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border: 1px #000;
    border-radius: 20px;
    width: 100%;
    max-width: 240px;
    max-height: 460px;
}

.play-pause-button {
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    background-color: #ffffff59;
    border-radius: 18px;
    justify-content: center;
    align-items: center;
    padding: 4px;
    display: flex;
}

.image-12 {
    mix-blend-mode: normal;
}

.background-video-5 {
    width: 100%;
    height: auto;
    position: absolute;
    inset: 0;
}

.youtube {
    box-sizing: border-box;
    aspect-ratio: 16 / 9;
    object-fit: none;
    flex: 0 auto;
    display: none;
}

.footer-section {
    grid-row-gap: 80px;
    background-color: #0a0a0a;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: none;
    padding-top: 0;
    padding-left: 40px;
    padding-right: 40px;
    text-decoration: none;
    display: flex;
    position: relative;
}

.bento-contener {
    grid-column-gap: 16px;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    max-width: 1280px;
    height: 800px;
    text-decoration: none;
    display: block;
}

.leftside-2 {
    grid-row-gap: 16px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    max-width: 328px;
    height: 800px;
    text-decoration: none;
    display: flex;
}

.bentophoto_1 {
    grid-row-gap: 8px;
    background-color: #c9caf2;
    background-image: url('../images/IMG_01hh.png');
    background-position: 70% 100%;
    background-size: cover;
    border-radius: 16px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    height: 100%;
    padding: 8px;
    text-decoration: none;
    display: flex;
}

.bentophoto_2 {
    grid-row-gap: 8px;
    background-color: #2a2b53;
    background-image: url('../images/Ailleron-Innovation-Foum-2024---Conference-Day-and-Daniel-De-La-Fuente-presentation.jpg');
    background-position: 50%;
    background-size: cover;
    border-radius: 16px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    height: 392px;
    padding: 16px;
    text-decoration: none;
    display: flex;
}

.bentoinfo {
    grid-column-gap: 32px;
    background-color: #000;
    border-radius: 4px;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    max-width: 236px;
    padding: 14px 24px;
    text-decoration: none;
    display: flex;
}

.textbento {
    grid-row-gap: 16px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    text-decoration: none;
    display: flex;
}

.bentotitle {
    color: #fff;
    margin-top: 0;
    margin-bottom: 0;
    font-family: Outfit, sans-serif;
    font-size: 56px;
    font-weight: 800;
    line-height: 100%;
    text-decoration: none;
}

.bentotext {
    color: #fff;
    margin-top: 0;
    margin-bottom: 0;
    font-family: Outfit, sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 24px;
    text-decoration: none;
}

.vectors-wrapper-7 {
    object-fit: cover;
    justify-content: center;
    align-items: center;
    width: 56px;
    height: 56px;
    text-decoration: none;
    display: flex;
}

.rightside {
    grid-row-gap: 16px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    height: 800px;
    text-decoration: none;
    display: flex;
}

.rightupside {
    grid-column-gap: 16px;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    height: 580px;
    text-decoration: none;
    display: flex;
}

.rightupleftside {
    grid-row-gap: 16px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    height: 580px;
    text-decoration: none;
    display: flex;
}

.bentoup1 {
    grid-column-gap: 16px;
    border-radius: 8px;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    height: 100%;
    max-height: 204px;
    text-decoration: none;
    display: flex;
}

.vectors-wrapper-8 {
    aspect-ratio: auto;
    object-fit: fill;
    flex: 1;
    justify-content: center;
    align-self: auto;
    align-items: center;
    width: 100%;
    height: 204px;
    text-decoration: none;
    display: flex;
    overflow: visible;
}

.vectors-wrapper-9 {
    object-fit: cover;
    flex: 0 auto;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: none;
    height: 100%;
    text-decoration: none;
    display: flex;
    overflow: visible;
}

.bentophoto_5 {
    grid-column-gap: 8px;
    background-color: #505394;
    background-image: url('../images/_DSC6658.JPG');
    background-position: 50% 0;
    background-repeat: repeat;
    background-size: cover;
    border-radius: 8px;
    justify-content: flex-end;
    align-items: flex-start;
    width: 100%;
    height: 410px;
    padding: 16px;
    display: flex;
}

.bentoinfo-2 {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    background-color: #000;
    border-radius: 4px;
    flex-flow: wrap;
    flex: 0 auto;
    justify-content: flex-start;
    align-items: center;
    padding: 14px 24px;
    text-decoration: none;
    display: flex;
}

.bentotext-2 {
    color: #fff;
    margin-top: 0;
    margin-bottom: 0;
    font-family: Outfit, sans-serif;
    font-size: 24px;
    font-weight: 300;
    line-height: 24px;
    text-decoration: none;
}

.rightuprightside {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    max-width: 328px;
    height: 100%;
    text-decoration: none;
    display: flex;
}

.bentophoto_6 {
    grid-row-gap: 8px;
    background-color: #555aea;
    background-image: url('../images/Ailleron-Innovation-Foum-2024---Meet-the-IT-Architects_1.jpg');
    background-position: 50%;
    background-size: cover;
    border-radius: 16px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-end;
    width: 100%;
    height: 100%;
    padding: 8px;
    text-decoration: none;
    display: flex;
}

.down-right-side {
    grid-column-gap: 16px;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    text-decoration: none;
    display: flex;
}

.social {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    flex-wrap: wrap;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    place-content: flex-start;
    align-items: center;
    width: 100%;
    height: 146px;
    text-decoration: none;
    display: grid;
}

.linksm {
    grid-row-gap: 32px;
    background-color: #7a7dd34d;
    border: 1px solid #7a7dd3;
    border-radius: 8px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 69px;
    padding: 0;
    text-decoration: none;
    display: flex;
}

.image-1 {
    object-fit: cover;
    display: block;
}

.image-2 {
    object-fit: cover;
    border-radius: 4px;
}

.bentophoto_7 {
    grid-column-gap: 16px;
    background-color: #393ee3;
    background-image: url('../images/Ailleron-Innovation-Foum-2024---Conference-Day-and-chill-zone.jpg');
    background-position: 49%;
    background-size: cover;
    border-radius: 8px;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    height: 146px;
    padding: 8px;
    display: flex;
}

.rightdownside {
    grid-column-gap: 16px;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    height: 204px;
    display: flex;
}

.vectors-wrapper-10 {
    object-fit: cover;
    flex: 0 auto;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    display: flex;
}

.bentophoto_8 {
    grid-column-gap: 8px;
    background-color: #1a1d85;
    background-image: url('../images/Ailleron-Innovation-Foum-2024---Conference-Day-and-networking.jpg');
    background-position: 50%;
    background-size: cover;
    border-radius: 8px;
    justify-content: flex-end;
    align-items: flex-start;
    width: 100%;
    height: 204px;
    padding: 16px;
    text-decoration: none;
    display: flex;
}

.footerlinks {
    background-color: #0a0a0a;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1280px;
    padding: 56px 40px;
    text-decoration: none;
    display: flex;
}

.footertext {
    color: #fff;
    margin-top: 0;
    margin-bottom: 0;
    font-family: Outfit, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-decoration: none;
    display: block;
}

/*.footertext.terms-of-participation {*/
/*    display: none;*/
/*}*/

.textbase-4 {
    color: #fff;
    text-align: right;
    margin-top: 0;
    margin-bottom: 0;
    font-family: Outfit, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-decoration: none;
}

.bentophoto_3 {
    grid-row-gap: 8px;
    background-color: #c9caf2;
    background-image: url('../images/Ailleron-Innovation-Foum-2024---Conference-Day-and-AI-Wave-discussion.jpg');
    background-position: 50%;
    background-size: cover;
    border-radius: 16px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    height: 100%;
    padding: 8px;
    text-decoration: none;
    display: flex;
}

.bentophoto_4 {
    grid-row-gap: 8px;
    background-color: #c9caf2;
    background-image: url('../images/Ailleron-Innovation-Foum-2024---Conference-Day-with-ING-and-LiveBank-presentation.jpg');
    background-position: 50% 0;
    background-size: cover;
    border-radius: 16px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    height: 100%;
    padding: 8px;
    text-decoration: none;
    display: flex;
}

.bentophoto_9 {
    grid-column-gap: 8px;
    background-color: #1a1d85;
    background-image: url('../images/Ailleron-Innovation-Foum-2024---with-200-participants-on-the-Conference-Day.jpg');
    background-position: 50%;
    background-size: cover;
    border-radius: 8px;
    justify-content: flex-end;
    align-items: flex-start;
    width: 100%;
    height: 204px;
    padding: 16px;
    text-decoration: none;
    display: flex;
}

.youtube-2 {
    height: 540px;
}

.show-more-button {
    color: var(--black);
    background-color: #0000;
    margin-top: 15px;
    margin-left: 40px;
    padding: 0;
}

.yt-wraper {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    perspective: 440px;
    flex-flow: row;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: center;
    align-self: stretch;
    align-items: center;
    width: 100%;
    height: auto;
    margin-top: 60px;
    display: flex;
    transform: none;
}

.bold-text {
    text-align: left;
    font-weight: 700;
}

.time-form {
    color: #141623;
    text-align: left;
    flex: 1;
    justify-content: flex-end;
    align-items: center;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 1rem;
    font-weight: 700;
    line-height: 140%;
    text-decoration: none;
    display: flex;
}

.textlink {
    color: var(--black);
    font-weight: 600;
    text-decoration: underline;
}

.image-testimonials {
    background-color: #7a7dd3;
    background-image: url('../images/6682bb3e3aba781c15520885_Peter-Heinzl-Fintech.jpg');
    background-size: cover;
    border-radius: 8px;
    justify-content: center;
    align-items: center;
    width: 50%;
    max-width: 340px;
    text-decoration: none;
    display: flex;
}

.youtube-3 {
    height: 100%;
}

.image-3 {
    background-color: #7a7dd3;
    background-image: url('../images/Andrew-Klamerus.jpeg');
    background-size: cover;
    border-radius: 8px;
    justify-content: center;
    align-items: center;
    width: 50%;
    max-width: 340px;
    text-decoration: none;
    display: flex;
}

.form-sent-text {
    text-align: left;
    font-weight: 400;
}

.text-block {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    text-align: left;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    display: block;
}

.success-message {
    background-color: #f2f2fb;
    border: 1px solid #7a7dd3;
    border-radius: 11px;
}

.bold-text-2 {
    display: block;
}

.bold-text-mrssage {
    margin-bottom: 8px;
    display: block;
}

.error-message {
    border-radius: 8px;
}

.image_speaker_2 {
    grid-column-gap: 8px;
    background-color: #7a7dd3;
    background-image: url('../images/patrycja.png');
    background-position: 50% 0;
    background-size: cover;
    justify-content: flex-end;
    align-items: flex-start;
    width: 100%;
    height: 300px;
    padding: 16px;
    text-decoration: none;
    display: flex;
}

.image_speaker_3 {
    grid-column-gap: 8px;
    background-color: #7a7dd3;
    background-image: url('../images/michał.png');
    background-position: 50% 0;
    background-size: cover;
    justify-content: flex-end;
    align-items: flex-start;
    width: 100%;
    height: 300px;
    padding: 16px;
    text-decoration: none;
    display: flex;
}

.image_speaker_4 {
    grid-column-gap: 8px;
    background-color: #7a7dd3;
    background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
    background-size: auto;
    justify-content: flex-end;
    align-items: flex-start;
    width: 100%;
    height: 300px;
    padding: 16px;
    text-decoration: none;
    display: flex;
}

.image_speaker_5 {
    grid-column-gap: 8px;
    background-color: #7a7dd3;
    background-image: url('../images/Irek.png');
    background-position: 50% 0;
    background-size: cover;
    justify-content: flex-end;
    align-items: flex-start;
    width: 100%;
    height: 300px;
    padding: 16px;
    text-decoration: none;
    display: flex;
}

.image_speaker_6 {
    grid-column-gap: 8px;
    background-color: #7a7dd3;
    background-image: url('../images/Fintech-Marketing-Waldemar.png');
    background-position: 50%;
    background-size: cover;
    justify-content: flex-end;
    align-items: flex-start;
    width: 100%;
    height: 300px;
    padding: 16px;
    text-decoration: none;
    display: flex;
}

.image_speaker_7 {
    grid-column-gap: 8px;
    background-color: #7a7dd3;
    background-image: url('../images/piotr.png');
    background-position: 50% 0;
    background-size: cover;
    justify-content: flex-end;
    align-items: flex-start;
    width: 100%;
    height: 300px;
    padding: 16px;
    text-decoration: none;
    display: flex;
}

.image_speaker_8 {
    grid-column-gap: 8px;
    background-color: #7a7dd3;
    background-image: url('../images/kamil.png');
    background-position: 50% 0;
    background-size: cover;
    justify-content: flex-end;
    align-items: flex-start;
    width: 100%;
    height: 300px;
    padding: 16px;
    text-decoration: none;
    display: flex;
}

.image_speaker_9 {
    grid-column-gap: 8px;
    background-color: #7a7dd3;
    background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
    background-size: auto;
    justify-content: flex-end;
    align-items: flex-start;
    width: 100%;
    height: 300px;
    padding: 16px;
    text-decoration: none;
    display: flex;
}

.image_speaker_placeholder {
    grid-column-gap: 8px;
    background-color: #7a7dd3;
    background-image: url('../images/placeholder-kopia-3-2.png');
    background-position: 50%;
    background-size: cover;
    justify-content: flex-end;
    align-items: flex-start;
    width: 100%;
    height: 300px;
    padding: 16px;
    text-decoration: none;
    display: flex;
}

.container-3 {
    width: 100%;
    max-width: 1280px;
}

.background-video-6 {
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    display: flex;
}

.link-block {
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    display: flex;
}

.hubspot-legalconsent {
    margin-top: 1rem;
}

.hubspot-checkbox {
    aspect-ratio: auto;
    opacity: 0;
    outline-offset: 0px;
    background-color: #fff;
    border: 3px solid #000;
    border-radius: 20px;
    outline: 3px #333;
    width: 24px;
    min-width: 24px;
    max-width: 24px;
    height: 24px;
    min-height: 24px;
    max-height: 24px;
    margin-left: .5rem;
    margin-right: .5rem;
    position: absolute;
}

.hubspot-checkbox.checkbox-2 {
    outline-offset: 0px;
    border-style: none;
    border-width: 1px;
    border-radius: 8px;
    outline: 3px #333;
    font-weight: 400;
}

.checkbox-contener {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-flow: column;
    order: 0;
    width: 100%;
    margin-top: 8px;
    display: flex;
}

.speaker_image {
    width: 100%;
}

.stanowisko {
    color: var(--black);
    margin-top: 0;
    margin-bottom: 0;
    font-family: Outfit, sans-serif;
    font-weight: 400;
    line-height: 140%;
    text-decoration: none;
}

.stanowisko.terms {
    margin-left: 16px;
    padding-top: 16px;
    display: block;
}

.checkbox-error {
    background-color: #ffcdcd;
    border: 1px solid #f14f4f;
    border-radius: 6px;
    width: 100%;
    margin-top: 20px;
    padding: 15px 15px 5px;
    display: none;
    position: relative;
}

.paragraph {
    color: #b80101;
    -webkit-text-stroke-color: #8d0808;
    text-transform: none;
    border: 1px #fa3d3d;
}

.spaker_image {
    flex: 0 auto;
    width: 100px;
    min-width: 0;
    height: auto;
}

.image_speaker_placeholder-copy {
    grid-column-gap: 8px;
    background-color: #7a7dd3;
    background-image: url('../images/placeholder-kopia-3-2.png');
    background-position: 50%;
    background-size: cover;
    justify-content: flex-end;
    align-items: flex-start;
    width: 100%;
    height: 300px;
    padding: 16px;
    text-decoration: none;
    display: flex;
}

.speaker_image-copy {
    width: 100%;
}

.card-copy {
    border-radius: 8px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 227.2px;
    height: 300px;
    text-decoration: none;
    display: flex;
    position: relative;
    overflow: hidden;
}

.agendabodytext-light {
    color: #141623;
    margin-top: 8px;
    margin-bottom: 0;
    font-size: 1rem;
    font-weight: 400;
    line-height: 140%;
    text-decoration: none;
}

.link {
    color: #000;
    font-weight: 600;
}

.div-block-2 {
    justify-content: center;
    align-self: auto;
    align-items: center;
    width: 100px;
    min-width: 100%;
    height: 560px;
    min-height: 100%;
    display: flex;
}

.terms-3 {
    line-height: 140%;
}

.div-block-3 {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    display: flex;
}

.select-all-checkboxes {
    color: #787ccf;
    align-self: auto;
    margin-left: 24px;
    font-weight: 500;
    display: block;
    position: relative;
}

.slide-2 {
    box-sizing: border-box;
    vertical-align: middle;
    position: relative;
}

.div-block-4 {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: center;
    align-items: center;
    display: flex;
}

.mask {
    object-fit: fill;
}

.slider-2 {
    background-color: #ddd0;
}

.splide {
    width: 100%;
    max-width: 1280px;
    margin-bottom: 100px;
}

.parters {
    width: 100%;
    max-width: 1280px;
    display: block;
}

.splide__list {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: center;
    align-items: center;
    margin-bottom: 0;
    padding-left: 0;
    list-style-type: none;
    display: flex;
}

.splide__slide {
    border-radius: 0;
    flex: 0 auto;
    align-self: auto;
    margin-left: 0;
    position: relative;
}

.partners-carousel {
    background-color: #0a0a0a;
    padding: 80px 40px;
    display: block;
}

.parnets-container {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template: "Area"
                 "."
                 / 1fr 1fr;
    grid-auto-columns: 1fr;
    width: 100%;
    max-width: 1280px;
    display: block;
}

.marquee.marquee--8 {
    margin-top: 60px;
    display: flex;
}

.marquee__image {
    display: block;
}

.list {
    padding-top: 15px;
    padding-left: 30px;
    list-style-type: disc;
}

.italic-text {
    font-style: normal;
    font-weight: 500;
    text-decoration: none;
}

.list-item {
    padding-top: 0;
}

.list-item-2, .list-item-3 {
    padding-top: 5px;
}

._24px {
    align-self: center;
    width: 24px;
    height: 100%;
    display: flex;
}

.bold-text-4 {
    font-weight: 400;
}

.registraction-colse {
    color: #7a7dd3;
    padding-bottom: 4px;
    font-size: 1rem;
    font-weight: 400;
}

.text-block-2 {
    font-weight: 400;
}

.primary-btn {
    border-radius: var(--btn-radius);
    background-color: #787ccf;
    border: 1px solid #767bcb;
    margin-top: 0;
    padding: 16px 35px;
    transition: all .35s;
}

.primary-btn:hover {
    background-color: #2b2c45;
    color:white;
}

.flex-block {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    flex-flow: row;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
}

.secondary-btn {
    background-color: #3898ec00;
    border: 1px solid #767bcb;
    border-radius: 8px;
    padding: 16px 35px;
    transition: all .35s;
}

.secondary-btn:hover {
    color: #787ccf;
    background-color: #f5f5f500;
}

.header-bg {
    opacity: .3;
    background-image: url('../images/Full-HD-was.png');
    background-position: 0 0;
    background-size: cover;
    background-attachment: fixed;
    width: 100%;
    height: 100%;
    display: none;
    position: absolute;
    inset: 0;
}

.gallery {
    grid-row-gap: 80px;
    background-color: var(--white);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: none;
    padding: 80px 40px;
    text-decoration: none;
    display: flex;
    position: relative;
}

.container-4 {
    width: 100%;
    max-width: 1280px;
}

.grid {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-flow: row;
}

.lightbox-link {
    box-sizing: border-box;
    object-fit: fill;
    background-color: #000;
    border: 0 solid #767bcb;
    border-radius: 8px;
    max-height: 300px;
    overflow: hidden;
}

.image-13 {
    opacity: .5;
    object-fit: cover;
    max-width: 100%;
    min-height: 100%;
    transition: all .35s;
    overflow: clip;
}

.image-13:hover {
    opacity: 1;
}

.bentosectio {
    grid-column-gap: 80px;
    background-color: #0a0a0a;
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: auto;
    padding: 80px 0;
    text-decoration: none;
    display: flex;
    position: relative;
}

.paragraph-2 {
    color: #fff;
    margin-top: 20px;
    font-family: Outfit, sans-serif;
    font-size: 18px;
    font-weight: 300;
    line-height: 30px;
}

.tabs-menu-2 {
    background-color: #f5f5f5;
    border-radius: 8px;
    max-width: 760px;
    margin-bottom: 60px;
    padding: 4px;
    font-family: Outfit, sans-serif;
    font-size: 1.25rem;
    line-height: 120%;
    display: flex;
}

.tab-link-workshops {
    padding: 24px;
}

.tab-link-conference {
    padding-top: 24px;
}

.tab-link-conference.w--current {
    padding-bottom: 24px;
    padding-left: 24px;
    padding-right: 24px;
}

.tabs-3 {
    margin-bottom: 60px;
    padding: 4px;
}

.text-block-3, .text-block-4 {
    font-weight: 800;
}

.bold-text-5 {
    font-family: Outfit, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 120%;
}

.paragraph-3 {
    max-width: 760px;
    font-family: Outfit, sans-serif;
    font-size: 1rem;
    line-height: 120%;
}

.div-block-5 {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: flex;
}

.div-block-6 {
    width: 1280px;
}

.image-14 {
    object-fit: cover;
    min-height: 100%;
}

.mt-6 {
    margin-top: 60px;
}

@media screen and (max-width: 991px) {
  h2{
  font-size:2.5rem;
  }
  
  .hero-setion{
  height: 78vh;
  }
  
  ul.hs-image__grid__list {
    margin-top: 45px;
}
    .nav-menu-wrapper {
        background-color: #0000;
    }

    .nav-menu {
        background-color: #fff;
        flex-wrap: wrap;
        justify-content: space-around;
        align-items: center;
        padding-left: 0;
        display: flex;
    }

    .nav-link {
        padding-left: 5px;
        padding-right: 5px;
    }

    .nav-dropdown-list.shadow-three.w--open {
        position: absolute;
    }

    .nav-button-wrapper {
        width: 100%;
        margin-left: 0;
    }

    .menu-button {
        padding: 12px;
    }

    .menu-button.w--open {
        color: #fff;
        background-color: #a6b1bf;
    }

    .rl_menu-icon2_line-bottom {
        background-color: #000;
        width: 24px;
        height: 2px;
        padding-bottom: 0;
        padding-right: 0;
    }

    .rl_menu-icon_line-middle-inner {
        width: 4px;
        height: 0;
        padding-bottom: 0;
        padding-right: 0;
    }

    .rl_menu-icon2_line-middle {
        background-color: #000;
        justify-content: center;
        align-items: center;
        width: 24px;
        height: 2px;
        margin-top: 6px;
        margin-bottom: 6px;
        padding-bottom: 0;
        padding-right: 0;
        display: flex;
    }

    .rl_menu-icon2_line-top {
        background-color: #000;
        width: 24px;
        height: 2px;
        padding-bottom: 0;
        padding-right: 0;
    }

    .rl_menu-icon2 {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 48px;
        height: 48px;
        margin-right: -.5rem;
        padding-bottom: 0;
        padding-right: 0;
        display: flex;
    }

    .rl_navbar2_menu-button {
        padding: 0;
    }

    .rl_navbar2_menu-button.w--open {
        background-color: #0000;
    }

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

    .rl_navbar2_dropdown-link {
        text-align: center;
        width: auto;
        padding: .75rem 0;
        font-size: 16px;
    }

    .rl_navbar2_dropdown-list {
        position: static;
        overflow: hidden;
    }

    .rl_navbar2_dropdown-list.w--open {
        border-style: none;
        padding: 0;
        position: static;
    }

    .rl-dropdown-icon {
        margin-top: 0;
        margin-bottom: 0;
        margin-right: 0;
        inset: auto 0% auto auto;
    }

    .rl_navbar2_dropdwn-toggle {
        align-items: center;
        margin-left: 0;
        margin-right: 0;
        padding: 1rem 2rem 1rem 0;
        display: flex;
    }

    .rl_navbar2_menu-dropdown {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        font-size: 1.125rem;
        display: flex;
    }

    .rl_navbar2_link {
        text-align: center;
        padding: 1rem 0;
        font-size: 1.125rem;
    }

    .rl_navbar2_menu {
        -webkit-text-fill-color: inherit;
        background-color: #fff;
        background-clip: border-box;
        border-bottom: 1px solid #000;
        justify-content: center;
        padding: 1rem 5% 2.5rem;
        display: flex;
        position: absolute;
        overflow: auto;
    }

    .rl_navbar2_menu.is-page-height-tablet {
        height: 100vh;
        padding-bottom: 15rem;
    }

    .rl_navbar2_container {
        grid-template-columns: .25fr 1fr;
        display: flex;
    }

    .rl-heading-style-h1 {
        font-size: 3.25rem;
    }

    .rl-heading-style-h2 {
        font-size: 2.75rem;
    }

    .rl_layout1_component {
        grid-column-gap: 3rem;
        grid-template-columns: 1fr 1fr;
        grid-auto-flow: row;
        min-height: auto;
    }

    .rl-padding-section-large {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }

    .rl-heading-style-h4 {
        font-size: 1.75rem;
    }

    .rl_contact20_content {
        grid-column-gap: 2rem;
    }

    .rl_contact20_spacing-block-3 {
        padding-bottom: 4.5rem;
    }

    .rl_testimonial15_content {
        grid-column-gap: 2.5rem;
        grid-row-gap: 2.5rem;
        grid-template-columns: 1fr 1fr;
        grid-auto-flow: row;
        min-height: auto;
    }

    .rl_team8_spacing-block-7 {
        padding-bottom: 5rem;
    }

    .rl_team8_list {
        grid-column-gap: 2rem;
    }

    .rl_team8_spacing-block-3 {
        padding-bottom: 4.5rem;
    }

    .rl_content6_component {
        grid-column-gap: 3rem;
        grid-auto-flow: row;
        min-height: auto;
    }

    .rl-heading-style-h2-2 {
        font-size: 2.75rem;
    }

    .rl_content6_component-2 {
        grid-column-gap: 3rem;
        grid-auto-flow: row;
        min-height: auto;
    }

    .rl-padding-section-large-2 {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }

    .rl_footer3_spacing-block-4 {
        padding-bottom: 4.5rem;
    }

    .rl_footer3_top-wrapper {
        grid-row-gap: 4rem;
        grid-template-columns: 1fr;
    }

    .rl-padding-section-medium {
        padding-top: 4.5rem;
        padding-bottom: 4.5rem;
    }

    .leftside {
        justify-content: center;
        align-items: center;
    }

    .agendatype {
        min-width: auto;
    }

    .div-block {
        display: none;
    }

    .forms {
        flex-flow: column;
    }

    .form-wrapper {
        width: 100%;
    }

    .form-text-input {
        font-size: 1rem;
    }

    .terms {
        padding-top: 24px;
        padding-left: 0;
    }

    .image {
        display: none;
    }

    .slider {
        width: 100%;
    }

    .prelegenci_kafle {
        flex-flow: wrap;
        align-items: center;
    }

    .hero-container {
        flex-direction: column;
        align-items: center;
    }

    .localization {
        flex: 0 auto;
    }

    .hero-image {
        display: none;
    }

    .navbar-logo-left {
        padding-right: 0;
    }

    .navbar-menu {
        max-width: unset;
    }

    .navbar-link, .navbar-button {
        justify-content: center;
    }

    .leftside-2, .yt-wraper, .image-testimonials, .image-3 {
        display: none;
    }

    .grid {
        grid-column-gap: 15px;
        grid-row-gap: 15px;
    }
}

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

  .clock-number{
    font-size:2rem;
  }
  .timerdesc{
    font-size:13px;
  }
    .navbar-brand {
        padding-left: 0;
    }

    .nav-menu {
        flex-direction: column;
        padding-bottom: 30px;
        padding-left: 0;
    }

    .nav-link {
        padding-top: 10px;
        padding-bottom: 10px;
        display: inline-block;
    }

    .nav-dropdown {
        flex-direction: column;
        align-items: center;
        display: flex;
    }

    .nav-dropdown-toggle {
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .nav-dropdown-list.shadow-three {
        box-shadow: 0 8px 50px #0000000d;
    }

    .nav-dropdown-list.shadow-three.w--open {
        position: relative;
    }

    .nav-dropdown-list.shadow-three.mobile-shadow-hide {
        box-shadow: none;
    }

    .mobile-margin-top-10 {
        margin-top: 10px;
    }

    .rl_navbar2_button {
        padding: .25rem 1rem;
    }

    .rl_navbar2_component {
        min-height: 4rem;
    }

    .rl_heading1_spacing-block-2 {
        padding-bottom: 1.5rem;
    }

    .rl-text-style-medium {
        font-size: 1rem;
    }

    .rl_heading1_spacing-block-1 {
        padding-bottom: 1.25rem;
    }

    .rl-heading-style-h1 {
        font-size: 2.5rem;
    }

    .rl_layout1_spacing-block-3 {
        padding-bottom: 1.5rem;
    }

    .rl_layout1_spacing-block-2 {
        padding-bottom: 1.25rem;
    }

    .rl-heading-style-h2 {
        font-size: 2.25rem;
    }

    .rl_layout1_spacing-block-1 {
        padding-bottom: .75rem;
    }

    .rl_layout1_component {
        grid-row-gap: 3rem;
        grid-template-columns: 1fr;
    }

    .rl-padding-section-large {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }

    .rl_contact20_spacing-block-6 {
        padding-bottom: 1.25rem;
    }

    .rl_contact20_spacing-block-5 {
        padding-bottom: .75rem;
    }

    .rl-heading-style-h4 {
        font-size: 1.5rem;
        line-height: 1.4;
    }

    .rl_contact20_spacing-block-4 {
        padding-bottom: 1.25rem;
    }

    .rl_contact20_content {
        grid-row-gap: 3rem;
        grid-template-columns: 1fr;
    }

    .rl_contact20_spacing-block-3 {
        padding-bottom: 3rem;
    }

    .rl_contact20_spacing-block-2 {
        padding-bottom: 1.25rem;
    }

    .rl_contact20_spacing-block-1 {
        padding-bottom: .75rem;
    }

    .rl_testimonial15_slide-nav {
        inset: 0% auto auto 0%;
    }

    .rl_testimonial15_arrow-right {
        inset: 0% 0% auto auto;
    }

    .rl_testimonial15_arrow-left {
        inset: 0% 4rem auto auto;
    }

    .rl_testimonial15_client {
        align-items: center;
        width: 100%;
    }

    .rl_testimonial_spacing-block-1 {
        padding-bottom: 1.5rem;
    }

    .rl-heading-style-h5 {
        font-size: 1.25rem;
    }

    .rl_testimonial15_content {
        grid-row-gap: 3rem;
        grid-template-columns: 1fr;
    }

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

    .rl_testimonial15_component {
        padding-top: 5rem;
        padding-bottom: 0;
    }

    .rl_team8_spacing-block-9 {
        padding-bottom: 1.5rem;
    }

    .rl_team8_spacing-block-8 {
        padding-bottom: .75rem;
    }

    .rl_team8_spacing-block-7 {
        padding-bottom: 3.5rem;
    }

    .rl_team8_spacing-block-6 {
        padding-bottom: 1.25rem;
    }

    .rl_team8_spacing-block-5 {
        padding-bottom: .75rem;
    }

    .rl_team8_name-text {
        font-size: 1.125rem;
    }

    .rl_team8_spacing-block-4 {
        padding-bottom: 1.25rem;
    }

    .rl_team8_image-wrapper {
        height: 100%;
    }

    .rl_team8_list {
        grid-row-gap: 3rem;
        grid-template-columns: 1fr;
    }

    .rl_team8_spacing-block-3 {
        padding-bottom: 3rem;
    }

    .rl_team8_spacing-block-2 {
        padding-bottom: 1.25rem;
    }

    .rl_team8_spacing-block-1, .rl_contact6_spacing-block-5, .rl_contact6_spacing-block-6 {
        padding-bottom: .75rem;
    }

    .rl_contact6_form-field-2col {
        grid-template-columns: 1fr;
    }

    .rl_contact6_spacing-block-3 {
        padding-bottom: 1.5rem;
    }

    .rl_contact6_spacing-block-2 {
        padding-bottom: 1.25rem;
    }

    .rl_contact6_spacing-block-1 {
        padding-bottom: .75rem;
    }

    .rl_content6_component {
        grid-row-gap: 3rem;
        grid-template-columns: 1fr;
    }

    .rl_contact6_spacing-block-5-2, .rl_contact6_spacing-block-6-2 {
        padding-bottom: .75rem;
    }

    .rl_contact6_form-field-2col-2 {
        grid-template-columns: 1fr;
    }

    .rl_contact6_spacing-block-3-2 {
        padding-bottom: 1.5rem;
    }

    .rl-text-style-medium-2 {
        font-size: 1rem;
    }

    .rl_contact6_spacing-block-2-2 {
        padding-bottom: 1.25rem;
    }

    .rl-heading-style-h2-2 {
        font-size: 2.25rem;
    }

    .rl_contact6_spacing-block-1-2 {
        padding-bottom: .75rem;
    }

    .rl_content6_component-2 {
        grid-row-gap: 3rem;
        grid-template-columns: 1fr;
    }

    .rl-padding-section-large-2 {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }

    .rl_footer3_legal-list {
        grid-column-gap: 0rem;
        grid-row-gap: 1rem;
        grid-auto-flow: row;
    }

    .rl_footer3_credit-text {
        margin-top: 2rem;
    }

    .rl_footer3_bottom-wrapper {
        flex-direction: column-reverse;
        align-items: flex-start;
        padding-bottom: 1rem;
    }

    .rl_footer3_spacing-block-5 {
        padding-bottom: 1.5rem;
    }

    .rl_footer3_spacing-block-4 {
        padding-bottom: 3rem;
    }

    .rl_footer3_menu-wrapper {
        grid-column-gap: 1.5rem;
    }

    .rl_footer3_spacing-block-3 {
        padding-bottom: 1.5rem;
    }

    .rl_footer3_spacing-block-2 {
        padding-bottom: 1.25rem;
    }

    .rl_footer3_spacing-block-1 {
        padding-bottom: 1.5rem;
    }

    .rl_footer3_top-wrapper {
        grid-row-gap: 3rem;
    }

    .rl-padding-section-medium {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }


    .agendabox {
        grid-column-gap: 8px;
        grid-row-gap: 8px;
        flex-flow: column;
    }

    .h3.whitte {
        font-size: 2.3rem;
    }

    .contact-form {
        padding-left: 20px;
        padding-right: 20px;
    }

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

    .form-wrapper {
        min-width: auto;
    }

    .testimonial-image-left {
        padding-left: 20px;
        padding-right: 20px;
    }

    .small-columns {
        flex-direction: column;
        align-items: center;
    }

    .team-section {
        padding-left: 20px;
        padding-right: 20px;
    }

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

    .card {
        justify-content: flex-start;
        align-items: center;
        height: 430px;
    }

    .opis-prelegenci {
        bottom: 0%;
    }

    .links {
        justify-content: space-between;
        align-items: flex-end;
    }

    .company-name {
        line-height: 140%;
    }

    .aboutsection {
        padding-left: 20px;
        padding-right: 20px;
    }

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

    .column-2 {
        margin-right: 0;
    }

    .localizationbox {
        grid-row-gap: 16px;
    }

    .h4 {
        color: var(--white);
        font-size: 2rem;
        line-height: 110%;
    }

    .navbar-menu {
        background-color: #0a0a0a;
    }

    .navbar-button {
        height: auto;
        margin-bottom: 20px;
        margin-left: 20px;
        margin-right: 20px;
        padding-top: 16px;
        padding-bottom: 16px;
    }

    .container-2 {
        padding-left: 20px;
        padding-right: 20px;
    }

    .timer {
        flex-flow: row;
        height: 150px;
    }

    .timerbox {
        height: auto;
        padding: 16px;
    }

    .h1 {
        font-size: 3.8rem;
    }

    .background-video-4 {
        object-position: 50% 50%;
        width: auto;
        max-width: none;
        height: 65vw;
        max-height: none;
        display: block;
    }

    .footer-section {
        padding-left: 20px;
        padding-right: 20px;
    }

    .bento-contener {
        padding-left: 0;
        padding-right: 0;
    }

    .rightupleftside {
        display: none;
    }

    .rightuprightside {
        max-width: none;
    }

    .bentophoto_8 {
        background-position: 50% 67%;
    }

    .footerlinks {
        grid-column-gap: 16px;
        grid-row-gap: 16px;
        flex-flow: column;
    }

    .bentophoto_9 {
        display: none;
    }

    .menu-button-2 {
        border-radius: 8px 8px 0 0;
    }

    .menu-button-2.w--open {
        background-color: #0a0a0a;
    }

    .card-copy {
        justify-content: flex-start;
        align-items: center;
        height: 430px;
    }

    .gallery, .bentosectio {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media screen and (max-width: 479px) {
  .timerbox {
       padding: 14px;
    }
  .timerdesc{
    font-size:11px;
  }
    .nav-menu {
        flex-direction: column;
    }

    .nav-button-wrapper {
        width: auto;
    }

    .rl_layout1_component, .rl_contact20_content, .rl_testimonial15_content {
        grid-template-columns: 1fr;
    }

    .rl_team8_image-wrapper {
        padding-top: 66%;
    }

    .rl_team8_list, .rl_content6_component, .rl_content6_component-2 {
        grid-template-columns: 1fr;
    }

    .rl_footer3_menu-wrapper {
        grid-row-gap: 40px;
        grid-template-columns: 1fr;
    }

    .rightsideagenda {
        padding: 10px 16px;
    }

    .timetext {
        display: none;
    }

    .rightsideagendabrake {
        padding: 16px;
    }

    .h2 {
        font-size: 2.4rem;
    }

    .h2.white {
        padding-bottom: 0;
    }

    .h3.whitte {
        font-size: 1.3rem;
        font-weight: 700;
    }

    .speakersbox {
        flex-flow: column;
    }

    .tab_1.w--current, .tab_2 {
        height: 94px;
    }

    .checkboxframe {
        max-width: none;
    }

    .form-button {
        width: 100%;
    }

    .terms {
        padding-right: 0;
    }

    .testimonial-image-left {
        grid-row-gap: 64px;
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .content {
        grid-row-gap: 16px;
        padding: 16px;
    }

    .title-2, .description, .description-1 {
        font-size: 1rem;
    }

    .slider {
        flex-flow: wrap;
        justify-content: flex-end;
        align-items: flex-end;
        display: flex;
    }

    .left-arrow {
        margin-top: 16px;
        margin-left: 0;
        margin-right: 0;
        position: relative;
        inset: 0% auto auto 0%;
    }

    .right-arrow {
        margin-top: 16px;
        margin-left: 0;
        margin-right: 0;
        position: relative;
        top: 0%;
        right: 0%;
    }

    .slide-nav {
        display: none;
    }

    .column-2 {
        justify-content: center;
        align-items: flex-start;
    }

    .localization {
        grid-row-gap: 24px;
        flex-flow: column;
    }

    .h4 {
        font-size: 1.6rem;
    }

    .background-video-2 {
        order: 1;
        display: none;
    }

    .timerbox.sec, .dividericon.div {
        display: none;
    }

    .h1 {
        font-size: 3rem;
    }

    .subheading-agenda {
        flex-flow: column;
        justify-content: flex-start;
        align-items: flex-start;
    }

    .background-video-4 {
        height: 79vw;
        max-height: 500px;
    }

    .footertext {
        text-align: center;
        font-size: 1rem;
        line-height: 150%;
    }

    .menu-button-2 {
        background-color: #0000;
    }

    .select-all-checkboxes {
        color: #333;
        background-color: #3898ec00;
        font-weight: 500;
    }

    .grid {
        grid-column-gap: 10px;
        grid-row-gap: 10px;
        grid-template-rows: auto auto;
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (min-width: 1240px) {
  .hero-setion{
  min-height: 840px;
    height: 78vh;
  }
    h1{
      font-size:4.5rem;
  }
  h2{
  font-size:3.5rem;
  }
}

#w-node-aa1251ce-c1b4-0c3f-d822-1d510139d88e-38f6e17c {
    align-self: auto;
}

#w-node-b8802f9c-33a4-8187-37e7-935a1be8badb-92ee0ec1, #w-node-c9e4e697-6f2a-ed9e-c645-af8e02059d82-92ee0ec1, #w-node-_297aba83-5dbd-6ab5-59cd-b2b59d8eef1e-92ee0ec1, #w-node-_7871c077-889e-7269-1ce2-b4a1a4f3596c-92ee0ec1, #w-node-_75c29291-bd39-f319-75e6-c145a1e51e8f-92ee0ec1, #w-node-d0867daf-934b-82a7-f729-e1d201552733-92ee0ec1, #w-node-e7a49dd0-8b08-2790-997c-9a77c2aa504b-92ee0ec1, #w-node-c6b3bcaa-58fe-d409-4142-ecef6009a828-92ee0ec1, #w-node-_6903671c-29f0-267c-13d6-ed0cbb76c3cb-92ee0ec1, #w-node-dbbe0fbd-aae5-ecdd-4798-c921e58fa549-92ee0ec1 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    place-self: auto;
}

#w-node-_39614e8a-b295-853c-3557-2e41ee66d1ed-92ee0ec1 {
    grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-ab615a81-4cc3-3362-cdfb-b2510fa00fd4-92ee0ec1, #w-node-_39614e8a-b295-853c-3557-2e41ee66d1f3-92ee0ec1, #w-node-_39614e8a-b295-853c-3557-2e41ee66d1f5-92ee0ec1, #w-node-c94b058e-6f11-86be-2b86-6861201c1973-92ee0ec1, #w-node-b3067e1f-5fed-1f81-e2b9-44b034465166-92ee0ec1, #w-node-d3a31df7-58bf-15c5-69f2-dc59841bd5b1-92ee0ec1, #w-node-b8832324-5b21-6ff8-7c84-98d08050cc59-92ee0ec1, #w-node-dff40bd4-a851-de26-d096-5b7129017fa1-92ee0ec1, #w-node-_1f1a9968-b779-43b1-709e-b6987f564935-92ee0ec1, #w-node-e5ea8ec5-9ec0-c313-8c58-72da0be186f5-92ee0ec1, #w-node-_5caf5472-6345-1cc6-a14a-c85cb36649b7-92ee0ec1, #w-node-_775ec8b1-059f-30e3-ab71-1dd6a5ecc116-92ee0ec1, #w-node-ea390cf3-8284-5682-a7f1-f1b8207713fb-92ee0ec1, #w-node-_6f732e78-c82e-2fa6-5e13-9b65bcb69a87-92ee0ec1, #w-node-bb79324c-5b3b-a273-3607-297e5e7e95bd-92ee0ec1, #w-node-a6aa417e-84fb-b790-98f1-adf2c01f469f-92ee0ec1, #w-node-_80890f64-fb69-f3e2-698f-e9808ab2e580-92ee0ec1, #w-node-_8375009f-49ee-ee25-27b0-e726b2b1a7d9-92ee0ec1, #w-node-_71b4a17f-156b-7e1e-4400-dd65f42860c6-92ee0ec1, #w-node-_7d3799b4-749d-b7cc-19ee-56045e6b5f09-92ee0ec1, #w-node-c6c708b5-ef35-8707-8e83-e9db622ced2e-92ee0ec1, #w-node-d46851fa-77bc-9f92-125c-06ec207ddb24-92ee0ec1, #w-node-c2cc2fea-49a5-257c-4574-417b31d23c1d-92ee0ec1, #w-node-df6bccce-cc69-2840-b02f-2225dd2330b9-92ee0ec1, #w-node-_0942ba65-813e-5daf-1006-cf0b506cb94f-92ee0ec1, #w-node-_9df38a01-f9a3-b84e-645a-415248e92e99-92ee0ec1, #w-node-_14a69d3b-8c47-0c0c-3d46-a4ef4ac04fd3-92ee0ec1, #w-node-de7f5ef9-aa6f-9697-f4bb-84d68ffa7608-92ee0ec1, #w-node-_1b5bc24e-75ba-795c-b6c2-3efc36c4e899-92ee0ec1, #w-node-_0a3fefea-ffdb-f7d2-566f-e59865743c2a-92ee0ec1, #w-node-_084aa472-6b26-ba60-719e-93f26fd879b4-92ee0ec1, #w-node-b6fd9d45-549d-204a-4bdf-f83283491b29-92ee0ec1, #w-node-_64e53fac-41b5-f50b-205e-2867101fc452-92ee0ec1 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    place-self: auto;
}

#w-node-_39614e8a-b295-853c-3557-2e41ee66d1eb-92ee0ec1 {
    grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_2c1a7419-36c0-9132-5344-a5fbfaed719b-92ee0ec1, #w-node-d3c9bc67-134a-b87a-2f0d-e919126d815b-92ee0ec1, #w-node-c0aee1cd-3c0f-54a6-b229-5b35802ac294-92ee0ec1, #w-node-_62f80cf3-812f-c5d1-9ef0-270dda9932e9-92ee0ec1, #w-node-c11c069e-081d-c222-4ffb-d45c02444a30-92ee0ec1, #w-node-cf92e2f5-7bdc-0c14-0ba6-234685b22fd3-92ee0ec1, #w-node-ded6370a-c691-9fda-2a75-ece5c6e627bb-92ee0ec1, #w-node-f0ee56a3-16ce-44f9-f216-75b4b9ccd1a3-92ee0ec1, #w-node-_640bdd1d-ca99-a15d-977e-cc9538a3751b-92ee0ec1, #w-node-cd4e4f01-0919-53b3-93be-0f4a4caf2696-92ee0ec1 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    place-self: auto;
}

#w-node-f6fd5d2c-3288-2c2c-3d2c-dd4fc85c6d0c-92ee0ec1, #w-node-_03db6ee7-8f50-a8b6-b20f-8aaa9f945944-92ee0ec1, #w-node-_06fda741-6466-b2bf-925a-a6faf7a7303d-92ee0ec1, #w-node-_48af48dc-a1d9-8905-5566-16a1e91d897f-92ee0ec1 {
    grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f091b83f-8fff-a2e4-900a-4f159079626f-92ee0ec1, #w-node-_77b0ca0b-5533-ffd2-16ad-bd7e01206c94-92ee0ec1, #w-node-_033cfc18-6ca1-a3cc-8ce4-0ccbf8775a4c-92ee0ec1, #w-node-a2bc3c4b-1620-fbb1-2b22-d3ef1f20cd80-92ee0ec1, #w-node-_6b41ec7f-5031-b0ee-c781-5a48daac5a84-92ee0ec1, #w-node-_6d13b5ba-0a27-f47a-3b2e-b64bc47535a9-92ee0ec1, #w-node-_56402307-ec1e-1400-4538-081da024d0c5-92ee0ec1, #w-node-f9e96f8d-c4eb-00ee-f7cf-3c0d5511da0c-92ee0ec1, #w-node-_1bcf6aa7-38dc-1742-13ad-99369f9769f4-92ee0ec1, #w-node-_24ae24a4-1b6b-38bc-3850-c00d505f5938-92ee0ec1, #w-node-fc282ff0-0a47-56c7-ffb9-0a673e1bd472-92ee0ec1, #w-node-_64de51e2-6fcc-ec9a-d099-b3a7d0acff96-92ee0ec1, #w-node-_70bc7081-558f-33d7-4587-dda4f2d3394f-92ee0ec1, #w-node-a986d6ce-7302-613e-c7bf-a2b4f4d65088-92ee0ec1, #w-node-b379e4eb-e977-f001-1ec3-910f36000ab5-92ee0ec1, #w-node-c341ffba-4e87-081b-82ff-a5724715731a-92ee0ec1, #w-node-_3e3792b2-3bb6-6e54-7acc-986a46d05bc2-92ee0ec1, #w-node-_81d24ebc-50a0-815e-5cce-f499344f0d95-92ee0ec1, #w-node-_54eda254-ab18-d6ee-d20c-12e0dd215feb-92ee0ec1, #w-node-ea3e1378-c4fd-25fa-22af-3d9292da1761-92ee0ec1, #w-node-ecf2892d-ef22-e6bb-5297-f2ce29fba176-92ee0ec1, #w-node-_88fd0fbd-a160-2302-7373-8af7f4a452b0-92ee0ec1, #w-node-_16a98d9f-ca1c-c239-153f-33c2a179485e-92ee0ec1, #w-node-_2152df1c-e457-3e40-9173-3fb10147de4f-92ee0ec1, #w-node-_100b8841-f177-c6e3-e368-c4b0a4640469-92ee0ec1, #w-node-_2b656eb5-bfca-6dcf-681c-3ef00f240c5d-92ee0ec1, #w-node-_7eaeb6bf-267d-9150-5a29-5540e41c6721-92ee0ec1, #w-node-d8119f64-9cd8-50c9-3cb3-aa8863f9ab19-92ee0ec1, #w-node-_40f74594-b63d-0f1b-cd93-4bb73a0743fc-92ee0ec1, #w-node-d9d059e2-c273-78cf-fa68-dbde140bd939-92ee0ec1, #w-node-_98148123-a424-a90e-6af4-4119eb4904e5-92ee0ec1, #w-node-_3f04e23d-1b04-f9d4-73a1-85add297191f-92ee0ec1, #w-node-_11b3f436-a13d-fe5f-cde5-51c6177e4d21-92ee0ec1, #w-node-b4f01b00-7e09-66a3-445b-bb44d59fc548-92ee0ec1, #w-node-_7d2bf45e-f150-0b84-4f9c-7ca763248801-92ee0ec1, #w-node-_2a7a0466-0ef9-1149-9cd4-3a4c0a6477ff-92ee0ec1, #w-node-_4a515ba0-4d8f-ecb7-676f-29dca89f165c-92ee0ec1, #w-node-_2cce7ceb-d2bf-8584-7fd2-1a6823a17e25-92ee0ec1, #w-node-_375b6ee0-86c3-f232-b5a9-f1ac26f2131a-92ee0ec1, #w-node-_0961d200-2723-2e16-fadb-c90b2003795c-92ee0ec1, #w-node-_9b7e3f19-aafc-2cd7-511f-d5011c4405ea-92ee0ec1, #w-node-a5298348-ff21-06b0-8a97-6967678f4190-92ee0ec1, #w-node-d4399f48-582e-025a-874d-16595651cccd-92ee0ec1, #w-node-be281774-be82-e236-90ab-1f12a83de0ec-92ee0ec1, #w-node-_86239e8e-0c5e-8f5f-54cc-07c6403e7575-92ee0ec1, #w-node-e97732c8-d81f-0378-f274-1830f3713fbf-92ee0ec1, #w-node-_48978a12-c375-89cf-e4e5-c84132190039-92ee0ec1, #w-node-_9ff853e6-94a8-dde9-96cc-a08b19da54b6-92ee0ec1, #w-node-ed3e2fcf-1aea-e228-6dc9-fc300b746db5-92ee0ec1, #w-node-_379a11c9-053a-8b6a-344f-7b68a9671d9f-92ee0ec1, #w-node-_056a07ff-04df-8dc8-b23f-c3f002cc57fb-92ee0ec1, #w-node-fa38e7e3-b233-9d33-d0a6-bc716c486a83-92ee0ec1, #w-node-_7547d99c-1ad6-de37-311c-e686b6e9e744-92ee0ec1, #w-node-dfc98af0-b9fd-cff6-0fc5-51180be6e69f-92ee0ec1, #w-node-e217dd29-1499-f2eb-81f3-9c54be09f3a6-92ee0ec1, #w-node-_01dff181-245b-dbd9-592f-90467ae80465-92ee0ec1, #w-node-cf6d9ffd-7fcd-deaa-f493-54a6f979017a-92ee0ec1, #w-node-_1c0bbd4e-5461-09ac-6183-bd31c5c74f3e-92ee0ec1, #w-node-_03b3286c-7bad-8081-a1fd-31c08d25adf2-92ee0ec1, #w-node-_5a1bece9-a90d-b516-33e5-0c234df837e6-92ee0ec1, #w-node-a5b1911f-265c-ddfe-8eec-b3932c3d65cb-92ee0ec1, #w-node-acbbc971-ca3d-9c04-b899-dc7abc23ca54-92ee0ec1, #w-node-_2af400a2-d0b4-cbb8-ebed-7dbdb4b6d297-92ee0ec1, #w-node-_62de096d-75cd-e7c6-1096-ad18e3bdec17-92ee0ec1, #w-node-fb1c498f-3f92-2960-e90d-6f05829ebbe3-92ee0ec1, #w-node-_36fed20e-0679-3cea-993a-1351b197c0b7-92ee0ec1, #w-node-_49697005-6121-6c66-3d3b-c4250c38f7e2-92ee0ec1, #w-node-c50da9a5-482c-f868-8822-e1e60a11b0d3-92ee0ec1, #w-node-_6a74741c-7d73-3322-dea9-da88454504b2-92ee0ec1, #w-node-c468204b-cca6-407c-cf50-24a4c6c973b8-92ee0ec1, #w-node-_2cf15ba8-c69b-fed4-9b1c-1023ca92d970-92ee0ec1 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    place-self: auto;
}

.white{
    color: white!important;
}

.w-background-video > img {
    background-size: cover;
    background-position: 50% 50%;
    position: absolute;
    margin: auto;
    width: 100%;
    height: 100%;
    right: -100%;
    bottom: -100%;
    top: -100%;
    left: -100%;
    object-fit: cover;
    z-index: -100;
}

.button--dark{
  background:#000;
  color:#fff;
}

#hs-eu-cookie-confirmation {
  border: 0.0625rem solid #6940ab !important;  /* 1px */
}
#hs-eu-cookie-confirmation-buttons-area {
  margin-top: 1.5rem !important;
}
#hs-eu-policy-wording > div > p > strong {
  font-size: 2rem;
  font-weight: 500;
}

.legal-consent-container a {
  color:#cbb7ff!important;
  font-weight:400!important
}

@media screen and (max-width: 991px) {
    .w-nav-button {
    display: flex !important;
    gap: 5px;
    flex-direction: column;
  }

  span.menu-bar {
      height: 2px;
      display: block;
      width: 24px;
      background: white;
  }
}


.hs-fieldtype-text label {
    font-weight: 400;
    margin-top: 16px;
    margin-bottom: 8px;
}

.hs-fieldtype-text input {
    grid-column-gap: 8px;
    color: #1c1c1c;
    background-color: #fff;
    border: 1px solid #b0c4c4;
    border-radius: 8px;
    justify-content: flex-start;
    align-items: center;
	height: 48px;
line-height: 140%;
    text-decoration: none;
}

form .hs-richtext, form .hs-richtext p{
  font-size:0.8rem
}

form {
    margin-top: 40px;
}

form input[type=submit], form .hs-button{
    border-radius: var(--btn-radius);
    background-color: #787ccf;
    border: 1px solid #767bcb;
    margin-top: 0;
    padding: 16px 35px;
    transition: all .35s;
    color: white;
  font-family: Outfit, sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 140%;
}

.submitted-message {
    border: 1px solid forestgreen;
    background: mediumseagreen;
    padding: 20px;
    margin-top: 40px;
    border-radius: 8px;
    color: #002b03;
}

.legal-consent-container {
    margin-top: 40px;
}

.hsfc-Step__Content {
    padding: 0 !important;
    margin-top: 40px;
}

.hsfc-FieldLabel{
     font-weight: 500;
    font-size: 1rem !important;
    gap: 18px !important;
    line-height: 22px!important;
}

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

/* .row-fluid-wrapper,
.row-fluid,
.widget-span,
.hs_cos_wrapper {
    margin: 0;
    padding: 0;
    display: contents; /* Usuwa wpływ wrappera */
} */