/* Theme base styles */

/* root css variables */

:root {
  --container-width: 1440px;
  --container-padding-width: 1520px;
  --container-padding-width-md: 1340px;
  --container-padding-width-sm: 1034px;
  --container-spacing-desktop: 40px;
  --container-spacing-mobile: 20px;
  --deep-sea-100: #2b3443;
  --deep-sea-80: #555d69;
  --deep-sea-60: #80858e;
  --deep-sea-40: #aaaeb4;
  --deep-sea-20: #d5d6d9;
  --deep-sea-10: #eaebec;
  --dark-blue-100: #2D5172;
  --dark-blue-80: #57748e;
  --dark-blue-60: #8197aa;
  --dark-blue-40: #abb9c7;
  --dark-blue-20: #d5dce3;
  --dark-blue-10: #eaeef1;
  --gold-100: #b39a5e;
  --gold-80: #c2ae7e;
  --gold-60: #d1c29e;
  --gold-40: #e1d7bf;
  --gold-20: #f0ebdf;
  --gold-10: #f7f5ef;
  --gold-dark: #7e6c46;
  --signal-blue: #1a65d9;
  --signal-blue-dark: #154794;
  --green: #25D366;
  --see-gradient: linear-gradient(45deg, #2b3443 0%, #405d77 100%);
}

/* Fonts */

@font-face {
  font-family: "Roboto";
  src: url(//47823544.fs1.hubspotusercontent-na1.net/hubfs/47823544/raw_assets/public/Angermann_Theme/fonts/Roboto-Regular.woff2) format("woff2");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Roboto";
  src: url(//47823544.fs1.hubspotusercontent-na1.net/hubfs/47823544/raw_assets/public/Angermann_Theme/fonts/Roboto-Medium.woff2) format("woff2");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Roboto";
  src: url(//47823544.fs1.hubspotusercontent-na1.net/hubfs/47823544/raw_assets/public/Angermann_Theme/fonts/Roboto-Bold.woff2) format("woff2");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Merriweather";
  src: url(//47823544.fs1.hubspotusercontent-na1.net/hubfs/47823544/raw_assets/public/Angermann_Theme/fonts/Merriweather-Light.woff2) format("woff2");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Merriweather";
  src: url(//47823544.fs1.hubspotusercontent-na1.net/hubfs/47823544/raw_assets/public/Angermann_Theme/fonts/Merriweather-Regular.woff2) format("woff2");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Merriweather";
  src: url(//47823544.fs1.hubspotusercontent-na1.net/hubfs/47823544/raw_assets/public/Angermann_Theme/fonts/Merriweather-Bold.woff2) format("woff2");
  font-weight: 700;
  font-style: normal;
}

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

/* CSS variables */

:root {
  --column-gap: 32px;
  --column-width-multiplier: 8.333;
}



/* Mobile layout */

.row-fluid {
/*   display: flex;
  flex-wrap: wrap; */
  width: 100%;
  gap: var(--column-gap) 0;
	display: grid;
	grid-template-rows: repeat(var(--bs-rows, 1), 1fr);
	grid-template-columns: repeat(var(--bs-columns, 12), 1fr);
}

.row-fluid .span12 {
/* 	flex: 0 0 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%;
	grid-column: auto / span 12;
}

/* Desktop layout */

@media (min-width: 1024px) {
  .row-fluid {
/*     flex-wrap: nowrap;
    justify-content: space-between; */
    gap: var(--column-gap);
  }

  
    .row-fluid .span1 {
/*       width: calc(var(--column-width-multiplier) * 1% * 1 - var(--column-gap) * (11 * var(--column-width-multiplier) / 100)); */
			grid-column: auto / span 1;
    }
  
    .row-fluid .span2 {
/*       width: calc(var(--column-width-multiplier) * 1% * 2 - var(--column-gap) * (10 * var(--column-width-multiplier) / 100)); */
			grid-column: auto / span 2;
    }
  
    .row-fluid .span3 {
/*       width: calc(var(--column-width-multiplier) * 1% * 3 - var(--column-gap) * (9 * var(--column-width-multiplier) / 100)); */
			grid-column: auto / span 3;
    }
  
    .row-fluid .span4 {
/*       width: calc(var(--column-width-multiplier) * 1% * 4 - var(--column-gap) * (8 * var(--column-width-multiplier) / 100)); */
			grid-column: auto / span 4;
    }
  
    .row-fluid .span5 {
/*       width: calc(var(--column-width-multiplier) * 1% * 5 - var(--column-gap) * (7 * var(--column-width-multiplier) / 100)); */
			grid-column: auto / span 5;
    }
  
    .row-fluid .span6 {
/*       width: calc(var(--column-width-multiplier) * 1% * 6 - var(--column-gap) * (6 * var(--column-width-multiplier) / 100)); */
			grid-column: auto / span 6;
    }
  
    .row-fluid .span7 {
/*       width: calc(var(--column-width-multiplier) * 1% * 7 - var(--column-gap) * (5 * var(--column-width-multiplier) / 100)); */
			grid-column: auto / span 7;
    }
  
    .row-fluid .span8 {
/*       width: calc(var(--column-width-multiplier) * 1% * 8 - var(--column-gap) * (4 * var(--column-width-multiplier) / 100)); */
			grid-column: auto / span 8;
    }
  
    .row-fluid .span9 {
/*       width: calc(var(--column-width-multiplier) * 1% * 9 - var(--column-gap) * (3 * var(--column-width-multiplier) / 100)); */
			grid-column: auto / span 9;
    }
  
    .row-fluid .span10 {
/*       width: calc(var(--column-width-multiplier) * 1% * 10 - var(--column-gap) * (2 * var(--column-width-multiplier) / 100)); */
			grid-column: auto / span 10;
    }
  
    .row-fluid .span11 {
/*       width: calc(var(--column-width-multiplier) * 1% * 11 - var(--column-gap) * (1 * var(--column-width-multiplier) / 100)); */
			grid-column: auto / span 11;
    }
  
}
.dnd-section > .row-fluid {
  margin: 0 auto;
/*   max-width: var(--container-width, 1440px); */
}

.widget-type-header {
  max-width: var(--container-width, 1440px);
  margin: 0 auto;
}

.content-wrapper {
  max-width: var(--container-padding-width, 1440px);
  margin: 0 auto;
  padding-inline:var(--container-spacing-mobile,20px);
}

main .container .hs_cos_wrapper .container,
footer .container .hs_cos_wrapper .container{
  padding-inline: 0;
}

.row-fluid-wrapper.dnd-section {
  padding-inline: var(--container-spacing-mobile,20px);
}

.row-fluid-wrapper.dnd-section .dnd-section,
.container .row-fluid-wrapper.dnd-section {
  padding-inline: 0;
}

.dnd-section .span12 .px-unset,
.dnd-section .dnd-column .px-unset {
  margin-inline: calc(-1 * var(--container-spacing-mobile,20px));
}

.dnd-section .dnd-column .container .px-unset,
.dnd-section .px-unset .px-unset{
  margin-inline: 0;
}

@media (min-width: 1024px) {
    .content-wrapper {
      padding-inline:var(--container-spacing-desktop,40px);
    }

    .row-fluid-wrapper.dnd-section {
      padding-inline:var(--container-spacing-desktop,40px);
    }

    .dnd-section .dnd-column .px-unset {
      margin-inline: calc(-1 * var(--container-spacing-desktop,40px));
    }
}

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

/* Menu and simple menu */


div#hubspot-messages-iframe-container {
  bottom: 100px !important;
}

#hubspot-messages-iframe-container iframe {
  margin: 0;
}

.hs-search-results__listing {
  display: grid;
  padding: 0;
  margin: 0;
  gap: 24px;
  list-style: none;
}

.hs-search-results__listing__item {
  display: flex;
  padding: 0;
  margin: 0;
}

.hs-search-results__pagination {
  margin-bottom: 40px;
}

.hs-search-results__link,
.hs-search-results__link:hover {
  text-decoration: none;
}

.hs-search-results__pagination__link[class*="--disabled"],
.hs-search-results__pagination__link[class*="--active"]{
  pointer-events: none;
}

.hs-search-highlight {
  font-weight: bold;
}

.hs-search-results__pagination {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hs-search-results__pagination__link {
  display: flex;
  align-items: center;
}

.hs-search-results__pagination__link,
.hs-search-results__pagination__link:hover,
.hs-search-results__pagination__link:focus,
.hs-search-results__pagination__link:active {
  text-decoration: none;
}

.hs-search-results__pagination__link-icon {
  display: flex;
  height: 16px;
  width: 16px;
  justify-content: center;
}

.hs-search-results__pagination__link-icon svg {
  fill: currentColor;
}

.hs-search-results__pagination__link--active {
  border-style: solid;
  border-width: 1px;
}

.hs-search-results__featured-image-wrapper {
  flex-shrink: 0;
}

.hs-search-results__featured-image {
  height: auto;
  width: 250px;
  -o-object-fit: cover;
  object-fit: cover;
}

.hs-search-results__featured-image--empty {
  display: flex;
  height: 166px;
  width: 250px;
  min-width: 250px;
  margin-right: 1.25rem;
  align-items: center;
  justify-content: center;
  background-color: #d7d7d7;
}
.hs-search-results__featured-image--empty p {
  padding: 0;
  margin: 0;
}


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

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


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

.hs-search-field__bar button svg {
  fill: #fff;
}

.hs-search-field__button  .hs_cos_wrapper_type_icon {
  line-height: 0;
  display: inline-block;
  vertical-align: top;
}

.form-title:empty {
  display: none !important;
}

[id="main"] .widget-type-rich_text {
    padding: 40px 0;
}

@media (min-width: 1024px) {
  [id="main"] .widget-type-rich_text {
        padding: 60px 0;
    }
}

[data-global-resource-path*="header.html"].hs-baymax-editor {
  position: relative;
  z-index: 9999999999;
}

.bg-black {
  background-color: #000;
}

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

/* Common */

.footer-menu, .language-switcher .lang_list_class, [id=nav] .mega-drop ul, [id=nav] > ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

dl:after {
  content: "";
  display: block;
  clear: both;
}

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

/**
   * Render the `main` element consistently in IE.
   */
main {
  display: block;
}

/**
   * 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
     ========================================================================== */
/**
   * 1. Add the correct box sizing in Firefox.
   * 2. Show the overflow in Edge and IE.
   */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}

/**
   * 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
     ========================================================================== */
/**
   * Remove the gray background on active links in IE 10.
   */
a {
  background-color: transparent;
}

/**
   * 1. Remove the bottom border in Chrome 57-
   * 2. Add the correct text decoration in Chrome, Edge, IE, 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;
}

/* Embedded content
     ========================================================================== */
/**
   * Remove the border on images inside links in IE 10.
   */
img {
  border-style: none;
}

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

/**
   * Show the overflow in IE.
   * 1. Show the overflow in Edge.
   */
button,
input {
  /* 1 */
  overflow: visible;
}

/**
   * Remove the inheritance of text transform in Edge, Firefox, and IE.
   * 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;
}

/**
   * 1. Correct the text wrapping in Edge and IE.
   * 2. Correct the color inheritance from `fieldset` elements in IE.
   * 3. Remove the padding so developers are not caught out when they zero out
   *    `fieldset` elements in all browsers.
   */
legend {
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}

/**
   * Add the correct vertical alignment in Chrome, Firefox, and Opera.
   */
progress {
  vertical-align: baseline;
}

/**
   * Remove the default vertical scrollbar in IE 10+.
   */
textarea {
  overflow: auto;
}

/**
   * 1. Add the correct box sizing in IE 10.
   * 2. Remove the padding in IE 10.
   */
[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
   * 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, IE 10+, and Firefox.
   */
details {
  display: block;
}

/*
   * Add the correct display in all browsers.
   */
summary {
  display: list-item;
}

/* Misc
     ========================================================================== */
/**
   * Add the correct display in IE 10+.
   */
template {
  display: none;
}

/**
   * Add the correct display in IE 10.
   */
[hidden] {
  display: none;
}

html {
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

* {
  max-height: 1000000px;
}

main,
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

ul,
ol,
dl,
p,
h1,
h2,
h3,
h4,
h5,
h6,
address,
form,
table,
blockquote,
applet,
embed,
object,
iframe,
frameset {
  margin: 0 0 20px;
}

blockquote {
  border-left: 4px solid #ddd;
  padding-left: 10px;
  margin-left: 0;
}

table {
  border-collapse: collapse;
}

th,
td {
  border: 1px solid #ddd;
  padding: 3px;
  text-align: left;
  vertical-align: top;
}

th {
  vertical-align: middle;
}

ul,
ol {
  padding-left: 20px;
}

ul ul,
ul ol,
ol ul,
ol ol {
  padding-left: 20px;
  margin: 0;
}

ul {
  list-style-type: disc;
}

dl dt {
  float: left;
  clear: left;
  padding-right: 0.3em;
  font-weight: bold;
}
dl dd {
  overflow: hidden;
}

pre {
  max-width: 100%;
  overflow: auto;
}

body {
  color: var(--deep-sea-80);
  background: #fff;
  font: 16px/1.6 "Roboto", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
  min-width: 320px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
  font-weight: 400;
}
@media (min-width: 1024px) {
  body {
    font-size: 24px;
    line-height: 1.6;
  }
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
  display: inline-block;
}

.gm-style img {
  max-width: none;
}

@media (max-width: 1023.98px) {
  iframe {
    width: 100%;
  }
}

.resize-active * {
  transition: none !important;
}

h1,
.h1 {
  font-size: 40px;
}

h2,
.h2 {
  font-size: 32px;
}

h3,
.h3 {
  font-size: 24px;
}

h4,
.h4 {
  font-size: 18px;
}

h5,
.h5 {
  font-size: 16px;
}

h6,
.h6 {
  font-size: 14px;
}

@media (min-width: 768px) {
  h1,
  .h1 {
    font-size: 40px;
  }
  h2,
  .h2 {
    font-size: 30px;
  }
  h3,
  .h3 {
    font-size: 26px;
  }
  h4,
  .h4 {
    font-size: 20px;
  }
  h5,
  .h5 {
    font-size: 18px;
  }
  h6,
  .h6 {
    font-size: 16px;
  }
}
@media (min-width: 1024px) {
  h1,
  .h1 {
    font-size: 60px;
  }
  h2,
  .h2 {
    font-size: 48px;
  }
  h3,
  .h3 {
    font-size: 32px;
  }
  h4,
  .h4 {
    font-size: 24px;
  }
  h5,
  .h5 {
    font-size: 18px;
  }
  h6,
  .h6 {
    font-size: 16px;
  }
}
@media (min-width: 1230px) {
  h1,
  .h1 {
    font-size: 80px;
  }
  h2,
  .h2 {
    font-size: 56px;
  }
  h3,
  .h3 {
    font-size: 32px;
  }
  h4,
  .h4 {
    font-size: 24px;
  }
  h5,
  .h5 {
    font-size: 18px;
  }
  h6,
  .h6 {
    font-size: 16px;
  }
}
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6,
.h {
  font-family: "Merriweather", "Times New Roman", "Times", "Baskerville", "Georgia", serif;
  color: var(--dark-blue-100);
  font-weight: 400;
  margin: 0 0 10px;
  word-wrap: break-word;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
}
@media (min-width: 768px) {
  h1,
  .h1,
  h2,
  .h2,
  h3,
  .h3,
  h4,
  .h4,
  h5,
  .h5,
  h6,
  .h6,
  .h {
    margin-bottom: 20px;
  }
}
.bg-dark-blue h1, .bg-medium-blue h1, .gradient-dark h1,
.bg-dark-blue .h1,
.bg-medium-blue .h1,
.gradient-dark .h1,
.bg-dark-blue h2,
.bg-medium-blue h2,
.gradient-dark h2,
.bg-dark-blue .h2,
.bg-medium-blue .h2,
.gradient-dark .h2,
.bg-dark-blue h3,
.bg-medium-blue h3,
.gradient-dark h3,
.bg-dark-blue .h3,
.bg-medium-blue .h3,
.gradient-dark .h3,
.bg-dark-blue h4,
.bg-medium-blue h4,
.gradient-dark h4,
.bg-dark-blue .h4,
.bg-medium-blue .h4,
.gradient-dark .h4,
.bg-dark-blue h5,
.bg-medium-blue h5,
.gradient-dark h5,
.bg-dark-blue .h5,
.bg-medium-blue .h5,
.gradient-dark .h5,
.bg-dark-blue h6,
.bg-medium-blue h6,
.gradient-dark h6,
.bg-dark-blue .h6,
.bg-medium-blue .h6,
.gradient-dark .h6,
.bg-dark-blue .h,
.bg-medium-blue .h,
.gradient-dark .h {
  color: #fff;
}

h1,
.h1 {
  font-weight: 300;
  line-height: 1.2;
}
@media (min-width: 1230px) {
  h1,
  .h1 {
    margin: 0 0 40px;
  }
}

h2,
.h2 {
  font-weight: 300;
  line-height: 1.2;
  margin: 0 0 20px;
}

h3,
.h3 {
  line-height: 1.3;
}

p {
  margin: 0 0 20px;
}
@media (min-width: 1024px) {
  p {
    margin: 0 0 37px;
  }
}

a {
  transition: color 0.5s ease-in-out;
  color: currentColor;
  text-decoration: underline;
  font-weight: 700;
}
.bg-dark-blue a:not(.btn):hover, .bg-dark-blue a:not(.btn):focus, .bg-medium-blue a:not(.btn):hover, .bg-medium-blue a:not(.btn):focus, .gradient-dark a:not(.btn):hover, .gradient-dark a:not(.btn):focus {
  color: var(--dark-blue-40);
}
a:hover, a:focus {
  color: var(--dark-blue-80);
  text-decoration: underline;
}

a[href*="mailto:"] {
  word-wrap: break-word;
}

.title {
  word-wrap: break-word;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
}

form,
fieldset {
  margin: 0;
  padding: 0;
  border-style: none;
}

input[type=text],
input[type=tel],
input[type=email],
input[type=search],
input[type=password],
input[type=url],
input[type=number],
textarea {
  transition: border-color 0.5s ease-in-out, background-color 0.5s ease-in-out, box-shadow 0.5s ease-in-out;
  -webkit-appearance: none;
  -webkit-border-radius: 0;
  padding: 10px 4px;
  font-size: 16px;
  line-height: 18px;
  font-family: "Roboto", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
  box-sizing: border-box;
  border: 0;
  border-bottom: 1.5px solid var(--deep-sea-80);
  border-radius: 0;
  color: var(--deep-sea-100);
  letter-spacing: 0.4px;
  width: 100%;
}
@media (min-width: 1024px) {
  input[type=text],
  input[type=tel],
  input[type=email],
  input[type=search],
  input[type=password],
  input[type=url],
  input[type=number],
  textarea {
    font-size: 20px;
  }
}
input[type=text]:not(textarea),
input[type=tel]:not(textarea),
input[type=email]:not(textarea),
input[type=search]:not(textarea),
input[type=password]:not(textarea),
input[type=url]:not(textarea),
input[type=number]:not(textarea),
textarea:not(textarea) {
  height: 40px;
}
input[type=text]:focus,
input[type=tel]:focus,
input[type=email]:focus,
input[type=search]:focus,
input[type=password]:focus,
input[type=url]:focus,
input[type=number]:focus,
textarea:focus {
  outline: none;
  border-color: var(--gold-100);
  background-color: #eff2f5;
  box-shadow: 0 1px 0 0 var(--gold-100);
}
input[type=text]::-webkit-input-placeholder,
input[type=tel]::-webkit-input-placeholder,
input[type=email]::-webkit-input-placeholder,
input[type=search]::-webkit-input-placeholder,
input[type=password]::-webkit-input-placeholder,
input[type=url]::-webkit-input-placeholder,
input[type=number]::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: var(--deep-sea-60);
}
input[type=text]::-moz-placeholder,
input[type=tel]::-moz-placeholder,
input[type=email]::-moz-placeholder,
input[type=search]::-moz-placeholder,
input[type=password]::-moz-placeholder,
input[type=url]::-moz-placeholder,
input[type=number]::-moz-placeholder,
textarea::-moz-placeholder {
  opacity: 1;
  color: var(--deep-sea-60);
}
input[type=text]:-moz-placeholder,
input[type=tel]:-moz-placeholder,
input[type=email]:-moz-placeholder,
input[type=search]:-moz-placeholder,
input[type=password]:-moz-placeholder,
input[type=url]:-moz-placeholder,
input[type=number]:-moz-placeholder,
textarea:-moz-placeholder {
  color: var(--deep-sea-60);
}
input[type=text]:-ms-input-placeholder,
input[type=tel]:-ms-input-placeholder,
input[type=email]:-ms-input-placeholder,
input[type=search]:-ms-input-placeholder,
input[type=password]:-ms-input-placeholder,
input[type=url]:-ms-input-placeholder,
input[type=number]:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: var(--deep-sea-60);
}
input[type=text].placeholder,
input[type=tel].placeholder,
input[type=email].placeholder,
input[type=search].placeholder,
input[type=password].placeholder,
input[type=url].placeholder,
input[type=number].placeholder,
textarea.placeholder {
  color: var(--deep-sea-60);
}

input[type=search]::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

textarea {
  resize: vertical;
  vertical-align: top;
  overflow: auto;
  min-height: 90px;
}
@media (min-width: 1024px) {
  textarea {
    min-height: 120px;
  }
}

label {
  color: var(--deep-sea-80);
  font-weight: normal;
  font-size: 16px;
  margin-bottom: 0;
}

button,
input[type=button],
input[type=reset],
input[type=file],
input[type=submit] {
  transition: background 0.5s ease-in-out;
  -webkit-appearance: none;
  -webkit-border-radius: 0;
  height: 40px;
  padding: 16px 25px;
  font-size: 16px;
  line-height: 18px;
  color: #fff;
  background: var(--signal-blue);
  border-width: 0;
  border-style: solid;
  border-color: var(--signal-blue);
  border-radius: 60px;
  cursor: pointer;
  transition: all 0.5s;
}
button:hover,
input[type=button]:hover,
input[type=reset]:hover,
input[type=file]:hover,
input[type=submit]:hover {
  background-color: var(--signal-blue-dark);
  color: #fff;
}

input[type=submit] {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12.5 12.5' style='enable-background:new 0 0 12.5 12.5' xml:space='preserve'%3E%3Cpath d='M11.6 0H2.2c-.5 0-.9.4-.9.9s.4.9.9.9h7.1l-9.1 9c-.4.4-.4 1 0 1.3.4.4 1 .4 1.3 0l9.1-9v7.1c0 .5.4.9.9.9s.9-.4.9-.9V.9c.1-.5-.3-.9-.8-.9z' style='fill:%23fff'/%3E%3C/svg%3E%0A");
  background-size: 13px;
  background-repeat: no-repeat;
  background-position: 10% 50%;
  height: 62px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 10px 30px 10px 50px;
}
@media (min-width: 1024px) {
  input[type=submit] {
    padding: 10px 30px 10px 83px;
    font-size: 18px;
    background-position: 23% 50%;
  }
}
input[type=submit]:hover {
  color: #fff;
  border-color: var(--signal-blue-dark);
}

select {
  height: 52px;
  border: 1.5px solid var(--deep-sea-80);
  border-radius: 50px;
  color: var(--deep-sea-60);
  padding: 10px 60px 10px 24px;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11.9025 16.3032L4.96504 9.42197C4.74473 9.20166 4.74473 8.84541 4.96504 8.6251L5.89316 7.69697C6.11348 7.47666 6.46973 7.47666 6.69004 7.69697L12.301 13.2516L17.9119 7.69697C18.1322 7.47666 18.4885 7.47666 18.7088 7.69697L19.6369 8.6251C19.8572 8.84541 19.8572 9.20166 19.6369 9.42197L12.6994 16.3032C12.4791 16.5235 12.1228 16.5235 11.9025 16.3032Z' fill='%23555D69'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 24px;
  background-position: right 23px center;
  width: 100%;
  background-color: #fff;
}
@media (min-width: 1024px) {
  select {
    font-size: 18px;
  }
}
select:focus {
  border-color: var(--gold-100);
}
select:focus-visible {
  outline: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

.submit-wrap {
  display: inline-block;
  vertical-align: top;
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 60px;
  background: var(--signal-blue);
}
.submit-wrap:hover:after {
  transform: translateX(0);
}
.submit-wrap:after {
  transition: transform 0.5s ease-in-out;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 60px;
  transform: translateX(-100%);
  background-color: var(--signal-blue-dark);
  z-index: -1;
}
.submit-wrap input[type=submit] {
  background-color: transparent;
}

.form-block {
  width: 100%;
  font-size: 16px;
  color: var(--deep-sea-40);
  padding: 20px;
  box-shadow: 0 30px 64px 0 rgba(170, 181, 212, 0.2);
  background: #fff;
}
@media (min-width: 1230px) {
  .form-block {
    padding: 48px;
  }
}
.form-block .form-holder {
  margin: 0 0 15px;
}
@media (min-width: 1024px) {
  .form-block .form-holder {
    margin: 0 0 28px;
  }
}
.form-block p {
  margin: 0;
}
.form-block h1,
.form-block .h1 {
  color: var(--dark-blue-100);
}

.submitted-message,
.form-block .submitted-message {
  padding: 0 0 30px;
  font-size: 20px;
}
@media (min-width: 1024px) {
  .submitted-message,
  .form-block .submitted-message {
    padding: 0 0 60px;
    font-size: 24px;
  }
}

.hs-form .hs-error-msgs {
  list-style: none;
  padding: 5px 0 0;
  margin: 0 0 10px;
  font-size: 14px;
}
.hs-form .hs-error-msgs label {
  color: #dc3545;
  font-size: 14px;
}
.hs-form .hs-form-field {
  margin: 0 0 15px;
}
@media (min-width: 768px) {
  .hs-form .hs-form-field {
    margin: 0;
  }
}
.hs-form .hs-form-field > label {
  display: block;
  margin: 0 0 5px;
}
.hs-form .input {
  margin: 0 !important;
}
.hs-form .hs-fieldtype-file input[type=file] {
  transition: border-color 0.5s ease-in-out, color 0.5s ease-in-out;
  background-color: transparent;
  border: 1.5px solid currentColor;
  color: var(--signal-blue);
  height: auto;
  padding: 20px 48px 20px 83px;
  text-align: center;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_6781_448)'%3E%3Cpath d='M17.5625 12.5002C18.0801 12.5002 18.5 12.9201 18.5 13.4377V16.2502C18.5 18.3213 16.8211 20.0002 14.75 20.0002H4.75C2.67891 20.0002 1 18.3213 1 16.2502V13.4377C1 12.9182 1.41953 12.5002 1.9375 12.5002C2.45508 12.5002 2.875 12.9201 2.875 13.4377V16.2502C2.875 17.2815 3.71875 18.1252 4.75 18.1252H14.75C15.7812 18.1252 16.625 17.2815 16.625 16.2502V13.4377C16.625 12.9182 17.043 12.5002 17.5625 12.5002ZM9.10938 0.255642L3.79688 5.22049C3.41719 5.60959 3.4 6.20334 3.75508 6.57834C4.10906 6.95553 4.70234 6.97365 5.07969 6.61861L8.8125 3.10803V12.8112C8.8125 13.3322 9.23438 13.7502 9.75 13.7502C10.2656 13.7502 10.6875 13.3303 10.6875 12.8479V3.10803L14.4203 6.62053C14.7975 6.97576 15.3906 6.95744 15.7449 6.58025C15.9141 6.39865 16 6.16818 16 5.93772C16 5.68869 15.9011 5.43967 15.7046 5.25529L10.3921 0.290447C10.0312 -0.0849439 9.46875 -0.0849439 9.10938 0.255642Z' fill='%231A65D9'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_6781_448'%3E%3Crect width='20' height='20' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
  background-size: 20px 20px;
  background-repeat: no-repeat;
  background-position: 46px center;
  border-radius: 60px;
  font-size: 0;
  line-height: 1;
  margin: 4px 0 0;
}
.hs-form .hs-fieldtype-file input[type=file]:hover {
  color: var(--signal-blue-dark);
}
.hs-form .hs-fieldtype-file input[type=file].file-selected {
  font-size: 18px;
}
.hs-form .hs-fieldtype-file input[type=file].file-selected::file-selector-button {
  font-size: 0;
}
.hs-form .hs-fieldtype-file input[type=file]::file-selector-button {
  background-color: transparent;
  border: 0;
  padding: 0;
  font-size: 18px;
  color: inherit;
}
.hs-form .form-columns-1 .hs-input {
  width: 100% !important;
}
.hs-form .form-columns-2 .hs-form-field {
  width: 100% !important;
}
@media (min-width: 768px) {
  .hs-form .form-columns-2 .hs-form-field {
    width: calc(50% - 8px) !important;
  }
}
@media (min-width: 1024px) {
  .hs-form .form-columns-2 .hs-form-field {
    width: calc(50% - 25px) !important;
  }
}
.hs-form .form-columns-3 .hs-form-field {
  width: 100% !important;
}
@media (min-width: 768px) {
  .hs-form .form-columns-3 .hs-form-field {
    width: calc(33.33% - 8px) !important;
  }
}
@media (min-width: 1024px) {
  .hs-form .form-columns-3 .hs-form-field {
    width: calc(33.33% - 25px) !important;
  }
}
.hs-form .form-columns-2,
.hs-form .form-columns-3 {
  display: flex;
  flex-wrap: wrap;
}
.hs-form fieldset {
  max-width: none !important;
  margin: 0 0 15px !important;
}
@media (min-width: 768px) {
  .hs-form fieldset {
    gap: 15px;
  }
}
@media (min-width: 1024px) {
  .hs-form fieldset {
    gap: 24px;
    margin: 0 0 24px !important;
  }
}
@media (min-width: 1230px) {
  .hs-form fieldset {
    gap: 50px;
    margin: 0 0 50px !important;
  }
}
.hs-form .hs-richtext {
  font-size: 16px;
  color: var(--deep-sea-60);
}

.hs-recaptcha.hs-form-field {
  margin: 0 0 20px;
}
@media (min-width: 1024px) {
  .hs-recaptcha.hs-form-field {
    margin: 0 0 35px;
  }
}

.inputs-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.inputs-list li {
  margin: 0 0 10px;
}

.hs-form-checkbox-display,
.hs-form-booleancheckbox-display,
.hs-form-radio-display {
  display: block;
}
.hs-form-checkbox-display input[type=radio],
.hs-form-checkbox-display input[type=checkbox],
.hs-form-booleancheckbox-display input[type=radio],
.hs-form-booleancheckbox-display input[type=checkbox],
.hs-form-radio-display input[type=radio],
.hs-form-radio-display input[type=checkbox] {
  position: absolute;
  left: -9999px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.hs-form-checkbox-display input[type=radio]:checked + span:after,
.hs-form-checkbox-display input[type=checkbox]:checked + span:after,
.hs-form-booleancheckbox-display input[type=radio]:checked + span:after,
.hs-form-booleancheckbox-display input[type=checkbox]:checked + span:after,
.hs-form-radio-display input[type=radio]:checked + span:after,
.hs-form-radio-display input[type=checkbox]:checked + span:after {
  opacity: 1;
}
.hs-form-checkbox-display input[type=radio] + span,
.hs-form-checkbox-display input[type=checkbox] + span,
.hs-form-booleancheckbox-display input[type=radio] + span,
.hs-form-booleancheckbox-display input[type=checkbox] + span,
.hs-form-radio-display input[type=radio] + span,
.hs-form-radio-display input[type=checkbox] + span {
  display: inline-block;
  vertical-align: top;
  position: relative;
  padding: 0 0 0 25px;
}
.hs-form-checkbox-display input[type=radio] + span:before, .hs-form-checkbox-display input[type=radio] + span:after,
.hs-form-checkbox-display input[type=checkbox] + span:before,
.hs-form-checkbox-display input[type=checkbox] + span:after,
.hs-form-booleancheckbox-display input[type=radio] + span:before,
.hs-form-booleancheckbox-display input[type=radio] + span:after,
.hs-form-booleancheckbox-display input[type=checkbox] + span:before,
.hs-form-booleancheckbox-display input[type=checkbox] + span:after,
.hs-form-radio-display input[type=radio] + span:before,
.hs-form-radio-display input[type=radio] + span:after,
.hs-form-radio-display input[type=checkbox] + span:before,
.hs-form-radio-display input[type=checkbox] + span:after {
  content: "";
  position: absolute;
}
.hs-form-checkbox-display input[type=radio] + span:before,
.hs-form-checkbox-display input[type=checkbox] + span:before,
.hs-form-booleancheckbox-display input[type=radio] + span:before,
.hs-form-booleancheckbox-display input[type=checkbox] + span:before,
.hs-form-radio-display input[type=radio] + span:before,
.hs-form-radio-display input[type=checkbox] + span:before {
  width: 16px;
  height: 16px;
  border: 1px solid var(--deep-sea-100);
  left: 0;
  top: 2px;
}
@media (min-width: 1024px) {
  .hs-form-checkbox-display input[type=radio] + span:before,
  .hs-form-checkbox-display input[type=checkbox] + span:before,
  .hs-form-booleancheckbox-display input[type=radio] + span:before,
  .hs-form-booleancheckbox-display input[type=checkbox] + span:before,
  .hs-form-radio-display input[type=radio] + span:before,
  .hs-form-radio-display input[type=checkbox] + span:before {
    top: 4px;
  }
}
.hs-form-checkbox-display input[type=radio] + span:after,
.hs-form-checkbox-display input[type=checkbox] + span:after,
.hs-form-booleancheckbox-display input[type=radio] + span:after,
.hs-form-booleancheckbox-display input[type=checkbox] + span:after,
.hs-form-radio-display input[type=radio] + span:after,
.hs-form-radio-display input[type=checkbox] + span:after {
  transition: opacity 0.5s ease-in-out;
  opacity: 0;
}

.hs-form-checkbox-display input[type=checkbox] + span:before,
.hs-form-booleancheckbox-display input[type=checkbox] + span:before {
  border-radius: 4px;
}
.hs-form-checkbox-display input[type=checkbox] + span:after,
.hs-form-booleancheckbox-display input[type=checkbox] + span:after {
  width: 9px;
  height: 6px;
  border: 2px solid var(--deep-sea-100);
  border-width: 0 0 2px 2px;
  transform: rotate(-45deg);
  left: 4px;
  top: 6px;
}
@media (min-width: 1024px) {
  .hs-form-checkbox-display input[type=checkbox] + span:after,
  .hs-form-booleancheckbox-display input[type=checkbox] + span:after {
    top: 8px;
  }
}

.hs-form-booleancheckbox-display span {
  color: var(--deep-sea-80);
}

.hs-form-radio-display input[type=radio] {
  position: absolute;
  left: -9999px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.hs-form-radio-display input[type=radio]:checked + span:after {
  opacity: 1;
}
.hs-form-radio-display input[type=radio] + span:before, .hs-form-radio-display input[type=radio] + span:after {
  content: "";
  position: absolute;
  border-radius: 50%;
}
.hs-form-radio-display input[type=radio] + span:after {
  width: 10px;
  height: 10px;
  background: var(--deep-sea-100);
  left: 3px;
  top: 5px;
}
@media (min-width: 1024px) {
  .hs-form-radio-display input[type=radio] + span:after {
    top: 7px;
  }
}

.fn-date-picker.pika-single {
  z-index: 9999;
  display: block;
  position: relative;
  color: #333;
  background: #fff;
  border: 1px solid #ccc;
  border-bottom-color: #bbb;
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  *zoom: 1;
}

.fn-date-picker.pika-single.is-hidden {
  display: none;
}

.fn-date-picker.pika-single.is-bound {
  position: absolute;
  box-shadow: 0 5px 15px -5px rgba(0, 0, 0, 0.5);
}

.fn-date-picker.pika-single:after,
.fn-date-picker.pika-single:before {
  content: " ";
  display: table;
}

.fn-date-picker.pika-single:after {
  clear: both;
}

.fn-date-picker .pika-lendar {
  float: left;
  width: 240px;
  margin: 8px;
}

.fn-date-picker .pika-title {
  position: relative;
  text-align: center;
}

.fn-date-picker .pika-title select {
  cursor: pointer;
  position: absolute;
  z-index: 9998;
  margin: 0;
  left: 0;
  top: 5px;
  filter: alpha(opacity=0);
  opacity: 0;
}

.fn-date-picker .pika-label {
  display: inline-block;
  *display: inline;
  position: relative;
  z-index: 9999;
  overflow: hidden;
  margin: 0;
  padding: 5px 3px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
  background-color: #fff;
}

.fn-date-picker .pika-next,
.fn-date-picker .pika-prev {
  display: block;
  cursor: pointer;
  position: relative;
  outline: none;
  border: 0;
  padding: 0;
  width: 20px;
  height: 30px;
  text-indent: 20px;
  white-space: nowrap;
  overflow: hidden;
  background-color: transparent;
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 75% 75%;
  opacity: 0.5;
  *position: absolute;
  *top: 0;
}

.fn-date-picker .pika-next:hover,
.fn-date-picker .pika-prev:hover {
  opacity: 1;
}

.fn-date-picker .pika-next.is-disabled,
.fn-date-picker .pika-prev.is-disabled {
  cursor: default;
  opacity: 0.2;
}

.fn-date-picker .is-rtl .pika-next,
.fn-date-picker .pika-prev {
  float: left;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAeCAYAAAAsEj5rAAAAUklEQVR42u3VMQoAIBADQf8Pgj+OD9hG2CtONJB2ymQkKe0HbwAP0xucDiQWARITIDEBEnMgMQ8S8+AqBIl6kKgHiXqQqAeJepBo/z38J/U0uAHlaBkBl9I4GwAAAABJRU5ErkJggg==");
  *left: 0;
}

.fn-date-picker .is-rtl .pika-prev,
.fn-date-picker .pika-next {
  float: right;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAeCAYAAAAsEj5rAAAAU0lEQVR42u3VOwoAMAgE0dwfAnNjU26bYkBCFGwfiL9VVWoO+BJ4Gf3gtsEKKoFBNTCoCAYVwaAiGNQGMUHMkjGbgjk2mIONuXo0nC8XnCf1JXgArVIZAQh5TKYAAAAASUVORK5CYII=");
  *right: 0;
}

.fn-date-picker .pika-select {
  display: inline-block;
  *display: inline;
}

.fn-date-picker .pika-table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  border: 0;
}

.fn-date-picker .pika-table td,
.fn-date-picker .pika-table th {
  width: 14.2857142857%;
  padding: 0;
}

.fn-date-picker .pika-table th {
  color: #999;
  font-size: 12px;
  line-height: 25px;
  font-weight: 700;
  text-align: center;
}

.fn-date-picker .pika-table abbr {
  border-bottom: none;
  cursor: help;
}

.fn-date-picker .pika-button {
  cursor: pointer;
  display: block;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
  border: 0;
  margin: 0;
  width: 100%;
  padding: 5px;
  color: #666;
  font-size: 12px;
  line-height: 15px;
  text-align: right;
  background: #f5f5f5;
}

.fn-date-picker .pika-button:hover {
  color: #fff !important;
  background: #ff8000 !important;
  box-shadow: none !important;
  border-radius: 3px !important;
}

.fn-date-picker .is-today .pika-button {
  color: #3af;
  font-weight: 700;
}

.fn-date-picker .is-selected .pika-button {
  color: #fff;
  font-weight: 700;
  background: #3af;
  box-shadow: inset 0 1px 3px #178fe5;
  border-radius: 3px;
}

.fn-date-picker .is-disabled .pika-button {
  pointer-events: none;
  cursor: default;
  color: #999;
  opacity: 0.3;
}

.fn-date-picker .pika-week {
  font-size: 11px;
  color: #999;
}

.hs-form-46de2907-7852-4127-a68e-07a4668c9192_3de3debf-a87c-475a-af7e-d15302bd734a .inputs-list.inline-list li {
  vertical-align: top;
  display: inline-block;
  word-wrap: break-word;
  padding-right: 16px;
}

.hs-form-46de2907-7852-4127-a68e-07a4668c9192_3de3debf-a87c-475a-af7e-d15302bd734a .inputs-list.inline-list li:after {
  clear: both;
}

.hs-form-46de2907-7852-4127-a68e-07a4668c9192_3de3debf-a87c-475a-af7e-d15302bd734a .inputs-list.inline-list li input {
  float: left;
}

.hs-form-46de2907-7852-4127-a68e-07a4668c9192_3de3debf-a87c-475a-af7e-d15302bd734a .inputs-list.inline-list.inline-list-2 li {
  width: 50%;
}

.hs-form-46de2907-7852-4127-a68e-07a4668c9192_3de3debf-a87c-475a-af7e-d15302bd734a .inputs-list.inline-list.inline-list-2 li:nth-child(2n) {
  padding-right: 0;
}

.hs-form-46de2907-7852-4127-a68e-07a4668c9192_3de3debf-a87c-475a-af7e-d15302bd734a .inputs-list.inline-list.inline-list-3 li {
  width: 33%;
}

.hs-form-46de2907-7852-4127-a68e-07a4668c9192_3de3debf-a87c-475a-af7e-d15302bd734a .inputs-list.inline-list.inline-list-3 li:nth-child(3n) {
  width: 34%;
  padding-right: 0;
}

.hs-fieldtype-intl-phone.hs-input {
  padding: 0;
  background: none;
  border: none;
  height: auto;
}

.hs-fieldtype-intl-phone.hs-input:after {
  clear: both;
  content: " ";
  display: table;
}

.hs-fieldtype-intl-phone.hs-input .hs-input {
  margin-bottom: 0;
}

.hs-fieldtype-intl-phone.hs-input input {
  width: 68% !important;
  float: right;
}

.hs-fieldtype-intl-phone.hs-input select {
  float: left;
  width: 30% !important;
}

@media (max-device-width: 480px) and (min-device-width: 320px), (max-width: 400px) {
  .hs-form-46de2907-7852-4127-a68e-07a4668c9192_3de3debf-a87c-475a-af7e-d15302bd734a > .hs-phone > .input > .hs-fieldtype-intl-phone.hs-input > input.hs-input {
    width: 68% !important;
  }
  .hs-form-46de2907-7852-4127-a68e-07a4668c9192_3de3debf-a87c-475a-af7e-d15302bd734a > .hs-phone > .input > .hs-fieldtype-intl-phone.hs-input > select.hs-input {
    width: 30% !important;
  }
}
.hs-fieldtype-textarea.hs-input {
  resize: vertical;
}

.hs-form-46de2907-7852-4127-a68e-07a4668c9192_3de3debf-a87c-475a-af7e-d15302bd734a .hs-button {
  white-space: pre-wrap;
}

.hs-form-46de2907-7852-4127-a68e-07a4668c9192_3de3debf-a87c-475a-af7e-d15302bd734a .hs-richtext {
  word-break: break-word;
}

.hs-form-46de2907-7852-4127-a68e-07a4668c9192_3de3debf-a87c-475a-af7e-d15302bd734a fieldset {
  border: 0;
  padding: 0;
  margin: 0;
  max-width: 500px;
}

.hs-form-46de2907-7852-4127-a68e-07a4668c9192_3de3debf-a87c-475a-af7e-d15302bd734a fieldset.form-columns-1 .hs-input {
  width: 95%;
}

.hs-form-46de2907-7852-4127-a68e-07a4668c9192_3de3debf-a87c-475a-af7e-d15302bd734a fieldset.form-columns-1 .input {
  margin-right: 8px;
}

.hs-form-46de2907-7852-4127-a68e-07a4668c9192_3de3debf-a87c-475a-af7e-d15302bd734a fieldset.form-columns-1 input[type=checkbox],
.hs-form-46de2907-7852-4127-a68e-07a4668c9192_3de3debf-a87c-475a-af7e-d15302bd734a fieldset.form-columns-1 input[type=radio] {
  width: auto;
}

.hs-form-46de2907-7852-4127-a68e-07a4668c9192_3de3debf-a87c-475a-af7e-d15302bd734a fieldset.form-columns-2 .hs-form-field {
  width: 50%;
  float: left;
}

.hs-form-46de2907-7852-4127-a68e-07a4668c9192_3de3debf-a87c-475a-af7e-d15302bd734a fieldset.form-columns-2 .input {
  margin-right: 8px;
}

.hs-form-46de2907-7852-4127-a68e-07a4668c9192_3de3debf-a87c-475a-af7e-d15302bd734a fieldset.form-columns-3 .hs-form-field {
  width: 32.7%;
  float: left;
}

.hs-form-46de2907-7852-4127-a68e-07a4668c9192_3de3debf-a87c-475a-af7e-d15302bd734a fieldset.form-columns-3 .input {
  margin-right: 8px;
}

.hs-form-46de2907-7852-4127-a68e-07a4668c9192_3de3debf-a87c-475a-af7e-d15302bd734a label.hs-hidden {
  visibility: hidden;
}

.hs-form-46de2907-7852-4127-a68e-07a4668c9192_3de3debf-a87c-475a-af7e-d15302bd734a .hs-field-desc {
  width: 100%;
}

.hs-custom-style .hs-input,
.hs-custom-style fieldset {
  max-width: 100%;
}

.hs-custom-style > div.form-columns-3 .hs-form-field,
.hs-custom-style fieldset.form-columns-3 .hs-form-field {
  width: 33.3%;
}

.hs-custom-style > div > div:last-of-type .hs-input:not([type=checkbox]):not([type=radio]),
.hs-custom-style fieldset > div:last-of-type .hs-input:not([type=checkbox]):not([type=radio]) {
  width: 100%;
  max-width: 100%;
}

.hs-custom-style > div input:not([type=image]):not([type=submit]):not([type=button]):not([type=radio]):not([type=checkbox]):not([type=file]),
.hs-custom-style fieldset input:not([type=image]):not([type=submit]):not([type=button]):not([type=radio]):not([type=checkbox]):not([type=file]) {
  box-sizing: border-box;
  padding: 0 15px;
  min-height: 27px;
}

.hs-custom-style > div textarea,
.hs-custom-style fieldset textarea {
  padding: 10px 15px;
}

.hs-custom-style .hs-dependent-field > div .hs-input:not([type=checkbox]):not([type=radio]) {
  width: 100%;
}

@media (max-width: 400px), (min-device-width: 320px) and (max-device-width: 480px) {
  .hs-custom-style .hs-input:not([type=checkbox]):not([type=radio]),
  .hs-custom-style fieldset {
    margin-right: 0 !important;
    width: 100% !important;
  }
  form.hs-form-46de2907-7852-4127-a68e-07a4668c9192_3de3debf-a87c-475a-af7e-d15302bd734a:not(.hs-video-form) .form-columns-2 .hs-form-field,
  form.hs-form-46de2907-7852-4127-a68e-07a4668c9192_3de3debf-a87c-475a-af7e-d15302bd734a:not(.hs-video-form) .form-columns-3 .hs-form-field {
    float: none;
    width: 100%;
  }
  form.hs-form-46de2907-7852-4127-a68e-07a4668c9192_3de3debf-a87c-475a-af7e-d15302bd734a:not(.hs-video-form) .form-columns-2 .hs-form-field .hs-input,
  form.hs-form-46de2907-7852-4127-a68e-07a4668c9192_3de3debf-a87c-475a-af7e-d15302bd734a:not(.hs-video-form) .form-columns-3 .hs-form-field .hs-input {
    width: 95%;
  }
  form.hs-form-46de2907-7852-4127-a68e-07a4668c9192_3de3debf-a87c-475a-af7e-d15302bd734a:not(.hs-video-form) .form-columns-2 .hs-form-field input[type=checkbox],
  form.hs-form-46de2907-7852-4127-a68e-07a4668c9192_3de3debf-a87c-475a-af7e-d15302bd734a:not(.hs-video-form) .form-columns-2 .hs-form-field input[type=radio],
  form.hs-form-46de2907-7852-4127-a68e-07a4668c9192_3de3debf-a87c-475a-af7e-d15302bd734a:not(.hs-video-form) .form-columns-3 .hs-form-field input[type=checkbox],
  form.hs-form-46de2907-7852-4127-a68e-07a4668c9192_3de3debf-a87c-475a-af7e-d15302bd734a:not(.hs-video-form) .form-columns-3 .hs-form-field input[type=radio] {
    width: auto;
  }
}
.legal-consent-container .field.hs-form-field {
  margin-bottom: 8px;
}

.legal-consent-container .hs-field-desc.checkbox-desc {
  margin: -12px 0 0 21px;
}

.legal-consent-container .hs-form-booleancheckbox-display input {
  float: left;
}

.legal-consent-container .hs-form-booleancheckbox-display > span {
  display: block;
  margin-left: 20px;
}

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

.legal-consent-container .hs-error-msgs label {
  color: #f2545b;
}

.legal-consent-container ~ .hs_recaptcha {
  margin-top: 18px;
}

.cookie-reset-container {
  font-size: 14px;
  margin-bottom: 10px;
  text-align: right;
}

#hs-outer-captcha-target,
#hs-outer-captcha-target * {
  display: none;
  height: 0;
  width: 0;
}

.hubspot-link__container {
  font-size: 14px;
  padding-bottom: 40px;
  position: relative;
  color: #9fa0a2;
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
}

.hubspot-link-text {
  color: #00a4bd;
  font-weight: 400;
}

.hubspot-link__container.sproket {
  color: #9fa0a2;
}

.hubspot-link {
  color: #9fa0a2;
}

.hubspot-link,
.hubspot-link:hover {
  text-decoration: none;
}

.hubspot-link:hover .hubspot-link-text {
  text-decoration: underline;
}

.hubspot-link__icon {
  margin-bottom: -1px;
  margin-right: 5px;
}

.hubspot-link__container.sproket .hubspot-link__icon {
  width: 30px;
  margin-right: 0;
  float: left;
  margin-top: -9px;
  margin-left: -5px;
}

.fn-date-picker.pika-single {
  z-index: 9999;
  display: block;
  position: relative;
  color: #333;
  background: #fff;
  border: 1px solid #ccc;
  border-bottom-color: #bbb;
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  *zoom: 1;
}

.fn-date-picker.pika-single.is-hidden {
  display: none;
}

.fn-date-picker.pika-single.is-bound {
  position: absolute;
  box-shadow: 0 5px 15px -5px rgba(0, 0, 0, 0.5);
}

.fn-date-picker.pika-single:after,
.fn-date-picker.pika-single:before {
  content: " ";
  display: table;
}

.fn-date-picker.pika-single:after {
  clear: both;
}

.fn-date-picker .pika-lendar {
  float: left;
  width: 240px;
  margin: 8px;
}

.fn-date-picker .pika-title {
  position: relative;
  text-align: center;
}

.fn-date-picker .pika-title select {
  cursor: pointer;
  position: absolute;
  z-index: 9998;
  margin: 0;
  left: 0;
  top: 5px;
  filter: alpha(opacity=0);
  opacity: 0;
}

.fn-date-picker .pika-label {
  display: inline-block;
  *display: inline;
  position: relative;
  z-index: 9999;
  overflow: hidden;
  margin: 0;
  padding: 5px 3px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
  background-color: #fff;
}

.fn-date-picker .pika-next,
.fn-date-picker .pika-prev {
  display: block;
  cursor: pointer;
  position: relative;
  outline: none;
  border: 0;
  padding: 0;
  width: 20px;
  height: 30px;
  text-indent: 20px;
  white-space: nowrap;
  overflow: hidden;
  background-color: transparent;
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 75% 75%;
  opacity: 0.5;
  *position: absolute;
  *top: 0;
}

.fn-date-picker .pika-next:hover,
.fn-date-picker .pika-prev:hover {
  opacity: 1;
}

.fn-date-picker .pika-next.is-disabled,
.fn-date-picker .pika-prev.is-disabled {
  cursor: default;
  opacity: 0.2;
}

.fn-date-picker .is-rtl .pika-next,
.fn-date-picker .pika-prev {
  float: left;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAeCAYAAAAsEj5rAAAAUklEQVR42u3VMQoAIBADQf8Pgj+OD9hG2CtONJB2ymQkKe0HbwAP0xucDiQWARITIDEBEnMgMQ8S8+AqBIl6kKgHiXqQqAeJepBo/z38J/U0uAHlaBkBl9I4GwAAAABJRU5ErkJggg==");
  *left: 0;
}

.fn-date-picker .is-rtl .pika-prev,
.fn-date-picker .pika-next {
  float: right;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAeCAYAAAAsEj5rAAAAU0lEQVR42u3VOwoAMAgE0dwfAnNjU26bYkBCFGwfiL9VVWoO+BJ4Gf3gtsEKKoFBNTCoCAYVwaAiGNQGMUHMkjGbgjk2mIONuXo0nC8XnCf1JXgArVIZAQh5TKYAAAAASUVORK5CYII=");
  *right: 0;
}

.fn-date-picker .pika-select {
  display: inline-block;
  *display: inline;
}

.fn-date-picker .pika-table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  border: 0;
}

.fn-date-picker .pika-table td,
.fn-date-picker .pika-table th {
  width: 14.2857142857%;
  padding: 0;
}

.fn-date-picker .pika-table th {
  color: #999;
  font-size: 12px;
  line-height: 25px;
  font-weight: 700;
  text-align: center;
}

.fn-date-picker .pika-table abbr {
  border-bottom: none;
  cursor: help;
}

.fn-date-picker .pika-button {
  cursor: pointer;
  display: block;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
  border: 0;
  margin: 0;
  width: 100%;
  padding: 5px;
  color: #666;
  font-size: 12px;
  line-height: 15px;
  text-align: right;
  background: #f5f5f5;
}

.fn-date-picker .pika-button:hover {
  color: #fff !important;
  background: #ff8000 !important;
  box-shadow: none !important;
  border-radius: 3px !important;
}

.fn-date-picker .is-today .pika-button {
  color: #3af;
  font-weight: 700;
}

.fn-date-picker .is-selected .pika-button {
  color: #fff;
  font-weight: 700;
  background: #3af;
  box-shadow: inset 0 1px 3px #178fe5;
  border-radius: 3px;
}

.fn-date-picker .is-disabled .pika-button {
  pointer-events: none;
  cursor: default;
  color: #999;
  opacity: 0.3;
}

.fn-date-picker .pika-week {
  font-size: 11px;
  color: #999;
}

.hs-form-2e4513a8-1d4b-477a-a231-178c2a260db6_57314c83-e087-438f-9c9f-41a5da3e4c20 .inputs-list.inline-list li {
  vertical-align: top;
  display: inline-block;
  word-wrap: break-word;
  padding-right: 16px;
}

.hs-form-2e4513a8-1d4b-477a-a231-178c2a260db6_57314c83-e087-438f-9c9f-41a5da3e4c20 .inputs-list.inline-list li:after {
  clear: both;
}

.hs-form-2e4513a8-1d4b-477a-a231-178c2a260db6_57314c83-e087-438f-9c9f-41a5da3e4c20 .inputs-list.inline-list li input {
  float: left;
}

.hs-form-2e4513a8-1d4b-477a-a231-178c2a260db6_57314c83-e087-438f-9c9f-41a5da3e4c20 .inputs-list.inline-list.inline-list-2 li {
  width: 50%;
}

.hs-form-2e4513a8-1d4b-477a-a231-178c2a260db6_57314c83-e087-438f-9c9f-41a5da3e4c20 .inputs-list.inline-list.inline-list-2 li:nth-child(2n) {
  padding-right: 0;
}

.hs-form-2e4513a8-1d4b-477a-a231-178c2a260db6_57314c83-e087-438f-9c9f-41a5da3e4c20 .inputs-list.inline-list.inline-list-3 li {
  width: 33%;
}

.hs-form-2e4513a8-1d4b-477a-a231-178c2a260db6_57314c83-e087-438f-9c9f-41a5da3e4c20 .inputs-list.inline-list.inline-list-3 li:nth-child(3n) {
  width: 34%;
  padding-right: 0;
}

.hs-fieldtype-intl-phone.hs-input {
  padding: 0;
  background: none;
  border: none;
  height: auto;
}

.hs-fieldtype-intl-phone.hs-input:after {
  clear: both;
  content: " ";
  display: table;
}

.hs-fieldtype-intl-phone.hs-input .hs-input {
  margin-bottom: 0;
}

.hs-fieldtype-intl-phone.hs-input input {
  width: 68% !important;
  float: right;
}

.hs-fieldtype-intl-phone.hs-input select {
  float: left;
  width: 30% !important;
}

@media (max-device-width: 480px) and (min-device-width: 320px), (max-width: 400px) {
  .hs-form-2e4513a8-1d4b-477a-a231-178c2a260db6_57314c83-e087-438f-9c9f-41a5da3e4c20 > .hs-phone > .input > .hs-fieldtype-intl-phone.hs-input > input.hs-input {
    width: 68% !important;
  }
  .hs-form-2e4513a8-1d4b-477a-a231-178c2a260db6_57314c83-e087-438f-9c9f-41a5da3e4c20 > .hs-phone > .input > .hs-fieldtype-intl-phone.hs-input > select.hs-input {
    width: 30% !important;
  }
}
.hs-fieldtype-textarea.hs-input {
  resize: vertical;
}

.hs-form-2e4513a8-1d4b-477a-a231-178c2a260db6_57314c83-e087-438f-9c9f-41a5da3e4c20 .hs-button {
  white-space: pre-wrap;
}

.hs-form-2e4513a8-1d4b-477a-a231-178c2a260db6_57314c83-e087-438f-9c9f-41a5da3e4c20 .hs-richtext {
  word-break: break-word;
}

.hs-form-2e4513a8-1d4b-477a-a231-178c2a260db6_57314c83-e087-438f-9c9f-41a5da3e4c20 fieldset {
  border: 0;
  padding: 0;
  margin: 0;
  max-width: 500px;
}

.hs-form-2e4513a8-1d4b-477a-a231-178c2a260db6_57314c83-e087-438f-9c9f-41a5da3e4c20 fieldset.form-columns-1 .hs-input {
  width: 95%;
}

.hs-form-2e4513a8-1d4b-477a-a231-178c2a260db6_57314c83-e087-438f-9c9f-41a5da3e4c20 fieldset.form-columns-1 .input {
  margin-right: 8px;
}

.hs-form-2e4513a8-1d4b-477a-a231-178c2a260db6_57314c83-e087-438f-9c9f-41a5da3e4c20 fieldset.form-columns-1 input[type=checkbox],
.hs-form-2e4513a8-1d4b-477a-a231-178c2a260db6_57314c83-e087-438f-9c9f-41a5da3e4c20 fieldset.form-columns-1 input[type=radio] {
  width: auto;
}

.hs-form-2e4513a8-1d4b-477a-a231-178c2a260db6_57314c83-e087-438f-9c9f-41a5da3e4c20 fieldset.form-columns-2 .hs-form-field {
  width: 50%;
  float: left;
}

.hs-form-2e4513a8-1d4b-477a-a231-178c2a260db6_57314c83-e087-438f-9c9f-41a5da3e4c20 fieldset.form-columns-2 .input {
  margin-right: 8px;
}

.hs-form-2e4513a8-1d4b-477a-a231-178c2a260db6_57314c83-e087-438f-9c9f-41a5da3e4c20 fieldset.form-columns-3 .hs-form-field {
  width: 32.7%;
  float: left;
}

.hs-form-2e4513a8-1d4b-477a-a231-178c2a260db6_57314c83-e087-438f-9c9f-41a5da3e4c20 fieldset.form-columns-3 .input {
  margin-right: 8px;
}

.hs-form-2e4513a8-1d4b-477a-a231-178c2a260db6_57314c83-e087-438f-9c9f-41a5da3e4c20 label.hs-hidden {
  visibility: hidden;
}

.hs-form-2e4513a8-1d4b-477a-a231-178c2a260db6_57314c83-e087-438f-9c9f-41a5da3e4c20 .hs-field-desc {
  width: 100%;
}

.hs-custom-style .hs-input,
.hs-custom-style fieldset {
  max-width: 100%;
}

.hs-custom-style > div.form-columns-3 .hs-form-field,
.hs-custom-style fieldset.form-columns-3 .hs-form-field {
  width: 33.3%;
}

.hs-custom-style > div > div:last-of-type .hs-input:not([type=checkbox]):not([type=radio]),
.hs-custom-style fieldset > div:last-of-type .hs-input:not([type=checkbox]):not([type=radio]) {
  width: 100%;
  max-width: 100%;
}

.hs-custom-style > div input:not([type=image]):not([type=submit]):not([type=button]):not([type=radio]):not([type=checkbox]):not([type=file]),
.hs-custom-style fieldset input:not([type=image]):not([type=submit]):not([type=button]):not([type=radio]):not([type=checkbox]):not([type=file]) {
  box-sizing: border-box;
  padding: 0 15px;
  min-height: 27px;
}

.hs-custom-style > div textarea,
.hs-custom-style fieldset textarea {
  padding: 10px 15px;
}

.hs-custom-style .hs-dependent-field > div .hs-input:not([type=checkbox]):not([type=radio]) {
  width: 100%;
}

@media (max-width: 400px), (min-device-width: 320px) and (max-device-width: 480px) {
  .hs-custom-style .hs-input:not([type=checkbox]):not([type=radio]),
  .hs-custom-style fieldset {
    margin-right: 0 !important;
    width: 100% !important;
  }
  form.hs-form-2e4513a8-1d4b-477a-a231-178c2a260db6_57314c83-e087-438f-9c9f-41a5da3e4c20:not(.hs-video-form) .form-columns-2 .hs-form-field,
  form.hs-form-2e4513a8-1d4b-477a-a231-178c2a260db6_57314c83-e087-438f-9c9f-41a5da3e4c20:not(.hs-video-form) .form-columns-3 .hs-form-field {
    float: none;
    width: 100%;
  }
  form.hs-form-2e4513a8-1d4b-477a-a231-178c2a260db6_57314c83-e087-438f-9c9f-41a5da3e4c20:not(.hs-video-form) .form-columns-2 .hs-form-field .hs-input,
  form.hs-form-2e4513a8-1d4b-477a-a231-178c2a260db6_57314c83-e087-438f-9c9f-41a5da3e4c20:not(.hs-video-form) .form-columns-3 .hs-form-field .hs-input {
    width: 95%;
  }
  form.hs-form-2e4513a8-1d4b-477a-a231-178c2a260db6_57314c83-e087-438f-9c9f-41a5da3e4c20:not(.hs-video-form) .form-columns-2 .hs-form-field input[type=checkbox],
  form.hs-form-2e4513a8-1d4b-477a-a231-178c2a260db6_57314c83-e087-438f-9c9f-41a5da3e4c20:not(.hs-video-form) .form-columns-2 .hs-form-field input[type=radio],
  form.hs-form-2e4513a8-1d4b-477a-a231-178c2a260db6_57314c83-e087-438f-9c9f-41a5da3e4c20:not(.hs-video-form) .form-columns-3 .hs-form-field input[type=checkbox],
  form.hs-form-2e4513a8-1d4b-477a-a231-178c2a260db6_57314c83-e087-438f-9c9f-41a5da3e4c20:not(.hs-video-form) .form-columns-3 .hs-form-field input[type=radio] {
    width: auto;
  }
}
.legal-consent-container .field.hs-form-field {
  margin-bottom: 8px;
}

.legal-consent-container .hs-field-desc.checkbox-desc {
  margin: -12px 0 0 21px;
}

.legal-consent-container .hs-form-booleancheckbox-display input {
  float: left;
}

.legal-consent-container .hs-form-booleancheckbox-display > span {
  display: block;
  margin-left: 20px;
}

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

.legal-consent-container .hs-error-msgs label {
  color: #f2545b;
}

.legal-consent-container ~ .hs_recaptcha {
  margin-top: 18px;
}

.cookie-reset-container {
  font-size: 14px;
  margin-bottom: 10px;
  text-align: right;
}

#hs-outer-captcha-target,
#hs-outer-captcha-target * {
  display: none;
  height: 0;
  width: 0;
}

.hubspot-link__container {
  font-size: 14px;
  padding-bottom: 40px;
  position: relative;
  color: #9fa0a2;
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
}

.hubspot-link-text {
  color: #00a4bd;
  font-weight: 400;
}

.hubspot-link__container.sproket {
  color: #9fa0a2;
}

.hubspot-link {
  color: #9fa0a2;
}

.hubspot-link,
.hubspot-link:hover {
  text-decoration: none;
}

.hubspot-link:hover .hubspot-link-text {
  text-decoration: underline;
}

.hubspot-link__icon {
  margin-bottom: -1px;
  margin-right: 5px;
}

.hubspot-link__container.sproket .hubspot-link__icon {
  width: 30px;
  margin-right: 0;
  float: left;
  margin-top: -9px;
  margin-left: -5px;
}

.fn-date-picker.pika-single {
  z-index: 9999;
  display: block;
  position: relative;
  color: #333;
  background: #fff;
  border: 1px solid #ccc;
  border-bottom-color: #bbb;
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  *zoom: 1;
}

.fn-date-picker.pika-single.is-hidden {
  display: none;
}

.fn-date-picker.pika-single.is-bound {
  position: absolute;
  box-shadow: 0 5px 15px -5px rgba(0, 0, 0, 0.5);
}

.fn-date-picker.pika-single:after,
.fn-date-picker.pika-single:before {
  content: " ";
  display: table;
}

.fn-date-picker.pika-single:after {
  clear: both;
}

.fn-date-picker .pika-lendar {
  float: left;
  width: 240px;
  margin: 8px;
}

.fn-date-picker .pika-title {
  position: relative;
  text-align: center;
}

.fn-date-picker .pika-title select {
  cursor: pointer;
  position: absolute;
  z-index: 9998;
  margin: 0;
  left: 0;
  top: 5px;
  filter: alpha(opacity=0);
  opacity: 0;
}

.fn-date-picker .pika-label {
  display: inline-block;
  *display: inline;
  position: relative;
  z-index: 9999;
  overflow: hidden;
  margin: 0;
  padding: 5px 3px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
  background-color: #fff;
}

.fn-date-picker .pika-next,
.fn-date-picker .pika-prev {
  display: block;
  cursor: pointer;
  position: relative;
  outline: none;
  border: 0;
  padding: 0;
  width: 20px;
  height: 30px;
  text-indent: 20px;
  white-space: nowrap;
  overflow: hidden;
  background-color: transparent;
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 75% 75%;
  opacity: 0.5;
  *position: absolute;
  *top: 0;
}

.fn-date-picker .pika-next:hover,
.fn-date-picker .pika-prev:hover {
  opacity: 1;
}

.fn-date-picker .pika-next.is-disabled,
.fn-date-picker .pika-prev.is-disabled {
  cursor: default;
  opacity: 0.2;
}

.fn-date-picker .is-rtl .pika-next,
.fn-date-picker .pika-prev {
  float: left;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAeCAYAAAAsEj5rAAAAUklEQVR42u3VMQoAIBADQf8Pgj+OD9hG2CtONJB2ymQkKe0HbwAP0xucDiQWARITIDEBEnMgMQ8S8+AqBIl6kKgHiXqQqAeJepBo/z38J/U0uAHlaBkBl9I4GwAAAABJRU5ErkJggg==");
  *left: 0;
}

.fn-date-picker .is-rtl .pika-prev,
.fn-date-picker .pika-next {
  float: right;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAeCAYAAAAsEj5rAAAAU0lEQVR42u3VOwoAMAgE0dwfAnNjU26bYkBCFGwfiL9VVWoO+BJ4Gf3gtsEKKoFBNTCoCAYVwaAiGNQGMUHMkjGbgjk2mIONuXo0nC8XnCf1JXgArVIZAQh5TKYAAAAASUVORK5CYII=");
  *right: 0;
}

.fn-date-picker .pika-select {
  display: inline-block;
  *display: inline;
}

.fn-date-picker .pika-table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  border: 0;
}

.fn-date-picker .pika-table td,
.fn-date-picker .pika-table th {
  width: 14.2857142857%;
  padding: 0;
}

.fn-date-picker .pika-table th {
  color: #999;
  font-size: 12px;
  line-height: 25px;
  font-weight: 700;
  text-align: center;
}

.fn-date-picker .pika-table abbr {
  border-bottom: none;
  cursor: help;
}

.fn-date-picker .pika-button {
  cursor: pointer;
  display: block;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
  border: 0;
  margin: 0;
  width: 100%;
  padding: 5px;
  color: #666;
  font-size: 12px;
  line-height: 15px;
  text-align: right;
  background: #f5f5f5;
}

.fn-date-picker .pika-button:hover {
  color: #fff !important;
  background: #ff8000 !important;
  box-shadow: none !important;
  border-radius: 3px !important;
}

.fn-date-picker .is-today .pika-button {
  color: #3af;
  font-weight: 700;
}

.fn-date-picker .is-selected .pika-button {
  color: #fff;
  font-weight: 700;
  background: #3af;
  box-shadow: inset 0 1px 3px #178fe5;
  border-radius: 3px;
}

.fn-date-picker .is-disabled .pika-button {
  pointer-events: none;
  cursor: default;
  color: #999;
  opacity: 0.3;
}

.fn-date-picker .pika-week {
  font-size: 11px;
  color: #999;
}

.hs-form-be91526e-86be-44c0-b4d2-44b7a351fb64_6f06e686-8966-4fb0-89d7-20ee3806ef68 .inputs-list.inline-list li {
  vertical-align: top;
  display: inline-block;
  word-wrap: break-word;
  padding-right: 16px;
}

.hs-form-be91526e-86be-44c0-b4d2-44b7a351fb64_6f06e686-8966-4fb0-89d7-20ee3806ef68 .inputs-list.inline-list li:after {
  clear: both;
}

.hs-form-be91526e-86be-44c0-b4d2-44b7a351fb64_6f06e686-8966-4fb0-89d7-20ee3806ef68 .inputs-list.inline-list li input {
  float: left;
}

.hs-form-be91526e-86be-44c0-b4d2-44b7a351fb64_6f06e686-8966-4fb0-89d7-20ee3806ef68 .inputs-list.inline-list.inline-list-2 li {
  width: 50%;
}

.hs-form-be91526e-86be-44c0-b4d2-44b7a351fb64_6f06e686-8966-4fb0-89d7-20ee3806ef68 .inputs-list.inline-list.inline-list-2 li:nth-child(2n) {
  padding-right: 0;
}

.hs-form-be91526e-86be-44c0-b4d2-44b7a351fb64_6f06e686-8966-4fb0-89d7-20ee3806ef68 .inputs-list.inline-list.inline-list-3 li {
  width: 33%;
}

.hs-form-be91526e-86be-44c0-b4d2-44b7a351fb64_6f06e686-8966-4fb0-89d7-20ee3806ef68 .inputs-list.inline-list.inline-list-3 li:nth-child(3n) {
  width: 34%;
  padding-right: 0;
}

.hs-fieldtype-intl-phone.hs-input {
  padding: 0;
  background: none;
  border: none;
  height: auto;
}

.hs-fieldtype-intl-phone.hs-input:after {
  clear: both;
  content: " ";
  display: table;
}

.hs-fieldtype-intl-phone.hs-input .hs-input {
  margin-bottom: 0;
}

.hs-fieldtype-intl-phone.hs-input input {
  width: 68% !important;
  float: right;
}

.hs-fieldtype-intl-phone.hs-input select {
  float: left;
  width: 30% !important;
}

@media (max-device-width: 480px) and (min-device-width: 320px), (max-width: 400px) {
  .hs-form-be91526e-86be-44c0-b4d2-44b7a351fb64_6f06e686-8966-4fb0-89d7-20ee3806ef68 > .hs-phone > .input > .hs-fieldtype-intl-phone.hs-input > input.hs-input {
    width: 68% !important;
  }
  .hs-form-be91526e-86be-44c0-b4d2-44b7a351fb64_6f06e686-8966-4fb0-89d7-20ee3806ef68 > .hs-phone > .input > .hs-fieldtype-intl-phone.hs-input > select.hs-input {
    width: 30% !important;
  }
}
.hs-fieldtype-textarea.hs-input {
  resize: vertical;
}

.hs-form-be91526e-86be-44c0-b4d2-44b7a351fb64_6f06e686-8966-4fb0-89d7-20ee3806ef68 .hs-button {
  white-space: pre-wrap;
}

.hs-form-be91526e-86be-44c0-b4d2-44b7a351fb64_6f06e686-8966-4fb0-89d7-20ee3806ef68 .hs-richtext {
  word-break: break-word;
}

.hs-form-be91526e-86be-44c0-b4d2-44b7a351fb64_6f06e686-8966-4fb0-89d7-20ee3806ef68 fieldset {
  border: 0;
  padding: 0;
  margin: 0;
  max-width: 500px;
}

.hs-form-be91526e-86be-44c0-b4d2-44b7a351fb64_6f06e686-8966-4fb0-89d7-20ee3806ef68 fieldset.form-columns-1 .hs-input {
  width: 95%;
}

.hs-form-be91526e-86be-44c0-b4d2-44b7a351fb64_6f06e686-8966-4fb0-89d7-20ee3806ef68 fieldset.form-columns-1 .input {
  margin-right: 8px;
}

.hs-form-be91526e-86be-44c0-b4d2-44b7a351fb64_6f06e686-8966-4fb0-89d7-20ee3806ef68 fieldset.form-columns-1 input[type=checkbox],
.hs-form-be91526e-86be-44c0-b4d2-44b7a351fb64_6f06e686-8966-4fb0-89d7-20ee3806ef68 fieldset.form-columns-1 input[type=radio] {
  width: auto;
}

.hs-form-be91526e-86be-44c0-b4d2-44b7a351fb64_6f06e686-8966-4fb0-89d7-20ee3806ef68 fieldset.form-columns-2 .hs-form-field {
  width: 50%;
  float: left;
}

.hs-form-be91526e-86be-44c0-b4d2-44b7a351fb64_6f06e686-8966-4fb0-89d7-20ee3806ef68 fieldset.form-columns-2 .input {
  margin-right: 8px;
}

.hs-form-be91526e-86be-44c0-b4d2-44b7a351fb64_6f06e686-8966-4fb0-89d7-20ee3806ef68 fieldset.form-columns-3 .hs-form-field {
  width: 32.7%;
  float: left;
}

.hs-form-be91526e-86be-44c0-b4d2-44b7a351fb64_6f06e686-8966-4fb0-89d7-20ee3806ef68 fieldset.form-columns-3 .input {
  margin-right: 8px;
}

.hs-form-be91526e-86be-44c0-b4d2-44b7a351fb64_6f06e686-8966-4fb0-89d7-20ee3806ef68 label.hs-hidden {
  visibility: hidden;
}

.hs-form-be91526e-86be-44c0-b4d2-44b7a351fb64_6f06e686-8966-4fb0-89d7-20ee3806ef68 .hs-field-desc {
  width: 100%;
}

.hs-custom-style .hs-input,
.hs-custom-style fieldset {
  max-width: 100%;
}

.hs-custom-style > div.form-columns-3 .hs-form-field,
.hs-custom-style fieldset.form-columns-3 .hs-form-field {
  width: 33.3%;
}

.hs-custom-style > div > div:last-of-type .hs-input:not([type=checkbox]):not([type=radio]),
.hs-custom-style fieldset > div:last-of-type .hs-input:not([type=checkbox]):not([type=radio]) {
  width: 100%;
  max-width: 100%;
}

.hs-custom-style > div input:not([type=image]):not([type=submit]):not([type=button]):not([type=radio]):not([type=checkbox]):not([type=file]),
.hs-custom-style fieldset input:not([type=image]):not([type=submit]):not([type=button]):not([type=radio]):not([type=checkbox]):not([type=file]) {
  box-sizing: border-box;
  padding: 0 15px;
  min-height: 27px;
}

.hs-custom-style > div textarea,
.hs-custom-style fieldset textarea {
  padding: 10px 15px;
}

.hs-custom-style .hs-dependent-field > div .hs-input:not([type=checkbox]):not([type=radio]) {
  width: 100%;
}

@media (max-width: 400px), (min-device-width: 320px) and (max-device-width: 480px) {
  .hs-custom-style .hs-input:not([type=checkbox]):not([type=radio]),
  .hs-custom-style fieldset {
    margin-right: 0 !important;
    width: 100% !important;
  }
  form.hs-form-be91526e-86be-44c0-b4d2-44b7a351fb64_6f06e686-8966-4fb0-89d7-20ee3806ef68:not(.hs-video-form) .form-columns-2 .hs-form-field,
  form.hs-form-be91526e-86be-44c0-b4d2-44b7a351fb64_6f06e686-8966-4fb0-89d7-20ee3806ef68:not(.hs-video-form) .form-columns-3 .hs-form-field {
    float: none;
    width: 100%;
  }
  form.hs-form-be91526e-86be-44c0-b4d2-44b7a351fb64_6f06e686-8966-4fb0-89d7-20ee3806ef68:not(.hs-video-form) .form-columns-2 .hs-form-field .hs-input,
  form.hs-form-be91526e-86be-44c0-b4d2-44b7a351fb64_6f06e686-8966-4fb0-89d7-20ee3806ef68:not(.hs-video-form) .form-columns-3 .hs-form-field .hs-input {
    width: 95%;
  }
  form.hs-form-be91526e-86be-44c0-b4d2-44b7a351fb64_6f06e686-8966-4fb0-89d7-20ee3806ef68:not(.hs-video-form) .form-columns-2 .hs-form-field input[type=checkbox],
  form.hs-form-be91526e-86be-44c0-b4d2-44b7a351fb64_6f06e686-8966-4fb0-89d7-20ee3806ef68:not(.hs-video-form) .form-columns-2 .hs-form-field input[type=radio],
  form.hs-form-be91526e-86be-44c0-b4d2-44b7a351fb64_6f06e686-8966-4fb0-89d7-20ee3806ef68:not(.hs-video-form) .form-columns-3 .hs-form-field input[type=checkbox],
  form.hs-form-be91526e-86be-44c0-b4d2-44b7a351fb64_6f06e686-8966-4fb0-89d7-20ee3806ef68:not(.hs-video-form) .form-columns-3 .hs-form-field input[type=radio] {
    width: auto;
  }
}
.legal-consent-container .field.hs-form-field {
  margin-bottom: 8px;
}

.legal-consent-container .hs-field-desc.checkbox-desc {
  margin: -12px 0 0 21px;
}

.legal-consent-container .hs-form-booleancheckbox-display input {
  float: left;
}

.legal-consent-container .hs-form-booleancheckbox-display > span {
  display: block;
  margin-left: 20px;
}

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

.legal-consent-container .hs-error-msgs label {
  color: #f2545b;
}

.legal-consent-container ~ .hs_recaptcha {
  margin-top: 18px;
}

.cookie-reset-container {
  font-size: 14px;
  margin-bottom: 10px;
  text-align: right;
}

#hs-outer-captcha-target,
#hs-outer-captcha-target * {
  display: none;
  height: 0;
  width: 0;
}

.hubspot-link__container {
  font-size: 14px;
  padding-bottom: 40px;
  position: relative;
  color: #9fa0a2;
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
}

.hubspot-link-text {
  color: #00a4bd;
  font-weight: 400;
}

.hubspot-link__container.sproket {
  color: #9fa0a2;
}

.hubspot-link {
  color: #9fa0a2;
}

.hubspot-link,
.hubspot-link:hover {
  text-decoration: none;
}

.hubspot-link:hover .hubspot-link-text {
  text-decoration: underline;
}

.hubspot-link__icon {
  margin-bottom: -1px;
  margin-right: 5px;
}

.hubspot-link__container.sproket .hubspot-link__icon {
  width: 30px;
  margin-right: 0;
  float: left;
  margin-top: -9px;
  margin-left: -5px;
}

.hs-whatsapp-button-wrapper {
  display: inline-block;
}

.hs-whatsapp-button {
  align-items: center;
  display: flex;
  justify-content: center;
  padding: 15px;
  text-decoration: none;
}

.hs-whatsapp-button__icon {
  display: flex;
  height: 2rem;
}

.hs-whatsapp-button__text {
  display: flex;
}

#hs_cos_wrapper_module_173073486826311 .hs-whatsapp-button {
  background: rgb(35, 211, 102);
  border: 1px none #000000;
  color: #000000;
  font-size: 24px;
  font-family: Helvetica;
  font-style: normal;
  font-weight: normal;
  text-decoration: none;
}

#hs_cos_wrapper_module_173073486826311 .hs-whatsapp-button--text {
  border-radius: 20px;
}

