/* Theme base styles */

:root {

	/* Spacing */

	--container-width: 1180px;
  --container-width-medium: 960px;
	--container-width-narrow: 800px;
	--vertical-spacing: 6rem;
	--gap: 2rem;
	--gap-xs: calc(var(--gap) / 2);
	--gap-sm: calc(var(--gap) / 1.25);
	--gap-24: calc(var(--gap) * 1.25);
	--gap-md: calc(var(--gap) * 1.5);
	--gap-lg: calc(var(--gap) * 2);
	--gap-56: calc(var(--gap) * 2.8);
	--gap-xl: calc(var(--gap) * 3);
	--gap-xxl: calc(var(--gap) * 4);

	/* Colors */

	--base-color: #fff;
	--red: #F24130;
  --blue: #151C3E;
  --midnight: #2A3159;
  --arctic: #8DAEF2;
  --jade: #05A6A6;
  --sand: #D9AD5E;
  --topaz: #87BFB0;
  --aquamarine: #78DBF2;
  --mint: #5ED98A;

	--black: #000;
	--white: #fff;
	--dark-gray: #333;
	--light-gray: #F4F5F6;
	--medium-gray: #D5D7E0;

	/* Typography */

	--base-font-size: 1.6rem;
	--base-line-height: 1.75;
	--primary-font-family: 'Work Sans', sans-serif;
}

/* Generic */

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

@media (max-width: 767px) {
  .oembed_container {
    margin-bottom: 1.5rem;
  }
}
/*! 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 {
  -webkit-box-sizing: content-box;
  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 */
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted; /* 2 */
}

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

b,
strong {
  font-weight: bold;
}

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

/**
 * 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 {
  -webkit-box-sizing: border-box;
  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"] {
  -webkit-box-sizing: border-box;
  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;
}

/* Objects */

/*.body-wrapper {
  overflow: hidden;
}*/

.grid {
  display: grid;
}

.flex, .flex-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display:flex;
}

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

.flex-item {
  -webkit-box-flex: 1;
  -ms-flex: 1 0;
  flex:1 0
}

.flexInline {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display:inline-flex
}

.flex-column {
  flex-direction:column
}

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

.flex-row {
  flex-direction:row
}

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

.flex-top {
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  align-items:flex-start
}

.flex-middle {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items:center
}

.flex-bottom {
  -webkit-box-align: flex-end;
  -ms-flex-align: flex-end;
  align-items:flex-end
}

.flex-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content:center
}

.flex-end {
  -webkit-box-pack: flex-end;
  -ms-flex-pack: flex-end;
  justify-content:flex-end
}

.flex-self {
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self:center
}

.flex-stretch {
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items:stretch
}

.flex-space {
  -ms-flex-pack: distribute;
  justify-content:space-around
}

.flex-space-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content:space-between
}

@media (max-width: 767px) {
  .flex-column-reverse, .flex:not(.flex-row) {
      flex-direction:column
  }

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

.block {
  display: block;
}


.col-full {
  width: 100%;
}

.gap {
  gap: var(--gap);
}

.gap-24 {
  gap: var(--gap-24);
}

.gap-56 {
  gap: var(--gap-56);
}

.gap-xs {
  gap: var(--gap-xs);
}

.gap-sm {
  gap: var(--gap-sm);
}

.gap-md {
  gap: var(--gap-md);
}

.gap-lg {
  gap: var(--gap-lg);
}

.gap-xl {
  gap: var(--gap-xl);
}

.gap-xxl {
  gap: var(--gap-xxl);
}

.gap-y-0 {
  row-gap: 0;
}




.content-wrapper {
  max-width: var(--container-width);
  margin: 0 auto;
}

.content-wrapper--wide {
  max-width: 137rem;
}

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

.content-wrapper--narrow {
  max-width: var(--container-width-narrow);
}

@media (min-width: 1456px) {
  .content-wrapper__left {
    padding-right: 0 !important;
    margin-left: calc((100% - var(--container-width)) / 2);
    /*margin-right: -2rem;*/
  }

  .content-wrapper__right {
    padding-right: 0 !important;
    margin-right: calc((100% - var(--container-width)) / 2);
    /*margin-left: -2rem;*/
  }
}

section,
.dnd-section:not([class*='force-full-width']),
.content-wrapper--vertical-spacing {
  padding: calc(var(--vertical-spacing) / 2) 2rem;
  /*padding: var(--vertical-spacing) 2rem;*/
  position: relative;
}

.dnd-section > .row-fluid {
  max-width: var(--container-width);
  margin: 0 auto;
}

.dnd-section .row-module {
  margin: 0 calc(var(--gap) * -1);
}

.dnd-section > .row-fluid {
  margin-left: auto;
  margin-right: auto;
  max-width: var(--container-width);
  /*position: relative;*/
}

.dnd-section > .row-fluid .hs-private {
  width: 100%; /* for the dnd add module here placeholder */
}

@media (min-width: 768px) {
  .dnd-section .row-fluid {
    -webkit-column-gap: var(--gap);
       -moz-column-gap: var(--gap);
            column-gap: var(--gap);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .dnd-section [class*='span'] {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }

  
    .dnd-section .span0 {
      flex-basis: 0.0%;
    }
  
    .dnd-section .span1 {
      flex-basis: 8.333333333333332%;
    }
  
    .dnd-section .span2 {
      flex-basis: 16.666666666666664%;
    }
  
    .dnd-section .span3 {
      flex-basis: 25.0%;
    }
  
    .dnd-section .span4 {
      flex-basis: 33.33333333333333%;
    }
  
    .dnd-section .span5 {
      flex-basis: 41.66666666666667%;
    }
  
    .dnd-section .span6 {
      flex-basis: 50.0%;
    }
  
    .dnd-section .span7 {
      flex-basis: 58.333333333333336%;
    }
  
    .dnd-section .span8 {
      flex-basis: 66.66666666666666%;
    }
  
    .dnd-section .span9 {
      flex-basis: 75.0%;
    }
  
    .dnd-section .span10 {
      flex-basis: 83.33333333333334%;
    }
  
    .dnd-section .span11 {
      flex-basis: 91.66666666666666%;
    }
  
    .dnd-section .span12 {
      flex-basis: 100.0%;
    }
  
}

@media (min-width: 768px) {
  section,
  .dnd-section:not([class*='force-full-width']),
  .content-wrapper--vertical-spacing {
    padding: var(--vertical-spacing) 2rem;
  }
}

/* Visibilty classes */

.hide {
  display: none !important;
}

.show {
  display: block;
}

.invisible {
  visibility: hidden;
}

.hidden {
  display: none !important;
  visibility: hidden;
}

/* Responsive visibilty classes */

.visible-phone {
  display: none !important;
}

.visible-tablet {
  display: none !important;
}

.hidden-desktop {
  display: none !important;
}

@media (max-width: 767px) {
  .visible-phone {
    display: inherit !important;
  }

  .hidden-phone {
    display: none !important;
  }

  .hidden-desktop {
    display: inherit !important;
  }

  .visible-desktop {
    display: none !important;
  }
}

@media (min-width: 768px) and (max-width: 1139px) {
  .visible-tablet {
    display: inherit !important;
  }

  .hidden-tablet {
    display: none !important;
  }

  .hidden-desktop {
    display: inherit !important;
  }

  .visible-desktop {
    display: none !important;
  }
}

/* Elements */

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

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

body {
  color: var(--base-color);
  font-family: var(--primary-font-family);
  font-size: var(--base-font-size);
  line-height: var(--base-line-height);
  background: var(--midnight);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}


strong, b {
  font-weight: 600;
}

/* Anchors */

a {
  color: var(--white);
  text-decoration: none;
  transition: all 0.2s ease;
}

a:hover,
a:focus {
  color: var(--white);
}

a:active {
  color: var(--white);
}

.body-container-wrapper .widget-type-rich_text a:not(.button) {
  text-decoration: underline;
}

.body-container-wrapper .widget-type-rich_text a:not(.button):hover {
  text-decoration: none;
}

/* Paragraphs */

p {
  margin: 0 0 2rem;
}

/* Headings */

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  margin: 0 0 2rem;
  line-height: 1.25;
  font-weight: 500;
}

h1,
.h1,
.has-h1 h2:not(.h3) {
  font-size: 4rem;
}
.body-container-home h1 {
  font-size: 5rem;
}
h2,
.h2 {
  font-size: 3.2rem;
}
h3,
.h3,
.has-h3 h2 {
  font-size: 2.8rem;
}
h4,
.h4 {
  font-size: 2.4rem;
}
h5,
.h5,
.has-h5 h2,
.has-h5 h3 {
  font-size: 2rem;
}
h6,
.h6 {
  font-size: 1.8rem;
}

@media (min-width: 992px) {
  h1 {
    font-size: 5rem;
    line-height: 1.1;
  }

  .body-container-home h1,
  .h1,
  .has-h1 h2:not(.h3) {
    font-size: 7rem;
  }
  h2,
  .h2 {
    font-size: 4.2rem;
  }
  h3,
  .h3,
  .has-h3 h2 {
    font-size: 2.8rem;
  }
  h4,
  .h4 {
    font-size: 2.4rem;
  }
  h5,
  .h5 {
    font-size: 1.6rem;
  }
}

.overline {
  font-weight: 500;
  text-transform: uppercase;
  color: var(--white);
}

.subtitle {
  font-weight: 600;
  font-size: 2rem;
}


.text-left {
  text-align: left !important;
}
.text-center {
  text-align: center !important;
}
.text-right {
  text-align: right !important;
}

.text-lowercase {
  text-transform: lowercase !important;
}
.text-uppercase {
  text-transform: uppercase !important;
}
.text-capitalize {
  text-transform: capitalize !important;
}

.text-large {
  font-size: 2rem;
}
.text-medium {
  font-size: 1.8rem;
}
.text-regular {
  font-size: 1.6rem;
}
.text-small {
  font-size: 1.5rem;
}
.text-tiny {
  font-size: 1.3rem;
}

.text-white {
  color: var(--white);
}

.text-green {
  color: var(--red);
}

.font-500 {
  font-weight: 500;
}

.font-600 {
  font-weight: 600;
}

/* Lists */

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

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

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

/* Code blocks */

pre {
  overflow: auto;
}

code {
  vertical-align: bottom;
}

/* Blockquotes */

blockquote {
  border-left: 6px solid var(--orange);
  font-size: 2.4rem;
  font-style: italic;
  margin: 2rem 0;
  padding-left: 2rem;
}

/* Horizontal rules */

hr {
  border: none;
  border-bottom: 1px solid var(--medium-gray);
  margin: 4rem auto;
}
.button,
form input[type="submit"],
form .hs-button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.2rem;
  padding: .9rem 2rem;
  border: 1px solid;
  border-radius: .5rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  text-align: center;
  white-space: normal;
  cursor: pointer;

  font-size: 1.6rem;
  line-height: 1.5625;
  font-weight: 600;
}

