/* 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 {
  --gap: 2.127659574%;
}

/* Mobile layout */

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

.row-fluid [class*='span'] {
  min-height: 1px;
  width: 100%;
}

/* Desktop layout */

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

  .row-fluid .span11 {
    width: calc(91.66% - var(--gap));
  }

  .row-fluid .span10 {
    width: calc(83.33% - var(--gap));
  }

  .row-fluid .span9 {
    width: calc(75% - var(--gap));
  }

  .row-fluid .span8 {
    width: calc(66.66% - var(--gap));
  }

  .row-fluid .span7 {
    width: calc(58.33% - var(--gap));
  }

  .row-fluid .span6 {
    width: calc(50% - var(--gap));
  }

  .row-fluid .span5 {
    width: calc(41.66% - var(--gap));
  }

  .row-fluid .span4 {
    width: calc(33.33% - var(--gap));
  }

  .row-fluid .span3 {
    width: calc(25% - var(--gap));
  }

  .row-fluid .span2 {
    width: calc(16.66% - var(--gap));
  }

  .row-fluid .span1 {
    width: calc(8.33% - var(--gap));
  }
}

@media screen and (max-width: 767px) {
  /* .row-fluid:has(.span2) {
    justify-content: space-between;
    padding: 0 0.5rem;
  } */

  .row-fluid .span2 {
    margin-top: 1.25%;
    margin-bottom: 1.25%;
    width: 45%;
  }

  .row-fluid .span2:nth-child(odd) {
    margin-left: 2.5%;
    margin-right: 1.5%;
  }

  .row-fluid .span2:nth-child(even) {
    margin-left: 1.5%;
    margin-right: 2.5%;
  }

  .span2 .widget-type-linked_image {
    padding: 0;
  }

  .hs_cos_wrapper_type_rich_text > p {
    margin: 0;
  }

  .span12 .widget-type-text {
    font-size: 1rem;
    margin: 0 auto 1rem;
    text-align: center;
  }

  span[data-hs-cos-type="rich_text"] {
    display: block; 
    padding: 0.5rem 1rem;
  }

  .hs_cos_wrapper_type_rich_text {
    padding: 0.5rem 1rem !important;
  }

  .hs_cos_wrapper_type_module {
    padding: 0 !important;
  }
}
.content-wrapper {
  margin: 0 auto;
  padding: 0 1rem;
}

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

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

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

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

@media (max-width: 767px) {
  .body-wrapper {
    overflow-x: clip;
    margin: 0 auto;
  }

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

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

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

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 {
  align-items: center;
  display: flex;
  justify-content: space-between;
  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;
}

@media screen and (max-width: 767px) {
  img {
    max-width: 100%;
  }
}
button,
.button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  width: fit-content;
  white-space: normal;
}

button:hover,
.button:hover {
  filter: brightness(0.95);
}

button:disabled,
.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;
}

/* Custom colour button rules */

.button-purple,
.button-white {
  border: 1px solid #6734FF !important;
  border-radius: 24px;
  font-family: 'Monserrat';
  font-size: 16px;
  font-weight: 600;
  padding: 11px 32px;
}

.button-teal {
color: #FFF !important;
}

.button-purple {
  background-color: #6734FF !important;
  color: #FFF !important;
}

.button-white {
  background-color: #FFF !important;
  color: #0F1E2D !important;
}

.button-purple:hover,
.button-purple:focus,
.button-white:hover,
.button-white:focus {
  filter: brightness(0.95);
}
/* Fields */

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

/* Labels */

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

/* Help text */

form legend {
  font-size: 0.875rem;
}

/* Inputs */

form input[type=text],
form input[type=email],
form input[type=password],
form input[type=tel],
form input[type=number],
form input[type=file],
form select,
form textarea {
  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;
}

@media screen and (max-width: 1440px) {
  .header__container {
    padding: 0 1rem;
  }
}

.header__row-1 {
  padding: 1rem 0 1rem;
  height: fit-content;
  transition: all 0.3s ease;
}

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

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

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

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

  .header__column {
    position: relative;
  }

  .header__row-1 {
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
  }

  .header__row-2 {
    flex-direction: column;
    justify-content: center;
    /* padding: 1.05rem; */
  }

  .header--element {
    padding: 0 1rem;
  }

  .header--element .button-wrapper {
    border-top: 1px solid #DFE4E9;
    border-bottom: 1px solid #DFE4E9;
    padding: 1.5rem 0;
  }

  .header--element .button-wrapper > .button {
    font-size: 16px;
    margin-bottom: 0;
    padding-top: 11px;
    padding-bottom: 11px;
    width: 100%;
  }

  .header__row-2 > .header-top-row {
    align-items: center;
    display: flex;
    flex-direction: column;
    padding: 0 1rem;
  }

  .header-top-menu {
    width: 100%;
  }

  .top-menu--mobile {
    margin: 0;
    padding: 0;
  }

  .top-menu ul {
    margin: 0;
    padding: 0;
  }
}