#hs_cos_wrapper_module_173073486826311 .hs-whatsapp-button--icon {
  border-radius: 50%;
}

#hs_cos_wrapper_module_173073486826311 .hs-whatsapp-button__icon {
  height: 32px;
  width: 32px;
  fill: rgb(0, 0, 0);
}

#hs_cos_wrapper_module_173073486826311 .hs-whatsapp-button__text--left {
  order: 2;
}

#hs_cos_wrapper_module_173073486826311 .hs-whatsapp-button__text--right {
  order: 1;
}

#hs_cos_wrapper_module_173073486826311 .hs-whatsapp-button__icon--right {
  margin-right: 0;
  order: 2;
  margin-left: 10px;
}

#hs_cos_wrapper_module_173073486826311 .hs-whatsapp-button__icon--left {
  margin-left: 0;
  order: 1;
  margin-right: 10px;
}

noscript {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  margin: 0;
  font-size: 14px;
  color: #000;
  background: #ff8f8f;
  display: block;
  padding: 5px 0;
  text-align: center;
  z-index: 99999;
}

.accessibility {
  position: absolute;
  left: -200vw;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.accessibility:focus {
  position: static;
  width: auto;
  height: auto;
}

.hidden {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/**
 * Swiper 11.1.10
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2024 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: August 21, 2024
 */
@font-face {
  font-family: swiper-icons;
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: #007aff ;
}

:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
  display: block;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-horizontal {
  touch-action: pan-y;
}

.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d {
  perspective: 1200px;
}

.swiper-3d .swiper-cube-shadow,
.swiper-3d .swiper-slide {
  transform-style: preserve-3d;
}

.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}

.swiper-css-mode.swiper-vertical > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  scroll-snap-type: none;
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}