@media (max-width: 767px) {
  .button,
  form input[type="submit"],
  form .hs-button {
    display: flex;
    justify-content: center;
    width: 100%;
    gap: 1rem;
  }

  .button[class*="button--text"] {
    display: inline-flex;
    width: auto;
    text-align: left;
    justify-content: flex-start;
  }
}

/* Primary */

.button--primary,
form input[type="submit"],
form .hs-button {
  background-color: var(--red);
  border-color: var(--red);
  color: var(--white);
  box-shadow: 0px 4px 15px -4px rgba(242, 65, 48, 0.6);
}

.button--primary:hover,
.button--primary:focus,
.button--primary:active,
form input[type="submit"]:hover,
form input[type="submit"]:focus,
form input[type="submit"]:active,
form .hs-button:hover,
form .hs-button:focus,
form .hs-button:active {
  background-color: var(--midnight);
  border-color: var(--midnight);
  color: var(--white);
}

/* Secondary */

.button--secondary {
  background-color: var(--white);
  border-color: var(--white);
  color: var(--base-color);
  box-shadow: 0px 4px 15px -4px rgba(0, 0, 0, 0.2);
}

.button--secondary:hover,
.button--secondary:focus,
.button--secondary:active {
  background-color: var(--gray);
  border-color: var(--gray);
  color: var(--base-color);
}

/* Tertiary */

.button--tertiary {
  background-color: transparent;
  border-color: transparent;
  color: var(--red);
}

.button--tertiary:hover,
.button--tertiary:focus,
.button--tertiary:active {
  background-color: transparent;
  border-color: var(--midnight);
  color: var(--midnight);
  box-shadow: 0px 4px 15px -4px rgba(0, 0, 0, 0.2);
}

/* White */

.button--white {
  background-color: var(--white);
  border-color: var(--white);
  color: var(--dark-gray);
  box-shadow: 0px 4px 15px -4px rgba(0, 0, 0, 0.2);
}

.button--white:hover,
.button--white:focus,
.button--white:active,
.button--white.active {
  background-color: var(--medium-gray);
  border-color: var(--medium-gray);
  color: var(--dark-gray);
}

/* Outline */

.button--outline {
  background-color: transparent;
  border-color: var(--white);
  color: var(--white);
  box-shadow: 0px 4px 15px -4px rgba(255, 255, 255, 0.3);
}

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

/* Text Primary */

.button--text-primary {
  background-color: transparent;
  border: 0;
  border-radius: 0;
  color: var(--red);
  text-decoration: none;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  padding: 0;
}

.button--text-primary:hover,
.button--text-primary:focus,
.button--text-primary:active {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  background-color: transparent;
  color: var(--red);
}

/* Text White */

.button--text-white {
  border: 0;
  border-radius: 0;
  background: transparent;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  color: var(--white);
  padding: 0;
}

.button--text-white:hover,
.button--text-white:focus,
.button--text-white:active {
  background: transparent;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  color: var(--medium-gray);
}

/* Text White Alt */

.button--text-white-alt {
  background-color: transparent;
  border: 0;
  border-radius: 0;
  border-bottom: 1px solid var(--white);
  color: var(--white);
}

.button--text-white-alt:hover,
.button--text-white-alt:focus,
.button--text-white-alt:active {
  border-color: var(--medium-gray);
  color: var(--medium-gray);
}


/* Icon */

.button__icon {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  flex: 0 0 2.4rem;
  display: flex;
  height: 2.4rem;
}

.button__icon img {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  flex: 0 0 2.4rem;
  height: 2.4rem;
}

.button__icon span {
  display: block;
}

.button__icon svg {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  flex: 0 0 2.4rem;
  height: 2.4rem;
}

/* Full */

.button--full {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
}

/* Small */

.button--small {
  padding: .5rem 1.5rem;
}

/* Large */

.button--large {
  padding: 1.7rem 2.3rem;
}

/* CTA Override */

a.cta_button {
  -webkit-box-sizing: border-box !important;
  box-sizing: border-box !important;
}
.bg-red {
  background: var(--red);
}

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

.bg-blue-rgb {
  background: rgba(21, 27, 62, 0.9);
}

.bg-blue-alt,
.bg-blue-alt-overlay {
  background: rgba(41, 49, 89, 0.8);
}

.bg-midnight {
  background: var(--midnight);
}

.bg-white {
  background: var(--white);
}

.bg-arctic {
  background: var(--arctic);
}

.bg-jade {
  background: var(--jade);
}

.bg-sand {
  background: var(--sand);
}

.bg-topaz {
  background: var(--topaz);
}

.bg-aquamarine {
  background: var(--aquamarine);
}