/* Header scroll behavior */
.header.scroll {
  background-color: #FFF;
  box-shadow: 0 0 8px 0 rgb(15 30 45 / 15%);
  position: fixed;
  width: 100vw;
  z-index: 9999;
}

.header.scroll .header__row-1 {
  height: 0;
  padding: 0;
}

.header__row-1 > div {
  opacity: 1;
  transition: all 0.2s ease;
}

.header.scroll .header__row-1 > div {
  opacity: 0;
  transform: translateY(-100%);
}

.header.scroll .header__row-2 {
  padding-top: 1rem;
}

.header.scroll .menu__wrapper > .logo--show-scroll {
  display: block;
}

@media screen and (max-width: 767px) {
  .header.scroll .menu__wrapper > .logo--show-scroll {
    display: none;
  }
}

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

/* Header Buttons */

.button-header > .button-wrapper a {
  color: #0F1E2D !important;
  font-size: 14px;
  margin-bottom: 10px;
}

@media screen and (max-width: 767px) {
  .button-wrapper {
    text-align: center;
  }
}

/* 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;
    max-width: 100%;
    padding: 0 1rem;
    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;
  transform: translateY(10%);
}

/* Custom nav menu item cards */
.header-card {
  background-color: transparent;
  border: 1px solid #DFE4E9;
  border-radius: 4px;
  padding: 24px;
  transition: all 0.2s ease-in-out;
  width: 530px;
}

.header-card__small {
  padding: 1.5rem 1rem;
  width: calc(50% - 1rem);
}

.header-card__large {
  height: 50%;
}

.header-card:hover,
.header-card:active {
  background-color: #F0F5FA;
  border-color: #F0F5FA;
  cursor: pointer;
}

.header-card:hover .header-card__title > span {
  border-color: #0F1E2D;
}

.header-card ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem !important;
  list-style: none;
  padding: 0;
}

.header-card__title {
  align-items: center;
  display: inline-flex;
  flex-wrap: wrap;
}

.header-card__title > span {
  border-bottom: 1px inset transparent;
  color: #0F1E2D;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.75rem;
  transition: all 0.2s ease-in-out;
}

.header-card__title > img {
  transform: translate(-20%, -5%);
}

.header-card__subtitle--large {
  padding: 4px 0 8px;
}

.header-card__subtitle--large > span {
  color: #0F1E2D;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5rem;
  white-space: pre-wrap;
}

.header-card__subtitle--small {
  padding: 0;
}