.swiper-css-mode.swiper-centered > .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}

.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader,
.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff ;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000 ;
}

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}

.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
  height: 1px;
  width: var(--swiper-virtual-size);
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
  width: 1px;
  height: var(--swiper-virtual-size);
}

:root {
  --swiper-navigation-size: 44px ;
}

.swiper-button-next,
.swiper-button-prev {
  position: absolute;
  top: var(--swiper-navigation-top-offset, 50%);
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-next.swiper-button-hidden,
.swiper-button-prev.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}

.swiper-navigation-disabled .swiper-button-next,
.swiper-navigation-disabled .swiper-button-prev {
  display: none !important;
}

.swiper-button-next svg,
.swiper-button-prev svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform-origin: center;
}

.swiper-rtl .swiper-button-next svg,
.swiper-rtl .swiper-button-prev svg {
  transform: rotate(180deg);
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, 10px);
  right: auto;
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}

.swiper-button-lock {
  display: none;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: "prev";
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: "next";
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 0.3s opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-pagination-disabled > .swiper-pagination,
.swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}

.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-pagination-vertical.swiper-pagination-bullets,
.swiper-vertical > .swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}

.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 0.2s transform, 0.2s top;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 0.2s transform, 0.2s left;
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 0.2s transform, 0.2s right;
}