.bg-mint {
  background: var(--mint);
}

.bg-transparent {
  background: transparent;
}

.bg-dark-gray {
  background: var(--dark-gray);
}

.bg-dark-gray-overlay {
  background: rgba(42, 49, 89, 0.5);
  transition: background .2s ease-in;
}

.hover-cards__card:hover .bg-dark-gray-overlay {
  background: rgba(42, 49, 89, 0.9);
}

.main-content {
    position: relative;
    overflow-x: hidden;
}

.error-page-hero .hero__bg.pos-abs {
 opacity: .3;
}

.bg__svg {
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
  pointer-events: none;
}

@media (max-width: 767px) {
  .bg-dark-gray-overlay {
    background: rgba(21, 27, 62, 0.9);
  }
}
.cards__card {
  overflow: hidden;
  box-shadow: 0px 24px 48px -12px rgba(0, 0, 0, 0.18);
  flex: 1;
}

a.cards__card:focus {
  outline: none;
  position: relative;
}

a.cards__card:focus:after {
  content: '';
  display: block;
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border: 2px solid var(--white);
}

.card__border {
  top: 0;
  left: 0;
  right: 0;
  height: 1rem;
}
.card__image {
  display: block;
  height: 17.1rem;
  width: 100%;
}
.cards__large .card__image {
  height: 34.2rem;
}
.card__details {
  padding: 2rem;
  flex: 1;
}

.card__button {
  margin-top: auto;
}

.card__tag {
  top: 2.5rem;
  right: 1.5rem;
  color: #000;
  padding: .65rem 1.4rem;
}

@media (min-width: 768px) {
  .card__details {
    padding: 3rem 2rem;
  }

  .cards__large .card__details .button {
    white-space: nowrap;
  }
}

.cards__slider.flickity-enabled {
  display: block;
  /* margin-right: -2rem;
  width: calc(100% + 2rem); */
}

.cards__slider .cards__card {
  max-width: 80vw;
  width: 28rem;
  box-shadow: 0px 24px 48px -12px rgba(5, 166, 166, 0);
}

@media (min-width: 768px) {
  .cards__slider .cards__card {
    max-width: 28rem;
    width: auto;
  }
}

.cards__card.is-selected {
  box-shadow: 0px 24px 48px -12px rgba(5, 166, 166, 0.2);
}

.cards__slider.flickity-enabled .cards__card {
  transition: none !important;
  margin-right: 2rem;
  min-height: 100%;
}

.cards__svg {
  top: -6.8rem;
  left: 50%;
  transform: translateX(-50%);
  max-width: 100%;
  pointer-events: none;
}

.cards__svg svg {
  max-height: 100%;
}

.card__desc {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 767px) {
  .card__desc.mb-xl {
    margin-bottom: 3.2rem !important;
  }

  .card__desc.mb-md {
    margin-bottom: 2rem !important;
  }

  .cards__large.gap-xl {
    gap: 4rem;
  }

  .cards__large .card__image {
    height: 22.9rem;
  }
}
.icon__wrapper {
  width: 4rem;
  height: 4rem;
}

.icon__wrapper-small {
  width: 2rem;
  height: 2rem;
}

.icon__wrapper img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain;
}

img.icon-red {
  filter: invert(28%) sepia(77%) saturate(3022%) hue-rotate(347deg) brightness(107%) contrast(90%);
}

img.icon-blue {
  filter: invert(7%) sepia(32%) saturate(5111%) hue-rotate(223deg) brightness(94%) contrast(92%);
}

img.icon-midnight {
  filter: invert(16%) sepia(6%) saturate(7334%) hue-rotate(196deg) brightness(97%) contrast(88%);
}

img.icon-arctic {
  filter: invert(65%) sepia(97%) saturate(552%) hue-rotate(187deg) brightness(96%) contrast(98%);
}

img.icon-jade {
  filter: invert(43%) sepia(12%) saturate(7387%) hue-rotate(149deg) brightness(99%) contrast(96%);
}

img.icon-sand {
  filter: invert(72%) sepia(68%) saturate(360%) hue-rotate(349deg) brightness(91%) contrast(85%);
}

img.icon-topaz {
  filter: invert(78%) sepia(12%) saturate(766%) hue-rotate(113deg) brightness(92%) contrast(86%);
}

img.icon-aquamarine {
  filter: invert(76%) sepia(45%) saturate(426%) hue-rotate(151deg) brightness(98%) contrast(93%);
}

img.icon-mint {
  filter: invert(80%) sepia(80%) saturate(348%) hue-rotate(71deg) brightness(89%) contrast(90%);
}

img.icon-silver {
  filter: invert(91%) sepia(9%) saturate(163%) hue-rotate(192deg) brightness(98%) contrast(84%);
}

img.icon-white {
  filter: brightness(0%) invert(100%);
}

@media (max-width: 767px) {
  .icon__wrapper:not(.flex-row) {
    margin-left: auto;
    margin-right: auto;
  }
}
/* Labels */

form label,
.fakelabel {
  display: block;
  margin-bottom: 0.8rem;
  font-weight: 500;
  font-size: 1.6rem;
}

.hs-form-booleancheckbox label {
  font-weight: 400;
  font-size: 1.4rem;
}


.footer .hs-form-field:not(.hs-fieldtype-select) > label {
  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;
}

/* Inputs */

form input[type="text"],
form input[type="email"],
form input[type="password"],
form input[type="tel"],
form input[type="number"],
form input[type="file"],
form input[type="search"],
select,
form textarea {
  display: block;
  width: 100%;
  min-height: 4.8rem;
  border: 0;
  padding: 1rem 1.2rem;
  margin-bottom: 2rem;
  color: var(--dark-gray);
  font-size: 1.6rem;
  background-color: var(--white);
  border-radius: .5rem;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 48 30' xmlns='http://www.w3.org/2000/svg' xml:space='preserve' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2'%3E%3Cpath d='M5.64 0 0 5.64l24 24 24-24L42.36 0 24 18.32 5.64 0Z' style='fill-rule:nonzero'/%3E%3C/svg%3E");
  background-position: calc(100% - 1rem) 50%;
  background-repeat: no-repeat;
  background-size: 10px;
  -webkit-text-fill-color: var(--dark-gray);
  opacity: 1;
}

form textarea {
  min-height: 15rem;
}

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

.hs-fieldtype-booleancheckbox {
  display: flex;
  flex-direction: column;
  gap: var(--gap-sm);
}

.hs-fieldtype-booleancheckbox .input {
  order: 1;
}

.hs-fieldtype-booleancheckbox .hs-field-desc {
  order: 2;
  font-weight: 400;
  font-size: 1.4rem;
  margin-bottom: 1.6rem;
}

::-webkit-input-placeholder {
  color: var(--dark-gray);
}

::-webkit-input-placeholder,
::-moz-placeholder,
:-ms-input-placeholder,
:-moz-placeholder,
::placeholder,
.hs-fieldtype-date .input .hs-dateinput:before {
  color: var(--dark-gray);
}

/* Inputs - checkbox/radio */

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

.inputs-list > li {
  display: block;
}

.inputs-list > li > label {
  line-height: 1.25;
}

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

input[type="checkbox"],
input[type="radio"],
input[type="range"],
progress {
  accent-color: var(--red);
}

/* Inputs - date picker */

.hs-dateinput {
  position: relative;
}