.header-card__subtitle--small > span {
  color: #4B565D;
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.header-card__feature {
  align-items: center;
  color: #4B565D;
  display: inline-flex;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
}

@media screen and (max-width: 767px) {
  .header-card__small {
    margin: 0 !important;
    width: 100%;
  }

  .header-card__title > span {
    font-size: 1rem;
  }

  .header-card__title > img {
    margin-right: -2px;
    transform: translate(-15%, -8%);
  }

  .header-card__content--large {
    gap: 0.75rem !important;
  }

  .header-card__subtitle--large {
    padding: 0;
  }
}

/* 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 {
  align-items: center;
  background-color: #0F1E2D;
  border: 1px solid #364554;
  border-radius: 5px;
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  left: -100%;
  opacity: 0;
  min-width: 152px;
  padding: 0;
  position: absolute;
  text-align: left;
  top: 100%;
  transition: opacity 0.3s ease-in-out, visibility 0.2s ease-in-out;
  transform: translate(-67%, 32px);
  visibility: hidden;
  z-index: 999;
}

.header__language-switcher.open .lang_list_class {
  background-color: #0F1E2D;
  opacity: 1;
  transition: opacity 0.3s ease-in-out, visibility 0.2s ease-in-out;
  visibility: visible;
}

.header__language-switcher .lang_list_class:before {
  background-color: #0F1E2D;
  border-right: none;
  border-top: none;
  border-radius: 1px;
  box-shadow: 0 4px 10px 0 rgba(0 0 0 / 0.15); 
  content: '';
  display: block;
  height: 14px;
  left: 35%;
  overflow: hidden;
  position: absolute;
  top: -3.5%;
  transform: rotate(45deg);
  transition: all 0.3s ease-in-out;
  width: 14px;
}

.header__language-switcher .lang_list_class:after {
  display: none;
}

.header__language-switcher .lang_list_class li {
  background-color: #0F1E2D;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  border-left: none;
  border-right: none;
  border-top: none;
  font-size: 14px;
  padding: 0;
  transition: all 0.2s ease;
  width: 100%;
}

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

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

.header__language-switcher .lang_list_class li:hover {
  filter: brightness(1.05);
}

.header__language-switcher .lang_list_class .lang_switcher_link {
  align-items: center;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  font-size: 14px;
  gap: 0.75rem;
  padding: 1.5rem 1rem;
  transition: all 0.2s ease;
}

.header__language-switcher .lang_list_class .lang_switcher_link:hover {
  color: rgba(255, 255, 255, 0.9);
}

.header__language-switcher .lang_list_class .lang_switcher_link:before {
  content: '';
  display: block;
  height: 22px;
  margin-top: 1px;
  min-width: 28px;
  transform: scale(0.9);
}

.lang_switcher_link[data-language="en"]:before {
  background: url("https://20191855.fs1.hubspotusercontent-na1.net/hubfs/20191855/raw_assets/public/maintmaster-rhyme-theme/images/module-icons/flag_uk.png") no-repeat;
}

.lang_switcher_link[data-language="en-gb"]:before {
  background: url("https://20191855.fs1.hubspotusercontent-na1.net/hubfs/20191855/raw_assets/public/maintmaster-rhyme-theme/images/module-icons/flag_uk.png") no-repeat;
}

.lang_switcher_link[data-language="sv"]:before {
  background: url("https://20191855.fs1.hubspotusercontent-na1.net/hubfs/20191855/raw_assets/public/maintmaster-rhyme-theme/images/module-icons/flag_swe.png") no-repeat;
}

.lang_switcher_link[data-language="de"]:before {
  background: url("https://20191855.fs1.hubspotusercontent-na1.net/hubfs/20191855/raw_assets/public/maintmaster-rhyme-theme/images/module-icons/flag_ger.png") no-repeat;
}

.lang_switcher_link[data-language="pl"]:before {
  background: url("https://20191855.fs1.hubspotusercontent-na1.net/hubfs/20191855/raw_assets/public/maintmaster-rhyme-theme/images/module-icons/flag_pol.png") no-repeat;
}

.header__language-switcher .globe_class {
  background: url("https://20191855.fs1.hubspotusercontent-na1.net/hubfs/20191855/raw_assets/public/maintmaster-rhyme-theme/images/module-icons/chevron-icon-black.png") no-repeat;
  border-radius: 0;
  cursor: pointer;
  height: 16px;
  margin: 10px 0 8px 8px;
  position: relative;
  transition: all 0.1s ease-in-out;
  width: 16px;
}

.header__language-switcher--label {
  align-items: center;
  display: flex;
  flex-direction: row-reverse;
  padding: 4px 0 0;
  position: relative;
  transition: all 0.1s ease-in-out;
}

.header__language-switcher--label:hover {
  cursor: pointer;
}

.header__language-switcher:hover > .header__language-switcher--label-current {
  color: #777E89;
  filter: brightness(0.93);
}

.header__language-switcher--label-current {
  align-items: center;
  color: #0F1E2D;
  display: flex;
  font-size: 14px;
  font-weight: 600;
  line-height: 24px;
  margin-bottom: 0.175rem;
  margin-left: 0.7rem;
  transition: all 0.1s ease-in-out;
}

.header__language-switcher--label-current:before {
  content: "";
  display: block;
  height: 18px;
  margin: 0.25rem 0.5rem 2px 0.75rem;
  width: 28px;
}

.header__language-switcher--label-current.english:before {
  background: url("https://20191855.fs1.hubspotusercontent-na1.net/hubfs/20191855/raw_assets/public/maintmaster-rhyme-theme/images/module-icons/flag_uk.png") no-repeat;
}

.header__language-switcher--label-current.svenska:before {
  background: url("https://20191855.fs1.hubspotusercontent-na1.net/hubfs/20191855/raw_assets/public/maintmaster-rhyme-theme/images/module-icons/flag_swe.png") no-repeat;
}

.header__language-switcher--label-current.deutsch:before {
  background: url("https://20191855.fs1.hubspotusercontent-na1.net/hubfs/20191855/raw_assets/public/maintmaster-rhyme-theme/images/module-icons/flag_ger.png") no-repeat;
}

.header__language-switcher--label-current.polski:before {
  background: url("https://20191855.fs1.hubspotusercontent-na1.net/hubfs/20191855/raw_assets/public/maintmaster-rhyme-theme/images/module-icons/flag_pol.png") no-repeat;
}

@media (max-width: 767px) {
  .header__language-switcher {
    border-bottom: 1px solid #DFE4E9;
    padding: 0.5rem 0;
  }

  .header__language-switcher--label {
    justify-content: space-between;
  }

  .header__language-switcher--label.open {
    padding-bottom: 1rem;
  }

  .header__language-switcher--label-current {
    color: #777E89;
    font-size: 1rem;
    gap: 0.5rem;
    line-height: 1rem;
    margin: 0;
    padding: 0.5rem 0 0.5rem 0.5rem;
  }

  .header__language-switcher--label-current:before {
    margin: 2px 0 0 0;
  }

  .header__language-switcher .lang_list_class {
    align-items: center;
    background-color: #FFF;
    border: none;
    border-radius: 0;
    box-shadow: unset;
    display: flex;
    flex-direction: column;
    left: 95%;
    opacity: 0;
    padding: 0;
    top: 25%;
    transform: translate(-95%, 25%) rotate(0deg) !important;
    transition: all 0.2s ease-out;
    visibility: hidden;
    width: 100vw;
  }

  .header__language-switcher .lang_list_class.open {
    margin-top: 1.25rem;
    opacity: 1;
    visibility: visible;
  }

  .header__language-switcher .lang_list_class li:nth-child(n) {
    background-color: inherit;
    width: 90%;
  }

  .header__language-switcher .lang_list_class li:nth-child(n):not(:last-child) {
    border: none;
    margin-top: 4px;
  }

  .header__language-switcher .lang_list_class li:last-child {
    border-bottom: 1px solid #DFE4E9;
    margin-bottom: 8px;
    margin-top: 2px;
  }

  .header__language-switcher .lang_list_class .lang_switcher_link {
    color: rgba(15, 30, 45, 0.6);
    font-size: 1rem;
    gap: 9px;
    padding: 0.75rem 3px;
  }

  .header__language-switcher .lang_list_class .lang_switcher_link:before {
    transform: scale(1);
  }

  .header__language-switcher .globe_class {
    background: none;
    height: 22px;
    margin: 0;
    padding: 4px;
    width: 24px;
  }

  .header__language-switcher .globe_class:before {
    background: url("https://20191855.fs1.hubspotusercontent-na1.net/hubfs/20191855/raw_assets/public/maintmaster-rhyme-theme/images/module-icons/chevron-icon-light.png") no-repeat;
    content: '';
    display: block;
    height: 16px;
    margin: 0;
    position: relative;
    transition: transform 0.2s ease;
    width: 16px;
  }

  .header__language-switcher .globe_class.open:before {
    transform: rotate(180deg);
  }

  .globe_class:hover .lang_list_class {
    display: flex !important;
  }

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

/* Restructured Mobile Layout */
@media screen and (min-width: 768px) {
  header .header__container.mobile {
    display: none;
  }
}

/* Mobile toggles */

@media (max-width: 767px) {
  header .header__container.desktop {
    display: none;
  }

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

  .header__navigation,
  .header__search,
  .header__language-switcher {
    /* display: none; */
    width: 100%;
  }

  .header__row-2 {
    display: none;
  }

  .header__row-2.open {
    display: block;
  }

  .header__navigation.open,
  .header__search.open,
  .header__language-switcher.open {
    background-color: #FFFFFF;
    border-top: 1px solid #DEE2E6;
    display: block;
    left: 0;
    min-height: calc(100vh - 115px);
    position: absolute;
    right: 0;
    top: 68px;
    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: none;
  }

  .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("https://20191855.fs1.hubspotusercontent-na1.net/hubfs/20191855/raw_assets/public/maintmaster-rhyme-theme/images/module-icons/menu-icon-black.png");
    background-size: cover;
    height: 32px;
    margin-right: 0;
    width: 32px;
  }

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

  .header__language-switcher--toggle {
    background-image: url("https://20191855.fs1.hubspotusercontent-na1.net/hubfs/20191855/raw_assets/public/maintmaster-rhyme-theme/images/module-icons/chevron-icon-black.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 {
    display: none;
    margin: 0;
    transform: translateX(5px);
  }

  .header__close--toggle.show {
    display: block;
  }

  .header__close--toggle.show > span {
    height: 42px;
    padding: 4px 4px 4px 6px;
    width: 44px;
  }
}

/* Header no navigation */
.header--no-navigation {
  padding-top: 1rem;
  margin-bottom: 2rem;
}

.header__logo--no-navigation {
  max-width: 25%;
}

.header__drag-and-drop {
  max-width: 75%;
}

@media only screen and (max-width: 767px) {
  .header--no-navigation {
    margin-bottom: 1rem;
    padding-top: 1.25rem;
  }
}
/* Menu and simple menu */

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

/* Horizontal menu */

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

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

/* Vertical menu */

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

/* Flyouts */

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

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

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

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

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

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

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

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

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

.hs_cos_wrapper_type_cta img,
.hs_cos_wrapper_type_logo img,
.hs_cos_wrapper_type_rich_text img {
  height: auto;
  max-width: 100%;
}
footer.footer {
  background: #0F1E2D;
}

.footer__container {
  background-color: #0F1E2D;
  margin: 0 auto;
  padding: 40px clamp(1rem, 5.25%, 110px) 0;
  width: clamp(375px, 100vw, 1640px);
}



.footer__container:nth-child(2) {
  padding: 20px 104px 48px;
}

.hs-menu-item .hs-item-has-children {
  display: flex;
  flex-direction: column;
  padding: 0 30px 40px 0;
}

.footer__menu > .hs-menu-depth-1 a {
  border-bottom: 1px solid rgba(#FFFFFF, 0.15);
  color: #FFFFFF;
  font-size: 16px;
  line-height: 26px;
  padding: 0 0 8px 0;
  width: 100%;
}

.hs-menu-depth-1:last-child .hs-menu-children-wrapper li > a {
  display: none;
}

.hs-menu-depth-2 a {
  color: #ABB0B5;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  padding: 8px 0 0;
  transition: all 0.2s ease;
}

.hs-menu-depth-2 a:hover {
  color: #ABB0B5;
  filter: brightness(110%);
  font-weight: 600;
}

#hs_menu_wrapper_footer_menu {
  /* padding: 40px 73px 0 105px; */
  width: 100%;
}

#hs_menu_wrapper_footer_menu ul:first-child:not(.inputs-list) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  flex-direction: column;
  max-height: 560px;
}