.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}

.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}

.swiper-horizontal > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,
.swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: var(--swiper-pagination-progressbar-size, 4px);
  left: 0;
  top: 0;
}

.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical,
.swiper-vertical > .swiper-pagination-progressbar {
  width: var(--swiper-pagination-progressbar-size, 4px);
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-lock {
  display: none;
}

.swiper-scrollbar {
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  position: relative;
  touch-action: none;
  background: var(--swiper-scrollbar-bg-color, rgba(0, 0, 0, 0.1));
}

.swiper-scrollbar-disabled > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-horizontal {
  position: absolute;
  left: var(--swiper-scrollbar-sides-offset, 1%);
  bottom: var(--swiper-scrollbar-bottom, 4px);
  top: var(--swiper-scrollbar-top, auto);
  z-index: 50;
  height: var(--swiper-scrollbar-size, 4px);
  width: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}

.swiper-scrollbar.swiper-scrollbar-vertical,
.swiper-vertical > .swiper-scrollbar {
  position: absolute;
  left: var(--swiper-scrollbar-left, auto);
  right: var(--swiper-scrollbar-right, 4px);
  top: var(--swiper-scrollbar-sides-offset, 1%);
  z-index: 50;
  width: var(--swiper-scrollbar-size, 4px);
  height: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: var(--swiper-scrollbar-drag-bg-color, rgba(0, 0, 0, 0.5));
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container > canvas,
.swiper-zoom-container > img,
.swiper-zoom-container > svg {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
  touch-action: none;
}

.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-grid > .swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-grid-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}

.swiper-fade.swiper-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}