.hs-dateinput:before {
  content: "\01F4C5";
  position: absolute;
  right: 1rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.fn-date-picker .pika-table thead th {
  color: var(--base-color);
}

.fn-date-picker td.is-selected .pika-button {
  background: var(--dark-gray);
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.fn-date-picker td .pika-button:hover,
.fn-date-picker td .pika-button:focus {
  background-color: var(--dark-gray) !important;
  border-radius: 0 !important;
  color: #fff;
}

.fn-date-picker td.is-today .pika-button {
  color: var(--dark-gray);
}

/* Inputs - file picker */

form input[type="file"] {
  width: auto !important;
  min-height: auto;
  background-color: transparent;
  border: initial;
  padding: initial;
}
form input[type="file"]::-webkit-file-upload-button,
form input[type="file"]::file-selector-button {
  margin-right: var(--gap);
}

/* Headings and text */

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

.legal-consent-container .inputs-list {
  margin: 0 0 1.6rem;
}

.legal-consent-container .field.hs-form-field {
  margin-bottom: 0 !important;
}

.legal-consent-container .inputs-list > li > label {
  line-height: var(--base-line-height);
  margin: 0;
}

.legal-consent-container .inputs-list > li.hs-form-booleancheckbox > label {
  display: flex;
  align-items: flex-start;
}

.legal-consent-container .inputs-list > li.hs-form-booleancheckbox > label input {
  width: 1.3rem;
  margin-top: .5rem;
}

.legal-consent-container .inputs-list > li.hs-form-booleancheckbox > label span {
  flex: 1;
}

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

@media (max-width: 767px) {
  form .hs-richtext,
  form .hs-richtext p {
    font-size: 1.3rem;
    margin: 0;
  }
}

/* GDPR */

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

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

.legal-consent-container .hs-form-booleancheckbox-display > span,
.legal-consent-container .hs-form-booleancheckbox-display > span p {
  font-size: 1.4rem;
}

.legal-consent-container .hs-form-booleancheckbox-display p {
  position: relative;
  top: -1px;
}

/* Validation */

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

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

.hs-error-msg,
.hs-error-msgs {
  margin: 0;
  color: #FF7070;
  font-size: 1.4rem;
  font-weight: 400;
}

ul.no-list.hs-error-msgs {
  margin-top: -1.5rem;
}

.hs_error_rollup {
  display: none;
}

/* Captcha */

.hs_recaptcha {
  display: none;
}

.grecaptcha-badge {
  margin-bottom: 2rem;
}

/* Change Autocomplete styles in Chrome */

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  transition:
    background-color calc(infinity * 1s) step-end,
    background-image calc(infinity * 1s) step-end allow-discrete,
    color calc(infinity * 1s) step-end;
}

/* Fix Column Layouts */

.hs-form fieldset {
  max-width: inherit !important;
}
.hs-form fieldset.form-columns-1 .hs-form-field,
.hs-form fieldset.form-columns-2 .hs-form-field,
.hs-form fieldset.form-columns-3 .hs-form-field {
  width: 100% !important;
}
.hs-form fieldset.form-columns-1 .hs-form-field .input,
.hs-form fieldset.form-columns-2 .hs-form-field .input,
.hs-form fieldset.form-columns-3 .hs-form-field .input {
  margin-right: 0 !important;
}
.hs-form
  fieldset.form-columns-1
  .hs-form-field
  .hs-input:not([type="checkbox"]):not([type="radio"]):not([type="file"]),
.hs-form
  fieldset.form-columns-2
  .hs-form-field
  .hs-input:not([type="checkbox"]):not([type="radio"]):not([type="file"]),
.hs-form
  fieldset.form-columns-3
  .hs-form-field
  .hs-input:not([type="checkbox"]):not([type="radio"]):not([type="file"]) {
  width: 100% !important;
}

@media (min-width: 992px) {
  .hs-form fieldset.form-columns-1 .hs-form-field {
    width: 100% !important;
  }
  .hs-form fieldset.form-columns-2 .hs-form-field {
    width: 50% !important;
  }
  .hs-form fieldset.form-columns-2 .hs-form-field:nth-of-type(1) {
    padding-right: 0.75rem;
  }
  .hs-form fieldset.form-columns-2 .hs-form-field:nth-of-type(2) {
    padding-left: 0.75rem;
  }
  .hs-form fieldset.form-columns-3 .hs-form-field {
    width: 33.333% !important;
  }
  .hs-form fieldset.form-columns-3 .hs-form-field:nth-of-type(1) {
    padding-right: 0.75rem;
  }
  .hs-form fieldset.form-columns-3 .hs-form-field:nth-of-type(2) {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
  .hs-form fieldset.form-columns-3 .hs-form-field:nth-of-type(3) {
    padding-left: 0.75rem;
  }
}



.hs-richtext h4 {
  font-weight: 500;
  font-size: 1.6rem;
  margin-bottom: .8rem;
}

.hs-richtext p {
  font-size: 1.4rem;
  margin-bottom: 0;
}

.hs-richtext a {
  color: var(--base-color);
  text-decoration: underline;
  font-weight: 600;
}

.hs-richtext a:hover {
  color: var(--base-color);
  text-decoration: none;
  font-weight: 600;
}

.hs-form {
  display: flex;
  flex-direction: column;
}

/*
.hs-form fieldset:has(.hs-richtext) {
  order: 99;
  margin-top: 3.2rem;
}
*/
/* Table */

table {
	width: 100%;
	border: 1px solid var(--light-gray);
  border-collapse: collapse;
  margin-bottom: 1.4rem;
  overflow-wrap: break-word;
}

/* Table cells */

td,
th {
	padding: 1rem;
	text-align: left;
  vertical-align: top;
}

td {
	border-bottom: 1px solid var(--light-gray);
}

/* Table header */

thead th {
	background-color: var(--light-gray);
  vertical-align: bottom;
}

/* Table footer */

tfoot td {
  background-color: var(--light-gray);
}

/* Modules */

.approach__card {
  padding: 5.3rem 4.2rem;
  min-height: 37.8rem;
  flex: 1;
}

.approach__card-border {
  top: 0;
  left: 0;
  right: 0;
  height: 1rem;
}

@media (min-width: 993px) {
  .approach__card:nth-child(1) {
    background: rgba(21, 28, 62, 0.8);
  }

  .approach__card:nth-child(2) {
    background: rgba(42, 49, 89, 0.5);
  }

  .approach__card:nth-child(3) {
    background: rgba(42, 49, 89, 0.7);
  }

  .approach__card:nth-child(4) {
    background: rgba(26, 34, 74, 0.8);
  }
}

.approach__card-full {
  display: none;
  transition: all .3s ease-out;
}

.approach__card-content {
  height: 100%;
}

.approach__card.active > .approach__card-content {
  display: none;
}

.approach__card.active {
  flex: 1;
}

.approach__card.active .approach__card-full {
  display: flex;
}

.approach__card-full .approach__card-content {
  max-width: 29.4rem;
}

.approach__card-right {
  max-width: 90rem;
  margin: 0 auto;
}

.approach__card-toggle {
  margin-top: auto;
  background: none;
  border: 0;
  appearance: none;
}

.approach__card .button__label {
  white-space: nowrap;
}

.approach__bg {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.approach__icon {
  max-width: 26rem;
  width: 100%;
}


@media (max-width: 992px) {
  .approach__cards {
    flex-direction: column;
    padding: 0 2rem;
    gap: 2rem;
  }

  .approach__card {
    display: flex !important;
    visibility: visible !important;
    background: var(--blue);
  }

  .approach__card-full {
    flex-direction: column;
  }

  .approach__card-full .approach__card-content {
    max-width: 100%;
  }

  .approach__card-right {
    max-width: 100%;
  }

  .approach__icon {
    max-width: 100%;
  }

  .approach__bg {
    display: none;
  }
}
.banner {
  padding: 8rem 2rem;
  overflow: hidden;
}

.banner .content-wrapper {
  z-index: 3;
  max-width: 65rem;
}

.banner__content *:last-child {
  margin-bottom: 0;
}

.banner__bg {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.banner__bg:before {
  content: '';
  display: block;
  background: linear-gradient(101.18deg, rgba(27, 34, 78, 0.8) 13.53%, rgba(41, 49, 89, 0.8) 105.33%);


  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.banner__svg,
.banner__svg svg {
  height: 100%;
}

.banner__svg {
  bottom: 0;
  left: 0;
  z-index: 2;
}

.banner__svg svg {
  vertical-align: bottom;
}

.banner__svg-2 {
  left: unset;
  right: 0;
}

.banner__lines {
  top: -1rem;
  left: -1rem;
  z-index: 2;
}

.banner__bg img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  object-position: center center;
  position: relative;
  z-index: 1;
}


@media (max-width: 767px) {
  .banner__svg {
    top: unset;
    bottom: 0;
  }

  .banner__svg-2 {
    bottom: unset;
    left: unset;
    right: 0;
    top: 0;
  }

  .banner__lines {
    left: unset;
    top: unset;
    right: -1rem;
    bottom: -1rem;
    transform: rotate(180deg);
  }
}
.carousel-1__image {
  aspect-ratio: 16/9;
  -o-object-fit: cover;
  object-fit: cover;
}
.carousel-1__content {
  max-width: calc(var(--container-width) - 8rem);
  margin-left: auto;
  margin-right: auto;
}
.carousel-1__description p:last-child {
  margin-bottom: 0;
}
.content-icons-1 {
  display: grid;
}

@media (min-width: 768px) {
  .content-icons-1 {
    grid-template-columns: 42.372881355932203% 47.627118644067797%;
    justify-content: space-between;
    align-items: flex-start;
  }

  .content-icons-1__left {
    position: sticky;
    top: calc(var(--header-height) + 2rem);
  }
}

a.content-icons-1__row {
  color: var(--black);
}

.content-icons-1__row svg {
  display: inline-block;
  margin-left: 4px;
  top: 3px;
  position: relative;
}

.content-icons-1__row svg path {
  transition: all .2s ease;
}

.content-icons-1__row:hover svg {
  animation: bounce 2s infinite;
}
.content-media-1__row .content-wrapper {
  display: grid;
  grid-gap: var(--gap-md);
}

.content-media-1__image {
  overflow: hidden;
}

.content-media-1__lines {
  top: -.6rem;
  left: -.1rem;
  max-width: 54.382826475849732%;
  width: 100%;
}

.content-media-1__lines svg {
  border-top-left-radius: .5rem;
}

.content-media-1__bg {
  pointer-events: none;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.content-media-1__bg.left {
  right: unset;
  left: 0;
}

/*.content-media-1__bg.left img {
  transform: scaleX(-1);
}*/

@media (min-width: 768px) {
  .content-media-1__row .content-wrapper {
    grid-auto-flow: dense;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: var(--gap-lg);
    align-items: center;
  }
  .content-media-1__row--default:nth-of-type(odd) .content-media-1__image {
    grid-column-end: -1;
  }
  .content-media-1__row--reverse:nth-of-type(even) .content-media-1__image {
    grid-column-end: -1;
  }
}

@media (max-width: 767px) {
  .content-media-1__image {
    aspect-ratio: 16/9;
  }

  .content-media-1__image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
  }
}
.header-content__wrapper.pos-rel {
  z-index: 2;
}

.dnd-section[class*='force-full-width'] .header-content__wrapper {
  padding-left: 2rem;
  padding-right: 2rem;
}

.header-content__padded {
  padding: 0 2rem;
}

.header-content {
  width: 100%;
  gap: var(--gap-24) var(--gap-lg);
}

@media (min-width: 768px) {
  .header-content {
    font-size: 1.8rem;
    line-height: 1.5;
  }
}

.header-content__icon {
  width: 6.4rem;
  height: 6.4rem;
  padding: 1.6rem;
}

.header-content__icon img {
  width: 32px !important;
  height: auto !important;
  object-fit: contain;
}

.header-content__left *:last-child,
.header-content__right *:last-child {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .header-content.flex-column {
    max-width: 69.6rem;
    margin: 0 auto;
  }

  .span3 .header-content {
    max-width: 28.8rem;
    margin: 0 auto;
  }

  .header-content.header-content__medium {
    max-width: 78rem;
  }

  .header-content.header-content__wide {
    max-width: 100%;
  }

  .header-content:not(.flex-column) .header-content__left:not(:last-child) {
    flex: 0 1 69.6rem;
  }

  .header-content:not(.flex-column) .header-content__right {
    flex: 0 1 57.6rem;
  }

  .header-content.w4060:not(.flex-column) .header-content__left:not(:last-child) {
    flex: 0 1 42.1rem;
  }

  .header-content.w4060:not(.flex-column) .header-content__right {
    flex: 0 1 68rem;
  }

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

  .header-content__buttons .button-container {
    justify-content: flex-end;
  }
}

@media (max-width: 767px) {
  .header-content__right .button-container {
    margin-top: 1rem;
  }

  .header-content,
  .header-content__left {
    text-align: left !important;
  }
}
.hero {
  padding: 20rem 2rem 8.5rem;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 1.5;
  overflow: hidden;
}

.hero .content-wrapper {
  z-index: 3;
}

@media (min-width: 768px) {
  .hero {
    padding: 20rem 2rem 17rem;
  }

  .hero__content {
    max-width: 67.5rem;
  }

  .body-container-home .hero__content {
    max-width: 69.6rem;
    width: 45%;
  }
}

.hero__content *:last-child {
  margin-bottom: 0;
}

.hero__bg {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.hero__bg:before {
  content: '';
  display: block;
  background: linear-gradient(270deg, rgba(0, 0, 0, 0) 13.89%, rgba(56, 56, 56, 0.2) 41.4%), linear-gradient(180deg, rgba(21, 28, 62, 0.8) 10.82%, rgba(0, 0, 0, 0) 38.26%);


  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.hero__svg {
  top: 0;
  bottom: -.8rem;
  left: 0;
  z-index: 2;
}

.hero__svg-2 {
  left: unset;
  right: 0;
}

.hero__lines {
  bottom: -2rem;
  right: -2rem;
  z-index: 2;
}

.hero__bg img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  object-position: center center;
  position: relative;
  z-index: 1;
}


@media (max-width: 767px) {
  .hero__content {
    max-width: 100%;
    width: 100%;
  }
}
.hover-cards__wrapper .content-wrapper {
  z-index: 3;
}

.hover-cards__card {
  width: 28rem;
  height: 29.5rem;
  padding: 2rem;

  box-shadow: 0px 8px 8px -4px rgba(0, 0, 0, 0.03);
  box-shadow: 0px 20px 24px -4px rgba(0, 0, 0, 0.08);
}

.hover-cards__card:focus-within {
  outline: none;
  position: relative;
}

.hover-cards__card:focus-within {
  border: 2px solid var(--white);
}

@media (max-width: 920px) {
  .hover-cards__card {
    /*width: auto;*/
    width: calc(50% - 1rem);
  }
}

.hover-cards__card-content p {
  margin-bottom: 2rem;
  line-height: 1.5;
}

.hover-cards__card-bg,
.hover-cards__card-bg > div {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.hover-cards__svg {
  bottom: 15rem;
  left: -2rem;
  z-index: 1;
  pointer-events: none;
}

.hover-cards__svg svg {
  max-height: calc(100% - 16rem);
}

.hover-cards__svg-2 {
  left: unset;
  right: 0;
  bottom: 16rem;
  filter: blur(175px);
  opacity: .3;
}

.hover-cards__bg {
  z-index: 1;
  pointer-events: none;
  bottom: 6rem;
  left: -15.7rem;
}

.hover-cards .bg-midnight {
  background: #313A6F;
}

@media (min-width: 992px) {
  .hover-cards__offset .hover-cards {
    width: 100%;
    max-width: 88rem;
    height: 108.5rem;
  }

  .hover-cards__offset .hover-cards__card:nth-child(1) {
    margin-top: 31.5rem;
  }

  .hover-cards__offset .hover-cards__card:nth-child(3) {
    margin-top: 12.5rem;
  }

  .hover-cards__card-content.collapsible {
    height: inherit;
    width: calc(100% - 4rem);
    position: absolute;
    bottom: 0;
  }

  .hover-cards__card-content-inner {
    bottom: 2rem;
    width: 100%;
    position: absolute;
  }

  .hover-cards__card-content-hidden.collapsibleTxt {
    overflow: hidden;
    opacity: 0;
    max-height: 0;
    transition: all .15s ease-out;
    position: relative;
    /*top: -2.2rem;*/
  }

  .hover-cards__card .button--text-white {
    position: absolute;
    left: 0;
    bottom: 0;
  }

  .hover-cards__card:hover .hover-cards__card-content-hidden.collapsibleTxt,
  .hover-cards__card:focus .hover-cards__card-content-hidden.collapsibleTxt,
  .hover-cards__card:focus-within .hover-cards__card-content-hidden.collapsibleTxt {
    margin-top: -2rem;
    opacity: 1;
    max-height: 20rem;
  }

  .hover-cards h3 {
    margin-bottom: 3.2rem;
  }

  .hover-cards__card-toggle {
    width: 2rem;
    height: 2rem;
    position: absolute;
    z-index: 1;
    left: 2rem;
    bottom: 2rem;
    transition: all .15s ease-out;
  }

  .hover-cards__card:hover .hover-cards__card-toggle,
  .hover-cards__card:focus .hover-cards__card-toggle,
  .hover-cards__card:focus-within .hover-cards__card-toggle {
    opacity: 0;
  }
}

@media (min-width: 1024px) {
  .hover-cards__offset .hover-cards__header {
    width: 48rem;
    max-width: 40%;
    top: 0;
    left: 0;
    position: absolute;
  }
}


.hover-cards__card .minus {
  display: none;
}

@media (max-width: 991px) {
  .hover-cards__card {
    height: auto;
    width: 100%;
  }

  .hover-cards h3 {
    width: calc(100% - 6.2rem);
    margin-bottom: 0;
  }

  .hover-cards__card-toggle {
    width: 3.2rem;
    height: 3.2rem;
    position: absolute;
    z-index: 1;
    top: 2rem;
    right: 2rem;
  }

  .hover-cards__card-content-hidden {
    display: none;
    padding-top: 1rem;
  }

  .hover-cards__card.is-active .hover-cards__card-content-hidden {
    display: block;
  }

  .hover-cards__card.is-active .plus {
    display: none;
  }

  .hover-cards__card.is-active .minus {
    display: block;
  }
}
.dnd-section[class*=force-full-width] .icon-grid-1__wrapper {
  padding: 0 2rem;
}

.icon-grid-1 {
  display: grid;
  grid-gap: var(--gap-md);
}

.icon-grid-1.stacked {
  gap: 5rem;
}

.icon-grid-1.flex-column {
  grid-template-columns: 1fr !important;
}

.icon-grid-1__icon {
  width: 4rem;
  height: 4rem;
  flex: 0 0 4rem;
}

.icon-grid-1__icon img {
  width: 32px !important;
  height: auto !important;
  object-fit: contain;
}

.icon-grid-1__item h3 {
  flex: 1;
}

@media (min-width: 600px) {
  .icon-grid-1 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .icon-grid-1 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  .icon-grid-1 {
    gap: 5.6rem;
  }

  .icon-grid-1__item:nth-child(n+5) {
    display: none;
  }
}


.icon-grid-1__svg {
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  z-index: -1;
  aspect-ratio: 1;
}

.icon-grid-1__svg svg {
  vertical-align: bottom;
  width: 100%;
  height: auto;
}

.icon-grid-1__svg-2 {
  left: unset;
  right: 0;
}

.dnd-section:not([class*='force-full-width']) .icon-grid-1__svg {
  display: none;
}
.logos__wrapper {
  text-align: center;
  padding: 3rem 2rem;
  z-index: 2 !important;
}

.logos__logo {
  height: 7.5rem;
}

.logos__logo img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain;
}

@media (min-width: 1024px) {
  .logos__wrapper {
    padding: 3rem 4rem;
  }
}

@media (min-width: 768px) {
  .logos__wrapper.offset {
    transform: translateY(-50%);
  }

  .logos {
    justify-content: space-between;
  }
}
.stats-1__logo {
  top: 50%;
  left: -6rem;
  transform: translateY(-50%);
  max-width: 60rem;
}

.stats-1__bg {
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
}

.stats-1__stat {
  flex: 1;
  background: rgba(255, 255, 255, 0.15);
  padding: 5rem 2rem;
}

@media (min-width: 768px) {
  .stats-1__stat {
    flex: 1 1 calc(50% - 1.5rem);
  }
}

@media (min-width: 992px) {
  .stats-1__stat {
    flex: 1 1 calc(25% - 2.25rem);
  }
}
.tabs__menu {
  padding: 3rem 2rem;
  transition: all .3s ease-out;
  cursor: pointer;
}

.tabs__menu:not(.active) {
  background: rgba(255, 255, 255, 0.05);
}

.tabs__menu ul {
  padding: 0;
  margin: 0;
  list-style: none;
  opacity: 1;
  max-height: 50rem;
  transition: all .3s ease-out;
}

.tabs__menu:not(.active) ul {
  opacity: 0;
  max-height: 0;
  pointer-events: none;
  display: none;
}

.tabs__menu-button,
.tabs__menu p {
  background: transparent;
  border-color: transparent;
  color: var(--white);
  padding: .75rem 3rem;

  font-weight: 500;
  font-size: 2rem;
  line-height: 1.75;
  text-align: left;

  gap: var(--gap-sm);
  width: 100%;
}

.tabs__menu-button svg {
  opacity: .3;
  transition: all .2s ease-in;
}

.tabs__menu-button.active,
.tabs__menu-button:hover {
  background: rgba(42, 49, 89, 0.8);
  border-color: rgba(42, 49, 89, 0.8);
}

.tabs__menu-button.active svg,
.tabs__menu-button:hover svg {
  opacity: 1;
}

.tabs__menu p {
  font-weight: 700;
}

.tabs__tab:not(.active) {
  display: none !important;
}

.tabs__image-sizer {
  aspect-ratio: 16/10;
}

.tabs__image-border {
  top: 0;
  left: 0;
  right: 0;
  height: 1rem;
}

.tabs__content *:last-child {
  margin-bottom: 0;
}

.tabs__button {
  background: #313A6F;
  border-color: #313A6F;
  color: var(--white);
  padding: 2rem 3rem;

  font-weight: 500;
  font-size: 2.2rem;
  line-height: 1.25;
  text-align: left;

  gap: var(--gap-sm);
}

.tabs__button:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.05);
}

@media (min-width: 768px) {
  .tabs__menus {
    flex: 0 1 38rem;
  }

  .tabs__tabs {
    flex: 0 1 68rem;
  }

  .tabs__button {
    flex: 1 1 32.5rem;
  }
}
.testimonial-carousel-2__testimonial {
  width: calc(100% - 4rem);
  padding: 1.5rem 1.5rem;
  font-weight: 500;
  min-height: 100%;
  /*box-shadow: 0px 24px 48px -12px rgba(5, 166, 166, 0.2);*/
}

.testimonial-carousel-2__bg {
  display: block;
  top: 0;
  left: 50%;
  transform: translate(-50%, -10%);
  width: calc(100% - 4rem);
  z-index: -1;
  aspect-ratio: 840 / 477;
}

.testimonial-carousel-2__testimonial-inner {
  padding: 4rem 2rem;
}

.testimonial-carousel-2__testimonial strong {
  font-size: 1.8rem;
}

.testimonial-carousel-2__testimonial-testimonial p {
  margin: 0 0 1rem;
}

.testimonial-carousel-2__testimonial-testimonial *:last-child {
  margin: 0;
}

.testimonial-carousel-2__testimonial-image {
  width: 7.5rem;
}

.testimonial-carousel-2__testimonial-attestant {
  font-size: 1.5rem;
  font-weight: 600;
}

.testimonial-carousel-2__testimonial-title-company {
  font-size: 1.3rem;
  font-weight: 400;
}

@media (min-width: 768px) {
  .testimonial-carousel-2__testimonials .flickity-viewport {
    flex: 1;
  }

  .testimonial-carousel-2__bg {
    width: 95vw;
    max-width: 84rem;
  }

  .testimonial-carousel-2__testimonial {
    width: calc(var(--container-width) - 14rem);
    max-width: 74.2rem;
  }
  .testimonial-carousel-2__testimonial-inner {
    padding: 4rem 5rem;
  }

  .testimonial-carousel-2 .flickity__nav {
    max-width: 75.2rem;
    margin: 0 auto;
    padding: 0 2rem;
  }
}

@media (max-width: 767px) {
  .testimonial-carousel-2 {
    padding-left: 2rem;
  }

  .testimonial-carousel-2__testimonial {
    width: 28rem;
    max-width: 80vw;
    margin-right: 2rem;
    padding: 1.5rem 0;
  }

  .testimonial-carousel-2__testimonial-inner {
    gap: 1rem;
  }
}

/* Templates */

.pagination__link--active {
  cursor: default;
}

.pagination .button {
  width: auto !important;
}

.pagination .button--white {
  background-color: transparent;
  border-color: transparent;
  color: var(--white);
  box-shadow: 0px 4px 15px -4px rgba(255, 255, 255, 0);
}

.pagination .button--white:hover,
.pagination .button--white:focus,
.pagination .button--white:active {
  background-color: transparent;
  border-color: var(--white);
  color: var(--white);
  box-shadow: 0px 4px 15px -4px rgba(255, 255, 255, 0.3);
}


.blog-post-hero {
  padding-top: 18.5rem;
}

@media (max-width: 767px) {
  .blog-post-hero {
    padding-top: 14.5rem;
  }
}

.blog-post__featured-image {
  aspect-ratio: 16/7;
}

.share-icons {
  top: 3.2rem;
  right: 2rem;
}

.share-icons .button {
  padding: .9rem 1.1rem;
  justify-content: center;
}

.share-icons svg {
  height: 2.4rem;
  width: 2.4rem;
  vertical-align: bottom;
}

@media (max-width: 767px) {
  .share-icons.flex {
    top: unset;
    right: unset;
    position: relative;
    flex-direction: row;
    justify-content: center;
    margin-top: 2rem;
    margin-bottom: -3rem;
  }

  .share-icons .button {
    width: 4.8rem;
    height: 4.8rem;
  }
}

/* Components */

body.modal-open
  .body-wrapper
  > div[data-global-resource-path*="/templates/partials/header.html"] {
  z-index: unset;
}

.header {
  position: fixed;
  top: 0;
  z-index: 101;
  width: 100%;

  background-color: transparent;
  transition: all .2s ease-in-out;
}

body[class*="scroll"] .header {
  background: var(--midnight);
}

@media (max-width: 1119px) {
  body[class*="scroll"] .header {
    background: var(--blue);
  }
}

.header__inner {
  padding: 2.2rem 2rem 1.2rem;
}

/* Eyebrow */

.header__eyebrow {
  padding: 0.6rem 2rem;
}

.header__eyebrow .button {
  font-size: 1.3rem;
  line-height: 1.75;
  text-decoration: none !important;
}

@media (max-width: 1119px) {
  .header__eyebrow {
    display: none;
  }

  .header__inner {
    padding: 1.6rem 2rem;
  }
}

/* Logo */

.header__logo a {
  display: block;
  font-size: 0;
}

/*.header__logo svg path {
  fill: var(--white);
}*/

/* Nav */

.header__navigation nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

/* Navigation skipper */

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

.header__skip:hover,
.header__skip:focus,
.header__skip:active {
  height: auto;
  left: 0;
  overflow: visible;
  top: 0;
  width: auto;
}
.footer {
  font-size: 1.3rem;
  padding: 0 2rem;
}

.footer .content-wrapper {
  max-width: 112.8rem;
}

.footer-top {
  padding: 4rem 0;
}

.footer-social a {
  text-decoration: none;
  border: 0 !important;
}

.footer-social a svg path {
  transition: all .2s ease-in;
}

.footer-social a:hover svg path {
  fill: var(--red);
}

.footer-subscribe p {
  font-size: 1.6rem;
  font-weight: 500;
}

.footer-subscribe form.hs-form {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: var(--gap-sm);
}

.footer-subscribe .hs-form div:has(.hs-richtext) {
  order: 99;
  flex: 1 0 100%;
}

.footer-subscribe .hs-error-msg,
.footer-subscribe .hs-error-msgs {
  color: var(--white);
}

.footer-subscribe form .hs_email {
  flex: 0 1 calc(100% - 13.7rem);
}

.footer-subscribe form input[type=email] {
  margin-bottom: 0;
}

.footer-subscribe .ul.no-list.hs-error-msgs {
  margin-top: 0;
}

@media (max-width: 600px) {
  .footer-subscribe {
    text-align: center;
  }

  .footer-subscribe form.hs-form {
    flex-direction: column;
    gap: var(--gap-xs);
  }

  .footer-subscribe form input[type=email] {
    text-align: center;
  }

  .footer-subscribe ul.no-list.hs-error-msgs {
    margin-top: .5rem;
  }
}

.footer-bottom {
  padding: 3.2rem 0;
  border-top: 1px solid rgba(255, 255, 255, .3);
}

.footer-info {
  border-top: 1px solid rgba(255, 255, 255, .3);
  padding: 2.4rem 0 0;
  font-size: 1.5rem;
}

.footer-menu #hs_cos_wrapper_footer_menu {
  flex: 1;
}

.footer-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}

.footer-menu > ul {
  max-width: 20rem;
}

.footer-menu ul:first-child > li > a[href*='javascript:;'] {
  font-weight: 600;
  font-size: 1.6rem;
  border-bottom: 0;
  cursor: text;
}

.footer-menu ul ul > li > a strong {
  font-weight: 600;
  font-size: 1.6rem;
  border-bottom: 0;
}

.footer-menu a[href*='tel:'] {
  white-space: nowrap;
}

.footer-menu ul {
  display: flex;
  gap: 2.4rem;
  justify-content: space-between;
}

.footer-menu .hs-menu-wrapper > ul {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.footer-menu ul > li {
  width: 100%;
}

.footer-menu ul ul {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 2.4rem;
}

.footer-bottom .footer-links a {
  font-weight: 600;
  font-size: 1.5rem;
  border-bottom-color: var(--white);
}

.footer-bottom .footer-links a:hover {
  border-bottom-color: transparent;
}

@media (min-width: 768px) {
  .ft-left {
    flex: 0 1 50.354609929078014%;
  }

  .ft-right {
    flex: 0 1 40.425531914893617%;
  }

  .footer-menu ul > li {
    max-width: 20rem;
  }

  .footer-info > div {
    flex: 0 1 calc(33.333% - 2.1333333333333333rem);
  }

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

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  width: 100%;
  gap: var(--gap);
}

.footer-logos img {
  filter: brightness(0%);
}

@media (max-width: 767px) {
  .footer-logos {
    max-width: 20rem;
  }
}


.footer-bottom a {
  color: var(--base-color);
  border-bottom: 1px solid transparent;
  font-size: 1.4rem;
  font-weight: 400;
}

.footer-bottom a:hover,
.footer-bottom a:focus,
.footer-bottom a:active {
  color: var(--base-color);
  border-bottom-color: var(--base-color);
}

@media (max-width: 991px) {
  .footer-subscribe {
    flex: 1;
  }
}



@media (max-width: 767px) {
  .footer-top {
    padding-top: 5rem;
  }

  .footer-bottom {
    padding: 0 0 5rem;
  }

  .footer-menu {
    gap: 0;
  }

  .footer-menu .hs-menu-wrapper > ul {
    grid-template-columns: 1fr;
  }

  .footer-menu ul {
    flex-direction: column;
    gap: 0;
  }

  .footer-info {
    border-top: 0;
    padding: 0;
  }

  .footer-menu ul {
    max-width: 100%;
  }

  .footer-menu ul ul {
    display: none;
    list-style: none;
    margin-top: 0;
  }

  .footer-menu ul > li > a {
    padding: 0.8rem 0;
    font-size: 1.3rem;
    display: block;
  }

  .footer-menu ul:first-child > li {
    padding: 1.5rem 0;
    border-top: 1px solid var(--medium-gray);
  }

  .footer-menu ul:first-child > li:last-child {
    padding-bottom: 0;
  }

  .footer-menu ul:first-child > li > a[href*='javascript:;'] {
    font-weight: 500;
    font-size: 1.5rem;
    border-bottom: 0;
    cursor: text;
  }

  .footer-menu ul > li.hs-item-has-children > a {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer !important;
  }

  .footer-menu ul > li.hs-item-has-children > a:after {
    content: '';
    display: inline-block;
    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 11V5H13V11H19V13H13V19H11V13H5V11H11Z' fill='%23F24130'/%3E%3C/svg%3E%0A");
    width: 24px;
    height: 24px;
    transition: all .2s ease;
  }

  .footer-menu ul > li.hs-item-has-children > a.open:after {
    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='M5 11V13H19V11H5Z' fill='%23F24130'/%3E%3C/svg%3E%0A");
  }

  .footer-menu ul ul {
    text-align: left;
    gap: 0;
  }

  .footer-menu ul a.open + ul {
    display: grid;
  }


  .footer-menu ul ul {
    display: none;
  }

  .footer-menu ul > .hs-menu-depth-1 > a.open + ul {
    display: grid;
  }

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

  .footer-logo {
    max-width: 25.6rem;
    margin: 0 auto;
  }

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

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

/* Utilities */

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

/* Rounded */

.rounded {
  border-radius: 0.5rem;
}

.rounded-sm {
  border-radius: 0.3rem;
}

.rounded-circle {
  aspect-ratio: 1;
  border-radius: 50%;
}

/* Spacing */

.mt-none {
  margin-top: 0 !important;
}
.mt-20 {
  margin-top: var(--gap) !important;
}
.mt-24 {
  margin-top: var(--gap-24) !important;
}
.mt-56 {
  margin-top: var(--gap-56) !important;
}
.mt-xs {
  margin-top: var(--gap-xs) !important;
}
.mt-sm {
  margin-top: var(--gap-sm) !important;
}
.mt-md {
  margin-top: var(--gap-md) !important;
}
.mt-lg {
  margin-top: var(--gap-lg) !important;
}
.mt-xl {
  margin-top: var(--gap-xl) !important;
}
.mt-xxl {
  margin-top: var(--gap-xxl) !important;
}
.mt-auto {
  margin-top: auto !important;
}

.mb-none {
  margin-bottom: 0 !important;
}
.mb-xxs {
  margin-bottom: 0.4rem !important;
}
.mb-xs {
  margin-bottom: var(--gap-xs) !important;
}
.mb-sm {
  margin-bottom: var(--gap-sm) !important;
}
.mb-md {
  margin-bottom: var(--gap-md) !important;
}
.mb-24 {
  margin-bottom: var(--gap-24) !important;
}
.mb-56 {
  margin-bottom: var(--gap-56) !important;
}
.mb-lg {
  margin-bottom: var(--gap-lg) !important;
}
.mb-xl {
  margin-bottom: var(--gap-xl) !important;
}

.pt-none {
  padding-top: 0 !important;
}
.pt-xs {
  padding-top: var(--gap-xs) !important;
}
.pt-sm {
  padding-top: var(--gap-sm) !important;
}
.pt-md {
  padding-top: var(--gap-md) !important;
}
.pt-lg {
  padding-top: var(--gap-lg) !important;
}
.pt-xl {
  padding-top: var(--gap-xl) !important;
}

.pb-none {
  padding-bottom: 0;
}
.pb-xs {
  padding-bottom: var(--gap-xs);
}
.pb-sm {
  padding-bottom: var(--gap-sm);
}
.pb-md {
  padding-bottom: var(--gap-md) !important;
}
.pb-lg {
  padding-bottom: var(--gap-lg) !important;
}
.pb-xl {
  padding-bottom: var(--gap-xl);
}


@media (min-width: 768px) {
  .ml-auto {
    margin-left: auto;
  }

  .mb-auto {
    margin-bottom: auto;
  }

  .mr-auto {
    margin-right: auto;
  }
}


/* Positioning */

.pos-rel {
  position: relative;
  z-index: 1;
}

.pos-abs {
  position: absolute;
}


/* Images */

.img-cover {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
}

.img-contain {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain;
}


/* Images */

.img-cover {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
}

.img-contain {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain;
}


/* Responsive embed */

.embed-container {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  max-width: 100%;
}
.embed-container iframe,
.embed-container object,
.embed-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.embed-container--43 {
  aspect-ratio: 4/3;
}



@media (min-width: 768px) {
  .mobile {
    display: none !important;
  }
}

@media (max-width: 991px) {
  .desktop {
    display: none !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .tablet {
    display: block !important;
  }
  .tablet.flex {
    display: flex !important;
  }
}
/**************************\
  Basic Modal Styles
\**************************/

.modal__overlay {
  position: fixed;
  z-index: 102;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 2rem;
}

.modal__container {
  position: relative;
  width: var(--container-width-narrow);
  max-width: 100%;
  max-height: 100%;
}

.modal__contents {
  overflow: hidden;
}

.modal__contents-inner {
  padding: 2.4rem;
}

.share__wrapper {
  width: 100%;
  max-width: 60rem;
  padding: 7.2rem 2.4rem;
}

.share__wrapper > * {
  width: 100%;
  max-width: 50.4rem;
  margin: 0 auto;
}

.share__wrapper .button--full {
  flex: 1;
}

.modal__close {
  position: absolute;
  z-index: 99;
  top: -6rem;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  appearance: none;
  width: 4rem;
  height: 4rem;
  background-color: var(--red);
  border: 0;
  color: var(--white);
  font-size: 2rem;
  border-radius: 50%;
}
.modal__close:hover {
  background-color: var(--orange);
  cursor: pointer;
}
.modal__close > svg {
  pointer-events: none;
}

/**************************\
  Demo Animation Style
\**************************/
@-webkit-keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@-webkit-keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@-webkit-keyframes mmslideIn {
  from {
    -webkit-transform: translateY(15%);
    transform: translateY(15%);
  }
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes mmslideIn {
  from {
    -webkit-transform: translateY(15%);
    transform: translateY(15%);
  }
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@-webkit-keyframes mmslideOut {
  from {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(-10%);
    transform: translateY(-10%);
  }
}

@keyframes mmslideOut {
  from {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(-10%);
    transform: translateY(-10%);
  }
}

.micromodal-slide {
  display: none;
}

.micromodal-slide.is-open {
  display: block;
}

.micromodal-slide[aria-hidden="false"] .modal__overlay {
  -webkit-animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
  animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden="false"] .modal__container {
  -webkit-animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
  animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden="true"] .modal__overlay {
  -webkit-animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
  animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden="true"] .modal__container {
  -webkit-animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
  animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide .modal__container,
.micromodal-slide .modal__overlay {
  will-change: transform;
}