#hs_menu_wrapper_footer_menu ul:first-child > li:not(.hs-form-booleancheckbox) {
  display: flex;
  flex-direction: column;
  height: fit-content;
  padding: 0 2rem 2.5rem 0;
  width: 20%;
}

#hs_menu_wrapper_footer_menu ul:first-child > li:nth-child(n + 7) {
  padding-right: 0;
}

#hs_menu_wrapper_footer_menu li {
  padding: 0 0 8px 0;
}

#hs_menu_wrapper_footer_menu li:first-child {
  padding-top: 8px;
}

#hs_menu_wrapper_footer_menu ul:first-child > li > a {
  border: none;
  color: #FFFFFF;
  font-size: 16px;
  line-height: 26px;
  padding: 0 0 6px 0;
  width: 100%;
}

#hs_menu_wrapper_footer_menu ul:first-child > li > a:hover {
  border: none;
  color: #FFFFFF;
  cursor: text;
}

#hs_menu_wrapper_footer_menu .hs-menu-children-wrapper {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

#hs_form_target_stay_up_to_date > form {
  display: flex;
  flex-direction: column;
  padding: 0;
}

#hs_form_target_stay_up_to_date .hs-email > label span {
  color: #ABB0B5;
  font-weight: 400;
}

#hs_form_target_stay_up_to_date input[type='submit'] {
  width: 100%;
}