.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}

.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-fade .swiper-slide-active {
  pointer-events: auto;
}

.swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube {
  overflow: visible;
}

.swiper-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-cube.swiper-rtl .swiper-slide {
  transform-origin: 100% 0;
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-next,
.swiper-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0;
}

.swiper-cube .swiper-cube-shadow:before {
  content: "";
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  filter: blur(50px);
}

.swiper-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-bottom,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-left,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-right,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-flip {
  overflow: visible;
}

.swiper-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-flip .swiper-slide-active,
.swiper-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-bottom,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-left,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-right,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-creative .swiper-slide {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
  transition-property: transform, opacity, height;
}

.swiper-cards {
  overflow: visible;
}

.swiper-cards .swiper-slide {
  transform-origin: center bottom;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
}

body.compensate-for-scrollbar {
  overflow: hidden;
}

.fancybox-active {
  height: auto;
}

.fancybox-is-hidden {
  left: -9999px;
  margin: 0;
  position: absolute !important;
  top: -9999px;
  visibility: hidden;
}

.fancybox-container {
  -webkit-backface-visibility: hidden;
  height: 100%;
  left: 0;
  outline: none;
  position: fixed;
  -webkit-tap-highlight-color: transparent;
  top: 0;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  transform: translateZ(0);
  width: 100%;
  z-index: 99992;
}

.fancybox-container * {
  box-sizing: border-box;
}

.fancybox-outer,
.fancybox-inner,
.fancybox-bg,
.fancybox-stage {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.fancybox-outer {
  -webkit-overflow-scrolling: touch;
  overflow-y: auto;
}

.fancybox-bg {
  background: rgb(30, 30, 30);
  opacity: 0;
  transition-duration: inherit;
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.47, 0, 0.74, 0.71);
}

.fancybox-is-open .fancybox-bg {
  opacity: 0.9;
  transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
}

.fancybox-infobar,
.fancybox-toolbar,
.fancybox-caption,
.fancybox-navigation .fancybox-button {
  direction: ltr;
  opacity: 0;
  position: absolute;
  transition: opacity 0.25s ease, visibility 0s ease 0.25s;
  visibility: hidden;
  z-index: 99997;
}

.fancybox-show-infobar .fancybox-infobar,
.fancybox-show-toolbar .fancybox-toolbar,
.fancybox-show-caption .fancybox-caption,
.fancybox-show-nav .fancybox-navigation .fancybox-button {
  opacity: 1;
  transition: opacity 0.25s ease 0s, visibility 0s ease 0s;
  visibility: visible;
}

.fancybox-infobar {
  color: #ccc;
  font-size: 13px;
  -webkit-font-smoothing: subpixel-antialiased;
  height: 44px;
  left: 0;
  line-height: 44px;
  min-width: 44px;
  mix-blend-mode: difference;
  padding: 0 10px;
  pointer-events: none;
  top: 0;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.fancybox-toolbar {
  right: 0;
  top: 0;
}

.fancybox-stage {
  direction: ltr;
  overflow: visible;
  transform: translateZ(0);
  z-index: 99994;
}

.fancybox-is-open .fancybox-stage {
  overflow: hidden;
}

.fancybox-slide {
  -webkit-backface-visibility: hidden;
  /* Using without prefix would break IE11 */
  display: none;
  height: 100%;
  left: 0;
  outline: none;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 44px;
  position: absolute;
  text-align: center;
  top: 0;
  transition-property: transform, opacity;
  white-space: normal;
  width: 100%;
  z-index: 99994;
}

.fancybox-slide::before {
  content: "";
  display: inline-block;
  font-size: 0;
  height: 100%;
  vertical-align: middle;
  width: 0;
}

.fancybox-is-sliding .fancybox-slide,
.fancybox-slide--previous,
.fancybox-slide--current,
.fancybox-slide--next {
  display: block;
}

.fancybox-slide--image {
  overflow: hidden;
  padding: 44px 0;
}

.fancybox-slide--image::before {
  display: none;
}

.fancybox-slide--html {
  padding: 6px;
}

.fancybox-content {
  background: #fff;
  display: inline-block;
  margin: 0;
  max-width: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 44px;
  position: relative;
  text-align: left;
  vertical-align: middle;
}

.fancybox-slide--image .fancybox-content {
  animation-timing-function: cubic-bezier(0.5, 0, 0.14, 1);
  -webkit-backface-visibility: hidden;
  background: transparent;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  left: 0;
  max-width: none;
  overflow: visible;
  padding: 0;
  position: absolute;
  top: 0;
  -ms-transform-origin: top left;
  transform-origin: top left;
  transition-property: transform, opacity;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  z-index: 99995;
}

.fancybox-can-zoomOut .fancybox-content {
  cursor: zoom-out;
}

.fancybox-can-zoomIn .fancybox-content {
  cursor: zoom-in;
}

.fancybox-can-swipe .fancybox-content,
.fancybox-can-pan .fancybox-content {
  cursor: -webkit-grab;
  cursor: grab;
}

.fancybox-is-grabbing .fancybox-content {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.fancybox-container [data-selectable=true] {
  cursor: text;
}

.fancybox-image,
.fancybox-spaceball {
  background: transparent;
  border: 0;
  height: 100%;
  left: 0;
  margin: 0;
  max-height: none;
  max-width: none;
  padding: 0;
  position: absolute;
  top: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 100%;
}

.fancybox-spaceball {
  z-index: 1;
}

.fancybox-slide--video .fancybox-content,
.fancybox-slide--map .fancybox-content,
.fancybox-slide--pdf .fancybox-content,
.fancybox-slide--iframe .fancybox-content {
  height: 100%;
  overflow: visible;
  padding: 0;
  width: 100%;
}

.fancybox-slide--video .fancybox-content {
  background: #000;
}

.fancybox-slide--map .fancybox-content {
  background: #e5e3df;
}

.fancybox-slide--iframe .fancybox-content {
  background: #fff;
}

.fancybox-video,
.fancybox-iframe {
  background: transparent;
  border: 0;
  display: block;
  height: 100%;
  margin: 0;
  overflow: hidden;
  padding: 0;
  width: 100%;
}

/* Fix iOS */
.fancybox-iframe {
  left: 0;
  position: absolute;
  top: 0;
}

.fancybox-error {
  background: #fff;
  cursor: default;
  max-width: 400px;
  padding: 40px;
  width: 100%;
}

.fancybox-error p {
  color: #444;
  font-size: 16px;
  line-height: 20px;
  margin: 0;
  padding: 0;
}

/* Buttons */
.fancybox-button {
  background: rgba(30, 30, 30, 0.6);
  border: 0;
  border-radius: 0;
  box-shadow: none;
  cursor: pointer;
  display: inline-block;
  height: 44px;
  margin: 0;
  padding: 10px;
  position: relative;
  transition: color 0.2s;
  vertical-align: top;
  visibility: inherit;
  width: 44px;
}

.fancybox-button,
.fancybox-button:visited,
.fancybox-button:link {
  color: #ccc;
}

.fancybox-button:hover {
  color: #fff;
}

.fancybox-button:focus {
  outline: none;
}

.fancybox-button.fancybox-focus {
  outline: 1px dotted;
}

.fancybox-button[disabled],
.fancybox-button[disabled]:hover {
  color: #888;
  cursor: default;
  outline: none;
}

/* Fix IE11 */
.fancybox-button div {
  height: 100%;
}

.fancybox-button svg {
  display: block;
  height: 100%;
  overflow: visible;
  position: relative;
  width: 100%;
}

.fancybox-button svg path {
  fill: currentColor;
  stroke-width: 0;
}

.fancybox-button--play svg:nth-child(2),
.fancybox-button--fsenter svg:nth-child(2) {
  display: none;
}

.fancybox-button--pause svg:nth-child(1),
.fancybox-button--fsexit svg:nth-child(1) {
  display: none;
}

.fancybox-progress {
  background: #ff5268;
  height: 2px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  -ms-transform-origin: 0;
  transform-origin: 0;
  transition-property: transform;
  transition-timing-function: linear;
  z-index: 99998;
}

/* Close button on the top right corner of html content */
.fancybox-close-small {
  background: transparent;
  border: 0;
  border-radius: 0;
  color: #ccc;
  cursor: pointer;
  opacity: 0.8;
  padding: 8px;
  position: absolute;
  right: -12px;
  top: -44px;
  z-index: 401;
}

.fancybox-close-small:hover {
  color: #fff;
  opacity: 1;
}

.fancybox-slide--html .fancybox-close-small {
  color: currentColor;
  padding: 10px;
  right: 0;
  top: 0;
}

.fancybox-slide--image.fancybox-is-scaling .fancybox-content {
  overflow: hidden;
}

.fancybox-is-scaling .fancybox-close-small,
.fancybox-is-zoomable.fancybox-can-pan .fancybox-close-small {
  display: none;
}

/* Navigation arrows */
.fancybox-navigation .fancybox-button {
  background-clip: content-box;
  height: 100px;
  opacity: 0;
  position: absolute;
  top: calc(50% - 50px);
  width: 70px;
}

.fancybox-navigation .fancybox-button div {
  padding: 7px;
}

.fancybox-navigation .fancybox-button--arrow_left {
  left: 0;
  left: env(safe-area-inset-left);
  padding: 31px 26px 31px 6px;
}

.fancybox-navigation .fancybox-button--arrow_right {
  padding: 31px 6px 31px 26px;
  right: 0;
  right: env(safe-area-inset-right);
}

/* Caption */
.fancybox-caption {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.15) 65%, rgba(0, 0, 0, 0.075) 75.5%, rgba(0, 0, 0, 0.037) 82.85%, rgba(0, 0, 0, 0.019) 88%, rgba(0, 0, 0, 0) 100%);
  bottom: 0;
  color: #eee;
  font-size: 14px;
  font-weight: 400;
  left: 0;
  line-height: 1.5;
  padding: 75px 44px 25px 44px;
  pointer-events: none;
  right: 0;
  text-align: center;
  z-index: 99996;
}