.legal-consent-container > div:first-child {
  display: none;
}

.legal-consent-container {
  align-self: flex-end;
  justify-self: flex-end;
  width: 100%;
}

.legal-consent-container .hs-form-booleancheckbox {
  margin: 0;
}

.legal-consent-container .hs-form-booleancheckbox-display input {
  margin-right: 0;
}

.legal-consent-container .hs-form-booleancheckbox-display > span {
  margin-left: 8px !important;
}

.legal-consent-container .hs-form-booleancheckbox-display > span p {
  color: #ABB0B5;
  font-size: 14px;
  margin-left: 0 !important;
}

.legal-consent-container .hs-form-booleancheckbox > label {
  align-items: center;
  display: flex;
}

.footer-row-0-vertical-alignment {
  padding: 0 !important;
}

.footer-column-1-vertical-alignment {
  padding: 0 !important;
}

.footer-column-1-vertical-alignment > .row-depth-1 {
  padding: .75rem 0;
}

.footer__menu--terms ul > li {
  padding: 0 1.5rem 0 0;
}

/* .footer__menu--terms ul > li:first-child {
  padding-left: 0;
} */

.footer__menu--terms ul > li > a {
  border: none;
  color: #ABB0B5;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
}

.footer__menu--terms ul > li > a:hover {
  border: none;
  filter: unset;
}

.footer-column-5-vertical-alignment {
  padding: 0;
  align-items: flex-end;
}

.footer__download-button .button-wrapper {
  width: 100%;
}

.footer__download-button .button {
  align-items: center;
  border-color: #00B9BC !important;
  border-radius: 60px !important;
  color: #00B9BC !important;
  display: flex;
  padding: 10px 24px !important;
  width: fit-content;
}

.footer__download-button .button::after {
  background: url('https://20191855.fs1.hubspotusercontent-na1.net/hubfs/20191855/raw_assets/public/maintmaster-rhyme-theme/images/module-icons/download-icon-teal.png');
  display: inline-block;
  height: 2rem;
  margin-left: 8px;
  width: 2rem;
}

@media screen and (max-width: 767px) {
  footer.hs-menu-wrapper.hs-menu-flow-horizontal ul {
    flex-direction: row;
    flex-wrap: wrap;
    row-gap: 1rem;
  }

  .footer__container {
    padding: 3% 4% 6%;
  }

  .footer__container:nth-child(2) {
    padding: 3% 7% 4%;
  }
  
  .footer__container:nth-child(2) .row-fluid {
    align-items: center;
    flex-direction: column;
  }

  .footer__container:nth-child(2) .row-fluid > .span12 {
    align-items: center !important;
    max-width: 98% !important;
    text-align: center !important;
  }

  .footer-menu__terms ul {
    gap: 0.75rem;
  }

  .footer__menu--terms ul > li {
    padding-right: 0;
  }

  #hs_menu_wrapper_footer_menu ul:first-child:not(.inputs-list) {
    max-height: unset;
  }

  #hs_menu_wrapper_footer_menu ul:first-child > li:not(.hs-form-booleancheckbox) {
    padding: 0;
    width: 100%;
  }

  #hs_menu_wrapper_footer_menu .hs-menu-children-wrapper {
    padding: 0 0.5rem;
  }

  #hs_menu_wrapper_footer_menu ul:first-child > li > a {
    align-items: stretch;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    justify-content: space-between;
    padding: 20px 2px 14px;
  }

  #hs_menu_wrapper_footer_menu ul:first-child > li > a:hover {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  #hs_menu_wrapper_footer_menu ul:first-child > li > a:after {
    background: url('https://20191855.fs1.hubspotusercontent-na1.net/hubfs/20191855/raw_assets/public/maintmaster-rhyme-theme/images/module-icons/plus-icon-circle.png');
    content: '';
    display: block;
    height: 2rem;
    width: 2rem;
  }

  #hs_menu_wrapper_footer_menu ul:first-child > li > a.mobile-submenu-open:after {
    background: url('https://20191855.fs1.hubspotusercontent-na1.net/hubfs/20191855/raw_assets/public/maintmaster-rhyme-theme/images/module-icons/minus-icon-circle.png');
    content: '';
    display: block;
    height: 2rem;
    width: 2rem;
  }

  #hs_menu_wrapper_footer_menu ul:first-child > li > ul {
    border: none;
    display: none;
  }

  #hs_menu_wrapper_footer_menu ul:first-child > li > ul.mobile-submenu-open {
    display: flex;
  }

  .footer__download-button .button-wrapper {
    margin: 1.5rem 0;
  }

  .footer__download-button .button {
    margin: 0 auto;
  }
}

/* Landing Page */
.footer__container.landing-page {
  margin-top: 3rem;
}

.footer__container.landing-page h1,
.footer__container.landing-page h2,
.footer__container.landing-page h3,
.footer__container.landing-page h4,
.footer__container.landing-page p,
.footer__container.landing-page span,
.footer__container.landing-page a {
  color: #FFFFFF;
}

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