@supports (padding: max(0px)) {
  .fancybox-caption {
    padding: 75px max(44px, env(safe-area-inset-right)) max(25px, env(safe-area-inset-bottom)) max(44px, env(safe-area-inset-left));
  }
}
.fancybox-caption--separate {
  margin-top: -50px;
}

.fancybox-caption__body {
  max-height: 50vh;
  overflow: auto;
  pointer-events: all;
}

.fancybox-caption a,
.fancybox-caption a:link,
.fancybox-caption a:visited {
  color: #ccc;
  text-decoration: none;
}

.fancybox-caption a:hover {
  color: #fff;
  text-decoration: underline;
}

/* Loading indicator */
.fancybox-loading {
  animation: fancybox-rotate 1s linear infinite;
  background: transparent;
  border: 4px solid #888;
  border-bottom-color: #fff;
  border-radius: 50%;
  height: 50px;
  left: 50%;
  margin: -25px 0 0 -25px;
  opacity: 0.7;
  padding: 0;
  position: absolute;
  top: 50%;
  width: 50px;
  z-index: 99999;
}

@keyframes fancybox-rotate {
  100% {
    transform: rotate(360deg);
  }
}
/* Transition effects */
.fancybox-animated {
  transition-timing-function: cubic-bezier(0, 0, 0.25, 1);
}

/* transitionEffect: slide */
.fancybox-fx-slide.fancybox-slide--previous {
  opacity: 0;
  transform: translate3d(-100%, 0, 0);
}

.fancybox-fx-slide.fancybox-slide--next {
  opacity: 0;
  transform: translate3d(100%, 0, 0);
}

.fancybox-fx-slide.fancybox-slide--current {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* transitionEffect: fade */
.fancybox-fx-fade.fancybox-slide--previous,
.fancybox-fx-fade.fancybox-slide--next {
  opacity: 0;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.fancybox-fx-fade.fancybox-slide--current {
  opacity: 1;
}

/* transitionEffect: zoom-in-out */
.fancybox-fx-zoom-in-out.fancybox-slide--previous {
  opacity: 0;
  transform: scale3d(1.5, 1.5, 1.5);
}

.fancybox-fx-zoom-in-out.fancybox-slide--next {
  opacity: 0;
  transform: scale3d(0.5, 0.5, 0.5);
}

.fancybox-fx-zoom-in-out.fancybox-slide--current {
  opacity: 1;
  transform: scale3d(1, 1, 1);
}

/* transitionEffect: rotate */
.fancybox-fx-rotate.fancybox-slide--previous {
  opacity: 0;
  -ms-transform: rotate(-360deg);
  transform: rotate(-360deg);
}

.fancybox-fx-rotate.fancybox-slide--next {
  opacity: 0;
  -ms-transform: rotate(360deg);
  transform: rotate(360deg);
}

.fancybox-fx-rotate.fancybox-slide--current {
  opacity: 1;
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
}

/* transitionEffect: circular */
.fancybox-fx-circular.fancybox-slide--previous {
  opacity: 0;
  transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
}

.fancybox-fx-circular.fancybox-slide--next {
  opacity: 0;
  transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
}

.fancybox-fx-circular.fancybox-slide--current {
  opacity: 1;
  transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
}

/* transitionEffect: tube */
.fancybox-fx-tube.fancybox-slide--previous {
  transform: translate3d(-100%, 0, 0) scale(0.1) skew(-10deg);
}

.fancybox-fx-tube.fancybox-slide--next {
  transform: translate3d(100%, 0, 0) scale(0.1) skew(10deg);
}

.fancybox-fx-tube.fancybox-slide--current {
  transform: translate3d(0, 0, 0) scale(1);
}

/* Styling for Small-Screen Devices */
@media all and (max-height: 576px) {
  .fancybox-slide {
    padding-left: 6px;
    padding-right: 6px;
  }
  .fancybox-slide--image {
    padding: 6px 0;
  }
  .fancybox-close-small {
    right: -6px;
  }
  .fancybox-slide--image .fancybox-close-small {
    background: #4e4e4e;
    color: #f2f4f6;
    height: 36px;
    opacity: 1;
    padding: 6px;
    right: 0;
    top: 0;
    width: 36px;
  }
  .fancybox-caption {
    padding-left: 12px;
    padding-right: 12px;
  }
  @supports (padding: max(0px)) {
    .fancybox-caption {
      padding-left: max(12px, env(safe-area-inset-left));
      padding-right: max(12px, env(safe-area-inset-right));
    }
  }
}
/* Share */
.fancybox-share {
  background: #f4f4f4;
  border-radius: 3px;
  max-width: 90%;
  padding: 30px;
  text-align: center;
}

.fancybox-share h1 {
  color: #222;
  font-size: 35px;
  font-weight: 700;
  margin: 0 0 20px 0;
}

.fancybox-share p {
  margin: 0;
  padding: 0;
}

.fancybox-share__button {
  border: 0;
  border-radius: 3px;
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  line-height: 40px;
  margin: 0 5px 10px 5px;
  min-width: 130px;
  padding: 0 15px;
  text-decoration: none;
  transition: all 0.2s;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap;
}

.fancybox-share__button:visited,
.fancybox-share__button:link {
  color: #fff;
}

.fancybox-share__button:hover {
  text-decoration: none;
}

.fancybox-share__button--fb {
  background: #3b5998;
}

.fancybox-share__button--fb:hover {
  background: #344e86;
}

.fancybox-share__button--pt {
  background: #bd081d;
}

.fancybox-share__button--pt:hover {
  background: #aa0719;
}

.fancybox-share__button--tw {
  background: #1da1f2;
}

.fancybox-share__button--tw:hover {
  background: #0d95e8;
}

.fancybox-share__button svg {
  height: 25px;
  margin-right: 7px;
  position: relative;
  top: -1px;
  vertical-align: middle;
  width: 25px;
}

.fancybox-share__button svg path {
  fill: #fff;
}

.fancybox-share__input {
  background: transparent;
  border: 0;
  border-bottom: 1px solid #d7d7d7;
  border-radius: 0;
  color: #5d5b5b;
  font-size: 14px;
  margin: 10px 0 0 0;
  outline: none;
  padding: 10px 15px;
  width: 100%;
}

/* Thumbs */
.fancybox-thumbs {
  background: #ddd;
  bottom: 0;
  display: none;
  margin: 0;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  padding: 2px 2px 4px 2px;
  position: absolute;
  right: 0;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  top: 0;
  width: 212px;
  z-index: 99995;
}

.fancybox-thumbs-x {
  overflow-x: auto;
  overflow-y: hidden;
}

.fancybox-show-thumbs .fancybox-thumbs {
  display: block;
}

.fancybox-show-thumbs .fancybox-inner {
  right: 212px;
}

.fancybox-thumbs__list {
  font-size: 0;
  height: 100%;
  list-style: none;
  margin: 0;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 0;
  position: absolute;
  position: relative;
  white-space: nowrap;
  width: 100%;
}

.fancybox-thumbs-x .fancybox-thumbs__list {
  overflow: hidden;
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar {
  width: 7px;
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-track {
  background: #fff;
  border-radius: 10px;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-thumb {
  background: #2a2a2a;
  border-radius: 10px;
}

.fancybox-thumbs__list a {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  background-color: rgba(0, 0, 0, 0.1);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
  float: left;
  height: 75px;
  margin: 2px;
  max-height: calc(100% - 8px);
  max-width: calc(50% - 4px);
  outline: none;
  overflow: hidden;
  padding: 0;
  position: relative;
  -webkit-tap-highlight-color: transparent;
  width: 100px;
}

.fancybox-thumbs__list a::before {
  border: 6px solid #ff5268;
  bottom: 0;
  content: "";
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 99991;
}

.fancybox-thumbs__list a:focus::before {
  opacity: 0.5;
}

.fancybox-thumbs__list a.fancybox-thumbs-active::before {
  opacity: 1;
}

/* Styling for Small-Screen Devices */
@media all and (max-width: 576px) {
  .fancybox-thumbs {
    width: 110px;
  }
  .fancybox-show-thumbs .fancybox-inner {
    right: 110px;
  }
  .fancybox-thumbs__list a {
    max-width: calc(100% - 10px);
  }
}
body {
  position: relative;
}

#wrapper:has(.header-bright) {
  padding-top: var(--header-height, 100px);
}

@media (min-width: 1024px) {
  #wrapper:has(.header-bright) {
    padding-top: var(--header-height, 134px);
  }
}
[id=wrapper] {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  z-index: 1;
}

main {
  flex: 1 0;
}

.container {
  width: 100%;
  max-width: var(--container-padding-width, --container-padding-width);
  padding-inline: var(--container-spacing-mobile);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.filter-active .container {
  z-index: initial;
}
@media (min-width: 1024px) {
  .container {
    padding-inline: var(--container-spacing-desktop);
  }
}
.container.container-md {
  max-width: var(--container-padding-width-md);
}
.container.container-sm {
  max-width: var(--container-padding-width-sm);
}
.container > h1:only-child,
.container > .h1:only-child,
.container > h2:only-child,
.container > .h2:only-child,
.container > h3:only-child,
.container > .h3:only-child,
.container > h4:only-child,
.container > .h4:only-child,
.container > h5:only-child,
.container > .h5:only-child,
.container > h6:only-child,
.container > .h6:only-child,
.container > .h:only-child {
  margin-bottom: 0;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

.pt-0,
.pb-0 {
  padding-block: 0px !important;
}

.pt-sm,
.section-main.pt-sm {
  padding-top: 16px;
}
@media (min-width: 1024px) {
  .pt-sm,
  .section-main.pt-sm {
    padding-top: 24px;
  }
}

.pb-sm,
.section-main.pb-sm {
  padding-bottom: 16px;
}
@media (min-width: 1024px) {
  .pb-sm,
  .section-main.pb-sm {
    padding-bottom: 24px;
  }
}

.pt-md,
.section-main.pt-md {
  padding-top: 24px;
}
@media (min-width: 1024px) {
  .pt-md,
  .section-main.pt-md {
    padding-top: 60px;
  }
}

.pb-md,
.section-main.pb-md {
  padding-bottom: 24px;
}
@media (min-width: 1024px) {
  .pb-md,
  .section-main.pb-md {
    padding-bottom: 60px;
  }
}

.pt-lg,
.section-main.pt-lg {
  padding-top: 50px;
}
@media (min-width: 1024px) {
  .pt-lg,
  .section-main.pt-lg {
    padding-top: 120px;
  }
}

.pb-lg,
.section-main.pb-lg {
  padding-bottom: 50px;
}
@media (min-width: 1024px) {
  .pb-lg,
  .section-main.pb-lg {
    padding-bottom: 120px;
  }
}

.section-main {
  padding: 50px 0;
}
@media (min-width: 1024px) {
  .section-main {
    padding: 120px 0;
  }
}

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

.bg-light-blue {
  background: var(--dark-blue-10);
}

.bg-dark-blue {
  background: var(--deep-sea-100);
  color: #fff;
}

.bg-medium-blue {
  background: var(--dark-blue-100);
  color: #fff;
}

.gradient-dark {
  background: var(--see-gradient);
  color: #fff;
}

.bg-dark-blue .breadcrumbs ul,
.bg-medium-blue .breadcrumbs ul,
.gradient-dark .breadcrumbs ul {
  color: #fff;
}
.bg-dark-blue .breadcrumbs ul a,
.bg-medium-blue .breadcrumbs ul a,
.gradient-dark .breadcrumbs ul a {
  color: #fff;
}
.bg-dark-blue svg path,
.bg-medium-blue svg path,
.gradient-dark svg path {
  fill: #fff;
}

.decor-edge {
  position: absolute;
  top: 100%;
  left: -70%;
  right: -70%;
  z-index: -2;
  margin: 0 0 -1px;
}
@media (min-width: 768px) {
  .decor-edge {
    left: -40%;
    right: -40%;
  }
}
@media (min-width: 1024px) {
  .decor-edge {
    left: 0;
    right: 0;
  }
}
.bg-light-blue .decor-edge .img-holder:before, .bg-light-blue .decor-edge .img-holder:after {
  background: var(--dark-blue-10);
}
.bg-light-blue .decor-edge svg path {
  fill: var(--dark-blue-10);
}
.bg-dark-blue .decor-edge .img-holder:before, .bg-dark-blue .decor-edge .img-holder:after {
  background: var(--deep-sea-100);
}
.bg-dark-blue .decor-edge svg path {
  fill: var(--deep-sea-100);
}
.bg-medium-blue .decor-edge .img-holder:before, .bg-medium-blue .decor-edge .img-holder:after {
  background: var(--dark-blue-100);
}
.bg-medium-blue .decor-edge svg path {
  fill: var(--dark-blue-100);
}
.decor-edge .img-holder {
  position: relative;
  max-width: 2000px;
  margin: 0 auto;
}
.decor-edge .img-holder:before, .decor-edge .img-holder:after {
  content: "";
  position: absolute;
  bottom: 0;
}
.decor-edge .img-holder:before {
  right: -9999px;
  left: 100%;
  top: 0;
}
.decor-edge .img-holder:after {
  right: 100%;
  left: -9999px;
  top: 129px;
}
.decor-edge svg {
  width: 100%;
  display: block;
}

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

.swiper-button-next,
.swiper-button-prev {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--dark-blue-80);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}
.bg-dark-blue .swiper-button-next, .bg-medium-blue .swiper-button-next,
.bg-dark-blue .swiper-button-prev,
.bg-medium-blue .swiper-button-prev {
  border-color: #fff;
}
.swiper-button-next.swiper-button-lock,
.swiper-button-prev.swiper-button-lock {
  opacity: 0;
  visibility: inherit;
  pointer-events: none;
}
.swiper-button-next:after,
.swiper-button-prev:after {
  display: none;
}
.swiper-button-next:before,
.swiper-button-prev:before {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14.4 13.4' style='enable-background:new 0 0 14.4 13.4' xml:space='preserve'%3E%3Cpath d='m13.7 6-6-6-1.4 1.4 4.3 4.3H1c-.6 0-1 .4-1 1s.4 1 1 1h9.6L6.3 12l1.4 1.4 6-6 .7-.7-.7-.7z' style='fill:%232b3443'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 15px;
  width: 15px;
  height: 15px;
}
.bg-dark-blue .swiper-button-next:before, .bg-medium-blue .swiper-button-next:before,
.bg-dark-blue .swiper-button-prev:before,
.bg-medium-blue .swiper-button-prev:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14.4 13.4' style='enable-background:new 0 0 14.4 13.4' xml:space='preserve'%3E%3Cpath d='m13.7 6-6-6-1.4 1.4 4.3 4.3H1c-.6 0-1 .4-1 1s.4 1 1 1h9.6L6.3 12l1.4 1.4 6-6 .7-.7-.7-.7z' style='fill:%23fff'/%3E%3C/svg%3E");
}

.swiper-button-prev:before {
  transform: rotate(180deg);
}

.popup-holder {
  position: absolute;
  overflow: hidden;
  height: 0;
}

.section-viewport.js-ready {
  opacity: 0;
  transform: translateY(50px);
}
.section-viewport.js-ready.is-animated {
  animation: fadeIn 0.8s ease-out both;
}
.section-viewport.js-ready.form-block {
  transform: translateX(100px);
}
.section-viewport.js-ready.form-block.is-animated {
  animation-name: fadeRight;
}
.section-viewport.js-ready.text-block {
  transform: translateX(-100px);
}
.section-viewport.js-ready.text-block.is-animated {
  animation-name: fadeLeft;
}

.decorated-section {
  margin: 16% 0 0;
  position: relative;
}
@media (min-width: 768px) {
  .decorated-section {
    margin: 14% 0 0;
  }
}
@media (min-width: 1024px) {
  .decorated-section {
    margin: 9% 0 0;
  }
}
.decorated-section.bg-white {
  margin-top: 0;
}
.decorated-section .decor-edge {
  top: auto;
  bottom: 100%;
}

.whatsapp-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  font-weight: normal;
}
@media (min-width: 1024px) {
  .whatsapp-link {
    font-size: 18px;
  }
}
.whatsapp-link:hover {
  text-decoration: underline;
}
.whatsapp-link .icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--green);
  margin: 0 10px 0 0;
  padding: 6px;
}
.whatsapp-link .icon svg {
  width: 100%;
}

.social-networks {
  padding: 25px 0 0;
}
@media (min-width: 1024px) {
  .social-networks {
    padding: 60px 0 0;
  }
}
.social-networks ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}
.social-networks ul a {
  transition: background 0.5s ease-in-out;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--deep-sea-100);
  border-radius: 50%;
  padding: 8px;
}
.social-networks ul a:hover, .social-networks ul a:focus {
  background: var(--gold-100);
}
.social-networks ul a svg {
  width: 100%;
}

.js-tab-hidden {
  display: block !important;
  left: -9999px !important;
  position: absolute !important;
  top: -9999px !important;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeRight {
  0% {
    opacity: 0;
    transform: translateX(100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeLeft {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
[data-skrollr-effect=parallax] {
  transform-origin: 50%;
  rotate: var(--deg, 0deg);
  translate: var(--x, 0px) var(--y, 0px);
}
@media (max-width: 767.98px) {
  [data-skrollr-effect=parallax][data-skrollr-disable=mobile] {
    rotate: none;
    translate: none;
  }
}

.modal-active {
  overflow: hidden;
}

.modal {
  position: fixed;
  z-index: 999999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow-x: hidden;
  overflow-y: auto;
  display: none;
}
.modal[aria-hidden=false] {
  display: flex !important;
}
.modal .modal-overlay {
  position: fixed;
  inset: 0;
  opacity: 0.8;
  background: var(--deep-sea-100, #2B3443);
}
.modal .modal-body {
  position: relative;
  z-index: 2;
  padding: 50px 0;
  width: 100%;
  max-width: 1920px;
  margin: auto;
}
@media (min-width: 1024px) {
  .modal .modal-body {
    width: calc(100% - 80px);
    margin: auto 40px;
  }
}
.modal .modal-close {
  position: absolute;
  top: 10px;
  right: 0;
  width: 30px;
  height: 20px;
  display: block;
  border: none;
  font-size: 0;
  background-color: transparent;
  color: #fff;
  padding: 0;
}
.modal .modal-close:focus, .modal .modal-close:hover {
  color: #fff;
  opacity: 0.8;
}
.modal .modal-close:before, .modal .modal-close:after {
  transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out, background 0.5s ease-in-out;
  background: currentColor;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  transform: translateY(-50%);
  border-radius: 6px;
}
.modal .modal-close:after, .modal .modal-close:before {
  content: "";
}
.modal .modal-close:before {
  transform: rotate(45deg) translateY(0);
  margin: -1px 0 0;
}
.modal .modal-close:after {
  transform: rotate(-45deg) translateY(0);
  margin: -1px 0 0;
}

.resize-active * {
  transition: none !important;
}

[id=header] {
  transition: color 0.5s ease-in-out, background-color 0.5s ease-in-out, padding 0.5s ease-in-out, border-color 0.5s ease-in-out;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  width: 100%;
  z-index: 999;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  border-bottom: 1px solid transparent;
}
@media (min-width: 1024px) {
  [id=header] {
    padding: 18px 0;
    font-size: 14px;
  }
}
@media (min-width: 1440px) {
  [id=header] {
    font-size: 18px;
  }
}
[id=header]:has(.has-drop-down.active-drop) {
  position: fixed;
  background-color: #fff;
  color: var(--deep-sea-100);
  border-bottom-color: var(--deep-sea-20);
}
[id=header]:has(.has-drop-down.active-drop) .logo .logo-dark {
  display: block;
}
[id=header]:has(.has-drop-down.active-drop) .logo .logo-white {
  display: none;
}
[id=header]:has(.has-drop-down.active-drop) .language-switcher .lang_switcher_link:before {
  color: var(--deep-sea-100);
}
[id=header].header-bright, [id=header].header-static {
  color: var(--deep-sea-100);
  background-color: #fff;
  border-bottom: 1px solid var(--deep-sea-20);
}
[id=header].header-bright .logo .logo-dark, [id=header].header-static .logo .logo-dark {
  display: block;
}
[id=header].header-bright .logo .logo-white, [id=header].header-static .logo .logo-white {
  display: none;
}
[id=header].header-bright .language-switcher .lang_switcher_link:before, [id=header].header-static .language-switcher .lang_switcher_link:before {
  color: var(--deep-sea-100);
}
[id=header].header-static {
  position: absolute;
  color: var(--deep-sea-100);
}
[id=header].header-static + [id=main] {
  padding-top: var(--header-height);
}
[id=header].headroom--not-top {
  position: fixed;
  background-color: #fff;
  color: var(--deep-sea-100);
  border-bottom-color: var(--deep-sea-20);
}
@media (min-width: 1024px) {
  [id=header].headroom--not-top {
    padding: 0;
  }
}
[id=header].headroom--not-top .logo .logo-dark {
  display: block;
}
[id=header].headroom--not-top .logo .logo-white {
  display: none;
}
[id=header].headroom--not-top .language-switcher .lang_switcher_link:before {
  color: var(--deep-sea-100);
}
[id=header].headroom--not-top [id=nav] > ul > li.active-drop > a {
  text-decoration-color: currentColor;
}
[id=header].headroom--not-top [id=nav] > ul > li.active-drop > a.has-drop-down-a:before {
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.999634 6.50005L5.99973 1.49995L10.9998 6.50005' stroke='%232B3443' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
@media (min-width: 1024px) {
  [id=header].headroom--not-top [id=nav] > ul > li > a.has-drop-down-a:before {
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 1.49995L5.9999 6.50005L0.99981 1.49995' stroke='%232B3443' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  }
}
.burger-active [id=header] {
  color: var(--deep-sea-100);
}
@media (min-width: 1024px) {
  .burger-active [id=header] {
    color: #fff;
  }
}
@media (min-width: 768px) {
  [id=header] .header-holder {
    padding: 20px 0;
  }
}
[id=header] .container {
  position: static;
}
[id=header] a {
  color: inherit;
}
[id=header] .logo {
  position: relative;
  width: 160px;
}
@media (min-width: 768px) {
  [id=header] .logo {
    width: 227px;
  }
}
@media (min-width: 1024px) {
  [id=header] .logo {
    width: 115px;
  }
}
@media (min-width: 1440px) {
  [id=header] .logo {
    width: 227px;
  }
}
[id=header] .logo .logo-dark {
  display: none;
}
@media (max-width: 1023.98px) {
  .burger-active [id=header] .logo .logo-dark {
    display: block;
  }
}
@media (max-width: 1023.98px) {
  .burger-active [id=header] .logo .logo-white {
    display: none;
  }
}
[id=header] .logo a {
  transition: none 0.5s ease-in-out;
}
[id=header] .btn {
  font-weight: 700;
  padding: 17px;
}
[id=header] .btn:before {
  display: none;
}
[id=header] .btn-primary {
  color: #fff;
}

@media (min-width: 1024px) {
  .header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
  }
}

.header-bar {
  transition: background-color 0.5s ease-in-out, padding 0.5s ease-in-out;
  position: relative;
  z-index: 101;
  padding: 20px var(--container-spacing-mobile);
  margin: 0 calc(var(--container-spacing-mobile) * -1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
@media (min-width: 1024px) {
  .header-bar {
    padding: 0;
    margin: 0;
    gap: 0;
  }
}
.burger-active .header-bar {
  background-color: #fff;
}
@media (min-width: 1024px) {
  .burger-active .header-bar {
    background-color: transparent;
  }
}

.burger-opener {
  width: 30px;
  height: 20px;
  display: block;
  border: none;
  font-size: 0;
  position: relative;
  background-color: transparent;
  color: inherit;
  padding: 0;
}
@media (min-width: 1024px) {
  .burger-opener {
    display: none;
  }
}
.burger-opener:focus {
  background-color: transparent;
  color: inherit;
}
.burger-opener:hover {
  background: none;
  color: currentColor;
}
.burger-opener:before, .burger-opener:after,
.burger-opener span {
  transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out, background 0.5s ease-in-out;
  background: currentColor;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  transform: translateY(-50%);
  border-radius: 6px;
}
.burger-opener:after, .burger-opener:before {
  content: "";
}
.burger-opener:before {
  transform: translateY(-6px);
}
.burger-opener:after {
  transform: translateY(4px);
}
.burger-active .burger-opener span {
  opacity: 0;
  transform: rotate(45deg);
}
.burger-active .burger-opener:before {
  transform: rotate(45deg) translateY(0);
  margin: -1px 0 0;
}
.burger-active .burger-opener:after {
  transform: rotate(-45deg) translateY(0);
  margin: -1px 0 0;
}

.burger-drop {
  transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: #fff;
  padding: var(--header-height, 80px) var(--container-spacing-mobile) 47px;
  overflow-y: auto;
  overflow-x: hidden;
  opacity: 0;
  visibility: hidden;
}
@media (min-width: 1024px) {
  .burger-drop {
    position: static;
    background-color: transparent;
    padding: 0;
    overflow: visible;
    flex-grow: 1;
    opacity: 1;
    visibility: visible;
  }
}
@media (min-width: 1024px) {
  .burger-drop-holder {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 27px;
  }
}
.burger-active .burger-drop {
  opacity: 1;
  visibility: visible;
}

@media (min-width: 1440px) {
  [id=nav] {
    padding: 0 14px 0 0;
  }
}
@media (min-width: 1024px) {
  [id=nav] > ul {
    display: flex;
    gap: 24px;
  }
}
@media (min-width: 1440px) {
  [id=nav] > ul {
    gap: 48px;
  }
}
[id=nav] > ul > li {
  margin: 0 0 20px;
}
@media (min-width: 1024px) {
  [id=nav] > ul > li {
    margin-bottom: 0;
  }
}
[id=nav] > ul > li.active-drop > a, [id=nav] > ul > li.active > a {
  text-decoration-color: currentColor;
}
[id=nav] > ul > li.active-drop > a {
  text-decoration-color: currentColor;
}
@media (min-width: 1024px) {
  [id=header]:has(.has-drop-down.active-drop) [id=nav] > ul > li.active-drop > a.has-drop-down-a:before {
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.999634 6.50005L5.99973 1.49995L10.9998 6.50005' stroke='%232B3443' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  }
}
[id=nav] > ul > li > a {
  transition: text-decoration-color 0.5s ease-in-out;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-decoration-skip-ink: none;
  text-underline-offset: 8px;
  text-decoration-thickness: 2px;
  position: relative;
  display: block;
}
@media (min-width: 1024px) {
  [id=nav] > ul > li > a {
    display: inline-block;
  }
}
[id=nav] > ul > li > a:hover, [id=nav] > ul > li > a:focus-visible {
  text-decoration-color: currentColor;
}
[id=nav] > ul > li > a.has-drop-down-a {
  padding-right: 25px;
}
[id=nav] > ul > li > a.has-drop-down-a:before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_6102_32680)'%3E%3Cpath d='M13.0859 15.9414C12.9023 15.793 12.8125 15.5547 12.8125 15.3125C12.8125 15.0703 12.9041 14.8328 13.0871 14.6496L16.8008 10.9375H0.9375C0.419922 10.9375 0 10.5156 0 9.96485C0 9.48048 0.419922 9.06251 0.9375 9.06251H16.8008L13.0887 5.35039C12.7225 4.98418 12.7225 4.39102 13.0887 4.02461C13.4549 3.6582 14.048 3.6584 14.4145 4.02461L19.727 9.33712C20.0932 9.70333 20.0932 10.2965 19.727 10.6629L14.4145 15.9754C14.0469 16.3399 13.4531 16.3399 13.0859 15.9414Z' fill='%232B3443'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_6102_32680'%3E%3Crect width='20' height='20' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
}
@media (min-width: 1024px) {
  [id=nav] > ul > li > a.has-drop-down-a:before {
    width: 12px;
    height: 8px;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 1.49995L5.9999 6.50005L0.99981 1.49995' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  }
}
@media (min-width: 1024px) {
  [id=header].header-bright [id=nav] > ul > li > a.has-drop-down-a:before, [id=header]:has(.has-drop-down.active-drop) [id=nav] > ul > li > a.has-drop-down-a:before {
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 1.49995L5.9999 6.50005L0.99981 1.49995' stroke='%232B3443' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  }
}
[id=nav] .mega-drop ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 20px;
}
@media (min-width: 1024px) {
  [id=nav] .mega-drop ul > li.active > a {
    background-color: var(--dark-blue-10);
  }
}
@media (min-width: 1024px) {
  [id=nav] .mega-drop ul > li.active-drop > a {
    background-color: var(--dark-blue-10);
  }
}
@media (max-width: 1023.98px) {
  [id=nav] .mega-drop ul > li.active-drop .mega-drop-col {
    left: 0;
  }
}
@media (min-width: 1024px) {
  [id=nav] .mega-drop ul > li.active-drop .mega-drop-col {
    opacity: 1;
    visibility: visible;
  }
}
[id=nav] .mega-drop ul > li > a {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
}
@media (min-width: 1024px) {
  [id=nav] .mega-drop ul > li > a {
    transition: background-color 0.5s ease-in-out, border-color 0.5s ease-in-out;
    padding: 10px 13px;
    border-left: 5px solid transparent;
    justify-content: start;
  }
}
@media (min-width: 1024px) {
  [id=nav] .mega-drop ul > li > a:hover {
    background-color: var(--dark-blue-10);
    border-left-color: var(--gold-100);
  }
}
[id=nav] .mega-drop ul > li > a:after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_6102_32680)'%3E%3Cpath d='M13.0859 15.9414C12.9023 15.793 12.8125 15.5547 12.8125 15.3125C12.8125 15.0703 12.9041 14.8328 13.0871 14.6496L16.8008 10.9375H0.9375C0.419922 10.9375 0 10.5156 0 9.96485C0 9.48048 0.419922 9.06251 0.9375 9.06251H16.8008L13.0887 5.35039C12.7225 4.98418 12.7225 4.39102 13.0887 4.02461C13.4549 3.6582 14.048 3.6584 14.4145 4.02461L19.727 9.33712C20.0932 9.70333 20.0932 10.2965 19.727 10.6629L14.4145 15.9754C14.0469 16.3399 13.4531 16.3399 13.0859 15.9414Z' fill='%232B3443'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_6102_32680'%3E%3Crect width='20' height='20' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
}
@media (min-width: 1024px) {
  [id=nav] .mega-drop ul ul li.active > a {
    background-color: var(--dark-blue-20);
  }
}
@media (min-width: 1024px) {
  [id=nav] .mega-drop ul ul a:hover {
    background-color: var(--dark-blue-20);
  }
}

.header-bar .language-switcher {
  display: none;
  margin: 0 0 0 auto;
}
@media (min-width: 410px) {
  .header-bar .language-switcher {
    display: block;
  }
}
@media (min-width: 1024px) {
  .header-bar .language-switcher {
    display: none;
  }
}
.header-bar .language-switcher .lang_list_class {
  border-top: none;
  padding: 0;
  margin: 0;
}
.header-bar .language-switcher .lang_list_class li:not(:last-child):after {
  margin-top: 0;
}
@media (min-width: 768px) {
  .header-bar .language-switcher .lang_list_class li:not(:last-child):after {
    margin-top: -3px;
  }
}
.header-bar .language-switcher .lang_list_class .lang_switcher_link:before {
  font-size: 14px;
}
@media (min-width: 768px) {
  .header-bar .language-switcher .lang_list_class .lang_switcher_link:before {
    font-size: 18px;
  }
}
.language-switcher .globe_class {
  display: block;
  width: auto;
  height: auto;
  background: none;
}
.language-switcher .lang_list_class {
  border-top: 1px solid var(--deep-sea-20);
  padding: 30px 0 0;
  text-transform: uppercase;
  font-weight: 600;
  display: flex !important;
  flex-direction: row;
  margin: 0 0 30px;
  letter-spacing: -4px;
  transform: none;
  position: static;
}
@media (min-width: 1024px) {
  .language-switcher .lang_list_class {
    border-top: 0;
    padding: 0;
    margin: 0;
  }
}
.language-switcher .lang_list_class:before, .language-switcher .lang_list_class:after {
  content: none;
}
.language-switcher .lang_list_class li {
  letter-spacing: 0;
  padding: 0;
  border: none;
  background: transparent;
}
.language-switcher .lang_list_class li:first-child {
  padding-top: 0;
  border-top: 0;
}
.language-switcher .lang_list_class li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.language-switcher .lang_list_class li:not(:last-child):after {
  content: "";
  width: 1px;
  height: 14px;
  margin: -3px 6px 0;
  display: inline-block;
  vertical-align: middle;
  background-color: currentColor;
}
.language-switcher .lang_list_class li.active .lang_switcher_link:before {
  text-decoration-color: currentColor;
}
.language-switcher .lang_list_class .lang_switcher_link {
  font-size: 0;
  text-decoration: none;
}
.language-switcher .lang_list_class .lang_switcher_link:before {
  transition: color 0.5s ease-in-out, text-decoration-color 0.5s ease-in-out;
  content: attr(data-language-short);
  color: #fff;
  font-size: 18px;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-decoration-skip-ink: none;
  text-underline-offset: 8px;
  text-decoration-thickness: 2px;
}
@media (min-width: 1024px) {
  .language-switcher .lang_list_class .lang_switcher_link:before {
    font-size: 12px;
  }
}
@media (min-width: 1440px) {
  .language-switcher .lang_list_class .lang_switcher_link:before {
    font-size: 18px;
  }
}
@media (max-width: 1023.98px) {
  .burger-active .language-switcher .lang_list_class .lang_switcher_link:before {
    color: var(--deep-sea-100);
  }
}
.language-switcher .lang_list_class .lang_switcher_link:hover:before {
  text-decoration-color: currentColor;
}

.burger-drop-holder {
  position: relative;
  margin: 0 calc(-1 * var(--container-spacing-mobile)) 20px;
  padding: 0 var(--container-spacing-mobile) 20px;
}
@media (min-width: 1024px) {
  .burger-drop-holder {
    height: auto;
    position: static;
    margin: 0;
    padding: 0;
  }
}

@media (max-width: 1023.98px) {
  .burger-drop.level-2-active, .burger-drop.level-3-active {
    overflow: hidden;
    padding-bottom: 0;
  }
}

@media (max-width: 1023.98px) {
  .level-2-active .burger-drop-holder {
    height: 100%;
  }
}

@media (max-width: 1023.98px) {
  .level-3-active .burger-drop-holder {
    height: 100%;
  }
}
@media (max-width: 1023.98px) {
  .level-3-active .mega-drop {
    height: 100%;
    overflow: hidden;
  }
}

.mega-drop {
  transition: left 0.5s ease-in-out;
  position: absolute;
  top: 0;
  left: 100%;
  width: 100%;
  background-color: #fff;
  height: 100%;
  padding: 0 0 47px;
  z-index: 100;
  overflow-y: auto;
  overflow-x: hidden;
}
@media (min-width: 1024px) {
  .mega-drop {
    transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
    display: flex;
    top: calc(100% + 1px);
    left: 0;
    height: auto;
    padding: 0;
    overflow-y: auto;
    overflow-x: hidden;
    max-height: calc(100vh - 100px);
    opacity: 0;
    visibility: hidden;
  }
}
@media (min-width: 1024px) {
  .mega-drop-holder {
    display: flex;
    gap: 48px;
  }
}
.mega-drop-content {
  display: none;
  color: var(--deep-sea-80);
  font-weight: 400;
}
@media (min-width: 1024px) {
  .mega-drop-content {
    display: block;
    width: 100%;
    max-width: 300px;
    padding: 48px 0;
  }
}
@media (min-width: 1230px) {
  .mega-drop-content {
    max-width: 488px;
  }
}
@media (min-width: 1230px) {
  .mega-drop-content .wrap {
    max-width: 375px;
  }
}
.mega-drop-content .title {
  color: var(--dark-blue-100);
  display: block;
  font: 42px/1.3 "Merriweather", "Times New Roman", "Times", "Baskerville", "Georgia", serif;
  margin: 0 0 27px;
}
.mega-drop-content p:last-child {
  margin-bottom: 0;
}
@media (min-width: 1024px) {
  .mega-drop-columns {
    height: var(--drop-height, auto);
    position: relative;
    flex-grow: 1;
    background: rgba(234, 238, 241, 0.45);
  }
}
.mega-drop-col {
  background-color: #fff;
}
@media (min-width: 1024px) {
  .mega-drop-col {
    width: 50%;
    padding: 36px 0 48px 24px;
    background-color: transparent;
  }
}
@media (min-width: 1024px) {
  .mega-drop-col .container {
    padding: 0;
  }
}
.mega-drop-col .mega-drop-col {
  transition: left 0.5s ease-in-out;
  position: absolute;
  left: 100%;
  width: 100%;
  top: 0;
  padding: 0 0 47px;
  z-index: 100;
  height: 100%;
  overflow-y: auto;
}
@media (min-width: 1024px) {
  .mega-drop-col .mega-drop-col {
    transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
    left: 50%;
    width: 50%;
    padding: 33px 24px;
    background-color: var(--dark-blue-10);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
  }
}
.active-drop .mega-drop {
  left: 0;
}
@media (min-width: 1024px) {
  .active-drop .mega-drop {
    opacity: 1;
    visibility: visible;
  }
}
.mega-drop .drop-title-wrap {
  margin: 0 0 29px;
}
.mega-drop .drop-title {
  display: inline-block;
  color: var(--deep-sea-100);
  padding: 0 24px 0 0;
  border-bottom: 3px solid var(--gold-100);
  text-decoration: none;
  font-size: 18px;
}

.main-title-nav {
  padding: 12px var(--container-spacing-mobile);
  margin: 0 calc(-1 * var(--container-spacing-mobile)) 20px;
  background: rgba(234, 238, 241, 0.45);
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 400;
  position: relative;
}
@media (min-width: 1024px) {
  .main-title-nav {
    display: none;
  }
}
.mega-drop .main-title-nav:before {
  content: "";
  transform: rotate(180deg);
  display: block;
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_6102_32680)'%3E%3Cpath d='M13.0859 15.9414C12.9023 15.793 12.8125 15.5547 12.8125 15.3125C12.8125 15.0703 12.9041 14.8328 13.0871 14.6496L16.8008 10.9375H0.9375C0.419922 10.9375 0 10.5156 0 9.96485C0 9.48048 0.419922 9.06251 0.9375 9.06251H16.8008L13.0887 5.35039C12.7225 4.98418 12.7225 4.39102 13.0887 4.02461C13.4549 3.6582 14.048 3.6584 14.4145 4.02461L19.727 9.33712C20.0932 9.70333 20.0932 10.2965 19.727 10.6629L14.4145 15.9754C14.0469 16.3399 13.4531 16.3399 13.0859 15.9414Z' fill='%232B3443'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_6102_32680'%3E%3Crect width='20' height='20' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
}

.btn {
  display: inline-block;
  padding: 16px 25px;
  font-size: 16px;
  text-align: center;
  line-height: 18px;
  vertical-align: top;
  transition: all 0.5s;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-decoration: none;
  overflow: hidden;
  position: relative;
  z-index: 1;
  border-style: solid;
  border-color: transparent;
  border-width: 0;
  border-radius: 60px;
}
@media (min-width: 1024px) {
  .btn {
    padding: 21px 48px;
    font-size: 18px;
  }
}
.btn:before {
  content: "";
  display: inline-block;
  vertical-align: top;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' style='enable-background:new 0 0 20 20' xml:space='preserve'%3E%3Cpath d='M13.1 15.9c-.2-.1-.3-.4-.3-.6s.1-.5.3-.7l3.7-3.7H.9c-.5 0-.9-.4-.9-1 0-.5.4-.9.9-.9h15.9l-3.7-3.7c-.4-.4-.4-1 0-1.3.4-.4 1-.4 1.3 0l5.3 5.3c.4.4.4 1 0 1.3L14.4 16c-.4.3-.9.3-1.3-.1z' style='fill:%23fff'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 20px;
  width: 20px;
  height: 20px;
  margin: 0 15px 0 0;
}
.btn:after {
  transition: transform 0.5s ease-in-out;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  border-radius: 60px;
  transform: translateX(-100%);
}
.btn:hover, .btn:focus {
  text-decoration: none;
  color: initial;
}
.btn:hover:after, .btn:focus:after {
  transform: translateX(0);
}
.btn-primary {
  color: #fff;
  background: var(--gold-100);
}
.btn-primary:after {
  background: var(--gold-dark);
}
.btn-primary:hover {
  color: #fff;
}
.btn-secondary {
  color: var(--deep-sea-100);
  background: transparent;
  box-shadow: inset 0 0 0 1.5px var(--deep-sea-100);
}
.bg-dark-blue .btn-secondary, .bg-medium-blue .btn-secondary {
  color: #fff;
  box-shadow: inset 0 0 0 1.5px #fff;
}
.bg-dark-blue .btn-secondary:after, .bg-medium-blue .btn-secondary:after {
  background-color: #fff;
}
.bg-dark-blue .btn-secondary:hover, .bg-medium-blue .btn-secondary:hover {
  box-shadow: inset 0 0 0 1.5px #fff;
}
.btn-secondary:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' style='enable-background:new 0 0 20 20' xml:space='preserve'%3E%3Cpath d='M13.1 15.9c-.2-.1-.3-.4-.3-.6s.1-.5.3-.7l3.7-3.7H.9c-.5 0-.9-.4-.9-1 0-.5.4-.9.9-.9h15.9l-3.7-3.7c-.4-.4-.4-1 0-1.3.4-.4 1-.4 1.3 0l5.3 5.3c.4.4.4 1 0 1.3L14.4 16c-.4.3-.9.3-1.3-.1z' style='fill:%232b3443'/%3E%3C/svg%3E");
}
.bg-dark-blue .btn-secondary:before, .bg-medium-blue .btn-secondary:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' style='enable-background:new 0 0 20 20' xml:space='preserve'%3E%3Cpath d='M13.1 15.9c-.2-.1-.3-.4-.3-.6s.1-.5.3-.7l3.7-3.7H.9c-.5 0-.9-.4-.9-1 0-.5.4-.9.9-.9h15.9l-3.7-3.7c-.4-.4-.4-1 0-1.3.4-.4 1-.4 1.3 0l5.3 5.3c.4.4.4 1 0 1.3L14.4 16c-.4.3-.9.3-1.3-.1z' style='fill:%23fff'/%3E%3C/svg%3E");
}
.btn-secondary:hover {
  color: var(--dark-blue-80);
  box-shadow: inset 0 0 0 1.5px var(--dark-blue-80);
}
.bg-dark-blue .btn-secondary:hover, .bg-medium-blue .btn-secondary:hover {
  color: var(--dark-blue-80);
}
.btn-secondary:hover:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' style='enable-background:new 0 0 20 20' xml:space='preserve'%3E%3Cpath d='M13.1 15.9c-.2-.1-.3-.4-.3-.6s.1-.5.3-.7l3.7-3.7H.9c-.5 0-.9-.4-.9-1 0-.5.4-.9.9-.9h15.9l-3.7-3.7c-.4-.4-.4-1 0-1.3.4-.4 1-.4 1.3 0l5.3 5.3c.4.4.4 1 0 1.3L14.4 16c-.4.3-.9.3-1.3-.1z' style='fill:%2357748E'/%3E%3C/svg%3E");
}
.btn-signal {
  color: #fff;
  background: var(--signal-blue);
  border-color: var(--signal-blue);
}
.btn-signal:after {
  background: var(--signal-blue-dark);
}
.btn-signal:hover {
  color: #fff;
  border-color: var(--signal-blue-dark);
}
.btn-outline {
  color: #fff;
  background: transparent;
  box-shadow: inset 0 0 0 1.5px #fff;
}
.btn-outline:after {
  background: #fff;
}
.btn-outline:hover {
  color: var(--deep-sea-100) !important;
}
.btn-outline:hover:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' style='enable-background:new 0 0 20 20' xml:space='preserve'%3E%3Cpath d='M13.1 15.9c-.2-.1-.3-.4-.3-.6s.1-.5.3-.7l3.7-3.7H.9c-.5 0-.9-.4-.9-1 0-.5.4-.9.9-.9h15.9l-3.7-3.7c-.4-.4-.4-1 0-1.3.4-.4 1-.4 1.3 0l5.3 5.3c.4.4.4 1 0 1.3L14.4 16c-.4.3-.9.3-1.3-.1z' style='fill:%232b3443'/%3E%3C/svg%3E");
}

.btn-load-more:before {
  display: none;
}

.button-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 25px;
}
@media (min-width: 1024px) {
  .button-list {
    margin-top: 40px;
  }
}
.button-list.button-center, .button-center .button-list {
  justify-content: center;
}

.link-more {
  position: relative;
  color: var(--deep-sea-100);
  text-decoration: none;
  font-weight: 500;
  font-size: 18px;
}
.bg-dark-blue .link-more, .bg-medium-blue .link-more {
  color: #fff;
}
.link-more:hover {
  color: initial;
}
.link-more:hover:after {
  transform: translateX(5px);
}
.bg-dark-blue .link-more:hover, .bg-medium-blue .link-more:hover {
  color: #fff;
}
.link-more:after {
  transition: transform 0.5s ease-in-out;
  content: "";
  display: inline-block;
  vertical-align: middle;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' style='enable-background:new 0 0 20 20' xml:space='preserve'%3E%3Cpath d='M13.1 15.9c-.2-.1-.3-.4-.3-.6s.1-.5.3-.7l3.7-3.7H.9c-.5 0-.9-.4-.9-1 0-.5.4-.9.9-.9h15.9l-3.7-3.7c-.4-.4-.4-1 0-1.3.4-.4 1-.4 1.3 0l5.3 5.3c.4.4.4 1 0 1.3L14.4 16c-.4.3-.9.3-1.3-.1z' style='fill:%232b344'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 24px;
  width: 24px;
  height: 20px;
  margin: -3px 0 0 9px;
}
.bg-dark-blue .link-more:after, .bg-medium-blue .link-more:after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' style='enable-background:new 0 0 20 20' xml:space='preserve'%3E%3Cpath d='M13.1 15.9c-.2-.1-.3-.4-.3-.6s.1-.5.3-.7l3.7-3.7H.9c-.5 0-.9-.4-.9-1 0-.5.4-.9.9-.9h15.9l-3.7-3.7c-.4-.4-.4-1 0-1.3.4-.4 1-.4 1.3 0l5.3 5.3c.4.4.4 1 0 1.3L14.4 16c-.4.3-.9.3-1.3-.1z' style='fill:%23fff'/%3E%3C/svg%3E");
}

.breadcrumbs-block {
  padding: 30px 0 15px;
}
@media (min-width: 1024px) {
  .breadcrumbs-block {
    padding: 50px 0 35px;
  }
}

.breadcrumbs ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  color: var(--dark-blue-60);
}
@media (min-width: 1024px) {
  .breadcrumbs ul {
    font-size: 18px;
  }
}
.breadcrumbs ul li {
  position: relative;
  margin: 0 0 15px;
}
.breadcrumbs ul li:after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  margin: 0 9px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 7.4 12.5' style='enable-background:new 0 0 7.4 12.5' xml:space='preserve'%3E%3Cpath d='m7.3 6.6-5.7 5.8c-.2.2-.5.2-.7 0l-.8-.8c-.2-.2-.2-.5 0-.7l4.6-4.7L.1 1.6C0 1.4 0 1.1.1.9L.9.1c.2-.1.5-.1.7 0l5.7 5.8c.2.2.2.5 0 .7z' style='fill:%23aaaeb4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 7px;
  width: 7px;
  height: 15px;
}
.breadcrumbs ul li:last-child:after {
  display: none;
}
.breadcrumbs ul a {
  color: var(--deep-sea-80);
  text-decoration: none;
  font-weight: normal;
}
.breadcrumbs ul a:hover {
  text-decoration: underline;
}

ul[style="list-style-type: circle;"] {
  list-style: none !important;
  margin: 0;
  padding: 0;
  padding: 15px 0;
}
@media (min-width: 1024px) {
  ul[style="list-style-type: circle;"] {
    font-size: 18px;
    padding: 30px 0;
  }
}
ul[style="list-style-type: circle;"] li {
  position: relative;
  padding: 0 0 0 35px;
  margin: 0 0 20px;
}
@media (min-width: 1024px) {
  ul[style="list-style-type: circle;"] li {
    padding: 0 0 0 50px;
    margin: 0 0 41px;
  }
}
ul[style="list-style-type: circle;"] li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' x='0' y='0' viewBox='0 0 36.5 36.5' style='enable-background:new 0 0 36.5 36.5' xml:space='preserve'%3E%3Cpath fill='%232b3443' d='M15 11.7c-.4-.3-1.1-.2-1.4.2-.3.4-.2 1.1.2 1.4l6.9 5.2c.4.3.8.4 1.2.4.6 0 1.1-.2 1.5-.7L36.3 3.6c.4-.4.3-1-.1-1.4-.4-.4-1-.3-1.4.1L21.9 16.9 15 11.7z'/%3E%3Cpath fill='%232b3443' d='M35.5 17.3c-.6 0-1 .4-1 1 0 3.4-1.1 6.7-3 9.5-2 2.8-4.8 4.8-8 5.9-3.2 1.1-6.7 1.2-9.9.2-3.3-1-6.1-2.9-8.2-5.7-2.1-2.7-3.2-5.9-3.3-9.4-.1-3.4.8-6.7 2.7-9.6s4.6-5 7.8-6.2c3.2-1.2 6.6-1.4 9.9-.5.5.1 1.1-.2 1.2-.7.1-.5-.2-1.1-.7-1.2-3.7-1-7.6-.8-11.2.5-3.6 1.4-6.6 3.8-8.7 7S-.1 15 0 18.9c.1 3.8 1.4 7.5 3.8 10.5 2.3 3 5.5 5.2 9.2 6.4 1.7.5 3.5.8 5.3.8 2 0 4-.3 5.9-1 3.6-1.2 6.7-3.5 9-6.7 2.2-3.1 3.4-6.8 3.4-10.6-.1-.6-.5-1-1.1-1z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 25px;
  width: 25px;
  height: 25px;
}
@media (min-width: 1024px) {
  ul[style="list-style-type: circle;"] li:before {
    background-size: 36px;
    width: 36px;
    height: 36px;
    top: -3px;
  }
}
.bg-dark-blue ul[style="list-style-type: circle;"] li:before, .bg-medium-blue ul[style="list-style-type: circle;"] li:before {
  background-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' x='0' y='0' viewBox='0 0 36.5 36.5' style='enable-background:new 0 0 36.5 36.5' xml:space='preserve'%3E%3Cpath fill='%23fff' d='M15 11.7c-.4-.3-1.1-.2-1.4.2-.3.4-.2 1.1.2 1.4l6.9 5.2c.4.3.8.4 1.2.4.6 0 1.1-.2 1.5-.7L36.3 3.6c.4-.4.3-1-.1-1.4-.4-.4-1-.3-1.4.1L21.9 16.9 15 11.7z'/%3E%3Cpath fill='%23fff' d='M35.5 17.3c-.6 0-1 .4-1 1 0 3.4-1.1 6.7-3 9.5-2 2.8-4.8 4.8-8 5.9-3.2 1.1-6.7 1.2-9.9.2-3.3-1-6.1-2.9-8.2-5.7-2.1-2.7-3.2-5.9-3.3-9.4-.1-3.4.8-6.7 2.7-9.6s4.6-5 7.8-6.2c3.2-1.2 6.6-1.4 9.9-.5.5.1 1.1-.2 1.2-.7.1-.5-.2-1.1-.7-1.2-3.7-1-7.6-.8-11.2.5-3.6 1.4-6.6 3.8-8.7 7S-.1 15 0 18.9c.1 3.8 1.4 7.5 3.8 10.5 2.3 3 5.5 5.2 9.2 6.4 1.7.5 3.5.8 5.3.8 2 0 4-.3 5.9-1 3.6-1.2 6.7-3.5 9-6.7 2.2-3.1 3.4-6.8 3.4-10.6-.1-.6-.5-1-1.1-1z'/%3E%3C/svg%3E");
}

@media (max-width: 767.98px) {
  .filter-active {
    overflow: hidden;
  }
}

.filter-tag-popup {
  padding: 20px 0;
}
@media (min-width: 1024px) {
  .filter-tag-popup {
    padding: 40px 0;
  }
}
@media (min-width: 1230px) {
  .filter-tag-popup {
    padding: 40px 0 90px;
  }
}
.filter-tag-popup .filter-slide {
  background: #fff;
  padding: 70px 20px 20px;
}
@media (min-width: 768px) {
  .filter-tag-popup .filter-slide {
    background: none;
    padding: 0;
  }
}
@media (max-width: 767.98px) {
  .filter-tag-popup .filter-slide {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 10003;
    overflow: auto;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s;
  }
}
@media (max-width: 767.98px) {
  .filter-tag-popup .filter-slide.filter-active-slide {
    opacity: 1;
    visibility: visible;
  }
}
.filter-tag-popup .filter-opener {
  display: inline-block;
  vertical-align: top;
  color: #fff;
  background: var(--gold-100);
  border-radius: 30px;
  padding: 10px 25px;
  text-decoration: none;
  font-size: 18px;
  border: 0;
}
@media (min-width: 768px) {
  .filter-tag-popup .filter-opener {
    display: none;
  }
}
.filter-tag-popup .filter-close {
  width: 40px;
  height: 40px;
  font-size: 0;
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border-radius: 0;
}
.filter-tag-popup .filter-close::after, .filter-tag-popup .filter-close::before {
  content: "";
  position: absolute;
  background: var(--dark-blue-100);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
.filter-tag-popup .filter-close::after {
  width: 2px;
  height: 35px;
}
.filter-tag-popup .filter-close::before {
  width: 35px;
  height: 2px;
}
.filter-tag-popup .tags {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  font-weight: 500;
  gap: 10px;
}
@media (min-width: 768px) {
  .filter-tag-popup .tags {
    gap: 15px;
  }
}
@media (min-width: 1024px) {
  .filter-tag-popup .tags {
    font-size: 20px;
  }
}
.filter-tag-popup .tags .active a {
  background: var(--gold-100);
  color: #fff;
}
.filter-tag-popup .tags a {
  transition: background 0.5s ease-in-out;
  display: block;
  background: var(--dark-blue-10);
  padding: 11px 30px;
  text-align: center;
  border-radius: 55px;
  color: var(--deep-sea-100);
  text-decoration: none;
  font-weight: 500;
}
.filter-tag-popup .tags a:hover {
  background: var(--dark-blue-20);
  text-decoration: none;
}
.filter-tag-popup .tags a:focus {
  text-decoration: none;
}

#footer {
  background-color: var(--deep-sea-100);
  color: var(--deep-sea-20);
  position: relative;
  padding: 20px 80px 20px 0;
  font-size: 14px;
}
@media (min-width: 1024px) {
  #footer {
    font-size: 18px;
  }
}
@media (min-width: 1440px) {
  #footer {
    padding: 28px 100px;
  }
}

@media (min-width: 768px) {
  .footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
  }
}
@media (min-width: 1920px) {
  .footer-inner {
    margin-right: -52px;
  }
}
.footer-inner .list-social {
  margin: 0 0 20px;
}
@media (min-width: 768px) {
  .footer-inner .list-social {
    margin-bottom: 0;
  }
}

@media (min-width: 1920px) {
  .copy {
    margin: 0 62px 0 -62px;
  }
}
.copy a {
  transition: text-decoration-color 0.5s ease-in-out;
  color: #fff;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-decoration-skip-ink: none;
  text-underline-offset: 2px;
  font-weight: normal;
}
.copy a:hover, .copy a:focus-visible {
  text-decoration-color: currentColor;
}

.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 20px;
}
@media (min-width: 768px) {
  .footer-menu {
    order: 2;
    margin-bottom: 0;
  }
}
@media (min-width: 1920px) {
  .footer-menu {
    gap: 40px;
  }
}
.footer-menu li.active a {
  color: #fff;
}
.footer-menu a {
  transition: text-decoration-color 0.5s ease-in-out;
  color: inherit;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-decoration-skip-ink: none;
  text-underline-offset: 2px;
  font-weight: normal;
}
.footer-menu a:hover, .footer-menu a:focus-visible {
  text-decoration-color: currentColor;
  color: #fff;
}

.back-to-top {
  width: 80px;
  height: 80px;
  transition: color 0.5s ease-in-out;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: var(--deep-sea-80);
  color: #fff;
}
@media (min-width: 1440px) {
  .back-to-top {
    width: 100px;
    height: 100px;
  }
}
.back-to-top:focus {
  color: #fff;
}
.back-to-top:hover, .back-to-top:focus-visible {
  color: var(--deep-sea-40);
}